pax_global_header00006660000000000000000000000064141626446160014524gustar00rootroot0000000000000052 comment=c8b25bc8ba24afe4a7529bb318a5ff833568ce3d extractor-0.5.0/000077500000000000000000000000001416264461600135415ustar00rootroot00000000000000extractor-0.5.0/.github/000077500000000000000000000000001416264461600151015ustar00rootroot00000000000000extractor-0.5.0/.github/workflows/000077500000000000000000000000001416264461600171365ustar00rootroot00000000000000extractor-0.5.0/.github/workflows/publish-package.yml000066400000000000000000000017271416264461600227270ustar00rootroot00000000000000name: Build and Publish Python Package on: push: tags: - '[0-9].*' jobs: create_release: name: Create GitHub Release runs-on: ubuntu-latest steps: - name: Create release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} draft: false prerelease: true deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools wheel twine - name: Build and publish env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel twine upload dist/*extractor-0.5.0/.github/workflows/run-tests.yml000066400000000000000000000017511416264461600216310ustar00rootroot00000000000000name: Tests on: push: branches: [master] pull_request: branches: [master] workflow_dispatch: inputs: reason: description: 'Reason for running workflow' required: true jobs: test: runs-on: ${{ matrix.platform }} if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" strategy: matrix: python-version: [3.7, 3.8, 3.9] platform: [ubuntu-latest, macos-latest, windows-latest] exclude: # Only test on the oldest and latest supported stable Python on macOS and Windows. - platform: macos-latest python-version: 3.8 - platform: windows-latest python-version: 3.8 steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install packages run: pip install tox coverage - name: Run Tox run: tox extractor-0.5.0/.gitignore000066400000000000000000000005521416264461600155330ustar00rootroot00000000000000# Byte-compiled / optimized files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / Packaging *.egg-info *.eggs MANIFEST build dist # Unit test / coverage files .tox/* .cache/ .coverage .coverage.* htmlcov/ # OSX Finder .DS_Store # pyenv python configuration file .python-version # auto-generated version file Lib/extractor/_version.pyextractor-0.5.0/Lib/000077500000000000000000000000001416264461600142475ustar00rootroot00000000000000extractor-0.5.0/Lib/extractor/000077500000000000000000000000001416264461600162625ustar00rootroot00000000000000extractor-0.5.0/Lib/extractor/__init__.py000066400000000000000000000041031416264461600203710ustar00rootroot00000000000000from extractor.exceptions import ExtractorError from extractor.formats.opentype import isOpenType, extractFontFromOpenType from extractor.formats.woff import isWOFF, extractFontFromWOFF from extractor.formats.type1 import isType1, extractFontFromType1 from extractor.formats.ttx import isTTX, extractFontFromTTX from extractor.formats.vfb import isVFB, extractFontFromVFB, haveVfb2ufo try: from ._version import __version__ except ImportError: try: from setuptools_scm import get_version __version__ = get_version() except ImportError: __version__ = 'unknown' _extractFunctions = dict( OTF=extractFontFromOpenType, Type1=extractFontFromType1, WOFF=extractFontFromWOFF, ttx=extractFontFromTTX, vfb=extractFontFromVFB, ) def extractFormat(pathOrFile): if isType1(pathOrFile): return "Type1" elif isWOFF(pathOrFile): return "WOFF" elif isOpenType(pathOrFile): return "OTF" elif isTTX(pathOrFile): return "ttx" elif haveVfb2ufo() and isVFB(pathOrFile): return "vfb" return None def extractUFO( pathOrFile, destination, doGlyphs=True, doInfo=True, doKerning=True, format=None, customFunctions={}, ): if format is None: format = extractFormat(pathOrFile) if format not in _extractFunctions: raise ExtractorError("Unknown file format.") func = _extractFunctions[format] # wrap the extraction in a try: except: so that # callers don't need to worry about lower level # (fontTools, etc.) errors. if an error # occurs, print the traceback for debugging and # raise an ExtractorError. try: func( pathOrFile, destination, doGlyphs=doGlyphs, doInfo=doInfo, doKerning=doKerning, customFunctions=customFunctions.get(format, []), ) except: import sys import traceback traceback.print_exc(file=sys.stdout) raise ExtractorError( "There was an error reading the %s file." % format ) extractor-0.5.0/Lib/extractor/exceptions.py000066400000000000000000000000521416264461600210120ustar00rootroot00000000000000class ExtractorError(Exception): pass extractor-0.5.0/Lib/extractor/formats/000077500000000000000000000000001416264461600177355ustar00rootroot00000000000000extractor-0.5.0/Lib/extractor/formats/__init__.py000066400000000000000000000000001416264461600220340ustar00rootroot00000000000000extractor-0.5.0/Lib/extractor/formats/opentype.py000066400000000000000000001100721416264461600221530ustar00rootroot00000000000000import time from fontTools.pens.boundsPen import ControlBoundsPen from fontTools.pens.hashPointPen import HashPointPen from fontTools.ttLib import TTFont, TTLibError from fontTools.ttLib.tables._g_l_y_f import ( OVERLAP_COMPOUND, ROUND_XY_TO_GRID, USE_MY_METRICS, ) from fontTools.ttLib.tables._h_e_a_d import mac_epoch_diff from extractor.exceptions import ExtractorError from extractor.stream import InstructionStream from extractor.tools import RelaxedInfo, copyAttr TRUETYPE_INSTRUCTIONS_KEY = "public.truetype.instructions" TRUETYPE_ROUND_KEY = "public.truetype.roundOffsetToGrid" TRUETYPE_METRICS_KEY = "public.truetype.useMyMetrics" TRUETYPE_OVERLAP_KEY = "public.truetype.overlap" OBJECT_LIBS_KEY = "public.objectLibs" # ---------------- # Public Functions # ---------------- def isOpenType(pathOrFile): try: font = TTFont(pathOrFile) del font except TTLibError: return False return True def extractFontFromOpenType( pathOrFile, destination, doGlyphOrder=True, doGlyphs=True, doInfo=True, doKerning=True, customFunctions=[], doInstructions=True, ): source = TTFont(pathOrFile) if doInfo: extractOpenTypeInfo(source, destination) if doGlyphs: extractOpenTypeGlyphs(source, destination) extractUnicodeVariationSequences(source, destination) if doGlyphOrder: extractGlyphOrder(source, destination) if doKerning: kerning, groups = extractOpenTypeKerning(source, destination) destination.groups.update(groups) destination.kerning.clear() destination.kerning.update(kerning) for function in customFunctions: function(source, destination) if doInstructions: extractInstructions(source, destination) source.close() def extractGlyphOrder(source, destination): glyphOrder = source.getGlyphOrder() if len(glyphOrder): destination.lib["public.glyphOrder"] = glyphOrder # --------------------------- # Unicode Variation Sequences # --------------------------- def extractUnicodeVariationSequences(source, destination): """ Extract the Unicode Variation Sequences """ cmap = source.get("cmap") mapping = cmap.getBestCmap() for subtable in cmap.tables: if subtable.format == 14: destination.lib["public.unicodeVariationSequences"] = { "%04X" % variationSelector: { "%04X" % charValue: glyphName if glyphName else mapping.get(charValue) for (charValue, glyphName) in uvsList } for variationSelector, uvsList in subtable.uvsDict.items() } # ------------ # Instructions # ------------ def extractInstructions(source, destination): if "glyf" not in source: return lib = destination.lib[TRUETYPE_INSTRUCTIONS_KEY] = { "formatVersion": 1, "maxFunctionDefs": 0, "maxInstructionDefs": 0, "maxStackElements": 0, "maxStorage": 0, "maxTwilightPoints": 0, "maxZones": 0, } extractControlValues(source, lib) extractFontProgram(source, lib) extractGlyphPrograms(source, destination) extractMaxpValues(source, lib) extractPreProgram(source, lib) def extractControlValues(source, lib): """ Extract the TrueType control values table to the font lib. """ if "cvt " not in source: return cvt = source["cvt "] lib["controlValue"] = [ {"id": str(i), "value": val} for i, val in enumerate(cvt.values) ] def extractFontProgram(source, lib): """ Extract the TrueType font program to the font lib. """ if "fpgm" not in source: return fpgm = source["fpgm"].program lib["fontProgram"] = _byteCodeToTtxAssembly(fpgm) def extractGlyphPrograms(source, destination): """ Extract the TrueType pre-program to the font lib. """ if "glyf" not in source: return glyph_set = source.getGlyphSet() for name in glyph_set.keys(): glyph = glyph_set[name]._glyph dest_glyph = destination[name] if glyph.isComposite(): # Extract composite flags _extractCompositeFlags(glyph, dest_glyph) if not hasattr(glyph, "program"): continue hash_pen = HashPointPen(dest_glyph.width, destination) dest_glyph.drawPoints(hash_pen) lib = dest_glyph.lib[TRUETYPE_INSTRUCTIONS_KEY] = { "formatVersion": "1", "id": hash_pen.hash, } lib["assembly"] = _byteCodeToTtxAssembly(glyph.program) def extractMaxpValues(source, lib): """ Extract the TrueType maximum profile values to the font lib. """ if "maxp" not in source: return maxp = source["maxp"] lib.update( { "maxFunctionDefs": maxp.maxFunctionDefs, "maxInstructionDefs": maxp.maxInstructionDefs, "maxStackElements": maxp.maxStackElements, "maxStorage": maxp.maxStorage, "maxTwilightPoints": maxp.maxTwilightPoints, "maxZones": maxp.maxZones, } ) def extractPreProgram(source, lib): """ Extract the TrueType pre-program to the font lib. """ if "prep" not in source: return prep = source["prep"].program lib["controlValueProgram"] = _byteCodeToTtxAssembly(prep) def _byteCodeToTtxAssembly(program): stream = InstructionStream(program_bytes=program.getBytecode()) return "\n%s\n" % str(stream) def _extractCompositeFlags(glyph, dest_glyph): # Find the lib key or add it if OBJECT_LIBS_KEY not in dest_glyph.lib: dest_glyph.lib[OBJECT_LIBS_KEY] = {} object_libs = dest_glyph.lib[OBJECT_LIBS_KEY] for ci, c in enumerate(glyph.components): flags = {} flags[TRUETYPE_ROUND_KEY] = bool(c.flags & ROUND_XY_TO_GRID) flags[TRUETYPE_METRICS_KEY] = bool(c.flags & USE_MY_METRICS) if flags: identifier = f"component{ci}" dest_glyph.components[ci].identifier = identifier object_libs[identifier] = flags # Overlap is stored directly in the glyph lib dest_glyph.lib["public.truetype.overlap"] = bool( c.flags & OVERLAP_COMPOUND ) # ---- # Info # ---- def extractOpenTypeInfo(source, destination): info = RelaxedInfo(destination.info) _extractInfoHead(source, info) _extractInfoName(source, info) _extracInfoOS2(source, info) _extractInfoHhea(source, info) _extractInfoVhea(source, info) _extractInfoPost(source, info) _extractInfoCFF(source, info) _extractInfoGasp(source, info) def _extractInfoHead(source, info): head = source["head"] # version version = str(round(head.fontRevision, 3)) versionMajor, versionMinor = version.split(".") info.versionMajor = int(versionMajor) info.versionMinor = int(versionMinor) # upm info.unitsPerEm = head.unitsPerEm # created format = "%Y/%m/%d %H:%M:%S" created = head.created created = time.gmtime(max(0, created + mac_epoch_diff)) info.openTypeHeadCreated = time.strftime(format, created) # lowestRecPPEM info.openTypeHeadLowestRecPPEM = head.lowestRecPPEM # flags info.openTypeHeadFlags = binaryToIntList(head.flags) # styleMapStyleName macStyle = binaryToIntList(head.macStyle) styleMapStyleName = "regular" if 0 in macStyle and 1 in macStyle: styleMapStyleName = "bold italic" elif 0 in macStyle: styleMapStyleName = "bold" elif 1 in macStyle: styleMapStyleName = "italic" info.styleMapStyleName = styleMapStyleName def _extractInfoName(source, info): records = [] nameIDs = {} for record in source["name"].names: nameID = record.nameID platformID = record.platformID encodingID = record.platEncID languageID = record.langID string = record.toUnicode() nameIDs[nameID, platformID, encodingID, languageID] = string records.append( ( nameID, platformID, encodingID, languageID, dict( nameID=nameID, platformID=platformID, encodingID=encodingID, languageID=languageID, string=string, ), ) ) attributes = dict( familyName=_priorityOrder(16) + _priorityOrder(1), styleName=_priorityOrder(17) + _priorityOrder(2), styleMapFamilyName=_priorityOrder(1), # styleMapStyleName will be handled in head extraction copyright=_priorityOrder(0), trademark=_priorityOrder(7), openTypeNameDesigner=_priorityOrder(9), openTypeNameDesignerURL=_priorityOrder(12), openTypeNameManufacturer=_priorityOrder(8), openTypeNameManufacturerURL=_priorityOrder(11), openTypeNameLicense=_priorityOrder(13), openTypeNameLicenseURL=_priorityOrder(14), openTypeNameVersion=_priorityOrder(5), openTypeNameUniqueID=_priorityOrder(3), openTypeNameDescription=_priorityOrder(10), openTypeNamePreferredFamilyName=_priorityOrder(16), openTypeNamePreferredSubfamilyName=_priorityOrder(17), openTypeNameCompatibleFullName=_priorityOrder(18), openTypeNameSampleText=_priorityOrder(20), openTypeNameWWSFamilyName=_priorityOrder(21), openTypeNameWWSSubfamilyName=_priorityOrder(22), ) for attr, priority in attributes.items(): value = _skimNameIDs(nameIDs, priority) if value is not None: setattr(info, attr, value) info.openTypeNameRecords = [record[-1] for record in sorted(records)] def _priorityOrder(nameID): priority = [ (nameID, 1, 0, 0), (nameID, 1, None, None), (nameID, None, None, None), ] return priority def _skimNameIDs(nameIDs, priority): for (nameID, platformID, platEncID, langID) in priority: for (nID, pID, pEID, lID), text in nameIDs.items(): if nID != nameID: continue if pID != platformID and platformID is not None: continue if pEID != platEncID and platEncID is not None: continue if lID != langID and langID is not None: continue return text def _extracInfoOS2(source, info): os2 = source["OS/2"] # openTypeOS2WidthClass copyAttr(os2, "usWidthClass", info, "openTypeOS2WidthClass") # openTypeOS2WeightClass copyAttr(os2, "usWeightClass", info, "openTypeOS2WeightClass") # openTypeOS2Selection if hasattr(os2, "fsSelection"): fsSelection = binaryToIntList(os2.fsSelection) fsSelection = [i for i in fsSelection if i in (1, 2, 3, 4)] info.openTypeOS2Selection = fsSelection # openTypeOS2VendorID copyAttr(os2, "achVendID", info, "openTypeOS2VendorID") ## the string could be padded with null bytes. strip those. if info.openTypeOS2VendorID.endswith("\x00"): r = [] for c in reversed(info.openTypeOS2VendorID): if r or c != "\x00": r.insert(0, c) info.openTypeOS2VendorID = "".join(r) # openTypeOS2Panose if hasattr(os2, "panose"): panose = os2.panose info.openTypeOS2Panose = [ os2.panose.bFamilyType, os2.panose.bSerifStyle, os2.panose.bWeight, os2.panose.bProportion, os2.panose.bContrast, os2.panose.bStrokeVariation, os2.panose.bArmStyle, os2.panose.bLetterForm, os2.panose.bMidline, os2.panose.bXHeight, ] # openTypeOS2FamilyClass # XXX info.openTypeOS2FamilyClass if hasattr(os2, "ulUnicodeRange1"): info.openTypeOS2UnicodeRanges = ( binaryToIntList(os2.ulUnicodeRange1) + binaryToIntList(os2.ulUnicodeRange2, 32) + binaryToIntList(os2.ulUnicodeRange3, 64) + binaryToIntList(os2.ulUnicodeRange4, 96) ) if hasattr(os2, "ulCodePageRange1"): info.openTypeOS2CodePageRanges = binaryToIntList( os2.ulCodePageRange1 ) + binaryToIntList(os2.ulCodePageRange2, 32) copyAttr(os2, "sxHeight", info, "xHeight") copyAttr(os2, "sCapHeight", info, "capHeight") copyAttr(os2, "sTypoAscender", info, "ascender") copyAttr(os2, "sTypoDescender", info, "descender") copyAttr(os2, "sTypoAscender", info, "openTypeOS2TypoAscender") copyAttr(os2, "sTypoDescender", info, "openTypeOS2TypoDescender") copyAttr(os2, "sTypoLineGap", info, "openTypeOS2TypoLineGap") copyAttr(os2, "usWinAscent", info, "openTypeOS2WinAscent") copyAttr(os2, "usWinDescent", info, "openTypeOS2WinDescent") if hasattr(os2, "fsType"): info.openTypeOS2Type = binaryToIntList(os2.fsType) copyAttr(os2, "ySubscriptXSize", info, "openTypeOS2SubscriptXSize") copyAttr(os2, "ySubscriptYSize", info, "openTypeOS2SubscriptYSize") copyAttr(os2, "ySubscriptXOffset", info, "openTypeOS2SubscriptXOffset") copyAttr(os2, "ySubscriptYOffset", info, "openTypeOS2SubscriptYOffset") copyAttr(os2, "ySuperscriptXSize", info, "openTypeOS2SuperscriptXSize") copyAttr(os2, "ySuperscriptYSize", info, "openTypeOS2SuperscriptYSize") copyAttr(os2, "ySuperscriptXOffset", info, "openTypeOS2SuperscriptXOffset") copyAttr(os2, "ySuperscriptYOffset", info, "openTypeOS2SuperscriptYOffset") copyAttr(os2, "yStrikeoutSize", info, "openTypeOS2StrikeoutSize") copyAttr(os2, "yStrikeoutPosition", info, "openTypeOS2StrikeoutPosition") def _extractInfoHhea(source, info): if "hhea" not in source: return hhea = source["hhea"] info.openTypeHheaAscender = hhea.ascent info.openTypeHheaDescender = hhea.descent info.openTypeHheaLineGap = hhea.lineGap info.openTypeHheaCaretSlopeRise = hhea.caretSlopeRise info.openTypeHheaCaretSlopeRun = hhea.caretSlopeRun info.openTypeHheaCaretOffset = hhea.caretOffset def _extractInfoVhea(source, info): if "vhea" not in source: return vhea = source["vhea"] info.openTypeVheaVertTypoAscender = vhea.ascent info.openTypeVheaVertTypoDescender = vhea.descent info.openTypeVheaVertTypoLineGap = vhea.lineGap info.openTypeVheaCaretSlopeRise = vhea.caretSlopeRise info.openTypeVheaCaretSlopeRun = vhea.caretSlopeRun if hasattr(vhea, "caretOffset"): info.openTypeVheaCaretOffset = vhea.caretOffset def _extractInfoPost(source, info): post = source["post"] info.italicAngle = post.italicAngle info.postscriptUnderlineThickness = post.underlineThickness info.postscriptUnderlinePosition = post.underlinePosition info.postscriptIsFixedPitch = bool(post.isFixedPitch) def _extractInfoCFF(source, info): if "CFF " not in source: return cff = source["CFF "].cff info.postscriptFontName = cff.fontNames[0] # TopDict topDict = cff.topDictIndex[0] info.postscriptFullName = topDict.rawDict.get("FullName", None) info.postscriptWeightName = topDict.rawDict.get("Weight", None) # Private # CID doesn't have this, so safely extract. if hasattr(topDict, "Private"): private = topDict.Private info.postscriptBlueValues = private.rawDict.get("BlueValues", []) info.postscriptOtherBlues = private.rawDict.get("OtherBlues", []) info.postscriptFamilyBlues = private.rawDict.get("FamilyBlues", []) info.postscriptFamilyOtherBlues = private.rawDict.get( "FamilyOtherBlues", [] ) info.postscriptStemSnapH = private.rawDict.get("StemSnapH", []) info.postscriptStemSnapV = private.rawDict.get("StemSnapV", []) info.postscriptBlueFuzz = private.rawDict.get("BlueFuzz", None) info.postscriptBlueShift = private.rawDict.get("BlueShift", None) info.postscriptBlueScale = private.rawDict.get("BlueScale", None) info.postscriptForceBold = bool(private.rawDict.get("ForceBold", None)) info.postscriptNominalWidthX = private.rawDict.get( "nominalWidthX", None ) info.postscriptDefaultWidthX = private.rawDict.get( "defaultWidthX", None ) # XXX postscriptSlantAngle # XXX postscriptUniqueID def _extractInfoGasp(source, info): if "gasp" not in source: return gasp = source["gasp"] records = [] for size, bits in sorted(gasp.gaspRange.items()): behavior = [] if bits & 0x0001: behavior.append(0) if bits & 0x0002: behavior.append(1) if bits & 0x0004: behavior.append(2) if bits & 0x0008: behavior.append(3) record = dict(rangeMaxPPEM=size, rangeGaspBehavior=behavior) records.append(record) info.openTypeGaspRangeRecords = records # Tools def binaryToIntList(value, start=0): intList = [] counter = start while value: if value & 1: intList.append(counter) value >>= 1 counter += 1 return intList # -------- # Outlines # -------- def extractOpenTypeGlyphs(source, destination): # grab the cmap vmtx = source.get("vmtx") vorg = source.get("VORG") is_ttf = "glyf" in source reversedMapping = source.get("cmap").buildReversed() # grab the glyphs glyphSet = source.getGlyphSet() for glyphName in glyphSet.keys(): sourceGlyph = glyphSet[glyphName] # make the new glyph destination.newGlyph(glyphName) destinationGlyph = destination[glyphName] # outlines if is_ttf: pen = destinationGlyph.getPointPen() sourceGlyph.drawPoints(pen) else: pen = destinationGlyph.getPen() sourceGlyph.draw(pen) # width destinationGlyph.width = sourceGlyph.width # unicodes destinationGlyph.unicodes = list(reversedMapping.get(glyphName, [])) # height and vertical origin if vmtx is not None and glyphName in vmtx.metrics: destinationGlyph.height = vmtx[glyphName][0] if vorg is not None: if glyphName in vorg.VOriginRecords: destinationGlyph.verticalOrigin = vorg[glyphName] else: destinationGlyph.verticalOrigin = vorg.defaultVertOriginY else: tsb = vmtx[glyphName][1] bounds_pen = ControlBoundsPen(glyphSet) sourceGlyph.draw(bounds_pen) if bounds_pen.bounds is None: continue xMin, yMin, xMax, yMax = bounds_pen.bounds destinationGlyph.verticalOrigin = tsb + yMax # ------- # Kerning # ------- def extractOpenTypeKerning(source, destination): kerning = {} groups = {} if "GPOS" in source: kerning, groups = _extractOpenTypeKerningFromGPOS(source) elif "kern" in source: kerning = _extractOpenTypeKerningFromKern(source) groups = {} for name, group in groups.items(): groups[name] = list(sorted(group)) return kerning, groups def _extractOpenTypeKerningFromGPOS(source): gpos = source["GPOS"].table # get an ordered list of scripts scriptOrder = _makeScriptOrder(gpos) # extract kerning and classes from each applicable lookup ( kerningDictionaries, leftClassDictionaries, rightClassDictionaries, ) = _gatherDataFromLookups(gpos, scriptOrder) # merge all kerning pairs kerning = _mergeKerningDictionaries(kerningDictionaries) # get rid of groups that have only one member leftSingleMemberGroups = _findSingleMemberGroups(leftClassDictionaries) rightSingleMemberGroups = _findSingleMemberGroups(rightClassDictionaries) # filter out the single glyph groups from the kerning kerning = _removeSingleMemberGroupReferences( kerning, leftSingleMemberGroups, rightSingleMemberGroups ) # merge groups that have the exact same member list leftClasses, leftClassRename = _mergeClasses(leftClassDictionaries) rightClasses, rightClassRename = _mergeClasses(rightClassDictionaries) # search for overlapping groups and raise an error if any were found _validateClasses(leftClasses) _validateClasses(rightClasses) # populate the class marging into the kerning kerning = _replaceRenamedPairMembers( kerning, leftClassRename, rightClassRename ) # rename the groups to final names leftClassRename = _renameClasses(leftClasses, "public.kern1.") rightClassRename = _renameClasses(rightClasses, "public.kern2.") # populate the final group names kerning = _replaceRenamedPairMembers( kerning, leftClassRename, rightClassRename ) leftGroups = _setGroupNames(leftClasses, leftClassRename) rightGroups = _setGroupNames(rightClasses, rightClassRename) # combine the side groups groups = {} groups.update(leftGroups) groups.update(rightGroups) # done. return kerning, groups def _makeScriptOrder(gpos): """ Run therough GPOS and make an alphabetically ordered list of scripts. If DFLT is in the list, move it to the front. """ scripts = [] for scriptRecord in gpos.ScriptList.ScriptRecord: scripts.append(scriptRecord.ScriptTag) if "DFLT" in scripts: scripts.remove("DFLT") scripts.insert(0, "DFLT") return sorted(scripts) def _gatherDataFromLookups(gpos, scriptOrder): """ Gather kerning and classes from the applicable lookups and return them in script order. """ lookupIndexes = _gatherLookupIndexes(gpos) seenLookups = set() kerningDictionaries = [] leftClassDictionaries = [] rightClassDictionaries = [] for script in scriptOrder: kerning = [] leftClasses = [] rightClasses = [] for lookupIndex in lookupIndexes[script]: if lookupIndex in seenLookups: continue seenLookups.add(lookupIndex) result = _gatherKerningForLookup(gpos, lookupIndex) if result is None: continue k, lG, rG = result kerning.append(k) leftClasses.append(lG) rightClasses.append(rG) if kerning: kerningDictionaries.append(kerning) leftClassDictionaries.append(leftClasses) rightClassDictionaries.append(rightClasses) return kerningDictionaries, leftClassDictionaries, rightClassDictionaries def _gatherLookupIndexes(gpos): """ Gather a mapping of script to lookup indexes referenced by the kern feature for each script. Returns a dictionary of this structure: { "latn" : [0], "DFLT" : [0] } """ # gather the indexes of the kern features kernFeatureIndexes = [ index for index, featureRecord in enumerate(gpos.FeatureList.FeatureRecord) if featureRecord.FeatureTag == "kern" ] # find scripts and languages that have kern features scriptKernFeatureIndexes = {} for scriptRecord in gpos.ScriptList.ScriptRecord: script = scriptRecord.ScriptTag thisScriptKernFeatureIndexes = [] defaultLangSysRecord = scriptRecord.Script.DefaultLangSys if defaultLangSysRecord is not None: f = [] for featureIndex in defaultLangSysRecord.FeatureIndex: if featureIndex not in kernFeatureIndexes: continue f.append(featureIndex) if f: thisScriptKernFeatureIndexes.append((None, f)) if scriptRecord.Script.LangSysRecord is not None: for langSysRecord in scriptRecord.Script.LangSysRecord: langSys = langSysRecord.LangSysTag f = [] for featureIndex in langSysRecord.LangSys.FeatureIndex: if featureIndex not in kernFeatureIndexes: continue f.append(featureIndex) if f: thisScriptKernFeatureIndexes.append((langSys, f)) scriptKernFeatureIndexes[script] = thisScriptKernFeatureIndexes # convert the feature indexes to lookup indexes scriptLookupIndexes = {} for script, featureDefinitions in scriptKernFeatureIndexes.items(): lookupIndexes = scriptLookupIndexes[script] = [] for language, featureIndexes in featureDefinitions: for featureIndex in featureIndexes: featureRecord = gpos.FeatureList.FeatureRecord[featureIndex] for lookupIndex in featureRecord.Feature.LookupListIndex: if lookupIndex not in lookupIndexes: lookupIndexes.append(lookupIndex) # done return scriptLookupIndexes def _gatherKerningForLookup(gpos, lookupIndex): """ Gather the kerning and class data for a particular lookup. Returns kerning, left clases, right classes. The kerning dictionary is of this structure: { ("a", "a") : 10, ((1, 1, 3), "a") : -20 } The class dictionaries have this structure: { (1, 1, 3) : ["x", "y", "z"] } Where the tuple means this: (lookup index, subtable index, class index) """ allKerning = {} allLeftClasses = {} allRightClasses = {} lookup = gpos.LookupList.Lookup[lookupIndex] # only handle pair positioning and extension if lookup.LookupType not in (2, 9): return for subtableIndex, subtable in enumerate(lookup.SubTable): if lookup.LookupType == 2: format = subtable.Format lookupType = subtable.LookupType if (lookupType, format) == (2, 1): kerning = _handleLookupType2Format1(subtable) allKerning.update(kerning) elif (lookupType, format) == (2, 2): kerning, leftClasses, rightClasses = _handleLookupType2Format2( subtable, lookupIndex, subtableIndex ) allKerning.update(kerning) allLeftClasses.update(leftClasses) allRightClasses.update(rightClasses) elif lookup.LookupType == 9: extSubtable = subtable.ExtSubTable format = extSubtable.Format lookupType = extSubtable.LookupType if (lookupType, format) == (2, 1): kerning = _handleLookupType2Format1(extSubtable) allKerning.update(kerning) elif (lookupType, format) == (2, 2): kerning, leftClasses, rightClasses = _handleLookupType2Format2( extSubtable, lookupIndex, subtableIndex ) allKerning.update(kerning) allLeftClasses.update(leftClasses) allRightClasses.update(rightClasses) # done return allKerning, allLeftClasses, allRightClasses def _handleLookupType2Format1(subtable): """ Extract a kerning dictionary from a Lookup Type 2 Format 1. """ kerning = {} coverage = subtable.Coverage.glyphs valueFormat1 = subtable.ValueFormat1 pairSets = subtable.PairSet for index, leftGlyphName in enumerate(coverage): pairSet = pairSets[index] for pairValueRecord in pairSet.PairValueRecord: rightGlyphName = pairValueRecord.SecondGlyph if valueFormat1: value = pairValueRecord.Value1 else: value = pairValueRecord.Value2 if hasattr(value, "XAdvance"): value = value.XAdvance kerning[leftGlyphName, rightGlyphName] = value return kerning def _handleLookupType2Format2(subtable, lookupIndex, subtableIndex): """ Extract kerning, left class and right class dictionaries from a Lookup Type 2 Format 2. """ # extract the classes leftClasses = _extractFeatureClasses( lookupIndex=lookupIndex, subtableIndex=subtableIndex, classDefs=subtable.ClassDef1.classDefs, coverage=subtable.Coverage.glyphs, ) rightClasses = _extractFeatureClasses( lookupIndex=lookupIndex, subtableIndex=subtableIndex, classDefs=subtable.ClassDef2.classDefs, ) # extract the pairs kerning = {} for class1RecordIndex, class1Record in enumerate(subtable.Class1Record): for class2RecordIndex, class2Record in enumerate( class1Record.Class2Record ): leftClass = (lookupIndex, subtableIndex, class1RecordIndex) rightClass = (lookupIndex, subtableIndex, class2RecordIndex) valueFormat1 = subtable.ValueFormat1 if valueFormat1: value = class2Record.Value1 else: value = class2Record.Value2 if hasattr(value, "XAdvance") and value.XAdvance != 0: value = value.XAdvance kerning[leftClass, rightClass] = value return kerning, leftClasses, rightClasses def _mergeKerningDictionaries(kerningDictionaries): """ Merge all of the kerning dictionaries found into one flat dictionary. """ # work through the dictionaries backwards since # this uses an update to load the kerning. this # will ensure that the script order is honored. kerning = {} for dictionaryGroup in reversed(kerningDictionaries): for dictionary in dictionaryGroup: kerning.update(dictionary) # done. return kerning def _findSingleMemberGroups(classDictionaries): """ Find all classes that have only one member. """ toRemove = {} for classDictionaryGroup in classDictionaries: for classDictionary in classDictionaryGroup: for name, members in list(classDictionary.items()): if len(members) == 1: toRemove[name] = list(members)[0] del classDictionary[name] return toRemove def _removeSingleMemberGroupReferences(kerning, leftGroups, rightGroups): """ Translate group names into glyph names in pairs if the group only contains one glyph. """ new = {} for (left, right), value in kerning.items(): left = leftGroups.get(left, left) right = rightGroups.get(right, right) new[left, right] = value return new def _mergeClasses(classDictionaries): """ Look for classes that have the exact same list of members and flag them for removal. This returns left classes, left rename map, right classes and right rename map. The classes have the standard class structure. The rename maps have this structure: { (1, 1, 3) : (2, 3, 4), old name : new name } Where the key is the class that should be preserved and the value is a list of classes that should be removed. """ # build a mapping of members to names memberTree = {} for classDictionaryGroup in classDictionaries: for classDictionary in classDictionaryGroup: for name, members in classDictionary.items(): if members not in memberTree: memberTree[members] = set() memberTree[members].add(name) # find members that have more than one name classes = {} rename = {} for members, names in memberTree.items(): name = names.pop() if len(names) > 0: for otherName in names: rename[otherName] = name classes[name] = members return classes, rename def _setGroupNames(classes, classRename): """ Set the final names into the groups. """ groups = {} for groupName, glyphList in classes.items(): groupName = classRename.get(groupName, groupName) # if the glyph list has only one member, # the glyph name will be used in the pairs. # no group is needed. if len(glyphList) == 1: continue groups[groupName] = glyphList return groups def _validateClasses(classes): """ Check to make sure that a glyph is not part of more than one class. If this is found, an ExtractorError is raised. """ glyphToClass = {} for className, glyphList in classes.items(): for glyphName in glyphList: if glyphName not in glyphToClass: glyphToClass[glyphName] = set() glyphToClass[glyphName].add(className) for glyphName, groupList in glyphToClass.items(): if len(groupList) > 1: raise ExtractorError( "Kerning classes are in an conflicting state." ) def _replaceRenamedPairMembers(kerning, leftRename, rightRename): """ Populate the renamed pair members into the kerning. """ renamedKerning = {} for (left, right), value in kerning.items(): left = leftRename.get(left, left) right = rightRename.get(right, right) renamedKerning[left, right] = value return renamedKerning def _renameClasses(classes, prefix): """ Replace class IDs with nice strings. """ renameMap = {} for classID, glyphList in classes.items(): if len(glyphList) == 0: groupName = "%s_empty_lu.%d_st.%d_cl.%d" % ( prefix, classID[0], classID[1], classID[2], ) elif len(glyphList) == 1: groupName = list(glyphList)[0] else: glyphList = list(sorted(glyphList)) groupName = prefix + glyphList[0] if groupName in renameMap.values(): print(" Dropping duplicate group rename target:") print(f" {classID} -> {groupName}") print(f" Glyphs: {glyphList}") else: renameMap[classID] = groupName if len(list(renameMap.values())) != len(set(renameMap.values())): print("Rename list for classes contains duplicates:") values = list(renameMap.values()) for v in values: if values.count(v) > 1: print(f" {v}") return renameMap def _extractFeatureClasses( lookupIndex, subtableIndex, classDefs, coverage=None ): """ Extract classes for a specific lookup in a specific subtable. This is relatively straightforward, except for class 0 interpretation. Some fonts don't have class 0. Some fonts have a list of class members that are clearly not all to be used in kerning pairs. In the case of a missing class 0, the coverage is used as a basis for the class and glyph names used in classed 1+ are filtered out. In the case of class 0 having glyph names that are not part of the kerning pairs, the coverage is used to filter out the unnecessary glyph names. """ # gather the class members classDict = {} for glyphName, classIndex in classDefs.items(): if classIndex not in classDict: classDict[classIndex] = set() classDict[classIndex].add(glyphName) # specially handle class index 0 revisedClass0 = set() if coverage is not None and 0 in classDict: for glyphName in classDict[0]: if glyphName in coverage: revisedClass0.add(glyphName) elif coverage is not None and 0 not in classDict: revisedClass0 = set(coverage) for glyphList in classDict.values(): revisedClass0 = revisedClass0 - glyphList classDict[0] = revisedClass0 # flip the class map around classes = {} for classIndex, glyphList in classDict.items(): classes[lookupIndex, subtableIndex, classIndex] = frozenset(glyphList) return classes def _extractOpenTypeKerningFromKern(source): kern = source["kern"] kerning = {} for subtable in kern.kernTables: if subtable.version != 0: raise ExtractorError( "Unknown kern table formst: %d" % subtable.version ) # XXX the spec defines coverage values for # kerning direction (horizontal or vertical) # minimum (some sort of kerning restriction) # cross-stream (direction of the kerns within the direction of the table. odd.) # override (if the values in this subtable should override the values of others) # however, it is vague about how these should be stored. # as such, we just assume that the direction is horizontal, # that the values of all subtables are additive and that # there are no minimum values. kerning.update(subtable.kernTable) return kerning extractor-0.5.0/Lib/extractor/formats/ttx.py000066400000000000000000000017711416264461600211340ustar00rootroot00000000000000from extractor.formats.opentype import ( extractOpenTypeInfo, extractOpenTypeGlyphs, extractOpenTypeKerning, ) def isTTX(pathOrFile): from fontTools.ttLib import TTFont try: font = TTFont() font.importXML(pathOrFile) del font except Exception: return False return True def extractFontFromTTX( pathOrFile, destination, doGlyphs=True, doInfo=True, doKerning=True, customFunctions=[], ): from fontTools.ttLib import TTFont, TTLibError source = TTFont() source.importXML(pathOrFile) if doInfo: extractOpenTypeInfo(source, destination) if doGlyphs: extractOpenTypeGlyphs(source, destination) if doKerning: kerning, groups = extractOpenTypeKerning(source, destination) destination.groups.update(groups) destination.kerning.clear() destination.kerning.update(kerning) for function in customFunctions: function(source, destination) source.close() extractor-0.5.0/Lib/extractor/formats/type1.py000066400000000000000000000130151416264461600213510ustar00rootroot00000000000000from fontTools.t1Lib import T1Font, T1Error from fontTools.agl import AGL2UV from fontTools.misc.psLib import PSInterpreter from fontTools.misc.transform import Transform from extractor.tools import RelaxedInfo # specification: http://partners.adobe.com/public/developer/en/font/T1_SPEC.PDF # ---------------- # Public Functions # ---------------- def isType1(pathOrFile): try: font = T1Font(pathOrFile) del font except T1Error: return False return True def extractFontFromType1( pathOrFile, destination, doGlyphs=True, doInfo=True, doKerning=True, customFunctions=[], ): source = T1Font(pathOrFile) destination.lib["public.glyphOrder"] = _extractType1GlyphOrder(source) if doInfo: extractType1Info(source, destination) if doGlyphs: extractType1Glyphs(source, destination) if doKerning: # kerning extraction is not supported yet. # in theory, it could be retried from an AFM. # we need to find the AFM naming rules so that we can sniff for the file. pass for function in customFunctions: function(source, destination) def extractType1Info(source, destination): info = RelaxedInfo(destination.info) _extractType1FontInfo(source, info) _extractType1Private(source, info) _extractType1FontMatrix(source, info) # ---- # Info # ---- def _extractType1FontInfo(source, info): sourceInfo = source["FontInfo"] # FontName info.postscriptFontName = source["FontName"] # version version = sourceInfo.get("version") if version is not None: # the spec says that version will be a string and no formatting info is given. # so, only move forward if the string can actually be parsed. try: # 1. convert to a float version = float(version) # 2. convert it back to a string version = "%.3f" % version # 3. split. versionMajor, versionMinor = version.split(".") # 4. convert. versionMajor = int(versionMajor) versionMinor = int(versionMinor) # 5. set. info.versionMajor = int(versionMajor) info.versionMinor = int(versionMinor) except ValueError: # couldn't parse. leve the object with the default values. pass # Notice notice = sourceInfo.get("Notice") if notice: info.copyright = notice # FullName fullName = sourceInfo.get("FullName") if fullName: info.postscriptFullName = fullName # FamilyName familyName = sourceInfo.get("FamilyName") if familyName: info.familyName = familyName # Weight postscriptWeightName = sourceInfo.get("Weight") if postscriptWeightName: info.postscriptWeightName = postscriptWeightName # ItalicAngle info.italicAngle = sourceInfo.get("ItalicAngle") # IsFixedPitch info.postscriptIsFixedPitch = sourceInfo.get("isFixedPitch") # UnderlinePosition/Thickness info.postscriptUnderlinePosition = sourceInfo.get("UnderlinePosition") info.postscriptUnderlineThickness = sourceInfo.get("UnderlineThickness") def _extractType1FontMatrix(source, info): # units per em matrix = source["FontMatrix"] matrix = Transform(*matrix).inverse() info.unitsPerEm = int(round(matrix[3])) def _extractType1Private(source, info): private = source["Private"] # UniqueID info.openTypeNameUniqueID = private.get("UniqueID", None) # BlueValues and OtherBlues info.postscriptBlueValues = private.get("BlueValues", []) info.postscriptOtherBlues = private.get("OtherBlues", []) # FamilyBlues and FamilyOtherBlues info.postscriptFamilyBlues = private.get("FamilyBlues", []) info.postscriptFamilyOtherBlues = private.get("FamilyOtherBlues", []) # BlueScale/Shift/Fuzz info.postscriptBlueScale = private.get("BlueScale", None) info.postscriptBlueShift = private.get("BlueShift", None) info.postscriptBlueFuzz = private.get("BlueFuzz", None) # StemSnapH/V info.postscriptStemSnapH = private.get("StemSnapH", []) info.postscriptStemSnapV = private.get("StemSnapV", []) # ForceBold info.postscriptForceBold = bool(private.get("ForceBold", None)) # -------- # Outlines # -------- def extractType1Glyphs(source, destination): glyphSet = source.getGlyphSet() for glyphName in sorted(glyphSet.keys()): sourceGlyph = glyphSet[glyphName] # make the new glyph destination.newGlyph(glyphName) destinationGlyph = destination[glyphName] # outlines pen = destinationGlyph.getPen() sourceGlyph.draw(pen) # width destinationGlyph.width = sourceGlyph.width # synthesize the unicode value destinationGlyph.unicode = AGL2UV.get(glyphName) # ----------- # Glyph order # ----------- class GlyphOrderPSInterpreter(PSInterpreter): def __init__(self): PSInterpreter.__init__(self) self.glyphOrder = [] self.collectTokenForGlyphOrder = False def do_literal(self, token): result = PSInterpreter.do_literal(self, token) if token == "/FontName": self.collectTokenForGlyphOrder = False if self.collectTokenForGlyphOrder: self.glyphOrder.append(result.value) if token == "/CharStrings": self.collectTokenForGlyphOrder = True return result def _extractType1GlyphOrder(t1Font): interpreter = GlyphOrderPSInterpreter() interpreter.interpret(t1Font.data) return interpreter.glyphOrder extractor-0.5.0/Lib/extractor/formats/vfb.py000066400000000000000000000040361416264461600210670ustar00rootroot00000000000000import os import shutil import tempfile import subprocess from fontTools.ufoLib import UFOReader _ufo2vfbLocation = "/usr/local/bin/vfb2ufo" def haveVfb2ufo(): return os.path.exists(_ufo2vfbLocation) # ---------------- # Public Functions # ---------------- def isVFB(pathOrFile): if not isinstance(pathOrFile, str): return False if os.path.splitext(pathOrFile)[-1].lower() != ".vfb": return False return True def extractFontFromVFB( pathOrFile, destination, doGlyphs=True, doInfo=True, doKerning=True, doGroups=True, doFeatures=True, doLib=True, customFunctions=[], ): ufoPath = tempfile.mkdtemp(suffix=".ufo") cmds = [_ufo2vfbLocation, "-64", "-fo", pathOrFile, ufoPath] cmds = subprocess.list2cmdline(cmds) popen = subprocess.Popen(cmds, shell=True) popen.wait() try: # vfb2ufo writes ufo2, and has no update since 2015...so dont get to crazy here... # dont validate as vfb2ufo writes invalid ufos source = UFOReader(ufoPath, validate=False) if doInfo: source.readInfo(destination.info) if doKerning: kerning = source.readKerning() destination.kerning.update(kerning) if doGroups: groups = source.readGroups() destination.groups.update(groups) if doFeatures: features = source.readFeatures() destination.features.text = features if doLib: lib = source.readLib() destination.lib.update(lib) if doGlyphs: glyphSet = source.getGlyphSet() for glyphName in glyphSet.keys(): destination.newGlyph(glyphName) glyph = destination[glyphName] pointPen = glyph.getPointPen() glyphSet.readGlyph( glyphName=glyphName, glyphObject=glyph, pointPen=pointPen ) for function in customFunctions: function(source, destination) finally: shutil.rmtree(ufoPath) extractor-0.5.0/Lib/extractor/formats/woff.py000066400000000000000000000200671416264461600212550ustar00rootroot00000000000000from xml.sax.saxutils import quoteattr from fontTools.ttLib import TTFont, TTLibError from extractor.tools import RelaxedInfo from extractor.formats.opentype import ( extractOpenTypeInfo, extractOpenTypeGlyphs, extractOpenTypeKerning, ) try: from xml.etree import cElementTree as ElementTree except ImportError: from xml.etree import ElementTree # ---------------- # Public Functions # ---------------- def isWOFF(pathOrFile): flavor = None try: font = TTFont(pathOrFile) flavor = font.flavor del font except TTLibError: return False return flavor in ("woff", "woff2") def extractFontFromWOFF( pathOrFile, destination, doGlyphs=True, doInfo=True, doKerning=True, customFunctions=[], ): source = TTFont(pathOrFile) if doInfo: extractWOFFInfo(source, destination) if doGlyphs: extractWOFFGlyphs(source, destination) if doKerning: kerning, groups = extractWOFFKerning(source, destination) destination.groups.update(groups) destination.kerning.clear() destination.kerning.update(kerning) for function in customFunctions: function(source, destination) source.close() # ---------------- # Specific Imports # ---------------- def extractWOFFInfo(source, destination): info = RelaxedInfo(destination.info) info.woffMajorVersion = source.flavorData.majorVersion info.woffMinorVersion = source.flavorData.minorVersion _extractWOFFMetadata(source.flavorData, info) return extractOpenTypeInfo(source, destination) def extractWOFFGlyphs(source, destination): return extractOpenTypeGlyphs(source, destination) def extractWOFFKerning(source, destination): return extractOpenTypeKerning(source, destination) # -------- # Metadata # -------- def _extractWOFFMetadata(source, destination): if source.metaData is None: return metadata = ElementTree.fromstring(source.metaData) for element in metadata: if element.tag == "uniqueid": _extractWOFFMetadataUniqueID(element, destination) elif element.tag == "vendor": _extractWOFFMetadataVendor(element, destination) elif element.tag == "credits": _extractWOFFMetadataCredits(element, destination) elif element.tag == "description": _extractWOFFMetadataDescription(element, destination) elif element.tag == "license": _extractWOFFMetadataLicense(element, destination) elif element.tag == "copyright": _extractWOFFMetadataCopyright(element, destination) elif element.tag == "trademark": _extractWOFFMetadataTrademark(element, destination) elif element.tag == "licensee": _extractWOFFMetadataLicensee(element, destination) elif element.tag == "extension": _extractWOFFMetadataExtension(element, destination) def _extractWOFFMetadataUniqueID(element, destination): destination.woffMetadataUniqueID = _extractWOFFMetadataDict( element, ("id",) ) def _extractWOFFMetadataVendor(element, destination): attributes = ("name", "url", "dir", "class") record = _extractWOFFMetadataDict(element, attributes) destination.woffMetadataVendor = record def _extractWOFFMetadataCredits(element, destination): attributes = ("name", "url", "role", "dir", "class") credits = [] for subElement in element: if subElement.tag == "credit": record = _extractWOFFMetadataDict(subElement, attributes) credits.append(record) destination.woffMetadataCredits = dict(credits=credits) def _extractWOFFMetadataDescription(element, destination): description = _extractWOFFMetadataDict(element, ("url",)) textRecords = _extractWOFFMetadataText(element) if textRecords: description["text"] = textRecords destination.woffMetadataDescription = description def _extractWOFFMetadataLicense(element, destination): license = _extractWOFFMetadataDict(element, ("url", "id")) textRecords = _extractWOFFMetadataText(element) if textRecords: license["text"] = textRecords destination.woffMetadataLicense = license def _extractWOFFMetadataCopyright(element, destination): copyright = {} textRecords = _extractWOFFMetadataText(element) if textRecords: copyright["text"] = textRecords destination.woffMetadataCopyright = copyright def _extractWOFFMetadataTrademark(element, destination): trademark = {} textRecords = _extractWOFFMetadataText(element) if textRecords: trademark["text"] = textRecords destination.woffMetadataTrademark = trademark def _extractWOFFMetadataLicensee(element, destination): destination.woffMetadataLicensee = _extractWOFFMetadataDict( element, ("name", "dir", "class") ) def _extractWOFFMetadataExtension(element, destination): extension = _extractWOFFMetadataDict(element, ("id",)) for subElement in element: if subElement.tag == "name": if "names" not in extension: extension["names"] = [] name = _extractWOFFMetadataExtensionName(subElement) extension["names"].append(name) elif subElement.tag == "item": if "items" not in extension: extension["items"] = [] item = _extractWOFFMetadataExtensionItem(subElement) extension["items"].append(item) extensions = [] if destination.woffMetadataExtensions: extensions.extend(destination.woffMetadataExtensions) destination.woffMetadataExtensions = extensions + [extension] def _extractWOFFMetadataExtensionItem(element): item = _extractWOFFMetadataDict(element, ("id",)) for subElement in element: if subElement.tag == "name": if "names" not in item: item["names"] = [] name = _extractWOFFMetadataExtensionName(subElement) item["names"].append(name) elif subElement.tag == "value": if "values" not in item: item["values"] = [] name = _extractWOFFMetadataExtensionValue(subElement) item["values"].append(name) return item def _extractWOFFMetadataExtensionName(element): name = _extractWOFFMetadataDict(element, ("dir", "class")) language = _extractWOFFMetadataLanguage(element) if language is not None: name["language"] = language name["text"] = _flattenWOFFMetadataString(element) return name def _extractWOFFMetadataExtensionValue(element): return _extractWOFFMetadataExtensionName(element) # support def _extractWOFFMetadataDict(element, attributes): record = {} for attribute in attributes: value = element.attrib.get(attribute) if value is not None: record[attribute] = value return record def _extractWOFFMetadataText(element): records = [] attributes = ("dir", "class") for subElement in element: record = _extractWOFFMetadataDict(subElement, attributes) # text record["text"] = _flattenWOFFMetadataString(subElement) # language language = _extractWOFFMetadataLanguage(subElement) if language is not None: record["language"] = language records.append(record) return records def _extractWOFFMetadataLanguage(element): language = element.attrib.get("{http://www.w3.org/XML/1998/namespace}lang") if language is None: language = element.attrib.get("lang") return language def _flattenWOFFMetadataString(element, sub=False): text = element.text.strip() for subElement in element: text += _flattenWOFFMetadataString(subElement, sub=True) if element.tail: text += element.tail.strip() if sub: attrib = [ "%s=%s" % (key, quoteattr(value)) for key, value in element.attrib.items() ] attrib = " ".join(attrib) if attrib: start = "<%s %s>" % (element.tag, attrib) else: start = "<%s>" % (element.tag) end = "" % (element.tag) text = start + text + end return text extractor-0.5.0/Lib/extractor/stream.py000066400000000000000000000226131416264461600201330ustar00rootroot00000000000000# -*- coding: utf-8 -*- from fontTools.misc.textTools import num2binary from fontTools.ttLib.tables.ttProgram import streamOpcodeDict, opcodeDict from io import BytesIO class InstructionStream(object): """ :param program_bytes: The program bytecode. :type program_bytes: bytes The instruction stream. """ def __init__(self, instruction_processor=None, program_bytes=b"") -> None: self.ip = instruction_processor self.io = BytesIO(program_bytes) self._num_bytes = len(program_bytes) def __len__(self): return self._num_bytes def __repr__(self) -> str: """ Return the instructions from the bytecode in the current stream starting at the beginning. """ return self.get_assembly() def __str__(self) -> str: """ Return the instructions from the bytecode in the current stream starting at the beginning. """ return self.get_assembly() def move_instruction_pointer(self, bytes_offset: int) -> None: """ :param bytes_offset: The offset in bytes. May be positive or negative. :type bytes_offset: int Move the instruction pointer inside the current stream, relative to the current pointer position. """ self.io.seek(bytes_offset, 1) # 1 = relative to current position def read_byte(self): """ Read a byte from the instruction stream and advance the instruction pointer. Returns the value as a tuple of (byte, int). """ b = self.io.read(1) if not b: return False return b, int.from_bytes(b, byteorder="big", signed=False) def read_word(self): """ Read a word from the instruction stream and advance the instruction pointer. Returns the value as a tuple of (word, int). """ w = self.io.read(2) if not w: return False return w, int.from_bytes(w, byteorder="big", signed=True) def rewind(self) -> None: """ Rewind the instruction pointer to the beginning of the stream. """ self.io.seek(0) # Getting the assembly code @property def vtt_assembly(self) -> str: """ Return the instructions from the bytecode in the current stream as VTT assembly code. """ return self.get_assembly(dialect="vtt", end="\n") def get_assembly(self, dialect="ttx", end="\n") -> str: """ Return the instructions from the bytecode in the current stream as assembly code in the specified dialect, "ttx" or "vtt". """ vtt = dialect == "vtt" ttx = dialect == "ttx" self.rewind() asm = "" indent = 0 while True: opcode = self.io.read(1) if not opcode: asm = asm.strip() if ttx: return asm elif vtt: if asm: return f"#PUSHOFF{end}" + asm.strip() + f"{end}#PUSHON" return "" else: # Unknown dialect raise NotImplementedError opcode = int.from_bytes(opcode, byteorder="big", signed=False) cmd_info = streamOpcodeDict.get(opcode, None) if cmd_info is None: cmd_info = opcodeDict.get(opcode, None) if cmd_info is None: print( asm + "\n" "Illegal opcode 0x%02x at offset 0x%04x." % (int(opcode), self.io.tell(),) ) raise KeyError cmd_name, arg_bits, base_opcode, name = cmd_info args = [] if cmd_name in ("EIF", "ELSE", "ENDF"): indent -= 1 if cmd_name in ("NPUSHB", "NPUSHW", "PUSHB", "PUSHW"): # PUSH instructions read their arguments from the stream if cmd_name.startswith("PUSH"): # Take number of arguments from the opcode num_args = opcode - base_opcode + 1 else: # Take number of arguments from the stream _, num_args = self.read_byte() if cmd_name.endswith("B"): for n in range(num_args): _, i = self.read_byte() args.append(str(i)) else: for n in range(num_args): _, i = self.read_word() args.append(str(i)) arg_bits = 0 # Don't output bits for push instructions if arg_bits == 0: if ttx: arg_bitstring = " " else: arg_bitstring = "" else: if ttx: arg_bitstring = num2binary(opcode - base_opcode, arg_bits) elif vtt: arg_bitstring = self.bitstring_to_mnemonic( cmd_name, num2binary(opcode - base_opcode, arg_bits) ) else: # Unknown dialect raise NotImplementedError if ttx: if cmd_name in ("NPUSHB", "NPUSHW", "PUSHB", "PUSHW"): num_args = len(args) val = "value" if num_args == 1 else "values" asm += ( f"\n{' ' * indent}{cmd_name}[{arg_bitstring}]" f"\t/* {num_args} {val} pushed */" ) else: asm += ( f"\n{' ' * indent}{cmd_name}[{arg_bitstring}]" f"\t/* {name} */" ) if args: asm += f"\n{' ' * indent}{' '.join(args)}" elif vtt: if cmd_name in ("NPUSHB", "NPUSHW", "PUSHB", "PUSHW"): # Format as generic #PUSH for VTT assembly output cmd_name = "#PUSH" asm += f"{end}{' ' * indent}{cmd_name}, {', '.join(args)}" elif cmd_name in ("JMPR", "JROF"): # Special formatting for jump instructions if cmd_name == "JPMR": args = ("*",) elif cmd_name == "JROF": args = ("*", "*") asm += f"{end}#PUSHON" asm += f"{end}{' ' * indent}{cmd_name}, {', '.join(args)}" asm += f"{end}#PUSHOFF" else: asm += ( f"{end}{' ' * indent}{cmd_name}[{arg_bitstring}]" f"\t/* {name} */" ) else: # Unknown dialect raise NotImplementedError if cmd_name in ("ELSE", "FDEF", "IF"): indent += 1 def bitstring_to_mnemonic(self, cmd_name: str, bitstring: str) -> str: """ Return VTT mnemonics for a bit string """ if cmd_name in ("SVTCA", "SPVTCA", "SFVTCA", "IUP"): # Direction if bitstring == "0": return "Y" # Y axis return "X" # X axis elif cmd_name in ("SPVTL", "SFVTL", "SDPVTL"): # Line relation if bitstring == "0": return "r" # parallel to line return "R" # perpendicular to line elif cmd_name in ("MDAP", "MIAP"): # Rounding if bitstring == "0": return "r" # do not round distance return "R" # round distance elif cmd_name in ("SHP", "SHC", "SHZ"): # Reference Point Usage if bitstring == "0": return "2" # Use rp2 return "1" # Use rp1 elif cmd_name in ("MSIRP",): # Reference Point Autoset if bitstring == "0": return "m" # Do not set rp0 return "M" # Set rp0 to point number on the stack elif cmd_name in ("GC", "MD"): # Outline if bitstring == "0": return "N" # Use gridfitted outline return "O" # Use original outline elif cmd_name in ("ROUND", "NROUND"): # Color return self.bitstring_to_color_mnemonic(bitstring) elif cmd_name in ("MDRP", "MIRP"): flags = "" # Reference Point Autoset if bitstring[0] == "0": flags += "m" else: flags += "M" # Minimum Distance if bitstring[1] == "0": flags += "<" else: flags += ">" # Rounding if bitstring[2] == "0": flags += "r" # do not round distance else: flags += "R" # round distance # Color return flags + self.bitstring_to_color_mnemonic(bitstring[3:]) # Unknown command raise KeyError def bitstring_to_color_mnemonic(self, bitstring: str) -> str: """ Return VTT distance color mnemonics for a bit string """ if bitstring == "00": return "Gr" # Gray elif bitstring == "01": return "Bl" # Black elif bitstring == "10": return "Wh" # White # "11" is not defined raise KeyError extractor-0.5.0/Lib/extractor/tools.py000066400000000000000000000016701416264461600200000ustar00rootroot00000000000000from fontTools.ufoLib import ( fontInfoAttributesVersion3, validateFontInfoVersion3ValueForAttribute, ) class RelaxedInfo(object): """ This object that sets only valid info values into the given info object. """ def __init__(self, info): self._object = info def __getattr__(self, attr): if attr in fontInfoAttributesVersion3: return getattr(self._object, attr) else: return super(RelaxedInfo, self).__getattr__(attr) def __setattr__(self, attr, value): if attr in fontInfoAttributesVersion3: if validateFontInfoVersion3ValueForAttribute(attr, value): setattr(self._object, attr, value) else: super(RelaxedInfo, self).__setattr__(attr, value) def copyAttr(src, srcAttr, dest, destAttr): if not hasattr(src, srcAttr): return value = getattr(src, srcAttr) setattr(dest, destAttr, value) extractor-0.5.0/License.txt000066400000000000000000000020631416264461600156650ustar00rootroot00000000000000The MIT License Copyright (c) 2010 Type Supply LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.extractor-0.5.0/MANIFEST.in000066400000000000000000000001341416264461600152750ustar00rootroot00000000000000include License.txt include tox.ini include requirements.txt recursive-include tests *.py extractor-0.5.0/README.rst000066400000000000000000000030051416264461600152260ustar00rootroot00000000000000|CI Build Status| |PyPI Version| |Python Versions| UFO Extractor ============= Tools for extracting data from font binaries into UFO objects. Features -------- Import data into a `Defcon `__ ``Font`` instance: .. code:: python >>> import extractor >>> import defcon >>> ufo = defcon.Font() >>> extractor.extractUFO("/path/to/MyFont.ttf", ufo) >>> ufo.save("/path/to/MyFont.ufo") Supported input formats: - CFF or TrueType-flavored OpenType fonts (``*.otf``, ``*.ttf``) - `FontTools `__ TTX files (``*.ttx``) - WOFF 1.0/2.0 (``*.woff``, ``*.woff2``) - PostScript Type1 fonts (``*.pfa``, ``*.pfb``, etc.) Installation ------------ You can install ``extractor`` with ``pip``: .. code:: $ pip install ufo-extractor Note that, for historical reasons, the package is listed on the `Python Package Index `__ under the name ``ufo-extractor``, to disambiguate it from another package also called "extractor". However, the import name for the package remains ``extractor``, without prefix. .. |CI Build Status| image:: https://github.com/robotools/extractor/workflows/Tests/badge.svg :target: https://github.com/robotools/extractor/actions?query=workflow%3ATests .. |PyPI Version| image:: https://img.shields.io/pypi/v/ufo-extractor.svg :target: https://pypi.org/project/ufo-extractor/ .. |Python Versions| image:: https://img.shields.io/badge/python-3.7%2C%203.8%2C%203.9-blue.svg extractor-0.5.0/dev-requirements.txt000066400000000000000000000000161416264461600175760ustar00rootroot00000000000000pytest ufo2ft extractor-0.5.0/pyproject.toml000066400000000000000000000003001416264461600164460ustar00rootroot00000000000000[build-system] requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"] [tool.setuptools_scm] write_to = 'Lib/extractor/_version.py' write_to_template = '__version__ = "{version}"'extractor-0.5.0/requirements.txt000066400000000000000000000000311416264461600170170ustar00rootroot00000000000000fonttools defcon ufoLib2 extractor-0.5.0/setup.cfg000066400000000000000000000004241416264461600153620ustar00rootroot00000000000000[wheel] universal = 1 [sdist] formats = zip [aliases] test = pytest [metadata] license_file = License.txt [tool:pytest] minversion = 2.8 testpaths = tests python_files = *_test.py python_classes = *Test addopts = -v -r a [options] setup_requires = setuptools_scmextractor-0.5.0/setup.py000077500000000000000000000037441416264461600152660ustar00rootroot00000000000000#!/usr/bin/env python import sys from setuptools import setup, find_packages needs_pytest = {'pytest', 'test'}.intersection(sys.argv) pytest_runner = ['pytest_runner'] if needs_pytest else [] needs_wheel = {'bdist_wheel'}.intersection(sys.argv) wheel = ['wheel'] if needs_wheel else [] with open('README.rst', 'r') as f: long_description = f.read() setup_params = dict( name="ufo_extractor", description="Tools for extracting data from font binaries into UFO objects.", long_description=long_description, author="Tal Leming", author_email="tal@typesupply.com", maintainer="Just van Rossum, Frederik Berlaen, Ben Kiel", maintainer_email="justvanrossum@gmail.com", url="https://github.com/robotools/extractor", license="MIT", package_dir={"": "Lib"}, packages=find_packages("Lib"), include_package_data=True, use_scm_version={ "write_to": 'Lib/extractor/_version.py', "write_to_template": '__version__ = "{version}"', }, setup_requires=pytest_runner + wheel + ['setuptools_scm'], tests_require=[ 'pytest>=3.0.3', ], install_requires=[ "fonttools[ufo,lxml,woff,unicode,type1]>=4.17.0", ], classifiers=[ "Development Status :: 4 - Beta", "Environment :: Console", "Environment :: Other Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python", "Topic :: Multimedia :: Graphics :: Editors :: Vector-Based", "Topic :: Multimedia :: Graphics :: Graphics Conversion", "Topic :: Multimedia :: Graphics", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Fonts", ], python_requires='>=3.6', zip_safe=True, ) if __name__ == "__main__": setup(**setup_params) extractor-0.5.0/tests/000077500000000000000000000000001416264461600147035ustar00rootroot00000000000000extractor-0.5.0/tests/conftest.py000066400000000000000000000007251416264461600171060ustar00rootroot00000000000000import pytest @pytest.fixture(scope="session", params=["defcon", "ufoLib2"]) def ufo_module(request): return pytest.importorskip(request.param) @pytest.fixture(scope="session") def FontClass(ufo_module): if hasattr(ufo_module.Font, "open"): def ctor(path=None): if path is None: return ufo_module.Font() else: return ufo_module.Font.open(path) return ctor return ufo_module.Font extractor-0.5.0/tests/data/000077500000000000000000000000001416264461600156145ustar00rootroot00000000000000extractor-0.5.0/tests/data/UVSTest.ttf000066400000000000000000000022741416264461600176550ustar00rootroot00000000000000  OS/2_T\c(`cmap3glyfB-&dheadHŽ6hhea1$hmtxLlocaX maxp % name(dpost%\^v;_<ܞ3ܞ222$XKX^2,NONE@0 222,Lt, L 00 (00ppE+4=0ppF2!%!!2,227"&&546632'26654&&#"-L..L-.L--L/$;"";$#:##:DqEEqCCqEEqD&9a:;`99`;:a92#7"&&546632'&#"26654&'-L..L-.L--L##:#$;"DqEEqCCqEEqD4Yb9`9a:-ON   4  R r UVS TestRegular1.000;NONE;UVSTest-RegularUVS Test RegularVersion 1.000UVSTest-Regular2 zero.slashAnegativesquaredAnegativesquared.textextractor-0.5.0/tests/data/ibm_plex/000077500000000000000000000000001416264461600174135ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text Italic.vfb000066400000000000000000027142751416264461600245750ustar00rootroot00000000000000WLF10,  .notdef.nullCRspacea a.alt01bcd e f g g.alt01 g.alt02hijklmnopqrstuvwxy z!A"B#C$D%E&F'G(H)I*J+K,L-M.N/O0P1Q2R3S4T5U6V7W8X9Y:Z;zero <zero.alt01 =zero.alt02>one?two@threeAfourBfiveCsixDsevenEeightFnine GampersandHatIhyphen JsofthyphenKendashLemdash MunderscoreNperiod OellipsisPcolonQcomma Rsemicolon Squotesingle Tquotedbl Uquoteleft VquoterightWquotedblleftXquotedblrightYquotesinglbaseZquotedblbase[guilsinglleft\guilsinglright]guillemotleft^guillemotright _exclamdown`exclamaquestiondown bquestion cparenleft dparenright ebracketleftfbracketright gbraceleft hbracerightislash jbackslash kfraction lpercent mperthousandnbar obrokenbar psection qparagraph rcopyright sregistered ttrademark uordfemininevordmasculinewdegreexprime yprimedbl zasterisk{dagger |daggerdbl }numbersign ~asciicircum asciitildeplusminus plusminus multiplydivideequal approxequal notequalless greater lessequalgreaterequalperiodcenteredbullet lozenge logicalnot radical integral infinity estimatedlitre numerosign partialdiff currencycentEuroflorin sterlingdollaryenbahtcoloncurrencyliranairarupeewonsheqeldongkiptugrikpeso guarani hryvniaceditenge rupeeindian liraturkishruble bitcoinfiflaacuteabreve acircumflex adieresis adotbelowagraveahook amacron aogonekaring aringacuteatilde abreveacuteabrevedotbelow abrevegrave abrevehook abrevetildeacircumflexacuteacircumflexdotbelowacircumflexgraveacircumflexhookacircumflextildeaacute.alt01abreve.alt01acircumflex.alt01adieresis.alt01adotbelow.alt01agrave.alt01 ahook.alt01amacron.alt01aogonek.alt01 aring.alt01aringacute.alt01atilde.alt01abreveacute.alt01abrevedotbelow.alt01abrevegrave.alt01abrevehook.alt01abrevetilde.alt01acircumflexacute.alt01acircumflexdotbelow.alt01acircumflexgrave.alt01acircumflexhook.alt01acircumflextilde.alt01ae aeacutecacuteccaron ccedilla ccircumflex cdotaccentdcarondcroatetheacuteebreveecaron ecircumflex edieresis edotaccent edotbelowegraveehook emacron eogoneketildeecircumflexacuteecircumflexdotbelowecircumflexgraveecircumflexhookecircumflextildeschwagbreve gcircumflexgcommaaccent gdotaccentgbreve.alt01gcircumflex.alt01gcommaaccent.alt01gdotaccent.alt01hbar hcircumflex dotlessiiacuteibreve icircumflex idieresis idotbelow igrave ihook imacron iogonekitildeij ijacute dotlessjjacute jcircumflexkcommaaccentkgreenlandiclacutelcaronlcommaaccentldotlslashnacutencaronncommaaccentntilde napostrophe!eng"oacute#obreve $ocircumflex %odieresis &odotbelow'ograve(ohook)ohungarumlaut *omacron+oslash ,oslashacute-otilde.ohorn /ohornacute0ohorndotbelow 1ohorngrave 2ohornhook 3ohorntilde4ocircumflexacute5ocircumflexdotbelow6ocircumflexgrave7ocircumflexhook8ocircumflextilde9oe:racute;rcaron<rcommaaccent=sacute>scaron ?scedilla @scircumflexAscommaaccent BgermandblsCgermandbls.alt01DtbarEtcaronFtcommaaccent GtcedillaHthornIuacuteJubreve Kucircumflex Ludieresis MudotbelowNugraveOuhookPuhungarumlaut Qumacron RuogonekSuringTutildeUuhorn VuhornacuteWuhorndotbelow Xuhorngrave Yuhornhook Zuhorntilde[wacute \wcircumflex ]wdieresis^wgrave_yacute `ycircumflex aydieresis bydotbelowcygravedyhookeytildefzacutegzcaron hzdotaccentiAacutejAbreve kAcircumflex lAdieresis mAdotbelownAgraveoAhook pAmacron qAogonekrAring sAringacutetAtilde uAbreveacutevAbrevedotbelow wAbrevegrave xAbrevehook yAbrevetildezAcircumflexacute{Acircumflexdotbelow|Acircumflexgrave}Acircumflexhook~AcircumflextildeAE AEacuteCacuteCcaron Ccedilla Ccircumflex CdotaccentDcaronDcroatEthEacuteEbreveEcaron Ecircumflex Edieresis Edotaccent EdotbelowEgraveEhook Emacron EogonekEtildeEcircumflexacuteEcircumflexdotbelowEcircumflexgraveEcircumflexhookEcircumflextildeSchwaGbreve GcircumflexGcommaaccent GdotaccentHbar HcircumflexIacuteIbreve Icircumflex Idieresis Idotaccent IdotbelowIgraveIhook Imacron IogonekItildeIJ IJacuteJacute JcircumflexKcommaaccentLacuteLcaronLcommaaccentLdotLslashNacuteNcaronNcommaaccentNtildeEngOacuteObreve Ocircumflex Odieresis OdotbelowOgraveOhookOhungarumlaut OmacronOslash OslashacuteOtildeOhorn OhornacuteOhorndotbelow Ohorngrave Ohornhook OhorntildeOcircumflexacuteOcircumflexdotbelowOcircumflexgraveOcircumflexhookOcircumflextildeOERacuteRcaronRcommaaccentSacuteScaron Scedilla ScircumflexScommaaccent GermandblsTbarTcaronTcommaaccent TcedillaThornUacuteUbreve Ucircumflex Udieresis UdotbelowUgraveUhookUhungarumlaut Umacron UogonekUringUtildeUhorn UhornacuteUhorndotbelow Uhorngrave Uhornhook UhorntildeWacute Wcircumflex WdieresisWgraveYacute Ycircumflex Ydotbelow YdieresisYgraveYhookYtildeZacuteZcaron ZdotaccentmuDelta product summationOmegapi uni0430uni0430.alt01 uni0431 uni0432 uni0433 uni0434 uni0435 uni0436 uni0437 uni0438 uni0439 uni043A uni043B uni043C uni043D uni043E uni043F uni0440 uni0441 uni0442 uni0443 uni0444 uni0445 uni0446 uni0447 uni0448 !uni0449 "uni044A #uni044B $uni044C %uni044D &uni044E 'uni044F (uni0410 )uni0411 *uni0412 +uni0413 ,uni0414 -uni0415 .uni0416 /uni0417 0uni0418 1uni0419 2uni041A 3uni041B 4uni041C 5uni041D 6uni041E 7uni041F 8uni0420 9uni0421 :uni0422 ;uni0423 <uni0424 =uni0425 >uni0426 ?uni0427 @uni0428 Auni0429 Buni042A Cuni042B Duni042C Euni042D Funi042E Guni042F Huni04D3 Iuni04D1Juni04D3.alt01Kuni04D1.alt01 Luni04D5 Muni0453 Nuni0491 Ouni0493 Puni0495 Quni0450 Runi0451 Suni04D7 Tuni0454 Uuni04DD Vuni04C2 Wuni0497 Xuni04DF Yuni0499 Zuni04CF [uni04E5 \uni045D ]uni04E3 ^uni045C _uni049B `uni049D auni04A1 buni0459 cuni04A3 duni045A euni04A5 funi04E7 guni0473 huni04E9 iuni04AB juni04EF kuni04F1 luni04F3 muni045E nuni04AF ouni04B1 puni04B3 quni04F5 runi04B7 suni04B9 tuni04F9 uuni0455 vuni045F wuni0456 xuni0457 yuni0458 zuni0452 {uni045B |uni04BB }uni04D9 ~uni04D2 uni04D0 uni04D4 uni0403 uni0490 uni0492 uni0494 uni0400 uni0401 uni04D6 uni0404 uni04DC uni04C1 uni0496 uni04DE uni0498 uni04C0 uni04E4 uni040D uni04E2 uni040C uni049A uni049C uni04A0 uni0409 uni04A2 uni040A uni04A4 uni04E6 uni0472 uni04E8 uni04AA uni04EE uni04F0 uni04F2 uni040E uni04AE uni04B0 uni04B2 uni04F4 uni04B6 uni04B8 uni04F8 uni0405 uni040F uni0406 uni0407 uni0408 uni0402 uni040B uni04BA uni04D8zerosuperior onesuperior twosuperiorthreesuperiorfoursuperiorfivesuperior sixsuperiorsevensuperioreightsuperiorninesuperiorzeroinferior oneinferior twoinferiorthreeinferiorfourinferiorfiveinferior sixinferiorseveninferioreightinferiornineinferior onehalf uni2153 uni2154 onequarterthreequarters uni2155 uni2156 uni2157 uni2158 uni2159 uni215A uni2150 uni215B uni215C uni215D uni215E uni2151 checkmark crossmark arrowleft arrowup arrowdown arrowright arrowupleftarrowuprightarrowdownleftarrowdownrightarrowupleftcornerarrowdownleftcornerarrowleftupcornerarrowrightupcornerarrowleftdowncornerarrowrightdowncornerarrowuprightcornerarrowdownrightcornerarrowleftarrowrightarrowrightarrowleftarrowleftright arrowupdownarrowdowncounterclockhalfarrowdownclockhalfarrowhookleftarrowhookrightarrowupleftcounterclockarrowuprightclocktilde tilde.alt01macron dotaccent dieresishungarumlautacutegrave circumflexcaronbreve breve.cyrlring ringacutecommaturnedtop caronslovak cedillaogonek tildecomb macroncombdotaccentcombdieresiscomb hungarumlautcomb acutecomb gravecomb circumflexcomb caroncomb brevecomb ringcomb hookcombcommaturnedtopcombcaronslovakcomb horncomb cedillacombdotbelowcombcommabelowcomb ogonekcomb breveacute brevegrave brevehook brevetildedieresisacutedieresiscarondieresisgravecircumflexacute circumflexbreve!circumflexgrave"circumflexhook#dieresismacron$circumflextilde %tilde.case&tilde.alt01.case 'macron.case(dotaccent.case)dieresis.case*hungarumlaut.case +acute.case ,grave.case-circumflex.case .caron.case /breve.case0breve.cyrl_case 1ring.case2ringacute.case3hookcomb.case4breveacute.case5brevegrave.case6brevehook.case7brevetilde.case8dieresisacute.case9dieresiscaron.case:dieresisgrave.case;circumflexacute.case<circumflexbreve.case=circumflexgrave.case>circumflexhook.case?dieresismacron.case@circumflextilde.case Anbspace Bibmlogo07 CfcclogoDcelogoIBMPlexSerif-TextItalic?2.5IBM Plex Serif Text ItalicIBM Plex SerifIBM Plex Serif IBM Plex Serif TextDIBMPlexSerif TextItalicMedium)Medium (normal)-This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL.http://scripts.sil.org/OFL -Copyright 2018 IBM Corp. All rights reserved.%SIBM Plex™ is a trademark of IBM Corp, registered in many jurisdictions worldwide.&3Mike Abbink, Paul van der Laan, Pieter van Rosmalen'http://www.ibm.com(http://www.boldmonday.com Bold Monday Gz,0^ hVersion 2.005 2018i&IBM;IBMPlexSerif-TextItalic;2.005;2018g Text Italicq Text ItalicstaIBMmPnljkoBE, $# 9U 3456789:|;^?@APBCD EPFGHqIJKLMNOPQ~R\S  !%*.26:CKX  !%*.26:CKT 2\粒粒ۧӛB񟭷Ùǧߡśŧ秿镛ɝuc_serif lc_stemserif bowl_thin bowl_thick stroke_tiplc_thinsh lc_mediumstrianglelogo_celogo_fccտuc_stemarrowsuc_thick uc_thickestӼlc_cyrbar *spur4uc_SpurX: 105X: 73X: 88X: 96_inf_topxheightNcapheightxslashesascenderbaseline\descenderޑsup_boto; PD0Dr ëث ﹋ ëث ﹌ث  ث    ƽƽÎ  ƽƽÏث  ث  ÐÑ    ث >ث   𹒎ث !"ث   𹓌      ź  ź  ź ź $  ׫ ܫūźט$  ׫ ܫūźיźיźכث 񜎌           up(:How razorback-jumping frogs can level six piqued gymnasts! com.type-invaders.fontnaming.macfam IBM Plex Serif com.type-invaders.fontnaming.macstyle Text Italic com.type-invaders.fontnaming.winfam IBM Plex Serif Text com.type-invaders.fontnaming.winstyle Italic }# ---------------- # LANGUAGE SYSTEMS # ---------------- languagesystem DFLT dflt; # Default languagesystem latn dflt; # Latin default languagesystem cyrl dflt; # Cyrillic default # -------------- # GLOBAL CLASSES # -------------- @lca_dflt = [a aacute abreve acircumflex adieresis adotbelow agrave ahook amacron aogonek aring aringacute atilde abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde]; # 23 items @lca_alt1 = [a.alt01 aacute.alt01 abreve.alt01 acircumflex.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01]; # 23 items @lca_cyrl_dflt = [uni0430 uni04D3 uni04D1]; # 3 items @lca_cyrl_alt1 = [uni0430.alt01 uni04D3.alt01 uni04D1.alt01]; # 3 items @lcg_dflt = [g gbreve gcircumflex gcommaaccent gdotaccent]; # 5 items @lcg_alt1 = [g.alt01 gbreve.alt01 gcircumflex.alt01 gcommaaccent.alt01 gdotaccent.alt01]; # 5 items @numbers_dflt = [zero one two three four five six seven eight nine]; # 10 items @numbers_sups = [zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior]; # 10 items @numbers_sinf = [zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior]; # 10 items feature aalt { sub a from [a.alt01]; # 1 glyph(s) sub g from [g.alt01 g.alt02]; # 2 glyph(s) sub zero from [zero.alt01 zero.alt02]; # 2 glyph(s) sub aacute from [aacute.alt01]; # 1 glyph(s) sub abreve from [abreve.alt01]; # 1 glyph(s) sub acircumflex from [acircumflex.alt01]; # 1 glyph(s) sub adieresis from [adieresis.alt01]; # 1 glyph(s) sub adotbelow from [adotbelow.alt01]; # 1 glyph(s) sub agrave from [agrave.alt01]; # 1 glyph(s) sub ahook from [ahook.alt01]; # 1 glyph(s) sub amacron from [amacron.alt01]; # 1 glyph(s) sub aogonek from [aogonek.alt01]; # 1 glyph(s) sub aring from [aring.alt01]; # 1 glyph(s) sub aringacute from [aringacute.alt01]; # 1 glyph(s) sub atilde from [atilde.alt01]; # 1 glyph(s) sub abreveacute from [abreveacute.alt01]; # 1 glyph(s) sub abrevedotbelow from [abrevedotbelow.alt01]; # 1 glyph(s) sub abrevegrave from [abrevegrave.alt01]; # 1 glyph(s) sub abrevehook from [abrevehook.alt01]; # 1 glyph(s) sub abrevetilde from [abrevetilde.alt01]; # 1 glyph(s) sub acircumflexacute from [acircumflexacute.alt01]; # 1 glyph(s) sub acircumflexdotbelow from [acircumflexdotbelow.alt01]; # 1 glyph(s) sub acircumflexgrave from [acircumflexgrave.alt01]; # 1 glyph(s) sub acircumflexhook from [acircumflexhook.alt01]; # 1 glyph(s) sub acircumflextilde from [acircumflextilde.alt01]; # 1 glyph(s) sub gbreve from [gbreve.alt01]; # 1 glyph(s) sub gcircumflex from [gcircumflex.alt01]; # 1 glyph(s) sub gcommaaccent from [gcommaaccent.alt01]; # 1 glyph(s) sub gdotaccent from [gdotaccent.alt01]; # 1 glyph(s) sub germandbls from [germandbls.alt01]; # 1 glyph(s) sub uni0430 from [uni0430.alt01]; # 1 glyph(s) sub uni04D3 from [uni04D3.alt01]; # 1 glyph(s) sub uni04D1 from [uni04D1.alt01]; # 1 glyph(s) sub tilde from [tilde.alt01 tilde.case tilde.alt01.case]; # 3 glyph(s) sub macron from [macron.case]; # 1 glyph(s) sub dotaccent from [dotaccent.case]; # 1 glyph(s) sub dieresis from [dieresis.case]; # 1 glyph(s) sub hungarumlaut from [hungarumlaut.case]; # 1 glyph(s) sub acute from [acute.case]; # 1 glyph(s) sub grave from [grave.case]; # 1 glyph(s) sub circumflex from [circumflex.case]; # 1 glyph(s) sub caron from [caron.case]; # 1 glyph(s) sub breve from [breve.cyrl breve.case breve.cyrl_case]; # 3 glyph(s) sub ring from [ring.case]; # 1 glyph(s) sub ringacute from [ringacute.case]; # 1 glyph(s) sub hookcomb from [hookcomb.case]; # 1 glyph(s) sub breveacute from [breveacute.case]; # 1 glyph(s) sub brevegrave from [brevegrave.case]; # 1 glyph(s) sub brevehook from [brevehook.case]; # 1 glyph(s) sub brevetilde from [brevetilde.case]; # 1 glyph(s) sub dieresisacute from [dieresisacute.case]; # 1 glyph(s) sub dieresiscaron from [dieresiscaron.case]; # 1 glyph(s) sub dieresisgrave from [dieresisgrave.case]; # 1 glyph(s) sub circumflexacute from [circumflexacute.case]; # 1 glyph(s) sub circumflexbreve from [circumflexbreve.case]; # 1 glyph(s) sub circumflexgrave from [circumflexgrave.case]; # 1 glyph(s) sub circumflexhook from [circumflexhook.case]; # 1 glyph(s) sub dieresismacron from [dieresismacron.case]; # 1 glyph(s) sub circumflextilde from [circumflextilde.case]; # 1 glyph(s) } aalt; feature ordn { # ordinals sub [a o] by [ordfeminine ordmasculine]; } ordn; feature frac { # fractions sub @numbers_dflt by @numbers_sups; sub [slash] by fraction; sub fraction @numbers_sups' by @numbers_sinf; sub @numbers_sinf @numbers_sups' by @numbers_sinf; } frac; feature numr { # numerators sub @numbers_dflt by @numbers_sups; } numr; feature dnom { # denominators sub @numbers_dflt by @numbers_sinf; } dnom; feature sups { # superiors sub @numbers_dflt by @numbers_sups; } sups; feature sinf { # inferiors sub @numbers_dflt by @numbers_sinf; } sinf; feature zero { # slashed zero sub zero by zero.alt01; } zero; feature ss01 { featureNames { name 3 1 0x0409 "alternate lowercase a"; # Win / Unicode / English US name 1 0 0 "alternate lowercase a"; # Mac / Roman / English }; # stylistic set 1 - double storey a sub @lca_dflt by @lca_alt1; sub @lca_cyrl_dflt by @lca_cyrl_alt1; } ss01; feature ss02 { featureNames { name 3 1 0x0409 "alternate lowercase g"; # Win / Unicode / English US name 1 0 0 "alternate lowercase g"; # Mac / Roman / English }; # stylistic set 2 - double storey g sub @lcg_dflt by @lcg_alt1; } ss02; feature ss03 { featureNames { name 3 1 0x0409 "slashed number zero"; # Win / Unicode / English US name 1 0 0 "slashed number zero"; # Mac / Roman / English }; # slashed zero sub zero by zero.alt01; } ss03; feature ss04 { featureNames { name 3 1 0x0409 "dotted number zero"; # Win / Unicode / English US name 1 0 0 "dotted number zero"; # Mac / Roman / English }; # plain zero sub zero by zero.alt02; } ss04; feature ss05 { featureNames { name 3 1 0x0409 "alternate lowercase eszett"; # Win / Unicode / English US name 1 0 0 "alternate lowercase eszett"; # Mac / Roman / English }; # alternative german eszett sub germandbls by germandbls.alt01; } ss05; feature salt { # stylistic alternates - all stylistic sets combined sub @lca_dflt by @lca_alt1; sub @lca_cyrl_dflt by @lca_cyrl_alt1; sub @lcg_dflt by @lcg_alt1; sub zero by zero.alt02; sub germandbls by germandbls.alt01; } salt; feature liga { sub f i by fi; sub f l by fl; } liga; feature ccmp { # glyph composition/decomposition @uc_basic = [A AE Aogonek B C Ccedilla D E Eogonek F G H I Iogonek J K L M N O OE Ohorn Oslash P Q R S Schwa T U Uhorn Uogonek V W X Y Z]; # 37 glyphs @acc_comb_top = [acutecomb breveacute brevecomb brevegrave brevehook brevetilde caroncomb caronslovakcomb circumflexacute circumflexbreve circumflexcomb circumflexgrave circumflexhook circumflextilde commaturnedtopcomb dieresisacute dieresiscaron dieresiscomb dieresisgrave dieresismacron dotaccentcomb gravecomb hookcomb horncomb hungarumlautcomb macroncomb ringcomb tildecomb]; # 28 glyphs @acc_comb_dflt = [breveacute brevegrave brevehook brevetilde circumflexacute circumflexbreve circumflexgrave circumflexhook circumflextilde dieresisacute dieresiscaron dieresisgrave dieresismacron hookcomb]; # 14 glyphs @acc_comb_case = [breveacute.case brevegrave.case brevehook.case brevetilde.case circumflexacute.case circumflexbreve.case circumflexgrave.case circumflexhook.case circumflextilde.case dieresisacute.case dieresiscaron.case dieresisgrave.case dieresismacron.case hookcomb.case]; # 14 glyphs lookup nonContextSubs { sub brevecomb acutecomb by breveacute; sub brevecomb gravecomb by brevegrave; sub brevecomb hookcomb by brevehook; sub brevecomb tildecomb by brevetilde; sub circumflexcomb acutecomb by circumflexacute; sub circumflexcomb gravecomb by circumflexgrave; sub circumflexcomb hookcomb by circumflexhook; sub circumflexcomb tildecomb by circumflextilde; sub circumflexcomb brevecomb by circumflexbreve; sub dieresiscomb acutecomb by dieresisacute; sub dieresiscomb caroncomb by dieresiscaron; sub dieresiscomb gravecomb by dieresisgrave; sub dieresiscomb macroncomb by dieresismacron; } nonContextSubs; lookup contextSubs { sub [L d l t] caroncomb' by caronslovakcomb; # /Lcaron /dcaron /lcaron /tcaron sub g commabelowcomb' by commaturnedtopcomb; # /gcommaaccent sub i' @acc_comb_top by dotlessi; sub j' @acc_comb_top by dotlessj; sub @uc_basic @acc_comb_dflt' by @acc_comb_case; # case accents } contextSubs; } ccmp; feature kern { # Created: Thu Dec 21 18:25:46 2017 # PS Name: IBMPlexSerif-TextItalic # MM Inst: IBM Plex Serif Text # MinKern: +/- 1 inclusive # exported from Robofont @MMK_L_cyr_lc_acyrillic.alt01 = [uni0430.alt01 uni04D1.alt01 uni04D3.alt01]; @MMK_L_cyr_lc_encyrillic = [uni0430 uni0438 uni0439 uni043B uni043C uni043D uni0447 uni0448 uni044B uni044F uni045D uni045F uni04B9 uni04D1 uni04D3 uni04E3 uni04E5 uni04F5 uni04F9]; @MMK_L_cyr_lc_escyrillic = [uni0441 uni04AB]; @MMK_L_cyr_lc_gecyrillic = [uni0433 uni0453]; @MMK_L_cyr_lc_gheupturncyrillic = [uni0491 uni04A5]; @MMK_L_cyr_lc_iicyrillic = [uni0456 uni0457]; @MMK_L_cyr_lc_jecyrillic = [uni0435 uni0450 uni0451 uni04D5 uni04D7]; @MMK_L_cyr_lc_kacyrillic = [uni043A uni045C uni049D uni04A1]; @MMK_L_cyr_lc_ocyrillic = [uni0431 uni043E uni044D uni044E uni0473 uni04D9 uni04E7 uni04E9]; @MMK_L_cyr_lc_shhacyrillic = [uni043F uni0442 uni045B uni04BB]; @MMK_L_cyr_lc_softsigncyrillic = [uni044A uni044C uni0459 uni045A]; @MMK_L_cyr_lc_tsecyrillic = [uni0446 uni0449 uni04A3 uni04B7]; @MMK_L_cyr_lc_ucyrillic = [uni0443 uni045E uni04EF uni04F1 uni04F3]; @MMK_L_cyr_lc_vecyrillic = [uni0432 uni0437 uni0499 uni04DF]; @MMK_L_cyr_lc_zhecyrillic = [uni0436 uni04C2 uni04DD]; @MMK_L_cyr_uc_Acyrillic = [uni0410 uni04D0 uni04D2]; @MMK_L_cyr_uc_Decyrillic = [uni0414 uni04A2 uni04B6]; @MMK_L_cyr_uc_Encyrillic = [uni0406 uni0407 uni040D uni040F uni0418 uni0419 uni041B uni041C uni041D uni041F uni0427 uni0428 uni042B uni042F uni04B8 uni04C0 uni04E2 uni04E4 uni04F4 uni04F8]; @MMK_L_cyr_uc_Escyrillic = [uni0421 uni04AA]; @MMK_L_cyr_uc_Gecyrillic = [uni0403 uni0413 uni0490 uni04A4]; @MMK_L_cyr_uc_Jecyrillic = [uni0400 uni0401 uni0415 uni04D4 uni04D6]; @MMK_L_cyr_uc_Kacyrillic = [uni040C uni0416 uni041A uni049C uni04A0 uni04C1 uni04DC]; @MMK_L_cyr_uc_Kadescendercyrillic = [uni0496 uni049A]; @MMK_L_cyr_uc_Ocyrillic = [uni041E uni042D uni042E uni0472 uni04D8 uni04E6 uni04E8]; @MMK_L_cyr_uc_Softsigncyrillic = [uni0409 uni040A uni042A uni042C]; @MMK_L_cyr_uc_Tsecyrillic = [uni0426 uni0429]; @MMK_L_cyr_uc_Tshecyrillic = [uni040B uni04BA]; @MMK_L_cyr_uc_Ucyrillic = [uni040E uni0423 uni04EE uni04F0 uni04F2]; @MMK_L_cyr_uc_Zecyrillic = [uni0412 uni0417 uni0498 uni04DE]; @MMK_L_inp_colon = [colon semicolon]; @MMK_L_inp_foot = [quotedbl quotesingle asterisk]; @MMK_L_inp_guill = [guilsinglleft guillemotleft]; @MMK_L_inp_guilr = [guillemotright guilsinglright]; @MMK_L_inp_hyph = [hyphen endash emdash softhyphen]; @MMK_L_inp_period = [ellipsis comma period quotesinglbase quotedblbase]; @MMK_L_inp_quotel = [quotedblleft quoteleft]; @MMK_L_inp_quoter = [quoteright quotedblright]; @MMK_L_lc_a = [acircumflexgrave aring abreveacute abrevetilde agrave acircumflextilde abreve atilde adotbelow adieresis aacute acircumflexacute abrevegrave acircumflexhook abrevehook acircumflex a ahook acircumflexdotbelow aringacute amacron abrevedotbelow aogonek u uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhungarumlaut umacron uogonek uring utilde]; @MMK_L_lc_b = [p thorn b]; @MMK_L_lc_c = [c cdotaccent cacute ccaron ccircumflex ccedilla]; @MMK_L_lc_dcaron = [lcaron dcaron]; @MMK_L_lc_e = [ecaron edieresis egrave eogonek e etilde ecircumflexacute oe ebreve aeacute ecircumflexhook ehook ecircumflex edotbelow edotaccent eacute ae ecircumflextilde ecircumflexdotbelow ecircumflexgrave emacron]; @MMK_L_lc_g = [gdotaccent gbreve g.alt02 g gcircumflex gcommaaccent]; @MMK_L_lc_i = [idotbelow iacute iogonek i ihook igrave itilde icircumflex imacron ibreve fi idieresis]; @MMK_L_lc_j = [gdotaccent.alt01 g.alt01 gcircumflex.alt01 eng jacute gcommaaccent.alt01 j gbreve.alt01 q ij jcircumflex dotlessj dotlessi ijacute]; @MMK_L_lc_k = [k kgreenlandic kcommaaccent]; @MMK_L_lc_l = [d lcommaaccent l lacute lslash fl]; @MMK_L_lc_n = [napostrophe nacute h m n ntilde ncommaaccent hcircumflex ncaron hbar a.alt01 aacute.alt01 abreve.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflex.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01]; @MMK_L_lc_o = [ocircumflexgrave ocircumflextilde ocircumflexdotbelow ohook odotbelow odieresis ohungarumlaut ograve ocircumflex ocircumflexhook omacron o otilde schwa oslash oslashacute obreve ocircumflexacute oacute]; @MMK_L_lc_ohorn = [ohornhook ohornacute ohorngrave ohorntilde ohorndotbelow ohorn]; @MMK_L_lc_r = [racute rcommaaccent r rcaron]; @MMK_L_lc_s = [scircumflex scommaaccent scedilla s sacute scaron]; @MMK_L_lc_t = [tcommaaccent tcaron t tcedilla tbar]; @MMK_L_lc_uhorn = [uhornacute uhorndotbelow uhorn uhorntilde uhorngrave uhornhook]; @MMK_L_lc_w = [wgrave wcircumflex wdieresis w wacute]; @MMK_L_lc_y = [ycircumflex ydieresis ydotbelow yacute y yhook ygrave ytilde]; @MMK_L_lc_z = [zacute z zcaron zdotaccent]; @MMK_L_uc_a = [Atilde Adotbelow Adieresis Aacute Abrevegrave Acircumflexhook Abrevehook Acircumflex A Ahook Acircumflexdotbelow Aringacute Aring Amacron Abreveacute Abrevedotbelow Aogonek Acircumflexgrave Acircumflexacute Abrevetilde Agrave Acircumflextilde Abreve]; @MMK_L_uc_c = [C Cdotaccent Cacute Ccaron Ccircumflex Ccedilla]; @MMK_L_uc_d = [Eth Dcroat D Dcaron]; @MMK_L_uc_e = [Ecaron Egrave Eogonek E Ecircumflexhook Ecircumflex Ecircumflexacute OE Ebreve AEacute Ehook Edieresis Etilde Emacron Edotbelow Edotaccent Eacute AE Ecircumflextilde Ecircumflexdotbelow Ecircumflexgrave]; @MMK_L_uc_g = [Gdotaccent Gbreve Gcircumflex Gcommaaccent G]; @MMK_L_uc_j = [Jacute J IJ IJacute Jcircumflex]; @MMK_L_uc_k = [K Kcommaaccent]; @MMK_L_uc_l = [Lcaron Lcommaaccent L Lacute Lslash Ldot]; @MMK_L_uc_n = [Nacute Eng N Ntilde Ncommaaccent Ncaron]; @MMK_L_uc_o = [Ocircumflexgrave Ocircumflextilde Ocircumflexdotbelow Ohook Odotbelow Odieresis Ohungarumlaut Ograve Ocircumflex Ocircumflexhook Oslash Omacron O Otilde Q Oslashacute Obreve Ocircumflexacute Schwa Oacute]; @MMK_L_uc_ohorn = [Ohornhook Ohornacute Ohorngrave Ohorntilde Ohorndotbelow Ohorn]; @MMK_L_uc_r = [Racute Rcommaaccent R Rcaron]; @MMK_L_uc_s = [Scircumflex Scommaaccent Scedilla S Sacute Scaron]; @MMK_L_uc_t = [Tcommaaccent Tcaron T Tcedilla Tbar]; @MMK_L_uc_u = [Udieresis Uhungarumlaut Udotbelow Uacute Uogonek Utilde Uring Ugrave Umacron Ucircumflex U Ubreve Uhook]; @MMK_L_uc_uhorn = [Uhornacute Uhorndotbelow Uhorn Uhorntilde Uhorngrave Uhornhook]; @MMK_L_uc_w = [Wgrave Wcircumflex Wdieresis W Wacute]; @MMK_L_uc_y = [Ycircumflex Ydieresis Ydotbelow Yacute Y Yhook Ygrave Ytilde]; @MMK_L_uc_z = [Zacute Z Zcaron Zdotaccent]; @MMK_R_cyr_lc_acyrillic = [uni0430 uni04D1 uni04D3]; @MMK_R_cyr_lc_acyrillic.alt01 = [uni0430.alt01 uni04D1.alt01 uni04D3.alt01 uni04D5]; @MMK_R_cyr_lc_checyrillic = [uni0447 uni04B7 uni04B9 uni04F5]; @MMK_R_cyr_lc_elcyrillic = [uni043B uni043C uni0459]; @MMK_R_cyr_lc_encyrillic = [uni043A uni043D uni043F uni0442 uni044E uni045A uni045C uni049B uni049D uni04A3 uni04A5]; @MMK_R_cyr_lc_gecyrillic = [uni0433 uni0453]; @MMK_R_cyr_lc_gheupturncyrillic = [uni0491 uni0495]; @MMK_R_cyr_lc_icyrillic = [uni0456 uni0457]; @MMK_R_cyr_lc_iicyrillic = [uni0438 uni0439 uni0446 uni0448 uni0449 uni045D uni045F uni04E3 uni04E5]; @MMK_R_cyr_lc_khacyrillic = [uni0445 uni04B3]; @MMK_R_cyr_lc_ocyrillic = [uni0432 uni0434 uni0435 uni043E uni0441 uni0450 uni0451 uni0454 uni0473 uni04AB uni04D7 uni04D9 uni04E7 uni04E9]; @MMK_R_cyr_lc_tshecyrillic = [uni0452 uni045B]; @MMK_R_cyr_lc_ucyrillic = [uni0443 uni045E uni04EF uni04F1 uni04F3]; @MMK_R_cyr_lc_yericyrillic = [uni044B uni044C uni04F9]; @MMK_R_cyr_lc_zecyrilic = [uni0437 uni0499 uni04DF]; @MMK_R_cyr_lc_zhecyrillic = [uni0436 uni0497 uni04C2 uni04DD]; @MMK_R_cyr_uc_Acyrillic = [uni0410 uni04D0 uni04D2]; @MMK_R_cyr_uc_Checyrillic = [uni0427 uni04B6 uni04B8 uni04F4]; @MMK_R_cyr_uc_Elcyrillic = [uni0409 uni041B]; @MMK_R_cyr_uc_Encyrillic = [uni0400 uni0401 uni0403 uni0406 uni0407 uni040A uni040C uni040D uni040F uni0411 uni0412 uni0413 uni0415 uni0418 uni0419 uni041A uni041C uni041D uni041F uni0420 uni0426 uni0428 uni0429 uni042B uni042C uni042E uni0490 uni0494 uni049A uni049C uni04A2 uni04A4 uni04BA uni04C0 uni04D6 uni04E2 uni04E4 uni04F8]; @MMK_R_cyr_uc_Hardsigncyrillic = [uni042A uni04A0]; @MMK_R_cyr_uc_Khacyrillic = [uni0425 uni04B2]; @MMK_R_cyr_uc_Ocyrillic = [uni0404 uni041E uni0421 uni0472 uni04AA uni04D8 uni04E6 uni04E8]; @MMK_R_cyr_uc_Tecyrillic = [uni0402 uni040B uni0422]; @MMK_R_cyr_uc_Ucyrillic = [uni040E uni0423 uni04EE uni04F0 uni04F2]; @MMK_R_cyr_uc_Zecyrillic = [uni0417 uni042D uni0498 uni04DE]; @MMK_R_cyr_uc_Zhecyrillic = [uni0416 uni0496 uni04C1 uni04DC]; @MMK_R_inp_colon = [colon semicolon]; @MMK_R_inp_foot = [quotedbl quotesingle asterisk]; @MMK_R_inp_guill = [guilsinglleft guillemotleft]; @MMK_R_inp_guilr = [guillemotright guilsinglright]; @MMK_R_inp_hyph = [hyphen endash emdash softhyphen]; @MMK_R_inp_parenth = [bracketright braceright]; @MMK_R_inp_period = [ellipsis comma period quotesinglbase quotedblbase]; @MMK_R_inp_quotel = [quotedblleft quoteleft]; @MMK_R_inp_quoter = [quoteright quotedblright]; @MMK_R_lc_a.alt01 = [ae aeacute aacute.alt01 abreve.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflex.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 a.alt01]; @MMK_R_lc_d = [gbreve.alt01 g.alt01 gdotaccent.alt01 gcircumflex.alt01 dcaron dcroat d gcommaaccent.alt01 q a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde adieresis adotbelow agrave ahook amacron aogonek aring aringacute atilde]; @MMK_R_lc_f = [fi fl germandbls f]; @MMK_R_lc_g = [gdotaccent gbreve g.alt02 g gcircumflex gcommaaccent]; @MMK_R_lc_h = [kcommaaccent lcaron h k lcommaaccent l lacute hcircumflex lslash ldot b hbar germandbls.alt01]; @MMK_R_lc_i = [idotbelow iacute iogonek i ihook ijacute igrave itilde icircumflex imacron ij ibreve idieresis]; @MMK_R_lc_j = [dotlessj jacute j jcircumflex]; @MMK_R_lc_n = [racute nacute eng rcommaaccent kgreenlandic m rcaron n ntilde r ncommaaccent ncaron dotlessi]; @MMK_R_lc_o = [cdotaccent ohornacute ograve ocircumflex ocircumflexhook edieresis obreve ohornhook ecircumflextilde ecircumflexdotbelow edotaccent ocircumflexgrave egrave ccedilla odotbelow ohorngrave otilde ccaron ohorntilde schwa ecircumflexhook oslash ohorn ocircumflextilde ocircumflexdotbelow cacute ecircumflex odieresis ohungarumlaut ecircumflexacute ebreve omacron eogonek edotbelow ccircumflex ohorndotbelow eacute etilde ecaron oslashacute c ohook e oe ehook o emacron ocircumflexacute ecircumflexgrave oacute eth]; @MMK_R_lc_s = [scircumflex scommaaccent scedilla s sacute scaron]; @MMK_R_lc_t = [tcommaaccent tcaron t tcedilla tbar]; @MMK_R_lc_u = [udieresis uhungarumlaut uhorngrave utilde udotbelow uacute uhorndotbelow umacron uhorntilde uring uhorn ugrave uogonek ucircumflex uhornacute u uhornhook ubreve uhook]; @MMK_R_lc_w = [wgrave wcircumflex wdieresis w wacute]; @MMK_R_lc_y = [ycircumflex ydieresis ydotbelow yacute y yhook ygrave ytilde]; @MMK_R_lc_z = [zacute z zcaron zdotaccent]; @MMK_R_uc_a = [Aring Atilde Adotbelow Adieresis Aacute Abrevegrave Acircumflexhook Abrevehook Acircumflex A Ahook AE Acircumflexdotbelow Aringacute AEacute Amacron Abreveacute Abrevedotbelow Aogonek Acircumflexgrave Acircumflexacute Abrevetilde Agrave Acircumflextilde Abreve]; @MMK_R_uc_h = [B D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Eng Eogonek Eth Etilde F Germandbls H Hbar Hcircumflex I IJ IJacute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihook Imacron Iogonek Itilde K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde P R Racute Rcaron Rcommaaccent Thorn]; @MMK_R_uc_j = [Jacute J Jcircumflex]; @MMK_R_uc_o = [Ocircumflexgrave Schwa Odotbelow Ohorngrave Omacron Ccaron Ohorntilde Gcircumflex Ohorn Gcommaaccent Gdotaccent Gbreve Ocircumflexdotbelow Odieresis Ohungarumlaut Cacute Ccircumflex Oslash Oslashacute C Ohook G Ocircumflextilde O Otilde Q Ohorndotbelow Ocircumflexacute Oacute Cdotaccent Ohornacute Ograve Ohornhook OE Ocircumflexhook Obreve Ccedilla Ocircumflex]; @MMK_R_uc_s = [Scircumflex Scommaaccent Scedilla S Sacute Scaron]; @MMK_R_uc_t = [Tcommaaccent Tcaron T Tcedilla Tbar]; @MMK_R_uc_u = [Udieresis Uhungarumlaut Utilde Udotbelow Uacute Uogonek Uhorndotbelow Uhorntilde Uhornacute Uring Uhorn Ugrave Umacron Ucircumflex Uhorngrave U Uhornhook Ubreve Uhook]; @MMK_R_uc_w = [Wgrave Wcircumflex Wdieresis W Wacute]; @MMK_R_uc_y = [Ycircumflex Ydieresis Ydotbelow Yacute Y Yhook Ygrave Ytilde]; @MMK_R_uc_z = [Zacute Z Zcaron Zdotaccent]; # glyph, glyph: # pos uni049B zerosuperior 0; # pos uni04B2 twosuperior 0; pos Aogonek parenright 46; pos B V -30; pos B X -20; pos B ampersand -16; pos B at -20; pos B eightsuperior -10; pos B fivesuperior -10; pos B foursuperior -10; pos B ninesuperior -15; pos B onesuperior -10; pos B question -30; pos B seveninferior -15; pos B sevensuperior -22; pos B sixsuperior -10; pos B slash -2; pos B threesuperior -10; pos B trademark -22; pos B twosuperior -10; pos B underscore -60; pos B v -10; pos B x -10; pos B zerosuperior -15; pos Eogonek parenright 12; pos F ampersand -22; pos F at -18; pos F eightinferior -50; pos F eightsuperior 20; pos F fiveinferior -50; pos F fivesuperior 2; pos F fourinferior -75; pos F foursuperior 2; pos F nineinferior -50; pos F ninesuperior 17; pos F oneinferior -50; pos F onesuperior 10; pos F p -13; pos F question 18; pos F registered 46; pos F seveninferior -50; pos F sevensuperior 3; pos F sixinferior -55; pos F sixsuperior 20; pos F slash -40; pos F threeinferior -50; pos F threesuperior 12; pos F trademark 20; pos F twoinferior -50; pos F twosuperior 12; pos F underscore -130; pos F v -10; pos F x -35; pos F zeroinferior -55; pos F zerosuperior 20; pos Germandbls V -20; pos Germandbls X -7; pos Germandbls ampersand -6; pos Germandbls at -2; pos Germandbls copyright -18; pos Germandbls eightinferior 10; pos Germandbls eightsuperior -30; pos Germandbls fiveinferior 10; pos Germandbls fivesuperior -20; pos Germandbls fourinferior 10; pos Germandbls foursuperior -30; pos Germandbls nineinferior 10; pos Germandbls ninesuperior -20; pos Germandbls onesuperior -10; pos Germandbls ordfeminine -44; pos Germandbls ordmasculine -40; pos Germandbls question -25; pos Germandbls registered -25; pos Germandbls sevensuperior -20; pos Germandbls sixinferior 10; pos Germandbls sixsuperior -30; pos Germandbls slash -10; pos Germandbls threesuperior -20; pos Germandbls trademark -20; pos Germandbls twosuperior -25; pos Germandbls underscore -60; pos Germandbls v -11; pos Germandbls x -14; pos Germandbls zeroinferior 20; pos Germandbls zerosuperior -20; pos Iogonek parenright 15; pos Lcaron sevensuperior -10; pos M trademark 2; pos P X -15; pos P ampersand -36; pos P at -8; pos P eightinferior -58; pos P eightsuperior 12; pos P fiveinferior -50; pos P fivesuperior 2; pos P fourinferior -80; pos P foursuperior 12; pos P nineinferior -58; pos P ninesuperior 4; pos P oneinferior -50; pos P p 1; pos P registered 24; pos P seveninferior -30; pos P sevensuperior -6; pos P sixinferior -64; pos P sixsuperior 14; pos P slash -50; pos P threeinferior -48; pos P threesuperior -5; pos P trademark 2; pos P twoinferior -50; pos P twosuperior -6; pos P underscore -130; pos P v 10; pos P x -15; pos P zeroinferior -50; pos P zerosuperior 12; pos Thorn V -23; pos Thorn X -34; pos Thorn ampersand 2; pos Thorn at 12; pos Thorn eightinferior 2; pos Thorn eightsuperior 12; pos Thorn fiveinferior 2; pos Thorn fivesuperior 2; pos Thorn fourinferior -15; pos Thorn foursuperior 11; pos Thorn nineinferior 12; pos Thorn ninesuperior -13; pos Thorn oneinferior 10; pos Thorn onesuperior 2; pos Thorn registered 2; pos Thorn seveninferior 12; pos Thorn sevensuperior -20; pos Thorn sixsuperior 10; pos Thorn slash -10; pos Thorn threeinferior 3; pos Thorn threesuperior 2; pos Thorn trademark -16; pos Thorn twoinferior 2; pos Thorn twosuperior 12; pos Thorn underscore -130; pos Thorn v 10; pos Thorn x -15; pos Thorn zeroinferior 20; pos Thorn zerosuperior 10; pos V V 19; pos V ampersand -42; pos V at -40; pos V eightinferior -60; pos V eightsuperior 10; pos V exclamdown -20; pos V fiveinferior -55; pos V fivesuperior 20; pos V fourinferior -70; pos V nineinferior -60; pos V ninesuperior 12; pos V oneinferior -60; pos V onesuperior 20; pos V p -5; pos V parenright 18; pos V question 15; pos V questiondown -60; pos V registered 28; pos V seveninferior -60; pos V sevensuperior 30; pos V sixinferior -60; pos V slash -50; pos V threeinferior -60; pos V threesuperior 20; pos V trademark 28; pos V twoinferior -50; pos V twosuperior 10; pos V underscore -70; pos V x -30; pos V zeroinferior -50; pos V zerosuperior 20; pos X ampersand -27; pos X at -32; pos X eightinferior -2; pos X eightsuperior 8; pos X exclamdown 16; pos X fiveinferior -2; pos X fivesuperior 8; pos X fourinferior -2; pos X foursuperior -30; pos X nineinferior -22; pos X ninesuperior 9; pos X oneinferior -2; pos X onesuperior 10; pos X parenright 16; pos X question 12; pos X questiondown 28; pos X registered 16; pos X seveninferior -32; pos X sevensuperior 24; pos X sixinferior -2; pos X sixsuperior -2; pos X slash 10; pos X threeinferior 8; pos X threesuperior 8; pos X trademark 16; pos X twoinferior 3; pos X twosuperior 8; pos X underscore 20; pos X zeroinferior 4; pos X zerosuperior 12; pos ampersand V -57; pos ampersand uni0405 -8; pos ampersand uni0408 -8; pos ampersand uni0424 17; pos ampersand uni042F -8; pos ampersand uni0444 -4; pos ampersand uni044D -5; pos ampersand uni044F -10; pos ampersand uni0455 -10; pos ampersand uni0492 6; pos ampersand uni04AE -70; pos ampersand uni04AF -16; pos ampersand uni04B0 -68; pos ampersand uni04B1 -12; pos ampersand uni04CF -12; pos ampersand v -12; pos ampersand x -10; pos aogonek parenright 20; pos at V -50; pos at X -32; pos at uni0405 -10; pos at uni0408 -27; pos at uni0414 -23; pos at uni0424 2; pos at uni042F -30; pos at uni0444 -6; pos at uni044A -6; pos at uni044D -5; pos at uni044F -20; pos at uni0455 -10; pos at uni0492 9; pos at uni04AE -70; pos at uni04AF -12; pos at uni04B0 -64; pos at uni04B1 -12; pos at uni04CF -12; pos at uni04D4 -40; pos at v -12; pos at x -28; pos braceleft uni0458 70; pos bracketleft uni0424 -12; pos bracketleft uni042F -9; pos bracketleft uni0444 -12; pos bracketleft uni044A -16; pos bracketleft uni044D -12; pos bracketleft uni044F -12; pos bracketleft uni0457 23; pos bracketleft uni0493 -4; pos bracketleft uni04A1 -12; pos comma uni0458 29; pos copyright uni0424 6; pos eightinferior V -60; pos eightinferior X 12; pos eightinferior eightinferior -8; pos eightinferior nineinferior -8; pos eightinferior oneinferior -15; pos eightinferior threeinferior -4; pos eightinferior uni0405 6; pos eightinferior uni0408 7; pos eightinferior uni0414 17; pos eightinferior uni0424 6; pos eightinferior uni042F 2; pos eightinferior uni0431 6; pos eightinferior uni044A -17; pos eightinferior uni044F -15; pos eightinferior uni0455 -6; pos eightinferior uni0492 12; pos eightinferior uni0493 12; pos eightinferior uni04A1 -23; pos eightinferior uni04AE -82; pos eightinferior uni04AF -31; pos eightinferior uni04B0 -67; pos eightinferior uni04B1 -31; pos eightinferior uni04CF -12; pos eightinferior uni04D4 10; pos eightinferior v -30; pos eightinferior x -16; pos eightsuperior V 8; pos eightsuperior X -4; pos eightsuperior eightsuperior -8; pos eightsuperior fraction 2; pos eightsuperior ninesuperior -8; pos eightsuperior onesuperior -15; pos eightsuperior p 40; pos eightsuperior thorn 20; pos eightsuperior threesuperior -4; pos eightsuperior uni0405 -10; pos eightsuperior uni0408 -70; pos eightsuperior uni0414 -63; pos eightsuperior uni0424 18; pos eightsuperior uni042F -14; pos eightsuperior uni0431 21; pos eightsuperior uni0440 40; pos eightsuperior uni0444 8; pos eightsuperior uni044A 19; pos eightsuperior uni044D 4; pos eightsuperior uni044F -6; pos eightsuperior uni0455 10; pos eightsuperior uni0458 40; pos eightsuperior uni0492 12; pos eightsuperior uni0493 17; pos eightsuperior uni04A1 26; pos eightsuperior uni04AE -8; pos eightsuperior uni04AF 20; pos eightsuperior uni04B0 -8; pos eightsuperior uni04B1 24; pos eightsuperior uni04BB 10; pos eightsuperior uni04CF -12; pos eightsuperior uni04D4 -60; pos eightsuperior v 20; pos eightsuperior x -2; pos eth V -46; pos eth X -16; pos eth question -40; pos eth underscore -60; pos exclam uni0424 8; pos exclamdown V -22; pos exclamdown X 17; pos exclamdown uni0458 24; pos exclamdown uni04AE -36; pos exclamdown uni04D4 28; pos exclamdown x -2; pos f V 85; pos f X 84; pos f ampersand 25; pos f at 24; pos f eightinferior -25; pos f eightsuperior 62; pos f exclam 36; pos f fiveinferior -20; pos f fivesuperior 70; pos f fourinferior -25; pos f foursuperior 50; pos f icircumflex 16; pos f idieresis 16; pos f igrave 16; pos f ihook 3; pos f imacron 10; pos f itilde 3; pos f jcircumflex 16; pos f nineinferior -25; pos f ninesuperior 64; pos f oneinferior -20; pos f onesuperior 62; pos f parenright 75; pos f question 64; pos f registered 92; pos f seveninferior -20; pos f sevensuperior 90; pos f sixinferior -20; pos f sixsuperior 52; pos f slash -31; pos f threeinferior -20; pos f threesuperior 62; pos f trademark 100; pos f twoinferior -20; pos f twosuperior 64; pos f underscore -20; pos f v 8; pos f x -2; pos f zeroinferior -20; pos f zerosuperior 72; pos fiveinferior V -60; pos fiveinferior X 10; pos fiveinferior eightinferior -4; pos fiveinferior fiveinferior -6; pos fiveinferior fourinferior 8; pos fiveinferior nineinferior -8; pos fiveinferior seveninferior -10; pos fiveinferior uni0408 12; pos fiveinferior uni0414 17; pos fiveinferior uni0424 17; pos fiveinferior uni0431 6; pos fiveinferior uni044F -4; pos fiveinferior uni0455 6; pos fiveinferior uni0492 12; pos fiveinferior uni0493 9; pos fiveinferior uni04AE -80; pos fiveinferior uni04AF -24; pos fiveinferior uni04B0 -63; pos fiveinferior uni04B1 -24; pos fiveinferior uni04CF -12; pos fiveinferior uni04D4 10; pos fiveinferior v -20; pos fiveinferior x -12; pos fivesuperior V 18; pos fivesuperior X 6; pos fivesuperior eightsuperior -4; pos fivesuperior fivesuperior -6; pos fivesuperior foursuperior 8; pos fivesuperior fraction 1; pos fivesuperior ninesuperior -8; pos fivesuperior p 40; pos fivesuperior sevensuperior -10; pos fivesuperior thorn 20; pos fivesuperior uni0405 -10; pos fivesuperior uni0408 -70; pos fivesuperior uni0414 -67; pos fivesuperior uni0424 17; pos fivesuperior uni042F -14; pos fivesuperior uni0431 19; pos fivesuperior uni0440 40; pos fivesuperior uni0444 4; pos fivesuperior uni044A 16; pos fivesuperior uni044D 4; pos fivesuperior uni044F -9; pos fivesuperior uni0455 10; pos fivesuperior uni0458 40; pos fivesuperior uni0492 12; pos fivesuperior uni0493 17; pos fivesuperior uni04A1 20; pos fivesuperior uni04AE 4; pos fivesuperior uni04AF 30; pos fivesuperior uni04B0 4; pos fivesuperior uni04B1 30; pos fivesuperior uni04BB 10; pos fivesuperior uni04CF -9; pos fivesuperior uni04D4 -50; pos fivesuperior v 30; pos fourinferior V -50; pos fourinferior X 2; pos fourinferior eightinferior -6; pos fourinferior fiveinferior -8; pos fourinferior fourinferior 1; pos fourinferior nineinferior -24; pos fourinferior oneinferior -23; pos fourinferior seveninferior -16; pos fourinferior sixinferior -8; pos fourinferior threeinferior -16; pos fourinferior uni0405 10; pos fourinferior uni0408 20; pos fourinferior uni0414 17; pos fourinferior uni0424 13; pos fourinferior uni042F 12; pos fourinferior uni0431 6; pos fourinferior uni044A -4; pos fourinferior uni044D 6; pos fourinferior uni044F -2; pos fourinferior uni0455 12; pos fourinferior uni0492 12; pos fourinferior uni0493 9; pos fourinferior uni04AE -70; pos fourinferior uni04AF -21; pos fourinferior uni04B0 -56; pos fourinferior uni04B1 -21; pos fourinferior uni04CF -12; pos fourinferior uni04D4 10; pos fourinferior v -30; pos fourinferior x -8; pos fourinferior zeroinferior -8; pos foursuperior V 5; pos foursuperior X -7; pos foursuperior eightsuperior -6; pos foursuperior fivesuperior -8; pos foursuperior foursuperior 1; pos foursuperior fraction 7; pos foursuperior ninesuperior -24; pos foursuperior onesuperior -23; pos foursuperior p 30; pos foursuperior sevensuperior -18; pos foursuperior sixsuperior -8; pos foursuperior threesuperior -16; pos foursuperior uni0408 -75; pos foursuperior uni0414 -56; pos foursuperior uni0424 26; pos foursuperior uni042F -9; pos foursuperior uni0431 20; pos foursuperior uni0440 30; pos foursuperior uni0444 4; pos foursuperior uni044A 19; pos foursuperior uni044D 4; pos foursuperior uni044F -6; pos foursuperior uni0455 12; pos foursuperior uni0458 24; pos foursuperior uni0492 12; pos foursuperior uni0493 14; pos foursuperior uni04A1 32; pos foursuperior uni04AF 25; pos foursuperior uni04B1 19; pos foursuperior uni04CF -12; pos foursuperior uni04D4 -40; pos foursuperior v 25; pos foursuperior zerosuperior -8; pos fraction eightinferior 2; pos fraction fiveinferior 1; pos fraction fourinferior -26; pos fraction nineinferior 2; pos fraction oneinferior 15; pos fraction seveninferior 45; pos fraction sixinferior -30; pos fraction threeinferior 8; pos fraction twoinferior 6; pos germandbls V -37; pos germandbls X -1; pos germandbls eightinferior 18; pos germandbls eightsuperior -20; pos germandbls fiveinferior 8; pos germandbls fivesuperior -30; pos germandbls fourinferior 24; pos germandbls foursuperior -20; pos germandbls nineinferior 2; pos germandbls ninesuperior -18; pos germandbls oneinferior 6; pos germandbls onesuperior -22; pos germandbls ordfeminine -16; pos germandbls ordmasculine -14; pos germandbls question -26; pos germandbls questiondown 10; pos germandbls registered -10; pos germandbls seveninferior -18; pos germandbls sevensuperior -20; pos germandbls sixinferior 20; pos germandbls sixsuperior -18; pos germandbls slash -2; pos germandbls threeinferior 8; pos germandbls threesuperior -30; pos germandbls trademark -24; pos germandbls twoinferior 14; pos germandbls twosuperior -30; pos germandbls underscore -30; pos germandbls v -17; pos germandbls x -8; pos germandbls zeroinferior 20; pos germandbls zerosuperior -10; pos germandbls.alt01 V -30; pos germandbls.alt01 X 44; pos germandbls.alt01 copyright -20; pos germandbls.alt01 eightinferior 10; pos germandbls.alt01 fiveinferior 10; pos germandbls.alt01 fivesuperior -10; pos germandbls.alt01 fourinferior 20; pos germandbls.alt01 nineinferior -10; pos germandbls.alt01 ninesuperior -10; pos germandbls.alt01 oneinferior 23; pos germandbls.alt01 onesuperior -10; pos germandbls.alt01 ordfeminine -22; pos germandbls.alt01 ordmasculine -22; pos germandbls.alt01 parenright 20; pos germandbls.alt01 question -20; pos germandbls.alt01 questiondown 20; pos germandbls.alt01 registered -10; pos germandbls.alt01 seveninferior -10; pos germandbls.alt01 sevensuperior -20; pos germandbls.alt01 sixinferior 10; pos germandbls.alt01 slash 49; pos germandbls.alt01 threeinferior 15; pos germandbls.alt01 threesuperior -10; pos germandbls.alt01 trademark -20; pos germandbls.alt01 twoinferior 23; pos germandbls.alt01 twosuperior -10; pos germandbls.alt01 underscore 28; pos germandbls.alt01 v -10; pos germandbls.alt01 x -1; pos germandbls.alt01 zeroinferior 10; pos iogonek parenright 22; pos jcircumflex eightsuperior 20; pos jcircumflex ninesuperior 22; pos jcircumflex sixsuperior 20; pos jcircumflex threesuperior -4; pos jcircumflex twosuperior 4; pos jcircumflex zerosuperior 20; pos kgreenlandic registered -8; pos lslash eightsuperior 4; pos lslash fivesuperior 2; pos lslash foursuperior 4; pos lslash sixsuperior 4; pos lslash threesuperior 2; pos lslash twosuperior 2; pos lslash zerosuperior 2; pos nineinferior V -60; pos nineinferior X -10; pos nineinferior eightinferior -3; pos nineinferior fourinferior -4; pos nineinferior nineinferior 1; pos nineinferior oneinferior -5; pos nineinferior seveninferior -8; pos nineinferior sixinferior -6; pos nineinferior threeinferior -8; pos nineinferior uni0405 6; pos nineinferior uni0408 12; pos nineinferior uni0424 3; pos nineinferior uni042F -7; pos nineinferior uni0431 10; pos nineinferior uni0444 4; pos nineinferior uni044A -14; pos nineinferior uni044F -8; pos nineinferior uni0455 -12; pos nineinferior uni0492 9; pos nineinferior uni0493 12; pos nineinferior uni04A1 -20; pos nineinferior uni04AE -80; pos nineinferior uni04AF -32; pos nineinferior uni04B0 -66; pos nineinferior uni04B1 -32; pos nineinferior uni04CF -12; pos nineinferior uni04D4 -5; pos nineinferior v -20; pos nineinferior x -28; pos ninesuperior V 8; pos ninesuperior X -4; pos ninesuperior eightsuperior -3; pos ninesuperior foursuperior -4; pos ninesuperior fraction -20; pos ninesuperior ninesuperior 1; pos ninesuperior onesuperior -5; pos ninesuperior p 40; pos ninesuperior sevensuperior -8; pos ninesuperior sixsuperior -6; pos ninesuperior thorn 20; pos ninesuperior threesuperior -8; pos ninesuperior uni0408 -70; pos ninesuperior uni0414 -63; pos ninesuperior uni0424 23; pos ninesuperior uni042F -9; pos ninesuperior uni0431 14; pos ninesuperior uni0440 40; pos ninesuperior uni044A 12; pos ninesuperior uni044F -12; pos ninesuperior uni0458 40; pos ninesuperior uni0492 6; pos ninesuperior uni0493 17; pos ninesuperior uni04A1 22; pos ninesuperior uni04AE -4; pos ninesuperior uni04AF 37; pos ninesuperior uni04B0 -4; pos ninesuperior uni04B1 33; pos ninesuperior uni04BB 10; pos ninesuperior uni04CF -12; pos ninesuperior uni04D4 -70; pos ninesuperior v 40; pos ninesuperior x -2; pos oneinferior V -80; pos oneinferior X 10; pos oneinferior eightinferior -18; pos oneinferior fiveinferior -10; pos oneinferior fourinferior -10; pos oneinferior nineinferior -23; pos oneinferior oneinferior -20; pos oneinferior seveninferior -35; pos oneinferior sixinferior -15; pos oneinferior threeinferior -10; pos oneinferior uni0408 -8; pos oneinferior uni0414 13; pos oneinferior uni0424 -23; pos oneinferior uni042F 12; pos oneinferior uni0431 -10; pos oneinferior uni0440 -9; pos oneinferior uni0444 -20; pos oneinferior uni044A -34; pos oneinferior uni044D -12; pos oneinferior uni044F -9; pos oneinferior uni0455 -10; pos oneinferior uni0493 -9; pos oneinferior uni04A1 -30; pos oneinferior uni04AE -100; pos oneinferior uni04AF -40; pos oneinferior uni04B0 -82; pos oneinferior uni04B1 -32; pos oneinferior uni04BB -9; pos oneinferior uni04CF -17; pos oneinferior uni04D4 20; pos oneinferior v -40; pos oneinferior zeroinferior -15; pos onesuperior V -20; pos onesuperior X -4; pos onesuperior eightsuperior -18; pos onesuperior fivesuperior -10; pos onesuperior foursuperior -10; pos onesuperior fraction 45; pos onesuperior ninesuperior -23; pos onesuperior onesuperior -20; pos onesuperior p 30; pos onesuperior sevensuperior -35; pos onesuperior sixsuperior -15; pos onesuperior threesuperior -10; pos onesuperior uni0405 -20; pos onesuperior uni0408 -90; pos onesuperior uni0414 -63; pos onesuperior uni0424 17; pos onesuperior uni042F -24; pos onesuperior uni0431 14; pos onesuperior uni0440 30; pos onesuperior uni0444 4; pos onesuperior uni044A 12; pos onesuperior uni044D -3; pos onesuperior uni044F -6; pos onesuperior uni0458 10; pos onesuperior uni0492 12; pos onesuperior uni04A1 12; pos onesuperior uni04AE -12; pos onesuperior uni04AF 8; pos onesuperior uni04B0 -12; pos onesuperior uni04B1 8; pos onesuperior uni04CF -12; pos onesuperior uni04D4 -40; pos onesuperior v 10; pos onesuperior zerosuperior -15; pos parenleft V 20; pos parenleft X 16; pos parenleft thorn 25; pos parenleft uni0408 -6; pos parenleft uni0414 14; pos parenleft uni0424 -14; pos parenleft uni042F -12; pos parenleft uni0444 -9; pos parenleft uni044A -23; pos parenleft uni044D -12; pos parenleft uni044F -12; pos parenleft uni0457 38; pos parenleft uni0458 68; pos parenleft uni0493 -4; pos parenleft uni04A1 -16; pos parenleft uni04AE 20; pos parenleft uni04AF -12; pos parenleft uni04B0 20; pos parenleft uni04B1 -6; pos parenleft uni04BB 13; pos parenleft v -4; pos q slash 10; pos q underscore 10; pos question V 15; pos question uni042F -4; pos question uni04AE 15; pos question uni04B0 -13; pos question uni04D4 -20; pos questiondown V -60; pos questiondown X -2; pos questiondown uni0408 -24; pos questiondown uni0455 -30; pos questiondown uni0458 17; pos questiondown uni04AE -71; pos questiondown uni04BB -40; pos questiondown uni04D4 8; pos questiondown v -30; pos questiondown x -30; pos quotedblbase uni0458 29; pos quotesinglbase uni0458 29; pos registered X -20; pos registered uni0408 -29; pos registered uni0424 8; pos registered uni04AF 13; pos registered uni04B1 13; pos registered uni04D4 -60; pos registered v 60; pos registered x 20; pos seveninferior V -40; pos seveninferior X -20; pos seveninferior eightinferior -12; pos seveninferior fiveinferior -8; pos seveninferior fourinferior -14; pos seveninferior nineinferior 1; pos seveninferior seveninferior 14; pos seveninferior sixinferior -8; pos seveninferior threeinferior -8; pos seveninferior uni0405 -10; pos seveninferior uni0408 -16; pos seveninferior uni0414 -17; pos seveninferior uni0424 30; pos seveninferior uni042F -14; pos seveninferior uni0431 23; pos seveninferior uni0444 14; pos seveninferior uni044A 6; pos seveninferior uni044F -17; pos seveninferior uni0455 -8; pos seveninferior uni0492 12; pos seveninferior uni0493 12; pos seveninferior uni04AE -62; pos seveninferior uni04AF -8; pos seveninferior uni04B0 -50; pos seveninferior uni04B1 -8; pos seveninferior uni04CF -12; pos seveninferior v -10; pos seveninferior x -20; pos seveninferior zeroinferior -4; pos sevensuperior V 30; pos sevensuperior X 26; pos sevensuperior eightsuperior -12; pos sevensuperior fivesuperior -8; pos sevensuperior foursuperior -14; pos sevensuperior fraction -25; pos sevensuperior ninesuperior 1; pos sevensuperior p 30; pos sevensuperior parenright 20; pos sevensuperior sevensuperior 14; pos sevensuperior sixsuperior -8; pos sevensuperior thorn 20; pos sevensuperior threesuperior -8; pos sevensuperior twosuperior -5; pos sevensuperior uni0405 -10; pos sevensuperior uni0408 -70; pos sevensuperior uni0414 -67; pos sevensuperior uni0424 -4; pos sevensuperior uni042F -17; pos sevensuperior uni0431 -6; pos sevensuperior uni0440 30; pos sevensuperior uni0444 -21; pos sevensuperior uni044D -14; pos sevensuperior uni044F -38; pos sevensuperior uni0455 -30; pos sevensuperior uni0458 40; pos sevensuperior uni0493 6; pos sevensuperior uni04A1 12; pos sevensuperior uni04AE 20; pos sevensuperior uni04AF 12; pos sevensuperior uni04B0 14; pos sevensuperior uni04B1 16; pos sevensuperior uni04BB 20; pos sevensuperior uni04CF -6; pos sevensuperior uni04D4 -80; pos sevensuperior v 20; pos sevensuperior x -14; pos sevensuperior zerosuperior -4; pos sixinferior V -60; pos sixinferior X 10; pos sixinferior eightinferior -2; pos sixinferior fiveinferior -8; pos sixinferior fourinferior 2; pos sixinferior nineinferior -16; pos sixinferior oneinferior -14; pos sixinferior seveninferior -22; pos sixinferior threeinferior -4; pos sixinferior uni0408 -2; pos sixinferior uni0414 23; pos sixinferior uni0424 -13; pos sixinferior uni042F 6; pos sixinferior uni0431 6; pos sixinferior uni044A -20; pos sixinferior uni044F -4; pos sixinferior uni0455 -6; pos sixinferior uni0492 12; pos sixinferior uni0493 6; pos sixinferior uni04A1 -20; pos sixinferior uni04AE -80; pos sixinferior uni04AF -28; pos sixinferior uni04B0 -70; pos sixinferior uni04B1 -28; pos sixinferior uni04CF -12; pos sixinferior uni04D4 12; pos sixinferior v -30; pos sixinferior x -8; pos sixsuperior V -12; pos sixsuperior X -12; pos sixsuperior eightsuperior -2; pos sixsuperior fivesuperior -8; pos sixsuperior foursuperior 2; pos sixsuperior fraction 2; pos sixsuperior ninesuperior -16; pos sixsuperior onesuperior -14; pos sixsuperior p 40; pos sixsuperior sevensuperior -22; pos sixsuperior thorn 20; pos sixsuperior threesuperior -4; pos sixsuperior uni0405 -13; pos sixsuperior uni0408 -70; pos sixsuperior uni0414 -61; pos sixsuperior uni0424 26; pos sixsuperior uni042F -9; pos sixsuperior uni0431 19; pos sixsuperior uni0440 40; pos sixsuperior uni0444 4; pos sixsuperior uni044A 17; pos sixsuperior uni044D 1; pos sixsuperior uni044F -6; pos sixsuperior uni0455 10; pos sixsuperior uni0458 40; pos sixsuperior uni0492 9; pos sixsuperior uni0493 17; pos sixsuperior uni04A1 32; pos sixsuperior uni04AF 22; pos sixsuperior uni04B1 30; pos sixsuperior uni04BB 20; pos sixsuperior uni04CF -12; pos sixsuperior uni04D4 -50; pos sixsuperior v 20; pos slash V 19; pos slash X 8; pos slash p -40; pos slash slash -120; pos slash uni0405 -10; pos slash uni0408 -36; pos slash uni0414 -36; pos slash uni0424 -17; pos slash uni042F -23; pos slash uni0431 -24; pos slash uni0440 -40; pos slash uni0444 -47; pos slash uni044A -29; pos slash uni044D -52; pos slash uni044F -66; pos slash uni0455 -40; pos slash uni0457 23; pos slash uni0493 -30; pos slash uni04A1 -10; pos slash uni04AE 10; pos slash uni04AF -12; pos slash uni04B0 10; pos slash uni04B1 -12; pos slash uni04CF -17; pos slash uni04D4 -50; pos slash v -12; pos slash x -60; pos tcaron V 20; pos tcaron parenright 30; pos tcaron trademark 35; pos threeinferior V -52; pos threeinferior X 8; pos threeinferior eightinferior -13; pos threeinferior fiveinferior -10; pos threeinferior fourinferior -8; pos threeinferior nineinferior -13; pos threeinferior oneinferior -10; pos threeinferior seveninferior -14; pos threeinferior threeinferior -16; pos threeinferior uni0405 -10; pos threeinferior uni0408 -14; pos threeinferior uni0414 4; pos threeinferior uni0424 -3; pos threeinferior uni0431 5; pos threeinferior uni0444 2; pos threeinferior uni044A -10; pos threeinferior uni044F -4; pos threeinferior uni0455 -16; pos threeinferior uni0492 9; pos threeinferior uni0493 12; pos threeinferior uni04A1 -6; pos threeinferior uni04AE -80; pos threeinferior uni04AF -26; pos threeinferior uni04B0 -70; pos threeinferior uni04B1 -26; pos threeinferior uni04CF -12; pos threeinferior uni04D4 10; pos threeinferior v -20; pos threeinferior x -18; pos threesuperior V -2; pos threesuperior X -4; pos threesuperior eightsuperior -13; pos threesuperior fivesuperior -8; pos threesuperior foursuperior -8; pos threesuperior fraction 5; pos threesuperior ninesuperior -13; pos threesuperior onesuperior -10; pos threesuperior p 40; pos threesuperior sevensuperior -14; pos threesuperior thorn 10; pos threesuperior threesuperior -16; pos threesuperior uni0405 -10; pos threesuperior uni0408 -80; pos threesuperior uni0414 -67; pos threesuperior uni0424 17; pos threesuperior uni042F -17; pos threesuperior uni0431 14; pos threesuperior uni0440 40; pos threesuperior uni0444 4; pos threesuperior uni044A 12; pos threesuperior uni044D -2; pos threesuperior uni044F -9; pos threesuperior uni0458 38; pos threesuperior uni0492 6; pos threesuperior uni0493 6; pos threesuperior uni04A1 16; pos threesuperior uni04AE -18; pos threesuperior uni04AF 18; pos threesuperior uni04B0 -14; pos threesuperior uni04B1 14; pos threesuperior uni04BB 10; pos threesuperior uni04CF -12; pos threesuperior uni04D4 -50; pos threesuperior v 18; pos trademark V 20; pos trademark uni04D4 -65; pos twoinferior V -52; pos twoinferior X 10; pos twoinferior uni0408 -6; pos twoinferior uni0414 10; pos twoinferior uni0424 -3; pos twoinferior uni042F 12; pos twoinferior uni044A -16; pos twoinferior uni044F -8; pos twoinferior uni0455 -8; pos twoinferior uni0492 6; pos twoinferior uni0493 12; pos twoinferior uni04A1 -12; pos twoinferior uni04AE -80; pos twoinferior uni04AF -26; pos twoinferior uni04B0 -69; pos twoinferior uni04B1 -26; pos twoinferior uni04CF -12; pos twoinferior uni04D4 12; pos twoinferior v -20; pos twoinferior x -8; pos twosuperior V -2; pos twosuperior X -6; pos twosuperior fraction 43; pos twosuperior p 30; pos twosuperior thorn 15; pos twosuperior uni0408 -80; pos twosuperior uni0414 -67; pos twosuperior uni0424 17; pos twosuperior uni042F -9; pos twosuperior uni0431 17; pos twosuperior uni0440 30; pos twosuperior uni0444 6; pos twosuperior uni044A 3; pos twosuperior uni044D 4; pos twosuperior uni044F -6; pos twosuperior uni0458 38; pos twosuperior uni0492 12; pos twosuperior uni0493 13; pos twosuperior uni04A1 19; pos twosuperior uni04AE -18; pos twosuperior uni04AF 18; pos twosuperior uni04B0 -14; pos twosuperior uni04B1 18; pos twosuperior uni04BB 15; pos twosuperior uni04CF -6; pos twosuperior uni04D4 -30; pos twosuperior v 16; pos twosuperior x -2; pos underscore V -70; pos underscore X 20; pos underscore thorn 20; pos underscore uni0405 -40; pos underscore uni0408 -40; pos underscore uni0414 17; pos underscore uni0424 -149; pos underscore uni0431 -60; pos underscore uni0444 -44; pos underscore uni044A -123; pos underscore uni044D -60; pos underscore uni044F -50; pos underscore uni0455 -55; pos underscore uni0458 88; pos underscore uni0493 -40; pos underscore uni04A1 -123; pos underscore uni04AE -60; pos underscore uni04AF -43; pos underscore uni04B0 -60; pos underscore uni04B1 -14; pos underscore uni04BB -40; pos underscore uni04CF -52; pos underscore uni04D4 15; pos underscore v -60; pos underscore x -20; pos uni0402 ampersand 4; pos uni0402 at -6; pos uni0402 copyright -6; pos uni0402 eightinferior 8; pos uni0402 eightsuperior -47; pos uni0402 exclam 4; pos uni0402 fiveinferior 17; pos uni0402 fivesuperior -30; pos uni0402 fourinferior 13; pos uni0402 foursuperior -29; pos uni0402 nineinferior 13; pos uni0402 ninesuperior -50; pos uni0402 oneinferior 17; pos uni0402 onesuperior -22; pos uni0402 question -17; pos uni0402 registered -39; pos uni0402 seveninferior 17; pos uni0402 sevensuperior -53; pos uni0402 sixinferior 13; pos uni0402 sixsuperior -46; pos uni0402 slash 8; pos uni0402 threeinferior 13; pos uni0402 threesuperior -17; pos uni0402 trademark -52; pos uni0402 twoinferior 17; pos uni0402 twosuperior -20; pos uni0402 underscore 8; pos uni0402 uni0408 7; pos uni0402 uni0414 13; pos uni0402 uni0424 8; pos uni0402 uni0431 8; pos uni0402 uni0440 -2; pos uni0402 uni0444 3; pos uni0402 uni044A -14; pos uni0402 uni044D 6; pos uni0402 uni044F -5; pos uni0402 uni0455 4; pos uni0402 uni0458 36; pos uni0402 uni0493 4; pos uni0402 uni04AE -62; pos uni0402 uni04AF -14; pos uni0402 uni04B0 -49; pos uni0402 uni04B1 -8; pos uni0402 uni04BB -4; pos uni0402 uni04CF 4; pos uni0402 uni04D4 8; pos uni0402 zeroinferior 13; pos uni0402 zerosuperior -46; pos uni0404 ampersand -7; pos uni0404 at -12; pos uni0404 eightsuperior 6; pos uni0404 fiveinferior -9; pos uni0404 nineinferior -16; pos uni0404 ninesuperior 6; pos uni0404 oneinferior -12; pos uni0404 registered 10; pos uni0404 seveninferior -32; pos uni0404 sixinferior -6; pos uni0404 sixsuperior 3; pos uni0404 slash -16; pos uni0404 trademark -6; pos uni0404 twoinferior -6; pos uni0404 underscore -32; pos uni0404 uni0408 -4; pos uni0404 uni0414 -5; pos uni0404 uni0424 -6; pos uni0404 uni042F -10; pos uni0404 uni0431 -11; pos uni0404 uni0440 -6; pos uni0404 uni0444 -24; pos uni0404 uni044A -11; pos uni0404 uni044D -11; pos uni0404 uni044F -9; pos uni0404 uni0455 -10; pos uni0404 uni0458 -6; pos uni0404 uni0493 -5; pos uni0404 uni04AE -6; pos uni0404 uni04AF -9; pos uni0404 uni04B0 -6; pos uni0404 uni04B1 -9; pos uni0404 uni04BB -5; pos uni0404 uni04D4 -6; pos uni0404 zeroinferior -6; pos uni0404 zerosuperior 6; pos uni0405 ampersand -6; pos uni0405 at -6; pos uni0405 fiveinferior 4; pos uni0405 fourinferior 4; pos uni0405 nineinferior -8; pos uni0405 ninesuperior 6; pos uni0405 registered 20; pos uni0405 seveninferior -10; pos uni0405 sixinferior 8; pos uni0405 slash -10; pos uni0405 threeinferior -10; pos uni0405 trademark -8; pos uni0405 twoinferior -12; pos uni0405 underscore -40; pos uni0405 uni0414 -8; pos uni0405 uni0424 3; pos uni0405 uni042F -10; pos uni0405 uni0440 -5; pos uni0405 uni0444 -6; pos uni0405 uni044A -10; pos uni0405 uni044D -4; pos uni0405 uni044F -5; pos uni0405 uni04AE -10; pos uni0405 uni04AF -5; pos uni0405 uni04B0 -10; pos uni0405 uni04B1 -5; pos uni0405 uni04D4 -10; pos uni0405 uni04D9 6; pos uni0405 zeroinferior 10; pos uni0408 eightinferior -20; pos uni0408 fiveinferior -24; pos uni0408 fourinferior -24; pos uni0408 nineinferior -25; pos uni0408 oneinferior -22; pos uni0408 questiondown -40; pos uni0408 registered 36; pos uni0408 seveninferior -20; pos uni0408 sixinferior -17; pos uni0408 slash -22; pos uni0408 threeinferior -22; pos uni0408 trademark 25; pos uni0408 twoinferior -30; pos uni0408 underscore -60; pos uni0408 uni0408 -31; pos uni0408 uni0414 -29; pos uni0408 uni042F -12; pos uni0408 uni0444 -6; pos uni0408 uni044A -4; pos uni0408 uni044D -6; pos uni0408 uni044F -6; pos uni0408 uni04AE 3; pos uni0408 uni04B0 3; pos uni0408 uni04CF -12; pos uni0408 uni04D4 -30; pos uni0408 zeroinferior -4; pos uni0411 at -12; pos uni0411 eightinferior 3; pos uni0411 eightsuperior -19; pos uni0411 fivesuperior -17; pos uni0411 fourinferior 6; pos uni0411 foursuperior -12; pos uni0411 nineinferior 5; pos uni0411 ninesuperior -17; pos uni0411 onesuperior -12; pos uni0411 question -24; pos uni0411 registered -12; pos uni0411 sevensuperior -12; pos uni0411 sixinferior 3; pos uni0411 sixsuperior -14; pos uni0411 slash -6; pos uni0411 threeinferior 3; pos uni0411 threesuperior -12; pos uni0411 trademark -26; pos uni0411 twosuperior -12; pos uni0411 underscore -60; pos uni0411 uni0408 3; pos uni0411 uni0414 -14; pos uni0411 uni0424 4; pos uni0411 uni042F -13; pos uni0411 uni0440 -5; pos uni0411 uni0444 -4; pos uni0411 uni044A -12; pos uni0411 uni044D -3; pos uni0411 uni044F -3; pos uni0411 uni0492 6; pos uni0411 uni0493 6; pos uni0411 uni04AE -40; pos uni0411 uni04AF -15; pos uni0411 uni04B0 -40; pos uni0411 uni04B1 -15; pos uni0411 uni04BB -3; pos uni0411 uni04D4 -14; pos uni0411 uni04D9 -4; pos uni0411 zeroinferior 3; pos uni0411 zerosuperior -14; pos uni0420 ampersand -36; pos uni0420 at -8; pos uni0420 eightinferior -58; pos uni0420 eightsuperior 12; pos uni0420 fiveinferior -50; pos uni0420 fivesuperior 18; pos uni0420 fourinferior -80; pos uni0420 foursuperior 12; pos uni0420 nineinferior -58; pos uni0420 ninesuperior 16; pos uni0420 oneinferior -50; pos uni0420 onesuperior 8; pos uni0420 registered 24; pos uni0420 seveninferior -30; pos uni0420 sevensuperior -6; pos uni0420 sixinferior -64; pos uni0420 sixsuperior 14; pos uni0420 slash -50; pos uni0420 threeinferior -48; pos uni0420 threesuperior -5; pos uni0420 trademark 6; pos uni0420 twoinferior -50; pos uni0420 twosuperior -6; pos uni0420 underscore -130; pos uni0420 uni0408 -40; pos uni0420 uni0414 -60; pos uni0420 uni0424 10; pos uni0420 uni042F -15; pos uni0420 uni0431 10; pos uni0420 uni0440 7; pos uni0420 uni0444 -11; pos uni0420 uni044A 8; pos uni0420 uni044D -4; pos uni0420 uni044F -18; pos uni0420 uni0458 11; pos uni0420 uni0492 13; pos uni0420 uni0493 9; pos uni0420 uni04A1 18; pos uni0420 uni04AE -8; pos uni0420 uni04AF 14; pos uni0420 uni04B0 -8; pos uni0420 uni04B1 14; pos uni0420 uni04CF -9; pos uni0420 uni04D4 -72; pos uni0420 zeroinferior -50; pos uni0420 zerosuperior 12; pos uni0422 ampersand -25; pos uni0422 at -26; pos uni0422 eightinferior -60; pos uni0422 eightsuperior 12; pos uni0422 fiveinferior -60; pos uni0422 fivesuperior 20; pos uni0422 fourinferior -70; pos uni0422 foursuperior 10; pos uni0422 nineinferior -60; pos uni0422 ninesuperior 22; pos uni0422 oneinferior -60; pos uni0422 onesuperior 25; pos uni0422 parenright 18; pos uni0422 question 23; pos uni0422 questiondown -60; pos uni0422 registered 42; pos uni0422 seveninferior -50; pos uni0422 sevensuperior 12; pos uni0422 sixinferior -60; pos uni0422 sixsuperior 22; pos uni0422 slash -52; pos uni0422 threeinferior -60; pos uni0422 threesuperior 20; pos uni0422 trademark 25; pos uni0422 twoinferior -60; pos uni0422 twosuperior 20; pos uni0422 underscore -60; pos uni0422 uni0405 -8; pos uni0422 uni0408 -42; pos uni0422 uni0414 -31; pos uni0422 uni0424 8; pos uni0422 uni042F -9; pos uni0422 uni0440 -2; pos uni0422 uni0444 -36; pos uni0422 uni044D -22; pos uni0422 uni044F -40; pos uni0422 uni0455 -10; pos uni0422 uni0457 17; pos uni0422 uni04AE 17; pos uni0422 uni04AF 6; pos uni0422 uni04B0 17; pos uni0422 uni04B1 6; pos uni0422 uni04BB 10; pos uni0422 uni04CF -12; pos uni0422 uni04D4 -55; pos uni0422 zeroinferior -60; pos uni0422 zerosuperior 30; pos uni0424 ampersand 16; pos uni0424 at 19; pos uni0424 copyright 18; pos uni0424 eightinferior 13; pos uni0424 eightsuperior 13; pos uni0424 exclam 8; pos uni0424 fiveinferior 17; pos uni0424 fivesuperior 13; pos uni0424 fourinferior -6; pos uni0424 foursuperior 17; pos uni0424 nineinferior 21; pos uni0424 ninesuperior -4; pos uni0424 oneinferior 17; pos uni0424 onesuperior 17; pos uni0424 parenright -6; pos uni0424 question -17; pos uni0424 registered 8; pos uni0424 seveninferior 23; pos uni0424 sevensuperior -23; pos uni0424 sixinferior 7; pos uni0424 sixsuperior 13; pos uni0424 slash -23; pos uni0424 threeinferior 17; pos uni0424 threesuperior 13; pos uni0424 trademark -23; pos uni0424 twoinferior 21; pos uni0424 twosuperior 17; pos uni0424 underscore -109; pos uni0424 uni0405 8; pos uni0424 uni0408 -10; pos uni0424 uni0414 -34; pos uni0424 uni0424 29; pos uni0424 uni042F -18; pos uni0424 uni0431 23; pos uni0424 uni0440 13; pos uni0424 uni0444 13; pos uni0424 uni044A 17; pos uni0424 uni044D 11; pos uni0424 uni044F -1; pos uni0424 uni0455 13; pos uni0424 uni0458 17; pos uni0424 uni0492 26; pos uni0424 uni0493 21; pos uni0424 uni04A1 21; pos uni0424 uni04AE -58; pos uni0424 uni04AF 1; pos uni0424 uni04B0 -35; pos uni0424 uni04B1 1; pos uni0424 uni04BB 7; pos uni0424 uni04CF 13; pos uni0424 uni04D4 -43; pos uni0424 zeroinferior 17; pos uni0424 zerosuperior 13; pos uni0425 ampersand -27; pos uni0425 at -32; pos uni0425 copyright -17; pos uni0425 eightinferior -6; pos uni0425 eightsuperior 8; pos uni0425 exclamdown 16; pos uni0425 fiveinferior -6; pos uni0425 fivesuperior 8; pos uni0425 fourinferior -6; pos uni0425 foursuperior -30; pos uni0425 nineinferior -22; pos uni0425 ninesuperior 9; pos uni0425 oneinferior -2; pos uni0425 onesuperior 10; pos uni0425 question 12; pos uni0425 questiondown 28; pos uni0425 registered 16; pos uni0425 seveninferior -32; pos uni0425 sevensuperior 24; pos uni0425 sixinferior -6; pos uni0425 sixsuperior -6; pos uni0425 slash 10; pos uni0425 threeinferior 8; pos uni0425 threesuperior 8; pos uni0425 trademark 16; pos uni0425 twoinferior 3; pos uni0425 twosuperior 8; pos uni0425 underscore 20; pos uni0425 uni0414 8; pos uni0425 uni0424 -45; pos uni0425 uni0431 -22; pos uni0425 uni0440 -12; pos uni0425 uni0444 -24; pos uni0425 uni044A -42; pos uni0425 uni044D -16; pos uni0425 uni044F -31; pos uni0425 uni0455 -5; pos uni0425 uni0458 -6; pos uni0425 uni0493 -22; pos uni0425 uni04A1 -38; pos uni0425 uni04AF -26; pos uni0425 uni04B1 -26; pos uni0425 uni04BB 13; pos uni0425 uni04CF -14; pos uni0425 uni04D4 16; pos uni0425 zeroinferior 4; pos uni0425 zerosuperior 12; pos uni0431 sevensuperior -6; pos uni0431 trademark -9; pos uni0431 uni04AE -30; pos uni0431 uni04B0 -30; pos uni0434 at -6; pos uni0434 fiveinferior -6; pos uni0434 fivesuperior -6; pos uni0434 fourinferior -9; pos uni0434 ninesuperior -12; pos uni0434 onesuperior -3; pos uni0434 parenright -3; pos uni0434 registered -9; pos uni0434 sevensuperior -23; pos uni0434 sixinferior -6; pos uni0434 sixsuperior -6; pos uni0434 slash -12; pos uni0434 trademark -39; pos uni0434 twoinferior -6; pos uni0434 underscore -54; pos uni0434 uni0408 -14; pos uni0434 uni0414 -12; pos uni0434 uni0424 12; pos uni0434 uni042F -17; pos uni0434 uni0444 -6; pos uni0434 uni044A -2; pos uni0434 uni044D -7; pos uni0434 uni044F -10; pos uni0434 uni0455 -4; pos uni0434 uni0492 6; pos uni0434 uni0493 3; pos uni0434 uni04AE -46; pos uni0434 uni04AF -5; pos uni0434 uni04B0 -46; pos uni0434 uni04B1 -5; pos uni0434 uni04CF -12; pos uni0434 uni04D4 -16; pos uni0434 uni04D9 -4; pos uni0434 zeroinferior -6; pos uni0434 zerosuperior -6; pos uni0440 ampersand -4; pos uni0440 eightinferior 10; pos uni0440 eightsuperior -20; pos uni0440 fiveinferior 8; pos uni0440 fivesuperior -20; pos uni0440 fourinferior -6; pos uni0440 foursuperior -12; pos uni0440 nineinferior 10; pos uni0440 ninesuperior -35; pos uni0440 oneinferior 8; pos uni0440 onesuperior -12; pos uni0440 registered -15; pos uni0440 seveninferior 10; pos uni0440 sevensuperior -40; pos uni0440 sixinferior 10; pos uni0440 sixsuperior -20; pos uni0440 slash -10; pos uni0440 threeinferior 9; pos uni0440 threesuperior -15; pos uni0440 trademark -35; pos uni0440 twoinferior 8; pos uni0440 twosuperior -10; pos uni0440 underscore -60; pos uni0440 uni0408 -19; pos uni0440 uni0414 -18; pos uni0440 uni0424 8; pos uni0440 uni042F -16; pos uni0440 uni0444 -3; pos uni0440 uni044A -2; pos uni0440 uni044D -5; pos uni0440 uni044F -10; pos uni0440 uni0492 6; pos uni0440 uni0493 6; pos uni0440 uni04AE -65; pos uni0440 uni04AF -10; pos uni0440 uni04B0 -51; pos uni0440 uni04B1 -10; pos uni0440 uni04CF -12; pos uni0440 uni04D4 -6; pos uni0440 uni04D9 -4; pos uni0440 zeroinferior 18; pos uni0440 zerosuperior -22; pos uni0444 eightsuperior -19; pos uni0444 fivesuperior -14; pos uni0444 fourinferior -6; pos uni0444 foursuperior -14; pos uni0444 nineinferior 8; pos uni0444 ninesuperior -36; pos uni0444 onesuperior -14; pos uni0444 registered -15; pos uni0444 seveninferior 4; pos uni0444 sevensuperior -39; pos uni0444 sixsuperior -14; pos uni0444 slash -8; pos uni0444 threesuperior -12; pos uni0444 trademark -35; pos uni0444 twosuperior -9; pos uni0444 underscore -56; pos uni0444 uni0408 -8; pos uni0444 uni0414 -16; pos uni0444 uni0424 -3; pos uni0444 uni042F -22; pos uni0444 uni044A -8; pos uni0444 uni044D -4; pos uni0444 uni044F -11; pos uni0444 uni0458 -3; pos uni0444 uni0492 6; pos uni0444 uni0493 5; pos uni0444 uni04A1 -3; pos uni0444 uni04AE -69; pos uni0444 uni04AF -13; pos uni0444 uni04B0 -47; pos uni0444 uni04B1 -12; pos uni0444 uni04CF -12; pos uni0444 uni04D4 -9; pos uni0444 zerosuperior -20; pos uni0445 ampersand -27; pos uni0445 at -20; pos uni0445 eightinferior -20; pos uni0445 eightsuperior 6; pos uni0445 fiveinferior -22; pos uni0445 fourinferior -10; pos uni0445 foursuperior 10; pos uni0445 nineinferior -32; pos uni0445 ninesuperior -10; pos uni0445 oneinferior -24; pos uni0445 parenright -6; pos uni0445 registered 10; pos uni0445 seveninferior -30; pos uni0445 sevensuperior -10; pos uni0445 sixinferior -12; pos uni0445 sixsuperior 10; pos uni0445 slash -20; pos uni0445 threeinferior -17; pos uni0445 threesuperior 6; pos uni0445 trademark -12; pos uni0445 twoinferior -12; pos uni0445 underscore -20; pos uni0445 uni0405 -10; pos uni0445 uni0408 -10; pos uni0445 uni0414 -9; pos uni0445 uni0424 13; pos uni0445 uni042F -6; pos uni0445 uni0431 6; pos uni0445 uni0444 -18; pos uni0445 uni044D -3; pos uni0445 uni044F -11; pos uni0445 uni0455 -4; pos uni0445 uni0492 6; pos uni0445 uni04AE -50; pos uni0445 uni04B0 -50; pos uni0445 uni04CF -12; pos uni0445 uni04D4 -20; pos uni0445 zeroinferior -6; pos uni0445 zerosuperior 10; pos uni0452 eightsuperior -4; pos uni0452 fivesuperior -10; pos uni0452 foursuperior -6; pos uni0452 ninesuperior -20; pos uni0452 onesuperior -14; pos uni0452 parenright 5; pos uni0452 registered -25; pos uni0452 sevensuperior -34; pos uni0452 sixsuperior -10; pos uni0452 slash -13; pos uni0452 threesuperior -4; pos uni0452 trademark -45; pos uni0452 twosuperior -10; pos uni0452 uni0414 -4; pos uni0452 uni0424 3; pos uni0452 uni042F -10; pos uni0452 uni0444 -9; pos uni0452 uni044D -7; pos uni0452 uni044F -5; pos uni0452 uni04AE -59; pos uni0452 uni04AF -6; pos uni0452 uni04B0 -47; pos uni0452 uni04B1 -6; pos uni0452 uni04CF -12; pos uni0452 uni04D9 -11; pos uni0452 zerosuperior -10; pos uni0454 eightinferior 10; pos uni0454 eightsuperior 5; pos uni0454 fiveinferior 10; pos uni0454 fourinferior 13; pos uni0454 foursuperior 18; pos uni0454 nineinferior 1; pos uni0454 ninesuperior -12; pos uni0454 oneinferior 4; pos uni0454 seveninferior 2; pos uni0454 sevensuperior -20; pos uni0454 sixinferior 6; pos uni0454 sixsuperior 6; pos uni0454 threeinferior 12; pos uni0454 threesuperior 9; pos uni0454 trademark -17; pos uni0454 twoinferior 9; pos uni0454 twosuperior 8; pos uni0454 uni0408 2; pos uni0454 uni0414 4; pos uni0454 uni0424 8; pos uni0454 uni042F -4; pos uni0454 uni0431 9; pos uni0454 uni0440 3; pos uni0454 uni0444 -2; pos uni0454 uni044A 5; pos uni0454 uni044F -6; pos uni0454 uni0458 6; pos uni0454 uni0492 6; pos uni0454 uni04A1 9; pos uni0454 uni04AE -52; pos uni0454 uni04AF -3; pos uni0454 uni04B0 -46; pos uni0454 uni04B1 -3; pos uni0454 uni04CF -12; pos uni0454 uni04D4 5; pos uni0454 zeroinferior 10; pos uni0454 zerosuperior 5; pos uni0455 ampersand -6; pos uni0455 at -18; pos uni0455 eightsuperior 10; pos uni0455 fiveinferior -12; pos uni0455 fivesuperior -8; pos uni0455 fourinferior 6; pos uni0455 foursuperior 6; pos uni0455 nineinferior -20; pos uni0455 ninesuperior -27; pos uni0455 oneinferior -12; pos uni0455 onesuperior -12; pos uni0455 seveninferior -12; pos uni0455 sevensuperior -30; pos uni0455 sixinferior 2; pos uni0455 sixsuperior 6; pos uni0455 slash -12; pos uni0455 threeinferior -12; pos uni0455 threesuperior -8; pos uni0455 trademark -22; pos uni0455 twoinferior -12; pos uni0455 twosuperior -8; pos uni0455 underscore -20; pos uni0455 uni0414 5; pos uni0455 uni0424 13; pos uni0455 uni042F -6; pos uni0455 uni044D -5; pos uni0455 uni044F -11; pos uni0455 uni0455 -6; pos uni0455 uni0492 6; pos uni0455 uni04AE -52; pos uni0455 uni04AF 1; pos uni0455 uni04B0 -52; pos uni0455 uni04B1 1; pos uni0455 uni04CF -12; pos uni0455 uni04D4 4; pos uni0455 zeroinferior 10; pos uni0457 eightsuperior -12; pos uni0457 fivesuperior -14; pos uni0457 foursuperior -18; pos uni0457 ninesuperior -12; pos uni0457 onesuperior -14; pos uni0457 question 9; pos uni0457 registered -6; pos uni0457 sevensuperior -12; pos uni0457 sixsuperior -18; pos uni0457 threesuperior -12; pos uni0457 trademark -10; pos uni0457 twosuperior -5; pos uni0457 uni0492 6; pos uni0457 uni04AE 25; pos uni0457 uni04B0 25; pos uni0457 uni04BB 12; pos uni0457 zerosuperior -14; pos uni0458 ninesuperior -10; pos uni0458 onesuperior 20; pos uni0458 parenright 10; pos uni0458 sevensuperior 12; pos uni0458 slash -25; pos uni0458 trademark -8; pos uni0458 uni0408 -8; pos uni0458 uni0424 13; pos uni0458 uni042F -12; pos uni0458 uni044D -4; pos uni0458 uni04AE -30; pos uni0458 uni04B0 -30; pos uni0458 uni04BB -4; pos uni0458 uni04CF -22; pos uni0490 ampersand -8; pos uni0490 at -15; pos uni0490 eightinferior -55; pos uni0490 fiveinferior -38; pos uni0490 fourinferior -42; pos uni0490 nineinferior -46; pos uni0490 oneinferior -38; pos uni0490 parenright 16; pos uni0490 question 4; pos uni0490 seveninferior -38; pos uni0490 sixinferior -46; pos uni0490 slash -106; pos uni0490 threeinferior -38; pos uni0490 twoinferior -38; pos uni0490 uni0405 -6; pos uni0490 uni0408 -70; pos uni0490 uni0414 -56; pos uni0490 uni0424 -47; pos uni0490 uni042F -34; pos uni0490 uni0431 -40; pos uni0490 uni0440 -67; pos uni0490 uni0444 -109; pos uni0490 uni044A -62; pos uni0490 uni044D -86; pos uni0490 uni044F -95; pos uni0490 uni0455 -84; pos uni0490 uni0456 -12; pos uni0490 uni0458 -16; pos uni0490 uni0493 -67; pos uni0490 uni04A1 -63; pos uni0490 uni04AF -72; pos uni0490 uni04B1 -72; pos uni0490 uni04D4 -102; pos uni0490 zeroinferior -50; pos uni0491 eightinferior -17; pos uni0491 fiveinferior -17; pos uni0491 fourinferior -21; pos uni0491 nineinferior -17; pos uni0491 oneinferior -17; pos uni0491 seveninferior -17; pos uni0491 sixinferior -17; pos uni0491 slash -17; pos uni0491 threeinferior -17; pos uni0491 twoinferior -17; pos uni0491 uni0444 -27; pos uni0491 uni044D -12; pos uni0491 uni044F -29; pos uni0491 zeroinferior -17; pos uni0492 ampersand -14; pos uni0492 at -10; pos uni0492 eightinferior -63; pos uni0492 eightsuperior 20; pos uni0492 fiveinferior -63; pos uni0492 fivesuperior 20; pos uni0492 fourinferior -77; pos uni0492 foursuperior 10; pos uni0492 nineinferior -63; pos uni0492 ninesuperior 30; pos uni0492 oneinferior -63; pos uni0492 onesuperior 14; pos uni0492 parenright 18; pos uni0492 question 29; pos uni0492 registered 46; pos uni0492 seveninferior -57; pos uni0492 sevensuperior 24; pos uni0492 sixinferior -63; pos uni0492 sixsuperior 30; pos uni0492 slash -74; pos uni0492 threeinferior -63; pos uni0492 threesuperior 24; pos uni0492 trademark 25; pos uni0492 twoinferior -63; pos uni0492 twosuperior 24; pos uni0492 underscore -83; pos uni0492 uni0405 -3; pos uni0492 uni0408 -46; pos uni0492 uni0414 -36; pos uni0492 uni0424 8; pos uni0492 uni042F -9; pos uni0492 uni0431 -4; pos uni0492 uni0444 -38; pos uni0492 uni044A -4; pos uni0492 uni044D -21; pos uni0492 uni044F -44; pos uni0492 uni0455 -15; pos uni0492 uni0457 23; pos uni0492 uni0493 -8; pos uni0492 uni04AE 6; pos uni0492 uni04AF 6; pos uni0492 uni04B0 6; pos uni0492 uni04B1 6; pos uni0492 uni04BB 6; pos uni0492 uni04CF -12; pos uni0492 uni04D4 -72; pos uni0492 zeroinferior -63; pos uni0492 zerosuperior 24; pos uni0493 ampersand -20; pos uni0493 at -14; pos uni0493 eightinferior -6; pos uni0493 eightsuperior 9; pos uni0493 fiveinferior -12; pos uni0493 fivesuperior 6; pos uni0493 fourinferior -41; pos uni0493 foursuperior 17; pos uni0493 nineinferior -6; pos uni0493 ninesuperior 6; pos uni0493 oneinferior -17; pos uni0493 registered 10; pos uni0493 sevensuperior -12; pos uni0493 sixinferior -35; pos uni0493 sixsuperior 12; pos uni0493 slash -55; pos uni0493 threesuperior 6; pos uni0493 trademark -17; pos uni0493 twoinferior -12; pos uni0493 twosuperior 6; pos uni0493 underscore -92; pos uni0493 uni0405 4; pos uni0493 uni0408 -53; pos uni0493 uni0414 -32; pos uni0493 uni0424 21; pos uni0493 uni042F -12; pos uni0493 uni0431 6; pos uni0493 uni0444 -9; pos uni0493 uni044A 4; pos uni0493 uni044F -17; pos uni0493 uni0492 8; pos uni0493 uni04AE -42; pos uni0493 uni04AF 18; pos uni0493 uni04B0 -29; pos uni0493 uni04B1 18; pos uni0493 uni04CF -12; pos uni0493 uni04D4 -52; pos uni0493 zeroinferior -12; pos uni0493 zerosuperior 12; pos uni0494 at -9; pos uni0494 copyright -9; pos uni0494 eightinferior 4; pos uni0494 eightsuperior -30; pos uni0494 fiveinferior 8; pos uni0494 fivesuperior -29; pos uni0494 fourinferior 4; pos uni0494 foursuperior -33; pos uni0494 nineinferior 4; pos uni0494 ninesuperior -23; pos uni0494 oneinferior 8; pos uni0494 onesuperior -24; pos uni0494 question -26; pos uni0494 registered -17; pos uni0494 seveninferior 4; pos uni0494 sevensuperior -33; pos uni0494 sixinferior 4; pos uni0494 sixsuperior -26; pos uni0494 slash 8; pos uni0494 threeinferior 4; pos uni0494 threesuperior -20; pos uni0494 trademark -37; pos uni0494 twoinferior 8; pos uni0494 twosuperior -23; pos uni0494 underscore 8; pos uni0494 uni0414 8; pos uni0494 uni0424 -2; pos uni0494 uni0431 8; pos uni0494 uni0440 -6; pos uni0494 uni0444 3; pos uni0494 uni044A -14; pos uni0494 uni044D 6; pos uni0494 uni044F 4; pos uni0494 uni0455 4; pos uni0494 uni0458 32; pos uni0494 uni04AE -44; pos uni0494 uni04AF -16; pos uni0494 uni04B0 -44; pos uni0494 uni04B1 -10; pos uni0494 uni04BB -9; pos uni0494 uni04D4 8; pos uni0494 zeroinferior 8; pos uni0494 zerosuperior -26; pos uni0495 ampersand 9; pos uni0495 eightinferior 6; pos uni0495 eightsuperior -14; pos uni0495 fivesuperior -12; pos uni0495 foursuperior -9; pos uni0495 ninesuperior -20; pos uni0495 onesuperior -10; pos uni0495 parenright 12; pos uni0495 registered -12; pos uni0495 seveninferior -6; pos uni0495 sevensuperior -32; pos uni0495 sixinferior 6; pos uni0495 sixsuperior -6; pos uni0495 slash 9; pos uni0495 threeinferior 9; pos uni0495 threesuperior -4; pos uni0495 trademark -29; pos uni0495 twoinferior 6; pos uni0495 twosuperior -6; pos uni0495 underscore 20; pos uni0495 uni0408 9; pos uni0495 uni0414 9; pos uni0495 uni0424 -7; pos uni0495 uni042F -4; pos uni0495 uni0444 -4; pos uni0495 uni044A -16; pos uni0495 uni044D -5; pos uni0495 uni044F -5; pos uni0495 uni0458 16; pos uni0495 uni04A1 -8; pos uni0495 uni04AE -56; pos uni0495 uni04AF -10; pos uni0495 uni04B0 -47; pos uni0495 uni04B1 -10; pos uni0495 uni04BB -5; pos uni0495 uni04CF -14; pos uni0495 zeroinferior 6; pos uni0495 zerosuperior -12; pos uni0497 ampersand -16; pos uni0497 at -23; pos uni0497 copyright -13; pos uni0497 eightinferior -7; pos uni0497 fiveinferior 3; pos uni0497 fivesuperior -10; pos uni0497 foursuperior 6; pos uni0497 nineinferior -23; pos uni0497 ninesuperior -20; pos uni0497 onesuperior -21; pos uni0497 registered -5; pos uni0497 seveninferior -32; pos uni0497 sevensuperior -32; pos uni0497 sixinferior -9; pos uni0497 slash 3; pos uni0497 threeinferior 5; pos uni0497 threesuperior -4; pos uni0497 trademark -40; pos uni0497 twosuperior -8; pos uni0497 underscore 3; pos uni0497 uni0424 4; pos uni0497 uni0444 -12; pos uni0497 uni044A -8; pos uni0497 uni044D -4; pos uni0497 uni044F -24; pos uni0497 uni0455 -4; pos uni0497 uni0458 12; pos uni0497 uni0492 6; pos uni0497 uni04AE -59; pos uni0497 uni04AF -6; pos uni0497 uni04B0 -59; pos uni0497 uni04B1 -6; pos uni0497 uni04CF -9; pos uni0497 zeroinferior -6; pos uni049B ampersand 5; pos uni049B at -16; pos uni049B copyright -8; pos uni049B eightsuperior -4; pos uni049B fivesuperior -11; pos uni049B fourinferior 12; pos uni049B foursuperior 1; pos uni049B nineinferior -3; pos uni049B ninesuperior -23; pos uni049B onesuperior -13; pos uni049B parenright 12; pos uni049B registered -8; pos uni049B seveninferior -12; pos uni049B sevensuperior -35; pos uni049B sixsuperior 1; pos uni049B slash 14; pos uni049B threeinferior 9; pos uni049B threesuperior -13; pos uni049B trademark -34; pos uni049B twoinferior 6; pos uni049B twosuperior -16; pos uni049B underscore 14; pos uni049B uni0408 12; pos uni049B uni0414 9; pos uni049B uni0424 4; pos uni049B uni042F 2; pos uni049B uni0444 -7; pos uni049B uni044F -7; pos uni049B uni0458 14; pos uni049B uni0492 6; pos uni049B uni04AE -60; pos uni049B uni04AF -3; pos uni049B uni04B0 -56; pos uni049B uni04B1 -3; pos uni049B uni04CF -9; pos uni049B uni04D4 6; pos uni04A5 eightinferior -6; pos uni04A5 fiveinferior -12; pos uni04A5 nineinferior -6; pos uni04A5 ninesuperior 6; pos uni04A5 oneinferior -17; pos uni04A5 sevensuperior -20; pos uni04A5 sixinferior -35; pos uni04A5 trademark -17; pos uni04A5 twoinferior -12; pos uni04A5 zeroinferior -12; pos uni04AE ampersand -44; pos uni04AE at -60; pos uni04AE eightinferior -82; pos uni04AE eightsuperior 6; pos uni04AE exclamdown -30; pos uni04AE fiveinferior -80; pos uni04AE fivesuperior 8; pos uni04AE fourinferior -100; pos uni04AE foursuperior -10; pos uni04AE nineinferior -80; pos uni04AE ninesuperior 16; pos uni04AE oneinferior -80; pos uni04AE onesuperior 18; pos uni04AE question 10; pos uni04AE questiondown -70; pos uni04AE registered 15; pos uni04AE seveninferior -62; pos uni04AE sevensuperior 20; pos uni04AE sixinferior -82; pos uni04AE slash -52; pos uni04AE threeinferior -80; pos uni04AE threesuperior 10; pos uni04AE trademark 22; pos uni04AE twoinferior -90; pos uni04AE twosuperior 10; pos uni04AE underscore -60; pos uni04AE uni0405 -22; pos uni04AE uni0408 -42; pos uni04AE uni0414 -42; pos uni04AE uni0424 -43; pos uni04AE uni042F -31; pos uni04AE uni0431 -27; pos uni04AE uni0440 -40; pos uni04AE uni0444 -61; pos uni04AE uni044A -34; pos uni04AE uni044D -62; pos uni04AE uni044F -64; pos uni04AE uni0455 -50; pos uni04AE uni0458 -10; pos uni04AE uni0493 -30; pos uni04AE uni04A1 -20; pos uni04AE uni04AE 17; pos uni04AE uni04AF -19; pos uni04AE uni04B0 17; pos uni04AE uni04B1 -19; pos uni04AE uni04BB 20; pos uni04AE uni04CF -12; pos uni04AE uni04D4 -80; pos uni04AE zeroinferior -80; pos uni04AE zerosuperior 10; pos uni04AF ampersand -12; pos uni04AF at -2; pos uni04AF eightinferior -26; pos uni04AF eightsuperior 30; pos uni04AF fiveinferior -20; pos uni04AF fivesuperior 30; pos uni04AF fourinferior -32; pos uni04AF foursuperior 30; pos uni04AF nineinferior -12; pos uni04AF ninesuperior 20; pos uni04AF oneinferior -22; pos uni04AF onesuperior 8; pos uni04AF parenright -6; pos uni04AF registered 32; pos uni04AF seveninferior -6; pos uni04AF sixinferior -32; pos uni04AF sixsuperior 40; pos uni04AF slash -9; pos uni04AF threeinferior -20; pos uni04AF threesuperior 20; pos uni04AF twoinferior -10; pos uni04AF twosuperior 16; pos uni04AF underscore -37; pos uni04AF uni0408 -23; pos uni04AF uni0414 -20; pos uni04AF uni0424 13; pos uni04AF uni042F -6; pos uni04AF uni0431 8; pos uni04AF uni0440 6; pos uni04AF uni0444 -4; pos uni04AF uni044A 14; pos uni04AF uni044D -8; pos uni04AF uni044F -13; pos uni04AF uni0455 -5; pos uni04AF uni0458 6; pos uni04AF uni04A1 27; pos uni04AF uni04AE -24; pos uni04AF uni04AF 27; pos uni04AF uni04B0 -24; pos uni04AF uni04B1 23; pos uni04AF uni04CF -9; pos uni04AF uni04D4 -17; pos uni04AF zeroinferior -20; pos uni04AF zerosuperior 30; pos uni04B0 ampersand -38; pos uni04B0 at -35; pos uni04B0 eightinferior -68; pos uni04B0 eightsuperior 6; pos uni04B0 fiveinferior -53; pos uni04B0 fivesuperior 8; pos uni04B0 fourinferior -67; pos uni04B0 foursuperior -10; pos uni04B0 nineinferior -66; pos uni04B0 ninesuperior 16; pos uni04B0 oneinferior -49; pos uni04B0 onesuperior 18; pos uni04B0 question 10; pos uni04B0 registered 15; pos uni04B0 seveninferior -52; pos uni04B0 sevensuperior 20; pos uni04B0 sixinferior -68; pos uni04B0 slash -52; pos uni04B0 threeinferior -70; pos uni04B0 threesuperior 10; pos uni04B0 trademark 22; pos uni04B0 twoinferior -66; pos uni04B0 twosuperior 10; pos uni04B0 underscore -60; pos uni04B0 uni0405 -22; pos uni04B0 uni0408 -42; pos uni04B0 uni0414 -42; pos uni04B0 uni0424 -35; pos uni04B0 uni042F -27; pos uni04B0 uni0431 -24; pos uni04B0 uni0440 -40; pos uni04B0 uni0444 -44; pos uni04B0 uni044A -30; pos uni04B0 uni044D -47; pos uni04B0 uni044F -46; pos uni04B0 uni0455 -50; pos uni04B0 uni0458 -10; pos uni04B0 uni0493 -22; pos uni04B0 uni04A1 -20; pos uni04B0 uni04AE 17; pos uni04B0 uni04AF -19; pos uni04B0 uni04B0 3; pos uni04B0 uni04B1 -19; pos uni04B0 uni04BB 20; pos uni04B0 uni04CF -12; pos uni04B0 uni04D4 -67; pos uni04B0 zeroinferior -37; pos uni04B0 zerosuperior 10; pos uni04B1 ampersand -12; pos uni04B1 at -6; pos uni04B1 eightinferior -17; pos uni04B1 eightsuperior 26; pos uni04B1 fiveinferior -12; pos uni04B1 fivesuperior 34; pos uni04B1 fourinferior -23; pos uni04B1 foursuperior 30; pos uni04B1 nineinferior -12; pos uni04B1 ninesuperior 16; pos uni04B1 oneinferior -17; pos uni04B1 registered 32; pos uni04B1 seveninferior -6; pos uni04B1 sixinferior -23; pos uni04B1 sixsuperior 40; pos uni04B1 threeinferior -12; pos uni04B1 threesuperior 20; pos uni04B1 twoinferior -6; pos uni04B1 twosuperior 4; pos uni04B1 uni0408 -23; pos uni04B1 uni0414 -6; pos uni04B1 uni0424 13; pos uni04B1 uni042F -6; pos uni04B1 uni0431 8; pos uni04B1 uni0440 6; pos uni04B1 uni0444 -6; pos uni04B1 uni044A 14; pos uni04B1 uni044D -8; pos uni04B1 uni044F -13; pos uni04B1 uni0455 -5; pos uni04B1 uni0458 17; pos uni04B1 uni04A1 27; pos uni04B1 uni04AE -24; pos uni04B1 uni04AF 23; pos uni04B1 uni04B0 -24; pos uni04B1 uni04B1 23; pos uni04B1 uni04CF -9; pos uni04B1 uni04D4 -17; pos uni04B1 zeroinferior -12; pos uni04B1 zerosuperior 34; pos uni04B2 ampersand -10; pos uni04B2 at -42; pos uni04B2 copyright -23; pos uni04B2 eightsuperior -2; pos uni04B2 fiveinferior -4; pos uni04B2 fivesuperior -11; pos uni04B2 fourinferior -4; pos uni04B2 foursuperior -39; pos uni04B2 nineinferior -7; pos uni04B2 ninesuperior 3; pos uni04B2 oneinferior 4; pos uni04B2 onesuperior -4; pos uni04B2 parenright 22; pos uni04B2 question 1; pos uni04B2 registered -2; pos uni04B2 seveninferior -22; pos uni04B2 sevensuperior 12; pos uni04B2 sixsuperior -13; pos uni04B2 slash 31; pos uni04B2 threeinferior 9; pos uni04B2 threesuperior 2; pos uni04B2 trademark 4; pos uni04B2 twoinferior 9; pos uni04B2 underscore 34; pos uni04B2 uni0414 21; pos uni04B2 uni0424 -50; pos uni04B2 uni042F 8; pos uni04B2 uni0431 -23; pos uni04B2 uni0444 -29; pos uni04B2 uni044A -48; pos uni04B2 uni044D -11; pos uni04B2 uni044F -16; pos uni04B2 uni0458 81; pos uni04B2 uni0493 -16; pos uni04B2 uni04A1 -38; pos uni04B2 uni04AE -12; pos uni04B2 uni04AF -26; pos uni04B2 uni04B0 -12; pos uni04B2 uni04B1 -6; pos uni04B2 uni04CF -20; pos uni04B2 uni04D4 20; pos uni04B2 zeroinferior -7; pos uni04B2 zerosuperior 1; pos uni04B3 ampersand -9; pos uni04B3 at -12; pos uni04B3 eightinferior -12; pos uni04B3 eightsuperior 6; pos uni04B3 fiveinferior -12; pos uni04B3 fourinferior 3; pos uni04B3 foursuperior 10; pos uni04B3 nineinferior -20; pos uni04B3 ninesuperior -10; pos uni04B3 oneinferior -14; pos uni04B3 registered 14; pos uni04B3 seveninferior -12; pos uni04B3 sevensuperior -10; pos uni04B3 sixinferior -12; pos uni04B3 sixsuperior 10; pos uni04B3 slash -6; pos uni04B3 threeinferior -12; pos uni04B3 threesuperior 6; pos uni04B3 trademark -16; pos uni04B3 twoinferior -9; pos uni04B3 underscore -9; pos uni04B3 uni0405 -6; pos uni04B3 uni0414 -9; pos uni04B3 uni0424 13; pos uni04B3 uni042F -6; pos uni04B3 uni0444 -14; pos uni04B3 uni044D -3; pos uni04B3 uni044F -11; pos uni04B3 uni0455 -4; pos uni04B3 uni0458 6; pos uni04B3 uni0492 6; pos uni04B3 uni04A1 4; pos uni04B3 uni04AE -46; pos uni04B3 uni04B0 -42; pos uni04B3 uni04CF -12; pos uni04B3 zeroinferior -6; pos uni04B3 zerosuperior 10; pos uni04CF at -6; pos uni04CF copyright -6; pos uni04CF fivesuperior -6; pos uni04CF onesuperior -6; pos uni04CF parenright -6; pos uni04CF registered -6; pos uni04CF sevensuperior -6; pos uni04CF trademark -6; pos uni04CF uni0414 4; pos uni04CF uni0424 7; pos uni04CF uni0444 -5; pos uni04CF uni044F -3; pos uni04CF uni04AE -6; pos uni04CF uni04AF -3; pos uni04CF uni04B0 -6; pos uni04CF uni04B1 -3; pos uogonek parenright 22; pos v X -4; pos v ampersand -12; pos v at -2; pos v eightinferior -30; pos v eightsuperior 30; pos v fiveinferior -20; pos v fivesuperior 30; pos v fourinferior -40; pos v foursuperior 30; pos v nineinferior -20; pos v ninesuperior 20; pos v oneinferior -30; pos v onesuperior 8; pos v p 10; pos v parenright -10; pos v registered 56; pos v seveninferior -10; pos v sixinferior -40; pos v sixsuperior 40; pos v slash -15; pos v threeinferior -20; pos v threesuperior 20; pos v trademark 16; pos v twoinferior -10; pos v twosuperior 16; pos v underscore -60; pos v v 26; pos v zeroinferior -20; pos v zerosuperior 30; pos x V -30; pos x X -6; pos x ampersand -27; pos x at -20; pos x eightinferior -20; pos x eightsuperior 2; pos x fiveinferior -22; pos x fourinferior -10; pos x foursuperior 10; pos x nineinferior -32; pos x ninesuperior -10; pos x oneinferior -24; pos x parenright -2; pos x registered 10; pos x seveninferior -30; pos x sevensuperior -10; pos x sixinferior -12; pos x sixsuperior 10; pos x slash -20; pos x threeinferior -17; pos x threesuperior 2; pos x trademark -12; pos x twoinferior -12; pos x underscore -20; pos x zeroinferior -2; pos x zerosuperior 10; pos ydotbelow underscore -20; pos zeroinferior V -50; pos zeroinferior X 18; pos zeroinferior uni0405 10; pos zeroinferior uni0408 12; pos zeroinferior uni0414 13; pos zeroinferior uni0424 8; pos zeroinferior uni042F 7; pos zeroinferior uni0431 17; pos zeroinferior uni0444 8; pos zeroinferior uni044A -14; pos zeroinferior uni044F -4; pos zeroinferior uni0455 6; pos zeroinferior uni0492 9; pos zeroinferior uni0493 12; pos zeroinferior uni04A1 -23; pos zeroinferior uni04AE -80; pos zeroinferior uni04AF -28; pos zeroinferior uni04B0 -42; pos zeroinferior uni04B1 -28; pos zeroinferior uni04CF -12; pos zeroinferior uni04D4 12; pos zeroinferior v -20; pos zeroinferior x 2; pos zerosuperior V 16; pos zerosuperior X 9; pos zerosuperior p 40; pos zerosuperior thorn 20; pos zerosuperior uni0408 -70; pos zerosuperior uni0414 -67; pos zerosuperior uni0424 26; pos zerosuperior uni042F -9; pos zerosuperior uni0431 21; pos zerosuperior uni0440 40; pos zerosuperior uni0444 8; pos zerosuperior uni044A 20; pos zerosuperior uni044D 8; pos zerosuperior uni044F -6; pos zerosuperior uni0455 20; pos zerosuperior uni0458 40; pos zerosuperior uni0492 12; pos zerosuperior uni0493 17; pos zerosuperior uni04A1 26; pos zerosuperior uni04AE 6; pos zerosuperior uni04AF 30; pos zerosuperior uni04B0 6; pos zerosuperior uni04B1 34; pos zerosuperior uni04BB 20; pos zerosuperior uni04CF -6; pos zerosuperior uni04D4 -50; pos zerosuperior v 30; pos zerosuperior x 16; # glyph, glyph exceptions: pos F AE -45; pos F AEacute -45; pos F ibreve -10; pos F idieresis -8; pos F imacron -8; pos F itilde -8; pos F jcircumflex 16; pos P AE -72; pos P AEacute -72; pos Thorn AE -40; pos Thorn AEacute -40; pos V AE -75; pos V AEacute -75; pos V ibreve 16; pos V icircumflex 16; pos V idieresis 20; pos V imacron 16; pos ampersand uni04D9 -11; pos ibreve V 10; pos idieresis V 20; pos imacron V 20; pos itilde V 10; pos jcircumflex V 5; pos sevensuperior uni0457 26; pos slash uni0434 -20; pos slash uni043C -52; pos tcaron X 30; pos uni0402 uni04D9 4; pos uni0403 uni0434 -18; pos uni0404 uni0457 6; pos uni0404 uni04D9 -6; pos uni0413 uni0434 -18; pos uni0420 uni043C -21; pos uni0422 uni04D9 -25; pos uni0422 uni04DF -12; pos uni0424 uni04D9 17; pos uni0425 uni0457 12; pos uni0444 uni04D9 -4; pos uni0454 uni04D9 6; pos uni0490 uni0430 -109; pos uni0490 uni0430.alt01 -89; pos uni0490 uni0432 -109; pos uni0490 uni0434 -18; pos uni0490 uni0435 -109; pos uni0490 uni0437 -104; pos uni0490 uni043E -109; pos uni0490 uni0441 -109; pos uni0490 uni0450 -85; pos uni0490 uni0451 -57; pos uni0490 uni0454 -109; pos uni0490 uni0473 -109; pos uni0490 uni0499 -104; pos uni0490 uni04AB -109; pos uni0490 uni04D5 -89; pos uni0490 uni04D7 -69; pos uni0490 uni04D9 -109; pos uni0490 uni04E9 -109; pos uni0491 uni0457 4; pos uni0492 uni043C -21; pos uni0494 uni04D9 2; pos uni0495 uni04D9 -4; pos uni049B uni04D9 6; pos uni04A4 uni0434 -18; pos uni04AE uni0434 -38; pos uni04AE uni043C -42; pos uni04AE uni0457 33; pos uni04AE uni04D3.alt01 -20; pos uni04AE uni04DF -20; pos uni04AF uni043C -14; pos uni04B0 uni0434 -19; pos uni04B0 uni043C -40; pos uni04B0 uni0457 29; pos uni04B0 uni04DF -17; pos uni04B1 uni043C -14; pos uni04B2 uni0434 -4; pos uni04B2 uni0457 6; pos uni04B2 uni04D9 -6; # glyph, group exceptions: enum pos Aogonek @MMK_R_inp_parenth 28; enum pos Aogonek @MMK_R_lc_f 20; enum pos Aogonek @MMK_R_lc_j 5; enum pos Eogonek @MMK_R_lc_j -8; enum pos aogonek @MMK_R_lc_j -5; enum pos aogonek.alt01 @MMK_R_lc_j -6; enum pos ibreve @MMK_R_uc_w 10; enum pos ibreve @MMK_R_uc_y 10; enum pos icircumflex @MMK_R_uc_t -16; enum pos idieresis @MMK_R_uc_t 16; enum pos idieresis @MMK_R_uc_w 20; enum pos idieresis @MMK_R_uc_y 25; enum pos ij @MMK_R_uc_y -20; enum pos ijacute @MMK_R_uc_y -10; enum pos imacron @MMK_R_uc_t 16; enum pos imacron @MMK_R_uc_w 15; enum pos imacron @MMK_R_uc_y 20; enum pos iogonek @MMK_R_inp_parenth 3; enum pos iogonek @MMK_R_lc_j -4; enum pos itilde @MMK_R_uc_t 16; enum pos itilde @MMK_R_uc_w 20; enum pos itilde @MMK_R_uc_y 20; enum pos jacute @MMK_R_uc_y -5; enum pos jcircumflex @MMK_R_uc_t 6; enum pos jcircumflex @MMK_R_uc_y 5; enum pos kgreenlandic @MMK_R_inp_foot -24; enum pos period @MMK_R_lc_j -4; enum pos tbar @MMK_R_inp_guill 30; enum pos tbar @MMK_R_inp_hyph 18; enum pos tbar @MMK_R_lc_d 10; enum pos tbar @MMK_R_lc_o 10; enum pos tcaron @MMK_R_inp_foot 30; enum pos tcaron @MMK_R_inp_parenth 20; enum pos tcaron @MMK_R_lc_h 26; enum pos tcaron @MMK_R_uc_w 30; enum pos tcaron @MMK_R_uc_y 20; enum pos uni0412 @MMK_R_cyr_uc_Ucyrillic -13; enum pos uni0431 @MMK_R_cyr_uc_Checyrillic -26; enum pos uni0431 @MMK_R_cyr_uc_Hardsigncyrillic -17; enum pos uni0431 @MMK_R_cyr_uc_Tecyrillic -17; enum pos uni0431 @MMK_R_cyr_uc_Ucyrillic -27; enum pos uni0431 @MMK_R_inp_foot -17; enum pos uni0431 @MMK_R_inp_quotel -29; enum pos uni0431 @MMK_R_inp_quoter -32; enum pos uni0457 @MMK_R_cyr_uc_Checyrillic 6; enum pos uni0457 @MMK_R_cyr_uc_Encyrillic 6; enum pos uni0457 @MMK_R_cyr_uc_Hardsigncyrillic 16; enum pos uni0457 @MMK_R_cyr_uc_Tecyrillic 16; enum pos uni0457 @MMK_R_inp_quotel -33; enum pos uni0457 @MMK_R_inp_quoter -25; enum pos uni0490 @MMK_R_cyr_lc_checyrillic -57; enum pos uni0490 @MMK_R_cyr_lc_elcyrillic -83; enum pos uni0490 @MMK_R_cyr_lc_encyrillic -67; enum pos uni0490 @MMK_R_cyr_lc_gecyrillic -98; enum pos uni0490 @MMK_R_cyr_lc_gheupturncyrillic -67; enum pos uni0490 @MMK_R_cyr_lc_iicyrillic -73; enum pos uni0490 @MMK_R_cyr_lc_khacyrillic -71; enum pos uni0490 @MMK_R_cyr_lc_ucyrillic -72; enum pos uni0490 @MMK_R_cyr_lc_yericyrillic -65; enum pos uni0490 @MMK_R_cyr_lc_zhecyrillic -82; enum pos uni0490 @MMK_R_cyr_uc_Acyrillic -87; enum pos uni0490 @MMK_R_cyr_uc_Elcyrillic -69; enum pos uni0490 @MMK_R_cyr_uc_Ocyrillic -26; enum pos uni0490 @MMK_R_cyr_uc_Zecyrillic -3; enum pos uni0490 @MMK_R_cyr_uc_Zhecyrillic -6; enum pos uni0490 @MMK_R_inp_colon -75; enum pos uni0490 @MMK_R_inp_guill -98; enum pos uni0490 @MMK_R_inp_guilr -62; enum pos uni0490 @MMK_R_inp_hyph -61; enum pos uni0490 @MMK_R_inp_period -42; enum pos uni0491 @MMK_R_cyr_lc_acyrillic -35; enum pos uni0491 @MMK_R_cyr_lc_gecyrillic -8; enum pos uni0491 @MMK_R_cyr_lc_khacyrillic -17; enum pos uni0491 @MMK_R_cyr_lc_ocyrillic -35; enum pos uni0491 @MMK_R_cyr_lc_zecyrilic -12; enum pos uni0491 @MMK_R_cyr_uc_Ucyrillic 4; enum pos uni0491 @MMK_R_inp_guill -13; enum pos uni0491 @MMK_R_inp_hyph -25; enum pos uni04A5 @MMK_R_cyr_lc_khacyrillic 6; enum pos uni04A5 @MMK_R_inp_guill -12; enum pos uogonek @MMK_R_inp_parenth 2; # group, glyph exceptions: enum pos @MMK_L_cyr_lc_acyrillic.alt01 uni04D9 6; enum pos @MMK_L_cyr_lc_encyrillic uni04D9 14; enum pos @MMK_L_cyr_lc_escyrillic uni04D9 -5; enum pos @MMK_L_cyr_lc_gecyrillic uni04D9 -4; enum pos @MMK_L_cyr_lc_iicyrillic uni04D9 14; enum pos @MMK_L_cyr_lc_jecyrillic uni04D9 2; enum pos @MMK_L_cyr_lc_kacyrillic uni04D9 5; enum pos @MMK_L_cyr_lc_ocyrillic uni04D9 -3; enum pos @MMK_L_cyr_lc_shhacyrillic uni04D9 12; enum pos @MMK_L_cyr_lc_softsigncyrillic uni04D9 -8; enum pos @MMK_L_cyr_lc_tsecyrillic uni04D9 13; enum pos @MMK_L_cyr_lc_ucyrillic uni043C -19; enum pos @MMK_L_cyr_lc_vecyrillic uni04D9 -4; enum pos @MMK_L_cyr_uc_Acyrillic uni04D9 -17; enum pos @MMK_L_cyr_uc_Decyrillic uni0457 7; enum pos @MMK_L_cyr_uc_Decyrillic uni04D9 -5; enum pos @MMK_L_cyr_uc_Escyrillic uni0457 17; enum pos @MMK_L_cyr_uc_Gecyrillic uni0457 29; enum pos @MMK_L_cyr_uc_Jecyrillic uni0457 9; enum pos @MMK_L_cyr_uc_Kacyrillic uni0457 12; enum pos @MMK_L_cyr_uc_Kacyrillic uni04D9 -15; enum pos @MMK_L_cyr_uc_Kadescendercyrillic uni0457 6; enum pos @MMK_L_cyr_uc_Tsecyrillic comma 17; enum pos @MMK_L_cyr_uc_Tsecyrillic semicolon 13; enum pos @MMK_L_cyr_uc_Tsecyrillic uni04D9 -11; enum pos @MMK_L_cyr_uc_Tshecyrillic uni04D9 -11; enum pos @MMK_L_cyr_uc_Ucyrillic uni0434 -25; enum pos @MMK_L_cyr_uc_Ucyrillic uni043C -84; enum pos @MMK_L_cyr_uc_Ucyrillic uni0457 15; enum pos @MMK_L_cyr_uc_Ucyrillic uni04D3.alt01 -17; enum pos @MMK_L_cyr_uc_Ucyrillic uni04DF -14; enum pos @MMK_L_cyr_uc_Zecyrillic uni04D9 -8; enum pos @MMK_L_inp_colon uni04D9 12; enum pos @MMK_L_inp_foot uni0457 23; enum pos @MMK_L_inp_hyph uni043C -26; enum pos @MMK_L_inp_period uni04D9 -35; enum pos @MMK_L_inp_quotel AE -120; enum pos @MMK_L_inp_quotel AEacute -120; enum pos @MMK_L_inp_quotel uni043C -20; enum pos @MMK_L_inp_quotel uni0457 8; enum pos @MMK_L_inp_quoter AE -125; enum pos @MMK_L_inp_quoter AEacute -125; enum pos @MMK_L_inp_quoter ibreve 30; enum pos @MMK_L_inp_quoter icircumflex 30; enum pos @MMK_L_inp_quoter idieresis 30; enum pos @MMK_L_inp_quoter imacron 30; enum pos @MMK_L_inp_quoter itilde 30; enum pos @MMK_L_inp_quoter uni0434 -17; enum pos @MMK_L_inp_quoter uni043C -20; enum pos @MMK_L_inp_quoter uni0457 33; enum pos @MMK_L_lc_g period -4; enum pos @MMK_L_uc_d AE -33; enum pos @MMK_L_uc_d AEacute -33; enum pos @MMK_L_uc_j AE -30; enum pos @MMK_L_uc_j AEacute -30; enum pos @MMK_L_uc_n AE -4; enum pos @MMK_L_uc_n AEacute -4; enum pos @MMK_L_uc_o AE -7; enum pos @MMK_L_uc_o AEacute -7; enum pos @MMK_L_uc_t icircumflex 16; enum pos @MMK_L_uc_t idieresis 6; enum pos @MMK_L_uc_t imacron 6; enum pos @MMK_L_uc_t itilde 6; enum pos @MMK_L_uc_u AE -33; enum pos @MMK_L_uc_u AEacute -33; enum pos @MMK_L_uc_uhorn AE -35; enum pos @MMK_L_uc_uhorn AEacute -35; enum pos @MMK_L_uc_w AE -55; enum pos @MMK_L_uc_w AEacute -55; enum pos @MMK_L_uc_w ibreve 16; enum pos @MMK_L_uc_w icircumflex 16; enum pos @MMK_L_uc_w idieresis 17; enum pos @MMK_L_uc_w imacron 10; enum pos @MMK_L_uc_y AE -80; enum pos @MMK_L_uc_y AEacute -80; enum pos @MMK_L_uc_y idieresis 10; enum pos @MMK_L_uc_y imacron 10; enum pos @MMK_L_uc_y itilde 10; enum pos @MMK_L_uc_y jcircumflex 16; # glyph, group: pos copyright @MMK_R_cyr_lc_zhecyrillic -4; pos copyright @MMK_R_cyr_uc_Ucyrillic -13; pos copyright @MMK_R_cyr_uc_Zhecyrillic -25; subtable; pos B @MMK_R_inp_foot -20; pos B @MMK_R_inp_period -9; pos B @MMK_R_inp_quotel -20; pos B @MMK_R_inp_quoter -30; pos B @MMK_R_lc_g -10; pos B @MMK_R_lc_t -5; pos B @MMK_R_lc_u -10; pos B @MMK_R_lc_w -10; pos B @MMK_R_lc_y -5; pos B @MMK_R_lc_z -20; pos B @MMK_R_uc_a -7; pos B @MMK_R_uc_j -8; pos B @MMK_R_uc_t -20; pos B @MMK_R_uc_u -3; pos B @MMK_R_uc_w -26; pos B @MMK_R_uc_y -31; pos B @MMK_R_uc_z -18; pos F @MMK_R_inp_foot 20; pos F @MMK_R_inp_guill -30; pos F @MMK_R_inp_guilr -20; pos F @MMK_R_inp_hyph -20; pos F @MMK_R_inp_period -100; pos F @MMK_R_inp_quotel 12; pos F @MMK_R_inp_quoter 11; pos F @MMK_R_lc_a.alt01 -36; pos F @MMK_R_lc_d -30; pos F @MMK_R_lc_f -5; pos F @MMK_R_lc_g -30; pos F @MMK_R_lc_i -21; pos F @MMK_R_lc_j -21; pos F @MMK_R_lc_n -13; pos F @MMK_R_lc_o -30; pos F @MMK_R_lc_s -30; pos F @MMK_R_lc_t -5; pos F @MMK_R_lc_u -25; pos F @MMK_R_lc_w -20; pos F @MMK_R_lc_z -10; pos F @MMK_R_uc_a -35; pos F @MMK_R_uc_j -27; pos F @MMK_R_uc_o -2; pos F @MMK_R_uc_t 4; pos Germandbls @MMK_R_inp_colon -4; pos Germandbls @MMK_R_inp_foot -30; pos Germandbls @MMK_R_inp_guill 12; pos Germandbls @MMK_R_inp_hyph 12; pos Germandbls @MMK_R_inp_period -8; pos Germandbls @MMK_R_inp_quotel -40; pos Germandbls @MMK_R_inp_quoter -40; pos Germandbls @MMK_R_lc_w -10; pos Germandbls @MMK_R_lc_y -11; pos Germandbls @MMK_R_lc_z -10; pos Germandbls @MMK_R_uc_a -19; pos Germandbls @MMK_R_uc_j 2; pos Germandbls @MMK_R_uc_t -20; pos Germandbls @MMK_R_uc_u -15; pos Germandbls @MMK_R_uc_w -20; pos Germandbls @MMK_R_uc_y -15; pos Germandbls @MMK_R_uc_z -18; pos P @MMK_R_inp_foot 4; pos P @MMK_R_inp_hyph -10; pos P @MMK_R_inp_period -130; pos P @MMK_R_inp_quotel 10; pos P @MMK_R_inp_quoter -9; pos P @MMK_R_lc_a.alt01 -10; pos P @MMK_R_lc_d -10; pos P @MMK_R_lc_g -10; pos P @MMK_R_lc_i 11; pos P @MMK_R_lc_j 11; pos P @MMK_R_lc_n 11; pos P @MMK_R_lc_o -10; pos P @MMK_R_lc_u 11; pos P @MMK_R_lc_y 20; pos P @MMK_R_uc_a -45; pos P @MMK_R_uc_j -40; pos P @MMK_R_uc_w 5; pos P @MMK_R_uc_z -8; pos Thorn @MMK_R_inp_foot -36; pos Thorn @MMK_R_inp_guill 32; pos Thorn @MMK_R_inp_guilr 9; pos Thorn @MMK_R_inp_hyph 30; pos Thorn @MMK_R_inp_period -60; pos Thorn @MMK_R_inp_quotel -30; pos Thorn @MMK_R_inp_quoter -40; pos Thorn @MMK_R_lc_a.alt01 -5; pos Thorn @MMK_R_lc_d 10; pos Thorn @MMK_R_lc_o 10; pos Thorn @MMK_R_lc_s 10; pos Thorn @MMK_R_lc_w 10; pos Thorn @MMK_R_lc_y 10; pos Thorn @MMK_R_lc_z 10; pos Thorn @MMK_R_uc_a -20; pos Thorn @MMK_R_uc_j -25; pos Thorn @MMK_R_uc_w -5; pos Thorn @MMK_R_uc_y -39; pos V @MMK_R_inp_colon -20; pos V @MMK_R_inp_foot 20; pos V @MMK_R_inp_guill -44; pos V @MMK_R_inp_guilr -24; pos V @MMK_R_inp_hyph -25; pos V @MMK_R_inp_period -70; pos V @MMK_R_inp_quotel 20; pos V @MMK_R_inp_quoter 23; pos V @MMK_R_lc_a.alt01 -45; pos V @MMK_R_lc_d -45; pos V @MMK_R_lc_g -45; pos V @MMK_R_lc_h 20; pos V @MMK_R_lc_i -10; pos V @MMK_R_lc_j -10; pos V @MMK_R_lc_n -15; pos V @MMK_R_lc_o -45; pos V @MMK_R_lc_s -35; pos V @MMK_R_lc_y 10; pos V @MMK_R_lc_z -30; pos V @MMK_R_uc_a -61; pos V @MMK_R_uc_j -45; pos V @MMK_R_uc_o -22; pos V @MMK_R_uc_s -10; pos V @MMK_R_uc_t 15; pos V @MMK_R_uc_w 19; pos V @MMK_R_uc_y 22; pos X @MMK_R_inp_foot 16; pos X @MMK_R_inp_guill -44; pos X @MMK_R_inp_guilr -20; pos X @MMK_R_inp_hyph -42; pos X @MMK_R_inp_period 16; pos X @MMK_R_inp_quotel 16; pos X @MMK_R_inp_quoter 14; pos X @MMK_R_lc_a.alt01 -10; pos X @MMK_R_lc_d -16; pos X @MMK_R_lc_g -10; pos X @MMK_R_lc_h 13; pos X @MMK_R_lc_o -16; pos X @MMK_R_lc_s -5; pos X @MMK_R_lc_t -5; pos X @MMK_R_lc_u -20; pos X @MMK_R_lc_w -12; pos X @MMK_R_lc_z 1; pos X @MMK_R_uc_a 16; pos X @MMK_R_uc_o -19; pos X @MMK_R_uc_t 16; pos ampersand @MMK_R_cyr_lc_gecyrillic -8; pos ampersand @MMK_R_cyr_lc_gheupturncyrillic -6; pos ampersand @MMK_R_cyr_lc_khacyrillic -10; pos ampersand @MMK_R_cyr_lc_ocyrillic -13; pos ampersand @MMK_R_cyr_lc_ucyrillic -11; pos ampersand @MMK_R_cyr_lc_yericyrillic 5; pos ampersand @MMK_R_cyr_lc_zecyrilic -5; pos ampersand @MMK_R_cyr_lc_zhecyrillic -6; pos ampersand @MMK_R_cyr_uc_Checyrillic -30; pos ampersand @MMK_R_cyr_uc_Hardsigncyrillic -60; pos ampersand @MMK_R_cyr_uc_Tecyrillic -60; pos ampersand @MMK_R_cyr_uc_Ucyrillic -69; pos ampersand @MMK_R_cyr_uc_Zecyrillic -22; pos ampersand @MMK_R_cyr_uc_Zhecyrillic 8; pos ampersand @MMK_R_lc_d -12; pos ampersand @MMK_R_lc_n -8; pos ampersand @MMK_R_lc_o -13; pos ampersand @MMK_R_lc_s -10; pos ampersand @MMK_R_lc_t -5; pos ampersand @MMK_R_lc_w -10; pos ampersand @MMK_R_lc_y -11; pos ampersand @MMK_R_uc_j -8; pos ampersand @MMK_R_uc_s -8; pos ampersand @MMK_R_uc_t -60; pos ampersand @MMK_R_uc_u -10; pos ampersand @MMK_R_uc_w -32; pos ampersand @MMK_R_uc_y -70; pos ampersand @MMK_R_uc_z -10; pos at @MMK_R_cyr_lc_checyrillic 6; pos at @MMK_R_cyr_lc_elcyrillic -29; pos at @MMK_R_cyr_lc_gecyrillic -6; pos at @MMK_R_cyr_lc_gheupturncyrillic -6; pos at @MMK_R_cyr_lc_khacyrillic -28; pos at @MMK_R_cyr_lc_ucyrillic -6; pos at @MMK_R_cyr_lc_zecyrilic -5; pos at @MMK_R_cyr_lc_zhecyrillic -23; pos at @MMK_R_cyr_uc_Acyrillic -40; pos at @MMK_R_cyr_uc_Checyrillic -36; pos at @MMK_R_cyr_uc_Elcyrillic -23; pos at @MMK_R_cyr_uc_Hardsigncyrillic -28; pos at @MMK_R_cyr_uc_Khacyrillic -32; pos at @MMK_R_cyr_uc_Tecyrillic -28; pos at @MMK_R_cyr_uc_Ucyrillic -63; pos at @MMK_R_cyr_uc_Zecyrillic -20; pos at @MMK_R_cyr_uc_Zhecyrillic -46; pos at @MMK_R_lc_s -10; pos at @MMK_R_lc_t -10; pos at @MMK_R_lc_w -10; pos at @MMK_R_lc_y -2; pos at @MMK_R_lc_z -10; pos at @MMK_R_uc_a -40; pos at @MMK_R_uc_j -27; pos at @MMK_R_uc_s -10; pos at @MMK_R_uc_t -28; pos at @MMK_R_uc_w -40; pos at @MMK_R_uc_y -70; pos at @MMK_R_uc_z -30; pos braceleft @MMK_R_lc_j 70; pos bracketleft @MMK_R_cyr_lc_checyrillic -6; pos bracketleft @MMK_R_cyr_lc_elcyrillic -12; pos bracketleft @MMK_R_cyr_lc_gecyrillic -12; pos bracketleft @MMK_R_cyr_lc_gheupturncyrillic -4; pos bracketleft @MMK_R_cyr_lc_zecyrilic -12; pos bracketleft @MMK_R_cyr_lc_zhecyrillic -12; pos bracketleft @MMK_R_cyr_uc_Elcyrillic -6; pos bracketleft @MMK_R_cyr_uc_Zecyrillic -6; pos bracketleft @MMK_R_lc_j 48; pos eightinferior @MMK_R_cyr_lc_acyrillic 6; pos eightinferior @MMK_R_cyr_lc_acyrillic.alt01 10; pos eightinferior @MMK_R_cyr_lc_checyrillic -17; pos eightinferior @MMK_R_cyr_lc_elcyrillic 6; pos eightinferior @MMK_R_cyr_lc_gecyrillic -6; pos eightinferior @MMK_R_cyr_lc_khacyrillic -16; pos eightinferior @MMK_R_cyr_lc_ocyrillic 5; pos eightinferior @MMK_R_cyr_lc_ucyrillic -25; pos eightinferior @MMK_R_cyr_lc_zhecyrillic -4; pos eightinferior @MMK_R_cyr_uc_Acyrillic 10; pos eightinferior @MMK_R_cyr_uc_Checyrillic -56; pos eightinferior @MMK_R_cyr_uc_Elcyrillic 12; pos eightinferior @MMK_R_cyr_uc_Hardsigncyrillic -60; pos eightinferior @MMK_R_cyr_uc_Khacyrillic 12; pos eightinferior @MMK_R_cyr_uc_Tecyrillic -60; pos eightinferior @MMK_R_cyr_uc_Ucyrillic -58; pos eightinferior @MMK_R_cyr_uc_Zecyrillic -9; pos eightinferior @MMK_R_lc_a.alt01 10; pos eightinferior @MMK_R_lc_d 2; pos eightinferior @MMK_R_lc_o 5; pos eightinferior @MMK_R_lc_s -6; pos eightinferior @MMK_R_lc_w -25; pos eightinferior @MMK_R_lc_y -25; pos eightinferior @MMK_R_uc_a 10; pos eightinferior @MMK_R_uc_j 4; pos eightinferior @MMK_R_uc_s 2; pos eightinferior @MMK_R_uc_t -60; pos eightinferior @MMK_R_uc_u -5; pos eightinferior @MMK_R_uc_w -40; pos eightinferior @MMK_R_uc_y -82; pos eightinferior @MMK_R_uc_z 1; pos eightsuperior @MMK_R_cyr_lc_acyrillic 10; pos eightsuperior @MMK_R_cyr_lc_acyrillic.alt01 10; pos eightsuperior @MMK_R_cyr_lc_checyrillic 34; pos eightsuperior @MMK_R_cyr_lc_elcyrillic -32; pos eightsuperior @MMK_R_cyr_lc_encyrillic 40; pos eightsuperior @MMK_R_cyr_lc_gecyrillic -3; pos eightsuperior @MMK_R_cyr_lc_gheupturncyrillic 17; pos eightsuperior @MMK_R_cyr_lc_icyrillic 24; pos eightsuperior @MMK_R_cyr_lc_iicyrillic 40; pos eightsuperior @MMK_R_cyr_lc_khacyrillic -6; pos eightsuperior @MMK_R_cyr_lc_ocyrillic 20; pos eightsuperior @MMK_R_cyr_lc_ucyrillic 28; pos eightsuperior @MMK_R_cyr_lc_yericyrillic 37; pos eightsuperior @MMK_R_cyr_lc_zecyrilic 1; pos eightsuperior @MMK_R_cyr_lc_zhecyrillic -6; pos eightsuperior @MMK_R_cyr_uc_Acyrillic -60; pos eightsuperior @MMK_R_cyr_uc_Checyrillic 8; pos eightsuperior @MMK_R_cyr_uc_Elcyrillic -81; pos eightsuperior @MMK_R_cyr_uc_Hardsigncyrillic 10; pos eightsuperior @MMK_R_cyr_uc_Khacyrillic -16; pos eightsuperior @MMK_R_cyr_uc_Ocyrillic 10; pos eightsuperior @MMK_R_cyr_uc_Tecyrillic 10; pos eightsuperior @MMK_R_cyr_uc_Ucyrillic -14; pos eightsuperior @MMK_R_cyr_uc_Zecyrillic -12; pos eightsuperior @MMK_R_cyr_uc_Zhecyrillic -24; pos eightsuperior @MMK_R_inp_period -50; pos eightsuperior @MMK_R_lc_a.alt01 10; pos eightsuperior @MMK_R_lc_d 10; pos eightsuperior @MMK_R_lc_f 8; pos eightsuperior @MMK_R_lc_h 10; pos eightsuperior @MMK_R_lc_i 20; pos eightsuperior @MMK_R_lc_j 40; pos eightsuperior @MMK_R_lc_n 40; pos eightsuperior @MMK_R_lc_o 20; pos eightsuperior @MMK_R_lc_s 10; pos eightsuperior @MMK_R_lc_t 16; pos eightsuperior @MMK_R_lc_u 40; pos eightsuperior @MMK_R_lc_w 10; pos eightsuperior @MMK_R_lc_y 28; pos eightsuperior @MMK_R_lc_z 20; pos eightsuperior @MMK_R_uc_a -60; pos eightsuperior @MMK_R_uc_j -70; pos eightsuperior @MMK_R_uc_o 10; pos eightsuperior @MMK_R_uc_s -10; pos eightsuperior @MMK_R_uc_t 10; pos eightsuperior @MMK_R_uc_z -10; pos eth @MMK_R_inp_foot -42; pos eth @MMK_R_inp_guill 20; pos eth @MMK_R_inp_hyph 20; pos eth @MMK_R_inp_period -34; pos eth @MMK_R_inp_quotel -50; pos eth @MMK_R_inp_quoter -50; pos eth @MMK_R_uc_a -15; pos eth @MMK_R_uc_t -50; pos eth @MMK_R_uc_w -34; pos eth @MMK_R_uc_y -60; pos exclamdown @MMK_R_cyr_lc_khacyrillic -6; pos exclamdown @MMK_R_cyr_uc_Acyrillic 28; pos exclamdown @MMK_R_cyr_uc_Khacyrillic 17; pos exclamdown @MMK_R_cyr_uc_Tecyrillic -12; pos exclamdown @MMK_R_lc_f 24; pos exclamdown @MMK_R_lc_j 24; pos exclamdown @MMK_R_lc_w -8; pos exclamdown @MMK_R_uc_a 28; pos exclamdown @MMK_R_uc_t -4; pos exclamdown @MMK_R_uc_w -18; pos exclamdown @MMK_R_uc_y -36; pos f @MMK_R_inp_foot 96; pos f @MMK_R_inp_guill -10; pos f @MMK_R_inp_guilr -10; pos f @MMK_R_inp_hyph -15; pos f @MMK_R_inp_parenth 63; pos f @MMK_R_inp_period -30; pos f @MMK_R_inp_quotel 62; pos f @MMK_R_inp_quoter 72; pos f @MMK_R_lc_d -5; pos f @MMK_R_lc_f -1; pos f @MMK_R_lc_g -6; pos f @MMK_R_lc_o -5; pos f @MMK_R_lc_s -1; pos f @MMK_R_lc_w -8; pos f @MMK_R_lc_y 10; pos f @MMK_R_lc_z 10; pos f @MMK_R_uc_a -10; pos f @MMK_R_uc_h 60; pos f @MMK_R_uc_j -20; pos f @MMK_R_uc_o 25; pos f @MMK_R_uc_s 40; pos f @MMK_R_uc_t 85; pos f @MMK_R_uc_u 60; pos f @MMK_R_uc_w 80; pos f @MMK_R_uc_y 85; pos f @MMK_R_uc_z 54; pos fiveinferior @MMK_R_cyr_lc_checyrillic -4; pos fiveinferior @MMK_R_cyr_lc_elcyrillic 6; pos fiveinferior @MMK_R_cyr_lc_khacyrillic -12; pos fiveinferior @MMK_R_cyr_lc_ucyrillic -15; pos fiveinferior @MMK_R_cyr_uc_Acyrillic 10; pos fiveinferior @MMK_R_cyr_uc_Checyrillic -30; pos fiveinferior @MMK_R_cyr_uc_Elcyrillic 20; pos fiveinferior @MMK_R_cyr_uc_Hardsigncyrillic -52; pos fiveinferior @MMK_R_cyr_uc_Khacyrillic 10; pos fiveinferior @MMK_R_cyr_uc_Tecyrillic -52; pos fiveinferior @MMK_R_cyr_uc_Ucyrillic -50; pos fiveinferior @MMK_R_cyr_uc_Zecyrillic -12; pos fiveinferior @MMK_R_cyr_uc_Zhecyrillic 4; pos fiveinferior @MMK_R_lc_s 2; pos fiveinferior @MMK_R_lc_t -10; pos fiveinferior @MMK_R_lc_w -10; pos fiveinferior @MMK_R_lc_y -15; pos fiveinferior @MMK_R_uc_a 10; pos fiveinferior @MMK_R_uc_j 12; pos fiveinferior @MMK_R_uc_t -52; pos fiveinferior @MMK_R_uc_w -40; pos fiveinferior @MMK_R_uc_y -80; pos fivesuperior @MMK_R_cyr_lc_acyrillic 10; pos fivesuperior @MMK_R_cyr_lc_checyrillic 37; pos fivesuperior @MMK_R_cyr_lc_elcyrillic -34; pos fivesuperior @MMK_R_cyr_lc_encyrillic 40; pos fivesuperior @MMK_R_cyr_lc_gecyrillic -6; pos fivesuperior @MMK_R_cyr_lc_gheupturncyrillic 17; pos fivesuperior @MMK_R_cyr_lc_icyrillic 24; pos fivesuperior @MMK_R_cyr_lc_iicyrillic 40; pos fivesuperior @MMK_R_cyr_lc_ocyrillic 10; pos fivesuperior @MMK_R_cyr_lc_ucyrillic 30; pos fivesuperior @MMK_R_cyr_lc_yericyrillic 37; pos fivesuperior @MMK_R_cyr_lc_zecyrilic -2; pos fivesuperior @MMK_R_cyr_lc_zhecyrillic -6; pos fivesuperior @MMK_R_cyr_uc_Acyrillic -50; pos fivesuperior @MMK_R_cyr_uc_Checyrillic 11; pos fivesuperior @MMK_R_cyr_uc_Elcyrillic -85; pos fivesuperior @MMK_R_cyr_uc_Hardsigncyrillic 5; pos fivesuperior @MMK_R_cyr_uc_Khacyrillic 6; pos fivesuperior @MMK_R_cyr_uc_Ocyrillic 14; pos fivesuperior @MMK_R_cyr_uc_Tecyrillic 5; pos fivesuperior @MMK_R_cyr_uc_Ucyrillic -2; pos fivesuperior @MMK_R_cyr_uc_Zecyrillic -12; pos fivesuperior @MMK_R_cyr_uc_Zhecyrillic -14; pos fivesuperior @MMK_R_inp_period -50; pos fivesuperior @MMK_R_lc_d 10; pos fivesuperior @MMK_R_lc_f 8; pos fivesuperior @MMK_R_lc_h 10; pos fivesuperior @MMK_R_lc_i 20; pos fivesuperior @MMK_R_lc_j 40; pos fivesuperior @MMK_R_lc_n 40; pos fivesuperior @MMK_R_lc_o 10; pos fivesuperior @MMK_R_lc_s 10; pos fivesuperior @MMK_R_lc_t 18; pos fivesuperior @MMK_R_lc_u 40; pos fivesuperior @MMK_R_lc_w 20; pos fivesuperior @MMK_R_lc_y 30; pos fivesuperior @MMK_R_lc_z 20; pos fivesuperior @MMK_R_uc_a -50; pos fivesuperior @MMK_R_uc_j -70; pos fivesuperior @MMK_R_uc_o 14; pos fivesuperior @MMK_R_uc_s -10; pos fivesuperior @MMK_R_uc_t 5; pos fivesuperior @MMK_R_uc_w 15; pos fivesuperior @MMK_R_uc_z -2; pos fourinferior @MMK_R_cyr_lc_acyrillic 6; pos fourinferior @MMK_R_cyr_lc_acyrillic.alt01 10; pos fourinferior @MMK_R_cyr_lc_checyrillic -10; pos fourinferior @MMK_R_cyr_lc_elcyrillic 9; pos fourinferior @MMK_R_cyr_lc_gecyrillic 4; pos fourinferior @MMK_R_cyr_lc_khacyrillic -8; pos fourinferior @MMK_R_cyr_lc_ocyrillic 6; pos fourinferior @MMK_R_cyr_lc_ucyrillic -15; pos fourinferior @MMK_R_cyr_lc_zecyrilic 6; pos fourinferior @MMK_R_cyr_uc_Acyrillic 10; pos fourinferior @MMK_R_cyr_uc_Checyrillic -37; pos fourinferior @MMK_R_cyr_uc_Elcyrillic 20; pos fourinferior @MMK_R_cyr_uc_Hardsigncyrillic -55; pos fourinferior @MMK_R_cyr_uc_Khacyrillic 10; pos fourinferior @MMK_R_cyr_uc_Tecyrillic -55; pos fourinferior @MMK_R_cyr_uc_Ucyrillic -44; pos fourinferior @MMK_R_cyr_uc_Zecyrillic -6; pos fourinferior @MMK_R_cyr_uc_Zhecyrillic 14; pos fourinferior @MMK_R_inp_period 10; pos fourinferior @MMK_R_lc_a.alt01 10; pos fourinferior @MMK_R_lc_n -10; pos fourinferior @MMK_R_lc_o 2; pos fourinferior @MMK_R_lc_s 4; pos fourinferior @MMK_R_lc_t -10; pos fourinferior @MMK_R_lc_u -8; pos fourinferior @MMK_R_lc_w -25; pos fourinferior @MMK_R_lc_y -15; pos fourinferior @MMK_R_lc_z -10; pos fourinferior @MMK_R_uc_a 10; pos fourinferior @MMK_R_uc_j 4; pos fourinferior @MMK_R_uc_s 2; pos fourinferior @MMK_R_uc_t -55; pos fourinferior @MMK_R_uc_w -50; pos fourinferior @MMK_R_uc_y -70; pos fourinferior @MMK_R_uc_z 4; pos foursuperior @MMK_R_cyr_lc_acyrillic 11; pos foursuperior @MMK_R_cyr_lc_checyrillic 40; pos foursuperior @MMK_R_cyr_lc_elcyrillic -33; pos foursuperior @MMK_R_cyr_lc_encyrillic 30; pos foursuperior @MMK_R_cyr_lc_gheupturncyrillic 14; pos foursuperior @MMK_R_cyr_lc_icyrillic 24; pos foursuperior @MMK_R_cyr_lc_iicyrillic 30; pos foursuperior @MMK_R_cyr_lc_ocyrillic 10; pos foursuperior @MMK_R_cyr_lc_ucyrillic 12; pos foursuperior @MMK_R_cyr_lc_yericyrillic 34; pos foursuperior @MMK_R_cyr_lc_zecyrilic -2; pos foursuperior @MMK_R_cyr_uc_Acyrillic -40; pos foursuperior @MMK_R_cyr_uc_Checyrillic 4; pos foursuperior @MMK_R_cyr_uc_Elcyrillic -73; pos foursuperior @MMK_R_cyr_uc_Hardsigncyrillic 10; pos foursuperior @MMK_R_cyr_uc_Khacyrillic -7; pos foursuperior @MMK_R_cyr_uc_Ocyrillic 10; pos foursuperior @MMK_R_cyr_uc_Tecyrillic 10; pos foursuperior @MMK_R_cyr_uc_Ucyrillic -6; pos foursuperior @MMK_R_cyr_uc_Zecyrillic -6; pos foursuperior @MMK_R_cyr_uc_Zhecyrillic -27; pos foursuperior @MMK_R_inp_period -60; pos foursuperior @MMK_R_lc_d 11; pos foursuperior @MMK_R_lc_i 20; pos foursuperior @MMK_R_lc_j 24; pos foursuperior @MMK_R_lc_n 30; pos foursuperior @MMK_R_lc_o 10; pos foursuperior @MMK_R_lc_s 12; pos foursuperior @MMK_R_lc_t 20; pos foursuperior @MMK_R_lc_u 30; pos foursuperior @MMK_R_lc_w 10; pos foursuperior @MMK_R_lc_y 12; pos foursuperior @MMK_R_lc_z 22; pos foursuperior @MMK_R_uc_a -40; pos foursuperior @MMK_R_uc_j -75; pos foursuperior @MMK_R_uc_o 2; pos foursuperior @MMK_R_uc_s -8; pos foursuperior @MMK_R_uc_t 10; pos foursuperior @MMK_R_uc_w 20; pos foursuperior @MMK_R_uc_z -10; pos germandbls @MMK_R_inp_foot -12; pos germandbls @MMK_R_inp_guill -26; pos germandbls @MMK_R_inp_guilr -18; pos germandbls @MMK_R_inp_hyph -36; pos germandbls @MMK_R_inp_period 16; pos germandbls @MMK_R_inp_quotel -40; pos germandbls @MMK_R_inp_quoter -42; pos germandbls @MMK_R_lc_a.alt01 6; pos germandbls @MMK_R_lc_t -12; pos germandbls @MMK_R_lc_w -22; pos germandbls @MMK_R_lc_y -16; pos germandbls @MMK_R_lc_z -10; pos germandbls @MMK_R_uc_a 8; pos germandbls @MMK_R_uc_o -2; pos germandbls @MMK_R_uc_t -33; pos germandbls @MMK_R_uc_w -37; pos germandbls @MMK_R_uc_y -42; pos germandbls @MMK_R_uc_z -8; pos germandbls.alt01 @MMK_R_inp_foot -10; pos germandbls.alt01 @MMK_R_inp_guill -10; pos germandbls.alt01 @MMK_R_inp_hyph -20; pos germandbls.alt01 @MMK_R_inp_period 26; pos germandbls.alt01 @MMK_R_inp_quotel -12; pos germandbls.alt01 @MMK_R_inp_quoter 8; pos germandbls.alt01 @MMK_R_lc_a.alt01 10; pos germandbls.alt01 @MMK_R_lc_d -1; pos germandbls.alt01 @MMK_R_lc_f 30; pos germandbls.alt01 @MMK_R_lc_g 8; pos germandbls.alt01 @MMK_R_lc_j 20; pos germandbls.alt01 @MMK_R_lc_o -1; pos germandbls.alt01 @MMK_R_lc_s 8; pos germandbls.alt01 @MMK_R_lc_t -6; pos germandbls.alt01 @MMK_R_lc_u -5; pos germandbls.alt01 @MMK_R_lc_w -18; pos germandbls.alt01 @MMK_R_lc_y 10; pos germandbls.alt01 @MMK_R_lc_z 6; pos germandbls.alt01 @MMK_R_uc_a 46; pos germandbls.alt01 @MMK_R_uc_h 27; pos germandbls.alt01 @MMK_R_uc_j 20; pos germandbls.alt01 @MMK_R_uc_o -1; pos germandbls.alt01 @MMK_R_uc_s 10; pos germandbls.alt01 @MMK_R_uc_t -20; pos germandbls.alt01 @MMK_R_uc_u -1; pos germandbls.alt01 @MMK_R_uc_w -20; pos germandbls.alt01 @MMK_R_uc_y -32; pos germandbls.alt01 @MMK_R_uc_z 11; pos nineinferior @MMK_R_cyr_lc_acyrillic 10; pos nineinferior @MMK_R_cyr_lc_acyrillic.alt01 10; pos nineinferior @MMK_R_cyr_lc_checyrillic -17; pos nineinferior @MMK_R_cyr_lc_elcyrillic -8; pos nineinferior @MMK_R_cyr_lc_gecyrillic 4; pos nineinferior @MMK_R_cyr_lc_khacyrillic -28; pos nineinferior @MMK_R_cyr_lc_ocyrillic 10; pos nineinferior @MMK_R_cyr_lc_ucyrillic -20; pos nineinferior @MMK_R_cyr_lc_zhecyrillic -14; pos nineinferior @MMK_R_cyr_uc_Acyrillic -5; pos nineinferior @MMK_R_cyr_uc_Checyrillic -50; pos nineinferior @MMK_R_cyr_uc_Elcyrillic 12; pos nineinferior @MMK_R_cyr_uc_Hardsigncyrillic -60; pos nineinferior @MMK_R_cyr_uc_Khacyrillic -10; pos nineinferior @MMK_R_cyr_uc_Tecyrillic -60; pos nineinferior @MMK_R_cyr_uc_Ucyrillic -68; pos nineinferior @MMK_R_cyr_uc_Zecyrillic -9; pos nineinferior @MMK_R_cyr_uc_Zhecyrillic -6; pos nineinferior @MMK_R_inp_period -10; pos nineinferior @MMK_R_lc_a.alt01 10; pos nineinferior @MMK_R_lc_d 2; pos nineinferior @MMK_R_lc_o 10; pos nineinferior @MMK_R_lc_s -12; pos nineinferior @MMK_R_lc_w -20; pos nineinferior @MMK_R_lc_y -20; pos nineinferior @MMK_R_uc_a -5; pos nineinferior @MMK_R_uc_j 12; pos nineinferior @MMK_R_uc_s 2; pos nineinferior @MMK_R_uc_t -60; pos nineinferior @MMK_R_uc_u -5; pos nineinferior @MMK_R_uc_w -45; pos nineinferior @MMK_R_uc_y -80; pos ninesuperior @MMK_R_cyr_lc_acyrillic.alt01 -5; pos ninesuperior @MMK_R_cyr_lc_checyrillic 42; pos ninesuperior @MMK_R_cyr_lc_elcyrillic -30; pos ninesuperior @MMK_R_cyr_lc_encyrillic 40; pos ninesuperior @MMK_R_cyr_lc_gheupturncyrillic 17; pos ninesuperior @MMK_R_cyr_lc_icyrillic 24; pos ninesuperior @MMK_R_cyr_lc_iicyrillic 40; pos ninesuperior @MMK_R_cyr_lc_khacyrillic -6; pos ninesuperior @MMK_R_cyr_lc_ucyrillic 43; pos ninesuperior @MMK_R_cyr_lc_yericyrillic 37; pos ninesuperior @MMK_R_cyr_lc_zhecyrillic -6; pos ninesuperior @MMK_R_cyr_uc_Acyrillic -70; pos ninesuperior @MMK_R_cyr_uc_Checyrillic 8; pos ninesuperior @MMK_R_cyr_uc_Elcyrillic -81; pos ninesuperior @MMK_R_cyr_uc_Hardsigncyrillic 20; pos ninesuperior @MMK_R_cyr_uc_Khacyrillic -16; pos ninesuperior @MMK_R_cyr_uc_Ocyrillic 10; pos ninesuperior @MMK_R_cyr_uc_Tecyrillic 20; pos ninesuperior @MMK_R_cyr_uc_Ucyrillic -13; pos ninesuperior @MMK_R_cyr_uc_Zecyrillic -6; pos ninesuperior @MMK_R_cyr_uc_Zhecyrillic -26; pos ninesuperior @MMK_R_inp_period -60; pos ninesuperior @MMK_R_lc_a.alt01 -5; pos ninesuperior @MMK_R_lc_f 12; pos ninesuperior @MMK_R_lc_h 10; pos ninesuperior @MMK_R_lc_i 20; pos ninesuperior @MMK_R_lc_j 40; pos ninesuperior @MMK_R_lc_n 40; pos ninesuperior @MMK_R_lc_t 30; pos ninesuperior @MMK_R_lc_u 40; pos ninesuperior @MMK_R_lc_w 30; pos ninesuperior @MMK_R_lc_y 43; pos ninesuperior @MMK_R_lc_z 12; pos ninesuperior @MMK_R_uc_a -70; pos ninesuperior @MMK_R_uc_j -70; pos ninesuperior @MMK_R_uc_o 10; pos ninesuperior @MMK_R_uc_t 20; pos ninesuperior @MMK_R_uc_w 8; pos ninesuperior @MMK_R_uc_z -8; pos oneinferior @MMK_R_cyr_lc_acyrillic -20; pos oneinferior @MMK_R_cyr_lc_checyrillic -27; pos oneinferior @MMK_R_cyr_lc_elcyrillic -6; pos oneinferior @MMK_R_cyr_lc_encyrillic -11; pos oneinferior @MMK_R_cyr_lc_gecyrillic -14; pos oneinferior @MMK_R_cyr_lc_gheupturncyrillic -9; pos oneinferior @MMK_R_cyr_lc_icyrillic -21; pos oneinferior @MMK_R_cyr_lc_iicyrillic -29; pos oneinferior @MMK_R_cyr_lc_ocyrillic -14; pos oneinferior @MMK_R_cyr_lc_tshecyrillic -9; pos oneinferior @MMK_R_cyr_lc_ucyrillic -30; pos oneinferior @MMK_R_cyr_lc_yericyrillic -12; pos oneinferior @MMK_R_cyr_lc_zecyrilic -12; pos oneinferior @MMK_R_cyr_lc_zhecyrillic -9; pos oneinferior @MMK_R_cyr_uc_Acyrillic 20; pos oneinferior @MMK_R_cyr_uc_Checyrillic -83; pos oneinferior @MMK_R_cyr_uc_Hardsigncyrillic -60; pos oneinferior @MMK_R_cyr_uc_Khacyrillic 10; pos oneinferior @MMK_R_cyr_uc_Ocyrillic -20; pos oneinferior @MMK_R_cyr_uc_Tecyrillic -60; pos oneinferior @MMK_R_cyr_uc_Ucyrillic -70; pos oneinferior @MMK_R_cyr_uc_Zecyrillic -22; pos oneinferior @MMK_R_cyr_uc_Zhecyrillic 10; pos oneinferior @MMK_R_lc_d -20; pos oneinferior @MMK_R_lc_f -10; pos oneinferior @MMK_R_lc_i -20; pos oneinferior @MMK_R_lc_n -10; pos oneinferior @MMK_R_lc_s -10; pos oneinferior @MMK_R_lc_t -20; pos oneinferior @MMK_R_lc_u -30; pos oneinferior @MMK_R_lc_w -30; pos oneinferior @MMK_R_lc_y -30; pos oneinferior @MMK_R_lc_z 8; pos oneinferior @MMK_R_uc_a 20; pos oneinferior @MMK_R_uc_o -20; pos oneinferior @MMK_R_uc_t -60; pos oneinferior @MMK_R_uc_u -20; pos oneinferior @MMK_R_uc_w -60; pos oneinferior @MMK_R_uc_y -100; pos oneinferior @MMK_R_uc_z 2; pos onesuperior @MMK_R_cyr_lc_acyrillic 13; pos onesuperior @MMK_R_cyr_lc_checyrillic 14; pos onesuperior @MMK_R_cyr_lc_elcyrillic -52; pos onesuperior @MMK_R_cyr_lc_encyrillic 28; pos onesuperior @MMK_R_cyr_lc_gecyrillic -7; pos onesuperior @MMK_R_cyr_lc_iicyrillic 4; pos onesuperior @MMK_R_cyr_lc_ocyrillic 10; pos onesuperior @MMK_R_cyr_lc_ucyrillic 6; pos onesuperior @MMK_R_cyr_lc_yericyrillic 10; pos onesuperior @MMK_R_cyr_lc_zecyrilic -6; pos onesuperior @MMK_R_cyr_lc_zhecyrillic -9; pos onesuperior @MMK_R_cyr_uc_Acyrillic -40; pos onesuperior @MMK_R_cyr_uc_Checyrillic -9; pos onesuperior @MMK_R_cyr_uc_Elcyrillic -64; pos onesuperior @MMK_R_cyr_uc_Hardsigncyrillic -10; pos onesuperior @MMK_R_cyr_uc_Khacyrillic -20; pos onesuperior @MMK_R_cyr_uc_Ocyrillic 7; pos onesuperior @MMK_R_cyr_uc_Tecyrillic -10; pos onesuperior @MMK_R_cyr_uc_Ucyrillic -33; pos onesuperior @MMK_R_cyr_uc_Zecyrillic -23; pos onesuperior @MMK_R_cyr_uc_Zhecyrillic -46; pos onesuperior @MMK_R_inp_period -50; pos onesuperior @MMK_R_lc_d 13; pos onesuperior @MMK_R_lc_f -2; pos onesuperior @MMK_R_lc_j 10; pos onesuperior @MMK_R_lc_n 28; pos onesuperior @MMK_R_lc_o 10; pos onesuperior @MMK_R_lc_t 8; pos onesuperior @MMK_R_lc_w 10; pos onesuperior @MMK_R_lc_y 2; pos onesuperior @MMK_R_uc_a -40; pos onesuperior @MMK_R_uc_j -90; pos onesuperior @MMK_R_uc_o 1; pos onesuperior @MMK_R_uc_s -20; pos onesuperior @MMK_R_uc_t -10; pos onesuperior @MMK_R_uc_y -12; pos onesuperior @MMK_R_uc_z -20; pos parenleft @MMK_R_cyr_lc_acyrillic -10; pos parenleft @MMK_R_cyr_lc_checyrillic -3; pos parenleft @MMK_R_cyr_lc_elcyrillic -16; pos parenleft @MMK_R_cyr_lc_gecyrillic -9; pos parenleft @MMK_R_cyr_lc_gheupturncyrillic -4; pos parenleft @MMK_R_cyr_lc_ucyrillic 20; pos parenleft @MMK_R_cyr_lc_zecyrilic -12; pos parenleft @MMK_R_cyr_lc_zhecyrillic -9; pos parenleft @MMK_R_cyr_uc_Checyrillic 17; pos parenleft @MMK_R_cyr_uc_Elcyrillic -12; pos parenleft @MMK_R_cyr_uc_Hardsigncyrillic 20; pos parenleft @MMK_R_cyr_uc_Tecyrillic 20; pos parenleft @MMK_R_cyr_uc_Ucyrillic 8; pos parenleft @MMK_R_lc_d -10; pos parenleft @MMK_R_lc_f 10; pos parenleft @MMK_R_lc_g 10; pos parenleft @MMK_R_lc_h 13; pos parenleft @MMK_R_lc_j 30; pos parenleft @MMK_R_lc_w -20; pos parenleft @MMK_R_lc_y 20; pos parenleft @MMK_R_uc_j -2; pos parenleft @MMK_R_uc_t 20; pos parenleft @MMK_R_uc_w 10; pos parenleft @MMK_R_uc_y 20; pos percent @MMK_R_inp_foot -60; pos percent @MMK_R_inp_quotel -60; pos percent @MMK_R_inp_quoter -60; pos perthousand @MMK_R_inp_foot -60; pos perthousand @MMK_R_inp_quotel -60; pos perthousand @MMK_R_inp_quoter -60; pos question @MMK_R_cyr_uc_Acyrillic -20; pos question @MMK_R_cyr_uc_Hardsigncyrillic 8; pos question @MMK_R_cyr_uc_Tecyrillic 20; pos question @MMK_R_cyr_uc_Ucyrillic -8; pos question @MMK_R_cyr_uc_Zhecyrillic -13; pos question @MMK_R_inp_period -140; pos question @MMK_R_inp_quotel 20; pos question @MMK_R_inp_quoter 10; pos question @MMK_R_uc_a -20; pos question @MMK_R_uc_t 20; pos question @MMK_R_uc_w 15; pos question @MMK_R_uc_y 15; pos questiondown @MMK_R_cyr_lc_acyrillic -40; pos questiondown @MMK_R_cyr_lc_acyrillic.alt01 -20; pos questiondown @MMK_R_cyr_lc_icyrillic -20; pos questiondown @MMK_R_cyr_lc_khacyrillic -30; pos questiondown @MMK_R_cyr_lc_ocyrillic -40; pos questiondown @MMK_R_cyr_lc_ucyrillic -18; pos questiondown @MMK_R_cyr_uc_Acyrillic 8; pos questiondown @MMK_R_cyr_uc_Khacyrillic -6; pos questiondown @MMK_R_cyr_uc_Ocyrillic -30; pos questiondown @MMK_R_cyr_uc_Tecyrillic -60; pos questiondown @MMK_R_lc_a.alt01 -20; pos questiondown @MMK_R_lc_d -40; pos questiondown @MMK_R_lc_f 14; pos questiondown @MMK_R_lc_g -8; pos questiondown @MMK_R_lc_h -40; pos questiondown @MMK_R_lc_i -20; pos questiondown @MMK_R_lc_j 6; pos questiondown @MMK_R_lc_n -20; pos questiondown @MMK_R_lc_o -40; pos questiondown @MMK_R_lc_s -30; pos questiondown @MMK_R_lc_t -30; pos questiondown @MMK_R_lc_u -20; pos questiondown @MMK_R_lc_w -40; pos questiondown @MMK_R_lc_y -18; pos questiondown @MMK_R_lc_z -15; pos questiondown @MMK_R_uc_a 8; pos questiondown @MMK_R_uc_j -24; pos questiondown @MMK_R_uc_o -30; pos questiondown @MMK_R_uc_t -60; pos questiondown @MMK_R_uc_u -30; pos questiondown @MMK_R_uc_w -42; pos questiondown @MMK_R_uc_y -71; pos registered @MMK_R_cyr_lc_acyrillic -5; pos registered @MMK_R_cyr_lc_khacyrillic 20; pos registered @MMK_R_cyr_lc_ocyrillic 5; pos registered @MMK_R_cyr_lc_ucyrillic 40; pos registered @MMK_R_cyr_uc_Acyrillic -60; pos registered @MMK_R_cyr_uc_Hardsigncyrillic 8; pos registered @MMK_R_cyr_uc_Khacyrillic -20; pos registered @MMK_R_cyr_uc_Ocyrillic 23; pos registered @MMK_R_cyr_uc_Tecyrillic 14; pos registered @MMK_R_cyr_uc_Ucyrillic -8; pos registered @MMK_R_cyr_uc_Zhecyrillic -25; pos registered @MMK_R_lc_d -5; pos registered @MMK_R_lc_n 30; pos registered @MMK_R_lc_o 5; pos registered @MMK_R_lc_u 10; pos registered @MMK_R_lc_w 40; pos registered @MMK_R_lc_y 40; pos registered @MMK_R_uc_a -60; pos registered @MMK_R_uc_j -10; pos registered @MMK_R_uc_o 8; pos registered @MMK_R_uc_t 14; pos registered @MMK_R_uc_z -5; pos seveninferior @MMK_R_cyr_lc_acyrillic 16; pos seveninferior @MMK_R_cyr_lc_elcyrillic -17; pos seveninferior @MMK_R_cyr_lc_gecyrillic 4; pos seveninferior @MMK_R_cyr_lc_gheupturncyrillic -6; pos seveninferior @MMK_R_cyr_lc_khacyrillic -20; pos seveninferior @MMK_R_cyr_lc_ocyrillic 20; pos seveninferior @MMK_R_cyr_lc_ucyrillic -5; pos seveninferior @MMK_R_cyr_lc_zhecyrillic -10; pos seveninferior @MMK_R_cyr_uc_Checyrillic -19; pos seveninferior @MMK_R_cyr_uc_Hardsigncyrillic -50; pos seveninferior @MMK_R_cyr_uc_Khacyrillic -20; pos seveninferior @MMK_R_cyr_uc_Ocyrillic 15; pos seveninferior @MMK_R_cyr_uc_Tecyrillic -50; pos seveninferior @MMK_R_cyr_uc_Ucyrillic -58; pos seveninferior @MMK_R_cyr_uc_Zecyrillic -17; pos seveninferior @MMK_R_cyr_uc_Zhecyrillic -17; pos seveninferior @MMK_R_inp_period -60; pos seveninferior @MMK_R_lc_d 16; pos seveninferior @MMK_R_lc_o 20; pos seveninferior @MMK_R_lc_s -8; pos seveninferior @MMK_R_lc_w -10; pos seveninferior @MMK_R_lc_y -5; pos seveninferior @MMK_R_uc_j -16; pos seveninferior @MMK_R_uc_o 15; pos seveninferior @MMK_R_uc_s -10; pos seveninferior @MMK_R_uc_t -50; pos seveninferior @MMK_R_uc_u -5; pos seveninferior @MMK_R_uc_w -30; pos seveninferior @MMK_R_uc_y -62; pos seveninferior @MMK_R_uc_z -4; pos sevensuperior @MMK_R_cyr_lc_acyrillic -20; pos sevensuperior @MMK_R_cyr_lc_acyrillic.alt01 -10; pos sevensuperior @MMK_R_cyr_lc_checyrillic 16; pos sevensuperior @MMK_R_cyr_lc_elcyrillic -42; pos sevensuperior @MMK_R_cyr_lc_encyrillic 30; pos sevensuperior @MMK_R_cyr_lc_gecyrillic -21; pos sevensuperior @MMK_R_cyr_lc_gheupturncyrillic 6; pos sevensuperior @MMK_R_cyr_lc_icyrillic 20; pos sevensuperior @MMK_R_cyr_lc_iicyrillic 20; pos sevensuperior @MMK_R_cyr_lc_khacyrillic -14; pos sevensuperior @MMK_R_cyr_lc_ocyrillic -17; pos sevensuperior @MMK_R_cyr_lc_ucyrillic 10; pos sevensuperior @MMK_R_cyr_lc_yericyrillic 26; pos sevensuperior @MMK_R_cyr_lc_zecyrilic -14; pos sevensuperior @MMK_R_cyr_lc_zhecyrillic -14; pos sevensuperior @MMK_R_cyr_uc_Acyrillic -80; pos sevensuperior @MMK_R_cyr_uc_Checyrillic 18; pos sevensuperior @MMK_R_cyr_uc_Elcyrillic -85; pos sevensuperior @MMK_R_cyr_uc_Hardsigncyrillic 12; pos sevensuperior @MMK_R_cyr_uc_Khacyrillic 26; pos sevensuperior @MMK_R_cyr_uc_Ocyrillic -10; pos sevensuperior @MMK_R_cyr_uc_Tecyrillic 12; pos sevensuperior @MMK_R_cyr_uc_Ucyrillic 14; pos sevensuperior @MMK_R_cyr_uc_Zecyrillic -6; pos sevensuperior @MMK_R_inp_period -70; pos sevensuperior @MMK_R_lc_a.alt01 -10; pos sevensuperior @MMK_R_lc_d -20; pos sevensuperior @MMK_R_lc_f -10; pos sevensuperior @MMK_R_lc_g -35; pos sevensuperior @MMK_R_lc_h 20; pos sevensuperior @MMK_R_lc_i 20; pos sevensuperior @MMK_R_lc_j 40; pos sevensuperior @MMK_R_lc_n 30; pos sevensuperior @MMK_R_lc_o -17; pos sevensuperior @MMK_R_lc_s -30; pos sevensuperior @MMK_R_lc_t -1; pos sevensuperior @MMK_R_lc_u 20; pos sevensuperior @MMK_R_lc_w 10; pos sevensuperior @MMK_R_lc_y 10; pos sevensuperior @MMK_R_lc_z -8; pos sevensuperior @MMK_R_uc_a -80; pos sevensuperior @MMK_R_uc_j -70; pos sevensuperior @MMK_R_uc_o -10; pos sevensuperior @MMK_R_uc_s -10; pos sevensuperior @MMK_R_uc_t 12; pos sevensuperior @MMK_R_uc_w 30; pos sevensuperior @MMK_R_uc_y 20; pos sixinferior @MMK_R_cyr_lc_acyrillic -6; pos sixinferior @MMK_R_cyr_lc_acyrillic.alt01 10; pos sixinferior @MMK_R_cyr_lc_checyrillic -27; pos sixinferior @MMK_R_cyr_lc_elcyrillic 9; pos sixinferior @MMK_R_cyr_lc_icyrillic -10; pos sixinferior @MMK_R_cyr_lc_khacyrillic -8; pos sixinferior @MMK_R_cyr_lc_ocyrillic 6; pos sixinferior @MMK_R_cyr_lc_ucyrillic -25; pos sixinferior @MMK_R_cyr_uc_Acyrillic 12; pos sixinferior @MMK_R_cyr_uc_Checyrillic -53; pos sixinferior @MMK_R_cyr_uc_Elcyrillic 26; pos sixinferior @MMK_R_cyr_uc_Hardsigncyrillic -60; pos sixinferior @MMK_R_cyr_uc_Khacyrillic 10; pos sixinferior @MMK_R_cyr_uc_Ocyrillic -10; pos sixinferior @MMK_R_cyr_uc_Tecyrillic -60; pos sixinferior @MMK_R_cyr_uc_Ucyrillic -44; pos sixinferior @MMK_R_cyr_uc_Zecyrillic -12; pos sixinferior @MMK_R_cyr_uc_Zhecyrillic 13; pos sixinferior @MMK_R_lc_a.alt01 10; pos sixinferior @MMK_R_lc_d -8; pos sixinferior @MMK_R_lc_g -10; pos sixinferior @MMK_R_lc_i -10; pos sixinferior @MMK_R_lc_n -10; pos sixinferior @MMK_R_lc_o 2; pos sixinferior @MMK_R_lc_s -6; pos sixinferior @MMK_R_lc_t -25; pos sixinferior @MMK_R_lc_u -8; pos sixinferior @MMK_R_lc_w -30; pos sixinferior @MMK_R_lc_y -25; pos sixinferior @MMK_R_lc_z -10; pos sixinferior @MMK_R_uc_a 12; pos sixinferior @MMK_R_uc_j -2; pos sixinferior @MMK_R_uc_o -10; pos sixinferior @MMK_R_uc_t -60; pos sixinferior @MMK_R_uc_u -10; pos sixinferior @MMK_R_uc_w -50; pos sixinferior @MMK_R_uc_y -72; pos sixinferior @MMK_R_uc_z 2; pos sixsuperior @MMK_R_cyr_lc_acyrillic 10; pos sixsuperior @MMK_R_cyr_lc_checyrillic 43; pos sixsuperior @MMK_R_cyr_lc_elcyrillic -34; pos sixsuperior @MMK_R_cyr_lc_encyrillic 40; pos sixsuperior @MMK_R_cyr_lc_gheupturncyrillic 17; pos sixsuperior @MMK_R_cyr_lc_icyrillic 24; pos sixsuperior @MMK_R_cyr_lc_iicyrillic 40; pos sixsuperior @MMK_R_cyr_lc_ocyrillic 10; pos sixsuperior @MMK_R_cyr_lc_ucyrillic 30; pos sixsuperior @MMK_R_cyr_lc_yericyrillic 34; pos sixsuperior @MMK_R_cyr_lc_zecyrilic 1; pos sixsuperior @MMK_R_cyr_uc_Acyrillic -50; pos sixsuperior @MMK_R_cyr_uc_Checyrillic 4; pos sixsuperior @MMK_R_cyr_uc_Elcyrillic -78; pos sixsuperior @MMK_R_cyr_uc_Hardsigncyrillic 18; pos sixsuperior @MMK_R_cyr_uc_Khacyrillic -12; pos sixsuperior @MMK_R_cyr_uc_Ocyrillic 10; pos sixsuperior @MMK_R_cyr_uc_Tecyrillic 18; pos sixsuperior @MMK_R_cyr_uc_Ucyrillic -9; pos sixsuperior @MMK_R_cyr_uc_Zecyrillic -12; pos sixsuperior @MMK_R_cyr_uc_Zhecyrillic -36; pos sixsuperior @MMK_R_inp_period -50; pos sixsuperior @MMK_R_lc_d 10; pos sixsuperior @MMK_R_lc_f 18; pos sixsuperior @MMK_R_lc_h 20; pos sixsuperior @MMK_R_lc_i 20; pos sixsuperior @MMK_R_lc_j 40; pos sixsuperior @MMK_R_lc_n 40; pos sixsuperior @MMK_R_lc_o 10; pos sixsuperior @MMK_R_lc_s 2; pos sixsuperior @MMK_R_lc_t 12; pos sixsuperior @MMK_R_lc_u 40; pos sixsuperior @MMK_R_lc_w 10; pos sixsuperior @MMK_R_lc_y 30; pos sixsuperior @MMK_R_lc_z 20; pos sixsuperior @MMK_R_uc_a -50; pos sixsuperior @MMK_R_uc_j -70; pos sixsuperior @MMK_R_uc_o 10; pos sixsuperior @MMK_R_uc_s -13; pos sixsuperior @MMK_R_uc_t 18; pos sixsuperior @MMK_R_uc_z -20; pos slash @MMK_R_cyr_lc_acyrillic -50; pos slash @MMK_R_cyr_lc_acyrillic.alt01 -47; pos slash @MMK_R_cyr_lc_checyrillic -6; pos slash @MMK_R_cyr_lc_elcyrillic -76; pos slash @MMK_R_cyr_lc_encyrillic -30; pos slash @MMK_R_cyr_lc_gecyrillic -54; pos slash @MMK_R_cyr_lc_gheupturncyrillic -30; pos slash @MMK_R_cyr_lc_iicyrillic -31; pos slash @MMK_R_cyr_lc_khacyrillic -60; pos slash @MMK_R_cyr_lc_ocyrillic -50; pos slash @MMK_R_cyr_lc_ucyrillic -10; pos slash @MMK_R_cyr_lc_yericyrillic -8; pos slash @MMK_R_cyr_lc_zecyrilic -57; pos slash @MMK_R_cyr_lc_zhecyrillic -52; pos slash @MMK_R_cyr_uc_Acyrillic -50; pos slash @MMK_R_cyr_uc_Checyrillic 16; pos slash @MMK_R_cyr_uc_Elcyrillic -45; pos slash @MMK_R_cyr_uc_Hardsigncyrillic 20; pos slash @MMK_R_cyr_uc_Khacyrillic 8; pos slash @MMK_R_cyr_uc_Ocyrillic -10; pos slash @MMK_R_cyr_uc_Tecyrillic 20; pos slash @MMK_R_cyr_uc_Ucyrillic 17; pos slash @MMK_R_cyr_uc_Zecyrillic -9; pos slash @MMK_R_cyr_uc_Zhecyrillic -13; pos slash @MMK_R_lc_a.alt01 -47; pos slash @MMK_R_lc_d -50; pos slash @MMK_R_lc_f -30; pos slash @MMK_R_lc_g -50; pos slash @MMK_R_lc_n -30; pos slash @MMK_R_lc_o -50; pos slash @MMK_R_lc_s -40; pos slash @MMK_R_lc_t -20; pos slash @MMK_R_lc_u -31; pos slash @MMK_R_lc_w -20; pos slash @MMK_R_lc_y -10; pos slash @MMK_R_lc_z -40; pos slash @MMK_R_uc_a -50; pos slash @MMK_R_uc_j -36; pos slash @MMK_R_uc_o -10; pos slash @MMK_R_uc_s -10; pos slash @MMK_R_uc_t 20; pos slash @MMK_R_uc_w 10; pos slash @MMK_R_uc_y 10; pos slash @MMK_R_uc_z -20; pos threeinferior @MMK_R_cyr_lc_acyrillic 5; pos threeinferior @MMK_R_cyr_lc_checyrillic -13; pos threeinferior @MMK_R_cyr_lc_elcyrillic 2; pos threeinferior @MMK_R_cyr_lc_gecyrillic 2; pos threeinferior @MMK_R_cyr_lc_icyrillic -10; pos threeinferior @MMK_R_cyr_lc_iicyrillic -10; pos threeinferior @MMK_R_cyr_lc_khacyrillic -18; pos threeinferior @MMK_R_cyr_lc_ocyrillic 5; pos threeinferior @MMK_R_cyr_lc_ucyrillic -20; pos threeinferior @MMK_R_cyr_uc_Acyrillic 10; pos threeinferior @MMK_R_cyr_uc_Checyrillic -53; pos threeinferior @MMK_R_cyr_uc_Elcyrillic 6; pos threeinferior @MMK_R_cyr_uc_Hardsigncyrillic -60; pos threeinferior @MMK_R_cyr_uc_Khacyrillic 8; pos threeinferior @MMK_R_cyr_uc_Ocyrillic -10; pos threeinferior @MMK_R_cyr_uc_Tecyrillic -60; pos threeinferior @MMK_R_cyr_uc_Ucyrillic -57; pos threeinferior @MMK_R_cyr_uc_Zecyrillic -17; pos threeinferior @MMK_R_cyr_uc_Zhecyrillic -3; pos threeinferior @MMK_R_lc_d 1; pos threeinferior @MMK_R_lc_i -10; pos threeinferior @MMK_R_lc_n -10; pos threeinferior @MMK_R_lc_o 5; pos threeinferior @MMK_R_lc_s -16; pos threeinferior @MMK_R_lc_t -10; pos threeinferior @MMK_R_lc_u -10; pos threeinferior @MMK_R_lc_w -10; pos threeinferior @MMK_R_lc_y -20; pos threeinferior @MMK_R_lc_z -10; pos threeinferior @MMK_R_uc_a 10; pos threeinferior @MMK_R_uc_j -14; pos threeinferior @MMK_R_uc_o -10; pos threeinferior @MMK_R_uc_s -10; pos threeinferior @MMK_R_uc_t -60; pos threeinferior @MMK_R_uc_w -55; pos threeinferior @MMK_R_uc_y -80; pos threesuperior @MMK_R_cyr_lc_acyrillic 10; pos threesuperior @MMK_R_cyr_lc_checyrillic 34; pos threesuperior @MMK_R_cyr_lc_elcyrillic -34; pos threesuperior @MMK_R_cyr_lc_encyrillic 40; pos threesuperior @MMK_R_cyr_lc_gheupturncyrillic 6; pos threesuperior @MMK_R_cyr_lc_icyrillic 6; pos threesuperior @MMK_R_cyr_lc_iicyrillic 30; pos threesuperior @MMK_R_cyr_lc_ocyrillic 10; pos threesuperior @MMK_R_cyr_lc_ucyrillic 18; pos threesuperior @MMK_R_cyr_lc_yericyrillic 32; pos threesuperior @MMK_R_cyr_lc_zecyrilic -7; pos threesuperior @MMK_R_cyr_lc_zhecyrillic -6; pos threesuperior @MMK_R_cyr_uc_Acyrillic -50; pos threesuperior @MMK_R_cyr_uc_Checyrillic 4; pos threesuperior @MMK_R_cyr_uc_Elcyrillic -85; pos threesuperior @MMK_R_cyr_uc_Hardsigncyrillic 10; pos threesuperior @MMK_R_cyr_uc_Khacyrillic -16; pos threesuperior @MMK_R_cyr_uc_Ocyrillic 4; pos threesuperior @MMK_R_cyr_uc_Tecyrillic 10; pos threesuperior @MMK_R_cyr_uc_Ucyrillic -20; pos threesuperior @MMK_R_cyr_uc_Zecyrillic -14; pos threesuperior @MMK_R_cyr_uc_Zhecyrillic -27; pos threesuperior @MMK_R_inp_period -50; pos threesuperior @MMK_R_lc_f 10; pos threesuperior @MMK_R_lc_h 10; pos threesuperior @MMK_R_lc_j 38; pos threesuperior @MMK_R_lc_n 40; pos threesuperior @MMK_R_lc_o 10; pos threesuperior @MMK_R_lc_t 8; pos threesuperior @MMK_R_lc_u 30; pos threesuperior @MMK_R_lc_w 10; pos threesuperior @MMK_R_lc_y 18; pos threesuperior @MMK_R_lc_z 10; pos threesuperior @MMK_R_uc_a -50; pos threesuperior @MMK_R_uc_j -80; pos threesuperior @MMK_R_uc_s -10; pos threesuperior @MMK_R_uc_t 10; pos threesuperior @MMK_R_uc_y -2; pos threesuperior @MMK_R_uc_z -2; pos trademark @MMK_R_cyr_uc_Acyrillic -65; pos trademark @MMK_R_uc_a -65; pos twoinferior @MMK_R_cyr_lc_acyrillic 3; pos twoinferior @MMK_R_cyr_lc_acyrillic.alt01 10; pos twoinferior @MMK_R_cyr_lc_checyrillic -17; pos twoinferior @MMK_R_cyr_lc_elcyrillic 6; pos twoinferior @MMK_R_cyr_lc_icyrillic -10; pos twoinferior @MMK_R_cyr_lc_khacyrillic -8; pos twoinferior @MMK_R_cyr_lc_ocyrillic 3; pos twoinferior @MMK_R_cyr_lc_ucyrillic -20; pos twoinferior @MMK_R_cyr_uc_Acyrillic 12; pos twoinferior @MMK_R_cyr_uc_Checyrillic -67; pos twoinferior @MMK_R_cyr_uc_Elcyrillic 6; pos twoinferior @MMK_R_cyr_uc_Hardsigncyrillic -60; pos twoinferior @MMK_R_cyr_uc_Khacyrillic 10; pos twoinferior @MMK_R_cyr_uc_Ocyrillic -10; pos twoinferior @MMK_R_cyr_uc_Tecyrillic -60; pos twoinferior @MMK_R_cyr_uc_Ucyrillic -54; pos twoinferior @MMK_R_cyr_uc_Zecyrillic -17; pos twoinferior @MMK_R_cyr_uc_Zhecyrillic 14; pos twoinferior @MMK_R_lc_a.alt01 10; pos twoinferior @MMK_R_lc_d 1; pos twoinferior @MMK_R_lc_g -10; pos twoinferior @MMK_R_lc_i -10; pos twoinferior @MMK_R_lc_o 1; pos twoinferior @MMK_R_lc_s -8; pos twoinferior @MMK_R_lc_t -2; pos twoinferior @MMK_R_lc_u -10; pos twoinferior @MMK_R_lc_w -20; pos twoinferior @MMK_R_lc_y -20; pos twoinferior @MMK_R_uc_a 12; pos twoinferior @MMK_R_uc_j -6; pos twoinferior @MMK_R_uc_o -10; pos twoinferior @MMK_R_uc_t -60; pos twoinferior @MMK_R_uc_w -55; pos twoinferior @MMK_R_uc_y -80; pos twosuperior @MMK_R_cyr_lc_acyrillic 10; pos twosuperior @MMK_R_cyr_lc_acyrillic.alt01 10; pos twosuperior @MMK_R_cyr_lc_checyrillic 30; pos twosuperior @MMK_R_cyr_lc_elcyrillic -37; pos twosuperior @MMK_R_cyr_lc_encyrillic 30; pos twosuperior @MMK_R_cyr_lc_gecyrillic -4; pos twosuperior @MMK_R_cyr_lc_gheupturncyrillic 13; pos twosuperior @MMK_R_cyr_lc_icyrillic 6; pos twosuperior @MMK_R_cyr_lc_iicyrillic 30; pos twosuperior @MMK_R_cyr_lc_khacyrillic -6; pos twosuperior @MMK_R_cyr_lc_ocyrillic 15; pos twosuperior @MMK_R_cyr_lc_ucyrillic 28; pos twosuperior @MMK_R_cyr_lc_yericyrillic 32; pos twosuperior @MMK_R_cyr_lc_zecyrilic -2; pos twosuperior @MMK_R_cyr_lc_zhecyrillic -5; pos twosuperior @MMK_R_cyr_uc_Acyrillic -30; pos twosuperior @MMK_R_cyr_uc_Checyrillic -6; pos twosuperior @MMK_R_cyr_uc_Elcyrillic -79; pos twosuperior @MMK_R_cyr_uc_Khacyrillic -22; pos twosuperior @MMK_R_cyr_uc_Ocyrillic 8; pos twosuperior @MMK_R_cyr_uc_Ucyrillic -20; pos twosuperior @MMK_R_cyr_uc_Zecyrillic -9; pos twosuperior @MMK_R_cyr_uc_Zhecyrillic -26; pos twosuperior @MMK_R_inp_period -50; pos twosuperior @MMK_R_lc_a.alt01 10; pos twosuperior @MMK_R_lc_d 8; pos twosuperior @MMK_R_lc_f 10; pos twosuperior @MMK_R_lc_h 15; pos twosuperior @MMK_R_lc_i 6; pos twosuperior @MMK_R_lc_j 38; pos twosuperior @MMK_R_lc_n 30; pos twosuperior @MMK_R_lc_o 15; pos twosuperior @MMK_R_lc_t 10; pos twosuperior @MMK_R_lc_u 30; pos twosuperior @MMK_R_lc_w 25; pos twosuperior @MMK_R_lc_y 28; pos twosuperior @MMK_R_lc_z 10; pos twosuperior @MMK_R_uc_a -30; pos twosuperior @MMK_R_uc_j -80; pos twosuperior @MMK_R_uc_t 16; pos twosuperior @MMK_R_uc_w 8; pos twosuperior @MMK_R_uc_y -2; pos twosuperior @MMK_R_uc_z -2; pos underscore @MMK_R_cyr_lc_acyrillic -60; pos underscore @MMK_R_cyr_lc_acyrillic.alt01 -30; pos underscore @MMK_R_cyr_lc_checyrillic -134; pos underscore @MMK_R_cyr_lc_elcyrillic -46; pos underscore @MMK_R_cyr_lc_encyrillic -32; pos underscore @MMK_R_cyr_lc_gecyrillic -60; pos underscore @MMK_R_cyr_lc_gheupturncyrillic -40; pos underscore @MMK_R_cyr_lc_icyrillic -49; pos underscore @MMK_R_cyr_lc_iicyrillic -55; pos underscore @MMK_R_cyr_lc_khacyrillic -20; pos underscore @MMK_R_cyr_lc_ocyrillic -60; pos underscore @MMK_R_cyr_lc_tshecyrillic -40; pos underscore @MMK_R_cyr_lc_ucyrillic 28; pos underscore @MMK_R_cyr_lc_yericyrillic -72; pos underscore @MMK_R_cyr_lc_zecyrilic -60; pos underscore @MMK_R_cyr_lc_zhecyrillic -57; pos underscore @MMK_R_cyr_uc_Acyrillic 15; pos underscore @MMK_R_cyr_uc_Checyrillic -144; pos underscore @MMK_R_cyr_uc_Elcyrillic -26; pos underscore @MMK_R_cyr_uc_Hardsigncyrillic -60; pos underscore @MMK_R_cyr_uc_Khacyrillic 20; pos underscore @MMK_R_cyr_uc_Ocyrillic -60; pos underscore @MMK_R_cyr_uc_Tecyrillic -60; pos underscore @MMK_R_cyr_uc_Ucyrillic -74; pos underscore @MMK_R_cyr_uc_Zecyrillic -67; pos underscore @MMK_R_cyr_uc_Zhecyrillic 7; pos underscore @MMK_R_lc_a.alt01 -30; pos underscore @MMK_R_lc_d -60; pos underscore @MMK_R_lc_f 100; pos underscore @MMK_R_lc_h -40; pos underscore @MMK_R_lc_j 88; pos underscore @MMK_R_lc_n -30; pos underscore @MMK_R_lc_o -60; pos underscore @MMK_R_lc_s -55; pos underscore @MMK_R_lc_t -45; pos underscore @MMK_R_lc_u -55; pos underscore @MMK_R_lc_w -50; pos underscore @MMK_R_lc_y 28; pos underscore @MMK_R_lc_z -40; pos underscore @MMK_R_uc_a 15; pos underscore @MMK_R_uc_j -40; pos underscore @MMK_R_uc_o -60; pos underscore @MMK_R_uc_s -40; pos underscore @MMK_R_uc_t -60; pos underscore @MMK_R_uc_u -50; pos underscore @MMK_R_uc_w -50; pos underscore @MMK_R_uc_y -60; pos underscore @MMK_R_uc_z 15; pos uni0402 @MMK_R_cyr_lc_acyrillic 8; pos uni0402 @MMK_R_cyr_lc_acyrillic.alt01 4; pos uni0402 @MMK_R_cyr_lc_checyrillic -5; pos uni0402 @MMK_R_cyr_lc_elcyrillic 8; pos uni0402 @MMK_R_cyr_lc_encyrillic 4; pos uni0402 @MMK_R_cyr_lc_gecyrillic 8; pos uni0402 @MMK_R_cyr_lc_gheupturncyrillic 4; pos uni0402 @MMK_R_cyr_lc_icyrillic 1; pos uni0402 @MMK_R_cyr_lc_iicyrillic 1; pos uni0402 @MMK_R_cyr_lc_khacyrillic 4; pos uni0402 @MMK_R_cyr_lc_ocyrillic 6; pos uni0402 @MMK_R_cyr_lc_tshecyrillic -4; pos uni0402 @MMK_R_cyr_lc_ucyrillic -5; pos uni0402 @MMK_R_cyr_lc_yericyrillic 4; pos uni0402 @MMK_R_cyr_lc_zecyrilic 6; pos uni0402 @MMK_R_cyr_lc_zhecyrillic 3; pos uni0402 @MMK_R_cyr_uc_Acyrillic 8; pos uni0402 @MMK_R_cyr_uc_Checyrillic -57; pos uni0402 @MMK_R_cyr_uc_Elcyrillic 17; pos uni0402 @MMK_R_cyr_uc_Hardsigncyrillic -65; pos uni0402 @MMK_R_cyr_uc_Khacyrillic 1; pos uni0402 @MMK_R_cyr_uc_Tecyrillic -65; pos uni0402 @MMK_R_cyr_uc_Ucyrillic -51; pos uni0402 @MMK_R_cyr_uc_Zecyrillic -12; pos uni0402 @MMK_R_cyr_uc_Zhecyrillic 8; pos uni0402 @MMK_R_inp_colon 4; pos uni0402 @MMK_R_inp_foot -72; pos uni0402 @MMK_R_inp_guill 16; pos uni0402 @MMK_R_inp_guilr 6; pos uni0402 @MMK_R_inp_hyph 3; pos uni0402 @MMK_R_inp_period 4; pos uni0402 @MMK_R_inp_quotel -79; pos uni0402 @MMK_R_inp_quoter -83; pos uni0404 @MMK_R_cyr_lc_acyrillic -18; pos uni0404 @MMK_R_cyr_lc_acyrillic.alt01 -12; pos uni0404 @MMK_R_cyr_lc_elcyrillic -6; pos uni0404 @MMK_R_cyr_lc_encyrillic -6; pos uni0404 @MMK_R_cyr_lc_gecyrillic -2; pos uni0404 @MMK_R_cyr_lc_icyrillic -6; pos uni0404 @MMK_R_cyr_lc_iicyrillic -6; pos uni0404 @MMK_R_cyr_lc_khacyrillic -5; pos uni0404 @MMK_R_cyr_lc_ocyrillic -24; pos uni0404 @MMK_R_cyr_lc_tshecyrillic -6; pos uni0404 @MMK_R_cyr_lc_ucyrillic -6; pos uni0404 @MMK_R_cyr_lc_zecyrilic -11; pos uni0404 @MMK_R_cyr_lc_zhecyrillic -11; pos uni0404 @MMK_R_cyr_uc_Acyrillic -11; pos uni0404 @MMK_R_cyr_uc_Checyrillic -6; pos uni0404 @MMK_R_cyr_uc_Elcyrillic 4; pos uni0404 @MMK_R_cyr_uc_Hardsigncyrillic -6; pos uni0404 @MMK_R_cyr_uc_Khacyrillic -6; pos uni0404 @MMK_R_cyr_uc_Ocyrillic -10; pos uni0404 @MMK_R_cyr_uc_Tecyrillic -6; pos uni0404 @MMK_R_cyr_uc_Ucyrillic -11; pos uni0404 @MMK_R_cyr_uc_Zecyrillic -15; pos uni0404 @MMK_R_cyr_uc_Zhecyrillic -4; pos uni0404 @MMK_R_inp_foot -6; pos uni0404 @MMK_R_inp_guill -12; pos uni0404 @MMK_R_inp_hyph -20; pos uni0404 @MMK_R_inp_period -20; pos uni0404 @MMK_R_inp_quotel -6; pos uni0404 @MMK_R_inp_quoter -14; pos uni0405 @MMK_R_cyr_lc_elcyrillic -4; pos uni0405 @MMK_R_cyr_lc_khacyrillic -5; pos uni0405 @MMK_R_cyr_lc_zecyrilic -5; pos uni0405 @MMK_R_cyr_lc_zhecyrillic -8; pos uni0405 @MMK_R_cyr_uc_Acyrillic -10; pos uni0405 @MMK_R_cyr_uc_Checyrillic -7; pos uni0405 @MMK_R_cyr_uc_Elcyrillic 1; pos uni0405 @MMK_R_cyr_uc_Hardsigncyrillic -12; pos uni0405 @MMK_R_cyr_uc_Ocyrillic 10; pos uni0405 @MMK_R_cyr_uc_Tecyrillic -12; pos uni0405 @MMK_R_cyr_uc_Ucyrillic -14; pos uni0405 @MMK_R_cyr_uc_Zecyrillic -7; pos uni0405 @MMK_R_cyr_uc_Zhecyrillic -3; pos uni0405 @MMK_R_inp_foot -4; pos uni0405 @MMK_R_inp_guill 18; pos uni0405 @MMK_R_inp_period -4; pos uni0405 @MMK_R_inp_quotel -10; pos uni0405 @MMK_R_inp_quoter -10; pos uni0408 @MMK_R_cyr_lc_acyrillic -2; pos uni0408 @MMK_R_cyr_lc_acyrillic.alt01 -5; pos uni0408 @MMK_R_cyr_lc_checyrillic 13; pos uni0408 @MMK_R_cyr_lc_elcyrillic -6; pos uni0408 @MMK_R_cyr_lc_gecyrillic -5; pos uni0408 @MMK_R_cyr_lc_khacyrillic -10; pos uni0408 @MMK_R_cyr_lc_ocyrillic -2; pos uni0408 @MMK_R_cyr_lc_zecyrilic -6; pos uni0408 @MMK_R_cyr_lc_zhecyrillic -9; pos uni0408 @MMK_R_cyr_uc_Acyrillic -25; pos uni0408 @MMK_R_cyr_uc_Elcyrillic -19; pos uni0408 @MMK_R_cyr_uc_Khacyrillic -15; pos uni0408 @MMK_R_cyr_uc_Ucyrillic -3; pos uni0408 @MMK_R_cyr_uc_Zecyrillic -3; pos uni0408 @MMK_R_inp_foot 20; pos uni0408 @MMK_R_inp_guilr -10; pos uni0408 @MMK_R_inp_period -50; pos uni0408 @MMK_R_inp_quotel 10; pos uni0408 @MMK_R_inp_quoter 10; pos uni0411 @MMK_R_cyr_lc_checyrillic -3; pos uni0411 @MMK_R_cyr_lc_khacyrillic -3; pos uni0411 @MMK_R_cyr_lc_tshecyrillic -3; pos uni0411 @MMK_R_cyr_lc_ucyrillic -13; pos uni0411 @MMK_R_cyr_lc_zecyrilic -3; pos uni0411 @MMK_R_cyr_lc_zhecyrillic -5; pos uni0411 @MMK_R_cyr_uc_Acyrillic -5; pos uni0411 @MMK_R_cyr_uc_Checyrillic -32; pos uni0411 @MMK_R_cyr_uc_Elcyrillic 4; pos uni0411 @MMK_R_cyr_uc_Hardsigncyrillic -43; pos uni0411 @MMK_R_cyr_uc_Khacyrillic -16; pos uni0411 @MMK_R_cyr_uc_Tecyrillic -43; pos uni0411 @MMK_R_cyr_uc_Ucyrillic -32; pos uni0411 @MMK_R_cyr_uc_Zecyrillic -12; pos uni0411 @MMK_R_cyr_uc_Zhecyrillic -13; pos uni0411 @MMK_R_inp_foot -39; pos uni0411 @MMK_R_inp_guill 10; pos uni0411 @MMK_R_inp_period -3; pos uni0411 @MMK_R_inp_quotel -30; pos uni0411 @MMK_R_inp_quoter -37; pos uni0420 @MMK_R_cyr_lc_acyrillic -10; pos uni0420 @MMK_R_cyr_lc_acyrillic.alt01 -10; pos uni0420 @MMK_R_cyr_lc_checyrillic 34; pos uni0420 @MMK_R_cyr_lc_elcyrillic -37; pos uni0420 @MMK_R_cyr_lc_encyrillic 11; pos uni0420 @MMK_R_cyr_lc_gheupturncyrillic 6; pos uni0420 @MMK_R_cyr_lc_icyrillic 11; pos uni0420 @MMK_R_cyr_lc_iicyrillic 11; pos uni0420 @MMK_R_cyr_lc_khacyrillic -15; pos uni0420 @MMK_R_cyr_lc_ocyrillic -10; pos uni0420 @MMK_R_cyr_lc_ucyrillic 20; pos uni0420 @MMK_R_cyr_lc_yericyrillic 25; pos uni0420 @MMK_R_cyr_lc_zecyrilic -6; pos uni0420 @MMK_R_cyr_lc_zhecyrillic -7; pos uni0420 @MMK_R_cyr_uc_Acyrillic -45; pos uni0420 @MMK_R_cyr_uc_Elcyrillic -58; pos uni0420 @MMK_R_cyr_uc_Hardsigncyrillic 4; pos uni0420 @MMK_R_cyr_uc_Khacyrillic -15; pos uni0420 @MMK_R_cyr_uc_Ocyrillic 4; pos uni0420 @MMK_R_cyr_uc_Tecyrillic 4; pos uni0420 @MMK_R_cyr_uc_Ucyrillic -16; pos uni0420 @MMK_R_cyr_uc_Zecyrillic -1; pos uni0420 @MMK_R_cyr_uc_Zhecyrillic -16; pos uni0420 @MMK_R_inp_foot 12; pos uni0420 @MMK_R_inp_hyph -10; pos uni0420 @MMK_R_inp_period -130; pos uni0420 @MMK_R_inp_quotel 10; pos uni0420 @MMK_R_inp_quoter -9; pos uni0422 @MMK_R_cyr_lc_acyrillic -27; pos uni0422 @MMK_R_cyr_lc_acyrillic.alt01 -13; pos uni0422 @MMK_R_cyr_lc_checyrillic 14; pos uni0422 @MMK_R_cyr_lc_elcyrillic -48; pos uni0422 @MMK_R_cyr_lc_gecyrillic -25; pos uni0422 @MMK_R_cyr_lc_iicyrillic -10; pos uni0422 @MMK_R_cyr_lc_khacyrillic -30; pos uni0422 @MMK_R_cyr_lc_ocyrillic -27; pos uni0422 @MMK_R_cyr_lc_tshecyrillic 6; pos uni0422 @MMK_R_cyr_lc_ucyrillic 10; pos uni0422 @MMK_R_cyr_lc_yericyrillic 4; pos uni0422 @MMK_R_cyr_lc_zecyrilic -30; pos uni0422 @MMK_R_cyr_lc_zhecyrillic -14; pos uni0422 @MMK_R_cyr_uc_Acyrillic -55; pos uni0422 @MMK_R_cyr_uc_Checyrillic 18; pos uni0422 @MMK_R_cyr_uc_Elcyrillic -47; pos uni0422 @MMK_R_cyr_uc_Hardsigncyrillic 18; pos uni0422 @MMK_R_cyr_uc_Khacyrillic 16; pos uni0422 @MMK_R_cyr_uc_Ocyrillic 3; pos uni0422 @MMK_R_cyr_uc_Tecyrillic 18; pos uni0422 @MMK_R_cyr_uc_Ucyrillic 11; pos uni0422 @MMK_R_cyr_uc_Zecyrillic -3; pos uni0422 @MMK_R_cyr_uc_Zhecyrillic -8; pos uni0422 @MMK_R_inp_colon -8; pos uni0422 @MMK_R_inp_foot 30; pos uni0422 @MMK_R_inp_guill -44; pos uni0422 @MMK_R_inp_guilr -32; pos uni0422 @MMK_R_inp_hyph -50; pos uni0422 @MMK_R_inp_period -80; pos uni0422 @MMK_R_inp_quotel 20; pos uni0422 @MMK_R_inp_quoter 10; pos uni0424 @MMK_R_cyr_lc_acyrillic 21; pos uni0424 @MMK_R_cyr_lc_acyrillic.alt01 6; pos uni0424 @MMK_R_cyr_lc_checyrillic 24; pos uni0424 @MMK_R_cyr_lc_elcyrillic -32; pos uni0424 @MMK_R_cyr_lc_encyrillic 13; pos uni0424 @MMK_R_cyr_lc_gecyrillic 17; pos uni0424 @MMK_R_cyr_lc_gheupturncyrillic 17; pos uni0424 @MMK_R_cyr_lc_icyrillic 17; pos uni0424 @MMK_R_cyr_lc_iicyrillic 13; pos uni0424 @MMK_R_cyr_lc_khacyrillic 6; pos uni0424 @MMK_R_cyr_lc_ocyrillic 21; pos uni0424 @MMK_R_cyr_lc_tshecyrillic 7; pos uni0424 @MMK_R_cyr_lc_ucyrillic 5; pos uni0424 @MMK_R_cyr_lc_yericyrillic 17; pos uni0424 @MMK_R_cyr_lc_zecyrilic 10; pos uni0424 @MMK_R_cyr_lc_zhecyrillic -2; pos uni0424 @MMK_R_cyr_uc_Acyrillic -24; pos uni0424 @MMK_R_cyr_uc_Checyrillic -14; pos uni0424 @MMK_R_cyr_uc_Elcyrillic -14; pos uni0424 @MMK_R_cyr_uc_Hardsigncyrillic -26; pos uni0424 @MMK_R_cyr_uc_Khacyrillic -40; pos uni0424 @MMK_R_cyr_uc_Ocyrillic 20; pos uni0424 @MMK_R_cyr_uc_Tecyrillic -26; pos uni0424 @MMK_R_cyr_uc_Ucyrillic -51; pos uni0424 @MMK_R_cyr_uc_Zecyrillic -13; pos uni0424 @MMK_R_cyr_uc_Zhecyrillic -44; pos uni0424 @MMK_R_inp_colon 13; pos uni0424 @MMK_R_inp_foot -17; pos uni0424 @MMK_R_inp_guill 30; pos uni0424 @MMK_R_inp_guilr 18; pos uni0424 @MMK_R_inp_hyph 33; pos uni0424 @MMK_R_inp_period -39; pos uni0424 @MMK_R_inp_quotel -41; pos uni0424 @MMK_R_inp_quoter -23; pos uni0425 @MMK_R_cyr_lc_acyrillic -17; pos uni0425 @MMK_R_cyr_lc_acyrillic.alt01 -10; pos uni0425 @MMK_R_cyr_lc_checyrillic -33; pos uni0425 @MMK_R_cyr_lc_elcyrillic -6; pos uni0425 @MMK_R_cyr_lc_encyrillic -12; pos uni0425 @MMK_R_cyr_lc_gecyrillic -28; pos uni0425 @MMK_R_cyr_lc_gheupturncyrillic -22; pos uni0425 @MMK_R_cyr_lc_icyrillic -12; pos uni0425 @MMK_R_cyr_lc_iicyrillic -22; pos uni0425 @MMK_R_cyr_lc_khacyrillic -6; pos uni0425 @MMK_R_cyr_lc_ocyrillic -17; pos uni0425 @MMK_R_cyr_lc_ucyrillic -20; pos uni0425 @MMK_R_cyr_lc_yericyrillic -12; pos uni0425 @MMK_R_cyr_lc_zecyrilic -16; pos uni0425 @MMK_R_cyr_lc_zhecyrillic -7; pos uni0425 @MMK_R_cyr_uc_Acyrillic 16; pos uni0425 @MMK_R_cyr_uc_Checyrillic 3; pos uni0425 @MMK_R_cyr_uc_Elcyrillic 4; pos uni0425 @MMK_R_cyr_uc_Hardsigncyrillic 16; pos uni0425 @MMK_R_cyr_uc_Ocyrillic -19; pos uni0425 @MMK_R_cyr_uc_Tecyrillic 16; pos uni0425 @MMK_R_cyr_uc_Ucyrillic 3; pos uni0425 @MMK_R_cyr_uc_Zecyrillic -7; pos uni0425 @MMK_R_cyr_uc_Zhecyrillic 6; pos uni0425 @MMK_R_inp_foot 14; pos uni0425 @MMK_R_inp_guill -44; pos uni0425 @MMK_R_inp_guilr -20; pos uni0425 @MMK_R_inp_hyph -42; pos uni0425 @MMK_R_inp_period 16; pos uni0425 @MMK_R_inp_quotel 11; pos uni0425 @MMK_R_inp_quoter 11; pos uni0434 @MMK_R_cyr_lc_checyrillic 5; pos uni0434 @MMK_R_cyr_lc_elcyrillic -24; pos uni0434 @MMK_R_cyr_lc_gecyrillic -7; pos uni0434 @MMK_R_cyr_lc_khacyrillic -13; pos uni0434 @MMK_R_cyr_lc_zecyrilic -7; pos uni0434 @MMK_R_cyr_lc_zhecyrillic -11; pos uni0434 @MMK_R_cyr_uc_Acyrillic -16; pos uni0434 @MMK_R_cyr_uc_Checyrillic -22; pos uni0434 @MMK_R_cyr_uc_Elcyrillic -6; pos uni0434 @MMK_R_cyr_uc_Hardsigncyrillic -31; pos uni0434 @MMK_R_cyr_uc_Khacyrillic -27; pos uni0434 @MMK_R_cyr_uc_Tecyrillic -31; pos uni0434 @MMK_R_cyr_uc_Ucyrillic -34; pos uni0434 @MMK_R_cyr_uc_Zecyrillic -12; pos uni0434 @MMK_R_cyr_uc_Zhecyrillic -20; pos uni0434 @MMK_R_inp_foot -26; pos uni0434 @MMK_R_inp_guill 4; pos uni0434 @MMK_R_inp_guilr -10; pos uni0434 @MMK_R_inp_hyph 12; pos uni0434 @MMK_R_inp_parenth -3; pos uni0434 @MMK_R_inp_period -29; pos uni0434 @MMK_R_inp_quotel -44; pos uni0434 @MMK_R_inp_quoter -42; pos uni0440 @MMK_R_cyr_lc_acyrillic.alt01 10; pos uni0440 @MMK_R_cyr_lc_checyrillic 1; pos uni0440 @MMK_R_cyr_lc_elcyrillic -15; pos uni0440 @MMK_R_cyr_lc_gecyrillic -3; pos uni0440 @MMK_R_cyr_lc_khacyrillic -18; pos uni0440 @MMK_R_cyr_lc_ucyrillic -5; pos uni0440 @MMK_R_cyr_lc_yericyrillic 4; pos uni0440 @MMK_R_cyr_lc_zecyrilic -7; pos uni0440 @MMK_R_cyr_lc_zhecyrillic -12; pos uni0440 @MMK_R_cyr_uc_Acyrillic -6; pos uni0440 @MMK_R_cyr_uc_Checyrillic -36; pos uni0440 @MMK_R_cyr_uc_Elcyrillic -6; pos uni0440 @MMK_R_cyr_uc_Hardsigncyrillic -37; pos uni0440 @MMK_R_cyr_uc_Khacyrillic -16; pos uni0440 @MMK_R_cyr_uc_Tecyrillic -37; pos uni0440 @MMK_R_cyr_uc_Ucyrillic -48; pos uni0440 @MMK_R_cyr_uc_Zecyrillic -12; pos uni0440 @MMK_R_cyr_uc_Zhecyrillic -18; pos uni0440 @MMK_R_inp_foot -40; pos uni0440 @MMK_R_inp_guill 10; pos uni0440 @MMK_R_inp_guilr -4; pos uni0440 @MMK_R_inp_hyph 20; pos uni0440 @MMK_R_inp_period -20; pos uni0440 @MMK_R_inp_quotel -50; pos uni0440 @MMK_R_inp_quoter -46; pos uni0444 @MMK_R_cyr_lc_acyrillic -2; pos uni0444 @MMK_R_cyr_lc_elcyrillic -19; pos uni0444 @MMK_R_cyr_lc_gecyrillic -3; pos uni0444 @MMK_R_cyr_lc_gheupturncyrillic -5; pos uni0444 @MMK_R_cyr_lc_icyrillic -3; pos uni0444 @MMK_R_cyr_lc_iicyrillic -3; pos uni0444 @MMK_R_cyr_lc_khacyrillic -18; pos uni0444 @MMK_R_cyr_lc_ocyrillic -1; pos uni0444 @MMK_R_cyr_lc_ucyrillic -7; pos uni0444 @MMK_R_cyr_lc_zecyrilic -7; pos uni0444 @MMK_R_cyr_lc_zhecyrillic -15; pos uni0444 @MMK_R_cyr_uc_Acyrillic -16; pos uni0444 @MMK_R_cyr_uc_Checyrillic -36; pos uni0444 @MMK_R_cyr_uc_Elcyrillic -5; pos uni0444 @MMK_R_cyr_uc_Hardsigncyrillic -36; pos uni0444 @MMK_R_cyr_uc_Khacyrillic -24; pos uni0444 @MMK_R_cyr_uc_Tecyrillic -36; pos uni0444 @MMK_R_cyr_uc_Ucyrillic -54; pos uni0444 @MMK_R_cyr_uc_Zecyrillic -14; pos uni0444 @MMK_R_cyr_uc_Zhecyrillic -21; pos uni0444 @MMK_R_inp_foot -40; pos uni0444 @MMK_R_inp_guill 10; pos uni0444 @MMK_R_inp_guilr -4; pos uni0444 @MMK_R_inp_hyph 17; pos uni0444 @MMK_R_inp_period -20; pos uni0444 @MMK_R_inp_quotel -50; pos uni0444 @MMK_R_inp_quoter -46; pos uni0445 @MMK_R_cyr_lc_acyrillic -22; pos uni0445 @MMK_R_cyr_lc_checyrillic 18; pos uni0445 @MMK_R_cyr_lc_elcyrillic -14; pos uni0445 @MMK_R_cyr_lc_gecyrillic -6; pos uni0445 @MMK_R_cyr_lc_ocyrillic -22; pos uni0445 @MMK_R_cyr_lc_yericyrillic 6; pos uni0445 @MMK_R_cyr_lc_zecyrilic -6; pos uni0445 @MMK_R_cyr_lc_zhecyrillic -7; pos uni0445 @MMK_R_cyr_uc_Acyrillic -20; pos uni0445 @MMK_R_cyr_uc_Checyrillic -13; pos uni0445 @MMK_R_cyr_uc_Elcyrillic 7; pos uni0445 @MMK_R_cyr_uc_Hardsigncyrillic -30; pos uni0445 @MMK_R_cyr_uc_Khacyrillic -17; pos uni0445 @MMK_R_cyr_uc_Ocyrillic -5; pos uni0445 @MMK_R_cyr_uc_Tecyrillic -30; pos uni0445 @MMK_R_cyr_uc_Ucyrillic -53; pos uni0445 @MMK_R_cyr_uc_Zecyrillic -17; pos uni0445 @MMK_R_cyr_uc_Zhecyrillic -7; pos uni0445 @MMK_R_inp_foot -10; pos uni0445 @MMK_R_inp_guill -30; pos uni0445 @MMK_R_inp_guilr -28; pos uni0445 @MMK_R_inp_hyph -35; pos uni0445 @MMK_R_inp_period -20; pos uni0445 @MMK_R_inp_quotel -20; pos uni0445 @MMK_R_inp_quoter 4; pos uni0452 @MMK_R_cyr_lc_acyrillic.alt01 -4; pos uni0452 @MMK_R_cyr_lc_elcyrillic -6; pos uni0452 @MMK_R_cyr_lc_gecyrillic -6; pos uni0452 @MMK_R_cyr_lc_khacyrillic -6; pos uni0452 @MMK_R_cyr_lc_zecyrilic -7; pos uni0452 @MMK_R_cyr_lc_zhecyrillic -8; pos uni0452 @MMK_R_cyr_uc_Checyrillic -44; pos uni0452 @MMK_R_cyr_uc_Hardsigncyrillic -36; pos uni0452 @MMK_R_cyr_uc_Khacyrillic -12; pos uni0452 @MMK_R_cyr_uc_Ocyrillic -3; pos uni0452 @MMK_R_cyr_uc_Tecyrillic -36; pos uni0452 @MMK_R_cyr_uc_Ucyrillic -47; pos uni0452 @MMK_R_cyr_uc_Zecyrillic -17; pos uni0452 @MMK_R_cyr_uc_Zhecyrillic -9; pos uni0452 @MMK_R_inp_foot -54; pos uni0452 @MMK_R_inp_hyph 11; pos uni0452 @MMK_R_inp_period -21; pos uni0452 @MMK_R_inp_quotel -36; pos uni0452 @MMK_R_inp_quoter -36; pos uni0454 @MMK_R_cyr_lc_acyrillic -2; pos uni0454 @MMK_R_cyr_lc_acyrillic.alt01 4; pos uni0454 @MMK_R_cyr_lc_checyrillic 20; pos uni0454 @MMK_R_cyr_lc_encyrillic 3; pos uni0454 @MMK_R_cyr_lc_icyrillic 4; pos uni0454 @MMK_R_cyr_lc_iicyrillic 4; pos uni0454 @MMK_R_cyr_lc_ocyrillic -2; pos uni0454 @MMK_R_cyr_lc_yericyrillic 9; pos uni0454 @MMK_R_cyr_uc_Checyrillic -10; pos uni0454 @MMK_R_cyr_uc_Elcyrillic 13; pos uni0454 @MMK_R_cyr_uc_Hardsigncyrillic -29; pos uni0454 @MMK_R_cyr_uc_Khacyrillic -3; pos uni0454 @MMK_R_cyr_uc_Tecyrillic -29; pos uni0454 @MMK_R_cyr_uc_Ucyrillic -47; pos uni0454 @MMK_R_cyr_uc_Zecyrillic -9; pos uni0454 @MMK_R_cyr_uc_Zhecyrillic -3; pos uni0454 @MMK_R_inp_foot -24; pos uni0454 @MMK_R_inp_hyph -4; pos uni0454 @MMK_R_inp_quotel -16; pos uni0454 @MMK_R_inp_quoter -10; pos uni0455 @MMK_R_cyr_lc_checyrillic 12; pos uni0455 @MMK_R_cyr_lc_elcyrillic -5; pos uni0455 @MMK_R_cyr_lc_gheupturncyrillic -4; pos uni0455 @MMK_R_cyr_lc_khacyrillic -20; pos uni0455 @MMK_R_cyr_lc_ucyrillic 1; pos uni0455 @MMK_R_cyr_lc_yericyrillic 6; pos uni0455 @MMK_R_cyr_lc_zecyrilic -2; pos uni0455 @MMK_R_cyr_lc_zhecyrillic -3; pos uni0455 @MMK_R_cyr_uc_Acyrillic 4; pos uni0455 @MMK_R_cyr_uc_Checyrillic -14; pos uni0455 @MMK_R_cyr_uc_Elcyrillic 11; pos uni0455 @MMK_R_cyr_uc_Hardsigncyrillic -30; pos uni0455 @MMK_R_cyr_uc_Khacyrillic -10; pos uni0455 @MMK_R_cyr_uc_Tecyrillic -30; pos uni0455 @MMK_R_cyr_uc_Ucyrillic -52; pos uni0455 @MMK_R_cyr_uc_Zecyrillic -17; pos uni0455 @MMK_R_cyr_uc_Zhecyrillic -14; pos uni0455 @MMK_R_inp_foot -20; pos uni0455 @MMK_R_inp_guill -18; pos uni0455 @MMK_R_inp_guilr -4; pos uni0455 @MMK_R_inp_hyph -20; pos uni0455 @MMK_R_inp_period -10; pos uni0455 @MMK_R_inp_quotel -20; pos uni0455 @MMK_R_inp_quoter -20; pos uni0458 @MMK_R_cyr_lc_elcyrillic -3; pos uni0458 @MMK_R_cyr_lc_yericyrillic 3; pos uni0458 @MMK_R_cyr_lc_zecyrilic -4; pos uni0458 @MMK_R_cyr_uc_Checyrillic -6; pos uni0458 @MMK_R_cyr_uc_Hardsigncyrillic -10; pos uni0458 @MMK_R_cyr_uc_Tecyrillic -10; pos uni0458 @MMK_R_cyr_uc_Ucyrillic -26; pos uni0458 @MMK_R_cyr_uc_Zecyrillic -6; pos uni0458 @MMK_R_inp_foot -20; pos uni0458 @MMK_R_inp_hyph 12; pos uni0458 @MMK_R_inp_period -21; pos uni0458 @MMK_R_inp_quotel -21; pos uni0458 @MMK_R_inp_quoter -23; pos uni0492 @MMK_R_cyr_lc_acyrillic -34; pos uni0492 @MMK_R_cyr_lc_acyrillic.alt01 -29; pos uni0492 @MMK_R_cyr_lc_checyrillic 14; pos uni0492 @MMK_R_cyr_lc_elcyrillic -48; pos uni0492 @MMK_R_cyr_lc_gecyrillic -27; pos uni0492 @MMK_R_cyr_lc_gheupturncyrillic -8; pos uni0492 @MMK_R_cyr_lc_iicyrillic -6; pos uni0492 @MMK_R_cyr_lc_khacyrillic -18; pos uni0492 @MMK_R_cyr_lc_ocyrillic -39; pos uni0492 @MMK_R_cyr_lc_tshecyrillic 6; pos uni0492 @MMK_R_cyr_lc_ucyrillic 6; pos uni0492 @MMK_R_cyr_lc_yericyrillic 4; pos uni0492 @MMK_R_cyr_lc_zecyrilic -23; pos uni0492 @MMK_R_cyr_lc_zhecyrillic -20; pos uni0492 @MMK_R_cyr_uc_Acyrillic -58; pos uni0492 @MMK_R_cyr_uc_Checyrillic 18; pos uni0492 @MMK_R_cyr_uc_Elcyrillic -49; pos uni0492 @MMK_R_cyr_uc_Hardsigncyrillic 16; pos uni0492 @MMK_R_cyr_uc_Khacyrillic 8; pos uni0492 @MMK_R_cyr_uc_Ocyrillic 3; pos uni0492 @MMK_R_cyr_uc_Tecyrillic 16; pos uni0492 @MMK_R_cyr_uc_Ucyrillic 11; pos uni0492 @MMK_R_cyr_uc_Zecyrillic -3; pos uni0492 @MMK_R_inp_colon -4; pos uni0492 @MMK_R_inp_foot 30; pos uni0492 @MMK_R_inp_guill -44; pos uni0492 @MMK_R_inp_guilr -32; pos uni0492 @MMK_R_inp_hyph -42; pos uni0492 @MMK_R_inp_period -97; pos uni0492 @MMK_R_inp_quotel 20; pos uni0492 @MMK_R_inp_quoter 10; pos uni0493 @MMK_R_cyr_lc_acyrillic -18; pos uni0493 @MMK_R_cyr_lc_acyrillic.alt01 -6; pos uni0493 @MMK_R_cyr_lc_checyrillic 31; pos uni0493 @MMK_R_cyr_lc_elcyrillic -43; pos uni0493 @MMK_R_cyr_lc_gecyrillic -12; pos uni0493 @MMK_R_cyr_lc_khacyrillic -12; pos uni0493 @MMK_R_cyr_lc_ocyrillic -18; pos uni0493 @MMK_R_cyr_lc_ucyrillic 20; pos uni0493 @MMK_R_cyr_lc_yericyrillic 7; pos uni0493 @MMK_R_cyr_lc_zecyrilic -11; pos uni0493 @MMK_R_cyr_lc_zhecyrillic -9; pos uni0493 @MMK_R_cyr_uc_Acyrillic -30; pos uni0493 @MMK_R_cyr_uc_Checyrillic 3; pos uni0493 @MMK_R_cyr_uc_Elcyrillic -41; pos uni0493 @MMK_R_cyr_uc_Khacyrillic -37; pos uni0493 @MMK_R_cyr_uc_Ocyrillic 13; pos uni0493 @MMK_R_cyr_uc_Ucyrillic -40; pos uni0493 @MMK_R_cyr_uc_Zecyrillic -13; pos uni0493 @MMK_R_cyr_uc_Zhecyrillic -23; pos uni0493 @MMK_R_inp_colon -5; pos uni0493 @MMK_R_inp_foot 4; pos uni0493 @MMK_R_inp_guill -12; pos uni0493 @MMK_R_inp_guilr -6; pos uni0493 @MMK_R_inp_period -101; pos uni0493 @MMK_R_inp_quotel 8; pos uni0493 @MMK_R_inp_quoter 8; pos uni0494 @MMK_R_cyr_lc_acyrillic 8; pos uni0494 @MMK_R_cyr_lc_acyrillic.alt01 8; pos uni0494 @MMK_R_cyr_lc_checyrillic -5; pos uni0494 @MMK_R_cyr_lc_elcyrillic 8; pos uni0494 @MMK_R_cyr_lc_gecyrillic 8; pos uni0494 @MMK_R_cyr_lc_icyrillic -3; pos uni0494 @MMK_R_cyr_lc_iicyrillic -3; pos uni0494 @MMK_R_cyr_lc_khacyrillic 4; pos uni0494 @MMK_R_cyr_lc_ocyrillic 6; pos uni0494 @MMK_R_cyr_lc_tshecyrillic -9; pos uni0494 @MMK_R_cyr_lc_ucyrillic -5; pos uni0494 @MMK_R_cyr_lc_zecyrilic 6; pos uni0494 @MMK_R_cyr_lc_zhecyrillic 6; pos uni0494 @MMK_R_cyr_uc_Acyrillic 8; pos uni0494 @MMK_R_cyr_uc_Checyrillic -43; pos uni0494 @MMK_R_cyr_uc_Elcyrillic 8; pos uni0494 @MMK_R_cyr_uc_Hardsigncyrillic -50; pos uni0494 @MMK_R_cyr_uc_Khacyrillic -2; pos uni0494 @MMK_R_cyr_uc_Ocyrillic -8; pos uni0494 @MMK_R_cyr_uc_Tecyrillic -50; pos uni0494 @MMK_R_cyr_uc_Ucyrillic -38; pos uni0494 @MMK_R_cyr_uc_Zecyrillic -14; pos uni0494 @MMK_R_cyr_uc_Zhecyrillic 8; pos uni0494 @MMK_R_inp_colon 4; pos uni0494 @MMK_R_inp_foot -57; pos uni0494 @MMK_R_inp_guill 10; pos uni0494 @MMK_R_inp_guilr 6; pos uni0494 @MMK_R_inp_hyph -6; pos uni0494 @MMK_R_inp_period 4; pos uni0494 @MMK_R_inp_quotel -52; pos uni0494 @MMK_R_inp_quoter -56; pos uni0495 @MMK_R_cyr_lc_acyrillic -3; pos uni0495 @MMK_R_cyr_lc_gecyrillic -4; pos uni0495 @MMK_R_cyr_lc_khacyrillic -6; pos uni0495 @MMK_R_cyr_lc_ocyrillic -4; pos uni0495 @MMK_R_cyr_lc_tshecyrillic -5; pos uni0495 @MMK_R_cyr_lc_ucyrillic -4; pos uni0495 @MMK_R_cyr_lc_zecyrilic -5; pos uni0495 @MMK_R_cyr_lc_zhecyrillic -4; pos uni0495 @MMK_R_cyr_uc_Checyrillic -44; pos uni0495 @MMK_R_cyr_uc_Elcyrillic 10; pos uni0495 @MMK_R_cyr_uc_Hardsigncyrillic -30; pos uni0495 @MMK_R_cyr_uc_Ocyrillic -6; pos uni0495 @MMK_R_cyr_uc_Tecyrillic -30; pos uni0495 @MMK_R_cyr_uc_Ucyrillic -40; pos uni0495 @MMK_R_cyr_uc_Zecyrillic -16; pos uni0495 @MMK_R_inp_foot -47; pos uni0495 @MMK_R_inp_hyph -6; pos uni0495 @MMK_R_inp_parenth 9; pos uni0495 @MMK_R_inp_period 12; pos uni0495 @MMK_R_inp_quotel -26; pos uni0495 @MMK_R_inp_quoter -26; pos uni0497 @MMK_R_cyr_lc_acyrillic -12; pos uni0497 @MMK_R_cyr_lc_acyrillic.alt01 -6; pos uni0497 @MMK_R_cyr_lc_checyrillic 13; pos uni0497 @MMK_R_cyr_lc_elcyrillic -14; pos uni0497 @MMK_R_cyr_lc_gecyrillic -8; pos uni0497 @MMK_R_cyr_lc_khacyrillic -7; pos uni0497 @MMK_R_cyr_lc_ocyrillic -12; pos uni0497 @MMK_R_cyr_lc_ucyrillic -3; pos uni0497 @MMK_R_cyr_lc_zecyrilic -9; pos uni0497 @MMK_R_cyr_lc_zhecyrillic -13; pos uni0497 @MMK_R_cyr_uc_Checyrillic -17; pos uni0497 @MMK_R_cyr_uc_Elcyrillic 4; pos uni0497 @MMK_R_cyr_uc_Hardsigncyrillic -23; pos uni0497 @MMK_R_cyr_uc_Ocyrillic -9; pos uni0497 @MMK_R_cyr_uc_Tecyrillic -23; pos uni0497 @MMK_R_cyr_uc_Ucyrillic -54; pos uni0497 @MMK_R_cyr_uc_Zecyrillic -19; pos uni0497 @MMK_R_cyr_uc_Zhecyrillic 4; pos uni0497 @MMK_R_inp_colon -14; pos uni0497 @MMK_R_inp_foot -20; pos uni0497 @MMK_R_inp_guill -23; pos uni0497 @MMK_R_inp_guilr -14; pos uni0497 @MMK_R_inp_hyph -41; pos uni0497 @MMK_R_inp_period -8; pos uni0497 @MMK_R_inp_quotel -20; pos uni0497 @MMK_R_inp_quoter -6; pos uni049B @MMK_R_cyr_lc_acyrillic -4; pos uni049B @MMK_R_cyr_lc_acyrillic.alt01 3; pos uni049B @MMK_R_cyr_lc_checyrillic 17; pos uni049B @MMK_R_cyr_lc_gecyrillic -4; pos uni049B @MMK_R_cyr_lc_khacyrillic -3; pos uni049B @MMK_R_cyr_lc_ocyrillic -4; pos uni049B @MMK_R_cyr_lc_yericyrillic 7; pos uni049B @MMK_R_cyr_uc_Acyrillic 6; pos uni049B @MMK_R_cyr_uc_Checyrillic -24; pos uni049B @MMK_R_cyr_uc_Elcyrillic 21; pos uni049B @MMK_R_cyr_uc_Hardsigncyrillic -29; pos uni049B @MMK_R_cyr_uc_Khacyrillic 14; pos uni049B @MMK_R_cyr_uc_Ocyrillic -4; pos uni049B @MMK_R_cyr_uc_Tecyrillic -29; pos uni049B @MMK_R_cyr_uc_Ucyrillic -50; pos uni049B @MMK_R_cyr_uc_Zecyrillic -9; pos uni049B @MMK_R_cyr_uc_Zhecyrillic 18; pos uni049B @MMK_R_inp_colon 4; pos uni049B @MMK_R_inp_foot -18; pos uni049B @MMK_R_inp_guill -17; pos uni049B @MMK_R_inp_hyph -37; pos uni049B @MMK_R_inp_period 8; pos uni049B @MMK_R_inp_quotel -17; pos uni049B @MMK_R_inp_quoter -5; pos uni04AE @MMK_R_cyr_lc_acyrillic -65; pos uni04AE @MMK_R_cyr_lc_acyrillic.alt01 -60; pos uni04AE @MMK_R_cyr_lc_checyrillic -29; pos uni04AE @MMK_R_cyr_lc_elcyrillic -70; pos uni04AE @MMK_R_cyr_lc_encyrillic -30; pos uni04AE @MMK_R_cyr_lc_gecyrillic -68; pos uni04AE @MMK_R_cyr_lc_gheupturncyrillic -30; pos uni04AE @MMK_R_cyr_lc_icyrillic -14; pos uni04AE @MMK_R_cyr_lc_iicyrillic -24; pos uni04AE @MMK_R_cyr_lc_khacyrillic -50; pos uni04AE @MMK_R_cyr_lc_ocyrillic -65; pos uni04AE @MMK_R_cyr_lc_ucyrillic -5; pos uni04AE @MMK_R_cyr_lc_yericyrillic -26; pos uni04AE @MMK_R_cyr_lc_zecyrilic -62; pos uni04AE @MMK_R_cyr_lc_zhecyrillic -62; pos uni04AE @MMK_R_cyr_uc_Acyrillic -55; pos uni04AE @MMK_R_cyr_uc_Checyrillic 6; pos uni04AE @MMK_R_cyr_uc_Elcyrillic -56; pos uni04AE @MMK_R_cyr_uc_Hardsigncyrillic 17; pos uni04AE @MMK_R_cyr_uc_Ocyrillic -32; pos uni04AE @MMK_R_cyr_uc_Tecyrillic 17; pos uni04AE @MMK_R_cyr_uc_Ucyrillic 2; pos uni04AE @MMK_R_cyr_uc_Zecyrillic -7; pos uni04AE @MMK_R_cyr_uc_Zhecyrillic -8; pos uni04AE @MMK_R_inp_colon -30; pos uni04AE @MMK_R_inp_foot 20; pos uni04AE @MMK_R_inp_guill -74; pos uni04AE @MMK_R_inp_guilr -44; pos uni04AE @MMK_R_inp_hyph -50; pos uni04AE @MMK_R_inp_period -60; pos uni04AE @MMK_R_inp_quotel 20; pos uni04AE @MMK_R_inp_quoter 18; pos uni04AF @MMK_R_cyr_lc_acyrillic -6; pos uni04AF @MMK_R_cyr_lc_acyrillic.alt01 -5; pos uni04AF @MMK_R_cyr_lc_checyrillic 41; pos uni04AF @MMK_R_cyr_lc_elcyrillic -32; pos uni04AF @MMK_R_cyr_lc_encyrillic 6; pos uni04AF @MMK_R_cyr_lc_gecyrillic -7; pos uni04AF @MMK_R_cyr_lc_icyrillic 6; pos uni04AF @MMK_R_cyr_lc_iicyrillic 6; pos uni04AF @MMK_R_cyr_lc_khacyrillic -6; pos uni04AF @MMK_R_cyr_lc_ocyrillic -4; pos uni04AF @MMK_R_cyr_lc_ucyrillic 29; pos uni04AF @MMK_R_cyr_lc_yericyrillic 13; pos uni04AF @MMK_R_cyr_lc_zecyrilic -11; pos uni04AF @MMK_R_cyr_lc_zhecyrillic -7; pos uni04AF @MMK_R_cyr_uc_Acyrillic -17; pos uni04AF @MMK_R_cyr_uc_Checyrillic -6; pos uni04AF @MMK_R_cyr_uc_Elcyrillic -26; pos uni04AF @MMK_R_cyr_uc_Hardsigncyrillic 3; pos uni04AF @MMK_R_cyr_uc_Khacyrillic -26; pos uni04AF @MMK_R_cyr_uc_Ocyrillic 20; pos uni04AF @MMK_R_cyr_uc_Tecyrillic 3; pos uni04AF @MMK_R_cyr_uc_Ucyrillic -39; pos uni04AF @MMK_R_cyr_uc_Zecyrillic -7; pos uni04AF @MMK_R_cyr_uc_Zhecyrillic -32; pos uni04AF @MMK_R_inp_foot 21; pos uni04AF @MMK_R_inp_guill -6; pos uni04AF @MMK_R_inp_guilr -2; pos uni04AF @MMK_R_inp_hyph -10; pos uni04AF @MMK_R_inp_period -60; pos uni04AF @MMK_R_inp_quotel 31; pos uni04AF @MMK_R_inp_quoter 34; pos uni04B0 @MMK_R_cyr_lc_acyrillic -50; pos uni04B0 @MMK_R_cyr_lc_acyrillic.alt01 -33; pos uni04B0 @MMK_R_cyr_lc_checyrillic -24; pos uni04B0 @MMK_R_cyr_lc_elcyrillic -67; pos uni04B0 @MMK_R_cyr_lc_encyrillic -30; pos uni04B0 @MMK_R_cyr_lc_gecyrillic -47; pos uni04B0 @MMK_R_cyr_lc_gheupturncyrillic -30; pos uni04B0 @MMK_R_cyr_lc_icyrillic -14; pos uni04B0 @MMK_R_cyr_lc_iicyrillic -24; pos uni04B0 @MMK_R_cyr_lc_khacyrillic -50; pos uni04B0 @MMK_R_cyr_lc_ocyrillic -50; pos uni04B0 @MMK_R_cyr_lc_ucyrillic -5; pos uni04B0 @MMK_R_cyr_lc_yericyrillic -26; pos uni04B0 @MMK_R_cyr_lc_zecyrilic -47; pos uni04B0 @MMK_R_cyr_lc_zhecyrillic -52; pos uni04B0 @MMK_R_cyr_uc_Acyrillic -55; pos uni04B0 @MMK_R_cyr_uc_Checyrillic 6; pos uni04B0 @MMK_R_cyr_uc_Elcyrillic -56; pos uni04B0 @MMK_R_cyr_uc_Hardsigncyrillic 11; pos uni04B0 @MMK_R_cyr_uc_Ocyrillic -31; pos uni04B0 @MMK_R_cyr_uc_Tecyrillic 17; pos uni04B0 @MMK_R_cyr_uc_Ucyrillic 2; pos uni04B0 @MMK_R_cyr_uc_Zecyrillic -7; pos uni04B0 @MMK_R_cyr_uc_Zhecyrillic -8; pos uni04B0 @MMK_R_inp_colon -30; pos uni04B0 @MMK_R_inp_foot 20; pos uni04B0 @MMK_R_inp_guill -31; pos uni04B0 @MMK_R_inp_guilr -44; pos uni04B0 @MMK_R_inp_hyph -42; pos uni04B0 @MMK_R_inp_period -60; pos uni04B0 @MMK_R_inp_quotel 20; pos uni04B0 @MMK_R_inp_quoter 18; pos uni04B1 @MMK_R_cyr_lc_acyrillic.alt01 -5; pos uni04B1 @MMK_R_cyr_lc_checyrillic 41; pos uni04B1 @MMK_R_cyr_lc_elcyrillic -36; pos uni04B1 @MMK_R_cyr_lc_encyrillic 6; pos uni04B1 @MMK_R_cyr_lc_gecyrillic -7; pos uni04B1 @MMK_R_cyr_lc_icyrillic 6; pos uni04B1 @MMK_R_cyr_lc_iicyrillic 6; pos uni04B1 @MMK_R_cyr_lc_khacyrillic -6; pos uni04B1 @MMK_R_cyr_lc_ocyrillic -8; pos uni04B1 @MMK_R_cyr_lc_ucyrillic 29; pos uni04B1 @MMK_R_cyr_lc_yericyrillic 13; pos uni04B1 @MMK_R_cyr_lc_zecyrilic -11; pos uni04B1 @MMK_R_cyr_lc_zhecyrillic -13; pos uni04B1 @MMK_R_cyr_uc_Acyrillic -15; pos uni04B1 @MMK_R_cyr_uc_Checyrillic -6; pos uni04B1 @MMK_R_cyr_uc_Elcyrillic -26; pos uni04B1 @MMK_R_cyr_uc_Hardsigncyrillic 3; pos uni04B1 @MMK_R_cyr_uc_Khacyrillic -26; pos uni04B1 @MMK_R_cyr_uc_Ocyrillic 20; pos uni04B1 @MMK_R_cyr_uc_Tecyrillic 3; pos uni04B1 @MMK_R_cyr_uc_Ucyrillic -39; pos uni04B1 @MMK_R_cyr_uc_Zecyrillic -7; pos uni04B1 @MMK_R_cyr_uc_Zhecyrillic -27; pos uni04B1 @MMK_R_inp_foot 21; pos uni04B1 @MMK_R_inp_guill -6; pos uni04B1 @MMK_R_inp_guilr -2; pos uni04B1 @MMK_R_inp_hyph -10; pos uni04B1 @MMK_R_inp_period -37; pos uni04B1 @MMK_R_inp_quotel 21; pos uni04B1 @MMK_R_inp_quoter 18; pos uni04B2 @MMK_R_cyr_lc_acyrillic -27; pos uni04B2 @MMK_R_cyr_lc_acyrillic.alt01 -9; pos uni04B2 @MMK_R_cyr_lc_checyrillic -45; pos uni04B2 @MMK_R_cyr_lc_elcyrillic 6; pos uni04B2 @MMK_R_cyr_lc_encyrillic -12; pos uni04B2 @MMK_R_cyr_lc_gecyrillic -24; pos uni04B2 @MMK_R_cyr_lc_gheupturncyrillic -16; pos uni04B2 @MMK_R_cyr_lc_icyrillic -13; pos uni04B2 @MMK_R_cyr_lc_iicyrillic -17; pos uni04B2 @MMK_R_cyr_lc_khacyrillic -2; pos uni04B2 @MMK_R_cyr_lc_ocyrillic -29; pos uni04B2 @MMK_R_cyr_lc_ucyrillic 25; pos uni04B2 @MMK_R_cyr_lc_yericyrillic -17; pos uni04B2 @MMK_R_cyr_lc_zecyrilic -11; pos uni04B2 @MMK_R_cyr_lc_zhecyrillic -6; pos uni04B2 @MMK_R_cyr_uc_Acyrillic 20; pos uni04B2 @MMK_R_cyr_uc_Checyrillic -11; pos uni04B2 @MMK_R_cyr_uc_Elcyrillic 8; pos uni04B2 @MMK_R_cyr_uc_Khacyrillic 6; pos uni04B2 @MMK_R_cyr_uc_Ocyrillic -33; pos uni04B2 @MMK_R_cyr_uc_Ucyrillic -11; pos uni04B2 @MMK_R_cyr_uc_Zecyrillic -14; pos uni04B2 @MMK_R_cyr_uc_Zhecyrillic 17; pos uni04B2 @MMK_R_inp_colon 8; pos uni04B2 @MMK_R_inp_foot -2; pos uni04B2 @MMK_R_inp_guill -57; pos uni04B2 @MMK_R_inp_guilr -20; pos uni04B2 @MMK_R_inp_hyph -62; pos uni04B2 @MMK_R_inp_parenth 4; pos uni04B2 @MMK_R_inp_period 15; pos uni04B2 @MMK_R_inp_quotel -18; pos uni04B2 @MMK_R_inp_quoter -15; pos uni04B3 @MMK_R_cyr_lc_acyrillic -16; pos uni04B3 @MMK_R_cyr_lc_checyrillic 18; pos uni04B3 @MMK_R_cyr_lc_elcyrillic -14; pos uni04B3 @MMK_R_cyr_lc_gecyrillic -7; pos uni04B3 @MMK_R_cyr_lc_ocyrillic -16; pos uni04B3 @MMK_R_cyr_lc_yericyrillic 7; pos uni04B3 @MMK_R_cyr_lc_zecyrilic -6; pos uni04B3 @MMK_R_cyr_lc_zhecyrillic -7; pos uni04B3 @MMK_R_cyr_uc_Acyrillic -6; pos uni04B3 @MMK_R_cyr_uc_Checyrillic -13; pos uni04B3 @MMK_R_cyr_uc_Elcyrillic 7; pos uni04B3 @MMK_R_cyr_uc_Hardsigncyrillic -24; pos uni04B3 @MMK_R_cyr_uc_Khacyrillic -17; pos uni04B3 @MMK_R_cyr_uc_Ocyrillic -5; pos uni04B3 @MMK_R_cyr_uc_Tecyrillic -24; pos uni04B3 @MMK_R_cyr_uc_Ucyrillic -53; pos uni04B3 @MMK_R_cyr_uc_Zecyrillic -17; pos uni04B3 @MMK_R_cyr_uc_Zhecyrillic -7; pos uni04B3 @MMK_R_inp_colon -11; pos uni04B3 @MMK_R_inp_foot -10; pos uni04B3 @MMK_R_inp_guill -30; pos uni04B3 @MMK_R_inp_guilr -12; pos uni04B3 @MMK_R_inp_hyph -15; pos uni04B3 @MMK_R_inp_period -15; pos uni04B3 @MMK_R_inp_quotel -14; pos uni04B3 @MMK_R_inp_quoter 4; pos uni04CF @MMK_R_cyr_lc_acyrillic -6; pos uni04CF @MMK_R_cyr_lc_ocyrillic -6; pos uni04CF @MMK_R_cyr_lc_zhecyrillic -4; pos uni04CF @MMK_R_cyr_uc_Checyrillic -9; pos uni04CF @MMK_R_cyr_uc_Ucyrillic -12; pos uni04CF @MMK_R_cyr_uc_Zecyrillic -6; pos uni04CF @MMK_R_cyr_uc_Zhecyrillic 6; pos uni04CF @MMK_R_inp_foot -17; pos uni04CF @MMK_R_inp_guill -6; pos uni04CF @MMK_R_inp_hyph -9; pos uni04CF @MMK_R_inp_parenth -6; pos uni04CF @MMK_R_inp_quotel -14; pos uni04CF @MMK_R_inp_quoter -14; pos v @MMK_R_inp_foot 30; pos v @MMK_R_inp_guill -6; pos v @MMK_R_inp_guilr -2; pos v @MMK_R_inp_hyph -10; pos v @MMK_R_inp_period -60; pos v @MMK_R_inp_quotel 33; pos v @MMK_R_inp_quoter 40; pos v @MMK_R_lc_a.alt01 -13; pos v @MMK_R_lc_d -4; pos v @MMK_R_lc_f 8; pos v @MMK_R_lc_g -8; pos v @MMK_R_lc_i 10; pos v @MMK_R_lc_j 10; pos v @MMK_R_lc_n 10; pos v @MMK_R_lc_o -4; pos v @MMK_R_lc_s 3; pos v @MMK_R_lc_t 9; pos v @MMK_R_lc_u 10; pos v @MMK_R_lc_w 14; pos v @MMK_R_lc_y 31; pos v @MMK_R_lc_z 15; pos v @MMK_R_uc_a -15; pos v @MMK_R_uc_j -40; pos v @MMK_R_uc_o 20; pos v @MMK_R_uc_s 10; pos v @MMK_R_uc_t 10; pos v @MMK_R_uc_y -8; pos x @MMK_R_inp_foot -10; pos x @MMK_R_inp_guill -30; pos x @MMK_R_inp_guilr -28; pos x @MMK_R_inp_hyph -35; pos x @MMK_R_inp_period -20; pos x @MMK_R_inp_quotel -20; pos x @MMK_R_lc_d -16; pos x @MMK_R_lc_o -22; pos x @MMK_R_lc_s -4; pos x @MMK_R_uc_a -20; pos x @MMK_R_uc_j -10; pos x @MMK_R_uc_o -5; pos x @MMK_R_uc_s -10; pos x @MMK_R_uc_t -30; pos x @MMK_R_uc_u -10; pos x @MMK_R_uc_w -30; pos x @MMK_R_uc_y -50; pos x @MMK_R_uc_z -20; pos zeroinferior @MMK_R_cyr_lc_acyrillic 10; pos zeroinferior @MMK_R_cyr_lc_acyrillic.alt01 20; pos zeroinferior @MMK_R_cyr_lc_checyrillic -14; pos zeroinferior @MMK_R_cyr_lc_elcyrillic 6; pos zeroinferior @MMK_R_cyr_lc_gecyrillic 8; pos zeroinferior @MMK_R_cyr_lc_khacyrillic 6; pos zeroinferior @MMK_R_cyr_lc_ocyrillic 20; pos zeroinferior @MMK_R_cyr_lc_ucyrillic -25; pos zeroinferior @MMK_R_cyr_uc_Acyrillic 12; pos zeroinferior @MMK_R_cyr_uc_Checyrillic -53; pos zeroinferior @MMK_R_cyr_uc_Elcyrillic 16; pos zeroinferior @MMK_R_cyr_uc_Hardsigncyrillic -60; pos zeroinferior @MMK_R_cyr_uc_Khacyrillic 18; pos zeroinferior @MMK_R_cyr_uc_Tecyrillic -60; pos zeroinferior @MMK_R_cyr_uc_Ucyrillic -53; pos zeroinferior @MMK_R_cyr_uc_Zecyrillic -6; pos zeroinferior @MMK_R_cyr_uc_Zhecyrillic 14; pos zeroinferior @MMK_R_lc_a.alt01 20; pos zeroinferior @MMK_R_lc_d 10; pos zeroinferior @MMK_R_lc_o 20; pos zeroinferior @MMK_R_lc_s 2; pos zeroinferior @MMK_R_lc_w -20; pos zeroinferior @MMK_R_lc_y -25; pos zeroinferior @MMK_R_lc_z 8; pos zeroinferior @MMK_R_uc_a 12; pos zeroinferior @MMK_R_uc_j 12; pos zeroinferior @MMK_R_uc_s 10; pos zeroinferior @MMK_R_uc_t -60; pos zeroinferior @MMK_R_uc_w -40; pos zeroinferior @MMK_R_uc_y -80; pos zeroinferior @MMK_R_uc_z 2; pos zerosuperior @MMK_R_cyr_lc_acyrillic 10; pos zerosuperior @MMK_R_cyr_lc_acyrillic.alt01 10; pos zerosuperior @MMK_R_cyr_lc_checyrillic 42; pos zerosuperior @MMK_R_cyr_lc_elcyrillic -27; pos zerosuperior @MMK_R_cyr_lc_encyrillic 40; pos zerosuperior @MMK_R_cyr_lc_gheupturncyrillic 17; pos zerosuperior @MMK_R_cyr_lc_icyrillic 24; pos zerosuperior @MMK_R_cyr_lc_iicyrillic 40; pos zerosuperior @MMK_R_cyr_lc_khacyrillic 16; pos zerosuperior @MMK_R_cyr_lc_ocyrillic 18; pos zerosuperior @MMK_R_cyr_lc_ucyrillic 40; pos zerosuperior @MMK_R_cyr_lc_yericyrillic 37; pos zerosuperior @MMK_R_cyr_lc_zecyrilic 8; pos zerosuperior @MMK_R_cyr_uc_Acyrillic -50; pos zerosuperior @MMK_R_cyr_uc_Checyrillic 8; pos zerosuperior @MMK_R_cyr_uc_Elcyrillic -85; pos zerosuperior @MMK_R_cyr_uc_Hardsigncyrillic 28; pos zerosuperior @MMK_R_cyr_uc_Khacyrillic 9; pos zerosuperior @MMK_R_cyr_uc_Ocyrillic 15; pos zerosuperior @MMK_R_cyr_uc_Tecyrillic 28; pos zerosuperior @MMK_R_cyr_uc_Ucyrillic -16; pos zerosuperior @MMK_R_cyr_uc_Zecyrillic -9; pos zerosuperior @MMK_R_cyr_uc_Zhecyrillic -27; pos zerosuperior @MMK_R_inp_period -50; pos zerosuperior @MMK_R_lc_a.alt01 10; pos zerosuperior @MMK_R_lc_d 10; pos zerosuperior @MMK_R_lc_f 12; pos zerosuperior @MMK_R_lc_h 20; pos zerosuperior @MMK_R_lc_i 20; pos zerosuperior @MMK_R_lc_j 40; pos zerosuperior @MMK_R_lc_n 40; pos zerosuperior @MMK_R_lc_o 18; pos zerosuperior @MMK_R_lc_s 20; pos zerosuperior @MMK_R_lc_t 38; pos zerosuperior @MMK_R_lc_u 40; pos zerosuperior @MMK_R_lc_w 40; pos zerosuperior @MMK_R_lc_y 40; pos zerosuperior @MMK_R_lc_z 30; pos zerosuperior @MMK_R_uc_a -50; pos zerosuperior @MMK_R_uc_j -70; pos zerosuperior @MMK_R_uc_o 15; pos zerosuperior @MMK_R_uc_t 28; pos zerosuperior @MMK_R_uc_w 16; pos zerosuperior @MMK_R_uc_y 6; # group, glyph and group, group: subtable; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_lc_checyrillic -14; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_lc_elcyrillic 5; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_lc_ucyrillic -10; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_lc_zecyrilic 3; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Checyrillic -54; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Elcyrillic 33; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Hardsigncyrillic -45; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Khacyrillic 4; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Tecyrillic -45; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Ucyrillic -40; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Zecyrillic -6; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Zhecyrillic 8; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_inp_foot -58; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_inp_hyph -4; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_inp_period 27; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_inp_quotel -60; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_inp_quoter -36; pos @MMK_L_cyr_lc_acyrillic.alt01 ampersand 17; pos @MMK_L_cyr_lc_acyrillic.alt01 eightinferior 16; pos @MMK_L_cyr_lc_acyrillic.alt01 eightsuperior -20; pos @MMK_L_cyr_lc_acyrillic.alt01 fiveinferior 10; pos @MMK_L_cyr_lc_acyrillic.alt01 fivesuperior -26; pos @MMK_L_cyr_lc_acyrillic.alt01 fourinferior 30; pos @MMK_L_cyr_lc_acyrillic.alt01 foursuperior -16; pos @MMK_L_cyr_lc_acyrillic.alt01 nineinferior 6; pos @MMK_L_cyr_lc_acyrillic.alt01 ninesuperior -40; pos @MMK_L_cyr_lc_acyrillic.alt01 onesuperior -40; pos @MMK_L_cyr_lc_acyrillic.alt01 registered -35; pos @MMK_L_cyr_lc_acyrillic.alt01 seveninferior -8; pos @MMK_L_cyr_lc_acyrillic.alt01 sevensuperior -55; pos @MMK_L_cyr_lc_acyrillic.alt01 sixinferior 30; pos @MMK_L_cyr_lc_acyrillic.alt01 sixsuperior -20; pos @MMK_L_cyr_lc_acyrillic.alt01 threeinferior 10; pos @MMK_L_cyr_lc_acyrillic.alt01 threesuperior -26; pos @MMK_L_cyr_lc_acyrillic.alt01 trademark -55; pos @MMK_L_cyr_lc_acyrillic.alt01 twoinferior 10; pos @MMK_L_cyr_lc_acyrillic.alt01 twosuperior -20; pos @MMK_L_cyr_lc_acyrillic.alt01 uni0408 20; pos @MMK_L_cyr_lc_acyrillic.alt01 uni0414 17; pos @MMK_L_cyr_lc_acyrillic.alt01 uni0424 -4; pos @MMK_L_cyr_lc_acyrillic.alt01 uni042F -4; pos @MMK_L_cyr_lc_acyrillic.alt01 uni044A -14; pos @MMK_L_cyr_lc_acyrillic.alt01 uni044D 3; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04A1 -14; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04AE -48; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04AF -10; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04B0 -54; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04B1 -10; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04CF -3; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04D4 6; pos @MMK_L_cyr_lc_acyrillic.alt01 zeroinferior 30; pos @MMK_L_cyr_lc_acyrillic.alt01 zerosuperior -26; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_lc_acyrillic.alt01 9; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_lc_checyrillic -4; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_lc_gecyrillic 6; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_lc_ucyrillic -10; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_lc_yericyrillic 1; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_lc_zecyrilic 7; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_lc_zhecyrillic -6; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Acyrillic 28; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Checyrillic -44; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Elcyrillic 34; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Hardsigncyrillic -30; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Khacyrillic 16; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Tecyrillic -30; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Ucyrillic -50; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Zhecyrillic 8; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_foot -50; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_guilr 10; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_hyph -10; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_period 29; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_quotel -48; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_quoter -48; pos @MMK_L_cyr_lc_encyrillic ampersand 14; pos @MMK_L_cyr_lc_encyrillic at -10; pos @MMK_L_cyr_lc_encyrillic eightinferior 30; pos @MMK_L_cyr_lc_encyrillic eightsuperior -25; pos @MMK_L_cyr_lc_encyrillic fiveinferior 10; pos @MMK_L_cyr_lc_encyrillic fivesuperior -20; pos @MMK_L_cyr_lc_encyrillic fourinferior 22; pos @MMK_L_cyr_lc_encyrillic foursuperior -20; pos @MMK_L_cyr_lc_encyrillic nineinferior 10; pos @MMK_L_cyr_lc_encyrillic ninesuperior -45; pos @MMK_L_cyr_lc_encyrillic onesuperior -20; pos @MMK_L_cyr_lc_encyrillic registered -20; pos @MMK_L_cyr_lc_encyrillic seveninferior -10; pos @MMK_L_cyr_lc_encyrillic sevensuperior -50; pos @MMK_L_cyr_lc_encyrillic sixinferior 30; pos @MMK_L_cyr_lc_encyrillic sixsuperior -20; pos @MMK_L_cyr_lc_encyrillic slash 6; pos @MMK_L_cyr_lc_encyrillic threeinferior 10; pos @MMK_L_cyr_lc_encyrillic threesuperior -20; pos @MMK_L_cyr_lc_encyrillic trademark -42; pos @MMK_L_cyr_lc_encyrillic twoinferior 10; pos @MMK_L_cyr_lc_encyrillic twosuperior -20; pos @MMK_L_cyr_lc_encyrillic uni0405 12; pos @MMK_L_cyr_lc_encyrillic uni0408 18; pos @MMK_L_cyr_lc_encyrillic uni0414 11; pos @MMK_L_cyr_lc_encyrillic uni0424 -5; pos @MMK_L_cyr_lc_encyrillic uni042F 7; pos @MMK_L_cyr_lc_encyrillic uni044A -12; pos @MMK_L_cyr_lc_encyrillic uni044D 7; pos @MMK_L_cyr_lc_encyrillic uni0455 3; pos @MMK_L_cyr_lc_encyrillic uni04A1 -12; pos @MMK_L_cyr_lc_encyrillic uni04AE -40; pos @MMK_L_cyr_lc_encyrillic uni04AF -10; pos @MMK_L_cyr_lc_encyrillic uni04B0 -40; pos @MMK_L_cyr_lc_encyrillic uni04B1 -10; pos @MMK_L_cyr_lc_encyrillic uni04CF -12; pos @MMK_L_cyr_lc_encyrillic uni04D4 28; pos @MMK_L_cyr_lc_encyrillic zeroinferior 30; pos @MMK_L_cyr_lc_encyrillic zerosuperior -20; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_acyrillic -6; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_acyrillic.alt01 -2; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_checyrillic 12; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_elcyrillic -4; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_gecyrillic 2; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_khacyrillic -5; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_ocyrillic -8; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_yericyrillic 6; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_zhecyrillic -10; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Acyrillic 8; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Checyrillic -22; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Elcyrillic 10; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Hardsigncyrillic -27; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Khacyrillic -5; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Tecyrillic -27; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Ucyrillic -47; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Zecyrillic -9; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Zhecyrillic -3; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_foot -30; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_hyph -10; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_period -4; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_quotel -25; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_quoter -10; pos @MMK_L_cyr_lc_escyrillic ampersand 6; pos @MMK_L_cyr_lc_escyrillic eightinferior 11; pos @MMK_L_cyr_lc_escyrillic fiveinferior 11; pos @MMK_L_cyr_lc_escyrillic fourinferior 10; pos @MMK_L_cyr_lc_escyrillic foursuperior 15; pos @MMK_L_cyr_lc_escyrillic nineinferior 10; pos @MMK_L_cyr_lc_escyrillic ninesuperior -15; pos @MMK_L_cyr_lc_escyrillic oneinferior 10; pos @MMK_L_cyr_lc_escyrillic seveninferior 5; pos @MMK_L_cyr_lc_escyrillic sevensuperior -20; pos @MMK_L_cyr_lc_escyrillic sixinferior 15; pos @MMK_L_cyr_lc_escyrillic slash -10; pos @MMK_L_cyr_lc_escyrillic threeinferior 15; pos @MMK_L_cyr_lc_escyrillic trademark -20; pos @MMK_L_cyr_lc_escyrillic twoinferior 13; pos @MMK_L_cyr_lc_escyrillic twosuperior 5; pos @MMK_L_cyr_lc_escyrillic uni0405 5; pos @MMK_L_cyr_lc_escyrillic uni0408 2; pos @MMK_L_cyr_lc_escyrillic uni0414 4; pos @MMK_L_cyr_lc_escyrillic uni0424 8; pos @MMK_L_cyr_lc_escyrillic uni0431 11; pos @MMK_L_cyr_lc_escyrillic uni0444 -3; pos @MMK_L_cyr_lc_escyrillic uni044F -6; pos @MMK_L_cyr_lc_escyrillic uni0492 6; pos @MMK_L_cyr_lc_escyrillic uni04A1 6; pos @MMK_L_cyr_lc_escyrillic uni04AE -55; pos @MMK_L_cyr_lc_escyrillic uni04AF -3; pos @MMK_L_cyr_lc_escyrillic uni04B0 -43; pos @MMK_L_cyr_lc_escyrillic uni04B1 -3; pos @MMK_L_cyr_lc_escyrillic uni04CF -12; pos @MMK_L_cyr_lc_escyrillic uni04D4 8; pos @MMK_L_cyr_lc_escyrillic zeroinferior 20; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_acyrillic -7; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -7; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_checyrillic 3; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_elcyrillic -16; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_encyrillic -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_gecyrillic -18; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_gheupturncyrillic -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_icyrillic -5; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_iicyrillic -5; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_khacyrillic -7; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_ocyrillic -5; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_tshecyrillic -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_ucyrillic -11; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_zecyrilic -11; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_zhecyrillic -12; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Acyrillic -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Checyrillic -40; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Elcyrillic 4; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -54; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Khacyrillic -16; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Ocyrillic -3; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Tecyrillic -54; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Ucyrillic -68; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Zecyrillic -24; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Zhecyrillic -16; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_colon -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_foot -40; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_guill 4; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_guilr -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_period -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_quotel -44; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_quoter -39; pos @MMK_L_cyr_lc_gecyrillic ampersand -6; pos @MMK_L_cyr_lc_gecyrillic at -12; pos @MMK_L_cyr_lc_gecyrillic eightinferior -10; pos @MMK_L_cyr_lc_gecyrillic eightsuperior -6; pos @MMK_L_cyr_lc_gecyrillic fiveinferior -6; pos @MMK_L_cyr_lc_gecyrillic fivesuperior -6; pos @MMK_L_cyr_lc_gecyrillic fourinferior -6; pos @MMK_L_cyr_lc_gecyrillic foursuperior -6; pos @MMK_L_cyr_lc_gecyrillic nineinferior -9; pos @MMK_L_cyr_lc_gecyrillic ninesuperior -26; pos @MMK_L_cyr_lc_gecyrillic oneinferior -3; pos @MMK_L_cyr_lc_gecyrillic question -10; pos @MMK_L_cyr_lc_gecyrillic registered -14; pos @MMK_L_cyr_lc_gecyrillic seveninferior -9; pos @MMK_L_cyr_lc_gecyrillic sevensuperior -23; pos @MMK_L_cyr_lc_gecyrillic sixinferior -12; pos @MMK_L_cyr_lc_gecyrillic sixsuperior -9; pos @MMK_L_cyr_lc_gecyrillic slash -12; pos @MMK_L_cyr_lc_gecyrillic trademark -39; pos @MMK_L_cyr_lc_gecyrillic twoinferior -6; pos @MMK_L_cyr_lc_gecyrillic underscore -26; pos @MMK_L_cyr_lc_gecyrillic uni0405 -6; pos @MMK_L_cyr_lc_gecyrillic uni0414 -2; pos @MMK_L_cyr_lc_gecyrillic uni0424 17; pos @MMK_L_cyr_lc_gecyrillic uni042F -17; pos @MMK_L_cyr_lc_gecyrillic uni0440 -5; pos @MMK_L_cyr_lc_gecyrillic uni0444 -9; pos @MMK_L_cyr_lc_gecyrillic uni044A -9; pos @MMK_L_cyr_lc_gecyrillic uni044D -10; pos @MMK_L_cyr_lc_gecyrillic uni044F -21; pos @MMK_L_cyr_lc_gecyrillic uni0458 -5; pos @MMK_L_cyr_lc_gecyrillic uni0492 6; pos @MMK_L_cyr_lc_gecyrillic uni04A1 4; pos @MMK_L_cyr_lc_gecyrillic uni04AE -72; pos @MMK_L_cyr_lc_gecyrillic uni04AF -16; pos @MMK_L_cyr_lc_gecyrillic uni04B0 -64; pos @MMK_L_cyr_lc_gecyrillic uni04B1 -16; pos @MMK_L_cyr_lc_gecyrillic uni04BB -6; pos @MMK_L_cyr_lc_gecyrillic uni04CF -17; pos @MMK_L_cyr_lc_gecyrillic uni04D4 -6; pos @MMK_L_cyr_lc_gecyrillic zeroinferior -12; pos @MMK_L_cyr_lc_gecyrillic zerosuperior -12; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_acyrillic -18; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_acyrillic.alt01 -6; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_checyrillic 31; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_elcyrillic -43; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_encyrillic 4; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_gecyrillic -12; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_icyrillic 4; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_iicyrillic 4; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_khacyrillic -7; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_ocyrillic -18; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_ucyrillic 20; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_yericyrillic 15; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_zecyrilic -11; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_lc_zhecyrillic -9; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_uc_Acyrillic -49; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_uc_Checyrillic 8; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_uc_Elcyrillic -46; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_uc_Hardsigncyrillic 6; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_uc_Ocyrillic 8; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_uc_Tecyrillic 6; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_uc_Ucyrillic -4; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_cyr_uc_Zecyrillic 4; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_inp_colon -5; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_inp_foot 4; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_inp_guill -29; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_inp_guilr -6; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_inp_hyph -29; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_inp_period -101; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_inp_quotel 13; pos @MMK_L_cyr_lc_gheupturncyrillic @MMK_R_inp_quoter 8; pos @MMK_L_cyr_lc_gheupturncyrillic ampersand -20; pos @MMK_L_cyr_lc_gheupturncyrillic at -14; pos @MMK_L_cyr_lc_gheupturncyrillic eightinferior -46; pos @MMK_L_cyr_lc_gheupturncyrillic eightsuperior 13; pos @MMK_L_cyr_lc_gheupturncyrillic fiveinferior -41; pos @MMK_L_cyr_lc_gheupturncyrillic fivesuperior 10; pos @MMK_L_cyr_lc_gheupturncyrillic fourinferior -41; pos @MMK_L_cyr_lc_gheupturncyrillic foursuperior 17; pos @MMK_L_cyr_lc_gheupturncyrillic nineinferior -41; pos @MMK_L_cyr_lc_gheupturncyrillic ninesuperior 12; pos @MMK_L_cyr_lc_gheupturncyrillic oneinferior -46; pos @MMK_L_cyr_lc_gheupturncyrillic registered 10; pos @MMK_L_cyr_lc_gheupturncyrillic seveninferior -23; pos @MMK_L_cyr_lc_gheupturncyrillic sixinferior -52; pos @MMK_L_cyr_lc_gheupturncyrillic sixsuperior 16; pos @MMK_L_cyr_lc_gheupturncyrillic slash -55; pos @MMK_L_cyr_lc_gheupturncyrillic threeinferior -41; pos @MMK_L_cyr_lc_gheupturncyrillic threesuperior 10; pos @MMK_L_cyr_lc_gheupturncyrillic twoinferior -46; pos @MMK_L_cyr_lc_gheupturncyrillic twosuperior 10; pos @MMK_L_cyr_lc_gheupturncyrillic underscore -92; pos @MMK_L_cyr_lc_gheupturncyrillic uni0405 4; pos @MMK_L_cyr_lc_gheupturncyrillic uni0408 -59; pos @MMK_L_cyr_lc_gheupturncyrillic uni0414 -33; pos @MMK_L_cyr_lc_gheupturncyrillic uni0424 21; pos @MMK_L_cyr_lc_gheupturncyrillic uni042F -6; pos @MMK_L_cyr_lc_gheupturncyrillic uni0431 6; pos @MMK_L_cyr_lc_gheupturncyrillic uni0440 4; pos @MMK_L_cyr_lc_gheupturncyrillic uni0444 -9; pos @MMK_L_cyr_lc_gheupturncyrillic uni044A 7; pos @MMK_L_cyr_lc_gheupturncyrillic uni044D -6; pos @MMK_L_cyr_lc_gheupturncyrillic uni044F -17; pos @MMK_L_cyr_lc_gheupturncyrillic uni0455 -6; pos @MMK_L_cyr_lc_gheupturncyrillic uni0458 4; pos @MMK_L_cyr_lc_gheupturncyrillic uni04A1 8; pos @MMK_L_cyr_lc_gheupturncyrillic uni04AE -8; pos @MMK_L_cyr_lc_gheupturncyrillic uni04AF 18; pos @MMK_L_cyr_lc_gheupturncyrillic uni04B1 18; pos @MMK_L_cyr_lc_gheupturncyrillic uni04CF -12; pos @MMK_L_cyr_lc_gheupturncyrillic uni04D4 -61; pos @MMK_L_cyr_lc_gheupturncyrillic zeroinferior -52; pos @MMK_L_cyr_lc_gheupturncyrillic zerosuperior 16; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_lc_acyrillic.alt01 9; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_lc_gecyrillic 4; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_lc_ucyrillic -6; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_lc_yericyrillic 4; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_lc_zecyrilic 7; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_uc_Acyrillic 12; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_uc_Checyrillic -36; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_uc_Elcyrillic 34; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_uc_Hardsigncyrillic -30; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_uc_Khacyrillic 16; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_uc_Tecyrillic -30; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_uc_Ucyrillic -26; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_cyr_uc_Zhecyrillic 8; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_inp_foot -20; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_inp_guilr 6; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_inp_period 29; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_inp_quotel -40; pos @MMK_L_cyr_lc_iicyrillic @MMK_R_inp_quoter -40; pos @MMK_L_cyr_lc_iicyrillic ampersand 17; pos @MMK_L_cyr_lc_iicyrillic at -2; pos @MMK_L_cyr_lc_iicyrillic eightinferior 30; pos @MMK_L_cyr_lc_iicyrillic eightsuperior -20; pos @MMK_L_cyr_lc_iicyrillic fiveinferior 12; pos @MMK_L_cyr_lc_iicyrillic fivesuperior -20; pos @MMK_L_cyr_lc_iicyrillic fourinferior 20; pos @MMK_L_cyr_lc_iicyrillic foursuperior -20; pos @MMK_L_cyr_lc_iicyrillic nineinferior 10; pos @MMK_L_cyr_lc_iicyrillic ninesuperior -18; pos @MMK_L_cyr_lc_iicyrillic onesuperior -20; pos @MMK_L_cyr_lc_iicyrillic registered -10; pos @MMK_L_cyr_lc_iicyrillic sevensuperior -20; pos @MMK_L_cyr_lc_iicyrillic sixinferior 30; pos @MMK_L_cyr_lc_iicyrillic sixsuperior -20; pos @MMK_L_cyr_lc_iicyrillic threeinferior 10; pos @MMK_L_cyr_lc_iicyrillic threesuperior -20; pos @MMK_L_cyr_lc_iicyrillic twoinferior 10; pos @MMK_L_cyr_lc_iicyrillic twosuperior -10; pos @MMK_L_cyr_lc_iicyrillic uni0405 12; pos @MMK_L_cyr_lc_iicyrillic uni0408 22; pos @MMK_L_cyr_lc_iicyrillic uni0414 11; pos @MMK_L_cyr_lc_iicyrillic uni0424 3; pos @MMK_L_cyr_lc_iicyrillic uni042F 3; pos @MMK_L_cyr_lc_iicyrillic uni044D 7; pos @MMK_L_cyr_lc_iicyrillic uni0455 3; pos @MMK_L_cyr_lc_iicyrillic uni0493 3; pos @MMK_L_cyr_lc_iicyrillic uni04A1 -6; pos @MMK_L_cyr_lc_iicyrillic uni04AE -40; pos @MMK_L_cyr_lc_iicyrillic uni04AF -7; pos @MMK_L_cyr_lc_iicyrillic uni04B0 -40; pos @MMK_L_cyr_lc_iicyrillic uni04B1 -7; pos @MMK_L_cyr_lc_iicyrillic uni04CF -3; pos @MMK_L_cyr_lc_iicyrillic uni04D4 12; pos @MMK_L_cyr_lc_iicyrillic zeroinferior 30; pos @MMK_L_cyr_lc_iicyrillic zerosuperior -20; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_acyrillic.alt01 10; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_checyrillic 12; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_elcyrillic -14; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_gecyrillic -2; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_khacyrillic -15; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_yericyrillic 6; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_zhecyrillic -6; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Acyrillic -10; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Checyrillic -17; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Elcyrillic 4; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -25; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Khacyrillic -16; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Ocyrillic 5; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Tecyrillic -25; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Ucyrillic -56; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Zecyrillic -17; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Zhecyrillic -12; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_foot -30; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_guill 18; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_guilr -4; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_hyph 10; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_period -20; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_quotel -30; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_quoter -24; pos @MMK_L_cyr_lc_jecyrillic eightinferior 8; pos @MMK_L_cyr_lc_jecyrillic fiveinferior 4; pos @MMK_L_cyr_lc_jecyrillic fourinferior 5; pos @MMK_L_cyr_lc_jecyrillic foursuperior 6; pos @MMK_L_cyr_lc_jecyrillic nineinferior 4; pos @MMK_L_cyr_lc_jecyrillic ninesuperior -30; pos @MMK_L_cyr_lc_jecyrillic oneinferior -6; pos @MMK_L_cyr_lc_jecyrillic onesuperior -10; pos @MMK_L_cyr_lc_jecyrillic registered 5; pos @MMK_L_cyr_lc_jecyrillic seveninferior 8; pos @MMK_L_cyr_lc_jecyrillic sevensuperior -20; pos @MMK_L_cyr_lc_jecyrillic sixinferior 4; pos @MMK_L_cyr_lc_jecyrillic slash -11; pos @MMK_L_cyr_lc_jecyrillic trademark -27; pos @MMK_L_cyr_lc_jecyrillic twoinferior 9; pos @MMK_L_cyr_lc_jecyrillic underscore -20; pos @MMK_L_cyr_lc_jecyrillic uni0405 -10; pos @MMK_L_cyr_lc_jecyrillic uni0408 -10; pos @MMK_L_cyr_lc_jecyrillic uni0414 -10; pos @MMK_L_cyr_lc_jecyrillic uni0424 13; pos @MMK_L_cyr_lc_jecyrillic uni042F -13; pos @MMK_L_cyr_lc_jecyrillic uni0431 6; pos @MMK_L_cyr_lc_jecyrillic uni044A -4; pos @MMK_L_cyr_lc_jecyrillic uni044F -16; pos @MMK_L_cyr_lc_jecyrillic uni0492 6; pos @MMK_L_cyr_lc_jecyrillic uni04A1 6; pos @MMK_L_cyr_lc_jecyrillic uni04AE -55; pos @MMK_L_cyr_lc_jecyrillic uni04AF -3; pos @MMK_L_cyr_lc_jecyrillic uni04B0 -55; pos @MMK_L_cyr_lc_jecyrillic uni04B1 -3; pos @MMK_L_cyr_lc_jecyrillic uni04CF -9; pos @MMK_L_cyr_lc_jecyrillic uni04D4 -10; pos @MMK_L_cyr_lc_jecyrillic zeroinferior 10; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_acyrillic -6; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_checyrillic 17; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_elcyrillic -4; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_gecyrillic -4; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_khacyrillic -6; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_ocyrillic -6; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_yericyrillic 6; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Checyrillic -24; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Elcyrillic 21; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Hardsigncyrillic -29; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Khacyrillic -6; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Ocyrillic -13; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Tecyrillic -29; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Ucyrillic -50; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Zecyrillic -6; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_foot -18; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_guill -17; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_hyph -37; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_period 8; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_quotel -17; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_quoter -5; pos @MMK_L_cyr_lc_kacyrillic ampersand 5; pos @MMK_L_cyr_lc_kacyrillic at -16; pos @MMK_L_cyr_lc_kacyrillic copyright -8; pos @MMK_L_cyr_lc_kacyrillic eightsuperior -4; pos @MMK_L_cyr_lc_kacyrillic fivesuperior -7; pos @MMK_L_cyr_lc_kacyrillic foursuperior 1; pos @MMK_L_cyr_lc_kacyrillic nineinferior -3; pos @MMK_L_cyr_lc_kacyrillic ninesuperior -23; pos @MMK_L_cyr_lc_kacyrillic oneinferior -6; pos @MMK_L_cyr_lc_kacyrillic onesuperior -13; pos @MMK_L_cyr_lc_kacyrillic registered -8; pos @MMK_L_cyr_lc_kacyrillic seveninferior -12; pos @MMK_L_cyr_lc_kacyrillic sevensuperior -35; pos @MMK_L_cyr_lc_kacyrillic sixsuperior 1; pos @MMK_L_cyr_lc_kacyrillic threesuperior -8; pos @MMK_L_cyr_lc_kacyrillic trademark -34; pos @MMK_L_cyr_lc_kacyrillic twosuperior -16; pos @MMK_L_cyr_lc_kacyrillic underscore -6; pos @MMK_L_cyr_lc_kacyrillic uni0408 12; pos @MMK_L_cyr_lc_kacyrillic uni0424 8; pos @MMK_L_cyr_lc_kacyrillic uni0431 -2; pos @MMK_L_cyr_lc_kacyrillic uni0444 -7; pos @MMK_L_cyr_lc_kacyrillic uni044F -10; pos @MMK_L_cyr_lc_kacyrillic uni0455 -4; pos @MMK_L_cyr_lc_kacyrillic uni0492 6; pos @MMK_L_cyr_lc_kacyrillic uni04AE -56; pos @MMK_L_cyr_lc_kacyrillic uni04AF -5; pos @MMK_L_cyr_lc_kacyrillic uni04B0 -56; pos @MMK_L_cyr_lc_kacyrillic uni04B1 -5; pos @MMK_L_cyr_lc_kacyrillic uni04CF -12; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_acyrillic.alt01 10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_elcyrillic -19; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_gecyrillic -3; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_khacyrillic -22; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_ucyrillic -8; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_zecyrilic -5; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_zhecyrillic -15; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Acyrillic -20; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Checyrillic -36; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Elcyrillic -5; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Hardsigncyrillic -27; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Khacyrillic -15; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Tecyrillic -27; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Ucyrillic -55; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Zecyrillic -16; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Zhecyrillic -29; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_foot -40; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_guill 10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_guilr -10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_hyph 20; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_period -20; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_quotel -52; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_quoter -50; pos @MMK_L_cyr_lc_ocyrillic eightinferior 15; pos @MMK_L_cyr_lc_ocyrillic eightsuperior -10; pos @MMK_L_cyr_lc_ocyrillic fivesuperior -12; pos @MMK_L_cyr_lc_ocyrillic fourinferior 4; pos @MMK_L_cyr_lc_ocyrillic foursuperior -12; pos @MMK_L_cyr_lc_ocyrillic nineinferior 10; pos @MMK_L_cyr_lc_ocyrillic ninesuperior -22; pos @MMK_L_cyr_lc_ocyrillic oneinferior 13; pos @MMK_L_cyr_lc_ocyrillic registered -15; pos @MMK_L_cyr_lc_ocyrillic seveninferior 10; pos @MMK_L_cyr_lc_ocyrillic sevensuperior -32; pos @MMK_L_cyr_lc_ocyrillic sixinferior 20; pos @MMK_L_cyr_lc_ocyrillic sixsuperior -10; pos @MMK_L_cyr_lc_ocyrillic slash -6; pos @MMK_L_cyr_lc_ocyrillic threeinferior 5; pos @MMK_L_cyr_lc_ocyrillic threesuperior -10; pos @MMK_L_cyr_lc_ocyrillic trademark -35; pos @MMK_L_cyr_lc_ocyrillic underscore -50; pos @MMK_L_cyr_lc_ocyrillic uni0408 -18; pos @MMK_L_cyr_lc_ocyrillic uni0414 -16; pos @MMK_L_cyr_lc_ocyrillic uni0424 15; pos @MMK_L_cyr_lc_ocyrillic uni042F -25; pos @MMK_L_cyr_lc_ocyrillic uni0440 -6; pos @MMK_L_cyr_lc_ocyrillic uni0444 -1; pos @MMK_L_cyr_lc_ocyrillic uni044A -6; pos @MMK_L_cyr_lc_ocyrillic uni044D -4; pos @MMK_L_cyr_lc_ocyrillic uni044F -10; pos @MMK_L_cyr_lc_ocyrillic uni0492 6; pos @MMK_L_cyr_lc_ocyrillic uni0493 6; pos @MMK_L_cyr_lc_ocyrillic uni04A1 -5; pos @MMK_L_cyr_lc_ocyrillic uni04AE -65; pos @MMK_L_cyr_lc_ocyrillic uni04AF -14; pos @MMK_L_cyr_lc_ocyrillic uni04B0 -51; pos @MMK_L_cyr_lc_ocyrillic uni04B1 -14; pos @MMK_L_cyr_lc_ocyrillic uni04CF -12; pos @MMK_L_cyr_lc_ocyrillic uni04D4 -20; pos @MMK_L_cyr_lc_ocyrillic zeroinferior 20; pos @MMK_L_cyr_lc_ocyrillic zerosuperior -20; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_acyrillic.alt01 6; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_checyrillic -6; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_ucyrillic -9; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_zecyrilic 3; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_zhecyrillic -3; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Acyrillic 10; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Checyrillic -54; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Elcyrillic 33; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Hardsigncyrillic -61; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Khacyrillic 8; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Tecyrillic -61; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Ucyrillic -34; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Zecyrillic -6; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Zhecyrillic 8; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_foot -60; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_hyph -8; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_period 29; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_quotel -60; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_quoter -48; pos @MMK_L_cyr_lc_shhacyrillic ampersand 14; pos @MMK_L_cyr_lc_shhacyrillic eightinferior 20; pos @MMK_L_cyr_lc_shhacyrillic eightsuperior -20; pos @MMK_L_cyr_lc_shhacyrillic fiveinferior 10; pos @MMK_L_cyr_lc_shhacyrillic fivesuperior -30; pos @MMK_L_cyr_lc_shhacyrillic fourinferior 30; pos @MMK_L_cyr_lc_shhacyrillic foursuperior -20; pos @MMK_L_cyr_lc_shhacyrillic nineinferior 10; pos @MMK_L_cyr_lc_shhacyrillic ninesuperior -40; pos @MMK_L_cyr_lc_shhacyrillic onesuperior -40; pos @MMK_L_cyr_lc_shhacyrillic registered -35; pos @MMK_L_cyr_lc_shhacyrillic seveninferior -8; pos @MMK_L_cyr_lc_shhacyrillic sevensuperior -55; pos @MMK_L_cyr_lc_shhacyrillic sixinferior 30; pos @MMK_L_cyr_lc_shhacyrillic sixsuperior -20; pos @MMK_L_cyr_lc_shhacyrillic threeinferior 10; pos @MMK_L_cyr_lc_shhacyrillic threesuperior -30; pos @MMK_L_cyr_lc_shhacyrillic trademark -55; pos @MMK_L_cyr_lc_shhacyrillic twoinferior 10; pos @MMK_L_cyr_lc_shhacyrillic twosuperior -20; pos @MMK_L_cyr_lc_shhacyrillic uni0408 23; pos @MMK_L_cyr_lc_shhacyrillic uni0414 17; pos @MMK_L_cyr_lc_shhacyrillic uni0424 -9; pos @MMK_L_cyr_lc_shhacyrillic uni044A -12; pos @MMK_L_cyr_lc_shhacyrillic uni044D 3; pos @MMK_L_cyr_lc_shhacyrillic uni04A1 -7; pos @MMK_L_cyr_lc_shhacyrillic uni04AE -58; pos @MMK_L_cyr_lc_shhacyrillic uni04AF -10; pos @MMK_L_cyr_lc_shhacyrillic uni04B0 -58; pos @MMK_L_cyr_lc_shhacyrillic uni04B1 -10; pos @MMK_L_cyr_lc_shhacyrillic uni04CF -3; pos @MMK_L_cyr_lc_shhacyrillic uni04D4 10; pos @MMK_L_cyr_lc_shhacyrillic zeroinferior 30; pos @MMK_L_cyr_lc_shhacyrillic zerosuperior -30; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_acyrillic -2; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_acyrillic.alt01 4; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_checyrillic -32; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_elcyrillic -3; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_encyrillic -15; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_gheupturncyrillic -13; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_icyrillic -14; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_iicyrillic -14; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_khacyrillic -9; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_ocyrillic -4; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_tshecyrillic -6; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_ucyrillic -45; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_yericyrillic -6; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_zecyrilic -2; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_zhecyrillic -11; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Checyrillic -96; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Elcyrillic 14; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Hardsigncyrillic -96; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Khacyrillic -15; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Ocyrillic -4; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Tecyrillic -96; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Ucyrillic -57; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Zecyrillic -12; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Zhecyrillic -6; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_foot -94; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_hyph -7; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_parenth -3; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_period 14; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_quotel -107; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_quoter -100; pos @MMK_L_cyr_lc_softsigncyrillic ampersand 14; pos @MMK_L_cyr_lc_softsigncyrillic copyright -6; pos @MMK_L_cyr_lc_softsigncyrillic eightinferior 17; pos @MMK_L_cyr_lc_softsigncyrillic eightsuperior -54; pos @MMK_L_cyr_lc_softsigncyrillic fiveinferior 14; pos @MMK_L_cyr_lc_softsigncyrillic fivesuperior -42; pos @MMK_L_cyr_lc_softsigncyrillic fourinferior 6; pos @MMK_L_cyr_lc_softsigncyrillic foursuperior -52; pos @MMK_L_cyr_lc_softsigncyrillic nineinferior 17; pos @MMK_L_cyr_lc_softsigncyrillic ninesuperior -54; pos @MMK_L_cyr_lc_softsigncyrillic oneinferior 4; pos @MMK_L_cyr_lc_softsigncyrillic onesuperior -40; pos @MMK_L_cyr_lc_softsigncyrillic parenright -6; pos @MMK_L_cyr_lc_softsigncyrillic registered -73; pos @MMK_L_cyr_lc_softsigncyrillic seveninferior 4; pos @MMK_L_cyr_lc_softsigncyrillic sevensuperior -72; pos @MMK_L_cyr_lc_softsigncyrillic sixinferior 13; pos @MMK_L_cyr_lc_softsigncyrillic sixsuperior -54; pos @MMK_L_cyr_lc_softsigncyrillic slash -5; pos @MMK_L_cyr_lc_softsigncyrillic threeinferior 13; pos @MMK_L_cyr_lc_softsigncyrillic threesuperior -36; pos @MMK_L_cyr_lc_softsigncyrillic trademark -92; pos @MMK_L_cyr_lc_softsigncyrillic twoinferior 8; pos @MMK_L_cyr_lc_softsigncyrillic twosuperior -36; pos @MMK_L_cyr_lc_softsigncyrillic underscore -34; pos @MMK_L_cyr_lc_softsigncyrillic uni0408 12; pos @MMK_L_cyr_lc_softsigncyrillic uni0424 -12; pos @MMK_L_cyr_lc_softsigncyrillic uni042F -13; pos @MMK_L_cyr_lc_softsigncyrillic uni0431 -2; pos @MMK_L_cyr_lc_softsigncyrillic uni0440 -15; pos @MMK_L_cyr_lc_softsigncyrillic uni0444 -6; pos @MMK_L_cyr_lc_softsigncyrillic uni044A -40; pos @MMK_L_cyr_lc_softsigncyrillic uni044D -2; pos @MMK_L_cyr_lc_softsigncyrillic uni044F -7; pos @MMK_L_cyr_lc_softsigncyrillic uni0455 -4; pos @MMK_L_cyr_lc_softsigncyrillic uni0458 -10; pos @MMK_L_cyr_lc_softsigncyrillic uni0493 1; pos @MMK_L_cyr_lc_softsigncyrillic uni04A1 -62; pos @MMK_L_cyr_lc_softsigncyrillic uni04AE -96; pos @MMK_L_cyr_lc_softsigncyrillic uni04AF -43; pos @MMK_L_cyr_lc_softsigncyrillic uni04B0 -60; pos @MMK_L_cyr_lc_softsigncyrillic uni04B1 -43; pos @MMK_L_cyr_lc_softsigncyrillic uni04BB -8; pos @MMK_L_cyr_lc_softsigncyrillic uni04CF -17; pos @MMK_L_cyr_lc_softsigncyrillic zeroinferior 17; pos @MMK_L_cyr_lc_softsigncyrillic zerosuperior -54; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_lc_acyrillic.alt01 8; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_lc_elcyrillic 5; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_lc_gecyrillic 3; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_lc_ucyrillic 9; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_lc_yericyrillic 3; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_lc_zecyrilic 6; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Acyrillic 22; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Checyrillic -46; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Elcyrillic 34; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Encyrillic 6; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -32; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Khacyrillic 19; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Tecyrillic -32; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Ucyrillic -40; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_cyr_uc_Zhecyrillic 29; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_inp_colon 19; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_inp_foot -54; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_inp_guilr 6; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_inp_hyph -10; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_inp_parenth 12; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_inp_period 27; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_inp_quotel -49; pos @MMK_L_cyr_lc_tsecyrillic @MMK_R_inp_quoter -37; pos @MMK_L_cyr_lc_tsecyrillic ampersand 17; pos @MMK_L_cyr_lc_tsecyrillic at -7; pos @MMK_L_cyr_lc_tsecyrillic eightinferior 20; pos @MMK_L_cyr_lc_tsecyrillic eightsuperior -29; pos @MMK_L_cyr_lc_tsecyrillic fiveinferior 19; pos @MMK_L_cyr_lc_tsecyrillic fivesuperior -21; pos @MMK_L_cyr_lc_tsecyrillic fourinferior 29; pos @MMK_L_cyr_lc_tsecyrillic foursuperior -17; pos @MMK_L_cyr_lc_tsecyrillic nineinferior 12; pos @MMK_L_cyr_lc_tsecyrillic ninesuperior -44; pos @MMK_L_cyr_lc_tsecyrillic oneinferior 10; pos @MMK_L_cyr_lc_tsecyrillic onesuperior -29; pos @MMK_L_cyr_lc_tsecyrillic parenright 23; pos @MMK_L_cyr_lc_tsecyrillic registered -28; pos @MMK_L_cyr_lc_tsecyrillic seveninferior -4; pos @MMK_L_cyr_lc_tsecyrillic sevensuperior -47; pos @MMK_L_cyr_lc_tsecyrillic sixinferior 24; pos @MMK_L_cyr_lc_tsecyrillic sixsuperior -21; pos @MMK_L_cyr_lc_tsecyrillic slash 35; pos @MMK_L_cyr_lc_tsecyrillic threeinferior 22; pos @MMK_L_cyr_lc_tsecyrillic threesuperior -21; pos @MMK_L_cyr_lc_tsecyrillic trademark -54; pos @MMK_L_cyr_lc_tsecyrillic twoinferior 23; pos @MMK_L_cyr_lc_tsecyrillic twosuperior -21; pos @MMK_L_cyr_lc_tsecyrillic underscore 29; pos @MMK_L_cyr_lc_tsecyrillic uni0405 12; pos @MMK_L_cyr_lc_tsecyrillic uni0408 24; pos @MMK_L_cyr_lc_tsecyrillic uni0414 33; pos @MMK_L_cyr_lc_tsecyrillic uni0424 -6; pos @MMK_L_cyr_lc_tsecyrillic uni042F 18; pos @MMK_L_cyr_lc_tsecyrillic uni044A -9; pos @MMK_L_cyr_lc_tsecyrillic uni044D 6; pos @MMK_L_cyr_lc_tsecyrillic uni0455 3; pos @MMK_L_cyr_lc_tsecyrillic uni0458 29; pos @MMK_L_cyr_lc_tsecyrillic uni0492 6; pos @MMK_L_cyr_lc_tsecyrillic uni04A1 -5; pos @MMK_L_cyr_lc_tsecyrillic uni04AE -48; pos @MMK_L_cyr_lc_tsecyrillic uni04AF -7; pos @MMK_L_cyr_lc_tsecyrillic uni04B0 -44; pos @MMK_L_cyr_lc_tsecyrillic uni04B1 -6; pos @MMK_L_cyr_lc_tsecyrillic uni04CF -3; pos @MMK_L_cyr_lc_tsecyrillic uni04D4 25; pos @MMK_L_cyr_lc_tsecyrillic zeroinferior 22; pos @MMK_L_cyr_lc_tsecyrillic zerosuperior -21; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_acyrillic -4; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_acyrillic.alt01 -12; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_checyrillic 47; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_elcyrillic -41; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_encyrillic 11; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_gecyrillic -7; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_gheupturncyrillic 6; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_icyrillic 12; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_iicyrillic 12; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_ocyrillic -4; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_ucyrillic 33; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_yericyrillic 18; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_zecyrilic -11; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_zhecyrillic -9; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Acyrillic -20; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Checyrillic -9; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Elcyrillic -24; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Hardsigncyrillic 10; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Khacyrillic -22; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Ocyrillic 20; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Tecyrillic 10; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Ucyrillic -33; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Zecyrillic 4; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Zhecyrillic -29; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_foot 30; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_guill -6; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_guilr -2; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_hyph -10; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_period -57; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_quotel 40; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_quoter 40; pos @MMK_L_cyr_lc_ucyrillic ampersand -16; pos @MMK_L_cyr_lc_ucyrillic at -10; pos @MMK_L_cyr_lc_ucyrillic eightinferior -25; pos @MMK_L_cyr_lc_ucyrillic eightsuperior 30; pos @MMK_L_cyr_lc_ucyrillic fiveinferior -25; pos @MMK_L_cyr_lc_ucyrillic fivesuperior 30; pos @MMK_L_cyr_lc_ucyrillic fourinferior -30; pos @MMK_L_cyr_lc_ucyrillic foursuperior 30; pos @MMK_L_cyr_lc_ucyrillic nineinferior -20; pos @MMK_L_cyr_lc_ucyrillic ninesuperior 17; pos @MMK_L_cyr_lc_ucyrillic oneinferior -20; pos @MMK_L_cyr_lc_ucyrillic parenright -10; pos @MMK_L_cyr_lc_ucyrillic registered 56; pos @MMK_L_cyr_lc_ucyrillic seveninferior -10; pos @MMK_L_cyr_lc_ucyrillic sevensuperior 10; pos @MMK_L_cyr_lc_ucyrillic sixinferior -40; pos @MMK_L_cyr_lc_ucyrillic sixsuperior 32; pos @MMK_L_cyr_lc_ucyrillic slash -15; pos @MMK_L_cyr_lc_ucyrillic threeinferior -20; pos @MMK_L_cyr_lc_ucyrillic threesuperior 18; pos @MMK_L_cyr_lc_ucyrillic trademark 16; pos @MMK_L_cyr_lc_ucyrillic twoinferior -20; pos @MMK_L_cyr_lc_ucyrillic twosuperior 18; pos @MMK_L_cyr_lc_ucyrillic underscore -80; pos @MMK_L_cyr_lc_ucyrillic uni0405 10; pos @MMK_L_cyr_lc_ucyrillic uni0408 -37; pos @MMK_L_cyr_lc_ucyrillic uni0414 -23; pos @MMK_L_cyr_lc_ucyrillic uni0424 13; pos @MMK_L_cyr_lc_ucyrillic uni042F -6; pos @MMK_L_cyr_lc_ucyrillic uni0431 13; pos @MMK_L_cyr_lc_ucyrillic uni0440 10; pos @MMK_L_cyr_lc_ucyrillic uni0444 -4; pos @MMK_L_cyr_lc_ucyrillic uni044A 16; pos @MMK_L_cyr_lc_ucyrillic uni044D -8; pos @MMK_L_cyr_lc_ucyrillic uni044F -10; pos @MMK_L_cyr_lc_ucyrillic uni0455 2; pos @MMK_L_cyr_lc_ucyrillic uni0458 12; pos @MMK_L_cyr_lc_ucyrillic uni0493 6; pos @MMK_L_cyr_lc_ucyrillic uni04A1 30; pos @MMK_L_cyr_lc_ucyrillic uni04AE -5; pos @MMK_L_cyr_lc_ucyrillic uni04AF 28; pos @MMK_L_cyr_lc_ucyrillic uni04B0 -5; pos @MMK_L_cyr_lc_ucyrillic uni04B1 26; pos @MMK_L_cyr_lc_ucyrillic uni04CF -9; pos @MMK_L_cyr_lc_ucyrillic uni04D4 -20; pos @MMK_L_cyr_lc_ucyrillic zeroinferior -30; pos @MMK_L_cyr_lc_ucyrillic zerosuperior 40; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_acyrillic -4; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_acyrillic.alt01 5; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_checyrillic 11; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_khacyrillic 2; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_ocyrillic -3; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_ucyrillic -2; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_yericyrillic 4; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_zhecyrillic -7; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Acyrillic -4; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Checyrillic -33; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Elcyrillic 17; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -38; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Tecyrillic -38; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Ucyrillic -54; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Zecyrillic -10; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_colon 8; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_foot -33; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_guill 10; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_hyph 4; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_period 14; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_quotel -39; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_quoter -37; pos @MMK_L_cyr_lc_vecyrillic ampersand 19; pos @MMK_L_cyr_lc_vecyrillic eightinferior 17; pos @MMK_L_cyr_lc_vecyrillic fiveinferior 14; pos @MMK_L_cyr_lc_vecyrillic fivesuperior -12; pos @MMK_L_cyr_lc_vecyrillic fourinferior 17; pos @MMK_L_cyr_lc_vecyrillic nineinferior 14; pos @MMK_L_cyr_lc_vecyrillic ninesuperior -12; pos @MMK_L_cyr_lc_vecyrillic oneinferior 13; pos @MMK_L_cyr_lc_vecyrillic onesuperior -6; pos @MMK_L_cyr_lc_vecyrillic registered -6; pos @MMK_L_cyr_lc_vecyrillic seveninferior 18; pos @MMK_L_cyr_lc_vecyrillic sevensuperior -24; pos @MMK_L_cyr_lc_vecyrillic sixinferior 14; pos @MMK_L_cyr_lc_vecyrillic threeinferior 17; pos @MMK_L_cyr_lc_vecyrillic threesuperior -3; pos @MMK_L_cyr_lc_vecyrillic trademark -43; pos @MMK_L_cyr_lc_vecyrillic twoinferior 14; pos @MMK_L_cyr_lc_vecyrillic twosuperior -6; pos @MMK_L_cyr_lc_vecyrillic underscore -26; pos @MMK_L_cyr_lc_vecyrillic uni0408 6; pos @MMK_L_cyr_lc_vecyrillic uni0424 15; pos @MMK_L_cyr_lc_vecyrillic uni042F -4; pos @MMK_L_cyr_lc_vecyrillic uni0431 4; pos @MMK_L_cyr_lc_vecyrillic uni0444 -3; pos @MMK_L_cyr_lc_vecyrillic uni044A -2; pos @MMK_L_cyr_lc_vecyrillic uni044F -1; pos @MMK_L_cyr_lc_vecyrillic uni0492 6; pos @MMK_L_cyr_lc_vecyrillic uni0493 7; pos @MMK_L_cyr_lc_vecyrillic uni04A1 4; pos @MMK_L_cyr_lc_vecyrillic uni04AE -69; pos @MMK_L_cyr_lc_vecyrillic uni04AF -5; pos @MMK_L_cyr_lc_vecyrillic uni04B0 -44; pos @MMK_L_cyr_lc_vecyrillic uni04B1 -5; pos @MMK_L_cyr_lc_vecyrillic uni04CF -12; pos @MMK_L_cyr_lc_vecyrillic zeroinferior 14; pos @MMK_L_cyr_lc_vecyrillic zerosuperior -3; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_acyrillic -15; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -6; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_checyrillic 13; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_elcyrillic -14; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_gecyrillic -8; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_khacyrillic -7; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_ocyrillic -15; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_ucyrillic -3; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_yericyrillic 6; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_zecyrilic -9; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_lc_zhecyrillic -13; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Acyrillic -6; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Checyrillic -17; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Elcyrillic 8; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -14; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Khacyrillic -7; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Ocyrillic -11; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Tecyrillic -14; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Ucyrillic -59; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Zecyrillic -20; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_cyr_uc_Zhecyrillic -12; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_inp_foot -20; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_inp_guill -28; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_inp_guilr -14; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_inp_hyph -41; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_inp_period -6; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_inp_quotel -20; pos @MMK_L_cyr_lc_zhecyrillic @MMK_R_inp_quoter -6; pos @MMK_L_cyr_lc_zhecyrillic ampersand -19; pos @MMK_L_cyr_lc_zhecyrillic at -23; pos @MMK_L_cyr_lc_zhecyrillic copyright -13; pos @MMK_L_cyr_lc_zhecyrillic eightinferior -13; pos @MMK_L_cyr_lc_zhecyrillic fiveinferior -9; pos @MMK_L_cyr_lc_zhecyrillic fivesuperior -10; pos @MMK_L_cyr_lc_zhecyrillic fourinferior -6; pos @MMK_L_cyr_lc_zhecyrillic foursuperior 6; pos @MMK_L_cyr_lc_zhecyrillic nineinferior -26; pos @MMK_L_cyr_lc_zhecyrillic ninesuperior -20; pos @MMK_L_cyr_lc_zhecyrillic oneinferior -17; pos @MMK_L_cyr_lc_zhecyrillic onesuperior -21; pos @MMK_L_cyr_lc_zhecyrillic registered -5; pos @MMK_L_cyr_lc_zhecyrillic seveninferior -32; pos @MMK_L_cyr_lc_zhecyrillic sevensuperior -32; pos @MMK_L_cyr_lc_zhecyrillic sixinferior -12; pos @MMK_L_cyr_lc_zhecyrillic threesuperior -4; pos @MMK_L_cyr_lc_zhecyrillic trademark -36; pos @MMK_L_cyr_lc_zhecyrillic twoinferior -6; pos @MMK_L_cyr_lc_zhecyrillic twosuperior -8; pos @MMK_L_cyr_lc_zhecyrillic underscore -30; pos @MMK_L_cyr_lc_zhecyrillic uni0405 -4; pos @MMK_L_cyr_lc_zhecyrillic uni0408 -4; pos @MMK_L_cyr_lc_zhecyrillic uni0414 -6; pos @MMK_L_cyr_lc_zhecyrillic uni0424 3; pos @MMK_L_cyr_lc_zhecyrillic uni042F -8; pos @MMK_L_cyr_lc_zhecyrillic uni0444 -15; pos @MMK_L_cyr_lc_zhecyrillic uni044A -8; pos @MMK_L_cyr_lc_zhecyrillic uni044D -4; pos @MMK_L_cyr_lc_zhecyrillic uni044F -24; pos @MMK_L_cyr_lc_zhecyrillic uni0455 -4; pos @MMK_L_cyr_lc_zhecyrillic uni0492 6; pos @MMK_L_cyr_lc_zhecyrillic uni04AE -59; pos @MMK_L_cyr_lc_zhecyrillic uni04AF -6; pos @MMK_L_cyr_lc_zhecyrillic uni04B0 -54; pos @MMK_L_cyr_lc_zhecyrillic uni04B1 -6; pos @MMK_L_cyr_lc_zhecyrillic uni04CF -12; pos @MMK_L_cyr_lc_zhecyrillic uni04D4 -6; pos @MMK_L_cyr_lc_zhecyrillic zeroinferior -9; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_acyrillic -16; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_acyrillic.alt01 -4; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_checyrillic -44; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_elcyrillic 4; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_encyrillic -4; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_gecyrillic -8; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_gheupturncyrillic -4; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_icyrillic -11; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_iicyrillic -20; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_ocyrillic -21; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_tshecyrillic -10; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_ucyrillic -18; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_yericyrillic -8; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_zecyrilic -5; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Acyrillic 15; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Checyrillic -96; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Elcyrillic 15; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Hardsigncyrillic -57; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Khacyrillic 21; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Ocyrillic -25; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Tecyrillic -57; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Ucyrillic -62; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Zecyrillic -31; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Zhecyrillic 17; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_foot -94; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_guill -28; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_guilr -12; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_hyph -27; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_period 15; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_quotel -104; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_quoter -100; pos @MMK_L_cyr_uc_Acyrillic ampersand -27; pos @MMK_L_cyr_uc_Acyrillic at -40; pos @MMK_L_cyr_uc_Acyrillic eightinferior 6; pos @MMK_L_cyr_uc_Acyrillic eightsuperior -60; pos @MMK_L_cyr_uc_Acyrillic exclamdown 30; pos @MMK_L_cyr_uc_Acyrillic fivesuperior -62; pos @MMK_L_cyr_uc_Acyrillic fourinferior 8; pos @MMK_L_cyr_uc_Acyrillic foursuperior -60; pos @MMK_L_cyr_uc_Acyrillic nineinferior -15; pos @MMK_L_cyr_uc_Acyrillic ninesuperior -80; pos @MMK_L_cyr_uc_Acyrillic oneinferior 8; pos @MMK_L_cyr_uc_Acyrillic onesuperior -60; pos @MMK_L_cyr_uc_Acyrillic question -20; pos @MMK_L_cyr_uc_Acyrillic questiondown 40; pos @MMK_L_cyr_uc_Acyrillic registered -60; pos @MMK_L_cyr_uc_Acyrillic seveninferior -12; pos @MMK_L_cyr_uc_Acyrillic sevensuperior -80; pos @MMK_L_cyr_uc_Acyrillic sixinferior -6; pos @MMK_L_cyr_uc_Acyrillic sixsuperior -60; pos @MMK_L_cyr_uc_Acyrillic slash 20; pos @MMK_L_cyr_uc_Acyrillic threeinferior 10; pos @MMK_L_cyr_uc_Acyrillic threesuperior -68; pos @MMK_L_cyr_uc_Acyrillic trademark -89; pos @MMK_L_cyr_uc_Acyrillic twoinferior 14; pos @MMK_L_cyr_uc_Acyrillic twosuperior -60; pos @MMK_L_cyr_uc_Acyrillic underscore 15; pos @MMK_L_cyr_uc_Acyrillic uni0408 6; pos @MMK_L_cyr_uc_Acyrillic uni0414 18; pos @MMK_L_cyr_uc_Acyrillic uni0424 -44; pos @MMK_L_cyr_uc_Acyrillic uni042F 9; pos @MMK_L_cyr_uc_Acyrillic uni0431 -23; pos @MMK_L_cyr_uc_Acyrillic uni0440 -10; pos @MMK_L_cyr_uc_Acyrillic uni0444 -21; pos @MMK_L_cyr_uc_Acyrillic uni044A -50; pos @MMK_L_cyr_uc_Acyrillic uni044D -5; pos @MMK_L_cyr_uc_Acyrillic uni044F -12; pos @MMK_L_cyr_uc_Acyrillic uni0493 -4; pos @MMK_L_cyr_uc_Acyrillic uni04A1 -17; pos @MMK_L_cyr_uc_Acyrillic uni04AE -55; pos @MMK_L_cyr_uc_Acyrillic uni04AF -27; pos @MMK_L_cyr_uc_Acyrillic uni04B0 -55; pos @MMK_L_cyr_uc_Acyrillic uni04B1 -27; pos @MMK_L_cyr_uc_Acyrillic uni04BB -10; pos @MMK_L_cyr_uc_Acyrillic uni04CF -4; pos @MMK_L_cyr_uc_Acyrillic uni04D4 15; pos @MMK_L_cyr_uc_Acyrillic zerosuperior -60; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_acyrillic -14; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_checyrillic -5; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_encyrillic -5; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_gecyrillic -13; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_gheupturncyrillic -6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_icyrillic -5; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_iicyrillic -5; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_khacyrillic -3; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_ocyrillic -14; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_tshecyrillic -6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_ucyrillic 9; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_yericyrillic -5; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_zecyrilic -9; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_zhecyrillic -3; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Acyrillic 6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Checyrillic -6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Hardsigncyrillic -4; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Ocyrillic -12; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Tecyrillic -4; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Ucyrillic -13; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Zecyrillic -13; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Zhecyrillic 2; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_colon 4; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_foot -12; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_guill -24; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_guilr -13; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_hyph -29; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_parenth 5; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_period 4; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_quotel -16; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_quoter -14; pos @MMK_L_cyr_uc_Decyrillic ampersand -12; pos @MMK_L_cyr_uc_Decyrillic at -12; pos @MMK_L_cyr_uc_Decyrillic eightinferior 5; pos @MMK_L_cyr_uc_Decyrillic eightsuperior -6; pos @MMK_L_cyr_uc_Decyrillic fivesuperior -6; pos @MMK_L_cyr_uc_Decyrillic fourinferior -8; pos @MMK_L_cyr_uc_Decyrillic foursuperior -9; pos @MMK_L_cyr_uc_Decyrillic nineinferior -9; pos @MMK_L_cyr_uc_Decyrillic ninesuperior -3; pos @MMK_L_cyr_uc_Decyrillic onesuperior -6; pos @MMK_L_cyr_uc_Decyrillic parenright 8; pos @MMK_L_cyr_uc_Decyrillic seveninferior -26; pos @MMK_L_cyr_uc_Decyrillic sevensuperior -6; pos @MMK_L_cyr_uc_Decyrillic sixinferior -3; pos @MMK_L_cyr_uc_Decyrillic sixsuperior -12; pos @MMK_L_cyr_uc_Decyrillic slash 16; pos @MMK_L_cyr_uc_Decyrillic threesuperior -3; pos @MMK_L_cyr_uc_Decyrillic twosuperior -6; pos @MMK_L_cyr_uc_Decyrillic underscore 17; pos @MMK_L_cyr_uc_Decyrillic uni0408 6; pos @MMK_L_cyr_uc_Decyrillic uni0414 8; pos @MMK_L_cyr_uc_Decyrillic uni0424 -12; pos @MMK_L_cyr_uc_Decyrillic uni042F 6; pos @MMK_L_cyr_uc_Decyrillic uni0431 -10; pos @MMK_L_cyr_uc_Decyrillic uni0444 -13; pos @MMK_L_cyr_uc_Decyrillic uni044A -17; pos @MMK_L_cyr_uc_Decyrillic uni044D -10; pos @MMK_L_cyr_uc_Decyrillic uni044F -14; pos @MMK_L_cyr_uc_Decyrillic uni0458 62; pos @MMK_L_cyr_uc_Decyrillic uni0493 -6; pos @MMK_L_cyr_uc_Decyrillic uni04A1 -13; pos @MMK_L_cyr_uc_Decyrillic uni04AE -7; pos @MMK_L_cyr_uc_Decyrillic uni04AF -19; pos @MMK_L_cyr_uc_Decyrillic uni04B0 -7; pos @MMK_L_cyr_uc_Decyrillic uni04B1 -8; pos @MMK_L_cyr_uc_Decyrillic uni04BB -3; pos @MMK_L_cyr_uc_Decyrillic uni04CF -17; pos @MMK_L_cyr_uc_Decyrillic uni04D4 6; pos @MMK_L_cyr_uc_Decyrillic zerosuperior -6; pos @MMK_L_cyr_uc_Encyrillic trademark 6; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_acyrillic -10; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_acyrillic.alt01 -10; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_checyrillic 13; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_elcyrillic -4; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_ocyrillic -10; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_ucyrillic 5; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_zecyrilic -7; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_zhecyrillic -3; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Acyrillic -15; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Elcyrillic 4; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Hardsigncyrillic 5; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Ocyrillic -8; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Tecyrillic 5; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Ucyrillic -5; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Zecyrillic -6; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_foot 10; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_hyph -20; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_period -22; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_quotel 6; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_quoter 6; pos @MMK_L_cyr_uc_Escyrillic at -6; pos @MMK_L_cyr_uc_Escyrillic eightinferior -6; pos @MMK_L_cyr_uc_Escyrillic eightsuperior 12; pos @MMK_L_cyr_uc_Escyrillic fiveinferior -7; pos @MMK_L_cyr_uc_Escyrillic fivesuperior 10; pos @MMK_L_cyr_uc_Escyrillic fourinferior 3; pos @MMK_L_cyr_uc_Escyrillic foursuperior 6; pos @MMK_L_cyr_uc_Escyrillic nineinferior -10; pos @MMK_L_cyr_uc_Escyrillic ninesuperior 12; pos @MMK_L_cyr_uc_Escyrillic oneinferior -10; pos @MMK_L_cyr_uc_Escyrillic onesuperior 5; pos @MMK_L_cyr_uc_Escyrillic registered 25; pos @MMK_L_cyr_uc_Escyrillic seveninferior -20; pos @MMK_L_cyr_uc_Escyrillic sevensuperior 2; pos @MMK_L_cyr_uc_Escyrillic sixinferior 3; pos @MMK_L_cyr_uc_Escyrillic sixsuperior 16; pos @MMK_L_cyr_uc_Escyrillic slash -13; pos @MMK_L_cyr_uc_Escyrillic threeinferior -5; pos @MMK_L_cyr_uc_Escyrillic threesuperior 6; pos @MMK_L_cyr_uc_Escyrillic trademark 10; pos @MMK_L_cyr_uc_Escyrillic twoinferior -7; pos @MMK_L_cyr_uc_Escyrillic twosuperior 10; pos @MMK_L_cyr_uc_Escyrillic underscore -20; pos @MMK_L_cyr_uc_Escyrillic uni0414 -10; pos @MMK_L_cyr_uc_Escyrillic uni042F -5; pos @MMK_L_cyr_uc_Escyrillic uni0440 -4; pos @MMK_L_cyr_uc_Escyrillic uni0444 -13; pos @MMK_L_cyr_uc_Escyrillic uni044D -6; pos @MMK_L_cyr_uc_Escyrillic uni044F -5; pos @MMK_L_cyr_uc_Escyrillic uni04AE -4; pos @MMK_L_cyr_uc_Escyrillic uni04B0 -4; pos @MMK_L_cyr_uc_Escyrillic uni04D4 -15; pos @MMK_L_cyr_uc_Escyrillic zerosuperior 12; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_acyrillic -39; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -29; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_checyrillic 14; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_elcyrillic -48; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_gecyrillic -25; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_gheupturncyrillic -8; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_iicyrillic -10; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_khacyrillic -18; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_ocyrillic -39; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_tshecyrillic 6; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_ucyrillic 6; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_yericyrillic 4; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_zecyrilic -23; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_zhecyrillic -16; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Acyrillic -58; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Checyrillic 18; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Elcyrillic -49; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Hardsigncyrillic 16; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Khacyrillic 8; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Ocyrillic 3; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Tecyrillic 16; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Ucyrillic 11; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Zecyrillic -3; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_colon -4; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_foot 30; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_guill -54; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_guilr -32; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_hyph -56; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_period -97; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_quotel 20; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_quoter 10; pos @MMK_L_cyr_uc_Gecyrillic ampersand -19; pos @MMK_L_cyr_uc_Gecyrillic at -10; pos @MMK_L_cyr_uc_Gecyrillic eightinferior -77; pos @MMK_L_cyr_uc_Gecyrillic eightsuperior 20; pos @MMK_L_cyr_uc_Gecyrillic fiveinferior -77; pos @MMK_L_cyr_uc_Gecyrillic fivesuperior 20; pos @MMK_L_cyr_uc_Gecyrillic fourinferior -87; pos @MMK_L_cyr_uc_Gecyrillic foursuperior 10; pos @MMK_L_cyr_uc_Gecyrillic nineinferior -82; pos @MMK_L_cyr_uc_Gecyrillic ninesuperior 30; pos @MMK_L_cyr_uc_Gecyrillic oneinferior -77; pos @MMK_L_cyr_uc_Gecyrillic onesuperior 25; pos @MMK_L_cyr_uc_Gecyrillic parenright 18; pos @MMK_L_cyr_uc_Gecyrillic question 29; pos @MMK_L_cyr_uc_Gecyrillic registered 46; pos @MMK_L_cyr_uc_Gecyrillic seveninferior -67; pos @MMK_L_cyr_uc_Gecyrillic sevensuperior 24; pos @MMK_L_cyr_uc_Gecyrillic sixinferior -77; pos @MMK_L_cyr_uc_Gecyrillic sixsuperior 30; pos @MMK_L_cyr_uc_Gecyrillic slash -74; pos @MMK_L_cyr_uc_Gecyrillic threeinferior -77; pos @MMK_L_cyr_uc_Gecyrillic threesuperior 24; pos @MMK_L_cyr_uc_Gecyrillic trademark 25; pos @MMK_L_cyr_uc_Gecyrillic twoinferior -77; pos @MMK_L_cyr_uc_Gecyrillic twosuperior 24; pos @MMK_L_cyr_uc_Gecyrillic underscore -83; pos @MMK_L_cyr_uc_Gecyrillic uni0405 -3; pos @MMK_L_cyr_uc_Gecyrillic uni0408 -46; pos @MMK_L_cyr_uc_Gecyrillic uni0414 -36; pos @MMK_L_cyr_uc_Gecyrillic uni0424 8; pos @MMK_L_cyr_uc_Gecyrillic uni042F -9; pos @MMK_L_cyr_uc_Gecyrillic uni0431 -4; pos @MMK_L_cyr_uc_Gecyrillic uni0444 -38; pos @MMK_L_cyr_uc_Gecyrillic uni044A -4; pos @MMK_L_cyr_uc_Gecyrillic uni044D -21; pos @MMK_L_cyr_uc_Gecyrillic uni044F -40; pos @MMK_L_cyr_uc_Gecyrillic uni0455 -15; pos @MMK_L_cyr_uc_Gecyrillic uni0493 -8; pos @MMK_L_cyr_uc_Gecyrillic uni04AE 6; pos @MMK_L_cyr_uc_Gecyrillic uni04AF 6; pos @MMK_L_cyr_uc_Gecyrillic uni04B0 6; pos @MMK_L_cyr_uc_Gecyrillic uni04B1 6; pos @MMK_L_cyr_uc_Gecyrillic uni04BB 6; pos @MMK_L_cyr_uc_Gecyrillic uni04CF -12; pos @MMK_L_cyr_uc_Gecyrillic uni04D4 -72; pos @MMK_L_cyr_uc_Gecyrillic zeroinferior -77; pos @MMK_L_cyr_uc_Gecyrillic zerosuperior 24; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_lc_acyrillic -15; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_lc_ocyrillic -15; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_lc_zecyrilic -6; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Checyrillic -8; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Elcyrillic 1; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -5; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Ocyrillic -3; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Tecyrillic -5; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Ucyrillic -12; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Zecyrillic -12; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Zhecyrillic -3; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_inp_guill -15; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_inp_hyph -20; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_inp_period -6; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_inp_quotel -6; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_inp_quoter -9; pos @MMK_L_cyr_uc_Jecyrillic ampersand -9; pos @MMK_L_cyr_uc_Jecyrillic at -12; pos @MMK_L_cyr_uc_Jecyrillic eightsuperior 4; pos @MMK_L_cyr_uc_Jecyrillic fiveinferior -10; pos @MMK_L_cyr_uc_Jecyrillic fivesuperior 4; pos @MMK_L_cyr_uc_Jecyrillic fourinferior 8; pos @MMK_L_cyr_uc_Jecyrillic nineinferior -15; pos @MMK_L_cyr_uc_Jecyrillic ninesuperior 8; pos @MMK_L_cyr_uc_Jecyrillic oneinferior -5; pos @MMK_L_cyr_uc_Jecyrillic onesuperior 4; pos @MMK_L_cyr_uc_Jecyrillic registered 20; pos @MMK_L_cyr_uc_Jecyrillic seveninferior -20; pos @MMK_L_cyr_uc_Jecyrillic sixsuperior 4; pos @MMK_L_cyr_uc_Jecyrillic slash -10; pos @MMK_L_cyr_uc_Jecyrillic threesuperior 10; pos @MMK_L_cyr_uc_Jecyrillic trademark -6; pos @MMK_L_cyr_uc_Jecyrillic twosuperior 8; pos @MMK_L_cyr_uc_Jecyrillic uni0414 -3; pos @MMK_L_cyr_uc_Jecyrillic uni0424 -6; pos @MMK_L_cyr_uc_Jecyrillic uni0431 -3; pos @MMK_L_cyr_uc_Jecyrillic uni0444 -18; pos @MMK_L_cyr_uc_Jecyrillic uni044A -10; pos @MMK_L_cyr_uc_Jecyrillic uni044D -5; pos @MMK_L_cyr_uc_Jecyrillic uni044F -3; pos @MMK_L_cyr_uc_Jecyrillic uni04AE -10; pos @MMK_L_cyr_uc_Jecyrillic uni04B0 -10; pos @MMK_L_cyr_uc_Jecyrillic zerosuperior 10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_acyrillic -34; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_acyrillic.alt01 -15; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_checyrillic -27; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_elcyrillic -4; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_encyrillic -10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_gecyrillic -26; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_gheupturncyrillic -10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_icyrillic -10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_iicyrillic -19; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_khacyrillic -13; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_ocyrillic -39; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_ucyrillic -13; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_yericyrillic -13; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_zecyrilic -20; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_zhecyrillic -10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Acyrillic 11; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Checyrillic -6; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Elcyrillic 3; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Hardsigncyrillic -6; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Khacyrillic 2; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Ocyrillic -26; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Tecyrillic -6; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Ucyrillic -10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Zecyrillic -10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Zhecyrillic 11; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_colon -6; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_foot -8; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_guill -61; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_guilr -31; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_hyph -84; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_period 3; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_quotel -3; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_quoter -18; pos @MMK_L_cyr_uc_Kacyrillic ampersand -33; pos @MMK_L_cyr_uc_Kacyrillic at -47; pos @MMK_L_cyr_uc_Kacyrillic copyright -34; pos @MMK_L_cyr_uc_Kacyrillic eightinferior -3; pos @MMK_L_cyr_uc_Kacyrillic eightsuperior -3; pos @MMK_L_cyr_uc_Kacyrillic fiveinferior -9; pos @MMK_L_cyr_uc_Kacyrillic fivesuperior -8; pos @MMK_L_cyr_uc_Kacyrillic fourinferior -12; pos @MMK_L_cyr_uc_Kacyrillic foursuperior -20; pos @MMK_L_cyr_uc_Kacyrillic nineinferior -12; pos @MMK_L_cyr_uc_Kacyrillic ninesuperior 12; pos @MMK_L_cyr_uc_Kacyrillic oneinferior 4; pos @MMK_L_cyr_uc_Kacyrillic onesuperior -8; pos @MMK_L_cyr_uc_Kacyrillic question 7; pos @MMK_L_cyr_uc_Kacyrillic seveninferior -23; pos @MMK_L_cyr_uc_Kacyrillic sevensuperior 4; pos @MMK_L_cyr_uc_Kacyrillic sixinferior -14; pos @MMK_L_cyr_uc_Kacyrillic sixsuperior -3; pos @MMK_L_cyr_uc_Kacyrillic slash 8; pos @MMK_L_cyr_uc_Kacyrillic threesuperior -8; pos @MMK_L_cyr_uc_Kacyrillic trademark 2; pos @MMK_L_cyr_uc_Kacyrillic twoinferior 8; pos @MMK_L_cyr_uc_Kacyrillic twosuperior -8; pos @MMK_L_cyr_uc_Kacyrillic uni0405 -4; pos @MMK_L_cyr_uc_Kacyrillic uni0408 -3; pos @MMK_L_cyr_uc_Kacyrillic uni0414 16; pos @MMK_L_cyr_uc_Kacyrillic uni0424 -35; pos @MMK_L_cyr_uc_Kacyrillic uni042F 5; pos @MMK_L_cyr_uc_Kacyrillic uni0431 -25; pos @MMK_L_cyr_uc_Kacyrillic uni0440 -10; pos @MMK_L_cyr_uc_Kacyrillic uni0444 -39; pos @MMK_L_cyr_uc_Kacyrillic uni044A -41; pos @MMK_L_cyr_uc_Kacyrillic uni044D -20; pos @MMK_L_cyr_uc_Kacyrillic uni044F -28; pos @MMK_L_cyr_uc_Kacyrillic uni0455 -12; pos @MMK_L_cyr_uc_Kacyrillic uni0458 -6; pos @MMK_L_cyr_uc_Kacyrillic uni0493 -10; pos @MMK_L_cyr_uc_Kacyrillic uni04A1 -30; pos @MMK_L_cyr_uc_Kacyrillic uni04AE -17; pos @MMK_L_cyr_uc_Kacyrillic uni04AF -14; pos @MMK_L_cyr_uc_Kacyrillic uni04B0 -17; pos @MMK_L_cyr_uc_Kacyrillic uni04B1 -10; pos @MMK_L_cyr_uc_Kacyrillic uni04BB -3; pos @MMK_L_cyr_uc_Kacyrillic uni04CF -21; pos @MMK_L_cyr_uc_Kacyrillic uni04D4 14; pos @MMK_L_cyr_uc_Kacyrillic zeroinferior -12; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_acyrillic -36; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_acyrillic.alt01 -14; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_checyrillic -37; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_elcyrillic 8; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_encyrillic -19; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_gecyrillic -27; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_gheupturncyrillic -16; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_icyrillic -17; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_iicyrillic -17; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_khacyrillic 2; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_ocyrillic -42; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_tshecyrillic -5; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_ucyrillic 26; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_yericyrillic -14; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_zecyrilic -11; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_zhecyrillic -6; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Acyrillic 25; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Checyrillic -17; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Elcyrillic 14; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Hardsigncyrillic -14; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Khacyrillic 13; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Ocyrillic -32; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Tecyrillic -14; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Ucyrillic -25; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Zecyrillic -16; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Zhecyrillic 23; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_colon 8; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_foot -14; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_guill -67; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_guilr -27; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_hyph -84; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_parenth 9; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_period 18; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_quotel -18; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_quoter -29; pos @MMK_L_cyr_uc_Kadescendercyrillic ampersand -18; pos @MMK_L_cyr_uc_Kadescendercyrillic at -50; pos @MMK_L_cyr_uc_Kadescendercyrillic copyright -34; pos @MMK_L_cyr_uc_Kadescendercyrillic eightinferior 5; pos @MMK_L_cyr_uc_Kadescendercyrillic eightsuperior -11; pos @MMK_L_cyr_uc_Kadescendercyrillic fivesuperior -14; pos @MMK_L_cyr_uc_Kadescendercyrillic foursuperior -23; pos @MMK_L_cyr_uc_Kadescendercyrillic nineinferior -5; pos @MMK_L_cyr_uc_Kadescendercyrillic oneinferior 4; pos @MMK_L_cyr_uc_Kadescendercyrillic onesuperior -14; pos @MMK_L_cyr_uc_Kadescendercyrillic parenright 23; pos @MMK_L_cyr_uc_Kadescendercyrillic question -4; pos @MMK_L_cyr_uc_Kadescendercyrillic registered -8; pos @MMK_L_cyr_uc_Kadescendercyrillic seveninferior -17; pos @MMK_L_cyr_uc_Kadescendercyrillic sevensuperior -4; pos @MMK_L_cyr_uc_Kadescendercyrillic sixinferior -3; pos @MMK_L_cyr_uc_Kadescendercyrillic sixsuperior -8; pos @MMK_L_cyr_uc_Kadescendercyrillic slash 33; pos @MMK_L_cyr_uc_Kadescendercyrillic threeinferior 8; pos @MMK_L_cyr_uc_Kadescendercyrillic threesuperior -14; pos @MMK_L_cyr_uc_Kadescendercyrillic trademark -4; pos @MMK_L_cyr_uc_Kadescendercyrillic twoinferior 14; pos @MMK_L_cyr_uc_Kadescendercyrillic twosuperior -14; pos @MMK_L_cyr_uc_Kadescendercyrillic underscore 37; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0405 -3; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0408 9; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0414 25; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0424 -34; pos @MMK_L_cyr_uc_Kadescendercyrillic uni042F 12; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0431 -29; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0444 -36; pos @MMK_L_cyr_uc_Kadescendercyrillic uni044A -41; pos @MMK_L_cyr_uc_Kadescendercyrillic uni044D -11; pos @MMK_L_cyr_uc_Kadescendercyrillic uni044F -18; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0458 85; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0493 -16; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04A1 -27; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04AE -24; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04AF -23; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04B0 -24; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04B1 -19; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04BB -5; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04CF -20; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04D4 24; pos @MMK_L_cyr_uc_Kadescendercyrillic zeroinferior -4; pos @MMK_L_cyr_uc_Kadescendercyrillic zerosuperior -8; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_checyrillic 11; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_elcyrillic -17; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_gecyrillic -5; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_ucyrillic 10; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_zecyrilic -5; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_zhecyrillic -11; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Acyrillic -25; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Checyrillic -25; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Elcyrillic -15; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Hardsigncyrillic -14; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Khacyrillic -19; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Ocyrillic 9; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Tecyrillic -14; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Ucyrillic -51; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Zecyrillic -16; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Zhecyrillic -33; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_foot -20; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_guill 20; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_guilr 10; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_hyph 20; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_period -33; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_quotel -37; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_quoter -37; pos @MMK_L_cyr_uc_Ocyrillic fivesuperior -15; pos @MMK_L_cyr_uc_Ocyrillic fourinferior -10; pos @MMK_L_cyr_uc_Ocyrillic nineinferior 6; pos @MMK_L_cyr_uc_Ocyrillic ninesuperior -20; pos @MMK_L_cyr_uc_Ocyrillic onesuperior -10; pos @MMK_L_cyr_uc_Ocyrillic question -15; pos @MMK_L_cyr_uc_Ocyrillic registered 6; pos @MMK_L_cyr_uc_Ocyrillic seveninferior 18; pos @MMK_L_cyr_uc_Ocyrillic sevensuperior -32; pos @MMK_L_cyr_uc_Ocyrillic sixsuperior -10; pos @MMK_L_cyr_uc_Ocyrillic slash -10; pos @MMK_L_cyr_uc_Ocyrillic threesuperior -10; pos @MMK_L_cyr_uc_Ocyrillic trademark -21; pos @MMK_L_cyr_uc_Ocyrillic twosuperior -8; pos @MMK_L_cyr_uc_Ocyrillic underscore -60; pos @MMK_L_cyr_uc_Ocyrillic uni0405 -5; pos @MMK_L_cyr_uc_Ocyrillic uni0408 -14; pos @MMK_L_cyr_uc_Ocyrillic uni0414 -28; pos @MMK_L_cyr_uc_Ocyrillic uni0424 13; pos @MMK_L_cyr_uc_Ocyrillic uni042F -15; pos @MMK_L_cyr_uc_Ocyrillic uni044D -3; pos @MMK_L_cyr_uc_Ocyrillic uni044F -6; pos @MMK_L_cyr_uc_Ocyrillic uni0492 10; pos @MMK_L_cyr_uc_Ocyrillic uni0493 3; pos @MMK_L_cyr_uc_Ocyrillic uni04AE -42; pos @MMK_L_cyr_uc_Ocyrillic uni04AF 4; pos @MMK_L_cyr_uc_Ocyrillic uni04B0 -41; pos @MMK_L_cyr_uc_Ocyrillic uni04B1 4; pos @MMK_L_cyr_uc_Ocyrillic uni04D4 -27; pos @MMK_L_cyr_uc_Ocyrillic zeroinferior 10; pos @MMK_L_cyr_uc_Ocyrillic zerosuperior -10; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_acyrillic 11; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_elcyrillic 3; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_gecyrillic 4; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_ocyrillic 11; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_ucyrillic -8; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_yericyrillic 4; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_zhecyrillic -3; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Checyrillic -57; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Elcyrillic 14; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Hardsigncyrillic -74; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Khacyrillic -10; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Ocyrillic 9; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Tecyrillic -74; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Ucyrillic -41; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Zecyrillic -10; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Zhecyrillic -2; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_foot -89; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_guill 23; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_guilr 6; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_hyph 9; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_parenth -6; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_quotel -97; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_quoter -92; pos @MMK_L_cyr_uc_Softsigncyrillic ampersand 16; pos @MMK_L_cyr_uc_Softsigncyrillic at 1; pos @MMK_L_cyr_uc_Softsigncyrillic eightinferior 23; pos @MMK_L_cyr_uc_Softsigncyrillic eightsuperior -26; pos @MMK_L_cyr_uc_Softsigncyrillic fiveinferior 14; pos @MMK_L_cyr_uc_Softsigncyrillic fivesuperior -24; pos @MMK_L_cyr_uc_Softsigncyrillic fourinferior 17; pos @MMK_L_cyr_uc_Softsigncyrillic foursuperior -32; pos @MMK_L_cyr_uc_Softsigncyrillic nineinferior 20; pos @MMK_L_cyr_uc_Softsigncyrillic ninesuperior -27; pos @MMK_L_cyr_uc_Softsigncyrillic oneinferior 8; pos @MMK_L_cyr_uc_Softsigncyrillic onesuperior -6; pos @MMK_L_cyr_uc_Softsigncyrillic parenright -6; pos @MMK_L_cyr_uc_Softsigncyrillic question -17; pos @MMK_L_cyr_uc_Softsigncyrillic registered -44; pos @MMK_L_cyr_uc_Softsigncyrillic seveninferior 14; pos @MMK_L_cyr_uc_Softsigncyrillic sevensuperior -52; pos @MMK_L_cyr_uc_Softsigncyrillic sixinferior 20; pos @MMK_L_cyr_uc_Softsigncyrillic sixsuperior -26; pos @MMK_L_cyr_uc_Softsigncyrillic threeinferior 16; pos @MMK_L_cyr_uc_Softsigncyrillic threesuperior -16; pos @MMK_L_cyr_uc_Softsigncyrillic trademark -73; pos @MMK_L_cyr_uc_Softsigncyrillic twoinferior 14; pos @MMK_L_cyr_uc_Softsigncyrillic twosuperior -12; pos @MMK_L_cyr_uc_Softsigncyrillic underscore -43; pos @MMK_L_cyr_uc_Softsigncyrillic uni0408 9; pos @MMK_L_cyr_uc_Softsigncyrillic uni0414 -7; pos @MMK_L_cyr_uc_Softsigncyrillic uni0424 16; pos @MMK_L_cyr_uc_Softsigncyrillic uni042F -8; pos @MMK_L_cyr_uc_Softsigncyrillic uni0431 11; pos @MMK_L_cyr_uc_Softsigncyrillic uni0444 9; pos @MMK_L_cyr_uc_Softsigncyrillic uni044A -8; pos @MMK_L_cyr_uc_Softsigncyrillic uni0492 8; pos @MMK_L_cyr_uc_Softsigncyrillic uni0493 15; pos @MMK_L_cyr_uc_Softsigncyrillic uni04AE -79; pos @MMK_L_cyr_uc_Softsigncyrillic uni04AF -11; pos @MMK_L_cyr_uc_Softsigncyrillic uni04B0 -44; pos @MMK_L_cyr_uc_Softsigncyrillic uni04B1 -11; pos @MMK_L_cyr_uc_Softsigncyrillic uni04D4 -5; pos @MMK_L_cyr_uc_Softsigncyrillic zeroinferior 23; pos @MMK_L_cyr_uc_Softsigncyrillic zerosuperior -32; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_acyrillic -23; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -5; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_checyrillic -6; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_elcyrillic -5; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_encyrillic -9; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_gecyrillic -22; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_gheupturncyrillic -9; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_icyrillic -14; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_iicyrillic -16; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_khacyrillic -8; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_ocyrillic -22; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_tshecyrillic -5; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_ucyrillic 14; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_yericyrillic -13; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_zecyrilic -13; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_lc_zhecyrillic -5; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_uc_Acyrillic 3; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_uc_Checyrillic -12; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_uc_Elcyrillic -8; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -11; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_uc_Ocyrillic -16; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_uc_Tecyrillic -10; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_uc_Ucyrillic -18; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_cyr_uc_Zecyrillic -17; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_colon -12; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_foot -17; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_guill -24; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_guilr -19; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_hyph -30; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_parenth 23; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_period -6; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_quotel -26; pos @MMK_L_cyr_uc_Tsecyrillic @MMK_R_inp_quoter -23; pos @MMK_L_cyr_uc_Tsecyrillic ampersand -13; pos @MMK_L_cyr_uc_Tsecyrillic at -17; pos @MMK_L_cyr_uc_Tsecyrillic copyright -9; pos @MMK_L_cyr_uc_Tsecyrillic eightinferior -8; pos @MMK_L_cyr_uc_Tsecyrillic eightsuperior -7; pos @MMK_L_cyr_uc_Tsecyrillic exclam -10; pos @MMK_L_cyr_uc_Tsecyrillic fiveinferior -12; pos @MMK_L_cyr_uc_Tsecyrillic fivesuperior -17; pos @MMK_L_cyr_uc_Tsecyrillic fourinferior -24; pos @MMK_L_cyr_uc_Tsecyrillic foursuperior -20; pos @MMK_L_cyr_uc_Tsecyrillic nineinferior -13; pos @MMK_L_cyr_uc_Tsecyrillic ninesuperior -6; pos @MMK_L_cyr_uc_Tsecyrillic oneinferior -10; pos @MMK_L_cyr_uc_Tsecyrillic onesuperior -12; pos @MMK_L_cyr_uc_Tsecyrillic parenright 32; pos @MMK_L_cyr_uc_Tsecyrillic question -17; pos @MMK_L_cyr_uc_Tsecyrillic registered -9; pos @MMK_L_cyr_uc_Tsecyrillic seveninferior -23; pos @MMK_L_cyr_uc_Tsecyrillic sevensuperior -9; pos @MMK_L_cyr_uc_Tsecyrillic sixinferior -14; pos @MMK_L_cyr_uc_Tsecyrillic sixsuperior -12; pos @MMK_L_cyr_uc_Tsecyrillic slash 32; pos @MMK_L_cyr_uc_Tsecyrillic threeinferior -4; pos @MMK_L_cyr_uc_Tsecyrillic threesuperior -9; pos @MMK_L_cyr_uc_Tsecyrillic trademark -5; pos @MMK_L_cyr_uc_Tsecyrillic twoinferior -4; pos @MMK_L_cyr_uc_Tsecyrillic twosuperior -9; pos @MMK_L_cyr_uc_Tsecyrillic underscore 29; pos @MMK_L_cyr_uc_Tsecyrillic uni0408 -12; pos @MMK_L_cyr_uc_Tsecyrillic uni0414 27; pos @MMK_L_cyr_uc_Tsecyrillic uni0424 -19; pos @MMK_L_cyr_uc_Tsecyrillic uni042F 3; pos @MMK_L_cyr_uc_Tsecyrillic uni0431 -21; pos @MMK_L_cyr_uc_Tsecyrillic uni0440 5; pos @MMK_L_cyr_uc_Tsecyrillic uni0444 -25; pos @MMK_L_cyr_uc_Tsecyrillic uni044A -17; pos @MMK_L_cyr_uc_Tsecyrillic uni044D -13; pos @MMK_L_cyr_uc_Tsecyrillic uni044F -26; pos @MMK_L_cyr_uc_Tsecyrillic uni0455 -3; pos @MMK_L_cyr_uc_Tsecyrillic uni0458 70; pos @MMK_L_cyr_uc_Tsecyrillic uni0493 -9; pos @MMK_L_cyr_uc_Tsecyrillic uni04A1 -14; pos @MMK_L_cyr_uc_Tsecyrillic uni04AE -13; pos @MMK_L_cyr_uc_Tsecyrillic uni04AF -14; pos @MMK_L_cyr_uc_Tsecyrillic uni04B0 -13; pos @MMK_L_cyr_uc_Tsecyrillic uni04BB -5; pos @MMK_L_cyr_uc_Tsecyrillic uni04CF -17; pos @MMK_L_cyr_uc_Tsecyrillic zeroinferior -20; pos @MMK_L_cyr_uc_Tsecyrillic zerosuperior -9; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_acyrillic -14; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -4; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_checyrillic -34; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_elcyrillic 8; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_encyrillic -6; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_icyrillic -11; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_iicyrillic -10; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_khacyrillic -1; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_ocyrillic -16; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_tshecyrillic -10; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_ucyrillic -32; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_yericyrillic -4; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_zecyrilic -13; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_zhecyrillic -4; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Acyrillic 13; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Checyrillic -96; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Elcyrillic 8; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -87; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Khacyrillic 11; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Ocyrillic -26; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Tecyrillic -87; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Ucyrillic -63; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Zecyrillic -22; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Zhecyrillic 17; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_colon 17; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_foot -101; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_guill -6; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_guilr -6; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_hyph -20; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_parenth -6; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_period 17; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_quotel -112; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_quoter -101; pos @MMK_L_cyr_uc_Tshecyrillic at -14; pos @MMK_L_cyr_uc_Tshecyrillic copyright -12; pos @MMK_L_cyr_uc_Tshecyrillic eightinferior 4; pos @MMK_L_cyr_uc_Tshecyrillic eightsuperior -59; pos @MMK_L_cyr_uc_Tshecyrillic exclam 8; pos @MMK_L_cyr_uc_Tshecyrillic fiveinferior 7; pos @MMK_L_cyr_uc_Tshecyrillic fivesuperior -55; pos @MMK_L_cyr_uc_Tshecyrillic foursuperior -55; pos @MMK_L_cyr_uc_Tshecyrillic nineinferior 4; pos @MMK_L_cyr_uc_Tshecyrillic ninesuperior -73; pos @MMK_L_cyr_uc_Tshecyrillic oneinferior 13; pos @MMK_L_cyr_uc_Tshecyrillic onesuperior -45; pos @MMK_L_cyr_uc_Tshecyrillic parenright -6; pos @MMK_L_cyr_uc_Tshecyrillic question -26; pos @MMK_L_cyr_uc_Tshecyrillic registered -75; pos @MMK_L_cyr_uc_Tshecyrillic seveninferior -4; pos @MMK_L_cyr_uc_Tshecyrillic sevensuperior -78; pos @MMK_L_cyr_uc_Tshecyrillic sixsuperior -61; pos @MMK_L_cyr_uc_Tshecyrillic slash 13; pos @MMK_L_cyr_uc_Tshecyrillic threeinferior 13; pos @MMK_L_cyr_uc_Tshecyrillic threesuperior -43; pos @MMK_L_cyr_uc_Tshecyrillic trademark -108; pos @MMK_L_cyr_uc_Tshecyrillic twoinferior 13; pos @MMK_L_cyr_uc_Tshecyrillic twosuperior -43; pos @MMK_L_cyr_uc_Tshecyrillic underscore 17; pos @MMK_L_cyr_uc_Tshecyrillic uni0414 20; pos @MMK_L_cyr_uc_Tshecyrillic uni0424 -23; pos @MMK_L_cyr_uc_Tshecyrillic uni042F 4; pos @MMK_L_cyr_uc_Tshecyrillic uni0431 -16; pos @MMK_L_cyr_uc_Tshecyrillic uni0440 -14; pos @MMK_L_cyr_uc_Tshecyrillic uni0444 -17; pos @MMK_L_cyr_uc_Tshecyrillic uni044A -42; pos @MMK_L_cyr_uc_Tshecyrillic uni044D -13; pos @MMK_L_cyr_uc_Tshecyrillic uni044F -14; pos @MMK_L_cyr_uc_Tshecyrillic uni0455 -4; pos @MMK_L_cyr_uc_Tshecyrillic uni0458 -4; pos @MMK_L_cyr_uc_Tshecyrillic uni0493 -6; pos @MMK_L_cyr_uc_Tshecyrillic uni04A1 -8; pos @MMK_L_cyr_uc_Tshecyrillic uni04AE -97; pos @MMK_L_cyr_uc_Tshecyrillic uni04AF -38; pos @MMK_L_cyr_uc_Tshecyrillic uni04B0 -74; pos @MMK_L_cyr_uc_Tshecyrillic uni04B1 -26; pos @MMK_L_cyr_uc_Tshecyrillic uni04BB -10; pos @MMK_L_cyr_uc_Tshecyrillic uni04D4 13; pos @MMK_L_cyr_uc_Tshecyrillic zerosuperior -61; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_acyrillic -54; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_acyrillic.alt01 -48; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_checyrillic -8; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_elcyrillic -95; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_encyrillic -21; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_gecyrillic -56; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_gheupturncyrillic -21; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_icyrillic -7; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_iicyrillic -21; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_khacyrillic -48; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_ocyrillic -56; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_tshecyrillic 6; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_ucyrillic -12; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_yericyrillic -6; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_zecyrilic -52; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_zhecyrillic -54; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Acyrillic -84; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Checyrillic 11; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Elcyrillic -69; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Hardsigncyrillic 19; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Khacyrillic 6; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Ocyrillic -25; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Tecyrillic 19; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Ucyrillic 8; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Zecyrillic -3; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Zhecyrillic -6; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_colon -44; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_foot 17; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_guill -62; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_guilr -42; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_hyph -54; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_period -109; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_quotel 16; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_quoter 17; pos @MMK_L_cyr_uc_Ucyrillic ampersand -47; pos @MMK_L_cyr_uc_Ucyrillic at -39; pos @MMK_L_cyr_uc_Ucyrillic copyright -17; pos @MMK_L_cyr_uc_Ucyrillic eightinferior -86; pos @MMK_L_cyr_uc_Ucyrillic eightsuperior 14; pos @MMK_L_cyr_uc_Ucyrillic fiveinferior -80; pos @MMK_L_cyr_uc_Ucyrillic fivesuperior 10; pos @MMK_L_cyr_uc_Ucyrillic fourinferior -92; pos @MMK_L_cyr_uc_Ucyrillic foursuperior -7; pos @MMK_L_cyr_uc_Ucyrillic nineinferior -89; pos @MMK_L_cyr_uc_Ucyrillic ninesuperior 26; pos @MMK_L_cyr_uc_Ucyrillic oneinferior -72; pos @MMK_L_cyr_uc_Ucyrillic onesuperior 16; pos @MMK_L_cyr_uc_Ucyrillic question 15; pos @MMK_L_cyr_uc_Ucyrillic registered 20; pos @MMK_L_cyr_uc_Ucyrillic seveninferior -72; pos @MMK_L_cyr_uc_Ucyrillic sevensuperior 24; pos @MMK_L_cyr_uc_Ucyrillic sixinferior -92; pos @MMK_L_cyr_uc_Ucyrillic slash -76; pos @MMK_L_cyr_uc_Ucyrillic threeinferior -74; pos @MMK_L_cyr_uc_Ucyrillic threesuperior 20; pos @MMK_L_cyr_uc_Ucyrillic trademark 20; pos @MMK_L_cyr_uc_Ucyrillic twoinferior -70; pos @MMK_L_cyr_uc_Ucyrillic twosuperior 14; pos @MMK_L_cyr_uc_Ucyrillic underscore -106; pos @MMK_L_cyr_uc_Ucyrillic uni0405 -15; pos @MMK_L_cyr_uc_Ucyrillic uni0408 -58; pos @MMK_L_cyr_uc_Ucyrillic uni0414 -73; pos @MMK_L_cyr_uc_Ucyrillic uni0424 -36; pos @MMK_L_cyr_uc_Ucyrillic uni042F -33; pos @MMK_L_cyr_uc_Ucyrillic uni0431 -24; pos @MMK_L_cyr_uc_Ucyrillic uni0440 -23; pos @MMK_L_cyr_uc_Ucyrillic uni0444 -61; pos @MMK_L_cyr_uc_Ucyrillic uni044A -35; pos @MMK_L_cyr_uc_Ucyrillic uni044D -49; pos @MMK_L_cyr_uc_Ucyrillic uni044F -64; pos @MMK_L_cyr_uc_Ucyrillic uni0455 -48; pos @MMK_L_cyr_uc_Ucyrillic uni0458 -7; pos @MMK_L_cyr_uc_Ucyrillic uni0493 -15; pos @MMK_L_cyr_uc_Ucyrillic uni04A1 -17; pos @MMK_L_cyr_uc_Ucyrillic uni04AE 7; pos @MMK_L_cyr_uc_Ucyrillic uni04AF -17; pos @MMK_L_cyr_uc_Ucyrillic uni04B0 7; pos @MMK_L_cyr_uc_Ucyrillic uni04B1 -17; pos @MMK_L_cyr_uc_Ucyrillic uni04BB 14; pos @MMK_L_cyr_uc_Ucyrillic uni04CF -12; pos @MMK_L_cyr_uc_Ucyrillic uni04D4 -106; pos @MMK_L_cyr_uc_Ucyrillic zeroinferior -92; pos @MMK_L_cyr_uc_Ucyrillic zerosuperior 12; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_checyrillic 7; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_iicyrillic -8; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_khacyrillic -10; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_ucyrillic -5; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_zecyrilic -3; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_zhecyrillic -8; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Acyrillic -9; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Checyrillic -25; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Khacyrillic -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Tecyrillic -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Ucyrillic -35; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Zecyrillic -13; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Zhecyrillic -13; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_foot -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_period -9; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_quotel -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_quoter -30; pos @MMK_L_cyr_uc_Zecyrillic ampersand -16; pos @MMK_L_cyr_uc_Zecyrillic at -20; pos @MMK_L_cyr_uc_Zecyrillic eightsuperior -10; pos @MMK_L_cyr_uc_Zecyrillic fivesuperior -10; pos @MMK_L_cyr_uc_Zecyrillic foursuperior -10; pos @MMK_L_cyr_uc_Zecyrillic nineinferior 4; pos @MMK_L_cyr_uc_Zecyrillic ninesuperior -15; pos @MMK_L_cyr_uc_Zecyrillic onesuperior -10; pos @MMK_L_cyr_uc_Zecyrillic question -30; pos @MMK_L_cyr_uc_Zecyrillic seveninferior -15; pos @MMK_L_cyr_uc_Zecyrillic sevensuperior -22; pos @MMK_L_cyr_uc_Zecyrillic sixsuperior -10; pos @MMK_L_cyr_uc_Zecyrillic slash -10; pos @MMK_L_cyr_uc_Zecyrillic threesuperior -10; pos @MMK_L_cyr_uc_Zecyrillic trademark -22; pos @MMK_L_cyr_uc_Zecyrillic twosuperior -10; pos @MMK_L_cyr_uc_Zecyrillic underscore -60; pos @MMK_L_cyr_uc_Zecyrillic uni0408 -8; pos @MMK_L_cyr_uc_Zecyrillic uni0414 -16; pos @MMK_L_cyr_uc_Zecyrillic uni0424 2; pos @MMK_L_cyr_uc_Zecyrillic uni042F -9; pos @MMK_L_cyr_uc_Zecyrillic uni0444 -5; pos @MMK_L_cyr_uc_Zecyrillic uni044A -7; pos @MMK_L_cyr_uc_Zecyrillic uni044D -3; pos @MMK_L_cyr_uc_Zecyrillic uni044F -9; pos @MMK_L_cyr_uc_Zecyrillic uni04AE -31; pos @MMK_L_cyr_uc_Zecyrillic uni04AF -6; pos @MMK_L_cyr_uc_Zecyrillic uni04B0 -31; pos @MMK_L_cyr_uc_Zecyrillic uni04B1 -6; pos @MMK_L_cyr_uc_Zecyrillic uni04D4 -9; pos @MMK_L_cyr_uc_Zecyrillic zerosuperior -15; subtable; pos @MMK_L_inp_colon @MMK_R_cyr_lc_checyrillic 20; pos @MMK_L_inp_colon @MMK_R_cyr_lc_yericyrillic 9; pos @MMK_L_inp_colon @MMK_R_cyr_lc_zecyrilic -5; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Checyrillic -10; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Elcyrillic 8; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Hardsigncyrillic -8; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Tecyrillic -8; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Ucyrillic -38; pos @MMK_L_inp_colon @MMK_R_uc_t -8; pos @MMK_L_inp_colon @MMK_R_uc_w -10; pos @MMK_L_inp_colon @MMK_R_uc_y -30; pos @MMK_L_inp_colon V -20; pos @MMK_L_inp_colon uni0414 15; pos @MMK_L_inp_colon uni0424 13; pos @MMK_L_inp_colon uni044A 14; pos @MMK_L_inp_colon uni044D -5; pos @MMK_L_inp_colon uni044F -9; pos @MMK_L_inp_colon uni04A1 20; pos @MMK_L_inp_colon uni04AE -30; pos @MMK_L_inp_colon uni04B0 -30; pos @MMK_L_inp_colon uni04CF -12; pos @MMK_L_inp_foot @MMK_R_cyr_lc_acyrillic -20; pos @MMK_L_inp_foot @MMK_R_cyr_lc_checyrillic 12; pos @MMK_L_inp_foot @MMK_R_cyr_lc_elcyrillic -23; pos @MMK_L_inp_foot @MMK_R_cyr_lc_encyrillic 30; pos @MMK_L_inp_foot @MMK_R_cyr_lc_gecyrillic -21; pos @MMK_L_inp_foot @MMK_R_cyr_lc_gheupturncyrillic 6; pos @MMK_L_inp_foot @MMK_R_cyr_lc_icyrillic 9; pos @MMK_L_inp_foot @MMK_R_cyr_lc_iicyrillic 9; pos @MMK_L_inp_foot @MMK_R_cyr_lc_khacyrillic 10; pos @MMK_L_inp_foot @MMK_R_cyr_lc_ocyrillic -20; pos @MMK_L_inp_foot @MMK_R_cyr_lc_ucyrillic 20; pos @MMK_L_inp_foot @MMK_R_cyr_lc_yericyrillic 19; pos @MMK_L_inp_foot @MMK_R_cyr_lc_zecyrilic -12; pos @MMK_L_inp_foot @MMK_R_cyr_lc_zhecyrillic -16; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Acyrillic -90; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Checyrillic 18; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Elcyrillic -66; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Hardsigncyrillic 30; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Khacyrillic 16; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Ocyrillic -20; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Tecyrillic 30; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Ucyrillic 8; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Zecyrillic -6; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Zhecyrillic -4; pos @MMK_L_inp_foot @MMK_R_inp_period -90; pos @MMK_L_inp_foot @MMK_R_lc_d -20; pos @MMK_L_inp_foot @MMK_R_lc_n 30; pos @MMK_L_inp_foot @MMK_R_lc_o -20; pos @MMK_L_inp_foot @MMK_R_lc_w 20; pos @MMK_L_inp_foot @MMK_R_lc_y 20; pos @MMK_L_inp_foot @MMK_R_uc_a -90; pos @MMK_L_inp_foot @MMK_R_uc_j -30; pos @MMK_L_inp_foot @MMK_R_uc_o -20; pos @MMK_L_inp_foot @MMK_R_uc_t 30; pos @MMK_L_inp_foot @MMK_R_uc_u 10; pos @MMK_L_inp_foot @MMK_R_uc_w 20; pos @MMK_L_inp_foot @MMK_R_uc_y 20; pos @MMK_L_inp_foot V 20; pos @MMK_L_inp_foot X 16; pos @MMK_L_inp_foot questiondown -140; pos @MMK_L_inp_foot uni0408 -30; pos @MMK_L_inp_foot uni0414 -49; pos @MMK_L_inp_foot uni042F -14; pos @MMK_L_inp_foot uni0440 12; pos @MMK_L_inp_foot uni0444 -28; pos @MMK_L_inp_foot uni044A 6; pos @MMK_L_inp_foot uni044D -12; pos @MMK_L_inp_foot uni044F -6; pos @MMK_L_inp_foot uni0493 6; pos @MMK_L_inp_foot uni04A1 12; pos @MMK_L_inp_foot uni04AE 20; pos @MMK_L_inp_foot uni04AF 24; pos @MMK_L_inp_foot uni04B0 20; pos @MMK_L_inp_foot uni04B1 24; pos @MMK_L_inp_foot uni04CF -12; pos @MMK_L_inp_foot uni04D4 -90; pos @MMK_L_inp_foot v 20; pos @MMK_L_inp_foot x 10; pos @MMK_L_inp_guill @MMK_R_cyr_lc_acyrillic -10; pos @MMK_L_inp_guill @MMK_R_cyr_lc_checyrillic 9; pos @MMK_L_inp_guill @MMK_R_cyr_lc_elcyrillic -14; pos @MMK_L_inp_guill @MMK_R_cyr_lc_gecyrillic -12; pos @MMK_L_inp_guill @MMK_R_cyr_lc_khacyrillic -12; pos @MMK_L_inp_guill @MMK_R_cyr_lc_ocyrillic -10; pos @MMK_L_inp_guill @MMK_R_cyr_lc_ucyrillic -2; pos @MMK_L_inp_guill @MMK_R_cyr_lc_yericyrillic 7; pos @MMK_L_inp_guill @MMK_R_cyr_lc_zecyrilic -9; pos @MMK_L_inp_guill @MMK_R_cyr_lc_zhecyrillic -14; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Acyrillic -6; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Checyrillic -26; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Elcyrillic -5; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Hardsigncyrillic -32; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Khacyrillic -12; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Ocyrillic 10; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Tecyrillic -32; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Ucyrillic -56; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Zecyrillic -29; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Zhecyrillic -21; pos @MMK_L_inp_guill @MMK_R_lc_d -2; pos @MMK_L_inp_guill @MMK_R_lc_g -10; pos @MMK_L_inp_guill @MMK_R_lc_o -2; pos @MMK_L_inp_guill @MMK_R_lc_s -2; pos @MMK_L_inp_guill @MMK_R_lc_t 3; pos @MMK_L_inp_guill @MMK_R_lc_w -2; pos @MMK_L_inp_guill @MMK_R_lc_y -2; pos @MMK_L_inp_guill @MMK_R_uc_a -2; pos @MMK_L_inp_guill @MMK_R_uc_o 10; pos @MMK_L_inp_guill @MMK_R_uc_s -2; pos @MMK_L_inp_guill @MMK_R_uc_t -32; pos @MMK_L_inp_guill @MMK_R_uc_u -12; pos @MMK_L_inp_guill @MMK_R_uc_w -24; pos @MMK_L_inp_guill @MMK_R_uc_y -44; pos @MMK_L_inp_guill @MMK_R_uc_z -20; pos @MMK_L_inp_guill V -24; pos @MMK_L_inp_guill X -12; pos @MMK_L_inp_guill uni0405 -6; pos @MMK_L_inp_guill uni0414 -20; pos @MMK_L_inp_guill uni0424 7; pos @MMK_L_inp_guill uni042F -13; pos @MMK_L_inp_guill uni0431 -6; pos @MMK_L_inp_guill uni0444 -10; pos @MMK_L_inp_guill uni044A -3; pos @MMK_L_inp_guill uni044D -9; pos @MMK_L_inp_guill uni044F -9; pos @MMK_L_inp_guill uni0455 -10; pos @MMK_L_inp_guill uni04AE -44; pos @MMK_L_inp_guill uni04AF -2; pos @MMK_L_inp_guill uni04B0 -44; pos @MMK_L_inp_guill uni04B1 -7; pos @MMK_L_inp_guill uni04CF -12; pos @MMK_L_inp_guill uni04D4 -6; pos @MMK_L_inp_guill v -2; pos @MMK_L_inp_guill x -12; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_acyrillic 10; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_elcyrillic -26; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_khacyrillic -30; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_ocyrillic 10; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_ucyrillic -6; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_yericyrillic 6; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_zecyrilic -6; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_zhecyrillic -31; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Acyrillic -6; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Checyrillic -39; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Elcyrillic -19; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Hardsigncyrillic -44; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Khacyrillic -44; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Ocyrillic 20; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Tecyrillic -44; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Ucyrillic -76; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Zecyrillic -29; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Zhecyrillic -44; pos @MMK_L_inp_guilr @MMK_R_lc_d 10; pos @MMK_L_inp_guilr @MMK_R_lc_o 10; pos @MMK_L_inp_guilr @MMK_R_lc_w -10; pos @MMK_L_inp_guilr @MMK_R_lc_y -6; pos @MMK_L_inp_guilr @MMK_R_uc_a -2; pos @MMK_L_inp_guilr @MMK_R_uc_j -28; pos @MMK_L_inp_guilr @MMK_R_uc_o 20; pos @MMK_L_inp_guilr @MMK_R_uc_s -2; pos @MMK_L_inp_guilr @MMK_R_uc_t -44; pos @MMK_L_inp_guilr @MMK_R_uc_w -24; pos @MMK_L_inp_guilr @MMK_R_uc_y -74; pos @MMK_L_inp_guilr @MMK_R_uc_z -28; pos @MMK_L_inp_guilr V -44; pos @MMK_L_inp_guilr X -44; pos @MMK_L_inp_guilr uni0405 -6; pos @MMK_L_inp_guilr uni0408 -28; pos @MMK_L_inp_guilr uni0414 -49; pos @MMK_L_inp_guilr uni0424 12; pos @MMK_L_inp_guilr uni042F -34; pos @MMK_L_inp_guilr uni0431 15; pos @MMK_L_inp_guilr uni0444 10; pos @MMK_L_inp_guilr uni044A -4; pos @MMK_L_inp_guilr uni044D -6; pos @MMK_L_inp_guilr uni044F -12; pos @MMK_L_inp_guilr uni0492 9; pos @MMK_L_inp_guilr uni0493 13; pos @MMK_L_inp_guilr uni04A1 -6; pos @MMK_L_inp_guilr uni04AE -74; pos @MMK_L_inp_guilr uni04AF -6; pos @MMK_L_inp_guilr uni04B0 -32; pos @MMK_L_inp_guilr uni04B1 -12; pos @MMK_L_inp_guilr uni04CF -12; pos @MMK_L_inp_guilr uni04D4 -6; pos @MMK_L_inp_guilr v -6; pos @MMK_L_inp_guilr x -30; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_acyrillic 20; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_checyrillic 6; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_elcyrillic -52; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_gecyrillic -15; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_khacyrillic -35; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_ocyrillic 20; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_ucyrillic -10; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_zecyrilic -9; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_zhecyrillic -41; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Acyrillic -27; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Checyrillic -26; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Elcyrillic -42; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Hardsigncyrillic -50; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Khacyrillic -42; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Ocyrillic 20; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Tecyrillic -50; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Ucyrillic -70; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Zecyrillic -27; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Zhecyrillic -50; pos @MMK_L_inp_hyph @MMK_R_lc_d 20; pos @MMK_L_inp_hyph @MMK_R_lc_f -5; pos @MMK_L_inp_hyph @MMK_R_lc_g 10; pos @MMK_L_inp_hyph @MMK_R_lc_o 20; pos @MMK_L_inp_hyph @MMK_R_lc_w -10; pos @MMK_L_inp_hyph @MMK_R_lc_y -10; pos @MMK_L_inp_hyph @MMK_R_lc_z -15; pos @MMK_L_inp_hyph @MMK_R_uc_a -27; pos @MMK_L_inp_hyph @MMK_R_uc_j -40; pos @MMK_L_inp_hyph @MMK_R_uc_o 20; pos @MMK_L_inp_hyph @MMK_R_uc_s -22; pos @MMK_L_inp_hyph @MMK_R_uc_t -50; pos @MMK_L_inp_hyph @MMK_R_uc_u -8; pos @MMK_L_inp_hyph @MMK_R_uc_w -25; pos @MMK_L_inp_hyph @MMK_R_uc_y -50; pos @MMK_L_inp_hyph @MMK_R_uc_z -50; pos @MMK_L_inp_hyph V -25; pos @MMK_L_inp_hyph X -42; pos @MMK_L_inp_hyph question -20; pos @MMK_L_inp_hyph uni0405 -22; pos @MMK_L_inp_hyph uni0408 -40; pos @MMK_L_inp_hyph uni0414 -42; pos @MMK_L_inp_hyph uni0424 33; pos @MMK_L_inp_hyph uni042F -44; pos @MMK_L_inp_hyph uni0431 17; pos @MMK_L_inp_hyph uni0444 17; pos @MMK_L_inp_hyph uni044A 14; pos @MMK_L_inp_hyph uni044D -9; pos @MMK_L_inp_hyph uni044F -14; pos @MMK_L_inp_hyph uni0455 -4; pos @MMK_L_inp_hyph uni0492 12; pos @MMK_L_inp_hyph uni0493 12; pos @MMK_L_inp_hyph uni04AE -50; pos @MMK_L_inp_hyph uni04AF -10; pos @MMK_L_inp_hyph uni04B0 -42; pos @MMK_L_inp_hyph uni04B1 -10; pos @MMK_L_inp_hyph uni04CF -12; pos @MMK_L_inp_hyph uni04D4 -27; pos @MMK_L_inp_hyph v -10; pos @MMK_L_inp_hyph x -35; pos @MMK_L_inp_period @MMK_R_cyr_lc_acyrillic -40; pos @MMK_L_inp_period @MMK_R_cyr_lc_acyrillic.alt01 -18; pos @MMK_L_inp_period @MMK_R_cyr_lc_checyrillic -76; pos @MMK_L_inp_period @MMK_R_cyr_lc_encyrillic -40; pos @MMK_L_inp_period @MMK_R_cyr_lc_gecyrillic -29; pos @MMK_L_inp_period @MMK_R_cyr_lc_gheupturncyrillic -46; pos @MMK_L_inp_period @MMK_R_cyr_lc_icyrillic -40; pos @MMK_L_inp_period @MMK_R_cyr_lc_iicyrillic -51; pos @MMK_L_inp_period @MMK_R_cyr_lc_khacyrillic -10; pos @MMK_L_inp_period @MMK_R_cyr_lc_ocyrillic -42; pos @MMK_L_inp_period @MMK_R_cyr_lc_tshecyrillic -31; pos @MMK_L_inp_period @MMK_R_cyr_lc_ucyrillic -56; pos @MMK_L_inp_period @MMK_R_cyr_lc_yericyrillic -46; pos @MMK_L_inp_period @MMK_R_cyr_lc_zecyrilic -13; pos @MMK_L_inp_period @MMK_R_cyr_lc_zhecyrillic -12; pos @MMK_L_inp_period @MMK_R_cyr_uc_Acyrillic 15; pos @MMK_L_inp_period @MMK_R_cyr_uc_Checyrillic -109; pos @MMK_L_inp_period @MMK_R_cyr_uc_Elcyrillic 12; pos @MMK_L_inp_period @MMK_R_cyr_uc_Hardsigncyrillic -80; pos @MMK_L_inp_period @MMK_R_cyr_uc_Khacyrillic 20; pos @MMK_L_inp_period @MMK_R_cyr_uc_Ocyrillic -53; pos @MMK_L_inp_period @MMK_R_cyr_uc_Tecyrillic -80; pos @MMK_L_inp_period @MMK_R_cyr_uc_Ucyrillic -68; pos @MMK_L_inp_period @MMK_R_cyr_uc_Zecyrillic -34; pos @MMK_L_inp_period @MMK_R_cyr_uc_Zhecyrillic 23; pos @MMK_L_inp_period @MMK_R_inp_foot -90; pos @MMK_L_inp_period @MMK_R_inp_quotel -70; pos @MMK_L_inp_period @MMK_R_inp_quoter -70; pos @MMK_L_inp_period @MMK_R_lc_a.alt01 -2; pos @MMK_L_inp_period @MMK_R_lc_d -40; pos @MMK_L_inp_period @MMK_R_lc_f 10; pos @MMK_L_inp_period @MMK_R_lc_g -16; pos @MMK_L_inp_period @MMK_R_lc_h -29; pos @MMK_L_inp_period @MMK_R_lc_i -40; pos @MMK_L_inp_period @MMK_R_lc_j 10; pos @MMK_L_inp_period @MMK_R_lc_n -40; pos @MMK_L_inp_period @MMK_R_lc_o -42; pos @MMK_L_inp_period @MMK_R_lc_s -26; pos @MMK_L_inp_period @MMK_R_lc_t -63; pos @MMK_L_inp_period @MMK_R_lc_u -51; pos @MMK_L_inp_period @MMK_R_lc_w -60; pos @MMK_L_inp_period @MMK_R_lc_y -56; pos @MMK_L_inp_period @MMK_R_lc_z -11; pos @MMK_L_inp_period @MMK_R_uc_a 15; pos @MMK_L_inp_period @MMK_R_uc_j 4; pos @MMK_L_inp_period @MMK_R_uc_o -53; pos @MMK_L_inp_period @MMK_R_uc_s -14; pos @MMK_L_inp_period @MMK_R_uc_t -80; pos @MMK_L_inp_period @MMK_R_uc_u -52; pos @MMK_L_inp_period @MMK_R_uc_w -50; pos @MMK_L_inp_period @MMK_R_uc_y -60; pos @MMK_L_inp_period @MMK_R_uc_z 2; pos @MMK_L_inp_period V -70; pos @MMK_L_inp_period X 20; pos @MMK_L_inp_period eightsuperior -50; pos @MMK_L_inp_period fivesuperior -60; pos @MMK_L_inp_period foursuperior -50; pos @MMK_L_inp_period nineinferior -40; pos @MMK_L_inp_period ninesuperior -70; pos @MMK_L_inp_period onesuperior -50; pos @MMK_L_inp_period p -40; pos @MMK_L_inp_period question -55; pos @MMK_L_inp_period seveninferior -50; pos @MMK_L_inp_period sevensuperior -30; pos @MMK_L_inp_period sixsuperior -50; pos @MMK_L_inp_period thorn -10; pos @MMK_L_inp_period threesuperior -50; pos @MMK_L_inp_period twosuperior -50; pos @MMK_L_inp_period uni0405 -14; pos @MMK_L_inp_period uni0408 3; pos @MMK_L_inp_period uni0414 7; pos @MMK_L_inp_period uni0424 -83; pos @MMK_L_inp_period uni042F 9; pos @MMK_L_inp_period uni0431 -46; pos @MMK_L_inp_period uni0440 -40; pos @MMK_L_inp_period uni0444 -46; pos @MMK_L_inp_period uni044A -73; pos @MMK_L_inp_period uni044D -13; pos @MMK_L_inp_period uni044F -19; pos @MMK_L_inp_period uni0455 -26; pos @MMK_L_inp_period uni0458 -12; pos @MMK_L_inp_period uni0493 -46; pos @MMK_L_inp_period uni04A1 -76; pos @MMK_L_inp_period uni04AE -60; pos @MMK_L_inp_period uni04AF -66; pos @MMK_L_inp_period uni04B0 -60; pos @MMK_L_inp_period uni04B1 -37; pos @MMK_L_inp_period uni04BB -29; pos @MMK_L_inp_period uni04CF -43; pos @MMK_L_inp_period uni04D4 15; pos @MMK_L_inp_period v -62; pos @MMK_L_inp_period x -10; pos @MMK_L_inp_period zerosuperior -60; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_acyrillic -24; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_acyrillic.alt01 -24; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_checyrillic 47; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_elcyrillic -36; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_encyrillic 40; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_gecyrillic -16; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_gheupturncyrillic 19; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_icyrillic 8; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_iicyrillic 40; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_khacyrillic -6; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_ocyrillic -32; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_ucyrillic 42; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_yericyrillic 37; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_zecyrilic -14; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_zhecyrillic -12; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Acyrillic -100; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Checyrillic 8; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Elcyrillic -71; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Hardsigncyrillic 11; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Khacyrillic 14; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Ocyrillic -8; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Tecyrillic 11; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Ucyrillic 1; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Zecyrillic -10; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Zhecyrillic -18; pos @MMK_L_inp_quotel @MMK_R_inp_period -70; pos @MMK_L_inp_quotel @MMK_R_lc_a.alt01 -24; pos @MMK_L_inp_quotel @MMK_R_lc_d -24; pos @MMK_L_inp_quotel @MMK_R_lc_f 4; pos @MMK_L_inp_quotel @MMK_R_lc_g -24; pos @MMK_L_inp_quotel @MMK_R_lc_h 2; pos @MMK_L_inp_quotel @MMK_R_lc_i 8; pos @MMK_L_inp_quotel @MMK_R_lc_j 8; pos @MMK_L_inp_quotel @MMK_R_lc_n 40; pos @MMK_L_inp_quotel @MMK_R_lc_o -32; pos @MMK_L_inp_quotel @MMK_R_lc_s -12; pos @MMK_L_inp_quotel @MMK_R_lc_t 16; pos @MMK_L_inp_quotel @MMK_R_lc_u 40; pos @MMK_L_inp_quotel @MMK_R_lc_w 32; pos @MMK_L_inp_quotel @MMK_R_lc_y 42; pos @MMK_L_inp_quotel @MMK_R_lc_z 6; pos @MMK_L_inp_quotel @MMK_R_uc_a -100; pos @MMK_L_inp_quotel @MMK_R_uc_j -60; pos @MMK_L_inp_quotel @MMK_R_uc_o -8; pos @MMK_L_inp_quotel @MMK_R_uc_s -4; pos @MMK_L_inp_quotel @MMK_R_uc_t 11; pos @MMK_L_inp_quotel @MMK_R_uc_w 18; pos @MMK_L_inp_quotel @MMK_R_uc_y 18; pos @MMK_L_inp_quotel @MMK_R_uc_z -8; pos @MMK_L_inp_quotel V 18; pos @MMK_L_inp_quotel X 14; pos @MMK_L_inp_quotel p 40; pos @MMK_L_inp_quotel questiondown -110; pos @MMK_L_inp_quotel uni0405 -4; pos @MMK_L_inp_quotel uni0408 -60; pos @MMK_L_inp_quotel uni0414 -53; pos @MMK_L_inp_quotel uni0424 -13; pos @MMK_L_inp_quotel uni042F -19; pos @MMK_L_inp_quotel uni0431 -4; pos @MMK_L_inp_quotel uni0440 40; pos @MMK_L_inp_quotel uni0444 -35; pos @MMK_L_inp_quotel uni044A 23; pos @MMK_L_inp_quotel uni044D -8; pos @MMK_L_inp_quotel uni044F -24; pos @MMK_L_inp_quotel uni0455 -12; pos @MMK_L_inp_quotel uni0458 23; pos @MMK_L_inp_quotel uni0493 19; pos @MMK_L_inp_quotel uni04A1 17; pos @MMK_L_inp_quotel uni04AE 18; pos @MMK_L_inp_quotel uni04AF 36; pos @MMK_L_inp_quotel uni04B0 18; pos @MMK_L_inp_quotel uni04B1 36; pos @MMK_L_inp_quotel uni04BB 6; pos @MMK_L_inp_quotel uni04CF -6; pos @MMK_L_inp_quotel uni04D4 -120; pos @MMK_L_inp_quotel v 36; pos @MMK_L_inp_quotel x -2; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_acyrillic -48; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_acyrillic.alt01 -64; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_checyrillic 14; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_elcyrillic -50; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_encyrillic 12; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_gecyrillic -48; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_gheupturncyrillic 6; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_icyrillic 2; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_iicyrillic 12; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_khacyrillic -19; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_ocyrillic -48; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_ucyrillic 14; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_yericyrillic 17; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_zecyrilic -40; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_zhecyrillic -46; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Acyrillic -100; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Checyrillic 11; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Elcyrillic -85; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Hardsigncyrillic 11; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Khacyrillic 14; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Ocyrillic -20; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Tecyrillic 11; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Ucyrillic 6; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Zecyrillic -13; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Zhecyrillic -13; pos @MMK_L_inp_quoter @MMK_R_inp_colon -20; pos @MMK_L_inp_quoter @MMK_R_inp_hyph -40; pos @MMK_L_inp_quoter @MMK_R_inp_period -70; pos @MMK_L_inp_quoter @MMK_R_lc_a.alt01 -64; pos @MMK_L_inp_quoter @MMK_R_lc_d -48; pos @MMK_L_inp_quoter @MMK_R_lc_f 4; pos @MMK_L_inp_quoter @MMK_R_lc_g -56; pos @MMK_L_inp_quoter @MMK_R_lc_i 2; pos @MMK_L_inp_quoter @MMK_R_lc_j 2; pos @MMK_L_inp_quoter @MMK_R_lc_n 12; pos @MMK_L_inp_quoter @MMK_R_lc_o -48; pos @MMK_L_inp_quoter @MMK_R_lc_s -28; pos @MMK_L_inp_quoter @MMK_R_lc_t -4; pos @MMK_L_inp_quoter @MMK_R_lc_u 4; pos @MMK_L_inp_quoter @MMK_R_lc_w 4; pos @MMK_L_inp_quoter @MMK_R_lc_y 14; pos @MMK_L_inp_quoter @MMK_R_lc_z -16; pos @MMK_L_inp_quoter @MMK_R_uc_a -100; pos @MMK_L_inp_quoter @MMK_R_uc_j -70; pos @MMK_L_inp_quoter @MMK_R_uc_o -20; pos @MMK_L_inp_quoter @MMK_R_uc_s -9; pos @MMK_L_inp_quoter @MMK_R_uc_t 11; pos @MMK_L_inp_quoter @MMK_R_uc_w 23; pos @MMK_L_inp_quoter @MMK_R_uc_y 18; pos @MMK_L_inp_quoter V 23; pos @MMK_L_inp_quoter X 14; pos @MMK_L_inp_quoter exclamdown -20; pos @MMK_L_inp_quoter p 12; pos @MMK_L_inp_quoter questiondown -120; pos @MMK_L_inp_quoter uni0405 -9; pos @MMK_L_inp_quoter uni0408 -70; pos @MMK_L_inp_quoter uni0414 -70; pos @MMK_L_inp_quoter uni0424 -39; pos @MMK_L_inp_quoter uni042F -30; pos @MMK_L_inp_quoter uni0431 -13; pos @MMK_L_inp_quoter uni0440 12; pos @MMK_L_inp_quoter uni0444 -51; pos @MMK_L_inp_quoter uni044A -3; pos @MMK_L_inp_quoter uni044D -40; pos @MMK_L_inp_quoter uni044F -40; pos @MMK_L_inp_quoter uni0455 -28; pos @MMK_L_inp_quoter uni0458 6; pos @MMK_L_inp_quoter uni0493 6; pos @MMK_L_inp_quoter uni04A1 9; pos @MMK_L_inp_quoter uni04AE 18; pos @MMK_L_inp_quoter uni04AF 12; pos @MMK_L_inp_quoter uni04B0 18; pos @MMK_L_inp_quoter uni04B1 24; pos @MMK_L_inp_quoter uni04CF -6; pos @MMK_L_inp_quoter uni04D4 -125; pos @MMK_L_inp_quoter v 12; pos @MMK_L_inp_quoter x -19; pos @MMK_L_lc_a @MMK_R_inp_foot -50; pos @MMK_L_lc_a @MMK_R_inp_guill -8; pos @MMK_L_lc_a @MMK_R_inp_guilr 10; pos @MMK_L_lc_a @MMK_R_inp_hyph -10; pos @MMK_L_lc_a @MMK_R_inp_period 29; pos @MMK_L_lc_a @MMK_R_inp_quotel -48; pos @MMK_L_lc_a @MMK_R_inp_quoter -48; pos @MMK_L_lc_a @MMK_R_lc_a.alt01 3; pos @MMK_L_lc_a @MMK_R_lc_g -5; pos @MMK_L_lc_a @MMK_R_lc_t -10; pos @MMK_L_lc_a @MMK_R_lc_u -5; pos @MMK_L_lc_a @MMK_R_lc_w -13; pos @MMK_L_lc_a @MMK_R_lc_y -10; pos @MMK_L_lc_a @MMK_R_uc_a 28; pos @MMK_L_lc_a @MMK_R_uc_j 18; pos @MMK_L_lc_a @MMK_R_uc_t -30; pos @MMK_L_lc_a @MMK_R_uc_u -5; pos @MMK_L_lc_a @MMK_R_uc_w -25; pos @MMK_L_lc_a @MMK_R_uc_y -40; pos @MMK_L_lc_a @MMK_R_uc_z 2; pos @MMK_L_lc_a V -40; pos @MMK_L_lc_a X 16; pos @MMK_L_lc_a ampersand 14; pos @MMK_L_lc_a at -10; pos @MMK_L_lc_a eightinferior 30; pos @MMK_L_lc_a eightsuperior -25; pos @MMK_L_lc_a fiveinferior 10; pos @MMK_L_lc_a fivesuperior -20; pos @MMK_L_lc_a fourinferior 22; pos @MMK_L_lc_a foursuperior -20; pos @MMK_L_lc_a nineinferior 10; pos @MMK_L_lc_a ninesuperior -45; pos @MMK_L_lc_a onesuperior -20; pos @MMK_L_lc_a registered -20; pos @MMK_L_lc_a seveninferior -10; pos @MMK_L_lc_a sevensuperior -50; pos @MMK_L_lc_a sixinferior 30; pos @MMK_L_lc_a sixsuperior -20; pos @MMK_L_lc_a slash 6; pos @MMK_L_lc_a threeinferior 10; pos @MMK_L_lc_a threesuperior -20; pos @MMK_L_lc_a trademark -42; pos @MMK_L_lc_a twoinferior 10; pos @MMK_L_lc_a twosuperior -20; pos @MMK_L_lc_a v -13; pos @MMK_L_lc_a zeroinferior 30; pos @MMK_L_lc_a zerosuperior -20; pos @MMK_L_lc_b @MMK_R_inp_foot -40; pos @MMK_L_lc_b @MMK_R_inp_guill 10; pos @MMK_L_lc_b @MMK_R_inp_hyph 20; pos @MMK_L_lc_b @MMK_R_inp_period -20; pos @MMK_L_lc_b @MMK_R_inp_quotel -50; pos @MMK_L_lc_b @MMK_R_inp_quoter -46; pos @MMK_L_lc_b @MMK_R_lc_a.alt01 10; pos @MMK_L_lc_b @MMK_R_lc_w -9; pos @MMK_L_lc_b @MMK_R_lc_y -5; pos @MMK_L_lc_b @MMK_R_lc_z -6; pos @MMK_L_lc_b @MMK_R_uc_a -6; pos @MMK_L_lc_b @MMK_R_uc_j -19; pos @MMK_L_lc_b @MMK_R_uc_t -37; pos @MMK_L_lc_b @MMK_R_uc_w -36; pos @MMK_L_lc_b @MMK_R_uc_y -65; pos @MMK_L_lc_b @MMK_R_uc_z -14; pos @MMK_L_lc_b V -45; pos @MMK_L_lc_b X -16; pos @MMK_L_lc_b eightinferior 10; pos @MMK_L_lc_b eightsuperior -20; pos @MMK_L_lc_b fiveinferior 8; pos @MMK_L_lc_b fivesuperior -20; pos @MMK_L_lc_b fourinferior -2; pos @MMK_L_lc_b foursuperior -12; pos @MMK_L_lc_b nineinferior 10; pos @MMK_L_lc_b ninesuperior -35; pos @MMK_L_lc_b oneinferior 8; pos @MMK_L_lc_b onesuperior -12; pos @MMK_L_lc_b registered -15; pos @MMK_L_lc_b seveninferior 10; pos @MMK_L_lc_b sevensuperior -40; pos @MMK_L_lc_b sixinferior 10; pos @MMK_L_lc_b sixsuperior -20; pos @MMK_L_lc_b slash -10; pos @MMK_L_lc_b threeinferior 9; pos @MMK_L_lc_b threesuperior -15; pos @MMK_L_lc_b trademark -35; pos @MMK_L_lc_b twoinferior 8; pos @MMK_L_lc_b twosuperior -10; pos @MMK_L_lc_b underscore -60; pos @MMK_L_lc_b v -6; pos @MMK_L_lc_b x -18; pos @MMK_L_lc_b zeroinferior 18; pos @MMK_L_lc_b zerosuperior -22; pos @MMK_L_lc_c @MMK_R_inp_foot -30; pos @MMK_L_lc_c @MMK_R_inp_hyph -10; pos @MMK_L_lc_c @MMK_R_inp_quotel -25; pos @MMK_L_lc_c @MMK_R_inp_quoter -10; pos @MMK_L_lc_c @MMK_R_lc_a.alt01 -3; pos @MMK_L_lc_c @MMK_R_lc_d -6; pos @MMK_L_lc_c @MMK_R_lc_g -4; pos @MMK_L_lc_c @MMK_R_lc_o -8; pos @MMK_L_lc_c @MMK_R_uc_a 8; pos @MMK_L_lc_c @MMK_R_uc_j 2; pos @MMK_L_lc_c @MMK_R_uc_s 5; pos @MMK_L_lc_c @MMK_R_uc_t -27; pos @MMK_L_lc_c @MMK_R_uc_w -30; pos @MMK_L_lc_c @MMK_R_uc_y -55; pos @MMK_L_lc_c @MMK_R_uc_z -1; pos @MMK_L_lc_c V -45; pos @MMK_L_lc_c X -5; pos @MMK_L_lc_c ampersand 2; pos @MMK_L_lc_c eightinferior 11; pos @MMK_L_lc_c fiveinferior 11; pos @MMK_L_lc_c fourinferior 10; pos @MMK_L_lc_c foursuperior 15; pos @MMK_L_lc_c nineinferior 10; pos @MMK_L_lc_c ninesuperior -15; pos @MMK_L_lc_c oneinferior 10; pos @MMK_L_lc_c seveninferior 5; pos @MMK_L_lc_c sevensuperior -20; pos @MMK_L_lc_c sixinferior 15; pos @MMK_L_lc_c slash -10; pos @MMK_L_lc_c threeinferior 15; pos @MMK_L_lc_c trademark -20; pos @MMK_L_lc_c twoinferior 13; pos @MMK_L_lc_c twosuperior 5; pos @MMK_L_lc_c x -5; pos @MMK_L_lc_c zeroinferior 20; pos @MMK_L_lc_dcaron @MMK_R_inp_foot 54; pos @MMK_L_lc_dcaron @MMK_R_inp_guill -8; pos @MMK_L_lc_dcaron @MMK_R_inp_parenth 64; pos @MMK_L_lc_dcaron @MMK_R_inp_period 29; pos @MMK_L_lc_dcaron @MMK_R_inp_quotel 28; pos @MMK_L_lc_dcaron @MMK_R_inp_quoter 46; pos @MMK_L_lc_dcaron @MMK_R_lc_f 4; pos @MMK_L_lc_dcaron @MMK_R_lc_h 76; pos @MMK_L_lc_dcaron @MMK_R_lc_i 4; pos @MMK_L_lc_dcaron @MMK_R_lc_j 4; pos @MMK_L_lc_dcaron @MMK_R_lc_t 2; pos @MMK_L_lc_dcaron @MMK_R_lc_w 12; pos @MMK_L_lc_dcaron @MMK_R_lc_y 20; pos @MMK_L_lc_dcaron @MMK_R_lc_z 3; pos @MMK_L_lc_dcaron @MMK_R_uc_y 50; pos @MMK_L_lc_dcaron ampersand 6; pos @MMK_L_lc_dcaron eightinferior 30; pos @MMK_L_lc_dcaron eightsuperior 51; pos @MMK_L_lc_dcaron exclam 18; pos @MMK_L_lc_dcaron fiveinferior 10; pos @MMK_L_lc_dcaron fivesuperior 38; pos @MMK_L_lc_dcaron fourinferior 30; pos @MMK_L_lc_dcaron foursuperior 24; pos @MMK_L_lc_dcaron nineinferior 10; pos @MMK_L_lc_dcaron ninesuperior 56; pos @MMK_L_lc_dcaron onesuperior 52; pos @MMK_L_lc_dcaron parenright 81; pos @MMK_L_lc_dcaron question 38; pos @MMK_L_lc_dcaron registered 64; pos @MMK_L_lc_dcaron sevensuperior 66; pos @MMK_L_lc_dcaron sixinferior 26; pos @MMK_L_lc_dcaron sixsuperior 36; pos @MMK_L_lc_dcaron thorn 50; pos @MMK_L_lc_dcaron threeinferior 10; pos @MMK_L_lc_dcaron threesuperior 46; pos @MMK_L_lc_dcaron trademark 71; pos @MMK_L_lc_dcaron twoinferior 10; pos @MMK_L_lc_dcaron twosuperior 44; pos @MMK_L_lc_dcaron underscore -20; pos @MMK_L_lc_dcaron v 20; pos @MMK_L_lc_dcaron zeroinferior 30; pos @MMK_L_lc_dcaron zerosuperior 46; pos @MMK_L_lc_e @MMK_R_inp_foot -30; pos @MMK_L_lc_e @MMK_R_inp_guill 18; pos @MMK_L_lc_e @MMK_R_inp_hyph 10; pos @MMK_L_lc_e @MMK_R_inp_period -20; pos @MMK_L_lc_e @MMK_R_inp_quotel -30; pos @MMK_L_lc_e @MMK_R_inp_quoter -24; pos @MMK_L_lc_e @MMK_R_lc_a.alt01 10; pos @MMK_L_lc_e @MMK_R_lc_w -6; pos @MMK_L_lc_e @MMK_R_lc_z -4; pos @MMK_L_lc_e @MMK_R_uc_a -10; pos @MMK_L_lc_e @MMK_R_uc_j -10; pos @MMK_L_lc_e @MMK_R_uc_o 5; pos @MMK_L_lc_e @MMK_R_uc_s -10; pos @MMK_L_lc_e @MMK_R_uc_t -25; pos @MMK_L_lc_e @MMK_R_uc_w -43; pos @MMK_L_lc_e @MMK_R_uc_y -55; pos @MMK_L_lc_e @MMK_R_uc_z -18; pos @MMK_L_lc_e V -45; pos @MMK_L_lc_e X -16; pos @MMK_L_lc_e ampersand -8; pos @MMK_L_lc_e eightinferior 8; pos @MMK_L_lc_e fiveinferior 4; pos @MMK_L_lc_e fourinferior 5; pos @MMK_L_lc_e foursuperior 2; pos @MMK_L_lc_e nineinferior 4; pos @MMK_L_lc_e ninesuperior -30; pos @MMK_L_lc_e oneinferior -2; pos @MMK_L_lc_e onesuperior -10; pos @MMK_L_lc_e registered 5; pos @MMK_L_lc_e seveninferior 8; pos @MMK_L_lc_e sevensuperior -20; pos @MMK_L_lc_e sixinferior 4; pos @MMK_L_lc_e slash -11; pos @MMK_L_lc_e threeinferior 4; pos @MMK_L_lc_e trademark -27; pos @MMK_L_lc_e twoinferior 1; pos @MMK_L_lc_e underscore -20; pos @MMK_L_lc_e v -1; pos @MMK_L_lc_e x -15; pos @MMK_L_lc_e zeroinferior 10; pos @MMK_L_lc_g @MMK_R_inp_foot -2; pos @MMK_L_lc_g @MMK_R_inp_guill -8; pos @MMK_L_lc_g @MMK_R_inp_guilr -12; pos @MMK_L_lc_g @MMK_R_inp_parenth 15; pos @MMK_L_lc_g @MMK_R_inp_quotel -14; pos @MMK_L_lc_g @MMK_R_inp_quoter -4; pos @MMK_L_lc_g @MMK_R_lc_a.alt01 -3; pos @MMK_L_lc_g @MMK_R_lc_d -8; pos @MMK_L_lc_g @MMK_R_lc_f 16; pos @MMK_L_lc_g @MMK_R_lc_g 2; pos @MMK_L_lc_g @MMK_R_lc_j 14; pos @MMK_L_lc_g @MMK_R_lc_o -8; pos @MMK_L_lc_g @MMK_R_lc_s -9; pos @MMK_L_lc_g @MMK_R_lc_u -8; pos @MMK_L_lc_g @MMK_R_lc_w -13; pos @MMK_L_lc_g @MMK_R_lc_y 6; pos @MMK_L_lc_g @MMK_R_lc_z -4; pos @MMK_L_lc_g @MMK_R_uc_j -38; pos @MMK_L_lc_g @MMK_R_uc_o 1; pos @MMK_L_lc_g @MMK_R_uc_s -10; pos @MMK_L_lc_g @MMK_R_uc_t -14; pos @MMK_L_lc_g @MMK_R_uc_w -24; pos @MMK_L_lc_g @MMK_R_uc_y -52; pos @MMK_L_lc_g @MMK_R_uc_z -16; pos @MMK_L_lc_g V -32; pos @MMK_L_lc_g X 8; pos @MMK_L_lc_g ampersand -26; pos @MMK_L_lc_g at -10; pos @MMK_L_lc_g eightinferior -20; pos @MMK_L_lc_g eightsuperior -3; pos @MMK_L_lc_g fiveinferior -20; pos @MMK_L_lc_g fivesuperior -3; pos @MMK_L_lc_g fourinferior -35; pos @MMK_L_lc_g foursuperior -3; pos @MMK_L_lc_g nineinferior -18; pos @MMK_L_lc_g ninesuperior -1; pos @MMK_L_lc_g oneinferior -20; pos @MMK_L_lc_g onesuperior -6; pos @MMK_L_lc_g parenright 27; pos @MMK_L_lc_g question 3; pos @MMK_L_lc_g registered 16; pos @MMK_L_lc_g seveninferior -8; pos @MMK_L_lc_g sevensuperior 6; pos @MMK_L_lc_g sixinferior -20; pos @MMK_L_lc_g sixsuperior 8; pos @MMK_L_lc_g slash 20; pos @MMK_L_lc_g threeinferior -26; pos @MMK_L_lc_g threesuperior 4; pos @MMK_L_lc_g trademark -16; pos @MMK_L_lc_g twoinferior -10; pos @MMK_L_lc_g twosuperior -6; pos @MMK_L_lc_g underscore 20; pos @MMK_L_lc_g x -10; pos @MMK_L_lc_g zeroinferior -13; pos @MMK_L_lc_g zerosuperior 8; pos @MMK_L_lc_i @MMK_R_inp_foot -20; pos @MMK_L_lc_i @MMK_R_inp_period 29; pos @MMK_L_lc_i @MMK_R_inp_quotel -40; pos @MMK_L_lc_i @MMK_R_inp_quoter -40; pos @MMK_L_lc_i @MMK_R_lc_a.alt01 3; pos @MMK_L_lc_i @MMK_R_uc_a 12; pos @MMK_L_lc_i @MMK_R_uc_j 22; pos @MMK_L_lc_i @MMK_R_uc_t -30; pos @MMK_L_lc_i @MMK_R_uc_w -40; pos @MMK_L_lc_i @MMK_R_uc_y -40; pos @MMK_L_lc_i V -40; pos @MMK_L_lc_i X 16; pos @MMK_L_lc_i eightinferior 30; pos @MMK_L_lc_i eightsuperior -20; pos @MMK_L_lc_i fiveinferior 12; pos @MMK_L_lc_i fivesuperior -20; pos @MMK_L_lc_i fourinferior 20; pos @MMK_L_lc_i foursuperior -20; pos @MMK_L_lc_i nineinferior 10; pos @MMK_L_lc_i ninesuperior -18; pos @MMK_L_lc_i onesuperior -20; pos @MMK_L_lc_i registered -10; pos @MMK_L_lc_i sevensuperior -20; pos @MMK_L_lc_i sixinferior 30; pos @MMK_L_lc_i sixsuperior -20; pos @MMK_L_lc_i threeinferior 10; pos @MMK_L_lc_i threesuperior -20; pos @MMK_L_lc_i trademark -16; pos @MMK_L_lc_i twoinferior 10; pos @MMK_L_lc_i twosuperior -10; pos @MMK_L_lc_i zeroinferior 30; pos @MMK_L_lc_i zerosuperior -20; pos @MMK_L_lc_j @MMK_R_inp_foot -20; pos @MMK_L_lc_j @MMK_R_inp_hyph 12; pos @MMK_L_lc_j @MMK_R_inp_period -21; pos @MMK_L_lc_j @MMK_R_inp_quotel -21; pos @MMK_L_lc_j @MMK_R_inp_quoter -23; pos @MMK_L_lc_j @MMK_R_lc_w -10; pos @MMK_L_lc_j @MMK_R_uc_t -10; pos @MMK_L_lc_j @MMK_R_uc_w -30; pos @MMK_L_lc_j @MMK_R_uc_y -30; pos @MMK_L_lc_j @MMK_R_uc_z -10; pos @MMK_L_lc_j V -35; pos @MMK_L_lc_j ninesuperior -10; pos @MMK_L_lc_j onesuperior 20; pos @MMK_L_lc_j parenright 10; pos @MMK_L_lc_j registered 8; pos @MMK_L_lc_j sevensuperior 12; pos @MMK_L_lc_j slash -25; pos @MMK_L_lc_j trademark -8; pos @MMK_L_lc_k @MMK_R_inp_foot -52; pos @MMK_L_lc_k @MMK_R_inp_guill -23; pos @MMK_L_lc_k @MMK_R_inp_hyph -17; pos @MMK_L_lc_k @MMK_R_inp_period 29; pos @MMK_L_lc_k @MMK_R_inp_quotel -62; pos @MMK_L_lc_k @MMK_R_inp_quoter -47; pos @MMK_L_lc_k @MMK_R_lc_a.alt01 3; pos @MMK_L_lc_k @MMK_R_lc_g -7; pos @MMK_L_lc_k @MMK_R_lc_t -10; pos @MMK_L_lc_k @MMK_R_lc_u -10; pos @MMK_L_lc_k @MMK_R_lc_w -11; pos @MMK_L_lc_k @MMK_R_lc_y -3; pos @MMK_L_lc_k @MMK_R_uc_a 20; pos @MMK_L_lc_k @MMK_R_uc_j 25; pos @MMK_L_lc_k @MMK_R_uc_t -60; pos @MMK_L_lc_k @MMK_R_uc_w -42; pos @MMK_L_lc_k @MMK_R_uc_y -56; pos @MMK_L_lc_k @MMK_R_uc_z 7; pos @MMK_L_lc_k V -62; pos @MMK_L_lc_k X 26; pos @MMK_L_lc_k ampersand 22; pos @MMK_L_lc_k eightinferior 30; pos @MMK_L_lc_k eightsuperior -30; pos @MMK_L_lc_k fiveinferior 20; pos @MMK_L_lc_k fivesuperior -30; pos @MMK_L_lc_k fourinferior 40; pos @MMK_L_lc_k foursuperior -30; pos @MMK_L_lc_k ninesuperior -30; pos @MMK_L_lc_k oneinferior 10; pos @MMK_L_lc_k onesuperior -30; pos @MMK_L_lc_k registered -22; pos @MMK_L_lc_k seveninferior -20; pos @MMK_L_lc_k sevensuperior -50; pos @MMK_L_lc_k sixinferior 30; pos @MMK_L_lc_k sixsuperior -30; pos @MMK_L_lc_k slash 10; pos @MMK_L_lc_k threeinferior 20; pos @MMK_L_lc_k threesuperior -30; pos @MMK_L_lc_k trademark -60; pos @MMK_L_lc_k twoinferior 20; pos @MMK_L_lc_k twosuperior -30; pos @MMK_L_lc_k v -4; pos @MMK_L_lc_k zeroinferior 30; pos @MMK_L_lc_k zerosuperior -30; pos @MMK_L_lc_l @MMK_R_inp_foot -20; pos @MMK_L_lc_l @MMK_R_inp_guill -8; pos @MMK_L_lc_l @MMK_R_inp_period 29; pos @MMK_L_lc_l @MMK_R_inp_quotel -48; pos @MMK_L_lc_l @MMK_R_inp_quoter -45; pos @MMK_L_lc_l @MMK_R_lc_a.alt01 5; pos @MMK_L_lc_l @MMK_R_lc_w -2; pos @MMK_L_lc_l @MMK_R_lc_y -2; pos @MMK_L_lc_l @MMK_R_uc_a 20; pos @MMK_L_lc_l @MMK_R_uc_j 22; pos @MMK_L_lc_l @MMK_R_uc_t -20; pos @MMK_L_lc_l @MMK_R_uc_w -20; pos @MMK_L_lc_l @MMK_R_uc_y -20; pos @MMK_L_lc_l @MMK_R_uc_z 4; pos @MMK_L_lc_l V -20; pos @MMK_L_lc_l X 19; pos @MMK_L_lc_l ampersand 6; pos @MMK_L_lc_l eightinferior 30; pos @MMK_L_lc_l eightsuperior -10; pos @MMK_L_lc_l fiveinferior 10; pos @MMK_L_lc_l fivesuperior -10; pos @MMK_L_lc_l fourinferior 30; pos @MMK_L_lc_l foursuperior -10; pos @MMK_L_lc_l nineinferior 2; pos @MMK_L_lc_l ninesuperior -10; pos @MMK_L_lc_l onesuperior -10; pos @MMK_L_lc_l registered -10; pos @MMK_L_lc_l sevensuperior -10; pos @MMK_L_lc_l sixinferior 30; pos @MMK_L_lc_l sixsuperior -10; pos @MMK_L_lc_l threeinferior 10; pos @MMK_L_lc_l threesuperior -10; pos @MMK_L_lc_l trademark -20; pos @MMK_L_lc_l twoinferior 10; pos @MMK_L_lc_l twosuperior -10; pos @MMK_L_lc_l v -2; pos @MMK_L_lc_l zeroinferior 30; pos @MMK_L_lc_l zerosuperior -10; pos @MMK_L_lc_n @MMK_R_inp_foot -60; pos @MMK_L_lc_n @MMK_R_inp_hyph -8; pos @MMK_L_lc_n @MMK_R_inp_period 29; pos @MMK_L_lc_n @MMK_R_inp_quotel -60; pos @MMK_L_lc_n @MMK_R_inp_quoter -48; pos @MMK_L_lc_n @MMK_R_lc_a.alt01 2; pos @MMK_L_lc_n @MMK_R_lc_w -9; pos @MMK_L_lc_n @MMK_R_lc_y -9; pos @MMK_L_lc_n @MMK_R_uc_a 10; pos @MMK_L_lc_n @MMK_R_uc_j 23; pos @MMK_L_lc_n @MMK_R_uc_t -61; pos @MMK_L_lc_n @MMK_R_uc_w -38; pos @MMK_L_lc_n @MMK_R_uc_y -58; pos @MMK_L_lc_n @MMK_R_uc_z 2; pos @MMK_L_lc_n V -48; pos @MMK_L_lc_n X 8; pos @MMK_L_lc_n ampersand 14; pos @MMK_L_lc_n eightinferior 20; pos @MMK_L_lc_n eightsuperior -20; pos @MMK_L_lc_n fiveinferior 10; pos @MMK_L_lc_n fivesuperior -30; pos @MMK_L_lc_n fourinferior 30; pos @MMK_L_lc_n foursuperior -20; pos @MMK_L_lc_n nineinferior 10; pos @MMK_L_lc_n ninesuperior -40; pos @MMK_L_lc_n onesuperior -40; pos @MMK_L_lc_n registered -35; pos @MMK_L_lc_n sevensuperior -55; pos @MMK_L_lc_n sixinferior 30; pos @MMK_L_lc_n sixsuperior -20; pos @MMK_L_lc_n threeinferior 10; pos @MMK_L_lc_n threesuperior -30; pos @MMK_L_lc_n trademark -55; pos @MMK_L_lc_n twoinferior 10; pos @MMK_L_lc_n twosuperior -20; pos @MMK_L_lc_n v -9; pos @MMK_L_lc_n zeroinferior 30; pos @MMK_L_lc_n zerosuperior -30; pos @MMK_L_lc_o @MMK_R_inp_foot -40; pos @MMK_L_lc_o @MMK_R_inp_guill 10; pos @MMK_L_lc_o @MMK_R_inp_guilr -2; pos @MMK_L_lc_o @MMK_R_inp_hyph 20; pos @MMK_L_lc_o @MMK_R_inp_period -20; pos @MMK_L_lc_o @MMK_R_inp_quotel -52; pos @MMK_L_lc_o @MMK_R_inp_quoter -50; pos @MMK_L_lc_o @MMK_R_lc_a.alt01 10; pos @MMK_L_lc_o @MMK_R_lc_f -6; pos @MMK_L_lc_o @MMK_R_lc_t -2; pos @MMK_L_lc_o @MMK_R_lc_w -9; pos @MMK_L_lc_o @MMK_R_lc_y -8; pos @MMK_L_lc_o @MMK_R_lc_z -5; pos @MMK_L_lc_o @MMK_R_uc_a -20; pos @MMK_L_lc_o @MMK_R_uc_j -18; pos @MMK_L_lc_o @MMK_R_uc_t -27; pos @MMK_L_lc_o @MMK_R_uc_w -35; pos @MMK_L_lc_o @MMK_R_uc_y -65; pos @MMK_L_lc_o @MMK_R_uc_z -12; pos @MMK_L_lc_o V -45; pos @MMK_L_lc_o X -15; pos @MMK_L_lc_o eightinferior 15; pos @MMK_L_lc_o eightsuperior -10; pos @MMK_L_lc_o fivesuperior -12; pos @MMK_L_lc_o fourinferior 4; pos @MMK_L_lc_o foursuperior -4; pos @MMK_L_lc_o nineinferior 10; pos @MMK_L_lc_o ninesuperior -22; pos @MMK_L_lc_o oneinferior 13; pos @MMK_L_lc_o registered -15; pos @MMK_L_lc_o seveninferior 10; pos @MMK_L_lc_o sevensuperior -32; pos @MMK_L_lc_o sixinferior 20; pos @MMK_L_lc_o sixsuperior -10; pos @MMK_L_lc_o slash -6; pos @MMK_L_lc_o threeinferior 5; pos @MMK_L_lc_o threesuperior -10; pos @MMK_L_lc_o trademark -35; pos @MMK_L_lc_o underscore -50; pos @MMK_L_lc_o v -8; pos @MMK_L_lc_o x -22; pos @MMK_L_lc_o zeroinferior 20; pos @MMK_L_lc_o zerosuperior -20; pos @MMK_L_lc_ohorn @MMK_R_inp_foot 20; pos @MMK_L_lc_ohorn @MMK_R_inp_guill 15; pos @MMK_L_lc_ohorn @MMK_R_inp_hyph 10; pos @MMK_L_lc_ohorn @MMK_R_inp_parenth 10; pos @MMK_L_lc_ohorn @MMK_R_inp_period -20; pos @MMK_L_lc_ohorn @MMK_R_inp_quotel 25; pos @MMK_L_lc_ohorn @MMK_R_inp_quoter 2; pos @MMK_L_lc_ohorn @MMK_R_lc_y 2; pos @MMK_L_lc_ohorn eightinferior 15; pos @MMK_L_lc_ohorn eightsuperior 12; pos @MMK_L_lc_ohorn fivesuperior 6; pos @MMK_L_lc_ohorn fourinferior 4; pos @MMK_L_lc_ohorn foursuperior 4; pos @MMK_L_lc_ohorn nineinferior 10; pos @MMK_L_lc_ohorn ninesuperior 16; pos @MMK_L_lc_ohorn oneinferior 13; pos @MMK_L_lc_ohorn onesuperior 2; pos @MMK_L_lc_ohorn parenright 10; pos @MMK_L_lc_ohorn question 20; pos @MMK_L_lc_ohorn registered 32; pos @MMK_L_lc_ohorn seveninferior 10; pos @MMK_L_lc_ohorn sevensuperior 14; pos @MMK_L_lc_ohorn sixinferior 20; pos @MMK_L_lc_ohorn sixsuperior 21; pos @MMK_L_lc_ohorn threeinferior 5; pos @MMK_L_lc_ohorn threesuperior 4; pos @MMK_L_lc_ohorn trademark 10; pos @MMK_L_lc_ohorn twosuperior 4; pos @MMK_L_lc_ohorn underscore -60; pos @MMK_L_lc_ohorn x -20; pos @MMK_L_lc_ohorn zeroinferior 20; pos @MMK_L_lc_ohorn zerosuperior 20; pos @MMK_L_lc_r @MMK_R_inp_foot 5; pos @MMK_L_lc_r @MMK_R_inp_hyph -10; pos @MMK_L_lc_r @MMK_R_inp_parenth -4; pos @MMK_L_lc_r @MMK_R_inp_period -100; pos @MMK_L_lc_r @MMK_R_inp_quotel 16; pos @MMK_L_lc_r @MMK_R_lc_d -19; pos @MMK_L_lc_r @MMK_R_lc_f -10; pos @MMK_L_lc_r @MMK_R_lc_g -10; pos @MMK_L_lc_r @MMK_R_lc_o -11; pos @MMK_L_lc_r @MMK_R_lc_s -1; pos @MMK_L_lc_r @MMK_R_lc_t -10; pos @MMK_L_lc_r @MMK_R_lc_u 1; pos @MMK_L_lc_r @MMK_R_lc_y 18; pos @MMK_L_lc_r @MMK_R_uc_a -39; pos @MMK_L_lc_r @MMK_R_uc_j -42; pos @MMK_L_lc_r @MMK_R_uc_o 20; pos @MMK_L_lc_r @MMK_R_uc_s 7; pos @MMK_L_lc_r @MMK_R_uc_w -2; pos @MMK_L_lc_r @MMK_R_uc_y -40; pos @MMK_L_lc_r @MMK_R_uc_z -20; pos @MMK_L_lc_r V -4; pos @MMK_L_lc_r X -16; pos @MMK_L_lc_r ampersand -34; pos @MMK_L_lc_r eightinferior -20; pos @MMK_L_lc_r eightsuperior 20; pos @MMK_L_lc_r fiveinferior -20; pos @MMK_L_lc_r fivesuperior 10; pos @MMK_L_lc_r fourinferior -40; pos @MMK_L_lc_r foursuperior 30; pos @MMK_L_lc_r nineinferior -20; pos @MMK_L_lc_r ninesuperior -8; pos @MMK_L_lc_r oneinferior -20; pos @MMK_L_lc_r parenright -10; pos @MMK_L_lc_r registered 28; pos @MMK_L_lc_r seveninferior -10; pos @MMK_L_lc_r sevensuperior -10; pos @MMK_L_lc_r sixinferior -20; pos @MMK_L_lc_r sixsuperior 20; pos @MMK_L_lc_r slash -67; pos @MMK_L_lc_r threeinferior -20; pos @MMK_L_lc_r threesuperior 10; pos @MMK_L_lc_r twoinferior -20; pos @MMK_L_lc_r twosuperior 26; pos @MMK_L_lc_r underscore -80; pos @MMK_L_lc_r v 16; pos @MMK_L_lc_r zeroinferior -20; pos @MMK_L_lc_r zerosuperior 30; pos @MMK_L_lc_s @MMK_R_inp_foot -20; pos @MMK_L_lc_s @MMK_R_inp_guill -18; pos @MMK_L_lc_s @MMK_R_inp_hyph -20; pos @MMK_L_lc_s @MMK_R_inp_period -10; pos @MMK_L_lc_s @MMK_R_inp_quotel -20; pos @MMK_L_lc_s @MMK_R_inp_quoter -20; pos @MMK_L_lc_s @MMK_R_lc_f -4; pos @MMK_L_lc_s @MMK_R_lc_g -10; pos @MMK_L_lc_s @MMK_R_lc_s -6; pos @MMK_L_lc_s @MMK_R_lc_t -8; pos @MMK_L_lc_s @MMK_R_lc_w -14; pos @MMK_L_lc_s @MMK_R_lc_y -1; pos @MMK_L_lc_s @MMK_R_uc_t -30; pos @MMK_L_lc_s @MMK_R_uc_w -30; pos @MMK_L_lc_s @MMK_R_uc_y -52; pos @MMK_L_lc_s @MMK_R_uc_z -15; pos @MMK_L_lc_s V -32; pos @MMK_L_lc_s X -10; pos @MMK_L_lc_s ampersand -6; pos @MMK_L_lc_s at -18; pos @MMK_L_lc_s eightsuperior 10; pos @MMK_L_lc_s fiveinferior -4; pos @MMK_L_lc_s fivesuperior -8; pos @MMK_L_lc_s fourinferior 6; pos @MMK_L_lc_s foursuperior 2; pos @MMK_L_lc_s nineinferior -20; pos @MMK_L_lc_s ninesuperior -27; pos @MMK_L_lc_s oneinferior -4; pos @MMK_L_lc_s onesuperior -12; pos @MMK_L_lc_s seveninferior -12; pos @MMK_L_lc_s sevensuperior -30; pos @MMK_L_lc_s sixinferior 2; pos @MMK_L_lc_s sixsuperior 2; pos @MMK_L_lc_s slash -12; pos @MMK_L_lc_s threeinferior -4; pos @MMK_L_lc_s threesuperior -8; pos @MMK_L_lc_s trademark -22; pos @MMK_L_lc_s twoinferior -4; pos @MMK_L_lc_s twosuperior -8; pos @MMK_L_lc_s underscore -20; pos @MMK_L_lc_s v -2; pos @MMK_L_lc_s x -20; pos @MMK_L_lc_s zeroinferior 10; pos @MMK_L_lc_t @MMK_R_inp_foot 10; pos @MMK_L_lc_t @MMK_R_inp_guill -23; pos @MMK_L_lc_t @MMK_R_inp_hyph -40; pos @MMK_L_lc_t @MMK_R_inp_parenth 18; pos @MMK_L_lc_t @MMK_R_inp_period 10; pos @MMK_L_lc_t @MMK_R_lc_d -4; pos @MMK_L_lc_t @MMK_R_lc_f -7; pos @MMK_L_lc_t @MMK_R_lc_g -10; pos @MMK_L_lc_t @MMK_R_lc_o -4; pos @MMK_L_lc_t @MMK_R_lc_s -5; pos @MMK_L_lc_t @MMK_R_lc_t -10; pos @MMK_L_lc_t @MMK_R_lc_u -5; pos @MMK_L_lc_t @MMK_R_lc_w -14; pos @MMK_L_lc_t @MMK_R_uc_a 22; pos @MMK_L_lc_t @MMK_R_uc_j 14; pos @MMK_L_lc_t @MMK_R_uc_o 10; pos @MMK_L_lc_t @MMK_R_uc_s 20; pos @MMK_L_lc_t @MMK_R_uc_t 5; pos @MMK_L_lc_t @MMK_R_uc_y -20; pos @MMK_L_lc_t @MMK_R_uc_z 2; pos @MMK_L_lc_t X 10; pos @MMK_L_lc_t ampersand 1; pos @MMK_L_lc_t at -13; pos @MMK_L_lc_t eightinferior 12; pos @MMK_L_lc_t eightsuperior 10; pos @MMK_L_lc_t fivesuperior 10; pos @MMK_L_lc_t fourinferior 20; pos @MMK_L_lc_t foursuperior 20; pos @MMK_L_lc_t nineinferior -8; pos @MMK_L_lc_t ninesuperior 2; pos @MMK_L_lc_t registered 20; pos @MMK_L_lc_t seveninferior -16; pos @MMK_L_lc_t sixinferior 4; pos @MMK_L_lc_t sixsuperior 20; pos @MMK_L_lc_t trademark -4; pos @MMK_L_lc_t underscore 10; pos @MMK_L_lc_t v -2; pos @MMK_L_lc_t zeroinferior 14; pos @MMK_L_lc_t zerosuperior 10; pos @MMK_L_lc_uhorn @MMK_R_inp_foot 43; pos @MMK_L_lc_uhorn @MMK_R_inp_parenth 10; pos @MMK_L_lc_uhorn @MMK_R_inp_period 29; pos @MMK_L_lc_uhorn @MMK_R_inp_quotel 23; pos @MMK_L_lc_uhorn @MMK_R_inp_quoter 10; pos @MMK_L_lc_uhorn @MMK_R_lc_t 10; pos @MMK_L_lc_uhorn @MMK_R_lc_w 15; pos @MMK_L_lc_uhorn @MMK_R_lc_y 15; pos @MMK_L_lc_uhorn @MMK_R_lc_z 5; pos @MMK_L_lc_uhorn eightinferior 30; pos @MMK_L_lc_uhorn eightsuperior 10; pos @MMK_L_lc_uhorn exclam 20; pos @MMK_L_lc_uhorn fiveinferior 10; pos @MMK_L_lc_uhorn fivesuperior 10; pos @MMK_L_lc_uhorn fourinferior 22; pos @MMK_L_lc_uhorn nineinferior 10; pos @MMK_L_lc_uhorn ninesuperior 20; pos @MMK_L_lc_uhorn onesuperior 10; pos @MMK_L_lc_uhorn parenright 10; pos @MMK_L_lc_uhorn question 30; pos @MMK_L_lc_uhorn registered 40; pos @MMK_L_lc_uhorn seveninferior -10; pos @MMK_L_lc_uhorn sevensuperior 10; pos @MMK_L_lc_uhorn sixinferior 30; pos @MMK_L_lc_uhorn sixsuperior 20; pos @MMK_L_lc_uhorn threeinferior 10; pos @MMK_L_lc_uhorn trademark 10; pos @MMK_L_lc_uhorn twoinferior 10; pos @MMK_L_lc_uhorn v 15; pos @MMK_L_lc_uhorn x 5; pos @MMK_L_lc_uhorn zeroinferior 30; pos @MMK_L_lc_uhorn zerosuperior 40; pos @MMK_L_lc_w @MMK_R_inp_foot 30; pos @MMK_L_lc_w @MMK_R_inp_guill -10; pos @MMK_L_lc_w @MMK_R_inp_guilr -2; pos @MMK_L_lc_w @MMK_R_inp_hyph -10; pos @MMK_L_lc_w @MMK_R_inp_period -60; pos @MMK_L_lc_w @MMK_R_inp_quotel 37; pos @MMK_L_lc_w @MMK_R_inp_quoter 40; pos @MMK_L_lc_w @MMK_R_lc_a.alt01 -8; pos @MMK_L_lc_w @MMK_R_lc_d -8; pos @MMK_L_lc_w @MMK_R_lc_g -8; pos @MMK_L_lc_w @MMK_R_lc_i 5; pos @MMK_L_lc_w @MMK_R_lc_j 5; pos @MMK_L_lc_w @MMK_R_lc_n 5; pos @MMK_L_lc_w @MMK_R_lc_o -8; pos @MMK_L_lc_w @MMK_R_lc_s -2; pos @MMK_L_lc_w @MMK_R_lc_t 5; pos @MMK_L_lc_w @MMK_R_lc_u 1; pos @MMK_L_lc_w @MMK_R_lc_w 10; pos @MMK_L_lc_w @MMK_R_lc_y 27; pos @MMK_L_lc_w @MMK_R_lc_z 10; pos @MMK_L_lc_w @MMK_R_uc_a -15; pos @MMK_L_lc_w @MMK_R_uc_j -20; pos @MMK_L_lc_w @MMK_R_uc_o 15; pos @MMK_L_lc_w @MMK_R_uc_s 10; pos @MMK_L_lc_w @MMK_R_uc_y -12; pos @MMK_L_lc_w X -12; pos @MMK_L_lc_w ampersand -12; pos @MMK_L_lc_w at -2; pos @MMK_L_lc_w eightinferior -25; pos @MMK_L_lc_w eightsuperior 25; pos @MMK_L_lc_w fiveinferior -20; pos @MMK_L_lc_w fivesuperior 30; pos @MMK_L_lc_w fourinferior -30; pos @MMK_L_lc_w foursuperior 40; pos @MMK_L_lc_w nineinferior -25; pos @MMK_L_lc_w ninesuperior 20; pos @MMK_L_lc_w oneinferior -10; pos @MMK_L_lc_w onesuperior 10; pos @MMK_L_lc_w p 5; pos @MMK_L_lc_w parenright -10; pos @MMK_L_lc_w registered 48; pos @MMK_L_lc_w seveninferior -10; pos @MMK_L_lc_w sixinferior -30; pos @MMK_L_lc_w sixsuperior 35; pos @MMK_L_lc_w slash -20; pos @MMK_L_lc_w threeinferior -30; pos @MMK_L_lc_w threesuperior 10; pos @MMK_L_lc_w trademark 16; pos @MMK_L_lc_w twoinferior -20; pos @MMK_L_lc_w twosuperior 25; pos @MMK_L_lc_w underscore -50; pos @MMK_L_lc_w v 22; pos @MMK_L_lc_w zeroinferior -20; pos @MMK_L_lc_w zerosuperior 40; pos @MMK_L_lc_y @MMK_R_inp_foot 30; pos @MMK_L_lc_y @MMK_R_inp_guill -6; pos @MMK_L_lc_y @MMK_R_inp_guilr -2; pos @MMK_L_lc_y @MMK_R_inp_hyph -10; pos @MMK_L_lc_y @MMK_R_inp_period -57; pos @MMK_L_lc_y @MMK_R_inp_quotel 40; pos @MMK_L_lc_y @MMK_R_inp_quoter 40; pos @MMK_L_lc_y @MMK_R_lc_a.alt01 -13; pos @MMK_L_lc_y @MMK_R_lc_d -4; pos @MMK_L_lc_y @MMK_R_lc_f 9; pos @MMK_L_lc_y @MMK_R_lc_g -8; pos @MMK_L_lc_y @MMK_R_lc_i 10; pos @MMK_L_lc_y @MMK_R_lc_j 10; pos @MMK_L_lc_y @MMK_R_lc_n 10; pos @MMK_L_lc_y @MMK_R_lc_o -4; pos @MMK_L_lc_y @MMK_R_lc_s 2; pos @MMK_L_lc_y @MMK_R_lc_t 10; pos @MMK_L_lc_y @MMK_R_lc_u 10; pos @MMK_L_lc_y @MMK_R_lc_w 15; pos @MMK_L_lc_y @MMK_R_lc_y 33; pos @MMK_L_lc_y @MMK_R_lc_z 15; pos @MMK_L_lc_y @MMK_R_uc_a -20; pos @MMK_L_lc_y @MMK_R_uc_j -37; pos @MMK_L_lc_y @MMK_R_uc_o 20; pos @MMK_L_lc_y @MMK_R_uc_s 10; pos @MMK_L_lc_y @MMK_R_uc_t 10; pos @MMK_L_lc_y @MMK_R_uc_w 10; pos @MMK_L_lc_y @MMK_R_uc_y -5; pos @MMK_L_lc_y @MMK_R_uc_z -5; pos @MMK_L_lc_y V 10; pos @MMK_L_lc_y X -6; pos @MMK_L_lc_y ampersand -16; pos @MMK_L_lc_y at -10; pos @MMK_L_lc_y eightinferior -25; pos @MMK_L_lc_y eightsuperior 30; pos @MMK_L_lc_y fiveinferior -25; pos @MMK_L_lc_y fivesuperior 30; pos @MMK_L_lc_y fourinferior -30; pos @MMK_L_lc_y foursuperior 30; pos @MMK_L_lc_y nineinferior -20; pos @MMK_L_lc_y ninesuperior 17; pos @MMK_L_lc_y oneinferior -20; pos @MMK_L_lc_y p 10; pos @MMK_L_lc_y parenright -10; pos @MMK_L_lc_y registered 56; pos @MMK_L_lc_y seveninferior -10; pos @MMK_L_lc_y sevensuperior 10; pos @MMK_L_lc_y sixinferior -40; pos @MMK_L_lc_y sixsuperior 32; pos @MMK_L_lc_y slash -15; pos @MMK_L_lc_y threeinferior -20; pos @MMK_L_lc_y threesuperior 18; pos @MMK_L_lc_y trademark 16; pos @MMK_L_lc_y twoinferior -20; pos @MMK_L_lc_y twosuperior 18; pos @MMK_L_lc_y underscore -80; pos @MMK_L_lc_y v 31; pos @MMK_L_lc_y zeroinferior -30; pos @MMK_L_lc_y zerosuperior 40; pos @MMK_L_lc_z @MMK_R_inp_foot -12; pos @MMK_L_lc_z @MMK_R_inp_guill -18; pos @MMK_L_lc_z @MMK_R_inp_guilr -10; pos @MMK_L_lc_z @MMK_R_inp_hyph -20; pos @MMK_L_lc_z @MMK_R_inp_period 20; pos @MMK_L_lc_z @MMK_R_inp_quotel -22; pos @MMK_L_lc_z @MMK_R_inp_quoter -2; pos @MMK_L_lc_z @MMK_R_lc_d -10; pos @MMK_L_lc_z @MMK_R_lc_o -7; pos @MMK_L_lc_z @MMK_R_lc_w -6; pos @MMK_L_lc_z @MMK_R_lc_y -2; pos @MMK_L_lc_z @MMK_R_uc_a 20; pos @MMK_L_lc_z @MMK_R_uc_j 12; pos @MMK_L_lc_z @MMK_R_uc_t -30; pos @MMK_L_lc_z @MMK_R_uc_w -35; pos @MMK_L_lc_z @MMK_R_uc_y -40; pos @MMK_L_lc_z @MMK_R_uc_z 2; pos @MMK_L_lc_z V -40; pos @MMK_L_lc_z X 22; pos @MMK_L_lc_z ampersand 4; pos @MMK_L_lc_z at -18; pos @MMK_L_lc_z eightinferior 12; pos @MMK_L_lc_z eightsuperior -2; pos @MMK_L_lc_z fiveinferior 10; pos @MMK_L_lc_z fivesuperior -4; pos @MMK_L_lc_z fourinferior 20; pos @MMK_L_lc_z foursuperior 16; pos @MMK_L_lc_z nineinferior 2; pos @MMK_L_lc_z ninesuperior -20; pos @MMK_L_lc_z oneinferior 10; pos @MMK_L_lc_z onesuperior -4; pos @MMK_L_lc_z registered 2; pos @MMK_L_lc_z seveninferior -10; pos @MMK_L_lc_z sevensuperior -24; pos @MMK_L_lc_z sixinferior 12; pos @MMK_L_lc_z slash 2; pos @MMK_L_lc_z threeinferior 12; pos @MMK_L_lc_z threesuperior -4; pos @MMK_L_lc_z trademark -6; pos @MMK_L_lc_z twoinferior 20; pos @MMK_L_lc_z twosuperior -4; pos @MMK_L_lc_z v -2; pos @MMK_L_lc_z zeroinferior 22; pos @MMK_L_lc_z zerosuperior 6; pos @MMK_L_uc_a @MMK_R_inp_foot -94; pos @MMK_L_uc_a @MMK_R_inp_guill -28; pos @MMK_L_uc_a @MMK_R_inp_guilr -12; pos @MMK_L_uc_a @MMK_R_inp_hyph -27; pos @MMK_L_uc_a @MMK_R_inp_period 15; pos @MMK_L_uc_a @MMK_R_inp_quotel -104; pos @MMK_L_uc_a @MMK_R_inp_quoter -100; pos @MMK_L_uc_a @MMK_R_lc_d -16; pos @MMK_L_uc_a @MMK_R_lc_h -10; pos @MMK_L_uc_a @MMK_R_lc_i -11; pos @MMK_L_uc_a @MMK_R_lc_o -21; pos @MMK_L_uc_a @MMK_R_lc_t -16; pos @MMK_L_uc_a @MMK_R_lc_u -20; pos @MMK_L_uc_a @MMK_R_lc_w -25; pos @MMK_L_uc_a @MMK_R_lc_y -18; pos @MMK_L_uc_a @MMK_R_lc_z 5; pos @MMK_L_uc_a @MMK_R_uc_a 15; pos @MMK_L_uc_a @MMK_R_uc_j 6; pos @MMK_L_uc_a @MMK_R_uc_o -25; pos @MMK_L_uc_a @MMK_R_uc_t -57; pos @MMK_L_uc_a @MMK_R_uc_u -35; pos @MMK_L_uc_a @MMK_R_uc_w -45; pos @MMK_L_uc_a @MMK_R_uc_y -55; pos @MMK_L_uc_a @MMK_R_uc_z 1; pos @MMK_L_uc_a V -60; pos @MMK_L_uc_a X 21; pos @MMK_L_uc_a ampersand -27; pos @MMK_L_uc_a at -40; pos @MMK_L_uc_a eightinferior 2; pos @MMK_L_uc_a eightsuperior -60; pos @MMK_L_uc_a exclamdown 30; pos @MMK_L_uc_a fivesuperior -62; pos @MMK_L_uc_a fourinferior 8; pos @MMK_L_uc_a foursuperior -60; pos @MMK_L_uc_a nineinferior -15; pos @MMK_L_uc_a ninesuperior -80; pos @MMK_L_uc_a oneinferior 8; pos @MMK_L_uc_a onesuperior -60; pos @MMK_L_uc_a p -10; pos @MMK_L_uc_a question -20; pos @MMK_L_uc_a questiondown 40; pos @MMK_L_uc_a registered -60; pos @MMK_L_uc_a seveninferior -12; pos @MMK_L_uc_a sevensuperior -80; pos @MMK_L_uc_a sixinferior -2; pos @MMK_L_uc_a sixsuperior -60; pos @MMK_L_uc_a slash 20; pos @MMK_L_uc_a threeinferior 2; pos @MMK_L_uc_a threesuperior -68; pos @MMK_L_uc_a trademark -89; pos @MMK_L_uc_a twoinferior 14; pos @MMK_L_uc_a twosuperior -60; pos @MMK_L_uc_a underscore 15; pos @MMK_L_uc_a v -27; pos @MMK_L_uc_a zeroinferior 8; pos @MMK_L_uc_a zerosuperior -60; pos @MMK_L_uc_c @MMK_R_inp_foot 10; pos @MMK_L_uc_c @MMK_R_inp_hyph -20; pos @MMK_L_uc_c @MMK_R_inp_period -22; pos @MMK_L_uc_c @MMK_R_inp_quotel 2; pos @MMK_L_uc_c @MMK_R_inp_quoter 2; pos @MMK_L_uc_c @MMK_R_lc_a.alt01 -10; pos @MMK_L_uc_c @MMK_R_lc_d -10; pos @MMK_L_uc_c @MMK_R_lc_g -10; pos @MMK_L_uc_c @MMK_R_lc_n -4; pos @MMK_L_uc_c @MMK_R_lc_o -10; pos @MMK_L_uc_c @MMK_R_lc_w -10; pos @MMK_L_uc_c @MMK_R_uc_a -15; pos @MMK_L_uc_c @MMK_R_uc_o -8; pos @MMK_L_uc_c @MMK_R_uc_t 2; pos @MMK_L_uc_c @MMK_R_uc_w 4; pos @MMK_L_uc_c @MMK_R_uc_y -4; pos @MMK_L_uc_c @MMK_R_uc_z -9; pos @MMK_L_uc_c at -2; pos @MMK_L_uc_c eightinferior -2; pos @MMK_L_uc_c eightsuperior 4; pos @MMK_L_uc_c fiveinferior -7; pos @MMK_L_uc_c fivesuperior 2; pos @MMK_L_uc_c fourinferior 3; pos @MMK_L_uc_c foursuperior 2; pos @MMK_L_uc_c nineinferior -10; pos @MMK_L_uc_c ninesuperior 12; pos @MMK_L_uc_c oneinferior -10; pos @MMK_L_uc_c onesuperior 5; pos @MMK_L_uc_c p -4; pos @MMK_L_uc_c registered 25; pos @MMK_L_uc_c seveninferior -20; pos @MMK_L_uc_c sevensuperior 2; pos @MMK_L_uc_c sixinferior 3; pos @MMK_L_uc_c sixsuperior 4; pos @MMK_L_uc_c slash -3; pos @MMK_L_uc_c threeinferior -5; pos @MMK_L_uc_c threesuperior 2; pos @MMK_L_uc_c trademark 10; pos @MMK_L_uc_c twoinferior -7; pos @MMK_L_uc_c twosuperior 10; pos @MMK_L_uc_c underscore -20; pos @MMK_L_uc_c zerosuperior 12; pos @MMK_L_uc_d @MMK_R_inp_foot -20; pos @MMK_L_uc_d @MMK_R_inp_guill 20; pos @MMK_L_uc_d @MMK_R_inp_guilr 10; pos @MMK_L_uc_d @MMK_R_inp_hyph 20; pos @MMK_L_uc_d @MMK_R_inp_period -45; pos @MMK_L_uc_d @MMK_R_inp_quotel -37; pos @MMK_L_uc_d @MMK_R_inp_quoter -37; pos @MMK_L_uc_d @MMK_R_uc_a -26; pos @MMK_L_uc_d @MMK_R_uc_j -15; pos @MMK_L_uc_d @MMK_R_uc_o 9; pos @MMK_L_uc_d @MMK_R_uc_t -19; pos @MMK_L_uc_d @MMK_R_uc_w -27; pos @MMK_L_uc_d @MMK_R_uc_y -42; pos @MMK_L_uc_d @MMK_R_uc_z -18; pos @MMK_L_uc_d V -32; pos @MMK_L_uc_d X -19; pos @MMK_L_uc_d ampersand -18; pos @MMK_L_uc_d eightsuperior -10; pos @MMK_L_uc_d fiveinferior 6; pos @MMK_L_uc_d fivesuperior -15; pos @MMK_L_uc_d fourinferior -2; pos @MMK_L_uc_d nineinferior 5; pos @MMK_L_uc_d ninesuperior -20; pos @MMK_L_uc_d oneinferior 6; pos @MMK_L_uc_d question -15; pos @MMK_L_uc_d seveninferior 8; pos @MMK_L_uc_d sevensuperior -34; pos @MMK_L_uc_d sixinferior -2; pos @MMK_L_uc_d sixsuperior -10; pos @MMK_L_uc_d slash -12; pos @MMK_L_uc_d threeinferior -2; pos @MMK_L_uc_d threesuperior -10; pos @MMK_L_uc_d trademark -24; pos @MMK_L_uc_d twoinferior -2; pos @MMK_L_uc_d twosuperior -10; pos @MMK_L_uc_d underscore -80; pos @MMK_L_uc_d zeroinferior 8; pos @MMK_L_uc_d zerosuperior -10; pos @MMK_L_uc_e @MMK_R_inp_guill -15; pos @MMK_L_uc_e @MMK_R_inp_hyph -20; pos @MMK_L_uc_e @MMK_R_inp_period -2; pos @MMK_L_uc_e @MMK_R_inp_quotel -2; pos @MMK_L_uc_e @MMK_R_inp_quoter -3; pos @MMK_L_uc_e @MMK_R_lc_d -15; pos @MMK_L_uc_e @MMK_R_lc_o -15; pos @MMK_L_uc_e @MMK_R_lc_w -15; pos @MMK_L_uc_e @MMK_R_uc_o -1; pos @MMK_L_uc_e @MMK_R_uc_t -2; pos @MMK_L_uc_e @MMK_R_uc_w -10; pos @MMK_L_uc_e @MMK_R_uc_y -10; pos @MMK_L_uc_e V -10; pos @MMK_L_uc_e ampersand -9; pos @MMK_L_uc_e at -12; pos @MMK_L_uc_e fiveinferior -10; pos @MMK_L_uc_e fourinferior 8; pos @MMK_L_uc_e nineinferior -15; pos @MMK_L_uc_e oneinferior -5; pos @MMK_L_uc_e registered 20; pos @MMK_L_uc_e seveninferior -20; pos @MMK_L_uc_e slash -10; pos @MMK_L_uc_e threesuperior 2; pos @MMK_L_uc_e trademark -2; pos @MMK_L_uc_e zerosuperior 2; pos @MMK_L_uc_g @MMK_R_inp_foot -30; pos @MMK_L_uc_g @MMK_R_inp_guill 20; pos @MMK_L_uc_g @MMK_R_inp_guilr 10; pos @MMK_L_uc_g @MMK_R_inp_hyph 30; pos @MMK_L_uc_g @MMK_R_inp_period -40; pos @MMK_L_uc_g @MMK_R_inp_quotel -40; pos @MMK_L_uc_g @MMK_R_inp_quoter -40; pos @MMK_L_uc_g @MMK_R_uc_a -10; pos @MMK_L_uc_g @MMK_R_uc_j -1; pos @MMK_L_uc_g @MMK_R_uc_o 10; pos @MMK_L_uc_g @MMK_R_uc_t -31; pos @MMK_L_uc_g @MMK_R_uc_w -23; pos @MMK_L_uc_g @MMK_R_uc_y -26; pos @MMK_L_uc_g @MMK_R_uc_z -10; pos @MMK_L_uc_g V -25; pos @MMK_L_uc_g X -15; pos @MMK_L_uc_g eightinferior 12; pos @MMK_L_uc_g eightsuperior -20; pos @MMK_L_uc_g fiveinferior 8; pos @MMK_L_uc_g fivesuperior -17; pos @MMK_L_uc_g foursuperior -2; pos @MMK_L_uc_g nineinferior 8; pos @MMK_L_uc_g ninesuperior -20; pos @MMK_L_uc_g oneinferior 8; pos @MMK_L_uc_g onesuperior -20; pos @MMK_L_uc_g question -20; pos @MMK_L_uc_g seveninferior 18; pos @MMK_L_uc_g sevensuperior -40; pos @MMK_L_uc_g sixinferior 8; pos @MMK_L_uc_g sixsuperior -20; pos @MMK_L_uc_g slash -20; pos @MMK_L_uc_g threeinferior 8; pos @MMK_L_uc_g threesuperior -14; pos @MMK_L_uc_g trademark -22; pos @MMK_L_uc_g twoinferior 8; pos @MMK_L_uc_g twosuperior -2; pos @MMK_L_uc_g underscore -40; pos @MMK_L_uc_g zeroinferior 8; pos @MMK_L_uc_g zerosuperior -20; pos @MMK_L_uc_j @MMK_R_inp_foot 20; pos @MMK_L_uc_j @MMK_R_inp_guilr -10; pos @MMK_L_uc_j @MMK_R_inp_period -50; pos @MMK_L_uc_j @MMK_R_inp_quotel 10; pos @MMK_L_uc_j @MMK_R_inp_quoter 10; pos @MMK_L_uc_j @MMK_R_lc_a.alt01 -5; pos @MMK_L_uc_j @MMK_R_uc_a -25; pos @MMK_L_uc_j @MMK_R_uc_j -31; pos @MMK_L_uc_j X -15; pos @MMK_L_uc_j eightinferior -20; pos @MMK_L_uc_j fiveinferior -24; pos @MMK_L_uc_j fourinferior -24; pos @MMK_L_uc_j nineinferior -25; pos @MMK_L_uc_j oneinferior -22; pos @MMK_L_uc_j questiondown -40; pos @MMK_L_uc_j registered 36; pos @MMK_L_uc_j seveninferior -20; pos @MMK_L_uc_j sixinferior -17; pos @MMK_L_uc_j slash -22; pos @MMK_L_uc_j threeinferior -22; pos @MMK_L_uc_j trademark 25; pos @MMK_L_uc_j twoinferior -30; pos @MMK_L_uc_j underscore -60; pos @MMK_L_uc_j x -10; pos @MMK_L_uc_k @MMK_R_inp_foot -4; pos @MMK_L_uc_k @MMK_R_inp_guill -68; pos @MMK_L_uc_k @MMK_R_inp_guilr -30; pos @MMK_L_uc_k @MMK_R_inp_hyph -67; pos @MMK_L_uc_k @MMK_R_inp_period 2; pos @MMK_L_uc_k @MMK_R_inp_quotel -10; pos @MMK_L_uc_k @MMK_R_inp_quoter -4; pos @MMK_L_uc_k @MMK_R_lc_a.alt01 -13; pos @MMK_L_uc_k @MMK_R_lc_d -35; pos @MMK_L_uc_k @MMK_R_lc_g -10; pos @MMK_L_uc_k @MMK_R_lc_n -10; pos @MMK_L_uc_k @MMK_R_lc_o -35; pos @MMK_L_uc_k @MMK_R_lc_t -20; pos @MMK_L_uc_k @MMK_R_lc_u -25; pos @MMK_L_uc_k @MMK_R_lc_w -20; pos @MMK_L_uc_k @MMK_R_lc_y -20; pos @MMK_L_uc_k @MMK_R_lc_z 10; pos @MMK_L_uc_k @MMK_R_uc_a 4; pos @MMK_L_uc_k @MMK_R_uc_j 2; pos @MMK_L_uc_k @MMK_R_uc_o -35; pos @MMK_L_uc_k @MMK_R_uc_t -2; pos @MMK_L_uc_k @MMK_R_uc_u -4; pos @MMK_L_uc_k V -5; pos @MMK_L_uc_k ampersand -33; pos @MMK_L_uc_k at -58; pos @MMK_L_uc_k eightsuperior -8; pos @MMK_L_uc_k fivesuperior -10; pos @MMK_L_uc_k foursuperior -38; pos @MMK_L_uc_k nineinferior -20; pos @MMK_L_uc_k ninesuperior -8; pos @MMK_L_uc_k onesuperior -13; pos @MMK_L_uc_k p -10; pos @MMK_L_uc_k seveninferior -25; pos @MMK_L_uc_k sixsuperior -28; pos @MMK_L_uc_k slash 10; pos @MMK_L_uc_k threesuperior -8; pos @MMK_L_uc_k twosuperior -8; pos @MMK_L_uc_k v -20; pos @MMK_L_uc_k zeroinferior -4; pos @MMK_L_uc_k zerosuperior -8; pos @MMK_L_uc_l @MMK_R_inp_foot -88; pos @MMK_L_uc_l @MMK_R_inp_guill -18; pos @MMK_L_uc_l @MMK_R_inp_hyph -40; pos @MMK_L_uc_l @MMK_R_inp_period 2; pos @MMK_L_uc_l @MMK_R_inp_quotel -80; pos @MMK_L_uc_l @MMK_R_inp_quoter -80; pos @MMK_L_uc_l @MMK_R_lc_d -10; pos @MMK_L_uc_l @MMK_R_lc_o -10; pos @MMK_L_uc_l @MMK_R_lc_t -10; pos @MMK_L_uc_l @MMK_R_lc_u -10; pos @MMK_L_uc_l @MMK_R_lc_w -40; pos @MMK_L_uc_l @MMK_R_lc_y -30; pos @MMK_L_uc_l @MMK_R_lc_z 16; pos @MMK_L_uc_l @MMK_R_uc_a 14; pos @MMK_L_uc_l @MMK_R_uc_j 12; pos @MMK_L_uc_l @MMK_R_uc_o -15; pos @MMK_L_uc_l @MMK_R_uc_t -70; pos @MMK_L_uc_l @MMK_R_uc_u -37; pos @MMK_L_uc_l @MMK_R_uc_w -70; pos @MMK_L_uc_l @MMK_R_uc_y -74; pos @MMK_L_uc_l V -72; pos @MMK_L_uc_l X 14; pos @MMK_L_uc_l ampersand -6; pos @MMK_L_uc_l at -38; pos @MMK_L_uc_l eightsuperior -86; pos @MMK_L_uc_l fiveinferior 8; pos @MMK_L_uc_l fivesuperior -86; pos @MMK_L_uc_l fourinferior 18; pos @MMK_L_uc_l foursuperior -88; pos @MMK_L_uc_l ninesuperior -85; pos @MMK_L_uc_l onesuperior -86; pos @MMK_L_uc_l question -44; pos @MMK_L_uc_l registered -76; pos @MMK_L_uc_l sevensuperior -96; pos @MMK_L_uc_l sixsuperior -86; pos @MMK_L_uc_l slash 2; pos @MMK_L_uc_l threesuperior -86; pos @MMK_L_uc_l trademark -70; pos @MMK_L_uc_l twosuperior -86; pos @MMK_L_uc_l v -40; pos @MMK_L_uc_l x 10; pos @MMK_L_uc_l zeroinferior 2; pos @MMK_L_uc_l zerosuperior -86; pos @MMK_L_uc_n @MMK_R_inp_guilr -2; pos @MMK_L_uc_n @MMK_R_inp_period -40; pos @MMK_L_uc_n @MMK_R_inp_quoter 8; pos @MMK_L_uc_n @MMK_R_lc_a.alt01 -5; pos @MMK_L_uc_n @MMK_R_lc_d -5; pos @MMK_L_uc_n @MMK_R_lc_g -15; pos @MMK_L_uc_n @MMK_R_lc_o -5; pos @MMK_L_uc_n @MMK_R_lc_s -5; pos @MMK_L_uc_n @MMK_R_uc_a -10; pos @MMK_L_uc_n @MMK_R_uc_j -11; pos @MMK_L_uc_n registered 18; pos @MMK_L_uc_n slash -28; pos @MMK_L_uc_n trademark 10; pos @MMK_L_uc_n underscore -30; pos @MMK_L_uc_n x -10; pos @MMK_L_uc_o @MMK_R_inp_foot -20; pos @MMK_L_uc_o @MMK_R_inp_guill 20; pos @MMK_L_uc_o @MMK_R_inp_guilr 10; pos @MMK_L_uc_o @MMK_R_inp_hyph 20; pos @MMK_L_uc_o @MMK_R_inp_period -33; pos @MMK_L_uc_o @MMK_R_inp_quotel -37; pos @MMK_L_uc_o @MMK_R_inp_quoter -37; pos @MMK_L_uc_o @MMK_R_lc_w 10; pos @MMK_L_uc_o @MMK_R_lc_y 10; pos @MMK_L_uc_o @MMK_R_uc_a -25; pos @MMK_L_uc_o @MMK_R_uc_j -14; pos @MMK_L_uc_o @MMK_R_uc_o 9; pos @MMK_L_uc_o @MMK_R_uc_s -5; pos @MMK_L_uc_o @MMK_R_uc_t -14; pos @MMK_L_uc_o @MMK_R_uc_w -27; pos @MMK_L_uc_o @MMK_R_uc_y -42; pos @MMK_L_uc_o @MMK_R_uc_z -15; pos @MMK_L_uc_o V -32; pos @MMK_L_uc_o X -19; pos @MMK_L_uc_o eightsuperior -8; pos @MMK_L_uc_o fivesuperior -15; pos @MMK_L_uc_o fourinferior -10; pos @MMK_L_uc_o nineinferior 2; pos @MMK_L_uc_o ninesuperior -20; pos @MMK_L_uc_o onesuperior -2; pos @MMK_L_uc_o question -15; pos @MMK_L_uc_o registered 2; pos @MMK_L_uc_o seveninferior 18; pos @MMK_L_uc_o sevensuperior -32; pos @MMK_L_uc_o sixsuperior -10; pos @MMK_L_uc_o slash -10; pos @MMK_L_uc_o threesuperior -10; pos @MMK_L_uc_o trademark -21; pos @MMK_L_uc_o twosuperior -8; pos @MMK_L_uc_o underscore -60; pos @MMK_L_uc_o v 10; pos @MMK_L_uc_o zeroinferior 10; pos @MMK_L_uc_o zerosuperior -10; pos @MMK_L_uc_ohorn @MMK_R_inp_foot -20; pos @MMK_L_uc_ohorn @MMK_R_inp_guilr 10; pos @MMK_L_uc_ohorn @MMK_R_inp_hyph 20; pos @MMK_L_uc_ohorn @MMK_R_inp_period -33; pos @MMK_L_uc_ohorn @MMK_R_inp_quotel -37; pos @MMK_L_uc_ohorn @MMK_R_inp_quoter -27; pos @MMK_L_uc_ohorn @MMK_R_uc_a -21; pos @MMK_L_uc_ohorn @MMK_R_uc_j -14; pos @MMK_L_uc_ohorn @MMK_R_uc_o 9; pos @MMK_L_uc_ohorn @MMK_R_uc_w -16; pos @MMK_L_uc_ohorn @MMK_R_uc_y -16; pos @MMK_L_uc_ohorn @MMK_R_uc_z -10; pos @MMK_L_uc_ohorn V -16; pos @MMK_L_uc_ohorn X -12; pos @MMK_L_uc_ohorn fivesuperior -10; pos @MMK_L_uc_ohorn fourinferior -10; pos @MMK_L_uc_ohorn nineinferior 2; pos @MMK_L_uc_ohorn ninesuperior -20; pos @MMK_L_uc_ohorn onesuperior -10; pos @MMK_L_uc_ohorn registered 2; pos @MMK_L_uc_ohorn seveninferior 18; pos @MMK_L_uc_ohorn sevensuperior -20; pos @MMK_L_uc_ohorn slash -10; pos @MMK_L_uc_ohorn threesuperior -10; pos @MMK_L_uc_ohorn trademark -10; pos @MMK_L_uc_ohorn underscore -60; pos @MMK_L_uc_ohorn zeroinferior 10; pos @MMK_L_uc_r @MMK_R_inp_foot -30; pos @MMK_L_uc_r @MMK_R_inp_guill -30; pos @MMK_L_uc_r @MMK_R_inp_guilr -12; pos @MMK_L_uc_r @MMK_R_inp_hyph -27; pos @MMK_L_uc_r @MMK_R_inp_period 18; pos @MMK_L_uc_r @MMK_R_inp_quotel -35; pos @MMK_L_uc_r @MMK_R_inp_quoter -46; pos @MMK_L_uc_r @MMK_R_lc_a.alt01 -12; pos @MMK_L_uc_r @MMK_R_lc_d -15; pos @MMK_L_uc_r @MMK_R_lc_g -15; pos @MMK_L_uc_r @MMK_R_lc_o -15; pos @MMK_L_uc_r @MMK_R_lc_t -10; pos @MMK_L_uc_r @MMK_R_lc_u -5; pos @MMK_L_uc_r @MMK_R_lc_w -12; pos @MMK_L_uc_r @MMK_R_uc_a 11; pos @MMK_L_uc_r @MMK_R_uc_j 2; pos @MMK_L_uc_r @MMK_R_uc_o -11; pos @MMK_L_uc_r @MMK_R_uc_t -25; pos @MMK_L_uc_r @MMK_R_uc_u -13; pos @MMK_L_uc_r @MMK_R_uc_w -24; pos @MMK_L_uc_r @MMK_R_uc_y -38; pos @MMK_L_uc_r V -26; pos @MMK_L_uc_r X 8; pos @MMK_L_uc_r ampersand -24; pos @MMK_L_uc_r at -28; pos @MMK_L_uc_r eightsuperior -20; pos @MMK_L_uc_r fiveinferior -1; pos @MMK_L_uc_r fivesuperior -27; pos @MMK_L_uc_r foursuperior -20; pos @MMK_L_uc_r nineinferior -30; pos @MMK_L_uc_r ninesuperior -20; pos @MMK_L_uc_r oneinferior 8; pos @MMK_L_uc_r onesuperior -32; pos @MMK_L_uc_r question -25; pos @MMK_L_uc_r seveninferior -30; pos @MMK_L_uc_r sevensuperior -45; pos @MMK_L_uc_r sixsuperior -17; pos @MMK_L_uc_r slash 10; pos @MMK_L_uc_r threesuperior -40; pos @MMK_L_uc_r trademark -32; pos @MMK_L_uc_r twoinferior 8; pos @MMK_L_uc_r twosuperior -32; pos @MMK_L_uc_r zerosuperior -17; pos @MMK_L_uc_s @MMK_R_inp_guill 18; pos @MMK_L_uc_s @MMK_R_inp_hyph 8; pos @MMK_L_uc_s @MMK_R_inp_quotel -10; pos @MMK_L_uc_s @MMK_R_inp_quoter -10; pos @MMK_L_uc_s @MMK_R_lc_g -5; pos @MMK_L_uc_s @MMK_R_uc_a -10; pos @MMK_L_uc_s @MMK_R_uc_o 10; pos @MMK_L_uc_s @MMK_R_uc_s -4; pos @MMK_L_uc_s @MMK_R_uc_t -12; pos @MMK_L_uc_s @MMK_R_uc_u -2; pos @MMK_L_uc_s @MMK_R_uc_w -10; pos @MMK_L_uc_s @MMK_R_uc_y -10; pos @MMK_L_uc_s V -5; pos @MMK_L_uc_s ampersand -6; pos @MMK_L_uc_s at -2; pos @MMK_L_uc_s nineinferior -8; pos @MMK_L_uc_s ninesuperior 2; pos @MMK_L_uc_s p -5; pos @MMK_L_uc_s registered 20; pos @MMK_L_uc_s seveninferior -10; pos @MMK_L_uc_s sixinferior 8; pos @MMK_L_uc_s slash -10; pos @MMK_L_uc_s threeinferior -10; pos @MMK_L_uc_s twoinferior -12; pos @MMK_L_uc_s underscore -40; pos @MMK_L_uc_s x -5; pos @MMK_L_uc_s zeroinferior 10; pos @MMK_L_uc_t @MMK_R_inp_colon -8; pos @MMK_L_uc_t @MMK_R_inp_foot 30; pos @MMK_L_uc_t @MMK_R_inp_guill -44; pos @MMK_L_uc_t @MMK_R_inp_guilr -32; pos @MMK_L_uc_t @MMK_R_inp_hyph -50; pos @MMK_L_uc_t @MMK_R_inp_period -80; pos @MMK_L_uc_t @MMK_R_inp_quotel 20; pos @MMK_L_uc_t @MMK_R_inp_quoter 10; pos @MMK_L_uc_t @MMK_R_lc_a.alt01 -13; pos @MMK_L_uc_t @MMK_R_lc_d -25; pos @MMK_L_uc_t @MMK_R_lc_g -25; pos @MMK_L_uc_t @MMK_R_lc_h 10; pos @MMK_L_uc_t @MMK_R_lc_o -27; pos @MMK_L_uc_t @MMK_R_lc_s -10; pos @MMK_L_uc_t @MMK_R_lc_u -10; pos @MMK_L_uc_t @MMK_R_lc_y 10; pos @MMK_L_uc_t @MMK_R_uc_a -55; pos @MMK_L_uc_t @MMK_R_uc_j -42; pos @MMK_L_uc_t @MMK_R_uc_o 3; pos @MMK_L_uc_t @MMK_R_uc_s -8; pos @MMK_L_uc_t @MMK_R_uc_t 18; pos @MMK_L_uc_t @MMK_R_uc_w 15; pos @MMK_L_uc_t @MMK_R_uc_y 17; pos @MMK_L_uc_t V 15; pos @MMK_L_uc_t X 16; pos @MMK_L_uc_t ampersand -25; pos @MMK_L_uc_t at -26; pos @MMK_L_uc_t eightinferior -60; pos @MMK_L_uc_t eightsuperior 12; pos @MMK_L_uc_t fiveinferior -60; pos @MMK_L_uc_t fivesuperior 20; pos @MMK_L_uc_t fourinferior -70; pos @MMK_L_uc_t foursuperior 10; pos @MMK_L_uc_t nineinferior -60; pos @MMK_L_uc_t ninesuperior 22; pos @MMK_L_uc_t oneinferior -60; pos @MMK_L_uc_t onesuperior 25; pos @MMK_L_uc_t parenright 18; pos @MMK_L_uc_t question 23; pos @MMK_L_uc_t questiondown -60; pos @MMK_L_uc_t registered 42; pos @MMK_L_uc_t seveninferior -50; pos @MMK_L_uc_t sevensuperior 12; pos @MMK_L_uc_t sixinferior -60; pos @MMK_L_uc_t sixsuperior 22; pos @MMK_L_uc_t slash -52; pos @MMK_L_uc_t threeinferior -60; pos @MMK_L_uc_t threesuperior 20; pos @MMK_L_uc_t trademark 25; pos @MMK_L_uc_t twoinferior -60; pos @MMK_L_uc_t twosuperior 20; pos @MMK_L_uc_t underscore -60; pos @MMK_L_uc_t v 10; pos @MMK_L_uc_t x -30; pos @MMK_L_uc_t zeroinferior -60; pos @MMK_L_uc_t zerosuperior 30; pos @MMK_L_uc_u @MMK_R_inp_foot 10; pos @MMK_L_uc_u @MMK_R_inp_guilr -12; pos @MMK_L_uc_u @MMK_R_inp_hyph -8; pos @MMK_L_uc_u @MMK_R_inp_period -48; pos @MMK_L_uc_u @MMK_R_inp_quotel 10; pos @MMK_L_uc_u @MMK_R_inp_quoter 8; pos @MMK_L_uc_u @MMK_R_lc_a.alt01 -15; pos @MMK_L_uc_u @MMK_R_lc_z -5; pos @MMK_L_uc_u @MMK_R_uc_a -17; pos @MMK_L_uc_u @MMK_R_uc_j -33; pos @MMK_L_uc_u eightinferior -6; pos @MMK_L_uc_u fiveinferior -2; pos @MMK_L_uc_u fourinferior -8; pos @MMK_L_uc_u nineinferior -6; pos @MMK_L_uc_u oneinferior -12; pos @MMK_L_uc_u registered 18; pos @MMK_L_uc_u seveninferior -12; pos @MMK_L_uc_u sixinferior -2; pos @MMK_L_uc_u slash -12; pos @MMK_L_uc_u threeinferior -12; pos @MMK_L_uc_u twoinferior -12; pos @MMK_L_uc_u underscore -50; pos @MMK_L_uc_u x -10; pos @MMK_L_uc_u zeroinferior -8; pos @MMK_L_uc_uhorn @MMK_R_inp_foot 10; pos @MMK_L_uc_uhorn @MMK_R_inp_hyph -12; pos @MMK_L_uc_uhorn @MMK_R_inp_period -52; pos @MMK_L_uc_uhorn @MMK_R_inp_quotel 15; pos @MMK_L_uc_uhorn @MMK_R_inp_quoter 25; pos @MMK_L_uc_uhorn @MMK_R_lc_g -15; pos @MMK_L_uc_uhorn @MMK_R_uc_a -17; pos @MMK_L_uc_uhorn @MMK_R_uc_j -19; pos @MMK_L_uc_uhorn @MMK_R_uc_t 19; pos @MMK_L_uc_uhorn @MMK_R_uc_w 15; pos @MMK_L_uc_uhorn @MMK_R_uc_y 15; pos @MMK_L_uc_uhorn V 15; pos @MMK_L_uc_uhorn ampersand -12; pos @MMK_L_uc_uhorn at -4; pos @MMK_L_uc_uhorn eightinferior -10; pos @MMK_L_uc_uhorn fiveinferior -6; pos @MMK_L_uc_uhorn fivesuperior 10; pos @MMK_L_uc_uhorn fourinferior -12; pos @MMK_L_uc_uhorn foursuperior -10; pos @MMK_L_uc_uhorn nineinferior -10; pos @MMK_L_uc_uhorn ninesuperior 10; pos @MMK_L_uc_uhorn oneinferior -16; pos @MMK_L_uc_uhorn onesuperior 10; pos @MMK_L_uc_uhorn parenright 40; pos @MMK_L_uc_uhorn registered 18; pos @MMK_L_uc_uhorn seveninferior -16; pos @MMK_L_uc_uhorn sevensuperior 21; pos @MMK_L_uc_uhorn sixinferior -6; pos @MMK_L_uc_uhorn slash -16; pos @MMK_L_uc_uhorn threeinferior -16; pos @MMK_L_uc_uhorn threesuperior 12; pos @MMK_L_uc_uhorn trademark 32; pos @MMK_L_uc_uhorn twoinferior -16; pos @MMK_L_uc_uhorn twosuperior 10; pos @MMK_L_uc_uhorn underscore -50; pos @MMK_L_uc_uhorn zeroinferior -12; pos @MMK_L_uc_uhorn zerosuperior 10; pos @MMK_L_uc_w @MMK_R_inp_colon -10; pos @MMK_L_uc_w @MMK_R_inp_foot 20; pos @MMK_L_uc_w @MMK_R_inp_guill -24; pos @MMK_L_uc_w @MMK_R_inp_guilr -24; pos @MMK_L_uc_w @MMK_R_inp_hyph -25; pos @MMK_L_uc_w @MMK_R_inp_period -50; pos @MMK_L_uc_w @MMK_R_inp_quotel 20; pos @MMK_L_uc_w @MMK_R_inp_quoter 23; pos @MMK_L_uc_w @MMK_R_lc_a.alt01 -40; pos @MMK_L_uc_w @MMK_R_lc_d -30; pos @MMK_L_uc_w @MMK_R_lc_g -25; pos @MMK_L_uc_w @MMK_R_lc_h 20; pos @MMK_L_uc_w @MMK_R_lc_o -35; pos @MMK_L_uc_w @MMK_R_lc_s -21; pos @MMK_L_uc_w @MMK_R_lc_u -10; pos @MMK_L_uc_w @MMK_R_lc_y 10; pos @MMK_L_uc_w @MMK_R_lc_z -15; pos @MMK_L_uc_w @MMK_R_uc_a -46; pos @MMK_L_uc_w @MMK_R_uc_j -32; pos @MMK_L_uc_w @MMK_R_uc_o -17; pos @MMK_L_uc_w @MMK_R_uc_s -5; pos @MMK_L_uc_w @MMK_R_uc_t 15; pos @MMK_L_uc_w @MMK_R_uc_w 15; pos @MMK_L_uc_w @MMK_R_uc_y 19; pos @MMK_L_uc_w V 19; pos @MMK_L_uc_w ampersand -24; pos @MMK_L_uc_w at -30; pos @MMK_L_uc_w eightinferior -40; pos @MMK_L_uc_w eightsuperior 10; pos @MMK_L_uc_w exclamdown -15; pos @MMK_L_uc_w fiveinferior -40; pos @MMK_L_uc_w fivesuperior 20; pos @MMK_L_uc_w fourinferior -55; pos @MMK_L_uc_w foursuperior 15; pos @MMK_L_uc_w nineinferior -45; pos @MMK_L_uc_w ninesuperior 22; pos @MMK_L_uc_w oneinferior -60; pos @MMK_L_uc_w onesuperior 30; pos @MMK_L_uc_w parenright 16; pos @MMK_L_uc_w question 15; pos @MMK_L_uc_w questiondown -60; pos @MMK_L_uc_w registered 23; pos @MMK_L_uc_w seveninferior -30; pos @MMK_L_uc_w sevensuperior 30; pos @MMK_L_uc_w sixinferior -50; pos @MMK_L_uc_w sixsuperior 10; pos @MMK_L_uc_w slash -40; pos @MMK_L_uc_w threeinferior -55; pos @MMK_L_uc_w threesuperior 20; pos @MMK_L_uc_w trademark 28; pos @MMK_L_uc_w twoinferior -55; pos @MMK_L_uc_w twosuperior 20; pos @MMK_L_uc_w underscore -50; pos @MMK_L_uc_w x -30; pos @MMK_L_uc_w zeroinferior -40; pos @MMK_L_uc_w zerosuperior 25; pos @MMK_L_uc_y @MMK_R_inp_colon -30; pos @MMK_L_uc_y @MMK_R_inp_foot 20; pos @MMK_L_uc_y @MMK_R_inp_guill -74; pos @MMK_L_uc_y @MMK_R_inp_guilr -44; pos @MMK_L_uc_y @MMK_R_inp_hyph -50; pos @MMK_L_uc_y @MMK_R_inp_period -60; pos @MMK_L_uc_y @MMK_R_inp_quotel 20; pos @MMK_L_uc_y @MMK_R_inp_quoter 18; pos @MMK_L_uc_y @MMK_R_lc_a.alt01 -60; pos @MMK_L_uc_y @MMK_R_lc_d -65; pos @MMK_L_uc_y @MMK_R_lc_f -30; pos @MMK_L_uc_y @MMK_R_lc_g -55; pos @MMK_L_uc_y @MMK_R_lc_h 20; pos @MMK_L_uc_y @MMK_R_lc_i -10; pos @MMK_L_uc_y @MMK_R_lc_j -10; pos @MMK_L_uc_y @MMK_R_lc_n -30; pos @MMK_L_uc_y @MMK_R_lc_o -65; pos @MMK_L_uc_y @MMK_R_lc_s -50; pos @MMK_L_uc_y @MMK_R_lc_t -10; pos @MMK_L_uc_y @MMK_R_lc_u -20; pos @MMK_L_uc_y @MMK_R_lc_w -10; pos @MMK_L_uc_y @MMK_R_lc_y -5; pos @MMK_L_uc_y @MMK_R_lc_z -30; pos @MMK_L_uc_y @MMK_R_uc_a -55; pos @MMK_L_uc_y @MMK_R_uc_j -42; pos @MMK_L_uc_y @MMK_R_uc_o -32; pos @MMK_L_uc_y @MMK_R_uc_s -22; pos @MMK_L_uc_y @MMK_R_uc_t 17; pos @MMK_L_uc_y @MMK_R_uc_w 18; pos @MMK_L_uc_y @MMK_R_uc_y 17; pos @MMK_L_uc_y V 22; pos @MMK_L_uc_y ampersand -44; pos @MMK_L_uc_y at -60; pos @MMK_L_uc_y eightinferior -82; pos @MMK_L_uc_y eightsuperior 2; pos @MMK_L_uc_y exclamdown -30; pos @MMK_L_uc_y fiveinferior -80; pos @MMK_L_uc_y fourinferior -100; pos @MMK_L_uc_y foursuperior -10; pos @MMK_L_uc_y nineinferior -80; pos @MMK_L_uc_y ninesuperior 4; pos @MMK_L_uc_y oneinferior -80; pos @MMK_L_uc_y onesuperior 18; pos @MMK_L_uc_y p -40; pos @MMK_L_uc_y parenright 16; pos @MMK_L_uc_y question 10; pos @MMK_L_uc_y questiondown -70; pos @MMK_L_uc_y registered 15; pos @MMK_L_uc_y seveninferior -62; pos @MMK_L_uc_y sevensuperior 20; pos @MMK_L_uc_y sixinferior -82; pos @MMK_L_uc_y slash -52; pos @MMK_L_uc_y threeinferior -80; pos @MMK_L_uc_y threesuperior 10; pos @MMK_L_uc_y trademark 22; pos @MMK_L_uc_y twoinferior -90; pos @MMK_L_uc_y twosuperior 10; pos @MMK_L_uc_y underscore -60; pos @MMK_L_uc_y v -5; pos @MMK_L_uc_y x -50; pos @MMK_L_uc_y zeroinferior -80; pos @MMK_L_uc_y zerosuperior 10; pos @MMK_L_uc_z @MMK_R_inp_guill -28; pos @MMK_L_uc_z @MMK_R_inp_guilr -10; pos @MMK_L_uc_z @MMK_R_inp_hyph -30; pos @MMK_L_uc_z @MMK_R_inp_period 2; pos @MMK_L_uc_z @MMK_R_inp_quotel -8; pos @MMK_L_uc_z @MMK_R_inp_quoter -18; pos @MMK_L_uc_z @MMK_R_lc_a.alt01 -8; pos @MMK_L_uc_z @MMK_R_lc_d -10; pos @MMK_L_uc_z @MMK_R_lc_o -10; pos @MMK_L_uc_z @MMK_R_lc_t -10; pos @MMK_L_uc_z @MMK_R_lc_u -5; pos @MMK_L_uc_z @MMK_R_lc_w -20; pos @MMK_L_uc_z @MMK_R_lc_y -5; pos @MMK_L_uc_z @MMK_R_lc_z -10; pos @MMK_L_uc_z @MMK_R_uc_a 1; pos @MMK_L_uc_z @MMK_R_uc_j 3; pos @MMK_L_uc_z @MMK_R_uc_o -14; pos @MMK_L_uc_z @MMK_R_uc_t -10; pos @MMK_L_uc_z @MMK_R_uc_z -8; pos @MMK_L_uc_z ampersand -14; pos @MMK_L_uc_z at -28; pos @MMK_L_uc_z eightinferior 2; pos @MMK_L_uc_z eightsuperior -16; pos @MMK_L_uc_z fivesuperior -5; pos @MMK_L_uc_z fourinferior 10; pos @MMK_L_uc_z foursuperior -10; pos @MMK_L_uc_z nineinferior -8; pos @MMK_L_uc_z ninesuperior -6; pos @MMK_L_uc_z oneinferior -10; pos @MMK_L_uc_z onesuperior 10; pos @MMK_L_uc_z registered 2; pos @MMK_L_uc_z seveninferior -10; pos @MMK_L_uc_z sixsuperior -10; pos @MMK_L_uc_z slash 1; pos @MMK_L_uc_z threesuperior -8; pos @MMK_L_uc_z trademark 8; pos @MMK_L_uc_z twosuperior -8; pos @MMK_L_uc_z underscore 15; pos @MMK_L_uc_z x -20; pos @MMK_L_uc_z zeroinferior 10; } kern; feature mark { # Created: Thu Aug 30 18:07:29 2018 # PS Name: IBMPlexSerif-TextItalic # MM Inst: IBM Plex Serif Text # exported from FontLab @mGC_bottom_0_0 = [cedillacomb commabelowcomb dotbelowcomb]; @mGC_top_0_540 = [acutecomb breveacute brevecomb brevegrave brevehook brevetilde caroncomb circumflexacute circumflexbreve circumflexcomb circumflexgrave circumflexhook circumflextilde commaturnedtopcomb dieresisacute dieresiscaron dieresiscomb dieresisgrave dieresismacron dotaccentcomb gravecomb hookcomb hungarumlautcomb macroncomb ringcomb tildecomb]; @mGC_top_0_698 = [breveacute.case brevegrave.case brevehook.case brevetilde.case circumflexacute.case circumflexbreve.case circumflexgrave.case circumflexhook.case circumflextilde.case dieresisacute.case dieresiscaron.case dieresisgrave.case dieresismacron.case hookcomb.case]; markClass @mGC_bottom_0_0 @MC_bottom; markClass @mGC_top_0_540 @MC_top; markClass @mGC_top_0_698 @MC_top; markClass caronslovakcomb @MC_topright; markClass ogonekcomb @MC_bottomright; lookup MARK_BASE_bottom { @bGC_A_bottom = [A Aacute Abreve Acircumflex Adieresis Agrave Ahook Amacron Aring Aringacute Atilde Abreveacute Abrevegrave Abrevehook Abrevetilde Acircumflexacute Acircumflexgrave Acircumflexhook Acircumflextilde uni0410 uni04D2 uni04D0]; @bGC_B_bottom = [B D Dcaron uni0412]; @bGC_C_bottom = [C Cacute Ccaron Ccircumflex Cdotaccent uni0421]; @bGC_E_bottom = [E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Ehook Emacron Etilde Ecircumflexacute Ecircumflexgrave Ecircumflexhook Ecircumflextilde uni0415 uni0400 uni0401 uni04D6]; @bGC_F_bottom = [F P uni0420]; @bGC_G_bottom = [G Gbreve Gcircumflex Gdotaccent]; @bGC_H_bottom = [H Hcircumflex uni041D]; @bGC_I_bottom = [I Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Ihook Imacron Itilde IJacute uni04C0 uni0406 uni0407]; @bGC_M_bottom = [M uni041C]; @bGC_N_bottom = [N Nacute Ncaron Ntilde]; @bGC_O_bottom = [O Oacute Obreve Ocircumflex Odieresis Ograve Ohook Ohungarumlaut Omacron Otilde Ohorn Ohornacute Ohorngrave Ohornhook Ohorntilde Ocircumflexacute Ocircumflexgrave Ocircumflexhook Ocircumflextilde uni041E uni04E6]; @bGC_R_bottom = [R Racute Rcaron]; @bGC_T_bottom = [T Tcaron uni0422]; @bGC_U_bottom = [U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhook Uhungarumlaut Umacron Uring Utilde Uhorn Uhornacute Uhorngrave Uhornhook Uhorntilde]; @bGC_W_bottom = [W Wacute Wcircumflex Wdieresis Wgrave]; @bGC_Y_bottom = [Y Yacute Ycircumflex Ydieresis Ygrave Yhook Ytilde uni04AE]; @bGC_Z_bottom = [Z Zacute Zcaron Zdotaccent]; @bGC_a.alt01_bottom = [a.alt01 aacute.alt01 abreve.alt01 acircumflex.alt01 adieresis.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aring.alt01 aringacute.alt01 atilde.alt01 abreveacute.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflexacute.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 uni0430.alt01 uni04D3.alt01 uni04D1.alt01]; @bGC_a_bottom = [a d S aacute abreve acircumflex adieresis agrave ahook amacron aring aringacute atilde abreveacute abrevegrave abrevehook abrevetilde acircumflexacute acircumflexgrave acircumflexhook acircumflextilde dcaron Sacute Scaron Scircumflex uni0430 uni04D3 uni04D1 uni0405]; @bGC_c_bottom = [c cacute ccaron ccircumflex cdotaccent uni0441]; @bGC_e_bottom = [e eacute ebreve ecaron ecircumflex edieresis edotaccent egrave ehook emacron etilde ecircumflexacute ecircumflexgrave ecircumflexhook ecircumflextilde uni0435 uni0450 uni0451 uni04D7]; @bGC_h_bottom = [h hcircumflex uni04BB]; @bGC_i_bottom = [i uni0456]; @bGC_l_bottom = [l lacute lcaron]; @bGC_m_bottom = [m uni0442]; @bGC_n_bottom = [n X nacute ncaron ntilde uni043F uni0425]; @bGC_o_bottom = [o oacute obreve ocircumflex odieresis ograve ohook ohungarumlaut omacron otilde ohorn ohornacute ohorngrave ohornhook ohorntilde ocircumflexacute ocircumflexgrave ocircumflexhook ocircumflextilde uni043E uni04E7]; @bGC_r_bottom = [r racute rcaron]; @bGC_s_bottom = [s J sacute scaron scircumflex Jacute Jcircumflex uni0455 uni0408]; @bGC_t_bottom = [t tcaron]; @bGC_u_bottom = [u uacute ubreve ucircumflex udieresis ugrave uhook uhungarumlaut umacron uring utilde uni0438 uni0439 uni04E5 uni045D uni04E3]; @bGC_uhorn_bottom = [uhorn uhornacute uhorngrave uhornhook uhorntilde]; @bGC_w_bottom = [w wacute wcircumflex wdieresis wgrave]; @bGC_x_bottom = [x L Lacute Lcaron uni0445]; @bGC_y_bottom = [y yacute ycircumflex ydieresis ygrave yhook ytilde uni0443 uni04EF uni04F1 uni04F3 uni045E]; @bGC_z_bottom = [z zacute zcaron zdotaccent]; pos base @bGC_A_bottom mark @MC_bottom; pos base @bGC_B_bottom mark @MC_bottom; pos base @bGC_C_bottom mark @MC_bottom; pos base @bGC_E_bottom mark @MC_bottom; pos base @bGC_F_bottom mark @MC_bottom; pos base @bGC_G_bottom mark @MC_bottom; pos base @bGC_H_bottom mark @MC_bottom; pos base @bGC_I_bottom mark @MC_bottom; pos base @bGC_M_bottom mark @MC_bottom; pos base @bGC_N_bottom mark @MC_bottom; pos base @bGC_O_bottom mark @MC_bottom; pos base @bGC_R_bottom mark @MC_bottom; pos base @bGC_T_bottom mark @MC_bottom; pos base @bGC_U_bottom mark @MC_bottom; pos base @bGC_W_bottom mark @MC_bottom; pos base @bGC_Y_bottom mark @MC_bottom; pos base @bGC_Z_bottom mark @MC_bottom; pos base @bGC_a.alt01_bottom mark @MC_bottom; pos base @bGC_a_bottom mark @MC_bottom; pos base @bGC_c_bottom mark @MC_bottom; pos base @bGC_e_bottom mark @MC_bottom; pos base @bGC_h_bottom mark @MC_bottom; pos base @bGC_i_bottom mark @MC_bottom; pos base @bGC_l_bottom mark @MC_bottom; pos base @bGC_m_bottom mark @MC_bottom; pos base @bGC_n_bottom mark @MC_bottom; pos base @bGC_o_bottom mark @MC_bottom; pos base @bGC_r_bottom mark @MC_bottom; pos base @bGC_s_bottom mark @MC_bottom; pos base @bGC_t_bottom mark @MC_bottom; pos base @bGC_u_bottom mark @MC_bottom; pos base @bGC_uhorn_bottom mark @MC_bottom; pos base @bGC_w_bottom mark @MC_bottom; pos base @bGC_x_bottom mark @MC_bottom; pos base @bGC_y_bottom mark @MC_bottom; pos base @bGC_z_bottom mark @MC_bottom; pos base K mark @MC_bottom; pos base V mark @MC_bottom; pos base b mark @MC_bottom; pos base k mark @MC_bottom; pos base v mark @MC_bottom; } MARK_BASE_bottom; lookup MARK_BASE_bottomright { @bGC_A_bottomright = [A Aacute Abreve Acircumflex Adieresis Adotbelow Agrave Ahook Amacron Aring Aringacute Atilde Abreveacute Abrevedotbelow Abrevegrave Abrevehook Abrevetilde Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhook Acircumflextilde uni0410 uni04D2 uni04D0]; @bGC_E_bottomright = [E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Etilde Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde uni0415 uni0400 uni0401 uni04D6]; @bGC_I_bottomright = [I Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihook Imacron Itilde IJacute uni04C0 uni0406 uni0407]; @bGC_U_bottomright = [U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhook Uhungarumlaut Umacron Uring Utilde]; @bGC_a.alt01_bottomright = [a.alt01 aacute.alt01 abreve.alt01 acircumflex.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aring.alt01 aringacute.alt01 atilde.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 uni0430.alt01 uni04D3.alt01 uni04D1.alt01]; @bGC_a_bottomright = [a aacute abreve acircumflex adieresis adotbelow agrave ahook amacron aring aringacute atilde abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde uni0430 uni04D3 uni04D1]; @bGC_e_bottomright = [e eacute ebreve ecaron ecircumflex edieresis edotaccent edotbelow egrave ehook emacron etilde ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook ecircumflextilde uni0435 uni0450 uni0451 uni04D7]; @bGC_i_bottomright = [i idotbelow uni0456]; @bGC_u_bottomright = [u uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhungarumlaut umacron uring utilde uni0438 uni0439 uni04E5 uni045D uni04E3]; pos base @bGC_A_bottomright mark @MC_bottomright; pos base @bGC_E_bottomright mark @MC_bottomright; pos base @bGC_I_bottomright mark @MC_bottomright; pos base @bGC_U_bottomright mark @MC_bottomright; pos base @bGC_a.alt01_bottomright mark @MC_bottomright; pos base @bGC_a_bottomright mark @MC_bottomright; pos base @bGC_e_bottomright mark @MC_bottomright; pos base @bGC_i_bottomright mark @MC_bottomright; pos base @bGC_u_bottomright mark @MC_bottomright; } MARK_BASE_bottomright; lookup MARK_BASE_top { @bGC_AE_top = [AE uni04D4]; @bGC_A_top = [A X Adotbelow uni0410 uni0425]; @bGC_B_top = [B uni0412]; @bGC_C_top = [C uni0421]; @bGC_E_top = [E F Edotbelow uni0415]; @bGC_G_top = [G Gcommaaccent]; @bGC_H_top = [H uni041D]; @bGC_I_top = [I Idotbelow uni04C0 uni0406]; @bGC_J_top = [J uni0408]; @bGC_K_top = [K Kcommaaccent]; @bGC_L_top = [L Lcaron Lcommaaccent]; @bGC_M_top = [M uni041C]; @bGC_N_top = [N Ncommaaccent]; @bGC_O_top = [O Q Odotbelow Ohorn Ohorndotbelow uni041E]; @bGC_P_top = [P R Rcommaaccent uni0420]; @bGC_S_top = [S Scommaaccent uni0405]; @bGC_T_top = [T Tcommaaccent Tcedilla uni0422]; @bGC_U_top = [U Udotbelow]; @bGC_Uhorn_top = [Uhorn Uhorndotbelow]; @bGC_Y_top = [Y Ydotbelow uni04AE]; @bGC_a.alt01_top = [a.alt01 adotbelow.alt01 uni0430.alt01]; @bGC_a_top = [a g.alt01 q adotbelow uni0430]; @bGC_ae_top = [ae uni04D5]; @bGC_c_top = [c uni0441]; @bGC_e_top = [e edotbelow uni0435]; @bGC_g_top = [g g.alt02]; @bGC_h_top = [h uni04BB]; @bGC_l_top = [l lcaron lcommaaccent]; @bGC_m_top = [m uni0442]; @bGC_n_top = [n u x ncommaaccent udotbelow uni0438 uni043F uni0445]; @bGC_o_top = [o odotbelow ohorn ohorndotbelow uni043E]; @bGC_oslash_top = [oslash uni0447]; @bGC_p_top = [p uni0440]; @bGC_r_top = [r rcommaaccent]; @bGC_s_top = [s scommaaccent uni0455]; @bGC_uhorn_top = [uhorn uhorndotbelow]; @bGC_y_top = [y ydotbelow uni0443]; pos base @bGC_AE_top mark @MC_top; pos base @bGC_A_top mark @MC_top; pos base @bGC_B_top mark @MC_top; pos base @bGC_C_top mark @MC_top; pos base @bGC_E_top mark @MC_top; pos base @bGC_G_top mark @MC_top; pos base @bGC_H_top mark @MC_top; pos base @bGC_I_top mark @MC_top; pos base @bGC_J_top mark @MC_top; pos base @bGC_K_top mark @MC_top; pos base @bGC_L_top mark @MC_top; pos base @bGC_M_top mark @MC_top; pos base @bGC_N_top mark @MC_top; pos base @bGC_O_top mark @MC_top; pos base @bGC_P_top mark @MC_top; pos base @bGC_S_top mark @MC_top; pos base @bGC_T_top mark @MC_top; pos base @bGC_U_top mark @MC_top; pos base @bGC_Uhorn_top mark @MC_top; pos base @bGC_Y_top mark @MC_top; pos base @bGC_a.alt01_top mark @MC_top; pos base @bGC_a_top mark @MC_top; pos base @bGC_ae_top mark @MC_top; pos base @bGC_c_top mark @MC_top; pos base @bGC_e_top mark @MC_top; pos base @bGC_g_top mark @MC_top; pos base @bGC_h_top mark @MC_top; pos base @bGC_l_top mark @MC_top; pos base @bGC_m_top mark @MC_top; pos base @bGC_n_top mark @MC_top; pos base @bGC_o_top mark @MC_top; pos base @bGC_oslash_top mark @MC_top; pos base @bGC_p_top mark @MC_top; pos base @bGC_r_top mark @MC_top; pos base @bGC_s_top mark @MC_top; pos base @bGC_uhorn_top mark @MC_top; pos base @bGC_y_top mark @MC_top; pos base D mark @MC_top; pos base Oslash mark @MC_top; pos base V mark @MC_top; pos base W mark @MC_top; pos base Z mark @MC_top; pos base dotlessi mark @MC_top; pos base dotlessj mark @MC_top; pos base uni0413 mark @MC_top; pos base uni0416 mark @MC_top; pos base uni0417 mark @MC_top; pos base uni0418 mark @MC_top; pos base uni041A mark @MC_top; pos base uni0423 mark @MC_top; pos base uni0427 mark @MC_top; pos base uni042B mark @MC_top; pos base uni0433 mark @MC_top; pos base uni0436 mark @MC_top; pos base uni0437 mark @MC_top; pos base uni043A mark @MC_top; pos base uni044B mark @MC_top; pos base v mark @MC_top; pos base w mark @MC_top; pos base z mark @MC_top; } MARK_BASE_top; lookup MARK_BASE_topright { @bGC_L_topright = [L Lacute Lcommaaccent]; @bGC_l_topright = [l lacute lcommaaccent]; @bGC_t_topright = [t tcommaaccent tcedilla]; pos base @bGC_L_topright mark @MC_topright; pos base @bGC_l_topright mark @MC_topright; pos base @bGC_t_topright mark @MC_topright; pos base d mark @MC_topright; } MARK_BASE_topright; } mark; Untitled$??pv,8DJ}?5^I?-Y-1=PYR`ixd $*.notdefT .notdef̻@< (l88 .null CRh  spaceh ; aV[ѯ4 axG7h_\ntinwacC]XVnoaY5.r0za_c}gcnwȍݙH 1 z ,RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X,a+topϊbottomright1bottomz a.alt01J^Tҿߐ`hki{u|njenuoΠʋJM}ezFxG7zvnnr{tmknF:H..O~]yxqn|ȏݜ/  b ƍƋƛ̐,ڨ3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5+topbottomrightbottomb  b}5s_@[>=3R9>DMgH +>6{twamcZeMlKsMtz~[Ma=àv n ,Z})z&UmVVV7O 9Rdc>=4-oRy]DXX ?דopa |@AxMLbbottomn cBFKկƋR^he\hqrt_tbzf_j@}Qf{2jb^|sZZDV\MtH|? H NBuRR%7$UU5viq5dzdxCGuh;Xup9(`Z;}µTctopƊbottomHC dV[ѯclr3SESxG7h_\ntiowacC]XVnoaY5.r0za_c}gcn=ȍܖ! z ×,RV!Vv<Ws?Mn*AB"qyESSdcXr)mq){&Udד?ap AxL]u:]Fa*a,dtoprightߊbottomz eCDLدtdnoqSI\j7kJpa^|s[ZCU\MtYskuexj^lAZzE L @CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`e+top̊bottomrightbottomL f8hX_owq|1؋doqkgqsp^TO}Rs*~Zw<%.NjhipF ϙ8hX@)@, ,āp]yKXvtM,mp@@=IaD0Z" p`KiXɾvx1Mtp%,m3f) ghU=Zsšnjolܪuwummwyx{XgN^h@NT;l^t{qv~~yz|itTZc`RCf/zMpjaYQ~Xbhlg],fi)s_vjpwivg\vhRF; ٛۑۋ䑊ɿґҊۊ,Rh++~N]IRnuCvӋpb&belS}lgտtWYҽ{x)rg/bÃqdd'3}Pɡco#(TmMus66eaCa\MOΛH{zB 73bH{ΛqzԈx 7jb,޵8a 3 Tĭ6~Gq}--9tgtopŠc g.alt012hnXevqwvjgjUxabD\XWolV[ Nj4q""ZoaX7/q/zb`c}gchnwH ōũ,hff9(\^@oh)z&UTTUU91Ia!n{uRZռw{(Cqlcdד?_p @xM!^u9]Gd,dtopϊ g.alt02hU=Zsšnjolܪ,]`bkc^h@OT:l^t{qv~~yz|itTZc_RCf/zMpjaYQ~Xbhlg],fi)s_vjpwivg\vhRlF; ŗёыڑڊڊȑȵ,,h++~N]IRnuCvӋpb'bvS_,Kudd'3}Pɡco#(TmMus66eaCa\MOΛH{zB 73bH{ΛqzԈx 7jb,޵8a 3 Tĭ6~Gq}--9ttopŠ h ilpqJWJ5T|Nf'/>=3R@ƭYetj2xG7h`Xmɋ`=Ƞv( i ,l =B!qyÈi5fq]]Q'K)@Rdc>='vN) )o\4\y=Jl5htopbbottomi il ik3S mxG7h_XnqqnzuipNjV P 7 vT =B"qy mScc3\x>Im:̼kZ~Wty(ZswZXWt3i!bottomright7bottom  jKhY`ovq}3S$w=.1qqnzuiphV 1P  lKhI<0<>9Scc1ҹv_UiYʽvx2Luo(.n̼kZ~Wty(ZswZXWtj k xk}6JlqJVL4T|Of'/>=3R@ŬYddeHSUMdrBxF6zvqptzu`=Ϡv*k ×,^ IC q#5BIgH6Ufp]]Q-H#@Rdc>='tK--fK}K)P7d]\"kbottomk lik&3RDSxG7h_Xn=ڌ  F=B"qyDSRdc&\y>Im&l(topztopright؊bottom􊋊x m2,ilqqIXK4T|Mf'/(qrJXJ4T|Mf'/V3NYZƮZdvo|OƭYe~o|2xG7h`XmV`Ѡv4I əŒ—ʍˏ,ޮ,=B!qyÇg5fq\\Q(J)nB!qyÈi5fq]]Q'K)ZNccV'vN) )o\4\y=ImCntopbottomw o[kco^qg^rNi~Z{J`pbW_=<ً͋)6QfE!#FzK U  p,[C.xb9E A'.xdb9iE ^A<_'a11DV'a11DotopҊbottomU pB0ы+3NZS>DMgH +>O9zZk_{twamcZeMlKsMtz~[M\aVی._ ×,l7\1kD3s)z&UmVVV7O SNcc+E\Ry]DXX ?דopa |@AxML ptop q20wacC]XVnlV[ Nj4<6ы_oaY5.r0za_c}gc\nwH ,`(\E<6\^@oh)z&UV!V11idד?ap AxL]u:]DX+Xqtopϊ r`(V3L\Rdmog`mtnnL9lL{sVrMtHlo/TV۠v j2 ,a,yH'%U9Iw\xHWvqD:nnvUU]DQ RLccrtopbottom݊6 sOYrtr~tn{wlТċbntmgovoxbjuvfouhkjxtXcflOVaCun ,Y545YiNr ?1e0sʡÆx]yKZzvP lk77:KiXɤl?ek/BxQiZ˼zv5Pvo&lstopbottom  tBil2hZ%-r*5vxmtsvi0  `,?Q-s z-WZ0C^˜}~7Z.[w>Jmmttoprightbottom  u!_b3V4}oͿ'axG7h_[nsiove`CYROi׋Vwȍޔo H | ,l!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6fCu+topbottomrightHbottom| vm`Z^O`O6^cmEemzJ : Aыm6^Nj`uNjZ^vtopъbottom: w$m`X^Mj-ҋ-NM6^cmEc?`m_t ,_$׋cыm6^ɋN-Dj-ɋX^wtopTbottomk xDcaow}q Xd{21snt0˳fnngantoh< f*dwUKf_]luqno0inHypqcKcۋalo x ͙ȋȊÏͥ,<;Ih/0WUv @@s21{Xd+v%)x[xHXvqD9pnE;_p-Ix\s^o0Pvx @q{$wd+vT3VeXξvw+Dqj#9pGxtopbottomx ylhe]pu~r]`Z^OaM6^ctc]U_ja|ghm,M ʘvNhB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7pytopԊbottom̊ zt[O<W~YZ^{fk{s|g{}~elefncSޠvwzy0 K ,|ZjHGkf{{cZ~X{uWHv{`G^fdL{IMzztopbottomK A b!!^q֋L%L֋^UlwyW  R WU@LL@^qXZ!.!XFlA+topDNbottomrightΊbottom5 Bы,Eȋ؋GIB1">w}GUbj;PK7dXH#`^$e_!cvo o –,tvwt0tJ_I;ZJ@1{1]T.^ы,E$4nh|Ńk-'U[k*@s֣j| ‚l! V\UjBtopNbottomo C,  Njŋ`k׋Xc?MX\?cPHb4]Z{I[iyE9Ћϋt{lWNGZ6l%Nw ,P@@b3FRx,,]b<`4^j;{K׋c?{Lj[L{{eDe=VCtop5Nbottom DZы,E g|+g$Q&5<Z@Hݮ@@&6!{m o ,avd6d| |734^ы,E*,X,Qc6gr**wDtopNbottomo E$ы,E`??IBWcUBC׋^J!v.t| u ~ љ,a$vJ?iBw<cUw<Bm׋?^ы,EWE+top+Nbottomrightubottom~ Fы,E`??FBWcUBE^͋!ּv.| Ǘ,Xv1Bw<cUw<Bm׋?^ы,E9Ftop+NbottomY G) ɋˋ`k׋Xc?CQY:cMG_1Y[{K\hyF7ʋȟ^RChtxgf[nNyA%Nwv Ș,U*$Ϳ0ċ^r(R*:=Tn--\a8 m4Vj:|N׋c?{L0#kQ`||eFe9GtopANbottom H<ы,E^EGƋE^E,ы^ыƋCы^m߼!vċ ܜl<vEƋCE^E,ы^ыGƋы^ы,EHtoppNbottom| Iӗы,E^E,ы^ً!v0 m 3ӗvE,ы^ы,EEI*topNbottomrightmbottom튋 JBGOmt}zmw1^Ev6#;N!t j c,e9)9-ы^ eb(}bSuu)EslaJtopNbottom  KHы,E^F8{;i^N Nj^Ћ!Y[ы^:!v ͙uHvE[F^O ȋi^ۋ{ 'Ћ^ы,EKtopXNbottom Lߙы,E^E+y׋^Jm!v~ x x ,<ߙvmJ?jy+ы^ы,E%L)topNtopright1xbottomx MBы,EH++U^E,ы^ы($yMq"ы^W! Bv ͙,uBvWE"y$E^E,ыU+G+H^ы,E*MtopNbottomӊ Nы,EDUEX^E8!Cjы^X_&!v– ,[vXEjӋ8!ыX^ыUD^ы,ENtoptNbottomɊ Oְ{iVe^@fPIa2~W\{IXcwkTctW Ћ bx%d!N'6=[A&  z,"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-OtopINbottom PNы,EˋӋHJnx7V>,T@*E^dbռ!p ,l.v1*b<0e0]O+^ы,E=q٥k{a X[[RPtopNbottom Q8DXWxU2)Ћ e{-i)W,B;-SQ=tt^Qlְ{iVe^@fPIa2~W\{IXcwkTctAD& f8D̋y7]u@j.Dx#x-7ooO,O1@F*tSl"**ba?\!*c*Kaʵ?\\;!QtopIN  Rы,EˋӋHKev=]IAZWtnm^QoeqzUy!Eы^db ռ!p ,hvEy/)wCƨPyCUVm0|0]O+^ы,E=q٥k{a X[[uRtopNbottom` SvSB{L?a׋~[{f\ȋϣ[]\FHek׋ZY?RRaNtcewZraYv{n>QZd3DI)d&Nwv'X z ×,v5e&6l7S7Hu=dٲo:|N׋Y?|Q pZnn/޷\UjqLlLAHx߰7f݆u?Xa׋@n,StopNbottomz T *,l??`??,*^ E1*,m׋?`?׋,*1jTtop7Nbottom Uf[?VoE^E%,oYvXVˋ&EX^E'(yDY'FM2o>!  wB'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[U+topjNbottomrightbottom V4!Xr^@7@Q^X!9! K_݋!Q^֋7{֋r^iVtopBNbottom W$6!Xr^@z@S^X!31!t'  ,`$,!S^֋2֋r^Wtop֊Nbottom XH^ƋPu^JcJX^PƋ^w̋7j̋^V!S w כvHSVJjJ^wPƋX^̋c8̋u^ƋPhXtopDNbottomw Y ۋ*Xx^@u@X^XNۋ^!  W;X^֋uB֋x^P;VYtopLUc0K<;Fbkf8^G=*9 \}=GWp!f8u@@RT!!!IUvtGi׭t}y<2jgr/~VJ&2{ threenN_Kbxlw|ty|v|ӋylbtHȋЋ]WnTxgszxr~{qoű٢BN]jEUZGliGU[d3AG#c** M ɍɋɶѬ֦N M\EQ`)KEEVS'IUwsGi٭tx=>nبk} l?")RV-~Y΋1Xt~!eM.2LZQphyfPUsz!=io<;<ʽL&3 four$)~|K0g$/Ddw!$v A$0~*)|Oa'!w&4 five̿^]Kbylw|uz|v|ЋSaaJbwqX x=6ڽË{hRbM_!?<&^ٍ r^..d?4VebZ 'k-'`o%iKB.MOLpkyhQVsz!=io=;=ʺL&5 sixi;1D /F cN~K03HxQʋC@EZ=>'c\d^iWqd_pOiZr`XZw Ti"" [R+T[f]E"3q99>>Q7-r"}W9GBB-rf}"f9G\B&6a sevenŋkWd=|P,٠v *=Wdŋ&7b eightPk,,ӭbT‹@LaiCWVLjn~IU_g5FH&aRʋW[L>8{Lax^[_bm]uiftYpzq}aa.^ ʋʋʤk(N`GF`&VBBURgg'(+ɵ[v]pb"=RRN'.g_30ML.gii30XM6ߪ7le$2L87lߪn{$2`L&8 nineҧȘykhapW{lL>ۋ54:ND /F vhd^iWqd_pOiZr`X)va  Nq99>>QK"" [6+»E"7-r"}W9GBB-rf}"f9G\B&9 ampersandj*(ֹxyۨЋSRedKMU=]cx jIN^IwKRh`lty^Ah`yai,i9ue{lovfvwoWlʫiSשXlVCZkZ]-0C ޜЕЊNjNjԊԊЊNjӥ,jP G̢+Cy 'bnhkI2N^͋8>mP0<oq>#j#eW\\)9~fחmK`L5NXXV9Isͣr7|+1W\ ϖE؅r $\&,] e 8'4`^*SXv& at Q!;\ ԋɋjJ*LIkP6EV^b{hjPfa`sqaeӋD>~zvw "D U+-Gy@g^\wO/MkHm[3bwh`G>wC}jiknk܋ е5a|Ø љܑ͑܋܋ፊ썊,   IŏӰH!q$ ,,1r6r>um/U:0b}̆oegN1tn;O;^g454Kv5f3dE288-3kȒN6v-!M#V7ߖi}I8~-H5HH@? hyphen{I͌ m-5 softhyphenԋ??mS com.type-invaders.name.final uni00AD com.type-invaders.name.production softhyphen ? endashw~Xwċ ww0 ? emdash,X-x9 -, B underscoreK$lXl.?x ?.ll _g periodnmjvqbl  7eRƋPqvRmuPNPq.[ ellipsisً??????eRƋPqvRmuPNPqeRƋPqvRmuPNPqeRƋPqvRmuPNPq& D colonّ??+??hHeRƋPqvRmuPNPq+eRƋPqvRmuPNPq :{ commaWtpitytmZc]^bv|V GW"B6xOpuZpvzQKYr9b[,H semicolonܐ??+??w\\"B6xOpuZpvzQKYr9b[AeRƋPqvRmuPNPq ;K quotesingle@"ًs-BTmrw' 'bT=s-'G quotedbl%ދ??G??3ӗ'bT=s-.TT=s-" quoteleftQznlfnQFzlkw||veozw GQzӼeZʼnwY˽pw13"CGBu/IOp  quoterightztpitytmYc]^bv|V3 Gz"C6xOpuZpvzQKYr9bZ K quotedblleft\??^??pQzӼeZʼnwY˽pw13"CGBu/IOpӼeZʼnwY˽pw13"CGBu/IOp L quotedblright\ዋ??^??pz"C6xOpuZpvzQKYr9bZ-d"C6xOpuZpvzQKYr9bZ  quotesinglbaseVtpitytmYc]^bv|V GV"C6xOpuZpvzQKYr9bZ K quotedblbase\䋋??^??pV"C6xOpuZpvzQKYr9bZ-d"C6xOpuZpvzQKYr9bZ M guilsinglleftmHi-H;so- $KG;-H~mH\#9 P guilsinglright-HG;J\mH-  %mHJso;-H#: L guillemotleft}拋??Z??@ߙKG;-H~mH\JG;-H~mH\M guillemotright}狋??Z??BߙmHJso;-HgimHJso;-H exclamdown$@nmjvqblC [X\+ Q@eRƋPqvRmuPNPq4\d" exclam$nmjvqbl\X\"dNw  NeRƋPqvRmuPNPq^\+X\!4 questiondownT`Mdyc4@!AzFfzda•|ynrmdYNf=v(nmjvqblXTgq ,TmSvu'Hte=j{}(vؒbܭ:ib]4CS־ 9Uo266źQeRƋPqvRmuPNPq- questionF֏\bpTzsws{xr~{qmȰ٠vgZoR\0?K+fZoUyrnmjvqblX* ,f66Q\PSvtHj٬t~y>:iܭno]4C@X2eRƋPqvRmuPNPq? parenleft6G.q[guk^l;5I$X {Kw>x?>DalpNj.8 XG.>Ltx$'l}+Pb-=@T ?3( parenright0) fcvK9'Qd9awAB.#1YnNj.8[  R>.Pb-=  ?M&sL1xXj'l}*+3)^ bracketleft\T_ ^_U`r5 &rU ^T%[_ bracketrightM-^ UuT`B5  (BTuU_^ %] braceleft~nncjʹ_1EtqbglavuUfz{H_%͋`݋ z`1vAZlc AŻ.&Djm>1\kIVPnƨxIJoJQs9{ bracerightxO-ka1ks~|L|mn~VcL]_IlYc`.͋`5݋  xZD_D'kBƨPn͈yzQsx!_HjAcx Q[519}= slashЋhFw2 2#ЋhFn/@ backslash;ȋNw;ދ Q#ȋuNn\B fractionNɋNMڋNwvB ɋNMOD  percent\v֋ot@l{fhkjn֋ot@l{fhkjnXJËRIgt,Y7mm%,%[܋&B`Q2v copyright+V[^ksoirxxzlznpmsVanJtnjɋhE?JQNj  "O!`7AQ(~SiNx  cK&Ef0 %ˋ`>J5P/! %E+2ϾSB –ӍɋӾɳ+9. 'ܮch1ɚM|0x4 CFĢvfWmiRt^clRjhlVeulfL]qۯp]LfXk4QJ;gVitgW"~ޣ;㞎P ݛɍɲދӏӠӠ݊,;"؋yMmfszuvKS|yx`Bw3 $$P^E=/Kz$P$NnE=/JK.ln0@@@B0$@@@xfgc~}TO trademarkN{m33rmQ{s8qd .l-ab8s/ewW^ewAeWRws3651 ,6m8a-.cb8msm{0 3l34rR{mpshw^xASwh"!e ordfeminine,0heޢǎnrtryxspw}x`ap^I~ZQtpiv|tuw\O_YQs|xr{e 6괏&؜ Ėϋǐ,ڨ0F0ZZ^zW[y@=Ii#m`R9Ub?jʹy]~jUv{~džru=RTBmղiexl$ty$UJw ordmasculine`m lqaVK[j{LtlkiORԵNjGU_o5WGBa 2ˋ m,m RʢLt4s2 00ZLtʢus4~^ 0hZOiZ= Xe= Xx degreellVctϩtcRiboDZWGmiX`p^uldzXmaQD%Ƌ  ]MV=V''LJVV=7''L-'f Y L;'f^ Y \L@ prime  FNwl  F) 2 N com.type-invaders.name.final uni2032 com.type-invaders.name.production prime I primedbl5 ?? G??, F) mF) 3 Q com.type-invaders.name.final uni2033 com.type-invaders.name.production primedbl  asteriskHLzO/cbtG^|W~uyGcDc]ڋYZ,o}CX|'T lHJv+Kcc@^cI|HGҳxJs~,s<<~YX}+V* dagger0*{WtWQ{;qk~fڋsr&s=qc݋t/Ol\ًyB=UwGvG d0 \q{WkBWQ{N@ً3<U9u/ cً='sr  daggerdbl`n  oV lVڋsr's=u/9fًsr%s=&#ًxB=~ ݋t/Ol\ًzB<UwGv [  lV olTً3<݋lOnً3=kً=%srj9u/ cڋ='sr!  numbersignT!f G eȋ6e'eȋ6e~Y AG~Y 6fNf'6fN:'G'fKNwv כTËȋf'6fȋf G eN6e'eN6e ~YAG ~Y/y'AG'q#^ asciicircumҋVv5ƌI )+D&^ asciitilde0k[ns`ote{syvxy}wftsUp?  S KX6itiq!~p4X˾jxFViQ|!SE~&~o plusӗMM^ȋX^K~UKX^NN 5ӗ[ȋ^KK^NX^M~UM&+> minusA~UAN AA&" plusminusMMWȋYWK~UKYWNi A~UA Fs?ȋWKKWNYWM~UMAA&b multiplyӗY<<:T:cY>;]h9T90h =ӗT99;Y>iT::]h<Y<& divide}qqmytjqqqmytjq(A~UA C I  ,w`}̼lZ~Wsy(ZtxXUWs̼lZ~Wsy(ZtxXUWsu-AA&i equalxA~UAA~UAB 'BAA.AA&=K approxequal??q(??, KX6itiq!~p4X˾jxFViQ|!SE~] KX6itiq!~p4X˾jxFViQ|!SE~&H" notequal -B" .q̋;"~U# .q~U;"IB ΘR ͋q .#J:"~Uq ."~U&`"K less~@zFgg}RP (gg@{K&<O greatergg{K@P  )@}Rgg&>h lessequalӗAZ{L<A~V K~U 8ӗ? A<AZ{J;&d"l greaterequalӗI<A^{JAZ{K~Un  9ӗ AZ^~VA<^I&e"r periodcentered,nmjvqblNj  9,eRƋPqvRmuPNPq3j bulletINYWQgw}^GUN  :INL(r%]gW([dv$~!%]~" k lozengeӗЋF4Ì`  9ӗEЋF˄&%N logicalnot85LNB ȋ5~U&o radicalӗ3f700}ȋN1fNw 6ӗ>NN}>00~Wߋ&" integralphZbowr}7͋cpqlgptp_ZN}R7w;65hh   zZph?:7:R 3`ʅq]yKYvuM1lr::ROR maLiY˽vx2Muo&1l+" infinity%NJڴ#‹ȋ?L\k3QG com.type-invaders.name.final uni212E com.type-invaders.name.production estimated  litreeRdwhv{s΋49'!F$4[BKr~mhV\dQu,hmiaYHWϋ lQ$-$_Y4i%eB O]|UUQYh7TɱdsVɱbp.B.D ?p(rn%!!T]!N com.type-invaders.name.final uni2113 com.type-invaders.name.production litre  numerosignы,EEIEX^E8!C_ы^X"!lr`YK~[k~Xukmim_n~ҳxj`rbp:YJDceO~Y&!8ʦ ljʕ,ȱvXE_Ӌ8!ыX^ыIE^ы,ESɢMt'v?.2ZMtɢvv'׀i-k[OiUwAw yUhxxA yV+!S com.type-invaders.name.final uni2116 com.type-invaders.name.production numerosign  partialdiff];< NjZ_F%JЋT%27d-@ FJkan\rg_qOi[~SiwbW]Nw T]9 9Y''?S4Zl( %hg)F33DA.xsjGC+.xdjsG\C" currency eRw'e E$ͣrwV $pnRdg_ V_HnvIsj\ho]ugeqXn`w:kcc Pڋ ɗË 8^@Ejp0g e'yeL^޸^z"V_ @j0p;x V^2y÷9ۮ;hel1YM0;hۮplezR1YYMU cent,RU̓q%Tdjg_kqtasK|^0+.Fq$Z*eS6t0f{2jnb^|  –xfQ J9$ VUHx^yFJwjAZwq>#\^`Zq%CnȮUfۖHZq5J8 Euro-'ɋ{m^nhdYkqow[k_DkTRa>}^~^n_j^}}rbRgz̋t|nZOIX;k̋%%j ۛ@@T'OQi++P3gzM~vgP0mvQwPBwo4Utn6F:F`;_V3V@8  florinX&[_qw}o{00NۋepqicntssetmcrSjJRM|]M4n8&S&>#V ŗ X&rLLMMR,)KԋmYvM\wrI/noLL=A%0|]03,hKBf\ɺwz.Irl'/n$ sterling7ы{m_pidXkqnwbk_KiaPv:\z`t9].brEaPS\kzы^HJɹ'D љËþ}JHXoы0~EQ19ލW??+eyXyOBvm4Tto6969_@=sHv]ߋ9+# dollarhI@4mtqmdnIJw=ɅQXkfZjqoydkJoBP\g8JL.dRw=Zħ]^gUrgfy]se\x%="ޙ ۛĊʼnNJϺЊت,59(x9ew\zQBwm5Uuq:#1#\NMZw=f`+6ڶaaDxoswLUtw#9pc606du kݫp1i1HI_7b?X^X~#^5q!4^4p ۋ^,ø! l;445#~X^׋bO؋x^"^4p!3^4q ;O baht|ҋ"Fq$& ^mH\^Qpo~PWaj=OO:g[bq$Z+`dhhߋ7ߋ7 㻍V ƐƓƓƶŋŵ‹ªɋ,Գb9rl-l#TaO7R2B&&bYZq$_Ћ"D_8mީmk#U\? EtѢm"kZ]M#[ߋH7 ߋN7R?M com.type-invaders.name.final uni0E3F com.type-invaders.name.production baht n coloncurrencyJ;.כr;m0}TbidYlqoozRƐv|q^QPZDhbr:Zlvn1ZnxKTnE y@x~XUXwSmۋz ċȍȋĬȭɊӊ9f:{? 6FPTxj~QBwm6Uun7"/S]nZp9e~sZo6tI-;L=Yyy=s}yI{e"0 G V com.type-invaders.name.final uni20A1 com.type-invaders.name.production coloncurrency  lira /R{m_pidXkqnwbk`LjaRu=]Q^Ewo}u+^'zO?6Unы^HJ'$D  ̋ǗNjNjNjNjÊɉɃ,¬}JHXoы'B@=+lٌ`EQ?j com.type-invaders.name.final uni20A4 com.type-invaders.name.production lira Y nairaыXEыEыYEDNYEX^E[Xы^Dlы^DNC9nZYы^XYT!\6a&0!v ,vXEYnӋҋEҋEXыX^ыYYN;D^ыZYE^ыkE^ыZXET6H N com.type-invaders.name.final uni20A6 com.type-invaders.name.production naira  rupee:)}Wt=Fы^ы,EӋGNgxCdMN[awh]wq|wsʠequpjqxswgowzjswlnnyw\gjpV[dFvҋdaDּ͋X!a X߭ כՙՐՐÐËͶ͋⋊, N&A&_RTv,.;i &t|azP`zxT*nn''APS_ǝn-kիo1 fr4ܳ:oB5z[[+t+[S^ы,E^EًtUBm)ҋ=r٤kza Y[9 N com.type-invaders.name.final uni20A8 com.type-invaders.name.production rupee  won̿0CɋXXr^@Y5 5Y@S^X*Xȋ^CN^ 3> 1%!)h"0!R ,̿, > %ӋNXS^֋.Y52 5Y֋r^XM^Ӌ%^@!%h)" L com.type-invaders.name.final uni20A9 com.type-invaders.name.production won  sheqel`VNpċPLk\;W_lG-WD; ut. 1Dt_sċ |H-GAiխw*~7ڇZ%e]Nt]K K4X u" HrmDW O com.type-invaders.name.final uni20AA com.type-invaders.name.production sheqel x dong #\aiqu7Ћ\GUzMBlecqwoszghNd_^srfaD=xAqJvli&~X wҚ ̋ɋɋ,̯#7909v|IWsJKs-*{UϋF4z{H\k6qu com.type-invaders.name.final uni20AB com.type-invaders.name.production dong   kip~ыAՋE^FHՋ<f^Kc]E:iы^ыIBы^)!vx ~vE͋E^E6iiщcˋf^ڋAЋ^ыHA]ՋAE L com.type-invaders.name.final uni20AD com.type-invaders.name.production kip  tugrikT OP,l??`??,Xc}TOs)}TO\O^ ~T1OPPc,m׋?`?׋,KP}Ss)P}Si1j O com.type-invaders.name.final uni20AE com.type-invaders.name.production tugrik  pesoыDыEыEӋGJӋ^JqRmɋ^E|nbUTbEr_d,^ofb %/oorY! ɊɡФеu1,u))MBЭC//\P^ыq#E^ыnE^ҋ?E 8sޣgFqY]o"U];rl}Ryq M com.type-invaders.name.final uni20B1 com.type-invaders.name.production peso  guarani\UIEˋh2R_idZkro}eq^SDoxxgf[nOyg~k9ZoT6dLIb5[]|M^iz[EyyȠ$0{2v ٛԋԋӌӯӊˊ,ޮ19y]+$̿&Ëw_|QBwn5Vvn82TXfZk:hi i 9BHtd2uyr|$v:Q,9>R P com.type-invaders.name.final uni20B2 com.type-invaders.name.production guarani  hryvnia\8.? @ҋXRK^wuwszwq~zrnȱݡދ>MjpJur׋^ @^ҋjrmIlcZċˋ|{mrngWMe:uߋ''5k Čċċω u!$!Uuv&Fue;l}{wےg,2jCL:@ ?w1DKDRI!!$LUuuFl۪ty;,2jgLCx[j^@ ^׋Zw]DKDRK P com.type-invaders.name.final uni20B4 com.type-invaders.name.production hryvnia + cedi ?SPȋi4vnguidYjso}duvğv{oZNJY:j[x{l8Yo[@eRId3Xx~XUXw[Qz؋w –̊9s@@V*KR{iv]{QAxo5Wuo7 3 SUjYm;p|yy$FY&xe"[D M com.type-invaders.name.final uni20B5 com.type-invaders.name.production cedi  tenge ~*l?=a=?*~^N^! V 1~*m׋=a=׋*~1r N com.type-invaders.name.final uni20B8 com.type-invaders.name.production tenge  rupeeindianoeqzPz.KecNg^/Xe؋^?rnX^_Nlctml^Sŋ׸z!/ ֚ËAȨNy?K0>">YZxn/g^N9rݤh4||^ XW^.z.*w1 T com.type-invaders.name.final uni20B9 com.type-invaders.name.production rupeeindian Z liraturkishыY$Z%[`E^Ee+C}SC8s,C}SC8NŋƋtzlfg^\%16S9vӋ!/"Z ,vv;KVrp=jf.[{ʟqw\&*lCC9CC9+ы^ыX`%[}Ts*$[}SZYE? T com.type-invaders.name.final uni20BA com.type-invaders.name.production liraturkish  rubleы FЋFЋEʋԋHJxXvUhVUb@qY)nd^dm ^db6ָ! ֚vw1 dd)a<1d1]O+^ыCF^ЋnF^Ћn E9qݥgz~` WXZS N com.type-invaders.name.final uni20BD com.type-invaders.name.production ruble  bitcoin5Dы"FCq$ˋq#  ^mH\^Qpo~PWdl>QN:eXq$ZKq$Z+6he 㻍V Ƌ,ȱ9ˋq$ql5j#yTaO7R2B [bXZq$KZq$C_Ћ"E_D8mީno& U\d EtѢn"nZ_UR P com.type-invaders.name.final uni20BF com.type-invaders.name.production bitcoin R fi&8hX_ov~r}1!|sk{ribnqsvmQ(?v9[^ mxG7h_XnthlTw<%.݋hihF\ ՛‹¼ʊ 8hX@)@,T/\y>Im/=B"qy m6^F2*[ԻleS|uDYvsI `Yff'>c90Z" paKjXʾvx1Mto&,mI, fl8hX_ov~r}1[[؞DSxG7h_Xntik-}hzS7Mx<|NZ*w<%.ދhidF ՛ 8hX@)@,+3!hƮ _\x>Im.=B"qyDS>x&׃e[[7G`B0Z" paKjXʾvx1Mto&,mJE aacute????RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X.,>!D,E abreve????RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XC#:#ofYۙm}Zqro$՚A,J acircumflex????RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X[(+;3L-0,H adieresis????>RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\t,I adotbelow??z??RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XUtĶq`^u|4`wwaZ^u,R com.type-invaders.name.final uni1EA1 com.type-invaders.name.production adotbelow E agrave????RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XkH7k,E ahook??ϋ??ʬRV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XjHPxv{L ?,N com.type-invaders.name.final uni1EA3 com.type-invaders.name.production ahook F amacron????RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X\, aogonektbkcnswacC]XVnlV[ѯ4 ax}zhhlgvgxktxwXm[oaY5.r0za_c}gcbnwȎϨ ˙ŎŭЍУ,bPYTp{Yk8&.ʻ'Cqy a[_@oh){&UV!Vv<Ws?VnǏ{ NfCsdד?ap AxL]u:]DX+X,D aring????"RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X]`|ZRv`|y5nE>Ġuvef&R&)C`hZ&&ROC)`,I aringacute???? :RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X\`|܁`Su`|z:nGDávudg W (:cgZ WN:(cQ*,E atilde???? RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X0TEUl|1ovuEqiSkoV~bV,K abreveacute??ϋ??RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XB9ngWڙn}Ysqo~ КF (*D!A,T com.type-invaders.name.final uni1EAF com.type-invaders.name.production abreveacute b abrevedotbelow????z??:RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XC#:#ofYۙm}Zqro$՚AhĶq`^u|4`wwaZ^u,W com.type-invaders.name.final uni1EB7 com.type-invaders.name.production abrevedotbelow K abrevegrave??ϋ??RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XB9ngWڙn}Ysqo~ КFiE=n,T com.type-invaders.name.final uni1EB1 com.type-invaders.name.production abrevegrave J abrevehook??ϋ?? RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XB9ngWڙn}Ysqo~ КF kJQyv{N ?,S com.type-invaders.name.final uni1EB3 com.type-invaders.name.production abrevehook K abrevetilde??ϋ??bRV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XR[UEVl~0ovvEqiSloVaW7LB9ngWڙn}Ysqo~ КF,T com.type-invaders.name.final uni1EB5 com.type-invaders.name.production abrevetilde P acircumflexacute??ϋ??̯RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XY($;3L-/(*D!A,Y com.type-invaders.name.final uni1EA5 com.type-invaders.name.production acircumflexacute g acircumflexdotbelow????z??RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X[(+;3L-0Ķq`^u|4`wwaZ^u,\ com.type-invaders.name.final uni1EAD com.type-invaders.name.production acircumflexdotbelow P acircumflexgrave??ϋ??̯RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XY($;3L-/iE=n,Y com.type-invaders.name.final uni1EA7 com.type-invaders.name.production acircumflexgrave O acircumflexhook??ϋ??RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X|kJQyv{N ?($;3L-/,X com.type-invaders.name.final uni1EA9 com.type-invaders.name.production acircumflexhook P acircumflextilde??ϋ??6RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XYbUFVl}0owvFriTloVaWlY'':.L++,Y com.type-invaders.name.final uni1EAB com.type-invaders.name.production acircumflextilde K aacute.alt01????3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5.,>!DK abreve.alt01????03-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5C#:#ofYۙm}Zqro$՚AP acircumflex.alt01????3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5q(+;3L-0N adieresis.alt01????&3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tO adotbelow.alt01??b??43-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5ljĶq`^u|4`wwaZ^u^ com.type-invaders.name.final uni1EA1.alt01 com.type-invaders.name.production adotbelow.alt01 K agrave.alt01????3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5kH7kK ahook.alt01????3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5jHPxv{L ?Z com.type-invaders.name.final uni1EA3.alt01 com.type-invaders.name.production ahook.alt01 L amacron.alt01????3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5r aogonek.alt01bkcnsnF:HZ^Tҿߐ`hki{u|njenuoΠʋJM}fzFx}zhhlgvgxktxwXmG..O~]yxqnb|Ɛvݰ ҚڍڰڋɍʏӉ։,:bPYTp{Yk8&.ʻ'Cqyψ]#&#^P8MYysHvܠt͛^8lުquC|PuM>8`'_o-·}B~@VnǏ{ NfCs#Z™T}҅t_ITĴm%9C5J aring.alt01????r3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5]`|ZRv`|y5nE>Ġuvef&R&)C`hZ&&ROC)`O aringacute.alt01????/3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5\`|܁`Su`|z:nGDávudg W (:cgZ WN:(cQ*K atilde.alt01????\3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5FTEUl|1ovuEqiSkoV~bVQ abreveacute.alt01????H3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5B9ngWڙn}Ysqo~ КF (*D!A` com.type-invaders.name.final uni1EAF.alt01 com.type-invaders.name.production abreveacute.alt01 h abrevedotbelow.alt01????b??,3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5C#:#ofYۙm}Zqro$՚AiĶq`^u|4`wwaZ^uc com.type-invaders.name.final uni1EB7.alt01 com.type-invaders.name.production abrevedotbelow.alt01 Q abrevegrave.alt01???? H3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5B9ngWڙn}Ysqo~ КFiE=n` com.type-invaders.name.final uni1EB1.alt01 com.type-invaders.name.production abrevegrave.alt01 P abrevehook.alt01????#p3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5B9ngWڙn}Ysqo~ КF kJQyv{N ?_ com.type-invaders.name.final uni1EB3.alt01 com.type-invaders.name.production abrevehook.alt01 Q abrevetilde.alt01????D3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5heUEVl~0ovvEqiSloVaW7LB9ngWڙn}Ysqo~ КF` com.type-invaders.name.final uni1EB5.alt01 com.type-invaders.name.production abrevetilde.alt01 V acircumflexacute.alt01????3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5o($;3L-/(*D!Ae com.type-invaders.name.final uni1EA5.alt01 com.type-invaders.name.production acircumflexacute.alt01 m acircumflexdotbelow.alt01????b??^3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5q(+;3L-0Ķq`^u|4`wwaZ^uh com.type-invaders.name.final uni1EAD.alt01 com.type-invaders.name.production acircumflexdotbelow.alt01 V acircumflexgrave.alt01????3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5o($;3L-/iE=ne com.type-invaders.name.final uni1EA7.alt01 com.type-invaders.name.production acircumflexgrave.alt01 U acircumflexhook.alt01???? D3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5!kJQyv{N ?($;3L-/d com.type-invaders.name.final uni1EA9.alt01 com.type-invaders.name.production acircumflexhook.alt01 V acircumflextilde.alt01????+3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5olUFVl}0owvFriTloVaWlY'':.L++e com.type-invaders.name.final uni1EAB.alt01 com.type-invaders.name.production acircumflextilde.alt01  ae^Tѿߐ`hki{u|njenuoΠ_gڷtdnoqSJ\j6mHpa^|[+$-@d\q|hcX\jXz..O~]yxqnskuexj^lAPz| כʋՍՋې۽ÍƽÊլ㊊鑊, 0FԷ  ֜@RR#9$SU4vGz3eN/DsHh;Skc[kb8MYysHvܠt͛^8lުquC{MrL?9`'_Z™T}҅t_ITĴm%9C5^U'\N}șqV;VR`top<H aeacutePs????HFԷ  ֜@RR#9$SU4vGz3eN/DsHh;Skc[kb8MYysHvܠt͛^8lުquC{MrL?9`'_Z™T}҅t_ITĴm%9C5^U'\N}șqV;VR`0.,>!DE cacuteH????fBuRR%7$UU5viq5dzdxCGuh;Xup9(`Z;}µT{.,>!DE ccaronH????xBuRR%7$UU5viq5dzdxCGuh;Xup9(`Z;}µT_ʋ-0s(+*p} D ccedillaP%bkcswqqPTկƋR^he\hqrt_tbzf_j@}Qf{2jb^|^0./IuYqstwgir`~Hb|Z ȋ͉͙țΦ%b P*ƯSytH}`QI7$UU5viq5dzdxCGuh;Xup9(`Z;}ȯUAh}QFųc#sxjaFwJ ccircumflexH????xBuRR%7$UU5viq5dzdxCGuh;Xup9(`Z;}µT(+;3L-0 I cdotaccentH????BuRR%7$UU5viq5dzdxCGuh;Xup9(`Z;}µTƹp]\u{1]ww^Y\u F dcaron????RV!Vv<Ws?Mn*AB"qyESSdcXr)mq){&Udד?ap AxL]u:]Fa*aR/,q dcroat&V[ѯcl2:9s+ы\E!xG7f_\nujnwacC]XVnoaY5.r0za_c}gcnwܟ ҚÍË,RV!Vv<Ws?Mo*>B #py!ыE'v{@9\:f2)mq){&Udד?ap AxL]u:]Fa*a,! ethZ;; NjZ^or*Nuxcqҋp~c0QOL7d,@ FJjan\qg_pNia~TftaW_w ×Z8 8Y9q>rs)LOit/;XåsF/clw18?%hg(G44C@-wsiEB--wdisqE^BE eacuteZ????XCvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`.,>!DE ebreveZ????CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`C#:#ofYۙm}Zqro$՚AE ecaronZ????jCvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`ʋ-0s(+*p}J ecircumflexZ????jCvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`*(+;3L-0H edieresisZ????CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`SĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\tI edotaccentZ????CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`ƹp]\u{1]ww^Y\uI edotbelowZ??L??CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`&pĶq`^u|4`wwaZ^uR com.type-invaders.name.final uni1EB9 com.type-invaders.name.production edotbelow E egraveZ????XCvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`kH7kE ehookZ??̋??CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`jHPxv{L ?N com.type-invaders.name.final uni1EBB com.type-invaders.name.production ehook F emacronZ????XCvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`+l eogonek2GbkcrmDLدtdnoqSI\j7lIpa^|pVcPtuww[`b_p_vktxwXmYskuexj^lAZbzϟ ʘˑˋŐ,GbPYTp|ZkU$OP#8$RU4vGz3fM/DsH;{U)hMaCsU'\N}șqV;VR`E etildeZ????¤CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`TEUl|1ovuEqiSkoV~bVO com.type-invaders.name.final uni1EBD com.type-invaders.name.production etilde P ecircumflexacuteZ??̋??CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`(($;3L-/(*D!AY com.type-invaders.name.final uni1EBF com.type-invaders.name.production ecircumflexacute g ecircumflexdotbelowZ????L??ħCvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`*(+;3L-0rĶq`^u|4`wwaZ^u\ com.type-invaders.name.final uni1EC7 com.type-invaders.name.production ecircumflexdotbelow P ecircumflexgraveZ??̋??CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`(($;3L-/iE=nY com.type-invaders.name.final uni1EC1 com.type-invaders.name.production ecircumflexgrave O ecircumflexhookZ??̋??CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`KkJQyv{N ?($;3L-/X com.type-invaders.name.final uni1EC3 com.type-invaders.name.production ecircumflexhook P ecircumflextildeZ??̋??CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`(fUFVl}0owvFriTloVaWlY'':.L++Y com.type-invaders.name.final uni1EC5 com.type-invaders.name.production ecircumflextilde  schwa"t]ftͺߐkh^8?fGkȢҋ:;f}5o6_=OP>gg$0JTqhZiȍ  |@";{TcRRNNj$9$U4vkzG]g/M;DsշSșN}V;VPĶEa\YN com.type-invaders.name.final uni0259 com.type-invaders.name.production schwa E gbrevev????8C#:#ofYۙm}Zqro$՚A6++~N]IRnuCvӋpb'bvS_,Kudd'3}Pɡco#(TmMus66eaCa\MOΛH{zB 73bH{ΛqzԈx 7jb,޵8a 3 Tĭ6~Gq}--9tJ gcircumflexv????VT(+;3L-0k++~N]IRnuCvӋpb'bvS_,Kudd'3}Pɡco#(TmMus66eaCa\MOΛH{zB 73bH{ΛqzԈx 7jb,޵8a 3 Tĭ6~Gq}--9tK gcommaaccentv????>ómcfx|VMz3cX}I\^z-++~N]IRnuCvӋpb'bvS_,Kudd'3}Pɡco#(TmMus66eaCa\MOΛH{zB 73bH{ΛqzԈx 7jb,޵8a 3 Tĭ6~Gq}--9t#I gdotaccentv????3ƹp]\u{1]ww^Y\u/++~N]IRnuCvӋpb'bvS_,Kudd'3}Pɡco#(TmMus66eaCa\MOΛH{zB 73bH{ΛqzԈx 7jb,޵8a 3 Tĭ6~Gq}--9t!K gbreve.alt01????hff9(\^@oh)z&UTTUU91Ia!n{uRZռw{(Cqlcdד?_p @xM!^u9]Gd,dC#:#ofYۙm}Zqro$՚AP gcircumflex.alt01????ڬhff9(\^@oh)z&UTTUU91Ia!n{uRZռw{(Cqlcdד?_p @xM!^u9]Gd,dW(+;3L-0Q gcommaaccent.alt01????hff9(\^@oh)z&UTTUU91Ia!n{uRZռw{(Cqlcdד?_p @xM!^u9]Gd,dómcfx|VMz3cX}I\^zO gdotaccent.alt01???? hff9(\^@oh)z&UTTUU91Ia!n{uRZռw{(Cqlcdד?_p @xM!^u9]Gd,dƹp]\u{1]ww^Y\u4 hbar ilpqJWJ5T|Nf'/.FЋr+:\:@ƭYetj2xG7h`XmNj`vw( Ș, =B!qyÈi5fq]]Q'K)::*wx?F\Ћ.'vN) )o\4\y=Jl3'U hcircumflexɋ??QF??  =B!qyÈi5fq]]Q'K)@Rdc>='vN) )o\4\y=JlY(+;3L-05% dotlessi ik3S mxG7h_XnNjVی F =B"qy mScc3\x>Im31topZF iacuteNj??%??X =B"qy mScc3\x>Im.,>!D3F ibreveNj??%??|P =B"qy mScc3\x>ImC#:#ofYۙm}Zqro$՚A3-K icircumflexNj??%??a$ =B"qy mScc3\x>Im(+;3L-03I idieresisNj??%?? =B"qy mScc3\x>Im Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\t3I idotbelowNj?? ?? =B"qy mScc3\x>Im:̼kZ~Wty(ZswZXWt Ķq`^u|4`wwaZ^u3R com.type-invaders.name.final uni1ECB com.type-invaders.name.production idotbelow F igraveNj??%??V =B"qy mScc3\x>Im#kH7k3F ihookNj??Z??m: =B"qy mScc3\x>Im-jHPxv{L ?3N com.type-invaders.name.final uni1EC9 com.type-invaders.name.production ihook G imacronNj??%??V =B"qy mScc3\x>Im!3+O iogonekbkc~~lp3S mx}zjingxfxktxwXmqqnzuipNjbV P ϟ ŗ,bPYTp{Yk8,.ż&Bqy mScc3\v=QmΏxPfCsN̼kZ~Wty(ZswZXWt3/F itildeNj??%??| =B"qy mScc3\x>Imn TEUl|1ovuEqiSkoV~bV3)A ijߋ??Nj??, =B"qy mScc3\x>Im:̼kZ~Wty(ZswZXWtI<0<>9Scc1ҹv_UiYʽvx2Luo(.n̼kZ~Wty(ZswZXWtK3q ijacuteۋ$????Ƌ??\??a.,>!DR=B"qy mScc3\x>Im<\I<0<>9Scc1ҹv_UiYʽvx2Luo(.n.,>!DG dotlessj$KhY`ovq}3S$w=.1hVی1 SKhI<0<>9Scc1ҹv_UiYʽvx2Luo(.n7Q com.type-invaders.name.final uni0237 com.type-invaders.name.production dotlessj topXF jacute??#??d*KhI<0<>9Scc1ҹv_UiYʽvx2Luo(.n.,>!DK jcircumflex??#??n<KhI<0<>9Scc1ҹv_UiYʽvx2Luo(.nl(+;3L-05L kcommaaccent??k??̫ IC q#5BIgH6Ufp]]Q-H#@Rdc>='tK--fK}K)P7d]\X,͊}^zz7cu}\_fz_/oe"7 kgreenlandicNxi9^MQ^H/V3PF60HJ^WMExE5zvrpu{t‹mV۠v Ș,p@KD!q#%MEJ^΋60BFPccVH^[Y.8P lacute??Z^?? X=B"qyDSRdc&\y>ImZ.,>!D&:E lcaron????W=B"qyDSRdc&\y>ImR/&>K lcommaaccent????h=B"qyDSRdc&\y>ImLX,͊}^zz7cu}\_fz_/oe&<D ldot????vT=B"qyDSRdc&\y>Imƹp]\u{1]ww^Y\ua@ lslash0ikKw̟3R5W-n>xG7h_Xn=ڌ љ`*=B"qy.mRdc@JwY˟P\x>Im-BE nacute׋????>B!qyÈi5fq]]Q'K)ZNccV'vN) )o\4\y=Im.,>!DCDE ncaron׋????>B!qyÈi5fq]]Q'K)ZNccV'vN) )o\4\y=Imʋ-0s(+*p}CHL ncommaaccent׋??w??ڬ>B!qyÈi5fq]]Q'K)ZNccV'vN) )o\4\y=ImtX,͊}^zz7cu}\_fz_/oeCFE ntilde׋????>B!qyÈi5fq]]Q'K)ZNccV'vN) )o\4\y=Im TEUl|1ovuEqiSkoV~bVCJ napostropheዋ????ڬz"C6xOpuZpvzQKYr9bZ>B!qyÈi5fq]]Q'K)ZNccV'vN) )o\4\y=ImMI eng_hZ`mwr}mpqJWK5S|Nf'/V3OYZƭYeqmCw>,1V۠vh`э6 Ș,_hK;.;"Èg5fq]]Q'K)ZOccV'vM) )oav0Ҹu`VjY˽tz0Mun)/o*KE oacute????D[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D.,>!DE obreve????[C.xb9E A'.xdb9iE ^A<_'a11DV'a11DC#:#ofYۙm}Zqro$՚AOJ ocircumflex????V[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D (+;3L-0H odieresis????[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D2 Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tI odotbelow??U??[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D/Ķq`^u|4`wwaZ^uR com.type-invaders.name.final uni1ECD com.type-invaders.name.production odotbelow E ograve????D[C.xb9E A'.xdb9iE ^A<_'a11DV'a11DkH7kE ohook??ҋ??l[C.xb9E A'.xdb9iE ^A<_'a11DV'a11DjHPxv{L ?N com.type-invaders.name.final uni1ECF com.type-invaders.name.production ohook L ohungarumlaut????\[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D1.,@ DK|.,@ DQF omacron????D[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D !M! oslashrz͋qtl:8aUQfE!#FI?bC?Upj#Zo^qg^rNixCz@ukO Ǘ,xd Z1z'azPlB? yd'azƑkFtFǧOvd;_< ^AZNpȟs=h < Atop֊K oslashacute????d Z1z'azPlB? yd'azƑkFtFǧOvd;_< ^AZNpȟs=h < A.,>!DE otilde????[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D TEUl|1ovuEqiSkoV~bV ohornƾW=<͋Ջ܋u2rjjif\3RfE"#FMkco^qg^rNi~Z{J`pbWzuK U ,fW'ab=}oQ:oAJv'a11DC.xb9E A'.xdb:hE _AtopҊbottomUJ ohornacute‹????~W'ab=}oQ:oAJv'a11DC.xb9E A'.xdb:hE _A.,>!DS com.type-invaders.name.final uni1EDB com.type-invaders.name.production ohornacute N ohorndotbelow‹??U??W'ab=}oQ:oAJv'a11DC.xb9E A'.xdb:hE _A[Ķq`^u|4`wwaZ^uV com.type-invaders.name.final uni1EE3 com.type-invaders.name.production ohorndotbelow J ohorngrave‹????~W'ab=}oQ:oAJv'a11DC.xb9E A'.xdb:hE _AkH7kS com.type-invaders.name.final uni1EDD com.type-invaders.name.production ohorngrave J ohornhook‹??ҋ??W'ab=}oQ:oAJv'a11DC.xb9E A'.xdb:hE _AjHPxv{L ?R com.type-invaders.name.final uni1EDF com.type-invaders.name.production ohornhook J ohorntilde‹????W'ab=}oQ:oAJv'a11DC.xb9E A'.xdb:hE _AUEWm}?u~-y EqhTluci_S com.type-invaders.name.final uni1EE1 com.type-invaders.name.production ohorntilde P ocircumflexacute??ҋ??n[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D($;3L-/(*D!AY com.type-invaders.name.final uni1ED1 com.type-invaders.name.production ocircumflexacute g ocircumflexdotbelow????U??[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D (+;3L-0uĶq`^u|4`wwaZ^u\ com.type-invaders.name.final uni1ED9 com.type-invaders.name.production ocircumflexdotbelow P ocircumflexgrave??ҋ??n[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D($;3L-/iE=nY com.type-invaders.name.final uni1ED3 com.type-invaders.name.production ocircumflexgrave O ocircumflexhook??ҋ??[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D!\kJQyv{N ?($;3L-/X com.type-invaders.name.final uni1ED5 com.type-invaders.name.production ocircumflexhook P ocircumflextilde??ҋ??ة[C.xb9E A'.xdb9iE ^A<_'a11DV'a11DUFVl}0owvFriTloVaWlY'':.L++Y com.type-invaders.name.final uni1ED7 com.type-invaders.name.production ocircumflextilde b oeU<?͋Y]߾tdnooSH\j7lIpa^|\,#,?\Ko^9[`mco^qi^rNi~Z{J`pbWqkudxh^lAzȍ' ȘŌŋؑتҐަU1,.Ŭ .iRR":$ RT4rGy3fH/DsFv+Qg^O hV*a//ҽDE.zb9C A%.zdb9iC `AP!U$\ N{țq[;[M`SE racuteT????rDyH'%U9Iw\xHWvqD:nnvUU]DQ RLcc-.,>!DUE rcaronT????{VyH'%U9Iw\xHWvqD:nnvUU]DQ RLcc)ʋ-0s(+*p}YK rcommaaccentT??݋??yH'%U9Iw\xHWvqD:nnvUU]DQ RLccANX,͊}^zz7cu}\_fz_/oeWE sacute??o??Y545YiNr ?1e0sʡÆx]yKZzvP lk77:KiXɤl?ek/BxQiZ˼zv5Pvo&l.,>!D[E scaron??o??Y545YiNr ?1e0sʡÆx]yKZzvP lk77:KiXɤl?ek/BxQiZ˼zv5Pvo&lrʋ-0s(+*p}a scedillabkcswqqY`rtr~tn{wlТċbntmgovoxbjuvfouhkjxtXchpS]bKrfuYqstwgir`~bnΞ –މޙǐǨي,b P*ƯSytH}B4@,YbNr ?1e0sʡÆx]yKZzvP lk77:KiXɤl?ek/BxQiZ˼zv5Pvo'.nDh}QFųc#sxjaFw_J scircumflex??o??Y545YiNr ?1e0sʡÆx]yKZzvP lk77:KiXɤl?ek/BxQiZ˼zv5Pvo&l(+;3L-0]L scommaaccent?? ??Y545YiNr ?1e0sʡÆx]yKZzvP lk77:KiXɤl?ek/BxQiZ˼zv5Pvo&lwX,͊}^zz7cu}\_fz_/oe germandbls8hX_owq|2݋;Izpw|PcZG_\xlllxtUbfmOV`CtaSWrsqvo{tmȡ_dQHDx@,w<%.ًhciFnG ՛ڌګȐȊҫҌᑊ,,8hX@)@Fb$& \41ll zx>9*%DRaV͢k0Z" o`KiXɾvx1Mtp%,mEl germandbls.alt01qhY^ow~q}I~mYfQ[ i/'؋doqkgqsp^TO}Rs*~[WŃ>CWg'J<0[hipv  Ș,ȩqh'!NQ  ,āp]yKXvtM,mp@@>IAJ i[Q^la~$h'X]OAiYʽvy0Lqp#,l tbarr il5\92hZb9^2Y[r*5vxmtsvi Ǘz\ ?Q-s z[29WZ0C^˜}~7Zb9[^c5[w>JmigE tcaron????pD?Q-s z-WZ0C^˜}~7Z.[w>JmR/meL tcommaaccent?????Q-s z-WZ0C^˜}~7Z.[w>JmWX,͊}^zz7cu}\_fz_/oemU com.type-invaders.name.final uni021B com.type-invaders.name.production tcommaaccent H tcedilla?????Q-s z-WZ0C^˜}~7Z.[w>JmWX,͊}^zz7cu}\_fz_/oemcQ com.type-invaders.name.final uni0163 com.type-invaders.name.production tcedilla  thorn00ыf3R9>DMgH +>O9zZk_{twamcZeMlKsMtz~[M\a=ڌ ×l%\1kD3s)z&UmVVV7O 9RdcfE\Ry]DXX ?דopa |@AxMLE uacute׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f.,>!DCE ubreve׋????¬!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6fC#:#ofYۙm}Zqro$՚ACmJ ucircumflex׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f5(+;3L-0CH udieresis׋???? !f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f^ Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tCI udotbelow׋??|??ƪ!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f /Ķq`^u|4`wwaZ^uCR com.type-invaders.name.final uni1EE5 com.type-invaders.name.production udotbelow E ugrave׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6fkH7kCE uhook׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6fjHPxv{L ?CN com.type-invaders.name.final uni1EE7 com.type-invaders.name.production uhook L uhungarumlaut׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f].,@ DK|.,@ DCqF umacron׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f6!Cky uogonekbkcnsve`CYROig_b3V4}oͿ'ax}zhhlgvgxktxwXm׋bVwݢ Кʼnȉ,̫bPYTp{Yk8&.ʻ'Cqya/f'vM) ),ou @Vcc5Sz"6f]]v5Ws?VnǏ{ NfCsCsD uring׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f]`|ZRv`|y5nE>Ġuvef&R&)C`hZ&&ROC)`CoE utilde׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f TEUl|1ovuEqiSkoV~bVCi& uhorn!_b3V4}oͿ'܋u2rjjhq <xG7h_[nsiove`CYROi׋Vuޔq ×,!f]]v5Ws?Mn,@B#qy<oQ:o+f'vM) ),ou @Vcc5Sz"6fCtopbottomJ uhornacute׋鋋??Ë??!f]]v5Ws?Mn,@B#qy<oQ:o+f'vM) ),ou @Vcc5Sz"6f.,>!DCS com.type-invaders.name.final uni1EE9 com.type-invaders.name.production uhornacute N uhorndotbelow׋鋋????!f]]v5Ws?Mn,@B#qy<oQ:o+f'vM) ),ou @Vcc5Sz"6f/Ķq`^u|4`wwaZ^uCV com.type-invaders.name.final uni1EF1 com.type-invaders.name.production uhorndotbelow J uhorngrave׋鋋??Ë??!f]]v5Ws?Mn,@B#qy<oQ:o+f'vM) ),ou @Vcc5Sz"6fkH7kCS com.type-invaders.name.final uni1EEB com.type-invaders.name.production uhorngrave J uhornhook׋鋋????Ұ!f]]v5Ws?Mn,@B#qy<oQ:o+f'vM) ),ou @Vcc5Sz"6fjHPxv{L ?CR com.type-invaders.name.final uni1EED com.type-invaders.name.production uhornhook J uhorntilde׋鋋????!f]]v5Ws?Mn,@B#qy<oQ:o+f'vM) ),ou @Vcc5Sz"6fUEWm}?u~-y EqhTluci_CS com.type-invaders.name.final uni1EEF com.type-invaders.name.production uhorntilde F wacute`??(??p<׋cыm6^ɋN-Dj-ɋX^.,>!DK wcircumflex`??(??zN׋cыm6^ɋN-Dj-ɋX^|(+;3L-0uI wdieresis`??(??ر׋cыm6^ɋN-Dj-ɋX^$Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tF wgrave`??(??n<׋cыm6^ɋN-Dj-ɋX^kH7kE yacuteg????fhB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7p.,>!DJ ycircumflexg????xhB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7p(+;3L-0wH ydieresisg????hB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7pĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\tI ydotbelowg??̋??hB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7pĶq`^u|4`wwaZ^uR com.type-invaders.name.final uni1EF5 com.type-invaders.name.production ydotbelow E ygraveg????fhB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7p%kH7kE yhookg??ԋ??hB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7p/jHPxv{L ?N com.type-invaders.name.final uni1EF7 com.type-invaders.name.production yhook E ytildeg????ЭhB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7ppTEUl|1ovuEqiSkoV~bVO com.type-invaders.name.final uni1EF9 com.type-invaders.name.production ytilde E zacutec????rjHGkf{{cZ~X{uWHv{`G^fdL{IMz.,>!DzE zcaronc????jHGkf{{cZ~X{uWHv{`G^fdL{IMzʋ-0s(+*p}~I zdotaccentc????jHGkf{{cZ~X{uWHv{`G^fdL{IMzƹp]\u{1]ww^Y\u|F Aacute????c$WU@LL@^qXZ!.!XFlx.,>!DF Abreve????bWU@LL@^qXZ!.!XFl~C#:#ofYۙm}Zqro$՚AK Acircumflex????m6WU@LL@^qXZ!.!XFl~(+;3L-0I Adieresis????WU@LL@^qXZ!.!XFl7Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tI Adotbelow????fWU@LL@^qXZ!.!XFlNĶq`^u|4`wwaZ^uR com.type-invaders.name.final uni1EA0 com.type-invaders.name.production Adotbelow F Agrave????a$WU@LL@^qXZ!.!XFlxkH7kE Ahook??D??xLWU@LL@^qXZ!.!XFlljHPxv{L ?N com.type-invaders.name.final uni1EA2 com.type-invaders.name.production Ahook G Amacron????b$WU@LL@^qXZ!.!XFl AogonekqbkbK֋L%L֋^U!!^{ilnjxhzktxwXmulwby(ϋ ҚrqbPYUp|Yk))8ýXZ!.!X^U@LL@^KJaBsblE Aring????WU@LL@^qXZ!.!XFl]`|ZRv`|y5nE>Ġuvef&R&)C`hZ&&ROC)`J Aringacute????WU@LL@^qXZ!.!XFl\`|܁`Su`|z:nGDávudg W (:cgZ WN:(cQ*F Atilde????WU@LL@^qXZ!.!XFlTEUl|1ovuEqiSkoV~bVK Abreveacute??D??zWU@LL@^qXZ!.!XFlsB9ngWڙn}Ysqo~ КF (*D!AT com.type-invaders.name.final uni1EAE com.type-invaders.name.production Abreveacute c Abrevedotbelow??????WU@LL@^qXZ!.!XFl~C#:#ofYۙm}Zqro$՚A#8Ķq`^u|4`wwaZ^uW com.type-invaders.name.final uni1EB6 com.type-invaders.name.production Abrevedotbelow K Abrevegrave??D??zWU@LL@^qXZ!.!XFlsB9ngWڙn}Ysqo~ КFiE=nT com.type-invaders.name.final uni1EB0 com.type-invaders.name.production Abrevegrave J Abrevehook??D??WU@LL@^qXZ!.!XFlsB9ngWڙn}Ysqo~ КF kJQyv{N ?S com.type-invaders.name.final uni1EB2 com.type-invaders.name.production Abrevehook K Abrevetilde??D??WU@LL@^qXZ!.!XFl+UEVl~0ovvEqiSloVaW7LB9ngWڙn}Ysqo~ КFT com.type-invaders.name.final uni1EB4 com.type-invaders.name.production Abrevetilde P Acircumflexacute??D??~NWU@LL@^qXZ!.!XFll($;3L-/(*D!AY com.type-invaders.name.final uni1EA4 com.type-invaders.name.production Acircumflexacute h Acircumflexdotbelow??????WU@LL@^qXZ!.!XFl~(+;3L-01IĶq`^u|4`wwaZ^u\ com.type-invaders.name.final uni1EAC com.type-invaders.name.production Acircumflexdotbelow P Acircumflexgrave??D??{NWU@LL@^qXZ!.!XFll($;3L-/iE=nY com.type-invaders.name.final uni1EA6 com.type-invaders.name.production Acircumflexgrave O Acircumflexhook??D??vWU@LL@^qXZ!.!XFlkJQyv{N ?($;3L-/X com.type-invaders.name.final uni1EA8 com.type-invaders.name.production Acircumflexhook P Acircumflextilde??D??WU@LL@^qXZ!.!XFl2UFVl}0owvFriTloVaWlY'':.L++Y com.type-invaders.name.final uni1EAA com.type-invaders.name.production Acircumflextilde = AElcOBƋ`??IBWcUBC׋^JыLcL׋^UO y!XL ,lXU?Lc]LE^J?iBw<cUw<Bm׋?Ƌ^ԋOX-OtopNH AEacute ??ϋ??XU?Lc]LE^J?iBw<cUw<Bm׋?Ƌ^ԋOX-Ox.,>!DF Cacute?? ??h@@b3FRx,,]b<`4^j;{K׋c?{Lj[L{{eDe=.,>!DVF Ccaron?? ??z@@b3FRx,,]b<`4^j;{K׋c?{Lj[L{{eDe=ʋ-0s(+*p}V x Ccedilla\bkcswqq3$ Njŋ`k׋Xc?MX\?cPHb4]Z{I[iyE9Ћϋt|n[QL[>j^uYqstwgir`~b%NwΜ ŗωϙʊ,Щb P*ƯSytH}?6b3FRx,,]b<`4^j;{K׋c?{Lj[L{{SCS=Ah}QFųc#sxjaFwVK Ccircumflex?? ??z@@b3FRx,,]b<`4^j;{K׋c?{Lj[L{{eDe=@(+;3L-0VJ Cdotaccent?? ??@@b3FRx,,]b<`4^j;{K׋c?{Lj[L{{eDe=ƹp]\u{1]ww^Y\uV E Dcaron6????{@vd6d| |734^ы,E*,X,Qc6gr**wmcʋ-0s(+*p} Dcroatы7ދE g|+g$Q&5<Z@Hݮ@@&F\6ۺ!w ,|Fvd6d| |734^ыE8\ߋDE*,X,Qc6gr**w/ Eth6??|Fvd6d| |734^ыE8\ߋDE*,X,Qc6gr**wE Eacute????r<vJ?iBw<cUw<Bm׋?^ы,E=^.,>!DWE Ebreve????zvJ?iBw<cUw<Bm׋?^ы,EGdC#:#ofYۙm}Zqro$՚AWE Ecaron????{NvJ?iBw<cUw<Bm׋?^ы,E%gʋ-0s(+*p}WJ Ecircumflex????|NvJ?iBw<cUw<Bm׋?^ы,Ed(+;3L-0WH Edieresis????رvJ?iBw<cUw<Bm׋?^ы,E{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tWI Edotaccent????~vJ?iBw<cUw<Bm׋?^ы,EMyƹp]\u{1]ww^Y\uWI Edotbelow??~??~vJ?iBw<cUw<Bm׋?^ы,EihĶq`^u|4`wwaZ^uWR com.type-invaders.name.final uni1EB8 com.type-invaders.name.production Edotbelow E Egrave????p<vJ?iBw<cUw<Bm׋?^ы,EA^kH7kWE Ehook??+??dvJ?iBw<cUw<Bm׋?^ы,ESRjHPxv{L ?WN com.type-invaders.name.final uni1EBA com.type-invaders.name.production Ehook F Emacron????q<vJ?iBw<cUw<Bm׋?^ы,EWD Eogonekbkbeҋ,E`??IBWcUBC׋^JzglmjwhzktxwXmb!ϖ ,bPYTp|Yk)$8ƽk?iBw<cUw<Bm׋?^ы,D^eIaBsXE Etilde????vJ?iBw<cUw<Bm׋?^ы,EwTEUl|1ovuEqiSkoV~bVWO com.type-invaders.name.final uni1EBC com.type-invaders.name.production Etilde P Ecircumflexacute??+??fvJ?iBw<cUw<Bm׋?^ы,ER($;3L-/(*D!AWY com.type-invaders.name.final uni1EBE com.type-invaders.name.production Ecircumflexacute g Ecircumflexdotbelow????~??vJ?iBw<cUw<Bm׋?^ы,Ed(+;3L-0@IĶq`^u|4`wwaZ^uW\ com.type-invaders.name.final uni1EC6 com.type-invaders.name.production Ecircumflexdotbelow P Ecircumflexgrave??+??fvJ?iBw<cUw<Bm׋?^ы,ER($;3L-/iE=nWY com.type-invaders.name.final uni1EC0 com.type-invaders.name.production Ecircumflexgrave O Ecircumflexhook??+??vJ?iBw<cUw<Bm׋?^ы,EkJQyv{N ?($;3L-/WX com.type-invaders.name.final uni1EC2 com.type-invaders.name.production Ecircumflexhook P Ecircumflextilde??+??еvJ?iBw<cUw<Bm׋?^ы,EUFVl}0owvFriTloVaWlY'':.L++WY com.type-invaders.name.final uni1EC4 com.type-invaders.name.production Ecircumflextilde  SchwaS8To^?9A?hNgּ‹ bx%d!N'7=[Hׯi|izF=7ɍ Xoox/x-7MD+D#2|MS3[3I}RІmu+^x^rr))''^1``2&N com.type-invaders.name.final uni018F com.type-invaders.name.production Schwa F GbreveA????ܯU*$Ϳ0ċ^r(R*:=Tn--\a8 m4Vj:|N׋c?{L0#kQ`||eFe9C#:#ofYۙm}Zqro$՚AK GcircumflexA????U*$Ϳ0ċ^r(R*:=Tn--\a8 m4Vj:|N׋c?{L0#kQ`||eFe9P(+;3L-0L GcommaaccentA????U*$Ϳ0ċ^r(R*:=Tn--\a8 m4Vj:|N׋c?{L0#kQ`||eFe9X,͊}^zz7cu}\_fz_/oe"J GdotaccentA????U*$Ϳ0ċ^r(R*:=Tn--\a8 m4Vj:|N׋c?{L0#kQ`||eFe9ƹp]\u{1]ww^Y\u $ Hbarы]8ދE^Eq#ƋE^Eq#ދ\8]ы^ыƋCы^ƋƋm߼!vċ vEƋCE^E]ދ8ы^ыq#Ƌы^ыq#8\ދ]E]ƋmƋ&K Hcircumflexm??D??fvEƋCE^E,ы^ыGƋы^ы,Ed(+;3L-0$E Iacuteً??o??DvE,ы^ы,E^.,>!DEE Ibreveً??o??i2vE,ы^ы,EdC#:#ofYۙm}Zqro$՚AE,J Icircumflexً??o??OvE,ы^ы,EEd(+;3L-0EH Idieresisً??o??vE,ы^ы,Em{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tEI Idotaccentً??o??c6vE,ы^ы,Eyƹp]\u{1]ww^Y\uE0H Idotbelowً????b6vE,ы^ы,EhĶq`^u|4`wwaZ^uER com.type-invaders.name.final uni1ECA com.type-invaders.name.production Idotbelow E Igraveً??o??BvE,ы^ы,E^kH7kEE Ihookً????ZvE,ы^ы,ERjHPxv{L ?EN com.type-invaders.name.final uni1EC8 com.type-invaders.name.production Ihook F Imacronً??o??CvE,ы^ы,EEE* Iogonekf bkb]ҋ,E^E,ы^zglmjwhzktxwXmۋb!ϋ mB bPYTp|Yk)$8ƽE,ы^ы,D^]IaBsG.E Itildeً??o??z^vE,ы^ы,EwTEUl|1ovuEqiSkoV~bVE(A IJ??ً??tvE,ы^ы,ELRe9)9-ы^ eb(}bSuu)Esla2o IJacute??k??Ӌ??+??vE,ы^ы,E^.,>!DEe9)9-ы^ eb(}bSuu)Esla.,>!DE JacuteN????tDe9)9-ы^ eb(}bSuu)Esla.,>!DJ JcircumflexN????~Ve9)9-ы^ eb(}bSuu)Esla(+;3L-04L Kcommaaccent:????vE[F^O ȋi^ۋ{ 'Ћ^ы,ETX,͊}^zz7cu}\_fz_/oe6E Lacute??p??NvmJ?jy+ы^ы,E^.,>!D%9F Lcaron??y??MvmJ?jy+ы^ы,E;R/%=L Lcommaaccent??x??wVvmJ?jy+ы^ы,EX,͊}^zz7cu}\_fz_/oe%;D Ldot????lBvmJ?jy+ы^ы,Eƹp]\u{1]ww^Y\u%? Lslashы{3nE^EC+~U+XIy׋^Jm!vv љ,WvmJ?jy++Xы^ы:4n}UQ{E%AF Nacute_??H??l0vXEjӋ8!ыX^ыUD^ы,E^.,>!DCF Ncaron_??H??uBvXEjӋ8!ыX^ыUD^ы,Engʋ-0s(+*p}GL Ncommaaccent_??ɋ??vXEjӋ8!ыX^ыUD^ы,EhX,͊}^zz7cu}\_fz_/oeEF Ntilde_??H??vXEjӋ8!ыX^ыUD^ы,EwTEUl|1ovuEqiSkoV~bV Eng h[anws}qы^Yҋ,EDUEX^ECLdqMe_Vs_!h ˙,x h7=I=]ыX^ыUD^ы,D^YEq^' ܵnbSlYɽtx2Mto(1oJF OacuteA????D"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-.,>!DF ObreveA????"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-C#:#ofYۙm}Zqro$՚ANK OcircumflexA????V"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-S(+;3L-0I OdieresisA????"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tI OdotbelowA????"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-/Ķq`^u|4`wwaZ^uR com.type-invaders.name.final uni1ECC com.type-invaders.name.production Odotbelow F OgraveA????D"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-kH7kE OhookA??I??l"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-jHPxv{L ?N com.type-invaders.name.final uni1ECE com.type-invaders.name.production Ohook M OhungarumlautA????\"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-v.,@ DK|.,@ DPG OmacronA????D"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-SL0 Oslash}cЋnpl!DF OtildeA????"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-TEUl|1ovuEqiSkoV~bV2 Ohorn Ћ܋t/rimj]k'Ibx%d!N'6=[Rְ{iVe^@fPIa2~W\{IXcwkTctA&) ,foo<onT:o'9ćp1oox/x-/"**ba?\!*c*Kaʵ?\\;!topINbottomK OhornacuteA[????~oo<onT:o'9ćp1oox/x-/"**ba?\!*c*Kaʵ?\\;!c.,>!DS com.type-invaders.name.final uni1EDA com.type-invaders.name.production Ohornacute N OhorndotbelowA[????oo<onT:o'9ćp1oox/x-/"**ba?\!*c*Kaʵ?\\;! com.type-invaders.name.final uni1EE2 com.type-invaders.name.production Ohorndotbelow K OhorngraveA[????~oo<onT:o'9ćp1oox/x-/"**ba?\!*c*Kaʵ?\\;!ckH7kS com.type-invaders.name.final uni1EDC com.type-invaders.name.production Ohorngrave J OhornhookA[??I??oo<onT:o'9ćp1oox/x-/"**ba?\!*c*Kaʵ?\\;!WjHPxv{L ?R com.type-invaders.name.final uni1EDE com.type-invaders.name.production Ohornhook K OhorntildeA[????oo<onT:o'9ćp1oox/x-/"**ba?\!*c*Kaʵ?\\;!UEWm}?u~-y EqhTluci_S com.type-invaders.name.final uni1EE0 com.type-invaders.name.production Ohorntilde P OcircumflexacuteA??I??n"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-F($;3L-/(*D!AY com.type-invaders.name.final uni1ED0 com.type-invaders.name.production Ocircumflexacute h OcircumflexdotbelowA??????"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-S(+;3L-0OIĶq`^u|4`wwaZ^u\ com.type-invaders.name.final uni1ED8 com.type-invaders.name.production Ocircumflexdotbelow P OcircumflexgraveA??I??n"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-I($;3L-/iE=nY com.type-invaders.name.final uni1ED2 com.type-invaders.name.production Ocircumflexgrave O OcircumflexhookA??I??"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-`kJQyv{N ?($;3L-/X com.type-invaders.name.final uni1ED4 com.type-invaders.name.production Ocircumflexhook P OcircumflextildeA??I??ة"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-?QUFVl}0owvFriTloVaWlY'':.L++Y com.type-invaders.name.final uni1ED6 com.type-invaders.name.production Ocircumflextilde R OE Ћk`??IBWcUBC׋^J^uWҡ{D_^@fQIa2~W\{IXcwkTctQ&伌 כ,H{J?iBw<cUw<Bm׋?k.͇i2oow/w-.!**ba?[!aBxdXzRE Racute ????vEy/)wCƨPyCUVm0|0]O+^ы,E=q٥k{a X[[7.,>!DuTE Rcaron ????vEy/)wCƨPyCUVm0|0]O+^ы,E=q٥k{a X[["ʋ-0s(+*p}uXL Rcommaaccent ????֮vEy/)wCƨPyCUVm0|0]O+^ы,E=q٥k{a X[[SX,͊}^zz7cu}\_fz_/oeuVE Sacute??ҋ??ʬv5e&6l7S7Hu=dٲo:|N׋Y?|Q pZnn/޷\UjqLlLAHx߰7f݆u?Xa׋@nw.,>!D,ZE Scaron??ҋ??ܯv5e&6l7S7Hu=dٲo:|N׋Y?|Q pZnn/޷\UjqLlLAHx߰7f݆u?Xa׋@n_ʋ-0s(+*p},` ScedillaWbkcswqq[N{L?a׋~[{f\ȋϣ[]\FHek׋ZY?RRaNtcewZraYv{n>Q\g6JJ0bTuYqstwgir`~b&Nwv' ܜ߉ߙɕɛɛÉѻڊ,2Wb P*ƯSytH}&}5e&6l7S7Hu=dٲo:|N׋Y?|Q pZnn/޷\UjqLlLAHx߰7f݆u?Xa׋A pCh}QFųc#sxjaFw,^J Scircumflex??ҋ??ܯv5e&6l7S7Hu=dٲo:|N׋Y?|Q pZnn/޷\UjqLlLAHx߰7f݆u?Xa׋@n(+;3L-0,\L Scommaaccent??z?? v5e&6l7S7Hu=dٲo:|N׋Y?|Q pZnn/޷\UjqLlLAHx߰7f݆u?Xa׋@nnX,͊}^zz7cu}\_fz_/oe,M GermandblsGFowrhkoʋUNQs6<ы,EbvԋGEUf)G@+_@! ŗ,%99^G,v^ы,E^<6s~Zŋ,inf66WO/|q{qSWܿvw%>ni"_S com.type-invaders.name.final uni1E9E com.type-invaders.name.production Germandbls  Tbar$ ,l??`??,H\D^ߺ Ǘb$1,m׋?`?׋,H\D1jfF Tcaron?? ??`1*,m׋?`?׋,*1gʋ-0s(+*p}jdL Tcommaaccent????b1*,m׋?`?׋,*1X,͊}^zz7cu}\_fz_/oejU com.type-invaders.name.final uni021A com.type-invaders.name.production Tcommaaccent H Tcedilla????b1*,m׋?`?׋,*1X,͊}^zz7cu}\_fz_/oejbQ com.type-invaders.name.final uni0162 com.type-invaders.name.production Tcedilla  Thornrҋ,E^Eo"ӋHJnx7V>,T@*m ы^rhdb݋7!x zFvE *b<0e0]Oы^ы,DR??>??Z'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[.,>!DF Ubreve>??>??'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[C#:#ofYۙm}Zqro$՚AlK Ucircumflex>??>??l'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[[(+;3L-0I Udieresis>??>??'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tI Udotbelow>????'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[/Ķq`^u|4`wwaZ^uR com.type-invaders.name.final uni1EE4 com.type-invaders.name.production Udotbelow F Ugrave>??>??Z'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[kH7kE Uhook>??j??'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[jHPxv{L ?N com.type-invaders.name.final uni1EE6 com.type-invaders.name.production Uhook M Uhungarumlaut>??>??r'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[~.,@ DK|.,@ DpG Umacron>??>??Z'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[[j1 Uogonekbkct[?VoE^E%,oYvXVˋ&EX^E'(yBZ+jmxxdsdvdrxxpcvktxwXm>b!lϋ ͙‰ʼnbPYTp|Zkfa< $S+S3ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[@lMaCsrE Uring>??>??ڬ'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a[]`|ZRv`|y5nE>Ġuvef&R&)C`hZ&&ROC)`nF Utilde>??>??ī'ыX^ы'&keGOG#f;|DQы^ы,yЅda\a['TEUl|1ovuEqiSkoV~bVh Uhorn[?VoE^F%,oYvXVˋ&E!܋t/rimjf%0yDY'FM2oD)! ,\)nT:o!^ы'&keGOG#f;|DQЋ^ы,yЅda\a[topeNbottomK UhornacuteD??9??t)nT:o!^ы'&keGOG#f;|DQЋ^ы,yЅda\a[.,>!DS com.type-invaders.name.final uni1EE8 com.type-invaders.name.production Uhornacute N UhorndotbelowD????)nT:o!^ы'&keGOG#f;|DQЋ^ы,yЅda\a[/Ķq`^u|4`wwaZ^uV com.type-invaders.name.final uni1EF0 com.type-invaders.name.production Uhorndotbelow K UhorngraveD??9??t)nT:o!^ы'&keGOG#f;|DQЋ^ы,yЅda\a[kH7kS com.type-invaders.name.final uni1EEA com.type-invaders.name.production Uhorngrave J UhornhookD??e??)nT:o!^ы'&keGOG#f;|DQЋ^ы,yЅda\a[jHPxv{L ?R com.type-invaders.name.final uni1EEC com.type-invaders.name.production Uhornhook K UhorntildeD??2??ޮ)nT:o!^ы'&keGOG#f;|DQЋ^ы,yЅda\a[ UEWm}?u~-y EqhTluci_S com.type-invaders.name.final uni1EEE com.type-invaders.name.production Uhorntilde F Wacute‹????p<,!S^֋2֋r^<.,>!DK Wcircumflex‹????{N,!S^֋2֋r^(+;3L-0tI Wdieresis‹????ر,!S^֋2֋r^Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tF Wgrave‹????n<,!S^֋2֋r^@kH7kF Yacuteċ????h0;X^֋uB֋x^P;^.,>!DVK Ycircumflexċ????rB;X^֋uB֋x^P;^d(+;3L-0VvI Ydotbelowċ????r;X^֋uB֋x^P;hĶq`^u|4`wwaZ^uVR com.type-invaders.name.final uni1EF4 com.type-invaders.name.production Ydotbelow I Ydieresisċ????̯;X^֋uB֋x^P;{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tVxF Ygraveċ????f0;X^֋uB֋x^P;^kH7kVE Yhookċ??<??}X;X^֋uB֋x^P;RjHPxv{L ?VN com.type-invaders.name.final uni1EF6 com.type-invaders.name.production Yhook F Ytildeċ????;X^֋uB֋x^P;*wTEUl|1ovuEqiSkoV~bVVO com.type-invaders.name.final uni1EF8 com.type-invaders.name.production Ytilde E Zacuteًŋ????Qx{J?ig`?׋'Z.,>!DEyE Zcaronًŋ????Zx{J?ig`?׋cʋ-0s(+*p}E}I Zdotaccentًŋ????oBx{J?ig`?׋7uƹp]\u{1]ww^Y\uE{ mu*V3V"ty~̼(axG7ytmor{tjowe`C\RVimVW}Q0֋VwGvޙ] ,pt\WJUux]]v5Ws?Nn,?B %qya/f(vK!!-l΂j2VccBg DeltaǕ}Yտgٌq /ǕqZ+Q" product S/ы^< ^<]ы^|ы\]ы^|X\!H ,S H\|E]\E^|E]ڋ ^ڋ^E" summation: ha?WzKWbf\+G Q+\fbWil?hzG "$ Omegaҋt0 SG  ċdK:aFd E*(ANs~WҋiŴziUg]>fQOc>bx?nhyT;wk7& ʘŋŋōÉz~3/f/}Q{ka! _ Jjfe3:=7Dt0 v.vB!!w F- D&! pi$hl6 i/ i1Z1$0xG7h_Xnϋiv ,]=B"qy0Z i i6/\x>Im;2 uni0430??RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+X,08 uni0430.alt01??ڨ3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5: uni0431VU=< .]u[zyu~j]kj]ir}sr]/tAËً,=Ug E&$HNjcp]qf_oNi`~Sdq~hXw` ɌɋU)[//FWQYW=SM.I ySip3s}fy|;W}\X%JŐІb1e1CB5wti#CB&5wdit#nCYB1 uni0432`=5ٮ΋U\YJJIwT^djDQW=le´b[z]umHkXaZtcyg^lA}Snvz ,`jU-U)h\jK`;d[7z88U>.lX{4S:qܥt tdqZUwvB[KQjF _2 uni04335L?үgkhLek_mɋȋJUWK@Lk1^\siZllkԴwaL,NDr- Z5X ɳ'/ZrʧLo%:L-3` P[TUa{/3sRrĤw9to)A; lXUZ3top uni0434V;= ċc_]ceKchXmrT1IHwfW#kkee:kbjeo^rg^rOib}RcpdWd`/ V6"EŸST]434NLSlv#0tje}P|\#qh(G22ҿDD0wyf&? C&0wdfy&g? ^C42 uni0435Z??@CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`5 uni0436_]qttw{tb_qVjKCnPw֋|Q|Ջ˰dlumgpvozkul\n@}S{L~+bgo|jFJN`]SAN2A}R`,THHfvwvم| ݝً䰙ǐًҌՉ,>n-NՋ ߆^D%d^7/*æspC˙K}n&$5Vx`zJZyvQ1nlA$!|2Q|@:)BccYbd!TpL|ʚzn%M(a\XjZ̼xw5Qvn(1mQ6topB uni0437)fSfymwqgkvͱ.VͻEgKdl^mʋϋP]XE?MzVagkHRX:mDr" ,)nL2L,[\hP$YA_^Tdx*1r PrƤw<%ZgZFkЫu"z]v#xs~nQY߽tz(?ln()(X7top2 uni0438׋??l!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6fC8F uni0439׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6fKƬ &Zn3~x]\Ժx{*Fql $iC9I uni043AqkjVKO/V3ROfnnfantnzi\qY|osfxtxf\uUJg__mċVvP \ ͙,CAp2.{uGqzcP- Laaz`zHWvpDApnPhm7fˠlvHRccVˋVRS{0:top  uni043Be_ow}sGaxG7h_Xntikmv7knEpc{{wwa{֋miȍp ,Ug+8-\y=Io.p Ƙ,ܬYjD1g8\y=Io.2 uni043F׋??l>B!qyÈi5fq]]Q'K)ZNccV'vN) )o\4\y=ImC?2 uni0440??l7\1kD3s)z&UmVVV7O SNcc+E\Ry]DXX ?דopa |@AxML @2 uni0441H??NBuRR%7$UU5viq5dzdxCGuh;Xup9(`Z;}µTA2 uni0442??ޮ,=B!qyÇg5fq\\Q(J)nc\kVccp'=u )dj)\O\y=HoGtop֊l uni0448,!^c3V4}o̾(%(}o;(axG7h_[nsiove_CYRQihafve_BYSPiVwЎޜ əËçʚ,ޮ!f]]|MZ{%ImH3sV )aMuɡu ‰t(ݦ`pKtop8 uni044CkC9h3VI΋RR^l7QJ:c_KbKT_uh}3{Vۍ –^kp~4~}eVPVeyblVccRhx̅e.:.YD3sV&b Mtɢv ‰t (_pL uni044D̿"hVhylwrgkv:8hheG[eRmϋ;>d}4o6_<OP>gTr f";zT\ Tdj $.n =s٣o/̇k?jZ:t5UWf%ztnRY߽sz(?lm!&!ZM) uni044EF?@$O/V3SOܴ׋(6RhF"'FNpeparj^sNhZ{J`pcWzzvVۍ ,pF+a**CZ 5 SccVEs+a+ҽDJ/|c9<C/|dc9i<bCN+ uni044Fnjx5MC¼ߩŋZxG7h_XnthlX?tefs~yet[S`gnq`\qzȍ ,WM ql\x>Im/=B"qyZ=KBBE4a¿^{*@rv),~nj@JPva%1jg &l"ZO2 uni0410??R WU@LL@^qXZ!.!XFl uni0411Zҋ,EW`??bLًBGlw3U:-RBыǼb^ @ڋ!M ֚,t:vы^C6s6XQ|bm׋?W^ы,D> 9qݥh|ȃj'/ [\F2 uni0412??tvwt0tJ_I;ZJ@1{1]T.^ы,E$4nh|Ńk-'U[k*@s֣j| ‚l! V\Uj uni0413ߙы+E^`??i*^!v d ,<ߙv1*im׋?^^ы+EtopN uni04140gӋGBl^E+Ve:4ic4:we*=|O_C=06!3 ,m(34܋4ic4܋e$+ыl^ԋ{K`1LN %)8P=*2 uni0415??a$vJ?iBw<cUw<Bm׋?^ы,EW uni0416dȋivMps|rojgnqmE7DۋE^EGًp^inifnrlxuvri|qkrnȋ^ >Dы^ы=&A߼!  ) ֋݋΋݋ڪ֋ڦڊ‘ҊȮҊ͋׋ӊ0Y&ًCE^E؋N5\Ʈw~qZrs[xDSvsI3 ii__sI=ы^ыG;xD .`e@2k\)SutKؗsp n5Vv~Ntop؊N uni0417DpT@\vmwohlszsދYT+SYmVz_lm`r}S?f׋|MٵNjvdSiB/"=uzKW_d7@JcՋ޽(Nw1nl ‹´ʨ,ʨp}!}KeC>\H?EEPAAXlf`?Wf׋7'ZϼM+cg z,*O]4Y4klu^6CJW|bgxpQUsz">joZIZ׿?AtopN uni0418Tы,E^EBUQtWqYL8Rz_eBIv2Ջ!KNjȠ Ǝȉ,Ʋ^rņ'K'2,1 uni042DrS?\vmwngmtzsް)J/J~X}S?f׋|Mڵŋ YwbM(6@^޽(Nw ,r~ ~ eFe:<AXle`?Wf׋>-[λl)_)YyzgPY\o@"bgxoQUsz">jo\I\׿?l-s uni042E $Cы^ҋ,E^EG ֋by$f!P'8=!\SѰ}lZh`EfTIc2~W\{IYbvkTcu@߼&! Қ,o$ok1k-={* A01ы^ы,D^E+Ɉjkk-())ha=O!)h)La˵=^OB!. uni042FdNjPw:@ҋ׋^E,ы^֋F%UEI}Ucfh\ռ fY%ЋF@^E,ы׋Z/0i0[=Ww~kOv5ݤ9rX%( [at/F uni04D3????>RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\t,F uni04D1????RV!Vv<Wv?Ln*AB"qy a[_@oh){&Udד?ap AxL]u:]DX+XKƬ &Zn3~x]\Ժx{*Fql $i,L uni04D3.alt01????&3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tL uni04D1.alt01???? N3-·}By@Mr&AB!qyЈ\#&#^P8MYysHvܠt͛^8lުquC}SzM>8`'_Z™T}҅t_ITĴm%9C5KƬ &Zn3~x]\Ժx{*Fql $i3 uni04D5Ps?? 0FԷ  ֜@RR#9$SU4vGz3eN/DsHh;Skc[kb8MYysHvܠt͛^8lުquC{MrL?9`'_Z™T}҅t_ITĴm%9C5^U'\N}șqV;VR`G uni0453D????r5X ɳ'/ZrʧLo%:L-3` P[TUa{/3sRrĤw9to)A; lXUZo.,>!DS uni0491Ǖ-mJŋ)ՋYZr i/hvmiv ,-Ǖ irZAe)ŋ^̋ uni0493A֋NJe-I1]J\O/qvmi_ ,HJ1q#͋-^̋\N@\Ջ  uni04950ߋ0vr[=C|Lu4/ mJe-I1HԷW[p]c(^bJYbRxmC\vrmi ŗ,j\ӋR>>ټԇa, fid/[nWO1q#͋-^̋ m! WĿa~~4}[P@ocwF uni0450Z????XCvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`kH7kPF uni0451Z????CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`SĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\tQF uni04D7Z????CvRR$9$SU4vGz3gM/DsH;{³TU'\N}șqV;VR`KƬ &Zn3~x]\Ժx{*Fql $i uni0454̿FFF֯zogxhcbqsqhws`ye`jD~V{9Z8jTkecлwte\WZiT|S| fFa Ʋ + an٣=s>}>B9+M_zdyRQns7Ysl?&Zb:zUTH uni04DD??W??^n-NՋ ߆^D%d^7/*æspC˙K}n&$5Vx`zJZyvQ1nlA$!|2Q|@:)BccYbd!TpL|ʚzn%M(a\XjZ̼xw5Qvn(1m$ Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tQH uni04C2??W??En-NՋ ߆^D%d^7/*æspC˙K}n&$5Vx`zJZyvQ1nlA$!|2Q|@:)BccYbd!TpL|ʚzn%M(a\XjZ̼xw5Qvn(1mnKƬ &Zn3~x]\Ժx{*Fql $iQb uni04974_]qttw{tb_qVjKCnPw֋|Q|Ջ˰dlumgpvozkul\n@}S{L~+bgo|~qz\k|QhAxxuuNqe~bYb_TAN2A}R`,THHfwvNvم| ǐҌҋՉ≊㐊銊򊊋,3n-NՋ ߆^D(d SY'4Lƥ{qTpwE[H_JpM{/*æspC˙K}n&$5Vx`zJZyvQ1nlA$!|2Q|@:)BccYbd!TpL|ʚzn%M(a\XjZ̼xw5Qvn(1mQG uni04DFD??t?? `)nL2L,[\hP$YA_^Tdx*1r PrƤw<%ZgZFkЫu"z]v#xs~nQY߽tz(?ln()(X2 Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\t@ uni0499MOmwqgkvͱ.VͻEgKdl^mʋϋP]XE?MzVaksQ^[Lheg"ADr –Ċƛ,*Ջ">HG5,O\hP$YA_^Tdx*1r PrƤw<%ZgZFkЫu"z]v#xs~nQY߽tz(?ln(³]Y uni04CFYSL0DSʋ^1S %1LDS0^ʋ F uni04E5׋???? !f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f^ Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tCF uni045D׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6fkH7kC]F uni04E3׋????!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f6!CG uni045Cċ????CAp2.{uGqzcP- Laaz`zHWvpDApnPhm7fˠlvHRccVˋVRS{.,>!D0\ uni049Bb(V3ROfnnfantnzi\qY|otfwtxf\utosTb|SpKxwvtKqeljguzrkjVKO/ċVvNP  ׋ϋՎ׋ՓՓՏϵՏÉĐ̊,ˋVRT{ MT(2MǣzsVpxCZ?gZ`F2.{uGpzcP- Laaz`zHWvpDApnPhm7fˠlvHRcc0l uni049D(V3ROq#fnnfanso|{yrvg}q}pufwtw~f\uTJyuootzvqkjVto]gO/vVy  ʋȎʋȓȏȊĊʋ,įoVRR{DAp2.{uGqzcS,Icdz`zHWvpD@pmOfk.dȦmp]q#gRccYO uni04A1iq#I-Rxfnnfansozi[pY|otfxuxf\uTIyuootzvqkjVKO/vi  ͙NjŏNjŃőŊ,ˋVRS{DBp2.{uGqzcQ. Ma`z`zHWvpDApmOhm7fˠlvHxe-͋ uni0459De_ow}sGދR{ɋRR^l7RJ;cZH:{ mv7knEpc{{wwa{5lpeKS`uh}3imp Ԛˍ,Ug+8 Q{xɄh(:(Y~4~ } eVIVeyal{ދ^ϋiqWKX|gYͽvw-Frk9lH3sV )aMuɡu ‰t(ݦ`pY0 uni04A3NmiZpyik#IO/V3TOHxaxpisQf{Of?yyutNrʋvwVN Қ,N E[L\e[<ya/QxHTccVIg#\x>Im"BN"3MǣzsUpw6O uni045A(V3SO5xR{ɋRR^k7RJ;cZF=6O/WlpeKS`uh}3Vvw ܜ,6xƅi'8'W~3~ } eVIVexbm{/Qx5Scc7H3sV )aMuɡu ‰t(ݦ`pZ uni04A5‹AO/V3SOAx‹e.I$ igviVیM ,O i$q"͋.‹RxASccVAPF uni04E7????[C.xb9E A'.xdb9iE ^A<_'a11DV'a11D2 Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\t uni0473W=<ً͋)6QfE!#Fo^qg^rNiw{ak,Za~Y[zbWz  ZW'a11DV'a11Dp.xdx7spLr&G AfZC.x=v/ra}'I ^As3 uni04E9??ZW'a11DV'a11Dp.xdx7spLr&G AfZC.x=v/ra}'I ^A uni04AB"WZկƋR^he\hqrt_tbzf_j@}Qf{2jb^|b86/Rh"AH| Z*Ջ"KN ?7$UU5viq5dzdxCGuh;Xup9(`Z;}&̫UF uni04EFg????fhB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7pF uni04F1g????hB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7pĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\tF uni04F3g????~hB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7p.,@ DK|.,@ DF uni045Eg????¬hB""ǯ6^ɋatNjZ^-cbX}gYͽwy+Gqk&7pKƬ &Zn3~x]\Ժx{*Fql $i^ uni04AF0ы0om`Z^NgO6^cnd/ы_|e\m ×X\|E/n6^Njg|ȋZ^md0E uni04B1<om`Z^NgO6^cm^%oы_|ы$e\^m ϙi<^oE_|E&m6^Njg|ȋZ^m$ uni04B3}z|sqkr|RmHzzutLrenkeuwqno0inHypqcKcicaow}q Xd{21snt0˳fnngantoh< f*dۋ^Nl ȌӌȊӣ̊厊揊,H~'21{Xd+v%)x[xHXvqD9pnE;_p-Ix\s^o0Pvx @q{$wd+vT3VeXξvw+Dqj#9pE<;Ih/0WUvNU(3MȣzsTpxC[?d [fQGG uni04F5???? AB"qya/p!/:K>c\kVccp'=u )dj)\O\y=HoR Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tL uni04B7 xpisQf{Og@xxutNrenk[nyijOfOAXd[Y3VYKrrcEVwN ϙŌ,/p!/:K>c\lVccp'=u )dj)\O\x>Hn DN"3MǣzsUpwE[L]d[<y1 uni04B9\EXW3VYKrrep!axG7h_ZntijOte[Zts,]VwEЍ ٛ,HK8\O\y=Ho,?B#qya/p! 4^Hn]oce]lVccp'=u $dۋ(H uni04F9d?? ??lgk~6~ } eWHVeyblVccRhx̅e*:*Y4=B"qya/"8\x>ImH3sV )aMuɡu ‰t(ݦ`pĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\t2 uni0455??Y545YiNr ?1e0sʡÆx]yKZzvP lk77:KiXɤl?ek/BxQiZ˼zv5Pvo&lUM uni045F!_b3V4}oͿ'axG7h_[nsiove`CYROi=?sUvTzz||a}r׋Vwiޖ Ęƌƶ,ح!f]]v5Ws?Mn,@B#qya/f'vM) ),ou @Vcc5Sz"6f?oxZn&p$wwof~JZdC_2 uni0456Nj??vT =B"qy mScc3\x>Im:̼kZ~Wty(ZswZXWt3VG uni0457Nj??%?? =B"qy mScc3\x>Im Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\t3W2 uni0458??lKhI<0<>9Scc1ҹv_UiYʽvx2Luo(.n̼kZ~Wty(ZswZXWtX  uni0452QhZ_ovq}mpqJWK5S|Nf'/.FЋr+:\:@ƭYeqmCw>-1wv`h( ȘQhK;/;"Èg5fq]]Q'K)::*wx?F\Ћ.'vM) )oav/Ӹs_WiZʼvx2Muo(.oR3 uni045BNj?? =B!qyÈi5fq]]Q'K)::*wx?F\Ћ.'vN) )o\4\y=Jl3[2 uni04BBɋ??l =B!qyÈi5fq]]Q'K)@Rdc>='vN) )o\4\y=Jl53 uni04D9Z??|@";{TcRRNNj$9$U4vkzG]g/M;DsշSșN}V;VPĶEa\G uni04D2????WU@LL@^qXZ!.!XFl7Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tG uni04D0????WU@LL@^qXZ!.!XFl~KƬ &Zn3~x]\Ժx{*Fql $i3 uni04D4 ??lXU?Lc]LE^J?iBw<cUw<Bm׋?Ƌ^ԋOX-OG uni0403??ދ??Nv1*im׋?^^ы+E%^.,>!D uni0490ߙы,E4ًWe+^!v3 ,<ߙv1+e=c4^ы,E uni0492ы8ދE^`??iHa\aD^ߺ!v  љ,Wv1aaim׋?^^ыG8\ދDE# uni0494ы+E^`??iD̘GFvW\l \aIVaNxl>UPgN}qHы^8!a ϙ,vE251hky=m]M?phu^؋[B B QK9K]Lr`]{im׋?^^ы+EeF uni0400????p<vJ?iBw<cUw<Bm׋?^ы,EA^kH7kWF uni0401????رvJ?iBw<cUw<Bm׋?^ы,E{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tWF uni04D6????vJ?iBw<cUw<Bm׋?^ы,E=dKƬ &Zn3~x]\Ժx{*Fql $iW7 uni0404 Njˋ`k׋Wf?JR]@dPGa1~XkYh~Hn7FˢwkmntrVU^5n޽(Nw/ ,v*K*M vq*Qrq4Wycaz77Pv.]1]g;{K׋f?|L'jYS{{D3dH uni04DCA‹????RY&ًCE^E؋N5\Ʈw~qZrs[xDSvsI3 ii__sI=ы^ыG;xD .`e@2k\)SutKؗsp n5Vv~N{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tH uni04C1A‹????9Y&ًCE^E؋N5\Ʈw~qZrs[xDSvsI3 ii__sI=ы^ыG;xD .`e@2k\)SutKؗsp n5Vv~NdKƬ &Zn3~x]\Ժx{*Fql $i uni0496< >Dы^ы=&ȋivMps|rojgnqmE7DۋE^EGًp^inifnrlxuvri|qkrnWe9P!߼6   ōˉґ؏ܕߜ,<4݋e36\Ʈw~qZrs[xDSvsI3 ii__sI=ы^ыG;xD .`e@2k\)SutKؗsp n5Vv~N^&ًCE^E؋ڋG uni04DEՋË????#~p}!}KeC>\H?EEPAAXlf`?Wf׋7'ZϼM+cg z,*O]4Y4klu^6CJW|bgxpQUsz">joZIZ׿?Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tA uni0498VU\JbymwohlszsދYT+SYmVz_lm`r}S?f׋|MٵNjvdSiB/"=uzKWcl?OM3_Re,9Ջ޽(Nw1n ʘ‹´ʩӊ՜,֪04݋,y6eKeC>\H?EEPAAXlf`?Wf׋7'ZϼM+cg z,*O]4Y4klu^6CJW|bgxpQUsz">jo?H?ڹEA2 uni04C0ً??3ӗvE,ы^ы,EEH uni04E4pċ??C??vE=UUQBE^E,ы^ыj!D 2 uni049Aƾ<=Cы^ы,E^FFۋ*r^inifnrlxvvpiyq&komWe91߼!6  Қ,t4݋e2%Wʰt}r]ss[xDSvsI2 iicatc;Ћ^ы,E^EًڋT uni049C~ы,E^FF2c2 q^injfnrlyvvqizpjrkʋ^ sd1Y1fCы^6߼!6  ËËËË,sEd11 L.Yʮw~r\ss[xDSvtI4 ii`btVr2Yc2eЋ^ы,E@ uni04A0ƾы+l?? ^FFۋ*r^inifnrlxvvpiyq&komȋ^=Cы^߼!6`  Қ,EًN#Wʰt}r]ss[xDSvsI2 iicatc;Ћ `?׋+E  uni0409&\Tnt}{lw8Bc^EN ً@EvUvPhRU_@oYŋы+4kiZ@afLuuwwXxb\!=!e  ʘ̥̩͕̃,ʬMdgLm4+E^ŋ`I5w5WRqыc^ԋj:hf0*HzcaTuv'Fqn%gz4qiy)Ёe(2 Z^~  uni04A2HыRыƋCы^ы,E^EGƋE^E+We9|߼!vĔ ,uH4݋e#+ы^ыGƋы^ы,E^EƋCE^R^ uni040Aы,E^EGE^EN ً@EvUvPiRU_@oYƋыCы^1b\!=@߼! ,vECE^ƋaI4w4WRqы^ыGы^ы,E4qiy)Ёe(2 Z^  uni04A4Hы,E^EGET`??_+^ыCы^߼!vy ,uHvECE^1+_m׋?T^ыGы^ы,EG uni04E6A????"**ba?\!*c*Kaʵ?\\;!Woox/x-7oox/x-{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\t uni0472̿ Ћ bx%d!N'6=[9{iVe^?fQI`2W ְYLmkTctA&ẍ Loox/x-7oox/x->~]!*c*KxjiQ"**byu$Z{\;!r3 uni04E8A/??Loox/x-7oox/x->~]!*c*KxjiQ"**byu$Z{\;! uni04AAr?2Njŋ`k׋Xc?MX\?cPHb4]Z{I[iyE9Ћϋt|o^TQ\Cjae+9%Nwƌ ,\L4݋+|= .b3FRx,,]b<`4^j;{K׋c?{Lj[L{{9A9>VH uni04EEϋ????!?&Q^֋+5l!N֋t^|uh)ӞnxI`Suu(Ern!ggH uni04F0ϋ????"!?&Q^֋+5l!N֋t^|uh)ӞnxI`Suu(Ern!gĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\tgH uni04F2ϋ????!?&Q^֋+5l!N֋t^|uh)ӞnxI`Suu(Ern!g.,@ DK|.,@ DgH uni040Eϋ????!?&Q^֋+5l!N֋t^|uh)ӞnxI`Suu(Ern!gKƬ &Zn3~x]\Ժx{*Fql $ig2 uni04AEċ??W;X^֋uB֋x^P;V uni04B0< ۋW#"+Xx^@u@X^X$\#ZWۋ^! ϙm<;W#$X^֋uB֋x^"\#[W;V uni04B2T}D̋7j̋^VƋPu^JcJX^PWe9!S ܜ,TT4݋e0ƋX^̋c8̋u^ƋP^VJjJ^D|H uni04F46Ӌ????ȋE+ы^ы<t_93g9x8\ы~^ыix rK9K\/rO1{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\t uni04B6eErD0/E~^Eh#`]y__Ƌ͗E^E*We9E!! ϙ,rp4݋e%*ы^ы<t_93g9x8\ы~^ыix rK9K\/rO1^e  uni04B8ܸoQng%Y#86E~^Eh$a\z>=`>ώE^E+ы^?!! ޜыE+ы^ы< tc<Yb=3;o0x8\ы~^ыixs<9<](%?xO1H uni04F8׋????*vË_D7|7WQpы^ы,E^E,ы^ы,E4qiy)Ёe(2 Z^wĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\tZ2 uni0405??v5e&6l7S7Hu=dٲo:|N׋Y?|Q pZnn/޷\UjqLlLAHx߰7f݆u?Xa׋@n, uni040F$ы,E^E+*E^D+Ћ^c49[!v ŗ,b$f4݋4F+ҋ^ы*+ы^ы,E^2 uni0406ً??3ӗvE,ы^ы,EEF uni0407ً??o??vE,ы^ы,Em{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tE2 uni0408N??c,e9)9-ы^ eb(}bSuu)Esla$ uni0402ƾы*,l??`??,L̙FGvpitd2\aITaMxl?;UPgM~p@ы^8 ٛE252hly7܇qTr>ogu^׋^B BUK:K\Lq`\{,m׋?`?׋,*E uni040Bы*,l??`??,LЙLvpitlы^~ыUOeI~o@ы^Nj ޜ~E,92hlz7܇q^NE^~EUL:L\Lq]Z{,m׋?`?׋,*E3  uni04BAr!@NУӋKv[[jы^~ы TPeI~n=ы^ы+E6!w ԚfN^ы+E^E,92gmx9ޅq\YE^~E VK8K]Ms\Y{֋3 uni04D87.??Xoox/x-7MD+D#2|MS3[3I}RІmu+^x^rr))''^1``2& zerosuperiorx^^hdN}UzeglVc!Ǫ}X|PqNaYOlس,΋ f,^^V{;o"5E`V{yo;{P'5Ѷt`VcQoe!?dfoe?!d]p U com.type-invaders.name.final uni2070 com.type-invaders.name.production zerosuperior k onesuperior͖"a%8݋eޱ /͖9V%LjF.R twosuperiorrt}rxvqowzy_emrZfb`kx B1s*޾2Ջ z\_]1 8A!5li]3Mc8h}ϼwZx~gazzO5jkAYk threesuperior>A]Vy{zwv}Umrw}q|zrpwyzgfsxfnqg|zeqrv]cgNvح2ԣ ɥ֦A6TMhsfT)­"seZ7Nc;h|зy_y|fey~U{7HթpmFfax|P{.=ۥgq2z{fgï~|HWuv%(mW foursuperiorx&8jڋM[[yCH/ Q&vŋ ?f΋[<j[8\QXt U com.type-invaders.name.final uni2074 com.type-invaders.name.production foursuperior  fivesuperiorJV\w|zuxrwwnx~^__~V@c9fpQ\bOvح؋ rJ;1<13Hnm)Yksur@_K_ƫ]|]y~I|,1ܬij.|yhgů|CTvu&'hRu U com.type-invaders.name.final uni2075 com.type-invaders.name.production fivesuperior  sixsuperiorQUYҖkFz3;sKc^isR_aPsosxmh^ltqvزTw؋ yTQ71G1 com.type-invaders.name.final uni2076 com.type-invaders.name.production sixsuperior e sevensuperior6|K_~WcDv +ҋcl6Nw V com.type-invaders.name.final uni2077 com.type-invaders.name.production sevensuperior q eightsuperior8WRTpoeetzhpqizyenvw`dhOtlusljfnxzrCuupmjpz{wز-ԨX ȑʤW2VJgub[,#qbbXVTqQj.h޲]a}ÆuMpa}wS}AAɦvpC_g|wTsg||WIG£xs_x V com.type-invaders.name.final uni2078 com.type-invaders.name.production eightsuperior  ninesuperiorМ~t_igj]ƣSZgn4L;(NDGsxmh^ltqvb-v Ћ wNB)#^cj~11GHC com.type-invaders.name.final uni2079 com.type-invaders.name.production ninesuperior  zeroinferiorx ^hdN}UzeglVc!Ǫ}X|PqNaYOlⳍ΋ e, ^V{;o"5E`V{yo;{P'5Ѷt`VcQoe!?dfoe?!d] U com.type-invaders.name.final uni2080 com.type-invaders.name.production zeroinferior i oneinferior͖"a%8݋e .͖9V%LjF.R T com.type-invaders.name.final uni2081 com.type-invaders.name.production oneinferior  twoinferiorrt}rxvqowzy_emrZfb`kx B1s*譍mՋ y\x_]1 8A!5li]3Mc8h}ϼwZx~gazzO5jkAY T com.type-invaders.name.final uni2082 com.type-invaders.name.production twoinferior t threeinferior>]Vy{zwv}Umrw}q|zrpwyzgfsxfnqg|zeqrv]cgNvA譏n؅JԨ ɥ֦6TMhsfT)­"seZ7Nc;h|зy_y|fey~U{7HթpmFfax|P{.=ۥgq2z{fgï~|HWuv%(mW V com.type-invaders.name.final uni2083 com.type-invaders.name.production threeinferior  fourinferior(8jڋM[[yCH/ QӻƠv{ŋ >΋[<j[8\QX U com.type-invaders.name.final uni2084 com.type-invaders.name.production fourinferior  fiveinferiorV\w|zuxrwwnx~^__~V@c9fpQ\bOvQS؋ r;1<13Hnm)Yksur@_K_ƫ]|]y~I|,1ܬij.|yhgů|CTvu&'hR U com.type-invaders.name.final uni2085 com.type-invaders.name.production fiveinferior  sixinferiorUYҖkFz3;sKc^isR_aPsosxmh^ltqvW wX؋ xT71G1 com.type-invaders.name.final uni2086 com.type-invaders.name.production sixinferior c seveninferior6|K_~WcDŠv )ҋcl6N V com.type-invaders.name.final uni2087 com.type-invaders.name.production seveninferior n eightinferior8RTpoeetzhpqizyenvw`dhOtlusljfnxzrCuupmjpz{wC㲏[ШX Ȑʤ2VJgub[,#qbbXVTqQj.h޲]a}ÆuMpa}wS}AAɦvpC_g|wTsg||WIG£xs_ V com.type-invaders.name.final uni2088 com.type-invaders.name.production eightinferior  nineinferiorМ~t_igj]ƣSZgn4L;(NDGsxmh^ltqv㲚vЋ uNB)#^cj~11GHC com.type-invaders.name.final uni2089 com.type-invaders.name.production nineinferior \ onehalfߋG????Rh??X_]1 8A!5li]3Mc8h}ϼwZx~gazzO5jkA 9V%LjF.ɋNMC\ uni2153ًG????Sj??0Ʌ6TMhsfT)­"seZ7Nc;h|зy_y|fey~U{7HթpmFfax|P{.=ۥgq2z{fgï~|HWuv%(mG9V%LjF.ɋNM>S!\ uni2154ދH????So??2Ѕ6TMhsfT)­"seZ7Nc;h|зy_y|fey~U{7HթpmFfax|P{.=ۥgq2z{fgï~|HWuv%(mW_]1 8A!5li]3Mc8h}ϼwZx~gazzO5jkAɋNMET!_ onequarterG????TH??uH9V%LjF.ɋNM2N΋[<j[8\Q?b threequartersI????T%??H@6TMhsfT)­"seZ7Nc;h|зy_y|fey~U{7HթpmFfax|P{.=ۥgq2z{fgï~|HWuv%(m`ɋNM2N΋[<j[8\Q\ uni2155ƋG????Uc??̯˅;1<13Hnm)Yksur@_K_ƫ]|]y~I|,1ܬij.|yhgů|CTvu&'h?9V%LjF.ɋNM+U!\ uni2156ˋH????Uh??Rх;1<13Hnm)Yksur@_K_ƫ]|]y~I|,1ܬij.|yhgů|CTvu&'hN_]1 8A!5li]3Mc8h}ϼwZx~gazzO5jkAɋNM2V!\ uni2157I????U@??;̿;1<13Hnm)Yksur@_K_ƫ]|]y~I|,1ܬij.|yhgů|CTvu&'h6TMhsfT)­"seZ7Nc;h|зy_y|fey~U{7HթpmFfax|P{.=ۥgq2z{fgï~|HWuv%(m`ɋNM W!\ uni2158J????UC??b΋[<j[8\Q4\;1<13Hnm)Yksur@_K_ƫ]|]y~I|,1ܬij.|yhgů|CTvu&'hɋNMX!\ uni2159G????VD??9V%LjF.ɋNMIT71G1NjɋNM ;1<13Hnm)Yksur@_K_ƫ]|]y~I|,1ܬij.|yhgů|CTvu&'h>2VJgub[,#qbbXVTqQj.h޲]a}ÆuMpa}wS}AAɦvpC_g|wTsg||WIG£xs]!\ uni215EM??ɋ??X??ɋNM&T2VJgub[,#qbbXVTqQj.h޲]a}ÆuMpa}wS}AAɦvpC_g|wTsg||WIG£xswҋcl6^!\ uni2151ыG????Yd??B)#^cj~11GHC com.type-invaders.name.final uni2713 com.type-invaders.name.production checkmark  crossmark n /F/F L E/E/  /F/F M E/E/ $8: g  E/E/ L /F/F LM E/E/ M /F/F L'R com.type-invaders.name.final uni274C com.type-invaders.name.production crossmark _ arrowleft͖ggr:};}:lrیZ 6͖:w}}w:lgg\!R com.type-invaders.name.final uni2190 com.type-invaders.name.production arrowleft _ arrowup͖}:rggggrl:};Zwvۋ 6͖ۋ}w:ggggl:w\!P com.type-invaders.name.final uni2191 com.type-invaders.name.production arrowup ` arrowdown͖o[:w}ۋ}w:lggNwvۋ 5͖Bggr:};}:rl\!R com.type-invaders.name.final uni2193 com.type-invaders.name.production arrowdown c arrowright͖7:w}}w:ggggیZ 8͖gggglr:};}:\!S com.type-invaders.name.final uni2192 com.type-invaders.name.production arrowright ^ arrowupleft͖~h[cd\g~99RSO 5͖)99~\[~\!T com.type-invaders.name.final uni2196 com.type-invaders.name.production arrowupleft a arrowupright͖"!99~\ch[~99" 7͖[99~[d\g~99\!U com.type-invaders.name.final uni2197 com.type-invaders.name.production arrowupright a arrowdownleft͖O [~99S99~\gdO 6͖O\~99R99~h[c\!V com.type-invaders.name.final uni2199 com.type-invaders.name.production arrowdownleft c arrowdownright͖\~9999~[" 7͖ ch[~99RS99~\g\!W com.type-invaders.name.final uni2198 com.type-invaders.name.production arrowdownright w arrowupleftcornerӗc:lrggggr:ۋ;c֠vZwۋ 9ӗ؋ۋ;x:lgggg:{\!Z com.type-invaders.name.final uni21B0 com.type-invaders.name.production arrowupleftcorner x arrowdownleftcornerӗ0[ggr:cۋ;:lr4Nwvۋ 8ӗ:xۋ;c{:lgg\!\ com.type-invaders.name.final uni21B2 com.type-invaders.name.production arrowdownleftcorner p arrowleftupcornerӗb:rggggrl:c;ی֋ ;ӗc{:ggggl:x\+Z com.type-invaders.name.final uni2B11 com.type-invaders.name.production arrowleftupcorner p arrowrightupcornerӗbc:rggggrl:;ی֋ :ӗx:ggggl:{c\+[ com.type-invaders.name.final uni2B0F com.type-invaders.name.production arrowrightupcorner o arrowleftdowncornerӗ:x;c{:lggی֋ 8ӗggr:c;:rl\+\ com.type-invaders.name.final uni2B10 com.type-invaders.name.production arrowleftdowncorner q arrowrightdowncornerӗ:{c;x:lggی֋ 8ӗggr:;c:rl\+] com.type-invaders.name.final uni2B0E com.type-invaders.name.production arrowrightdowncorner x arrowuprightcornerӗ\ۋx:ggggl:{c;cZwv\ۋ 9ӗ\ۋc:rgggglr:;\![ com.type-invaders.name.final uni21B1 com.type-invaders.name.production arrowuprightcorner z arrowdownrightcornerӗb:x;ۋc{:gggg4֔vNw\ۋ :ӗgggglr:c;ۋ:\!] com.type-invaders.name.final uni21B3 com.type-invaders.name.production arrowdownrightcorner U arrowleftarrowrightp(??m(??eҁgggglr:};}::w}}w:lgg\!\ com.type-invaders.name.final uni21C6 com.type-invaders.name.production arrowleftarrowright U arrowrightarrowleftp(??m(??fgggglr:};}::w}}w:lgg\!\ com.type-invaders.name.final uni21C4 com.type-invaders.name.production arrowrightarrowleft { arrowleftrightggr:zzv:ggggl:zvz:lr݌\ M:zvz:rgggglr:zzv:lgg\!W com.type-invaders.name.final uni2194 com.type-invaders.name.production arrowleftright z arrowupdown:rggggrl:t:lgggg:vZw N.:rlggggr:t:ggggl:t\!T com.type-invaders.name.final uni2195 com.type-invaders.name.production arrowupdown  arrowdowncounterclockhalfN:֋׋ U.E9oP2O[:kMMe/N~=:lgg؍`}݋ ` ggr:=}q6@.."/x0B1rl\!b com.type-invaders.name.final uni21B6 com.type-invaders.name.production arrowdowncounterclockhalf  arrowdownclockhalfN*:~=fM:[O2`PBo,W9 ׋֋V8$Xh"L:lgg؍Ӌ c ggr:_ /"/.N"6:rl\![ com.type-invaders.name.final uni21B7 com.type-invaders.name.production arrowdownclockhalf  arrowhookleftBggr:xkatt^KacmJU^>r\:lrیJ U:wdC8CddL4 ;-Tn4SoKw:lgg\!V com.type-invaders.name.final uni21A9 com.type-invaders.name.production arrowhookleft  arrowhookrightB:w\>Um¸آ;taktxgsrgtw:ggggی Vgggglr:,S5n¨dBB4LddG:\!W com.type-invaders.name.final uni21AA com.type-invaders.name.production arrowhookright  arrowupleftcounterclockDF 2W -ڻKF_G HU1Jgv_G\h[cd\gbA?8ZIY47 [Nw9݋ 4D ~~T,%[HUBN +  C{E!R'\!` com.type-invaders.name.final uni21BA com.type-invaders.name.production arrowupleftcounterclock  arrowuprightclock@E 4Y\ch[\^GD_IvFaV5LiG F[--FW 25 [Nw7ދ 4@''CtC>E*y^?9& HEHH5;d\g~j,8O \!Z com.type-invaders.name.final uni21BB com.type-invaders.name.production arrowuprightclock  tilde*tfusi|~s}zzu|zwup``3ƌ7ړ9 Ė,PTEUl|1ovuEqiSkoV~bVX_top tilde.alt010wmzwr}~t}{{twvq`_-njH9 ,NUEWm}?u~-y EqhTluci_X_topR macronbQ|OnjS9 SX_top dotaccenttspzwmq9  8ƹp]\u{1]ww^Y\uX_top dieresisT{tsozznq4tsozznqL9  gH{Ķq`\t{3`wwbY\tjĶq`\t{3`wwbY\tX_topt hungarumlaut^Dd.,Dd.,S^9 *z.,@ DK|.,@ DX_topS acuteDd.,SK9 .,>!DX_topQ grave}{߫HmS}9 kH7kX`_topl circumflex:-0ʋ3p}*(+A:9 $R(+;3L-0X_topf caron\+(z-0LA\9  #ʋ-0s(+*p}X_top breve h`rfpu}}qlXbbUrьY9 >C#:#ofYۙm}Zqro$՚AX_top breve.cyrl*ZUqwwtpԽvwf`Y^lZ~籌^9 NKƬ &Zn3~x]\Ժx{*Fql $iX_top ringxttqjmp|fxsfsgr~|rkzkwUgdYvӰl‹9  `,]`|ZRv`|y5nE>Ġuvef&R&)C`hZ&&ROC)`X_top ringacutextsqklqhwtg[XWhmxXhfYub+̯kË9 Ǘ pD\`|܁`Su`|z:nGDávudg W (:cgZ WN:(cQ*X_top commaturnedtopvsxyfXvu}wmw9 Dómcfx|VMz3cX}I\^zXW com.type-invaders.name.final uni02BB com.type-invaders.name.production commaturnedtop _topN caronslovakRkR' R/XT com.type-invaders.name.final uni02BC com.type-invaders.name.production caronslovak _topright cedillaHbkcswqqlEqstwgir`~b΋ T b P*ƯSytH}ce4h}QFųc#sxjaFwX_bottom ogonek*]bkbvzglmjwhzktxwXmbϋ I]bPYTp|Yk)$8ƽeqIaBsX_bottomright< tildecomb ??OTEUl|1ovuEqiSkoV~bVR com.type-invaders.name.final uni0303 com.type-invaders.name.production tildecomb _top= macroncomb ??S com.type-invaders.name.final uni0304 com.type-invaders.name.production macroncomb _top@ dotaccentcomb ??7ƹp]\u{1]ww^Y\uV com.type-invaders.name.final uni0307 com.type-invaders.name.production dotaccentcomb _top? dieresiscomb ??fHFĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\tU com.type-invaders.name.final uni0308 com.type-invaders.name.production dieresiscomb _topC hungarumlautcomb ??)E.,@ DK|.,@ D Y com.type-invaders.name.final uni030B com.type-invaders.name.production hungarumlautcomb _top< acutecomb ??.,>!DR com.type-invaders.name.final uni0301 com.type-invaders.name.production acutecomb _top< gravecomb ??kH7kR com.type-invaders.name.final uni0300 com.type-invaders.name.production gravecomb _topA circumflexcomb ??$(+;3L-0W com.type-invaders.name.final uni0302 com.type-invaders.name.production circumflexcomb _top< caroncomb ??"wʋ-0s(+*p} R com.type-invaders.name.final uni030C com.type-invaders.name.production caroncomb _top< brevecomb ??=C#:#ofYۙm}Zqro$՚AR com.type-invaders.name.final uni0306 com.type-invaders.name.production brevecomb _top; ringcomb ??_,]`|ZRv`|y5nE>Ġuvef&R&)C`hZ&&ROC)` Q com.type-invaders.name.final uni030A com.type-invaders.name.production ringcomb _topr hookcombӗ qvsaVnlkjSʌċ .˓jHPxv{L ? Q com.type-invaders.name.final uni0309 com.type-invaders.name.production hookcomb _topE commaturnedtopcomb ??Cómcfx|VMz3cX}I\^z[ com.type-invaders.name.final uni0312 com.type-invaders.name.production commaturnedtopcomb _topB caronslovakcombR ??R/X com.type-invaders.name.final uni0315 com.type-invaders.name.production caronslovakcomb _toprightS horncombq؋܋u1sjji'uhW %huoR:o>Q com.type-invaders.name.final uni031B com.type-invaders.name.production horncomb = cedillacomb ??S gb P*ƯSytH}ce4h}QFųc#sxjaFw'T com.type-invaders.name.final uni0327 com.type-invaders.name.production cedillacomb _bottomr dotbelowcombl;tupzznq;? 7l;Ķq`^u|4`wwaZ^u#U com.type-invaders.name.final uni0323 com.type-invaders.name.production dotbelowcomb _bottom commabelowcomb$ zwtyzyisjom}a2=  C X,͊}^zz7cu}\_fz_/oe&W com.type-invaders.name.final uni0326 com.type-invaders.name.production commabelowcomb _bottom< ogonekcomb ??H(bPYTp|Yk)$8ƽeqIaBs(S com.type-invaders.name.final uni0328 com.type-invaders.name.production ogonekcomb _bottomright breveacute$h`renv}}qlYadVseAf(*̌# OB9ngWڙn}Ysqo~ КF (*D!A_top brevegrave$h`renv}}qlYadVs-٨Em̌# MB9ngWڙn}Ysqo~ КFiE=n_top brevehookTh`renv}}qlYadVse rutbWnlkjȌ# c*B9ngWڙn}Ysqo~ КF kJQyv{N ?_top brevetildetgusi|}u}zzu|{wvp``%Lh`renv}}qlYadVsƌ&ז ɗ,lUEVl~0ovvEqiSloVaW7LB9ngWڙn}Ysqo~ КF_top dieresisacuteAtto{ymq6tto{ymq Af(*   v`Aķo_]t|3_vwaY]tkķo_]t|3_vwaY]th(*D!A_top dieresiscaronAtto{ymq6tto{ymqj$,z0/L   rAķo_]t|3_vwaY]tkķo_]t|3_vwaY]t<ʋ0/s,$)p|_top dieresisgraveAtto{ymq6tto{ymqQ٨Em   t`Aķo_]t|3_vwaY]tkķo_]t|3_vwaY]tUiE=n_top circumflexacute͖-/ʋ3p}*($#Af(*ЌY 5͖($;3L-/(*D!A_top circumflexbreve6i`reow}}rlZbeVsj2!ʋq|)>ˌ ĖWA:me#[ؘo~ro~НFID>9L!_top circumflexgrave͖-/ʋ3p}*($L٨EmЌC 2͖($;3L-/iE=n_top circumflexhook!^ rutbWnlkj#-/ʋ3p}*($Ȍm‹ I>PkJQyv{N ?($;3L-/_top dieresismacronDtto{ymq6tto{ymq]s|Pƍ   v`Dķo_]t|3_vwaY]tkķo_]t|3_vwaY]t78_top circumflextildertgurj{~t}zzu|{w~vruxrH++ʋ.q})''Ō ɗ,k@UFVl}0owvFriTloVaWlY'':.L++_top tilde.case*#tfusi|~s}zzu|zwup``ƌ<ړ ,P#TEUl|1ovuEqiSkoV~bVX_topN tilde.alt01.case0wmzwr}~t}{{twvq`_njK ,NUEWm}?u~-y EqhTluci_X_topNW macron.casef|OnjW WX_topN dotaccent.casetspzwmq  8ƹp]\u{1]ww^Y\uX_topN dieresis.caseTtsozznq4tsozznqP  gHĶq`\t{3`wwbY\tjĶq`\t{3`wwbY\tX_topNt hungarumlaut.case^Dd.,Dd.,S^ *z.,@ DK|.,@ DX_topNS acute.caseDd.,SK .,>!DX_topNQ grave.casev*߫HmSv kH7kX_topNq circumflex.case?-0ʋ3p}*(+A? $W(+;3L-0X_topNp caron.case`3+(z-0LA`  #ʋ-0s(+*p}X_topN breve.case h`rfpu}}qlXbbUrь^ >C#:#ofYۙm}Zqro$՚AX_topN breve.cyrl_case*ZUqwwtpԽvwf`Y^lZ~a NKƬ &Zn3~x]\Ժx{*Fql $iX_topN ring.casexttqjmp|fxsfsgr~|rkzkwUgdYv{Ar$‹  `,]`|ZRv`|y5nE>Ġuvef&R&)C`hZ&&ROC)`X_topN ringacute.casextsqklqhwtg[XWhmxXhfYub+u4mË Ǘ pD\`|܁`Su`|z:nGDávudg W (:cgZ WN:(cQ*X_topNm hookcomb.caseӗ qvsaVnlkjʌċC .˓jHPxv{L ?[ com.type-invaders.name.final uni0309.case com.type-invaders.name.production hookcomb.case _topN breveacute.case$h`renv}}qlYadVseAf(*̌#C OB9ngWڙn}Ysqo~ КF (*D!A_topN brevegrave.case$h`renv}}qlYadVs-٨Em̌#C MB9ngWڙn}Ysqo~ КFiE=n_topN brevehook.caseTh`renv}}qlYadVse rutbWnlkjuȌ‹C c*B9ngWڙn}Ysqo~ КF kJQyv{N ?_topN brevetilde.case>tgusi|}u}zzu|{wvp``%Lh`renv}}qlYadVst>ƌ#ږC Ė,l>UEVl~0ovvEqiSloVaW7LB9ngWڙn}Ysqo~ КF_topN dieresisacute.caseCtto{ymq6tto{ymq Af(* C  v`Cķo_]t|3_vwaY]tkķo_]t|3_vwaY]th(*D!A_topN dieresiscaron.caseCtto{ymq6tto{ymqj$,z0/L C  rCķo_]t|3_vwaY]tkķo_]t|3_vwaY]t<ʋ0/s,$)p|_topN dieresisgrave.caseCtto{ymq6tto{ymqQ٨Em C  t`Cķo_]t|3_vwaY]tkķo_]t|3_vwaY]tUiE=n_topN circumflexacute.case͖"-/ʋ3p}*($#Af(*Ќ"YC 5͖ ($;3L-/(*D!A_topN circumflexbreve.case6.i`reow}}rlZbeVsj2!ʋq|)>.ˌC ɗW.A:me#[ؘo~ro~НFID>9L!_topN circumflexgrave.case͖-/ʋ3p}*($L٨EmЌFC 2͖($;3L-/iE=n_topN circumflexhook.case rutbWnlkj#-/ʋ3p}*($vȌg‹C I8kJQyv{N ?($;3L-/_topN dieresismacron.caseCtto{ymq6tto{ymq]s|P C  v`Cķo_]t|3_vwaY]tkķo_]t|3_vwaY]t78_topN circumflextilde.caserEtgurj{~t}zzu|{w~vruxrH++ʋ.q})''{EŌ C Θ,k@EUFVl}0owvFriTloVaWlY'':.L++_topN nbspacehP com.type-invaders.name.final uni00A0 com.type-invaders.name.production nbspace  ibmlogo07^aU6wN[wZ6NU^=epkڼZbmp=zy~zzOvri^sxvml@Bwz v vvPvx z vNxxNOxȋvNxȋvNxv$xv$LztuzzttzYWeeWWfeW ~zy~zzOumi}rshmiGwl zlvovuvouӋvSuv7!v vPvPȋvNxȋvNaxv$xv$p|(‹p$a34ȸ3B^N{N^B^*E1p~3* gSj1Sgm7*p3~m3m}~3]m~}]n~O3tWgٯr|e^xBPfu|u3P|u h&#$Nȋxxȋ z ONȋNNȋNN$N$Ln3yccȳzy3MdyzMcyY311c1c3 2cc31cc4 3~m3n}~3]m~}]m~+Ote&^3gY|{3>Ws(%Ʊje e[{{_ËCߋ' &#&ȋNNȋNaN$N$R com.type-invaders.name.final uniEBE7 com.type-invaders.name.production ibmlogo07  fcclogozvE+NCWLËN?> ы*;FL]y[PHgU&b=@\#LL#@bΝƬ]YF*;1,`@Sk֫\bL^zSiq\wihw[oo[hwë^nb4\#t ֎A؜ ҚĔ˔ՔՊՊ,Ϊv)?)x I6W V  Wu)sR"o?, /H>ËLӿ , M,<(3ȭr Qcs@RbSEQMųs<iNbb//bb/P com.type-invaders.name.final uniEFCC com.type-invaders.name.production fcclogo 5 celogo&A)RՋ yx^9mIU]B`ee`BUm v A)RՋ yxW.cFEc.WV/Ec v[ ȓtf\\$Le\s51se| 776676<tfDse| 776676O com.type-invaders.name.final uniECE0 com.type-invaders.name.production celogo |$ N N rs;,3 !*"#$/%&'()+-.&0621d -extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL.fpgm.ttxasm000066400000000000000000000216201416264461600253600ustar00rootroot00000000000000PUSHW[ ] /* 1 value pushed */ 0 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ PUSHW[ ] /* 1 value pushed */ 9 LT[ ] /* LessThan */ IF[ ] /* If */ PUSHB[ ] /* 2 values pushed */ 1 1 INSTCTRL[ ] /* SetInstrExecControl */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 511 SCANCTRL[ ] /* ScanConversionControl */ PUSHW[ ] /* 1 value pushed */ 68 SCVTCI[ ] /* SetCVTCutIn */ PUSHW[ ] /* 2 values pushed */ 9 3 SDS[ ] /* SetDeltaShiftInGState */ SDB[ ] /* SetDeltaBaseInGState */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 1 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ ROUND[01] /* Round */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 2 FDEF[ ] /* FunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 1 LOOPCALL[ ] /* LoopAndCallFunction */ POP[ ] /* PopTopStack */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 3 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ ROLL[ ] /* RollTopThreeStack */ MD[0] /* MeasureDistance */ ABS[ ] /* Absolute */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[00] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[00] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ NEG[ ] /* Negate */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ MDAP[1] /* MoveDirectAbsPt */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ ROUND[01] /* Round */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 EQ[ ] /* Equal */ IF[ ] /* If */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 64 EIF[ ] /* EndIf */ ELSE[ ] /* Else */ ROUND[01] /* Round */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 EQ[ ] /* Equal */ IF[ ] /* If */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 64 NEG[ ] /* Negate */ EIF[ ] /* EndIf */ EIF[ ] /* EndIf */ MSIRP[0] /* MoveStackIndirRelPt */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 4 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[10] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[10] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ MDAP[1] /* MoveDirectAbsPt */ MIRP[11101] /* MoveIndirectRelPt */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 5 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ LT[ ] /* LessThan */ IF[ ] /* If */ LTEQ[ ] /* LessThenOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 128 WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 64 WCVTP[ ] /* WriteCVTInPixels */ EIF[ ] /* EndIf */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ POP[ ] /* PopTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ PUSHB[ ] /* 1 value pushed */ 192 LT[ ] /* LessThan */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 192 WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ EIF[ ] /* EndIf */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 6 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ ROUND[01] /* Round */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ RDTG[ ] /* RoundDownToGrid */ ROUND[01] /* Round */ RTG[ ] /* RoundToGrid */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 7 FDEF[ ] /* FunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 6 LOOPCALL[ ] /* LoopAndCallFunction */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 8 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 64 ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 0 EIF[ ] /* EndIf */ ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 128 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 192 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 256 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 320 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHW[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ RCVT[ ] /* ReadCVT */ PUSHW[ ] /* 1 value pushed */ 384 LT[ ] /* LessThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 384 SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ RCVT[ ] /* ReadCVT */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ WCVTP[ ] /* WriteCVTInPixels */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 9 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ RCVT[ ] /* ReadCVT */ WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ ENDF[ ] /* EndFunctionDefinition */extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL.fpgm.vttasm000066400000000000000000000166771416264461600253760ustar00rootroot00000000000000#PUSHOFF #PUSH, 0 FDEF[] /* FunctionDefinition */ MPPEM[] /* MeasurePixelPerEm */ #PUSH, 9 LT[] /* LessThan */ IF[] /* If */ #PUSH, 1, 1 INSTCTRL[] /* SetInstrExecControl */ EIF[] /* EndIf */ #PUSH, 511 SCANCTRL[] /* ScanConversionControl */ #PUSH, 68 SCVTCI[] /* SetCVTCutIn */ #PUSH, 9, 3 SDS[] /* SetDeltaShiftInGState */ SDB[] /* SetDeltaBaseInGState */ ENDF[] /* EndFunctionDefinition */ #PUSH, 1 FDEF[] /* FunctionDefinition */ DUP[] /* DuplicateTopStack */ DUP[] /* DuplicateTopStack */ RCVT[] /* ReadCVT */ ROUND[Bl] /* Round */ WCVTP[] /* WriteCVTInPixels */ #PUSH, 1 ADD[] /* Add */ ENDF[] /* EndFunctionDefinition */ #PUSH, 2 FDEF[] /* FunctionDefinition */ #PUSH, 1 LOOPCALL[] /* LoopAndCallFunction */ POP[] /* PopTopStack */ ENDF[] /* EndFunctionDefinition */ #PUSH, 3 FDEF[] /* FunctionDefinition */ DUP[] /* DuplicateTopStack */ GC[N] /* GetCoordOnPVector */ #PUSH, 3 CINDEX[] /* CopyXToTopStack */ GC[N] /* GetCoordOnPVector */ GT[] /* GreaterThan */ IF[] /* If */ SWAP[] /* SwapTopStack */ EIF[] /* EndIf */ DUP[] /* DuplicateTopStack */ ROLL[] /* RollTopThreeStack */ DUP[] /* DuplicateTopStack */ ROLL[] /* RollTopThreeStack */ MD[N] /* MeasureDistance */ ABS[] /* Absolute */ ROLL[] /* RollTopThreeStack */ DUP[] /* DuplicateTopStack */ GC[N] /* GetCoordOnPVector */ DUP[] /* DuplicateTopStack */ ROUND[Gr] /* Round */ SUB[] /* Subtract */ ABS[] /* Absolute */ #PUSH, 4 CINDEX[] /* CopyXToTopStack */ GC[N] /* GetCoordOnPVector */ DUP[] /* DuplicateTopStack */ ROUND[Gr] /* Round */ SUB[] /* Subtract */ ABS[] /* Absolute */ GT[] /* GreaterThan */ IF[] /* If */ SWAP[] /* SwapTopStack */ NEG[] /* Negate */ ROLL[] /* RollTopThreeStack */ EIF[] /* EndIf */ MDAP[R] /* MoveDirectAbsPt */ DUP[] /* DuplicateTopStack */ #PUSH, 0 GTEQ[] /* GreaterThanOrEqual */ IF[] /* If */ ROUND[Bl] /* Round */ DUP[] /* DuplicateTopStack */ #PUSH, 0 EQ[] /* Equal */ IF[] /* If */ POP[] /* PopTopStack */ #PUSH, 64 EIF[] /* EndIf */ ELSE[] /* Else */ ROUND[Bl] /* Round */ DUP[] /* DuplicateTopStack */ #PUSH, 0 EQ[] /* Equal */ IF[] /* If */ POP[] /* PopTopStack */ #PUSH, 64 NEG[] /* Negate */ EIF[] /* EndIf */ EIF[] /* EndIf */ MSIRP[m] /* MoveStackIndirRelPt */ ENDF[] /* EndFunctionDefinition */ #PUSH, 4 FDEF[] /* FunctionDefinition */ DUP[] /* DuplicateTopStack */ GC[N] /* GetCoordOnPVector */ #PUSH, 4 CINDEX[] /* CopyXToTopStack */ GC[N] /* GetCoordOnPVector */ GT[] /* GreaterThan */ IF[] /* If */ SWAP[] /* SwapTopStack */ ROLL[] /* RollTopThreeStack */ EIF[] /* EndIf */ DUP[] /* DuplicateTopStack */ GC[N] /* GetCoordOnPVector */ DUP[] /* DuplicateTopStack */ ROUND[Wh] /* Round */ SUB[] /* Subtract */ ABS[] /* Absolute */ #PUSH, 4 CINDEX[] /* CopyXToTopStack */ GC[N] /* GetCoordOnPVector */ DUP[] /* DuplicateTopStack */ ROUND[Wh] /* Round */ SUB[] /* Subtract */ ABS[] /* Absolute */ GT[] /* GreaterThan */ IF[] /* If */ SWAP[] /* SwapTopStack */ ROLL[] /* RollTopThreeStack */ EIF[] /* EndIf */ MDAP[R] /* MoveDirectAbsPt */ MIRP[M>RBl] /* MoveIndirectRelPt */ ENDF[] /* EndFunctionDefinition */ #PUSH, 5 FDEF[] /* FunctionDefinition */ MPPEM[] /* MeasurePixelPerEm */ DUP[] /* DuplicateTopStack */ #PUSH, 3 MINDEX[] /* MoveXToTopStack */ LT[] /* LessThan */ IF[] /* If */ LTEQ[] /* LessThenOrEqual */ IF[] /* If */ #PUSH, 128 WCVTP[] /* WriteCVTInPixels */ ELSE[] /* Else */ #PUSH, 64 WCVTP[] /* WriteCVTInPixels */ EIF[] /* EndIf */ ELSE[] /* Else */ POP[] /* PopTopStack */ POP[] /* PopTopStack */ DUP[] /* DuplicateTopStack */ RCVT[] /* ReadCVT */ #PUSH, 192 LT[] /* LessThan */ IF[] /* If */ #PUSH, 192 WCVTP[] /* WriteCVTInPixels */ ELSE[] /* Else */ POP[] /* PopTopStack */ EIF[] /* EndIf */ EIF[] /* EndIf */ ENDF[] /* EndFunctionDefinition */ #PUSH, 6 FDEF[] /* FunctionDefinition */ DUP[] /* DuplicateTopStack */ DUP[] /* DuplicateTopStack */ RCVT[] /* ReadCVT */ ROUND[Bl] /* Round */ WCVTP[] /* WriteCVTInPixels */ #PUSH, 1 ADD[] /* Add */ DUP[] /* DuplicateTopStack */ DUP[] /* DuplicateTopStack */ RCVT[] /* ReadCVT */ RDTG[] /* RoundDownToGrid */ ROUND[Bl] /* Round */ RTG[] /* RoundToGrid */ WCVTP[] /* WriteCVTInPixels */ #PUSH, 1 ADD[] /* Add */ ENDF[] /* EndFunctionDefinition */ #PUSH, 7 FDEF[] /* FunctionDefinition */ #PUSH, 6 LOOPCALL[] /* LoopAndCallFunction */ ENDF[] /* EndFunctionDefinition */ #PUSH, 8 FDEF[] /* FunctionDefinition */ MPPEM[] /* MeasurePixelPerEm */ DUP[] /* DuplicateTopStack */ #PUSH, 3 MINDEX[] /* MoveXToTopStack */ GTEQ[] /* GreaterThanOrEqual */ IF[] /* If */ #PUSH, 64 ELSE[] /* Else */ #PUSH, 0 EIF[] /* EndIf */ ROLL[] /* RollTopThreeStack */ ROLL[] /* RollTopThreeStack */ DUP[] /* DuplicateTopStack */ #PUSH, 3 MINDEX[] /* MoveXToTopStack */ GTEQ[] /* GreaterThanOrEqual */ IF[] /* If */ SWAP[] /* SwapTopStack */ POP[] /* PopTopStack */ #PUSH, 128 ROLL[] /* RollTopThreeStack */ ROLL[] /* RollTopThreeStack */ ELSE[] /* Else */ ROLL[] /* RollTopThreeStack */ SWAP[] /* SwapTopStack */ EIF[] /* EndIf */ DUP[] /* DuplicateTopStack */ #PUSH, 3 MINDEX[] /* MoveXToTopStack */ GTEQ[] /* GreaterThanOrEqual */ IF[] /* If */ SWAP[] /* SwapTopStack */ POP[] /* PopTopStack */ #PUSH, 192 ROLL[] /* RollTopThreeStack */ ROLL[] /* RollTopThreeStack */ ELSE[] /* Else */ ROLL[] /* RollTopThreeStack */ SWAP[] /* SwapTopStack */ EIF[] /* EndIf */ DUP[] /* DuplicateTopStack */ #PUSH, 3 MINDEX[] /* MoveXToTopStack */ GTEQ[] /* GreaterThanOrEqual */ IF[] /* If */ SWAP[] /* SwapTopStack */ POP[] /* PopTopStack */ #PUSH, 256 ROLL[] /* RollTopThreeStack */ ROLL[] /* RollTopThreeStack */ ELSE[] /* Else */ ROLL[] /* RollTopThreeStack */ SWAP[] /* SwapTopStack */ EIF[] /* EndIf */ DUP[] /* DuplicateTopStack */ #PUSH, 3 MINDEX[] /* MoveXToTopStack */ GTEQ[] /* GreaterThanOrEqual */ IF[] /* If */ SWAP[] /* SwapTopStack */ POP[] /* PopTopStack */ #PUSH, 320 ROLL[] /* RollTopThreeStack */ ROLL[] /* RollTopThreeStack */ ELSE[] /* Else */ ROLL[] /* RollTopThreeStack */ SWAP[] /* SwapTopStack */ EIF[] /* EndIf */ DUP[] /* DuplicateTopStack */ #PUSH, 3 MINDEX[] /* MoveXToTopStack */ GTEQ[] /* GreaterThanOrEqual */ IF[] /* If */ #PUSH, 3 CINDEX[] /* CopyXToTopStack */ RCVT[] /* ReadCVT */ #PUSH, 384 LT[] /* LessThan */ IF[] /* If */ SWAP[] /* SwapTopStack */ POP[] /* PopTopStack */ #PUSH, 384 SWAP[] /* SwapTopStack */ POP[] /* PopTopStack */ ELSE[] /* Else */ #PUSH, 3 CINDEX[] /* CopyXToTopStack */ RCVT[] /* ReadCVT */ SWAP[] /* SwapTopStack */ POP[] /* PopTopStack */ SWAP[] /* SwapTopStack */ POP[] /* PopTopStack */ EIF[] /* EndIf */ ELSE[] /* Else */ POP[] /* PopTopStack */ EIF[] /* EndIf */ WCVTP[] /* WriteCVTInPixels */ ENDF[] /* EndFunctionDefinition */ #PUSH, 9 FDEF[] /* FunctionDefinition */ MPPEM[] /* MeasurePixelPerEm */ GTEQ[] /* GreaterThanOrEqual */ IF[] /* If */ RCVT[] /* ReadCVT */ WCVTP[] /* WriteCVTInPixels */ ELSE[] /* Else */ POP[] /* PopTopStack */ POP[] /* PopTopStack */ EIF[] /* EndIf */ ENDF[] /* EndFunctionDefinition */ #PUSHONextractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL.otf000066400000000000000000003404201416264461600237020ustar00rootroot00000000000000OTTO @CFF 1FhGDEF) GPOS*^0# GSUBUۜ OS/2l0`cmap7"  head6hhea v$hmtxxL}n maxpDP(nameޣqpost0 Kme_<SU)4h $,CPDJ00oP ;IBM @ $,  "--@ GgzQ  3 , E W: ZM &  @ & $A "e  ) f? 2 $   4 O k tsCopyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextRegularIBM;IBMPlexSerif-Text;2.006;2020IBM Plex Serif TextVersion 2.006 2020IBMPlexSerif-TextIBM Plex is a trademark of IBM Corp, registered in many jurisdictions worldwide.Bold MondayMike Abbink, Paul van der Laan, Pieter van Rosmalenhttp://www.boldmonday.comhttp://www.ibm.comThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLIBM Plex SerifTextHow razorback-jumping frogs can level six piqued gymnasts!Copyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextRegularIBM;IBMPlexSerif-Text;2.006;2020IBM Plex Serif TextVersion 2.006 2020IBMPlexSerif-TextIBM Plex is a trademark of IBM Corp, registered in many jurisdictions worldwide.Bold MondayMike Abbink, Paul van der Laan, Pieter van Rosmalenhttp://www.boldmonday.comhttp://www.ibm.comThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLIBM Plex SerifTextHow razorback-jumping frogs can level six piqued gymnasts! `T}lGScdzQINi;>?@ABCDEFPRbH!"#$%&'()*+,-./0123456789:ejf~M  gnhlr  "'$%-INKL{wpqBsrtuv+a_]^OAnt9KLWXUVak[\|YZmkiV 09@Zagz~~7Y #(/0O_s?    " & 0 3 : D p y !!!"!&!.!Q!T!Z!^!!!!!!!"""""""+"H"`"e%''L+ 1:A[bh{7Y#&01Pr?    & 0 2 9 D p t !!!"!&!.!P!S!U![!!!!!!!"""""""+"H"`"d%''L+ F5F_=8)=F"'BB<߁RetvwF77&#ޔvtf>'&یcv6@BLVZntHLP<,(80 `T}lGScdzQINi;PRbHejf~MgnhA_opru]Jswqv^aniktlrB  '"$-%+NIKL_Hapjq  !*#)9:<;=@?>GEDTQJSPR\`fhg.Us,AF     QRzMTuwxybd{^\mvgNOPWY_`aceinoprs|VZI~HLS}UX][fhjklqt^[]moz|}~{uwxyv  &(46785/1230MOVXYZWcbdeUVYWXZ{| %+f0],e0,^,''F0)'v"?03R"2"008,i&\008e'p 7.4244t424a44V4l4 42|424S:#,9X0X0X0XJX6X;X'X@X>XDX7X<1J??K  3 B*BL ) 3PP A +A+ ))2$26$6JJ)'H7H"9"NN||*/>>9~9~MG5 6&")*???#'0164X7X?XBXBXBX^XBXBX?XBXYXYXYXYD_TX/XBX #%c4K4z$ ,k2L6QF2k2L6 4m4ZV-/#42q1l2%`;` ~4~2{,,%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%%+%+f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0ff0f09+9+,,,,,e0e0:,,,,,,,,,,,,,,,,,*)')')')'F0F0F0F0vv?0?0?? ??0?)?0?L0?r0r0333R"`02"2"2"l"80000+}08,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,88,8,,00088888,R"k-e'e'e'\pppppppppppppppppp    ...222224&&4444444444444444422222&4a4aaaa4a4a2a4a!j4a 44444V4V4V4V4X& 4 4 4 4 4222222222222222222222222444S:S:S:S:S:4####|4,,,,,,,,,,,,,,,,,,999q~*4h92o%+f0*.800k,+,00K0f008,0i&, 170v p0|0!00%0,=0Hs44944 d9444l4424|42#S.4"44#4t484%+%+f0f09+00&20,,,,++@,,0!000K0b0f0!'0Z0$08,8,8,,Av  y 0080?0?3ovv"*94949&44442   d9d9a4444444=#$4442222"""4S:4a4a4##42v%f$\$[s^%l*R t)l$v%f$\$[s^%l*R t)l$$$w$s$?$v$Lhl$A%$$aj%9 $s\K\\\K\\\\\\\K\K\K\K\\\K\K\J\\ \!\I\J\f\eXXXXXXXXXXXXXXXX3XX]qkcckfkkk]gdgcccg]XXXXXXXXXXXXXXkkk]gdgcccg][0 o   $$&&++67::<<EEGGTT^^hh   ((*+-022468;==??CCIIKLSSffmmuuww||               !!!""""####$$$$3@ HDFLTcyrl"latn0kern&kern,kern2mark8markDmarkP "*2.2U6g H H H HHX 8B`j* : f  & 0 6 L ^ h > " H j  .@Rh *4>",6@J<",6@J\n.H<pT,`^&j  !*!!$$%X%%%%%%&&&&&&4&N&h&'@'().)**x*+<+,8,-$-. ../R/00p01011   M68GMdis8t6GHMst     68GMbist$GHM~bist   C 8GHM~i         '6 GHM_abdis t  C   GHMabdt             6  ',<GO no  68  ',<GOno 68H  ( ',! ?@ A BC D F Z z { |                       Md i ,<Gno&GMist  '<GOnouxGHIxJxKxLxMNxOxPQxRUWYxZx[\]^dirsu      !"#$%&'(,./369<EGHILMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwxy}~x{x{.GHMbdist  ',<GOnoux   !Grst  '<GOnoy !GHMis  ',<GOnouyxxxxxxxxHIRSfxHIRSfxHIRSfxHIRSfx/GHM_ab dirst  ',<GOnoux y  -GHMbdirst  ',<GOnoux y  +GHM(di)rst  ',<GnoyO   "GMdis ',<Gno Mad it   ',<GuGst  '<GOnoy 68 C H ',<Gnox 6k-  ',<Gn 68k-H  ',<Gno  68 kH  ',<Gnoy  68kCH  ',<GOno 6 8k C H  ',<Gno 8k CH  ',<Gnox %68dkCH  ',<GOnoux  6 k H  ',<Gnox 6 8kCH  ',Gnoux68    ',Onou  68   ,<no! 68   ',<G Ono68  '<GOnou  6  ' , G O nou  6 '<Ono 6  ',<GOnou   68  ',<GOno 68   ', O no  68   ',GOnou cldfK; ( ~       NN              "         5,    $"  " ! !    V  p  0 &&&         %                       `q^  ~     #    #       !(  ,         #(   $ $ &&  &  AdH"I|U     $     $ J            (             4 " 1 V #   $            ((!& &        (      H                  )   'O         $ x  Y/2:n=*1t   t &(#(%&           ((#!#         #     >  ?H*:"7:<8N&(::8(;Q   a     (  URXR<M2(>X4F>H0@6Z4@>G4bK6 _           #       $#   $      &,0*(         -(((*(*((+(    &($$!&&  ((! &&(     (                            ",      \"A ""$$&&(*-- /1 49GHMMQQSZ\\ ^_!ac#eg&ii)kk*st+zz-./0 1 49;BG<RRBqqCDGHIZ[gl  )+./2288:=NPTTZZnpuuxzK"&068GHM_abcefgilmstBC)8:<=OPTZnopuyz(*799,;;->N.QS?UYB[mGqtZvx^{ail!#%''*, ./#15%77*9:+IL-N^1zzBCyAD,[_JGH&&006688GGHHMM*__aabbccee ff gg ii$llmmsstt'BBCC4567))/880::1<<2==3OO=PP?TT9ZZFnnAooCppEuu:yy;zz8<>,@BD-.+J)&#! I(%"       55    !!""8##$&8''()8**+.8//008112283344557799::ILNOPPQQRRSTUUVVWWXXYZ[[\\]]^^ff:hh:zz555!!"9:<=ABBDG IZ [^ _e fh i888888 !  7  $('7#7$7$%&17" !7""%#$7%%'&&7((2..0///33*66,99,::-;;.==3??)BB+EE/HI JK!LL MN7PP7QT$UW(XY'ZZ4[`7aa%bb#ce7fi$jm&pp1qs"tt7vv7wx6z{9||4}}$~2,0/+*,.3)-,            GG<HH=IL:MMBNOPPOQQRROST UUVVWWXXYZ[[\\]]^^__QaaRbbPddAff;hh;iirr>sstt"zz 12  E  S  '  476SS4S04F3S !S""#$S%%6&&S''((()+M,,%--M.. // 02M3345M66978M999:: ;; <<&==8>>M??@AMBBCDMEE FFMGGDHI1JK2LL1MNSOONPPSQT4UW7XY6ZZ5[`SaabbceSfi4jmnn*oo,pp3qsttSuuGvvSwxTyyHz{L||5}}4~-MKM9  MM9 )+8MJMC M9/$!.# @I?t       !!##$$ %%!''"**#++$,,%..&//'11'22)33*44+55,77.99/::0ILNOQQSTUUVVWWXXYZ[[\\]]^^zz   !!"-.34899 :<=ADGHH ITUZ[^_efhi~! !'"#$%&'('!)*+,-./0<@  5 6  6=kl=7R7>8?12 !!!""m###$&m''#()m**"+.m//#00m11#22m33D4455$66 7788%99 ::9GGnHHsIL`MMiNOPP_QQRR_STFUUGVVHWWGXXHYZ[[b\\c]]b^^c__a``paa&bbEddreeoffjhhjiifssetthuuqzzF5<<6=7kl=7=7!!7"9:<7=A>BB5CC^DG8HHWIZ?[^_efh i!#m#m"m#mDmm$ 9  *  3  +  4333[,3 !3""#$3%%&&3''-((,, ..//336699::;;<<(==??BBEEGG)HIJKLLMN3OOCPP3QTUW4XYZZ;[`3aabbce3fijmnn.oo/ppqstt3uuAvv3||;}}~0B  :']QZXMKVTIO\PYgLJUSdN ;~ &,28>D JPV\bhnt~~~~~~~~~~~~~~~~~~          &&22>>>DDDDDDDDDDDDDDDDDDJJPPPV\\\\\\\\\\\\\\\hhhhttt~8D Vn~~ DP  &L" ;J3CYAP]l6j*MxS9Ba  02:'047;?FIMQTVY_bdghjl"%m'*q-/u14x68|:;=>@@EEILNQSVXaclnpruwz|~  ((**--468:==HK QS$ff'jm(uu,ww-||.~/145678 FFLRX^djpvFFFFFFFFFFFFFFFFFFFFFLLLLLLLLLLLLLLLLLLLLLRRRRRRRRRRRRRRRRX^^^^^^^^^^^dddddddddddddddddddddjjjjjjjjjjjjjjjjpppppppppppvvvvvvvvvvvFLRdjFFLLRRRXddjjjppp4gNI-$ !!%%))55 &3=  CIQDSTMipOr~Wdnt}~  ((--HKQSww~, ($**06<BHNT*Z`fl`frx~~$66BHHHH*Z```fx$ &,HNf`2x~8>DJP~V\bZ0 QT/"Y3UAPLb#wj;MdmZ6e MO398ha$ 3@  !"#$%&'()*+,-./0123456789:&+.0<AMUWbm  #(*+-./0245689:;=?CLu|FL  "(.""((..'n ,FG DFLTcyrl>latnh !$'*- "%(+.  #&),/0aalt"aalt*aalt2ccmp:ccmpBccmpJdnomRdnomXdnom^fracdfraclfractliga|ligaliganumrnumrnumrordnordnordnsaltsaltsaltsinfsinfsinfss01ss01ss01ss02ss02ss02ss03ss03ss03ss04 ss04ss04ss05ss05$ss05*sups0sups6sups?@`" <=%&/0B3456789:;<=>?@;;>Fii k;;>F;HI B ;;BBHI  BBHI')$* ;   $z .X #    $$ !  "    ,  $$^ !:qq !"#$$IBMPlexSerif-Text/ijk*  03]ƾQ'1;@HS[dpw~ '-6;BIS^lw%1<IVaq}.DKQWblrx~ $.:K]mq| &/4AHSXboy+/5AIOX]jqx} %,3=HVakv '.4DWgv    % 1 5 ; A M P V _ d q x    & , 4 ? K U Y _ k s y    % + 1 ; @ G P U W ^ k r y    ! ( / 6 = D K R Y ` g n u |      $ + 2 ? L S Z a h o v }  %,3:AHOV]dkry !(/6=DKRY`gnu|$+29@GNU\cjqx&9M_s +5>LW`jw #-7AJTan{$.8GQ[js';Nau|.nullCRa.alt01g.alt01g.alt02zero.alt01zero.alt02softhyphenprimeprimedblapproxequalnotequallessequalgreaterequallozengeradicalintegralinfinityestimatedlitrenumerosignpartialdiffEurobahtcoloncurrencyliranairarupeewonsheqeldongkiptugrikpesoguaranihryvniaceditengerupeeindianliraturkishrublebitcoinabreveadotbelowahookamacronaogonekaringacuteabreveacuteabrevedotbelowabrevegraveabrevehookabrevetildeacircumflexacuteacircumflexdotbelowacircumflexgraveacircumflexhookacircumflextildeaacute.alt01abreve.alt01acircumflex.alt01adieresis.alt01adotbelow.alt01agrave.alt01ahook.alt01amacron.alt01aogonek.alt01aring.alt01aringacute.alt01atilde.alt01abreveacute.alt01abrevedotbelow.alt01abrevegrave.alt01abrevehook.alt01abrevetilde.alt01acircumflexacute.alt01acircumflexdotbelow.alt01acircumflexgrave.alt01acircumflexhook.alt01acircumflextilde.alt01aeacutecacuteccaronccircumflexcdotaccentdcarondcroatebreveecaronedotaccentedotbelowehookemacroneogoneketildeecircumflexacuteecircumflexdotbelowecircumflexgraveecircumflexhookecircumflextildeschwagbrevegcircumflexgcommaaccentgdotaccentgbreve.alt01gcircumflex.alt01gcommaaccent.alt01gdotaccent.alt01hbarhcircumflexibreveidotbelowihookimacroniogonekitildeijijacutedotlessjjacutejcircumflexkcommaaccentkgreenlandiclacutelcaronlcommaaccentldotnacutencaronncommaaccentnapostropheengobreveodotbelowohookohungarumlautomacronoslashacuteohornohornacuteohorndotbelowohorngraveohornhookohorntildeocircumflexacuteocircumflexdotbelowocircumflexgraveocircumflexhookocircumflextilderacutercaronrcommaaccentsacutescedillascircumflexscommaaccentgermandbls.alt01tbartcarontcommaaccenttcedillaubreveudotbelowuhookuhungarumlautumacronuogonekuringutildeuhornuhornacuteuhorndotbelowuhorngraveuhornhookuhorntildewacutewcircumflexwdieresiswgraveycircumflexydotbelowygraveyhookytildezacutezdotaccentAbreveAdotbelowAhookAmacronAogonekAringacuteAbreveacuteAbrevedotbelowAbrevegraveAbrevehookAbrevetildeAcircumflexacuteAcircumflexdotbelowAcircumflexgraveAcircumflexhookAcircumflextildeAEacuteCacuteCcaronCcircumflexCdotaccentDcaronDcroatEbreveEcaronEdotaccentEdotbelowEhookEmacronEogonekEtildeEcircumflexacuteEcircumflexdotbelowEcircumflexgraveEcircumflexhookEcircumflextildeSchwaGbreveGcircumflexGcommaaccentGdotaccentHbarHcircumflexIbreveIdotaccentIdotbelowIhookImacronIogonekItildeIJIJacuteJacuteJcircumflexKcommaaccentLacuteLcaronLcommaaccentLdotNacuteNcaronNcommaaccentEngObreveOdotbelowOhookOhungarumlautOmacronOslashacuteOhornOhornacuteOhorndotbelowOhorngraveOhornhookOhorntildeOcircumflexacuteOcircumflexdotbelowOcircumflexgraveOcircumflexhookOcircumflextildeRacuteRcaronRcommaaccentSacuteScedillaScircumflexScommaaccentGermandblsTbarTcaronTcommaaccentTcedillaUbreveUdotbelowUhookUhungarumlautUmacronUogonekUringUtildeUhornUhornacuteUhorndotbelowUhorngraveUhornhookUhorntildeWacuteWcircumflexWdieresisWgraveYcircumflexYdotbelowYgraveYhookYtildeZacuteZdotaccentDeltaproductsummationOmegapiuni0430uni0430.alt01uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi04D3uni04D1uni04D3.alt01uni04D1.alt01uni04D5uni0453uni0491uni0493uni0495uni0450uni0451uni04D7uni0454uni04DDuni04C2uni0497uni04DFuni0499uni04CFuni04E5uni045Duni04E3uni045Cuni049Buni049Duni04A1uni0459uni04A3uni045Auni04A5uni04E7uni0473uni04E9uni04ABuni04EFuni04F1uni04F3uni045Euni04AFuni04B1uni04B3uni04F5uni04B7uni04B9uni04F9uni0455uni045Funi0456uni0457uni0458uni0452uni045Buni04BBuni04D9uni04D2uni04D0uni04D4uni0403uni0490uni0492uni0494uni0400uni0401uni04D6uni0404uni04DCuni04C1uni0496uni04DEuni0498uni04C0uni04E4uni040Duni04E2uni040Cuni049Auni049Cuni04A0uni0409uni04A2uni040Auni04A4uni04E6uni0472uni04E8uni04AAuni04EEuni04F0uni04F2uni040Euni04AEuni04B0uni04B2uni04F4uni04B6uni04B8uni04F8uni0405uni040Funi0406uni0407uni0408uni0402uni040Buni04BAuni04D8uni2153uni2154uni2155uni2156uni2157uni2158uni2159uni215Auni2150uni215Buni215Cuni215Duni215Euni2151checkmarkcrossmarkarrowleftarrowuparrowdownarrowrightarrowupleftarrowuprightarrowdownleftarrowdownrightarrowupleftcornerarrowdownleftcornerarrowleftupcornerarrowrightupcornerarrowleftdowncornerarrowrightdowncornerarrowuprightcornerarrowdownrightcornerarrowleftarrowrightarrowrightarrowleftarrowleftrightarrowupdownarrowdowncounterclockhalfarrowdownclockhalfarrowhookleftarrowhookrightarrowupleftcounterclockarrowuprightclocktilde.alt01breve.cyrlringacutecommaturnedtopcaronslovaktildecombmacroncombdotaccentcombdieresiscombhungarumlautcombacutecombgravecombcircumflexcombcaroncombbrevecombringcombhookcombcommaturnedtopcombcaronslovakcombhorncombcedillacombdotbelowcombcommabelowcombogonekcombbreveacutebrevegravebrevehookbrevetildedieresisacutedieresiscarondieresisgravecircumflexacutecircumflexbrevecircumflexgravecircumflexhookdieresismacroncircumflextildetilde.casetilde.alt01.casemacron.casedotaccent.casedieresis.casehungarumlaut.caseacute.casegrave.casecircumflex.casecaron.casebreve.casebreve.cyrl_casering.caseringacute.casehookcomb.casebreveacute.casebrevegrave.casebrevehook.casebrevetilde.casedieresisacute.casedieresiscaron.casedieresisgrave.casecircumflexacute.casecircumflexbreve.casecircumflexgrave.casecircumflexhook.casedieresismacron.casecircumflextilde.casenbspacefcclogocelogoCopyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextIBM Plex SerifR!;qZn0\x+1Qv5gw| (Tem2 C I N q  ) - A ^ b h l  I g }  J O d v   / J V #/5FJ`mt}-;@GLlw|!&59DOSYekt| "5FMV]afkr} $(/5<BGVem{ $.6>FLRW\gr{whhwullu rRhǭ-J[mNdM沷XkīCL  6WeLhLMeMnKۼ ZjƫC #:9*#%,!9:"%/aJ00aJ/ .M. p !+Ҁ( ̣lvg |xvl{J= Y[Han _=P xWFW  wwnrsrp`tm_jt{~ |úvggvtlltowgrpDQPdu{| 03@K)  %$xWFh 07%An;  UGGUZGGZgutdgdutgsԺmýdY+XGYy~j?kox^~ QEYDZ xfkrp\ndsd}bosWt{ (+M+qF^ /aJ00aJ/U#:jR  --8aY---Y DZҾaZ\4GTecpy $))? R€ c Ʋvhjwvjoz  , U Y " 4 Swob R>UFFU\II\guucocuug/9D OޫE.{aRhǭ$J[mNeMͰףOV kl:.#@;O`Px[7 aKGS.3Yt~~o`RbsB;j w rrJ (XDP }H   17>K{17>K1QFY ös`bpmobm]\c /T!Jj"  e  tսY>ldMwy~ )EY/dιeG ka D __CY6CXh`oz N7À+' +==+ۼF _L^pt V#UVm׬pW H[ vddvqjjq DV bd\\plddqrnlv}xj$=V ƪد`/ YtA rwoAx\>F/ \^JZqiddlxm`Aowr`*G wtjfxp\Ycq+`V = rl tvtr{~ Fi̭ЭcJgJicFT xvlfxp\\dn.bV  hW~}C p\^rpVtz  wwnr@srp`tm_jt{~|u  ŗ UV$ L_|V?BwBAY{J;+ Y YWMU?CUJ n <w$ҲaK_KdaD$U4׸\D_D^\?4CU 1CИDw pnv  xR4< |o"H ^htzwus0`J.躬{ojm|#:uddTDd[S%,!9;K\Q? DtQ | i xd_dfpS\lrtorvzst [77[gPZn 5##=5CUN || NY F 2w 6WeLhLMeMnKۻ 0;D .EV&= !!"bB e ov~lpx~usxvpxkAHaaV3F)  sqn%,!9:"% qcfqkjn" 8 [ J^b w \H<0BYPf_ƽ\Y3+ԽYahP9jo ~wdcA AG  սJ\2W2SԋFa D O ypȾ@ t 0|{r Ot%X3 DDXq2k|VV Go ^^aY^^ aa/c0aa wcdrqbFa : @ M 1.ʣlvehxu~TTuxvl{LA :w}} DH oH Y ? q<:Q-:܌ <-< A 5h4{gg : ggl: ֳ]@M@c]@ )ȽY .  bI hyC\_jV߸^>k;QVRat Z`nVKaA]TGYG fuϽpYZk*ս T~WhU@\<   OttOOttO  )h hOYrUG$ԽmY;0 "I q ; Fc^^  #z>$0  Ź[DgCY]D%U Rh9&w &tw ShvO zD  C CuVI[ [ AY 6 h'&'3'&'h3Vt  ʘMDcqhr aU,  ҽwY3E3ǽlY3E3ǽw W0b0W n |pw ;+ ||X76[[76X  v[w #:9*#%,!9:"% .U  սY ! `qyx  >  WrNoo~~ Pq  DY ҽY   N\wFW    AU DY )$ V [c;L `tn_j qv?wvwwIw SSu  N  @N \2 vN @ ׶ﲰp~|vn F R7+ O v ,9w M#M v \? h  Z 0 rcdsp` *_ r v 6 M, faa 4%oo v[w 6 w3 3wM š v3G dw:: vw xjfvtd\g Ra$ v?Ȅ ʄ  1w Z AY gh  q3v?wIw )P6J[}t` DV3Dv#w 3 "O ^ l&  ҽY rD gg Q ~  DYr '-0 սY ԋ 8ۺ qvI[ qvkJw qvIkw 03&(.Y vMw /P h P g w ::9 tvīw /LY x wCe =&L !B, w BCI"!o@y hAiwukjx`{ <>\^=cz]fs p?_ rtgaebdm    !$)*+;<ABCDGH RUY[]mnp } FGgi'}|~>D&'*-@R#,AVD\4N_ ^r+z/V O L  . > M s   - C V a o | b /W2J_@ $xNq5Tt*ve9$a b!"!"""#6#$`%%%&=&''((T(e(t(((())4))**_***++:+^+++,,8,S,q,,,,-----. .P.|...//:/`///0 0#0000111111122.2I2a2t2233/3E3c333334(4T444455*5:5M5g555556?6Q6667737V7w77788@8f88899R9g9|99999::':4:J:^:w::::;;;I;`;};<6>>?&?(?*?N?`?r??????@@S@n@@@@@@AA!A:AWAgA|AAAABBB;BYB{BBBBBBCCCCCCCDDD=D\DhDDDDDE6ECEPEEFF-FWFFFFFFG%GTGfGGGH8HJHHHHIII(IZIIJKJ`JuJJJKK#KRKwKKKLSLsLLLMM3MVMMMMMNWNkNNNNNOOO)O8OQOdOOOOP4PDPYPPPPQhQQQQQRCR[RS SGS}SSSSTT=TeTTTTUU>UcUUUUVV W q2zwx U  3%bܷ03ӧ˜{}r( ?$EH%B3h4[ rF<J @X P @ wx|sl ajr>k`O 6J!BVp @CeN ocW<L rrJ XP  } `   z60 :Z !D|hY 7O<i ^   DዽZ  п D ss Dê׭`/ê׮`/EYD[3]VZuwX3:[Z`{9joa D x0 9YZ`{za D #uX !Dhw6WeLhLMeMD0cW<- ۼ y0  a D( gG@Mh0G^F@2G/Ͽjl/w,u_/$ (vh}G5ҽtY 8 {  # S l  O ! a@ Yc;Mc׋ wjA:wZ + ;- ޿0 M?bL?M;  snv m o ًw $l Y~Ab fx {!r 6L $" ~ DYqę x? nqp_woZ2`tOOt^0s0Tu6 _H]Y;TF< 2;aǐ`nNսc'vj_Y'??'Y6y.  lJ: d d?ex|}|&'h3"S&'ױ_? d {ff{wllwdwF85e]E=d>YXRpbJU,ۏO4  6 6OG޽Z8sKKڗھe@hFYY+BU[7i3O^&\gwqdfqq`KKdv5cw5&c,lJdA60'-;Va\r rS,s+VT ^ewqdfqq`KKdw´ V?1UW[x<@}ln=0A"/dvLdedü6665jЬQF|FiQ6.]ܹO:v:]O.X, 97Ԗ11I2KӀ9~8R" =,dv %l=0A5/).6忿~<@h^eTȸ/Mǜȳmhh\yPn fjìǯdW}Se`ʦ~vh}ٽSpniŸВٽaYORt_RfD?M*LW^z0[NV+ C' a0Z-VHkЫˮiP&PhiKגuTZW *\\ H_߀jMKfxcjF{fO/AC((CʮWg y03y|,A*6xW$cc?44 ?: : #`*:  v'vw  v'vw wvwbiwvwbcRvwz vw? z ] ?vwz#vwD?# v.wz٫v.w٠ v.wz٫(Iv.w٠ |m 3vHYncn : w SY)Y: $TYw+ƌaѶsddqogptwm_@[ҹ8P(BD$YXg* Zmr92QEֻ_<u2D]v8w K*55*o C?ss? Cv8w>. ?ss? oi8*5?5K*83cc  cc3ccZ  "3P'XOǖ&PoiXPanPSƵnPXi"P3ƧƵPaoP&ZIWǁOXWI'vw#Kvw#KvNweNI g! Z} f} f7  f ' 4g! ,Z} } f} 7   f N%NNY/:Z[ !i+ 'jj@5~GNlʫxznXLklZ9rZ ֢S&KSkʵڢx|olsN'FO'N^nЀ@tXWC4`nyzlWLam> ;9գάεܳbx}xxej 003 3/HA4s4HA//ٟzӥLthsb"w@x6Cj/SS/ήO6do_>odyok1_((_1ko ks-@0>0-nsk{ hSDdsN`kxcp`Ǧhw[g]:6Yedp{ڒoT]Z`gGRfwDbK''KEELrƤʤ`P7Pr`LAn}5J_ͷ̷VII_VJTB**B@((@vw fvw ) <vwqYz0Rgνl9sy(JH8V&0Yq;{Qs9Gl`3Gv߆w;}4LT' Mq ghvtqWjqWt=Gvt߆w;:LPTg' q"jq"M  gqjqv`F`wJ1lF1"`1i``F`Mi`1`Nh`SmFSdvwSSѾc?cdʓ6d dv\\w\__\M\_Q_d dUw _U__UMU_Q_d v0w99999999b9999bb9999d ~  d?,  dʓʓ06d ^d d4Q,Q4`,4JQ%Q8,4`Qdvwbb:Gdvw::Fbb:;;:XC:X:XM;;6sZvwdEغ\>>\VGGVdvNw GGGiSkk@kdvW\\XQdvw\wdNM o[?[?6&Qghehغ?ʠy}uovgF>\U,?Lvl`xlntrl[k9N`t夵į]F_Fg]RRgЯȶ].1ra^O~Sɸ+[F>M^(xoP+F==˺#$FȪl`UJ,"^2[?O :Nco"PP"oo"P", "Q䫦mFk.]+7ۮaGla[LKi^06PY#v|ivoxds#ExYķk)80M++MF""FPtâƢcSGStcP*cAսcYW+S8W޿V#.#WV8V%Q1!6 K+*ضl_R6'+vw>7eر߱R>1>eR7V'&sY('h_VV_}oh(YY&sf\TT\f&&Yo}.vXSwFbܵϞ얿ɣgpXfe@:p{wphpN'T%{4&+,"~wUbTݣc@nVR2G~r ~rzupfn>Jxo"B& o(bV&FFT𔱬w{wsov`BEJ{E+W+p'giV~|xldsmgZjXt)_TH)g%UdIU(Ϙ׿E vT$YAYwNvvQww7pcwӬquyBk:bpF[W?Ңr|sphoX3Y:}~~Y2j= T+ XX:_Tg&UdIU(ǎ9;Tb ttu[Yhmh-YFgGRpT8 P)P;,<%UX\cATz,ֽ@܀ֽ@SսcYTZ,PYS@Y@YSAeg#b:?6uϱ`H[He[GJ* aEldq˛x|spu\6'NY>?ef{v{d\gtP>^_:<֦@ Yo. ATk v8  ,0Drn/E ,>G%H!5SaY^TGO-LD^TYS5YY ;wO=8 8͋  TIYESD҉kaϽpY^+n Ϙ׿N#T$ITw$KYAYK30a^ +ڷ3t3t,<캝z|rosR,6:q3Ty3޽߲DY,xplW7B [Cv[w% ,Cw% ˩ CvBw% JCFsJ@!@+@(  2 P 1QFYt!r+l( 2& Cv[w% D CvЎL@!@+@(  (Cp !+( < e 1/ dvFYwHڀrRhǭ-J[mN[I ̲@CL DQPdu{|րر_:BB;KV(3U沷ZkCdkm\C9 a:e ! + (  0C`d!+( `=Cʄ% wwnrsrp`tm_jt{~|Cw% d 0B=G % 1QFYwq !p+i ( ˩ @w& Cw% d=GBe % C=ЎvL@!@+@(  Z(% C ʂp @!+@(    g  }CϽ ?wp @!+@( \d1 1QFYvBwq !p+i ( J@& CϽ ?wp @!+@( Cd3 CϽ ЎK# !+ ( @J.Cv?Ȅp !`+ݠ( J4ppwwnr4 Vv[w"H - ,Vw"H -  V vBw"H - V qs"H -  P rlj"ZH j- 2& Vv[w"H - D VL"H - (V"ʥ"H -  e r/ bvpwH6WeLhLMeMjI ̲CkcW<- ۼ [kCdkm\V9 :Ā"H Ā- 0V̚@"@H @- =Vʄʥ"H - ] Vw"H - d 0B=G % rl2b"RH b-  & Vw"H - d=GBe % V=L"H - Z(% V ʂʥ"H -  g }?w"H - +d1 rl b"RH b-  7& ?w"H -  d3 ;K2€"H €- .V ۀ"H ۀ- 4Հppwwnr݀4 p ̀?+ر_:KBՀ v[wp `?+ر_:KB` ^,  U> W , U> W l2 % XWUKnu ΣgWpad;/R泤rzwlhouF$##;+~Jxwp U> W  > W / q2˼vRwwx 0Χ q2wm6+x?MYMDv[; F+ww8W޿W"."WW8V%RX: 4k4Mrnt4vhn6PaʺWIHl`P6&+U   ,U w   U vBw  f2 U vBw  U vsq  P U  / (_<z 2& U   @K3`U L (U ʹ  ) e (/ _<(߱K.UI fVp^e;.#9)77*LdbgXU ʄʹ  ] U Ͻ ?w  d1 (_<r  5& U Ͻ ?w  "d3 U Ͻ @K# .U  4ppwwnr4 t A vBA)$v_w rJ $XBP }D  g rJ HXP }䈅 ( / 7N ҀocW<Lစ  vB7N ҀocW<Lစ )$v_w& @N @ocW<@L@ g& N ԀocW<L  / z zwvB60 :Z Q  Dg)$ Fa DI0,w I0 vBw I0)$;I2i P ơ#pFba pD hO& I0D ;L"ka D4( Fa D se b9;OI ea DYQJb`iXVtʄ I K)~hB pFda pD hOO<i ~hBtwdFba dD03@Kf,hTwYh| i hTwY̿hf0,hTw Y̿hf0z)$^ ҽ6 < : we4zP [/qNx@CӨĘ{}r( ;#EH%DY;e9Y[+g']^6qv{@vkktsgKg^3w,ue^3Xq2k|VV3VY9Fo/vww,u_/Ԃ(Ч \ \ hzwX Q ~D$ 0,2$ 0  $ 0(bsn$ , P |pwt$ 2& $ 0D L$ 4($ 0B$   e |/ pwx>bI D^;j; ݽ/H^^eV9 }:$ 60ʄ$  hW ~} / t/0,|B$v/2& t/0D lL/4( }ʄ/ ) 8 0, 8 0z)$ s8 8Y' P  8 0D  # S 05, # S 0)$ s# S , P )h c# S H&  # S 0AD L# S 4M(ʄ # S  {) c   `, c   G2 e   f/ O v[, X,O , ^ O vB, \^)$O Xs! ;t P  p! p& O v[, XD L! L(O ) Ne b9^ ~vs|xp|Wu$uWY_3BB3YZDdYgXVtO 9 s:! I0O r! ==O ʄ) o] O ,  0B=G %  2p!  ^ u:& O , =GBe % O =L! (% O ʂ-S g }, e1  p!  \^)$N& , U3 K! \L.?Ȅ! \L4ppwwnr4 _ ŗ U V$ L_|V?BwBAYxJ;+ Y YWX,v[G ,vBG g2 % Fc^^Ӱku a?nJU.?!^HYc;MgxR4< |d!;~JxwpvBG )$@ Yc;Mc / ׋ wjA0b2 ׋ wj3WA׋ wj3WA:v[w* X,:w* ^ :vBw* b2 :vBw* /^)$: csBʩr`Z `+ `;t P : ʩrZ + ;q/  , U ʩ:Z V+ Z;p& :v[w* XD :Lyʩq`Z `+ `;L(:ʈsZ + ;!e b9 , U ]ՍbI J;@+ Y RY{C_dlX:ʄ* o wwnrsrp`tm_jt{~|:vw* 81  , U ʩ8Z T+ X;/^)$@1N& :vw* (3 :v -K+ʩq`Z `+ `;/L.:v?ȄȈvZ + ;/L4pppwwnrp4 k  b  vBb )$ Ɯ  , *n,)v @* @ q@@n@@v / , CwC  AR3E 'E '3WRA,vBw[Cl    E E ~Aj^)$r v[w[F 0 X,r w[F 0^ r vBw[F 0^)$r 1 6CF 2nt P r J l  І A(q/ H"pl d pE d~pAp& r v[w[F 0XD r kL$l  E ~A4"L(r [l  E ~A xe b9 7bI  E ~AY^G`_iZr ʄ[F  Po)Ih pl h pE h~pA^MG Ihv[w[ dl b dE b~dA X03@KG Ra,@ ̥ Ra0,@ ̥ Ra0)$ٚ ҽw $<l ;<Y;~<A*b ff  X,b vw V (~ b  f -*b Z $/ d fx ++Wn 1lUxA!r 6L 0X,!r 6L 0b2 ! *.:L *!r ʄ6L  /o)!he~hӿhսcYPRYcA<Ktlc~i  v[w " 0], w " 0c& vBw " 0c)$ s" ,y P  t" k& v[w " 0]D L" 4Q( v[w " 0]B ʙ "  #e 4(_ 4(_  , ʄʙ "  t) $))? Rʀ 7c  nv[w8 ,^R/ ))M? RdM L@7d@Uc 2& nv[w8 D bL))? R@  7 c  ( pʄ8Z vw " 01 vBw e" c)$1N& vw " 03 vKp" 4Q. $" Q4ppwwnr4 ^^J, ^^$ F!¸ppn^TRYப9J;M?bL?MY yolhXttX6 X, 6 |b2 ҽ =6 *_v[7 },_vB7 d2 _% SӢbpu  EY/dιeG]Y;T< L;aǐfpτ~Jxwp_vB7 )$_ "PH$]Y;T<  ;aǐ$`n *hC&3[ @EYw~{AYC>Xh"a0T`Dnu|vfdrp`O^$<:Q-'': <(V(-q <:Q-:nj <-b2 b b  w}&Ӳ[J\Jd[C&ClA3E6E ~Av[wNսc'0,wNսc'0 vBwNսc'0 )$1 sNսc', P 5 tNսc'2& v[wNսc'0D  LNսc'4(v[wNսc'0BNսc' e /  + gbI Ǽսc'Xf]fZ9  :Nսc'60ʄNսc' )ee(N7+'ee(nv[wK ,ee(5 UNM7e+'2& ee(nv[wK D ee(b LƝN7+' (ee(pʄKZ 60@, 60)$1 s68 P  60LD  . 03X, . 0^)$!h. "p& 1 Yh. 4t P  . 0?XD L<. 8KL(ʄ.  yo) v[ U, vB r_2 eJ:  n/ }GvPpw\bKjwھ>^;j' wPKUu$u\\ ߽(YAt\w\~dU s ?~BЋWC""C@I %"%(I;@kp;4 &7/1``/17'2 ZV;{nveZ+O03tVeeZDqCp !+( V"H - 6-wQ4dM0$0dM4V 556.Sa;j򘽬쓪_dtjX\~ddQNo,Sd'DMC L7kCl`p`olX"Mèl[p[nlSVȺOLǗS& ' 03F$ w 0 5خ5 0 _~*+*_'4ҼQZ\?c N;CU    PDP"V$=YDI# IP j4 -  䀛  JP > Ԋ: ԋD _x^@@: @D9"= K WM  DP(V#=UHذ Dr%3% %|37ҼVZI  `D>2 LR OF 8; DOO#:  FF D #2  D222  uX !D U> W $-V 33 '-l- 33 # S #\Ekw:-VVg¯ʵX$$aXLLapTTgpVZftII?#Vgvdv SvgV#?1II1ZD{ x&3 |YqlD7s 3 EE8D6EE&3~Ypl-VWl V 'Ҽ-3DE M;kl oVr:   1 Wkl V &ҽ  )@;3HergpH1ΨûJ{YVYtNI'dhw HR RaWNa ĵ7h߮R++hR7U@@562+ F u#DO 1/T>iXXTkXp>2 SG9>Zhv{tf@VO !  pSwԴ^@U@b^BUC!pY o" aEq 0 wY v"  G1ZvG[j~4z4j#սYUVD8?:wZ + ; A. .G*S% Tp.  , 䀖IE(-r  ԋ  Ԋ ~A-r HȀ @ Ȁ@ Ȁ@ ȀĀ~ȀA_9#= K Cl  .G5qE ~AYGGA|Y սY   {m $" ,  սC~ @ Yc;Mc  1 S`hѽ+Ctp@['G'D["Y"DһBLAA--%AUսYEUA%8--8A;By%4iV)4j"6 |Yዽj (A   yy8!Aս  yy #ս q ~Y   U ,ս? ACwU E ~ w U ,6 fbbT w{ 83Xn_n;fƹ-bU\!C&!K`sHF,^^[Q!"!/!"!Q/RJwwJ? aE ~u AlCwZ&Dc̳&J.S ս@A NotxsbeHCFsJ@!@+@(  2 P C˺\?6: ! + ( 9= K V qs"H -  P VapĀ"H Ā-  9=  K p ̀?+ر_:KBՀ '-V F03F$ l,'3V^ 6ػ03^8)Z7D'O ܻ0OFF$ZJ:YOD>\'E g\ֻ7Z"Car`jF$Z7DY4֣nB)Dyoss-U   @K3`U vsq  P U fa  9=  K ZQ1ffo 8sγsfdwqjpx}vj^&TYYιiSm1HZgveK*!:<%/>  PDP"V$=YDI# IP w P O  PDP"V$=YЀDI# ЀIP@9 @= @K U MN ~4&:YDI# IuPY PuDPu"]1ff #΀sB4   -    JP  P *O ݼ4@f*"`@ˀ- Հ @ OW㋽;rD D os' ȀЀ: ȀD& P  > ʻŊ: ŋD0D  > Իʊ: ʋD "e WMv[w  DP(V#=UHҰ D ,n MM *_2%:UH u#sDP(rM  DP!V(=xwjfxp\[`q+d[ pX!hHذ D0-J P(V#=UH-3D<%l#Kyl wJ 3DY &ҽLZI  LF '3FF {#wDOODYMoLv&9uKl VFOuOFYM&ҽYFuFнYD9O-V u= DOuODY03='-'YFuF D |s|#, P w w *dXWݞ*!㚾ƠgWpad;/R泤rzwlhoF$##;$"x # S  e  s# S , P  # S 0B# S ;9&= K (\ * *D(\h  Y'DM wF}}7+l"[ĽLY"2 2ƽtY+m(]RxYLN44PYCqbsbD7s  P  ql&4s ~Yb7ܾ^0YD7Ҽ|Z&`itVX!Ov ̼|Z]E Tp;kl oVr@: ꀰ @ꀵ Z P ( gG@Mh0G^F@2G/Ͽjl*|*D6 Y|;I2i P hY 7O<i {hB2w:Z EMM+x?6Yƪد`/7Swobi z z60 :Z !Dt O Xs! ;t P O H! _9= K _Eq w0 wY v" X,EUj pؿ0 j44" E# ܿ0 ??wY vY3UA8 p'6wY vY ^-* :v[w* XD : csBʩr`Z `+ `;t P :S2ʩq0Z 0+ 0;_9= K Wbfbb,s-ζsdcrqdos|s_K C!]HSf;NgoU;< |t T 1 7A. .G*S% T t P  HA. .G*SЀ%Ѐ T@|_9 @= @K A/ 0'S% sTYu. spۖsi.   ,   IE(  P p4^.@4+C7ˀ , Հ@NLo -r 1 sX Ȁ Ѐ Ȁ ~A&Jt P -r  ŋ  Ŋ ~A0XD -r  ʋ  ʊ ~A ]e v[w[l  .G5qE ~A X, M#M  32qE ~u s  CB0T1G)p{lAx[=Fl/S/bE ~ AR%?$I!J `1G4svkGgqoXPakU/N* ? !A=1|=I=AY սyY   9 > #E ~{ w AYTq  XUAAYCn E ~A# [vl A vY uYE ~A s" ,y P f f 4mEd^^'4,ޣa?nJU.?!^HXd;MxR4< |a4x  1 S` e  1 s1 S`,{ P  1 S`0lB  v1 S`9&= K . MH0M#$[_Y22YX W#M/ w  5c_ƽ\Y3+ԽYahPxY\H<0BYQዽj{w1 sԀ(A   t P  f  # _ Yhዽw  &-YAn pxc~\;S;4k5n 8,G4 @CwU@ E @~ꀭt P _H]Y;TF< 2;aǐ`n4iV4|4An n AYo r 1 6CF 2nt P  I8;wp'XwY #? ; ^O* ;;۶d ) - ; ;A⋽m l A3 7 ~Ak ؕ ޲w3EU1دJvد"1/73 vw^Z`د0 ` \򖒓 A v5  iV  w3/T!Jj"U1دJv"1/73 -w^Z`07R ` \򖒓 A ve5  iBV fv_lED T &NJvv@_l EB T T73 v@_Yc `J `v@(T T73 -wvE T `T-w. `/7`3`M ~T `eED T TR @` \  eU J vA(T TR ` \$ a_" x`/7 `3`M @~T  TR `  \ }zvw^Z`Bk&T PTR  ` P\ }vV貐wED T +A V}vV⯙w6Njw]P  ` P\M AT  +A ve8E T ĄN g ED T @}5  i@v p { `/7`3`M @~T }5   i p"Njw} P  ` P\M AT  }5  i N tvɋw6  B/T }5  `ivv0gED T V vcw sjk:/lAK#6M& R*bNw.RwX 0B=G % wX=GBe % 8N(%  ʂj X.LӿH- M\\V    #see $<h ۛ @z2J^w}0Gi#`'Ku 5Xg "b~LT5lt F L 9 M e H L b    * 2 H L b t  @ L R _ c j 5JMp .6;DMioy $*/4ER\fmu"4?JU`ej{$38FM[djsy &+6=CNSX(߱K. ^e;.#9)77* ~S_3BB3YWu$uW OttOOttOB!,!!B, h׺ӨgLYҽtYQ~xXGrimh h ^;j;  ˣlve ~xvl{K? ujjutlltC IPlS>g4 ر_:BB;KV(3U ! qZ + ; M?bL?M w- )AA) I0Z_Y22Y[{0 uhhuskks2 .3A Nl~vgG<\Y"a vlbdjv ϣgWpad;/R泤rzwl B!,!!B,  ۦa?nJU.?!^H \zl``zl\b½_GVprn~߹} ~,;/S :57€;u o~ @K3`սY l  Ȇ A w@ Yc;Mc kcW< s|xoy 83ܪsZTSk+Y>]' wjhvxdPUcAսcY }pp{ypce 6WeL\LMeMu&< ^ AT Ss ;jo ɻZC\nqp xjdwtd\h NI (_< \zl``zl\BH W03TY?C^7]W+thoF$##;5, MMhɱN(-(WN60yZaAA8;[aZv ? J; grqZ /w,uB:_</:<* wwnrsrp`tm_jt{~|B:w S^h`d]T!A,>v!øxjjyOt gN`T8ZQGOt /LQ4 No}` ~  ҽq5 :-Q-:5- <-*omjOttO ǫpvlvhcid\j[Oktjpe|xt} \!,!i\B$[9srpt|~ ݽ> zkkvrl\j  g } CA2 RJtp![,0,6pv۪'/Mdl gg lr: & ron 6J!BVp E ~  };}: [ % Q wwnr seP AeP \amS^m~ 838838 Q ֦e@7@peV $ ǨjSeSnjO uhcsnd Q wcJ:  Z&&ZHHVyʝeL/LyeV:lgg? 迵`Z  }v_w ӫeZtXdc7Tow mv+c^^ M  ?  VIVIum C C C  r: DF  1G ſ R0 XW <5ѽtYF j> 4jU J w& hn:3; w -V F Vp A 0vh |B$ >w-xl 4C7 " 40H wdfsrc 4j A x `@ %% ;KY 3Q Ӻ- Ae  r [d\g \[  PT   r+\C tfdsn^X_E  ^pp ;jC }vA  hh   UJ -# ~ +H3GY~s`  vw ^ {w   УfVp Z`{ gg  LvNK R ҼZ Mʩ bc( C "64 ps_ qvw Fwnss# ;f H1Χ AY b- -  6ҽ DzvFw    սq  wT 4 D6 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL.otf.ttx000066400000000000000000254322021416264461600245270ustar00rootroot00000000000000 Copyright 2020 IBM Corp. All rights reserved. IBM Plex Serif Text Regular IBM;IBMPlexSerif-Text;2.006;2020 IBM Plex Serif Text Version 2.006 2020 IBMPlexSerif-Text IBM Plex¨ is a trademark of IBM Corp, registered in many jurisdictions worldwide. Bold Monday Mike Abbink, Paul van der Laan, Pieter van Rosmalen http://www.boldmonday.com http://www.ibm.com This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL IBM Plex Serif Text How razorback-jumping frogs can level six piqued gymnasts! Copyright 2020 IBM Corp. All rights reserved. IBM Plex Serif Text Regular IBM;IBMPlexSerif-Text;2.006;2020 IBM Plex Serif Text Version 2.006 2020 IBMPlexSerif-Text IBM Plex® is a trademark of IBM Corp, registered in many jurisdictions worldwide. Bold Monday Mike Abbink, Paul van der Laan, Pieter van Rosmalen http://www.boldmonday.com http://www.ibm.com This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL IBM Plex Serif Text How razorback-jumping frogs can level six piqued gymnasts! rmoveto -74 callsubr -188 -57 callsubr -56 callsubr endchar 50 322 617 rmoveto 4 hlineto 115 -341 rlineto -234 hlineto return -90 238 50 rmoveto -57 -35 24 51 hvcurveto 20 vlineto 60 34 34 104 vhcurveto 63 -94 hlineto -65 -48 -30 -61 vhcurveto -39 -62 rmoveto 91 39 44 45 19 hvcurveto 4 -6 hlineto -51 29 -32 57 32 28 9 11 17 vhcurveto 39 -72 319 vlineto 104 -63 60 -117 -125 66 callsubr 117 callsubr hvcurveto return -25 29 callsubr 49 42 49 21 hvcurveto 6 -9 hlineto -49 28 -33 59 32 29 9 11 17 vhcurveto 39 -72 471 -40 vlineto 53 callsubr hvcurveto return -191 -276 rmoveto -96 callgsubr 246 50 -52 hlineto -225 648 -103 0 -225 -648 rlineto -52 hlineto return rmoveto 27 35 rlineto 31 40 18 34 29 vvcurveto 31 -19 24 -52 vhcurveto return rmoveto 132 156 -88 43 -75 -183 rlineto endchar rmoveto -30 callsubr -99 148 322 rmoveto 95 45 61 84 84 38 -64 -93 vhcurveto -11 -251 vlineto 134 -322 rmoveto -102 callgsubr 66 108 hvcurveto 29 350 25 vlineto 143 -82 101 -139 -135 -98 -108 -163 -163 88 -108 150 vhcurveto return 5 52 hmoveto 533 16 callsubr -524 -50 74 -598 -74 hlineto return -27 callsubr endchar rmoveto 43 23 30 130 callsubr 15 -27 hhcurveto -43 -23 -30 -44 -33 hvcurveto 22 -23 rlineto 27 27 8 7 20 hhcurveto 20 29 -16 -13 25 hvcurveto -12 24 25 -15 27 hhcurveto endchar 85 362 -12 rmoveto 4 callsubr 20 callsubr 28 callsubr 57 vmoveto -127 -73 95 141 hvcurveto -55 callsubr return -15 273 -12 rmoveto 82 50 49 43 16 hvcurveto 4 -92 hlineto 165 33 0 38 -71 13 return 45 callsubr 54 vmoveto 49 callsubr return rmoveto 62 hlineto 126 154 -28 20 -129 -98 -129 98 -28 -20 rlineto endchar 48 hmoveto 238 50 -71 return rmoveto 31 16 -75 183 -88 -43 rlineto endchar -286 -86 callsubr 598 -26 callsubr return 0 458 -167 -33 0 -38 71 -13 rlineto -106 callgsubr return 52 hmoveto 249 50 -74 return rmoveto 9 callsubr -98 123 -212 rmoveto 76 47 60 72 29 hvcurveto 211 548 32 callsubr -103 callgsubr 189 -490 -19 -51 rlineto -68 -25 -34 -30 -35 hhcurveto -7 -8 1 2 -8 hvcurveto 4 vlineto 12 5 12 15 21 vvcurveto 33 -19 22 -33 -39 -20 -23 -39 -47 32 -35 71 vhcurveto return rmoveto 113 52 54 59 39 -21 19 -35 -33 -20 -21 -33 -28 17 -17 20 -7 hvcurveto -3 vlineto -10 -21 -31 -5 -41 hhcurveto -39 -33 4 11 -21 hvcurveto 3 vlineto 20 7 17 17 28 vvcurveto 33 -20 21 -33 -35 -21 -19 -39 -59 52 -54 113 vhcurveto endchar -320 -90 callsubr 74 callsubr return -264 vlineto -129 49 -65 125 vhcurveto return rmoveto 51 callsubr -49 callsubr 369 74 50 -207 -50 74 111 callsubr vhcurveto return rmoveto 286 63 -286 hlineto endchar 34 hmoveto 238 50 -71 return rmoveto 129 102 129 -102 28 20 -126 154 -62 0 -126 -154 rlineto return rmoveto 124 154 -79 40 -76 -179 rlineto return 35 20 22 31 hvcurveto 4 vlineto 31 -20 22 -35 -35 -20 -22 -31 vhcurveto -4 vlineto -31 20 -22 35 vhcurveto return rmoveto 47 28 17 23 15 hvcurveto -24 23 rlineto -12 -9 -15 -10 -19 hhcurveto -28 -18 19 27 return rmoveto 130 157 -84 42 -77 -183 rlineto return -304 -51 callsubr 708 -100 callsubr -50 74 -598 -74 hlineto endchar rmoveto 129 99 129 -99 28 20 -126 151 -62 0 -126 -151 rlineto 221 178 rmoveto 43 23 28 130 callsubr 13 -27 hhcurveto -43 -23 -28 -44 -33 hvcurveto 22 -23 rlineto 27 27 8 7 20 hhcurveto 20 29 -16 -13 25 hvcurveto -12 24 25 -13 27 hhcurveto endchar 317 hlineto 66 59 31 56 77 36 -43 -92 vhcurveto -279 -70 -50 237 50 -71 286 vlineto 129 -49 65 -125 return 5 181 hmoveto 283 50 -91 239 hlineto 198 359 118 callsubr 199 -367 rlineto -231 -91 vlineto return 308 101 -101 callsubr -112 -69 127 hlineto -52 -108 rlineto endchar rmoveto 31 15 -76 179 -79 -40 rlineto 131 -285 -76 callsubr endchar -234 -146 -76 callsubr endchar -136 -16 -72 callsubr endchar 54 330 rmoveto 127 callsubr return vlineto -167 -33 0 -38 71 -13 rlineto return rmoveto -127 -73 95 141 hvcurveto return 596 -100 callsubr hmoveto -74 callsubr endchar rmoveto 129 98 129 -98 28 20 -126 154 -62 0 -126 -154 rlineto return 136 69 callsubr -136 vlineto -141 -73 -95 -127 vhcurveto return 140 -369 -24 callsubr return hlineto -167 -33 0 -38 71 -13 rlineto return vvcurveto -53 42 -23 55 vhcurveto endchar rmoveto 39 37 27 56 47 vvcurveto 7 vlineto 31 -21 25 -36 -36 -21 -23 -31 vhcurveto -4 vlineto -31 19 -23 39 vhcurveto -9 -28 -20 -36 -25 -27 rrcurveto endchar rmoveto -47 -17 31 43 hvcurveto 11 vlineto 43 17 31 47 47 17 -31 -43 vhcurveto -11 vlineto -43 -17 -31 -47 vhcurveto return 102 381 -12 rmoveto 180 63 92 199 hvcurveto return 770 -100 callsubr rmoveto -35 callsubr endchar rmoveto 43 23 29 44 33 hvcurveto return -44 299 -12 rmoveto 149 84 89 122 109 -70 62 -124 31 hvcurveto -50 12 rlineto -92 24 -39 35 69 vvcurveto 67 46 45 93 107 40 -38 -68 vhcurveto -46 80 197 -80 -55 -5 vlineto 39 -20 -49 28 -77 hhcurveto -135 -88 -74 -115 -117 74 -61 127 -31 hvcurveto 53 -13 rlineto 85 -21 36 -36 -68 vvcurveto -79 -47 -50 -112 -105 -42 46 68 vhcurveto 46 -80 -205 80 60 5 vlineto -43 20 53 -29 83 hhcurveto return rmoveto -44 -15 22 32 hvcurveto 16 vlineto 32 15 22 44 44 15 -22 -32 vhcurveto -16 vlineto -32 -15 -22 -44 vhcurveto -174 vmoveto -47 -19 25 36 hvcurveto 16 vlineto 36 19 25 47 47 19 -25 -36 vhcurveto -16 vlineto -36 -19 -25 -47 vhcurveto -41 vmoveto 93 52 42 64 53 -43 29 -49 8 hvcurveto 4 vlineto 43 7 36 29 49 vvcurveto 59 -48 36 -84 -84 -48 -36 -59 -49 36 -29 43 -7 vhcurveto -4 vlineto -49 -8 -43 -29 -53 vvcurveto -64 52 -42 93 vhcurveto endchar -148 254 -12 rmoveto 116 70 64 91 91 -53 45 -104 23 hvcurveto -54 11 rlineto -53 13 -30 29 45 vvcurveto 51 37 25 65 76 33 -27 -52 vhcurveto -35 68 156 -68 -45 -4 vlineto 33 -12 -42 24 -64 hhcurveto -108 -68 -56 -93 -88 52 -50 101 -23 hvcurveto 57 -13 rlineto 55 -13 27 -28 -43 vvcurveto -57 -41 -24 -73 -80 -33 37 56 vhcurveto 20 -68 -155 68 52 4 vlineto -33 15 47 -31 64 hhcurveto return rmoveto 85 62 48 73 79 -49 40 -72 -47 -29 -26 -27 -12 hvcurveto -5 hlineto 9 127 rlineto 186 60 -219 hlineto -14 -204 47 -9 rlineto 16 11 17 15 27 hhcurveto 47 24 -27 -47 hvcurveto -10 vlineto -45 -25 -27 -53 -23 -17 2 7 -11 54 callsubr endchar 12 346 -12 rmoveto 140 82 97 80 27 hvcurveto -42 22 rlineto 48 callsubr -50 80 207 -99 callgsubr -219 116 -142 180 hvcurveto return 381 30 vlineto 49 23 26 39 hvcurveto 83 -84 -110 -151 -50 74 111 callsubr vhcurveto return -71 284 42 rmoveto 49 callsubr -54 vmoveto 143 97 105 166 99 -33 75 -57 47 hvcurveto 21 78 callsubr -80 vlineto 8 -24 -26 4 -29 hhcurveto -145 -95 -106 -165 -166 95 -105 145 hvcurveto return rmoveto 125 68 63 117 hvcurveto 480 74 50 -269 -50 94 -497 vlineto -77 -31 -39 -62 -20 -18 3 4 -13 vhcurveto 3 vlineto 15 7 15 16 27 vvcurveto 35 -22 25 -35 -40 -24 -29 -39 -57 47 -42 96 vhcurveto return -23 25 rlineto -28 -25 -9 -7 -21 hhcurveto -17 -24 16 13 -23 hvcurveto 13 -23 -21 14 -23 hhcurveto -43 -23 -29 -44 -33 hvcurveto 23 -25 rlineto 28 25 9 7 21 hhcurveto 17 24 -16 -13 23 hvcurveto -13 23 21 -14 23 hhcurveto endchar -57 vmoveto 4 callsubr 145 -51 106 -88 60 hvcurveto 53 78 callsubr -123 vlineto 8 -28 -30 4 -33 hhcurveto -187 -125 -137 -224 28 callsubr return 101 24 76 64 24 hvcurveto -31 16 -21 -38 rlineto -35 -19 -22 -13 -56 hhcurveto -56 -22 13 35 -19 hvcurveto -21 38 -31 -16 rlineto -64 24 24 -76 101 hhcurveto return rlineto 412 18 vlineto 49 23 26 39 hvcurveto 79 -84 -102 vlineto -173 -29 0 -38 71 -13 rlineto -106 callgsubr -81 callsubr return -119 283 -12 rmoveto 112 63 70 68 24 hvcurveto -36 23 rlineto 36 callsubr -161 87 -110 152 vhcurveto return 27 -3 rlineto 51 -7 10 -19 -20 vvcurveto -28 -21 -13 -31 -27 -19 9 15 -13 vhcurveto -22 -24 rlineto -19 15 26 -21 51 hhcurveto endchar -82 -50 -49 -43 -16 vhcurveto -88 callgsubr return 33 22 23 31 hvcurveto 3 vlineto 31 -22 23 -33 -33 -22 -23 -31 vhcurveto -3 vlineto -31 22 -23 33 vhcurveto endchar vlineto 60 29 -33 -56 hvcurveto -38 vlineto -56 -29 -33 -60 vhcurveto return rmoveto 211 211 -25 31 -166 -116 return -113 -69 128 hlineto -52 -108 rlineto return 74 50 -249 -50 74 -598 -74 hlineto return 50 -74 598 74 50 -249 -50 74 return rmoveto 66 hlineto 493 698 rlineto -66 hlineto return rmoveto 33 hlineto 69 190 rlineto -91 hlineto endchar vlineto -56 -20 -28 -41 113 callsubr -53 callsubr -626 -71 vlineto return -166 116 -25 -31 rlineto endchar 26 189 hmoveto 289 50 -94 return 708 -89 callsubr rmoveto 31 25 -116 166 return -86 122 -83 rmoveto 36 15 28 39 19 vhcurveto 159 hlineto 81 31 -24 -49 -55 -56 -32 -96 hvcurveto -50 hlineto -77 -46 26 51 hvcurveto 147 319 rmoveto -69 -34 40 65 hvcurveto 36 vlineto 65 34 40 69 69 34 -40 -65 vhcurveto -36 vlineto -65 -34 -40 -69 vhcurveto -4 -448 rmoveto 173 88 64 101 88 -55 50 -123 hvcurveto -118 hlineto -56 -24 13 32 28 29 22 32 8 hvcurveto -4 18 19 -2 20 hhcurveto 117 87 65 106 45 -18 35 -27 27 hvcurveto 4 vlineto 34 -3 rlineto 61 51 -172 hlineto 8 -25 -28 4 -29 105 callsubr return -57 288 64 rmoveto -85 -52 61 99 hvcurveto 88 vlineto 95 52 59 85 62 62 -38 -63 vhcurveto -200 vlineto -63 -62 -38 -62 vhcurveto -22 -276 rmoveto 146 96 87 168 hvcurveto 475 -40 vlineto -52 -79 rlineto -4 hlineto 49 -21 -51 42 -81 hhcurveto -128 -83 -96 -169 -169 83 -96 128 80 49 39 47 20 hvcurveto 4 -69 hlineto -119 -44 -63 -108 -45 -27 7 11 -23 vhcurveto 3 vlineto 24 7 14 24 24 vvcurveto 31 -20 24 -40 -39 -25 -26 -41 -69 83 -42 104 vhcurveto return 18 223 -12 rmoveto 73 47 32 96 40 hvcurveto 217 532 rlineto 56 50 -208 -50 88 hlineto -96 -240 -51 -129 -4 0 -68 129 -133 240 rlineto 88 50 -257 -50 56 hlineto 270 -485 -13 -33 rlineto -76 -32 -28 -19 -45 hhcurveto -12 -12 2 5 -13 hvcurveto 3 vlineto 15 7 15 16 27 vvcurveto 35 -22 25 -35 -40 -24 -29 -39 -56 48 -43 80 vhcurveto return 93 345 -12 rmoveto 107 63 58 52 21 hvcurveto 4 hlineto 51 -98 rlineto 37 290 61 50 -281 -50 119 -93 hlineto -93 -70 -53 -101 -116 -78 88 140 vhcurveto 141 vlineto 141 66 92 142 107 61 -41 -73 vhcurveto -48 80 207 -80 -63 -6 vlineto 39 -16 -56 36 -105 hhcurveto -183 -122 -128 -233 -224 118 -137 177 hvcurveto return 340 238 hmoveto 97 hlineto 153 569 4 0 153 -569 97 0 164 648 rlineto 52 50 -205 -50 88 hlineto -127 -539 -4 0 -153 589 -94 0 -153 -589 -4 0 -127 539 rlineto 88 50 -245 -50 52 hlineto return 153 52 hmoveto 246 50 -74 24 hlineto 351 465 3 0 -10 -188 rlineto -301 -74 -50 246 50 -74 598 74 50 -246 -50 74 -24 vlineto -351 -465 -3 0 10 188 rlineto 301 74 50 -246 -50 74 -598 -74 vlineto return 156 193 hmoveto 86 hlineto 118 397 4 0 115 -397 86 0 131 468 rlineto 51 50 -176 -50 71 hlineto -98 -374 -4 0 -119 424 -78 0 -119 -424 -4 0 -98 374 rlineto 71 50 -219 -50 51 hlineto return 26 48 hmoveto 235 50 -71 28 hlineto 245 287 4 0 -8 -135 rlineto -180 -71 -50 235 50 -71 418 71 50 -235 -50 71 -28 vlineto -245 -287 -4 0 8 135 rlineto 180 71 50 -235 -50 71 -418 -71 vlineto return 64 189 -46 callsubr -22 23 rlineto -27 -27 -8 -6 -20 hhcurveto -20 -29 15 13 -25 hvcurveto 12 -24 -25 14 -27 hhcurveto -43 -23 -29 -44 -33 hvcurveto 22 -23 rlineto 27 27 8 6 20 hhcurveto 20 29 -15 -13 25 hvcurveto -12 24 25 -14 27 hhcurveto endchar rmoveto 109 98 -57 43 -77 -122 rlineto 26 -269 rmoveto 69 54 47 66 66 -54 47 -69 -69 -54 -47 -66 -66 54 -47 69 hvcurveto 37 vmoveto -36 -22 22 40 hvcurveto 28 vlineto 40 22 22 36 36 22 -22 -40 vhcurveto -28 vlineto -40 -22 -22 -36 vhcurveto endchar 141 52 hmoveto 207 50 -74 548 4 hlineto 391 -94 callgsubr -359 549 rlineto -188 -50 74 -598 -74 hlineto return -53 -27 38 75 hvcurveto 84 vlineto 75 27 38 53 53 27 -38 -75 vhcurveto -84 vlineto -75 -27 -38 -53 vhcurveto return 100 62 69 129 129 -62 69 -100 -100 -62 -69 -129 -129 62 -69 100 hvcurveto return -41 52 hmoveto 498 182 -80 -128 -243 594 -26 callsubr return rmoveto 120 156 -73 38 -78 -179 rlineto 34 -140 -47 callsubr rmoveto 31 15 -78 179 -73 -38 rlineto 117 -281 -47 callsubr 594 65 callsubr -594 -94 hlineto return 74 50 -249 -50 74 -598 -74 -50 return -212 rmoveto 101 58 54 117 hvcurveto return 280 337 -280 -74 -50 return 187 125 137 224 return 45 227 644 rmoveto 146 hlineto 71 40 -47 -65 hvcurveto -49 vlineto -65 -40 -47 -71 vhcurveto -146 hlineto -175 -371 rmoveto 249 50 -74 269 109 hlineto 121 -228 rlineto -61 32 29 -30 79 hhcurveto 70 50 -8 hlineto -48 -30 20 48 -27 hvcurveto -119 217 rlineto 99 19 56 65 96 vvcurveto 123 -76 60 -124 vhcurveto -338 -50 74 -598 -74 hlineto return -185 48 hmoveto 258 50 -91 317 hlineto 53 57 60 54 11 6 -1 -1 5 vhcurveto -3 vlineto -15 -3 -11 -16 -25 vvcurveto -31 23 -24 39 35 24 25 43 56 -39 30 -60 -71 -37 -48 -44 -19 vhcurveto -88 callgsubr return 155 324 rmoveto 88 60 38 71 51 -42 30 -49 8 hvcurveto 4 vlineto 44 7 40 32 47 vvcurveto 63 -47 29 -87 -68 -55 -38 -40 -27 16 -18 27 27 14 19 23 13 -8 14 -11 7 vhcurveto 2 vlineto 6 101 callsubr return -41 vmoveto 88 55 50 76 72 -44 45 -68 -53 -27 -25 -29 -13 hvcurveto -4 1 rlineto 11 84 46 52 96 23 -14 31 rcurveline -121 -13 -95 -80 -139 vvcurveto -92 52 -56 91 vhcurveto endchar 101 24 78 65 24 hvcurveto -31 16 -21 -36 rlineto -35 -19 -22 -15 -56 hhcurveto -56 -22 15 35 -19 hvcurveto -21 36 -31 -16 rlineto -65 24 24 -78 101 hhcurveto endchar 36 21 23 31 hvcurveto 4 vlineto 31 -19 23 -39 vhcurveto 9 28 20 36 25 27 rrcurveto -44 hlineto -39 -37 -27 -56 -47 vvcurveto -7 vlineto -31 21 -25 36 vhcurveto endchar 56 43 45 77 62 vvcurveto 10 vlineto 39 -24 31 -43 -41 -27 -30 -36 vhcurveto -6 vlineto -35 23 -28 39 vhcurveto 2 hlineto -11 -41 -30 -46 -47 -40 rrcurveto endchar 2 57 hmoveto 522 182 -81 -128 -325 hlineto 396 591 rlineto 53 -502 -171 81 117 305 vlineto -396 -591 rlineto return -131 46 hmoveto 416 156 -67 -104 -230 hlineto 289 426 rlineto 40 -400 -156 67 104 214 vlineto -289 -426 rlineto return rmoveto 4 -185 -138 hlineto 138 -126 rmoveto 69 72 54 54 -54 242 -76 hlineto -175 -242 rlineto -54 182 vlineto endchar -282 203 -6 rmoveto 51 54 10 12 23 hvcurveto 38 -130 411 129 callsubr -375 hlineto -68 25 -28 72 vhcurveto return 182 -80 -128 -278 280 185 -76 63 206 -63 -76 -185 256 269 -117 80 171 return 52 rmoveto -62 -62 38 63 hvcurveto 212 vlineto 63 62 38 62 85 52 -61 -99 vhcurveto -94 vlineto -99 -52 -61 -85 vhcurveto return 166 -116 25 31 -211 211 -211 -211 25 -31 166 116 return rlinecurve 3 hlineto -37 3 19 -19 34 hhcurveto 35 25 26 39 39 -27 31 -47 return 224 -125 137 -187 -187 -125 -137 -224 return hlineto 137 72 69 137 137 -72 69 -137 hvcurveto return 116 166 -31 25 -211 -211 rlineto endchar hlineto 108 62 58 103 103 -62 58 -108 hvcurveto return 54 rmoveto 304 127 71 callsubr return -50 72 -594 -229 594 72 50 return -71 -50 238 50 -71 418 71 50 return -74 -50 249 50 -74 598 74 50 return -224 125 -137 187 hvcurveto return 47 callsubr -29 -64 rmoveto 80 return 71 50 -238 -50 71 -418 -71 return -147 48 hmoveto 258 50 -91 return rlineto 51 50 -184 -50 71 hlineto return 186 443 321 rmoveto 93 42 64 84 83 32 -70 -93 vhcurveto -16 -241 vlineto -205 -249 rmoveto -57 -35 24 51 hvcurveto 28 vlineto 60 34 35 104 vhcurveto 63 -103 hlineto -65 -48 -30 -61 vhcurveto -38 -62 rmoveto 97 66 37 76 24 hvcurveto 6 hlineto -60 21 68 -53 96 hhcurveto 112 57 61 69 24 hvcurveto -37 24 rlineto -53 -27 -32 -31 -81 hhcurveto -92 -59 66 108 hvcurveto 18 340 30 vlineto 143 -75 107 -138 -80 -60 -43 -59 -19 vhcurveto -6 hlineto 53 -11 -48 49 -84 hhcurveto -124 66 callsubr hvcurveto 2 vlineto 11 19 28 5 33 hhcurveto 77 38 -44 -81 hvcurveto -64 -73 vlineto -167 -64 -50 -107 -88 56 -58 101 hvcurveto return 329 440 648 rmoveto 10 -372 -203 hlineto -232 -276 rmoveto 194 50 -76 hlineto 90 174 rlineto 227 -174 -74 -50 533 16 callsubr -598 -50 76 hlineto -311 -598 rlineto -52 hlineto return 111 hlineto 137 78 -86 -143 hvcurveto -132 vlineto -143 -78 -86 -137 vhcurveto -111 hlineto -175 -54 rmoveto 299 hlineto 186 128 117 232 232 -128 117 -186 hvcurveto -299 -50 74 return -52 -27 -42 -39 -80 hhcurveto -92 -57 68 105 hvcurveto 80 vlineto 97 63 70 91 40 25 -6 -8 16 vhcurveto -4 vlineto -25 -12 -17 -20 -31 vvcurveto -35 21 -28 43 40 25 28 43 72 -69 53 -109 -144 -104 -104 -167 return rmoveto 88 60 38 71 51 -42 30 -49 8 hvcurveto 4 vlineto 44 7 40 32 47 vvcurveto 63 -47 29 -87 -68 -55 -38 -40 -27 16 -18 27 27 14 19 23 13 -8 14 -11 7 vhcurveto 2 vlineto 6 101 callsubr endchar 172 15 hmoveto 116 callsubr 131 50 -53 hlineto -103 169 -19 33 -21 14 -31 4 rlinecurve 51 115 12 29 15 25 11 12 19 callsubr 86 callsubr hlineto return 364 13 hmoveto 115 callsubr 154 50 -68 hlineto -150 254 -25 43 -20 12 -28 4 rlinecurve 74 173 19 43 17 30 76 callsubr 87 callsubr hlineto return 125 hlineto 82 87 136 -212 rlineto -60 -50 222 50 -54 hlineto -179 274 139 144 rlineto 73 50 -217 -50 67 hlineto -125 -136 -80 -91 rlineto -4 return -73 -180 rmoveto 121 13 95 80 139 vvcurveto 92 -52 56 -91 -88 -55 -50 -76 -72 44 -45 68 53 27 25 29 13 vhcurveto 4 -1 -11 -84 -46 -52 -96 -23 rlinecurve endchar rmoveto 101 24 78 65 24 hvcurveto -31 16 -21 -36 rlineto -35 -19 -22 -15 -56 hhcurveto -56 -22 15 35 -19 hvcurveto -21 36 -31 -16 rlineto -65 24 24 -78 101 hhcurveto return -536 vlineto -56 -20 -28 -41 -9 -8 1 2 -7 vhcurveto 4 vlineto 13 4 9 17 20 vvcurveto 29 -17 21 -32 -32 -21 -25 -31 -47 34 -33 68 vhcurveto return rmoveto 56 43 45 77 62 vvcurveto 10 vlineto 39 -24 31 -43 -41 -27 -30 -36 vhcurveto -6 vlineto -35 23 -28 39 vhcurveto 2 hlineto -11 -41 -30 -46 -47 -40 rrcurveto return -71 284 -12 rmoveto 143 97 105 166 165 -97 106 -143 -145 -95 -106 -165 -166 95 -105 145 hvcurveto return rmoveto 164 88 126 235 235 -88 126 -164 -164 -88 -126 -235 -235 88 -126 164 hvcurveto return 288 52 rmoveto -85 -52 61 99 hvcurveto 94 vlineto 99 52 61 85 62 62 -38 -63 vhcurveto -212 vlineto -63 -62 -38 -62 vhcurveto return -76 -29 -65 -54 -93 hhcurveto -128 -76 87 141 hvcurveto 137 vlineto 130 59 101 131 93 61 -45 -67 vhcurveto return -92 -42 65 91 hvcurveto 122 vlineto 91 42 65 92 92 42 -65 -91 vhcurveto -122 vlineto -91 -42 -65 -92 vhcurveto return -291 -252 rmoveto 258 50 -91 229 4 hlineto -49 21 48 -42 80 hhcurveto -104 callgsubr return 35 22 24 32 hvcurveto 3 vlineto 32 -22 24 -35 -35 -22 -24 -32 vhcurveto -3 vlineto -32 22 -24 35 vhcurveto endchar 43 24 29 36 hvcurveto 6 vlineto 36 -24 29 -43 -43 -24 -29 -36 vhcurveto -6 vlineto -36 24 -29 43 vhcurveto return -52 -79 rlineto -4 hlineto 49 -21 -51 42 -81 hhcurveto -128 -83 -98 -173 -173 83 -98 128 return vhcurveto 2 vlineto 11 7 8 14 13 vvcurveto 23 -14 19 -27 -27 -16 -18 -27 -40 46 -38 80 vhcurveto return rmoveto 146 hlineto 72 39 -48 -65 hvcurveto -47 vlineto -65 -39 -48 -72 vhcurveto -146 hlineto -175 return 8 13 -20 vhcurveto 3 vlineto 24 11 12 19 27 vvcurveto 33 -20 26 -39 -37 -24 -25 -40 return -206 rmoveto 60 53 25 58 43 -32 22 -43 -11 -13 -2 -3 -13 hvcurveto -3 3 return 17 19 rlinecurve 3 hlineto -36 3 22 -25 37 hhcurveto 39 22 31 39 39 -26 34 -49 return -351 20 rlineto -233 -80 233 hlineto 351 20 -116 -166 rlineto return 351 -20 rlineto 233 80 -233 hlineto -351 -20 22 callsubr 200 50 -67 hlineto 168 243 4 0 156 -243 rlineto -73 -50 return 71 hlineto 142 313 rlineto 55 -274 -123 44 61 181 vlineto endchar 184 50 -61 hlineto 110 160 5 0 107 -160 rlineto -59 -50 return vhcurveto 4 vlineto 17 8 19 24 28 vvcurveto 39 -25 26 -40 -39 -24 -27 -43 return 166 -117 80 171 -595 -171 80 117 168 return -71 -58 -59 -39 23 -22 35 36 22 22 36 29 -16 15 -15 8 return 48 42 49 21 hvcurveto 4 -91 hlineto 167 33 0 38 -71 13 return 211 211 -211 211 -31 -25 116 -166 return vlineto 141 73 95 127 127 73 -95 -141 vhcurveto return 131 50 -53 hlineto -104 169 109 callsubr return vlineto 75 40 -46 -75 hvcurveto -62 vlineto -75 -40 -46 -75 vhcurveto return -67 callsubr -81 -49 -49 -43 -16 vhcurveto -4 return -160 rmoveto 87 214 -104 594 74 50 return 480 -53 callsubr -396 -71 vlineto return 227 -117 80 171 -482 -50 74 return 58 callsubr -65 -45 -41 -109 return -50 60 -415 -177 415 60 50 return hlineto 49 23 26 39 hvcurveto 83 -84 -110 return 85 362 45 rmoveto -56 -45 19 33 -35 hvcurveto 306 460 rlineto 21 -39 11 -46 -55 vvcurveto -136 vlineto -141 -74 -95 -128 vhcurveto -170 96 rmoveto -21 39 -11 46 55 vvcurveto 136 vlineto 141 74 95 128 56 45 -19 -33 35 vhcurveto -366 -645 rmoveto 55 83 rlineto -33 49 58 -18 68 hhcurveto 4 callsubr 121 -36 92 -61 63 hvcurveto 58 87 -43 30 -55 -83 rlineto 33 -49 -58 18 -68 hhcurveto -187 -125 -137 -224 -121 36 -92 61 -63 hvcurveto -58 -87 rlineto return -71 284 42 rmoveto -45 -35 15 29 -23 hvcurveto 230 300 rlineto 6 -20 3 -22 -24 vvcurveto -122 vlineto -91 -43 -65 -93 vhcurveto -127 90 rmoveto -6 20 -3 22 24 vvcurveto 122 vlineto 91 43 65 93 47 33 -16 -28 23 vhcurveto -301 -470 rmoveto 55 71 rlineto -30 39 48 -15 56 hhcurveto 143 97 105 166 80 -22 64 -39 47 hvcurveto 58 76 -39 30 -55 -71 rlineto 30 -39 -48 15 -56 hhcurveto -145 -95 -106 -165 -80 22 -64 39 -47 hvcurveto -58 -76 rlineto return -27 287 -12 rmoveto 160 103 81 123 107 -72 47 -84 13 hvcurveto 5 vlineto 80 16 61 59 93 vvcurveto 103 -79 75 -131 -88 -52 -30 -43 -29 vhcurveto -4 61 -80 -210 80 57 hlineto 65 58 46 88 87 42 -48 -71 vhcurveto -36 vlineto -72 -50 -46 -71 vhcurveto -102 -54 109 hlineto 84 45 -45 -77 hvcurveto -32 vlineto -80 -58 -53 -113 -57 -42 8 15 -23 64 callsubr -66 82 -70 148 vhcurveto return -131 242 -12 rmoveto 123 89 61 94 71 -43 42 -75 13 hvcurveto 5 vlineto 63 13 42 43 63 vvcurveto 84 -62 53 -113 -71 -40 -26 -35 -25 vhcurveto -3 49 -67 -157 67 28 hlineto 56 47 36 72 63 32 -37 -51 vhcurveto -18 vlineto -51 -35 -33 -60 vhcurveto -66 -53 70 hlineto 72 32 -38 -49 hvcurveto -23 vlineto -51 -39 -40 -84 -55 -28 56 callsubr -65 74 -59 124 vhcurveto return 227 644 rmoveto 144 hlineto 71 39 -42 -64 hvcurveto -44 vlineto -64 -39 -42 -71 vhcurveto -144 hlineto -54 vmoveto 160 hlineto 76 45 -47 -71 hvcurveto -44 vlineto -71 -45 -47 -76 vhcurveto -160 hlineto -175 -54 rmoveto 367 hlineto 117 78 75 119 108 -90 56 -72 5 hvcurveto 4 vlineto 69 13 66 54 99 vvcurveto 99 -71 66 -125 vhcurveto -339 -69 callsubr 348 45 rmoveto -118 -72 89 137 hvcurveto 10 384 -10 vlineto -137 -74 -89 -120 vhcurveto -57 vmoveto 182 124 137 224 220 -114 141 -199 -152 -91 -95 -85 -27 hvcurveto 41 -21 rlineto 80 31 74 53 104 hhcurveto 147 74 -92 -137 hvcurveto -79 -492 -42 vlineto -164 109 -140 189 vhcurveto endchar 263 40 rmoveto -84 -38 64 93 hvcurveto 11 251 -12 vlineto -95 -45 -61 -84 vhcurveto -52 vmoveto 135 98 108 163 163 -88 108 -150 -114 -68 -69 -68 -24 hvcurveto 37 -24 rlineto 53 27 45 38 80 hhcurveto 92 59 -66 -108 hvcurveto -29 -350 -25 vlineto -143 82 -101 139 vhcurveto endchar -47 -39 -29 -93 -41 hvcurveto -53 -120 rlineto -71 181 71 49 -235 -49 71 -181 -71 hlineto -53 120 rlineto 93 -41 -39 29 -47 hhcurveto -47 -27 -31 -39 -39 25 -26 35 34 19 19 37 3 hvcurveto 3 hlineto 11 -12 15 -25 12 -29 51 -115 rcurveline -31 -4 -21 -14 -19 -33 -103 -169 rcurveline -53 return -47 hvcurveto -77 -178 rlineto -92 266 74 50 -247 -50 74 -266 -92 hlineto -77 178 rlineto 109 -47 -45 41 -65 hhcurveto -49 -26 -34 -39 -39 22 -31 39 37 22 25 36 3 hvcurveto 3 hlineto 17 -19 17 -30 19 -43 74 -173 rcurveline -28 -4 -20 -12 -25 -43 -150 -254 rcurveline -68 return 277 102 -44 -44 -175 5 hlineto 105 68 rlineto 52 33 47 42 65 vvcurveto 67 -50 36 -85 -72 -51 -35 -43 -28 16 -17 27 27 14 18 24 13 -8 14 -11 7 vhcurveto 2 vlineto 6 11 15 3 19 hhcurveto 43 26 -26 -40 hvcurveto -11 vlineto -37 -26 -32 -33 -29 vhcurveto -124 -105 rlineto return 163 324 rmoveto 85 62 48 73 79 -49 40 -72 -47 -29 -26 -27 -12 hvcurveto -5 hlineto 9 127 rlineto 186 60 -219 hlineto -14 -204 47 -9 rlineto 16 11 17 15 27 hhcurveto 47 24 -27 -47 hvcurveto -10 vlineto -45 -25 -27 -53 -23 -17 2 7 -11 54 callsubr return rmoveto 134 75 134 -75 23 22 -126 121 -62 0 -126 -121 rlineto 157 154 rmoveto 99 25 74 63 24 hvcurveto -31 16 -21 -38 rlineto -35 -19 -22 -13 -55 hhcurveto -55 -22 13 35 -19 hvcurveto -21 38 -31 -16 rlineto -63 24 25 -74 99 hhcurveto endchar 60 32 23 33 27 hvcurveto -27 38 rlineto -21 -31 -21 -10 -35 hhcurveto -40 -34 15 19 -39 hvcurveto 23 -47 -33 14 -48 hhcurveto -60 -32 -23 -33 -27 hvcurveto 27 -38 rlineto 21 31 21 10 35 hhcurveto 40 34 -15 -19 39 hvcurveto -23 47 33 -14 48 hhcurveto endchar 52 hmoveto 207 50 -74 543 4 hlineto 52 -117 173 -361 179 361 52 117 rlineto 4 -543 27 callsubr -182 hlineto -200 -414 -4 0 -195 414 rlineto -191 -69 callsubr 252 50 -59 hlineto -210 317 203 281 rlineto 59 50 -200 -50 67 hlineto -159 -235 -4 0 -151 235 rlineto 73 50 -252 -50 59 hlineto 205 -309 -212 -289 rlineto -59 hlineto endchar 226 50 -51 hlineto -153 219 142 199 rlineto 57 50 -184 -50 61 hlineto -105 -158 -4 0 -107 158 rlineto 59 50 -224 -50 51 hlineto 151 -217 -148 -201 rlineto -57 hlineto endchar 201 hlineto 94 102 192 -303 rlineto -68 -50 253 50 -68 hlineto -240 373 210 225 rlineto 68 50 -220 -50 78 hlineto -198 -215 -97 -109 rlineto -4 324 -26 callsubr return rmoveto 101 49 67 123 123 -49 67 -101 -101 -49 -67 -123 -123 49 -67 101 hvcurveto 43 vmoveto -53 -18 38 63 hvcurveto 92 vlineto 63 18 38 53 53 18 -38 -63 vhcurveto -92 vlineto -63 -18 -38 -53 vhcurveto endchar 280 98 hlineto 209 -330 rlineto 154 50 -68 hlineto -161 254 -27 43 -19 12 -32 4 rlinecurve 85 173 21 44 20 29 58 callsubr 125 callsubr hlineto return 68 54 49 68 68 -54 49 -68 -68 -54 -49 -68 -68 54 -49 68 hvcurveto 37 vmoveto -36 -22 23 39 hvcurveto 36 vlineto 39 22 23 36 36 22 -23 -39 vhcurveto -36 vlineto -39 -22 -23 -36 vhcurveto endchar -294 hlineto -23 -33 -50 -14 -61 hhcurveto -107 -38 45 125 hvcurveto 161 74 50 -249 -50 74 -164 vlineto -152 61 -68 161 72 47 13 24 45 vhcurveto 4 -251 -94 return -232 -49 65 -146 hlineto -49 -45 -26 -68 -76 -27 27 75 vhcurveto 119 65 49 -232 -49 71 -127 vlineto -112 51 -46 107 72 47 25 43 31 vhcurveto 4 -202 -91 return 10 16 3 21 hhcurveto 39 27 -19 -37 hvcurveto -12 vlineto -32 -25 -27 -47 vhcurveto -29 -39 32 hlineto 51 24 -24 -39 hvcurveto -14 vlineto -41 -28 -24 -52 -23 -16 3 6 -10 54 callsubr return -347 -25 -97 -39 -37 vhcurveto -14 -15 -16 -7 -15 hhcurveto -5 -6 1 1 -5 hvcurveto 5 vlineto 15 5 15 21 25 vvcurveto 35 -23 25 -37 -39 -24 -29 -45 -51 37 -44 69 vhcurveto endchar -266 -25 -61 -28 -28 vhcurveto -12 -12 -13 -3 -13 hhcurveto -4 -3 0 1 -7 hvcurveto 3 vlineto 13 7 12 17 21 vvcurveto 31 -19 20 -33 -37 -21 -23 -39 -47 31 -36 63 vhcurveto endchar 132 486 rmoveto 41 27 30 36 hvcurveto 6 vlineto 35 -23 28 -39 vhcurveto -2 hlineto 11 41 30 46 47 40 rrcurveto -58 hlineto -56 -43 -45 -77 -62 vvcurveto -10 vlineto -39 24 -31 43 vhcurveto return hhcurveto -117 -85 -65 -106 -73 39 -53 64 -27 hvcurveto -4 vlineto -47 -12 -42 -30 -56 vvcurveto -45 23 -30 43 -13 vhcurveto -4 vlineto -55 -13 -52 -35 -54 vvcurveto -75 58 -47 168 vhcurveto return -136 298 rmoveto 34 vlineto 92 44 64 92 92 44 -64 -92 vhcurveto -34 vlineto -136 -244 rmoveto -92 -44 64 92 hvcurveto 38 272 -38 vlineto -92 -44 -64 -92 vhcurveto endchar vvcurveto 76 43 53 100 39 37 -6 -11 19 vhcurveto -4 vlineto -27 -13 -15 -21 -29 vvcurveto -35 21 -29 43 43 25 28 44 75 -81 56 -126 -131 -88 -80 -114 return -138 rmoveto 58 42 44 79 62 vvcurveto 10 vlineto 39 -24 30 -43 -43 -24 -29 -36 vhcurveto -6 vlineto -35 24 -30 39 vhcurveto 2 hlineto -11 -41 -33 -44 -47 -41 rrcurveto return -20 33 -23 14 -33 4 rlinecurve 51 115 13 29 19 24 12 13 19 callsubr -50 -40 -26 -96 -43 hvcurveto -53 -120 rlineto -78 180 71 50 return vmoveto -108 -35 88 147 hvcurveto 146 vlineto 147 35 88 108 108 35 -88 -147 vhcurveto -146 vlineto -147 -35 -88 -108 vhcurveto endchar -393 vlineto -139 -48 -67 -128 -128 -42 67 139 vhcurveto 393 74 50 -249 -50 74 -379 vlineto -203 75 -78 188 return 13 12 -1 -2 12 hvcurveto 107 vlineto 1 -8 -15 1 -15 hhcurveto -196 -163 -162 -199 -199 163 -162 196 hvcurveto return -9 -8 1 2 -7 vhcurveto 4 vlineto 13 4 9 17 20 vvcurveto 29 -17 21 -32 -32 -21 -25 -31 -47 34 -33 68 vhcurveto endchar 227 323 rmoveto 132 52 -132 269 35 callsubr -273 -88 -52 88 -273 -74 hlineto endchar 154 hlineto 193 330 rlineto 92 -280 -74 -50 247 50 -74 280 92 hlineto 193 -330 rlineto return 131 hlineto 142 238 rlineto 71 -188 -71 -50 235 50 -71 188 71 hlineto 142 -238 rlineto return vhcurveto 2 vlineto 11 19 28 5 33 hhcurveto 77 38 -44 -81 hvcurveto -73 -73 vlineto -167 -64 -53 -99 -88 56 -54 100 return rlineto 52 50 -203 -50 86 hlineto -158 -301 -4 0 -158 301 rlineto 86 50 -251 -50 52 hlineto return 0 688 -168 -33 0 -38 72 -13 rlineto -237 -4 vlineto 49 -21 -48 42 -80 -82 callgsubr return rmoveto -97 -36 65 92 hvcurveto 20 vlineto 92 36 65 97 97 36 -65 -92 vhcurveto -20 vlineto -92 -36 -65 -97 vhcurveto return -131 -386 -5 0 -131 386 rlineto 70 50 -224 -50 51 hlineto 168 -468 rlineto return 40 23 28 33 hvcurveto 6 vlineto 33 -23 28 -40 -40 -23 -28 -33 vhcurveto -6 vlineto -33 23 -28 40 vhcurveto return 39 21 26 33 hvcurveto 5 vlineto 33 -21 26 -39 -39 -21 -26 -33 vhcurveto -5 vlineto -33 21 -26 39 vhcurveto return 24 5 34 75 61 hvcurveto -8 21 -35 0 5 -18 rlineto -72 -47 -44 -33 -53 -52 callsubr -67 -42 -42 -108 -53 hvcurveto -88 -178 rlineto -98 266 74 50 -249 -50 74 -598 -74 return -371 rmoveto 269 50 -94 267 -91 callgsubr -337 -69 callsubr 270 39 -92 329 -55 hlineto -141 -65 15 -33 108 40 rlineto -271 -105 vlineto return 194 181 0 48 -194 181 -22 -30 121 -175 -121 -175 rlineto return 130 53 -130 136 -51 vlineto -26 -89 rlineto -32 -11 -9 -15 -53 hhcurveto -12 -53 67 return 44 33 hvcurveto -22 23 rlineto -27 -27 -8 -7 -20 hhcurveto -20 -29 16 13 -25 hvcurveto 12 -24 -25 return 8 12 -20 vhcurveto 4 vlineto 19 8 18 23 27 vvcurveto 37 -26 27 -39 -37 -26 -26 -43 -64 return -175 80 732 rmoveto 304 -684 -304 hlineto 352 -48 rmoveto 780 -400 -780 vlineto endchar -639 endchar -105 callsubr -102 callsubr endchar 34 callsubr endchar 34 callsubr 592 -70 callsubr -105 callsubr -102 callsubr 323 -70 callsubr -105 callsubr -102 callsubr 329 714 -85 callsubr -105 callsubr -102 callsubr 326 828 -2 callsubr -105 callsubr -102 callsubr 329 714 42 callsubr -22 -934 -99 callsubr -105 callsubr -102 callsubr 332 828 -1 callsubr -105 callsubr -102 callsubr 336 818 -101 callsubr -27 callsubr 25 -131 -47 callsubr -105 callsubr -102 callsubr 329 703 rmoveto -35 callsubr -8 callsubr -105 callsubr -102 callsubr 200 714 -106 callsubr -105 callsubr -102 callsubr 465 827 -75 callsubr -63 callsubr -105 callsubr -102 callsubr 200 714 -56 callsubr 135 -954 -99 callsubr -105 callsubr -102 callsubr 193 827 -64 callsubr -105 callsubr -102 callsubr 200 696 -76 callsubr -65 callsubr -105 callsubr -102 callsubr 200 696 -68 callsubr -105 callsubr -102 callsubr 423 736 -107 callsubr -105 callsubr -102 callsubr 307 -220 -99 callsubr -105 callsubr -102 callsubr 335 -18 callsubr -105 callsubr -102 callsubr 347 696 -101 callsubr -96 callsubr -105 callsubr -102 callsubr 186 759 -78 callsubr -105 callsubr 391 -482 rmoveto 47 28 17 23 15 hvcurveto -24 23 rlineto -12 -9 -15 -10 -19 hhcurveto -27 -15 19 27 24 11 26 83 69 hvcurveto 50 -52 vlineto -225 648 -103 0 -225 -648 rlineto -52 -50 -96 callgsubr 198 hlineto 1 -4 rlineto -71 -39 -50 -36 -51 vvcurveto -53 41 -23 52 vhcurveto endchar -105 callsubr -102 callsubr 329 693 rmoveto 98 callsubr -105 callsubr -102 callsubr 328 937 -7 callsubr -105 callsubr -102 callsubr 393 731 -95 callsubr 37 83 callsubr -41 callsubr endchar -407 endchar -41 callsubr -11 -48 callsubr -41 callsubr -36 780 -91 callsubr 12 356 57 callsubr 10 49 rlineto 129 8 77 89 25 79 -42 22 rcurveline 48 callsubr -50 80 207 -99 callgsubr -208 105 -141 167 -11 hvcurveto -13 -65 -32 callsubr -41 callsubr -134 776 -106 callsubr -41 callsubr -5 795 -80 callsubr 76 227 644 rmoveto 35 callsubr -598 -74 hlineto endchar 76 227 644 rmoveto 35 callsubr -598 -74 hlineto 238 718 -91 callsubr 76 114 callsubr -1 294 616 rmoveto 6 hlineto 188 -562 rlineto -382 hlineto -64 -54 rmoveto 553 51 hlineto -225 647 -103 0 -225 -647 rlineto endchar -97 callsubr endchar -97 callsubr 278 -70 callsubr -97 callsubr 284 714 -85 callsubr -97 callsubr 253 718 -91 callsubr -97 callsubr 155 714 -106 callsubr -97 callsubr 420 827 -75 callsubr -63 callsubr -97 callsubr 155 714 -56 callsubr 157 -954 -99 callsubr -97 callsubr 148 827 -64 callsubr -97 callsubr 155 696 -76 callsubr -65 callsubr -97 callsubr 155 696 -68 callsubr -97 callsubr 378 736 -107 callsubr -97 callsubr 284 733 -80 callsubr -97 callsubr 284 -220 -99 callsubr -97 callsubr 290 -18 callsubr -97 callsubr 302 696 -101 callsubr -96 callsubr -97 callsubr 141 759 -78 callsubr 141 538 -212 rmoveto 72 52 44 92 hvcurveto 724 74 50 -207 -50 74 -498 -5 vlineto -358 548 rlineto -188 -50 74 -598 -74 -50 207 50 -74 547 5 hlineto 390 -597 rlineto 23 -79 hlineto -64 -23 -31 -40 113 callsubr 5 526 -206 -73 callsubr 25 6 33 76 61 hvcurveto 16 callsubr -524 -50 74 -598 -74 -50 487 vlineto 1 -4 rlineto -72 -44 -39 -31 -51 -52 callsubr 76 114 callsubr -97 callsubr 348 731 -95 callsubr -20 329 -12 rmoveto 135 74 97 82 24 hvcurveto -40 20 rlineto -75 -29 -53 -57 -89 hhcurveto -108 -68 70 123 -13 hvcurveto 236 50 -238 100 238 50 -237 hlineto 119 5 58 88 128 hhcurveto 47 35 -7 -13 25 hvcurveto -4 vlineto -25 -12 -17 -22 -27 vvcurveto -37 21 -29 43 43 25 29 43 75 -77 59 -132 -182 -108 -133 -228 -219 105 -142 174 vhcurveto endchar -11 52 hmoveto 269 50 -94 270 185 -76 63 206 -63 -76 -185 270 269 -117 80 171 -524 -69 callsubr -13 callsubr endchar -13 callsubr 9 776 -85 callsubr -13 callsubr -120 776 -106 callsubr -13 callsubr -5 -242 -51 callsubr -13 callsubr 9 795 -80 callsubr 93 455 -12 rmoveto 139 94 66 140 137 -75 68 -136 hvcurveto 4 vlineto 177 249 rlineto 46 -602 -50 74 -598 -74 -50 175 644 314 vlineto -170 -242 rlineto -51 61 vlineto 101 48 -35 -105 hvcurveto -42 vlineto -91 -55 -43 -71 -29 -22 4 5 -15 vhcurveto 4 vlineto 17 8 16 18 29 vvcurveto 35 -21 25 -37 -39 -25 -27 -43 -60 51 -45 104 vhcurveto endchar 152 -86 callsubr 3 callsubr 249 -25 callsubr -264 -337 264 -26 callsubr endchar 152 227 496 rmoveto 337 -112 -337 hlineto -175 -384 rmoveto 249 50 -74 3 callsubr 249 50 -74 446 88 52 -88 100 74 50 -249 -50 74 -100 -337 100 74 50 -249 -50 74 -100 -88 -52 88 -446 -74 hlineto endchar 152 -86 callsubr 3 callsubr 249 -25 callsubr -264 -337 264 -26 callsubr 214 714 -106 callsubr -88 callsubr endchar 181 -86 callsubr 598 -26 callsubr 458 -62 -38 callsubr endchar 181 -86 callsubr 598 -26 callsubr 118 708 rmoveto 132 156 -88 43 -75 -183 rlineto 371 -786 -38 callsubr 128 -48 callsubr -88 callsubr 118 -70 callsubr -88 callsubr 124 714 -85 callsubr -88 callsubr -5 714 -106 callsubr -88 callsubr 218 736 -107 callsubr -88 callsubr 124 733 -80 callsubr -88 callsubr 124 -220 -99 callsubr -88 callsubr 130 -18 callsubr -88 callsubr 142 696 -101 callsubr -96 callsubr -88 callsubr -19 759 -78 callsubr -277 240 -206 -73 callsubr 24 9 36 75 59 hvcurveto -25 callsubr -598 -74 -50 202 vlineto 1 -4 rlineto -68 -43 -44 -34 -49 -52 callsubr -88 callsubr 188 731 -95 callsubr -172 157 -12 -38 callsubr endchar -172 157 -12 -38 callsubr 128 -48 callsubr -172 157 -12 -38 callsubr 5 776 -106 callsubr 78 -86 callsubr 95 callsubr endchar 78 -86 callsubr 95 callsubr 303 -71 callsubr -3 callsubr endchar -3 callsubr 118 -70 callsubr -3 callsubr 321 490 -23 callsubr -3 callsubr 249 -71 callsubr -3 callsubr 336 237 -80 callsubr -39 54 hmoveto 498 182 -80 -128 -243 258 hlineto 151 52 0 54 -151 -52 rlineto 282 74 50 -249 -50 74 -316 vlineto -90 -31 0 -54 90 31 rlineto -228 -74 vlineto endchar 237 92 callsubr -6 callsubr endchar -6 callsubr 341 -70 callsubr -6 callsubr 316 718 -91 callsubr -6 callsubr 331 -71 callsubr -6 callsubr 411 731 -95 callsubr -94 callsubr endchar 377 370 45 rmoveto -139 -69 95 141 hvcurveto 136 vlineto 141 69 95 139 55 45 -11 -27 29 vhcurveto -532 vlineto -27 -29 -45 -11 -55 hhcurveto -57 vmoveto 35 31 4 8 28 hvcurveto 494 16 callsubr -485 hlineto 8 -28 -31 4 -35 hhcurveto -196 -124 -137 -224 -224 124 -137 196 hvcurveto endchar -94 callsubr -6 713 -100 callsubr -94 callsubr 719 vmoveto 9 callsubr -94 callsubr -129 719 -106 callsubr -94 callsubr 136 832 -75 callsubr -63 callsubr -94 callsubr -129 719 -56 callsubr 157 -954 -99 callsubr -94 callsubr -136 832 -64 callsubr -94 callsubr -129 701 -76 callsubr -65 callsubr -94 callsubr -129 701 -68 callsubr -94 callsubr 94 741 -107 callsubr -94 callsubr -215 vmoveto -30 callsubr -94 callsubr 6 713 -89 callsubr -94 callsubr 18 701 -101 callsubr -96 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr endchar 85 362 45 -59 callsubr -55 callsubr -36 callsubr -6 -48 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr -158 vmoveto -30 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr 6 770 -89 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr 18 758 -101 callsubr -96 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr 55 793 -46 callsubr -37 callsubr -94 callsubr 79 713 -72 callsubr -62 callsubr -94 callsubr -143 764 -78 callsubr 69 50 hmoveto 254 133 hlineto -75 32 -66 80 99 vvcurveto 102 vlineto 105 71 102 120 120 71 -102 -105 vhcurveto -102 vlineto -99 -66 -80 -75 -32 vhcurveto -133 254 139 -80 -87 -123 53 vlineto 117 48 78 91 146 vvcurveto 163 -92 157 -204 -204 -92 -157 -163 -147 76 -89 119 -49 vhcurveto -53 -123 87 -80 vlineto endchar 79 callsubr endchar 79 callsubr 267 772 -100 callsubr -94 callsubr 64 736 -95 callsubr -3 227 644 55 callsubr 126 callsubr 85 362 45 -59 callsubr -55 callsubr 218 -221 rmoveto 50 -27 vlineto -44 -20 13 39 -28 hvcurveto -49 66 rlineto 158 21 104 132 204 vvcurveto 20 callsubr -202 100 -131 156 -24 vhcurveto 62 -91 rlineto -55 37 34 -22 77 hhcurveto endchar 5 callsubr endchar 5 callsubr 257 -70 callsubr 5 callsubr 232 718 -91 callsubr 5 callsubr 326 -71 callsubr -45 callsubr endchar -45 callsubr -14 -48 callsubr -45 callsubr -39 780 -91 callsubr -44 307 57 callsubr 10 48 rlineto 139 5 78 88 118 vvcurveto 109 -70 62 -124 31 vhcurveto -50 12 rlineto -92 24 -39 35 69 vvcurveto 67 46 45 93 107 40 -38 -68 vhcurveto -46 80 197 -80 -55 -5 vlineto 39 -20 -49 28 -77 hhcurveto -135 -88 -74 -115 -117 74 -61 127 -31 hvcurveto 53 -13 rlineto 85 -21 36 -36 -68 vvcurveto -79 -47 -50 -112 -105 -42 46 68 vhcurveto 46 -80 -205 80 60 5 vlineto 19 -37 43 -27 68 -7 rrcurveto -13 -65 -32 callsubr 65 84 callsubr -45 callsubr -137 776 -106 callsubr -45 callsubr -10 -242 -51 callsubr -19 callsubr 0 callsubr endchar -19 callsubr 280 147 53 -147 261 65 callsubr -261 -148 -53 148 -280 -94 hlineto endchar -19 callsubr 0 callsubr 113 718 -91 callsubr -19 callsubr 0 callsubr 135 -71 callsubr -19 callsubr 0 callsubr 135 -71 callsubr -3 227 489 55 callsubr -216 rmoveto 249 50 -74 112 -91 callgsubr -162 105 -26 callsubr endchar -79 callsubr endchar -79 callsubr 5 -48 callsubr -79 callsubr 11 776 -85 callsubr -79 callsubr -118 776 -106 callsubr -79 callsubr 105 798 -107 callsubr -79 callsubr -5 -158 -99 callsubr -79 callsubr 17 770 -89 callsubr -79 callsubr 29 758 -101 callsubr -96 callsubr -49 callsubr -40 callsubr endchar -49 callsubr -40 callsubr 5 -48 callsubr -49 callsubr -40 callsubr -5 -158 -99 callsubr -49 callsubr -40 callsubr 17 770 -89 callsubr -49 callsubr -40 callsubr 29 758 -101 callsubr -96 callsubr -49 callsubr -40 callsubr 66 793 -46 callsubr -37 callsubr -79 callsubr 90 770 -72 callsubr -62 callsubr -79 callsubr -132 821 -78 callsubr 102 467 -206 -73 callsubr 33 18 48 81 70 hvcurveto 60 49 21 75 123 vvcurveto 369 74 50 -207 -50 74 111 callsubr 31 29 3 6 25 vhcurveto 1 -4 rlineto -51 -37 -46 -37 -49 -52 callsubr -79 callsubr 11 755 rmoveto 98 callsubr -79 callsubr 75 793 -95 callsubr 31 287 hmoveto 96 hlineto 214 648 rlineto 52 50 -203 -50 88 hlineto -100 -306 -76 -249 -4 0 -76 248 -100 307 rlineto 88 50 -245 -50 52 hlineto endchar -12 callsubr endchar -12 callsubr 428 110 -100 callsubr -12 callsubr 305 116 -106 callsubr -12 callsubr 528 138 -107 callsubr -12 callsubr 440 110 -89 callsubr 41 19 hmoveto 61 callsubr 93 callsubr -66 callsubr endchar -66 callsubr 159 -70 callsubr -66 callsubr 36 714 -106 callsubr -66 callsubr 259 736 -107 callsubr -66 callsubr 142 -220 -99 callsubr -66 callsubr 171 -18 callsubr -66 callsubr 183 696 -101 callsubr -96 callsubr -66 callsubr 229 731 -95 callsubr 12 callsubr endchar 12 callsubr 247 705 -100 callsubr 12 callsubr 222 715 -91 callsubr 12 callsubr 253 730 -80 callsubr -104 callsubr endchar -103 callsubr endchar -104 callsubr 58 -58 callsubr -103 callsubr 9 -58 callsubr -104 callsubr 64 607 -85 callsubr -103 callsubr 15 607 -85 callsubr -104 callsubr 61 720 -2 callsubr -103 callsubr 12 720 -2 callsubr -104 callsubr 64 607 42 callsubr -20 -765 -99 callsubr -103 callsubr 15 607 42 callsubr 6 -765 -99 callsubr -104 callsubr 67 720 -1 callsubr -103 callsubr 18 720 -1 callsubr -104 callsubr 71 710 -101 callsubr -27 callsubr 25 -131 -47 callsubr -103 callsubr 22 710 -101 callsubr -27 callsubr 25 -131 -47 callsubr -104 callsubr 64 595 rmoveto -35 callsubr -8 callsubr -103 callsubr 15 595 rmoveto -35 callsubr -8 callsubr -104 callsubr -65 607 -106 callsubr -103 callsubr -114 607 -106 callsubr -104 callsubr 200 720 -75 callsubr -63 callsubr -103 callsubr 151 720 -75 callsubr -63 callsubr -104 callsubr -65 607 -56 callsubr 137 -785 -99 callsubr -103 callsubr -114 607 -56 callsubr 163 -785 -99 callsubr -104 callsubr -72 720 -64 callsubr -103 callsubr -121 720 -64 callsubr -104 callsubr -65 589 -76 callsubr -65 callsubr -103 callsubr -114 589 -76 callsubr -65 callsubr -104 callsubr -65 589 -68 callsubr -103 callsubr -114 589 -68 callsubr -39 294 584 -100 callsubr -39 294 758 -100 callsubr -639 -6 584 -100 callsubr -104 callsubr 158 627 -107 callsubr -103 callsubr 109 627 -107 callsubr -104 callsubr 44 -158 -99 callsubr -103 callsubr 21 -158 -99 callsubr 33 callsubr endchar 33 callsubr 202 -58 callsubr -104 callsubr 70 596 -89 callsubr -103 callsubr 21 596 -89 callsubr -104 callsubr 82 588 -101 callsubr -96 callsubr -103 callsubr 33 588 -101 callsubr -96 callsubr -104 callsubr -79 652 -78 callsubr -103 callsubr -128 652 -78 callsubr 78 308 45 rmoveto -92 -62 49 80 hvcurveto 19 vlineto 60 17 47 61 40 vhcurveto 217 -242 rlineto -35 -35 -47 -18 -59 hhcurveto -29 375 rmoveto -37 43 -33 39 47 vvcurveto 11 vlineto 56 33 43 63 60 36 -39 -52 vhcurveto -14 vlineto -56 -38 -43 -79 -41 vhcurveto 9 -426 rmoveto 76 63 27 47 49 hvcurveto 11 -13 rlineto -35 31 32 -14 51 hhcurveto 78 50 hlineto -56 -27 12 31 -29 hvcurveto -34 39 32 55 20 69 7 76 rlinecurve 78 50 -205 -50 72 hlineto -4 -60 -12 -57 -23 -44 -190 210 rcurveline 95 45 82 62 83 vvcurveto 84 -71 55 -111 -116 -76 -62 -97 -63 29 -52 41 -45 vhcurveto 15 -17 rlineto -91 -48 -61 -53 -96 vvcurveto -117 97 -72 147 vhcurveto endchar -90 238 50 rmoveto -57 -35 24 51 hvcurveto 20 vlineto 60 34 34 104 vhcurveto 63 -94 hlineto -65 -48 -30 -61 vhcurveto 199 -256 -73 callsubr 31 19 47 65 39 hvcurveto 17 10 rlineto 39 -72 319 vlineto 104 -63 60 -117 -125 66 callsubr 117 callsubr 91 39 44 45 19 hvcurveto 4 -6 hlineto -49 29 -32 57 vhcurveto 6 -4 hlineto -72 -39 -32 -30 -47 -52 callsubr -25 47 callsubr 214 -258 -73 callsubr 31 19 47 65 39 hvcurveto 15 8 1 1 1 1 rrcurveto 39 -72 471 -40 vlineto 53 callsubr 80 49 42 49 21 hvcurveto 6 -9 hlineto -48 28 -32 59 vhcurveto 7 -4 hlineto -72 -39 -32 -30 -47 -52 callsubr -39 418 341 rmoveto 60 32 23 33 27 hvcurveto -27 38 rlineto -21 -31 -21 -10 -35 hhcurveto -40 -34 15 19 -39 hvcurveto 23 -47 -33 14 -48 hhcurveto -60 -32 -23 -33 -27 hvcurveto 27 -38 rlineto 21 31 21 10 35 hhcurveto 40 34 -15 -19 39 hvcurveto -23 47 33 -14 48 hhcurveto -202 vmoveto 91 callsubr -104 callsubr 64 588 rmoveto 98 callsubr -103 callsubr 15 588 rmoveto 98 callsubr -104 callsubr 63 830 -7 callsubr -103 callsubr 14 830 -7 callsubr 221 430 -12 -28 callsubr 20 351 rlineto 233 -80 -233 vlineto 20 -351 -20 callsubr 221 617 45 -28 callsubr rlineto 9 84 10 72 47 vvcurveto 135 -105 155 -201 -203 -114 -154 -186 vhcurveto 82 hlineto 139 75 124 161 129 91 -85 -162 13 vhcurveto 13 -169 -20 callsubr 221 243 45 -28 callsubr 13 169 rlineto 162 11 95 85 127 hhcurveto 161 75 -124 -139 hvcurveto 82 hlineto 186 -114 154 -203 -201 -105 -155 -135 -47 10 -72 9 -84 vhcurveto -20 callsubr 221 187 98 rmoveto 299 hlineto 4 39 -200 36 263 234 165 165 -57 56 -165 -165 -234 -262 -35 199 -40 -4 rlineto endchar 221 367 -12 -17 callsubr 298 -19 rlineto 80 538 -80 -463 hlineto -298 -16 22 callsubr 221 374 98 rmoveto 299 298 hlineto -40 4 -35 -199 -234 262 -165 165 -57 -56 165 -165 263 -234 -200 -36 rlineto endchar 221 493 -12 rmoveto 68 callsubr -298 16 rlineto 463 -80 -538 80 vlineto 298 19 -116 -166 rlineto endchar 221 284 78 -17 callsubr 379 -20 rlineto 125 83 68 107 111 -87 63 -121 hvcurveto -80 vlineto 61 55 -29 -65 -67 -56 -28 -60 hvcurveto -379 -20 22 callsubr 221 576 78 rmoveto 68 callsubr -379 20 rlineto -60 -56 28 67 65 55 29 61 hvcurveto 80 vlineto -121 -87 -63 -111 -107 83 -68 125 hvcurveto 379 20 -116 -166 rlineto endchar 221 286 138 -17 callsubr 60 callsubr 221 574 -10 rmoveto 68 callsubr 59 callsubr -257 271 -17 callsubr 60 callsubr 221 286 96 -28 callsubr 16 298 rlineto 463 80 -538 -80 hlineto 19 -298 -20 callsubr 221 285 138 -17 callsubr 230 -21 230 21 -116 -166 31 -25 68 callsubr -230 21 -230 -21 22 callsubr 221 247 126 rmoveto 538 80 -463 hlineto -16 298 18 callsubr -19 -298 rlineto endchar 221 574 138 rmoveto 68 callsubr 59 callsubr endchar 221 574 286 rmoveto 68 callsubr 59 callsubr -257 -321 -17 callsubr 60 callsubr 221 574 96 -28 callsubr 19 298 rlineto 80 -538 -80 463 vlineto 16 -298 -20 callsubr 221 75 126 rmoveto 538 80 hlineto -19 298 18 callsubr -16 -298 rlineto -463 hlineto endchar 221 390 hmoveto 80 233 hlineto -20 351 18 callsubr -20 -351 rlineto endchar 221 430 -12 -28 callsubr 23 235 -23 235 18 callsubr -23 -235 23 -235 -20 callsubr 221 661 85 rmoveto 57 56 -165 165 -263 234 -92 callgsubr 234 -262 rlineto endchar 221 580 hmoveto 80 538 -80 hlineto -298 -19 116 166 -31 25 -211 -211 211 -211 31 25 -116 166 298 -16 rlineto endchar 221 432 -12 rmoveto 187 140 136 176 132 -95 82 -139 109 hvcurveto -92 callgsubr rlineto 125 -120 55 -60 -113 vvcurveto -140 -107 -96 -136 -136 -113 101 144 89 45 81 92 59 vhcurveto -45 64 rlineto -105 -64 -70 -106 -125 vvcurveto -185 147 -136 183 vhcurveto endchar 221 199 85 rmoveto 165 165 234 262 -90 callgsubr -263 -234 -165 -165 rlineto endchar 221 428 -12 rmoveto 183 147 136 185 125 -70 106 -105 64 hvcurveto -45 -64 rlineto 92 -59 45 -81 -89 vvcurveto -144 -113 -101 -136 -136 -107 96 140 113 55 60 125 120 vhcurveto -90 callgsubr rlineto -139 -109 -95 -82 -132 vvcurveto -176 140 -136 187 vhcurveto endchar 221 200 hmoveto 80 463 hlineto 298 16 -116 -166 31 -25 68 callsubr -298 19 rlineto -80 hlineto endchar -39 106 313 rmoveto 191 317 6 0 191 -317 51 28 -207 357 -76 0 -207 -357 rlineto endchar -39 418 240 rmoveto 91 callsubr -168 279 548 rmoveto 106 6 51 16 -26 80 -50 -17 -91 -57 rlineto 48 -211 rmoveto 67 50 -31 43 -82 68 -24 -18 39 -99 rlineto -65 180 rmoveto 29 hlineto 27 105 rlineto 53 -83 -53 vlineto -2 -146 rmoveto 10 28 -91 57 -50 17 -26 -80 51 -16 rlineto 68 -189 rmoveto 31 44 39 99 -24 18 -82 -68 -31 -43 rlineto endchar 279 450 123 rmoveto -67 -32 45 69 hvcurveto 104 vlineto 69 32 45 67 64 35 -34 -59 vhcurveto -146 vlineto -59 -35 -34 -64 vhcurveto 2 -244 rmoveto 83 76 7 11 67 hvcurveto 32 -225 vlineto -192 -122 138 198 hvcurveto 55 vlineto 195 119 150 200 200 119 -135 -180 vhcurveto -44 vlineto -133 -33 -62 -64 -37 -19 25 49 vhcurveto 315 -40 vlineto -33 -69 rlineto -4 hlineto 44 -16 -37 34 -60 hhcurveto -92 -74 -72 -148 -148 74 -72 92 63 35 36 52 23 hvcurveto 4 hlineto -52 7 39 -36 69 hhcurveto 121 48 114 139 229 -156 159 -229 -232 -152 -173 -248 -248 150 -162 228 hvcurveto endchar -104 callsubr 128 626 -95 callsubr -103 callsubr 79 626 -95 callsubr -34 316 17 callsubr 29 -64 rmoveto -104 callgsubr 321 -53 callsubr -676 40 vlineto 52 79 rlineto 4 hlineto -49 21 51 -42 81 hhcurveto endchar -259 308 -143 rmoveto 64 hlineto -266 891 rlineto -64 hlineto endchar 0 221 626 rmoveto 89 -241 -89 hlineto -50 vmoveto 89 -263 -89 hlineto 140 554 rmoveto 75 36 -43 -60 hvcurveto -35 vlineto -60 -36 -43 -75 vhcurveto -50 vmoveto 15 hlineto 71 43 -48 -67 hvcurveto -33 vlineto -67 -43 -48 -71 vhcurveto -15 hlineto -53 -154 rmoveto 55 103 41 hlineto 111 77 74 104 100 -85 53 -77 8 hvcurveto 4 vlineto 68 13 76 52 90 vvcurveto 91 -70 67 -120 vhcurveto -21 103 -55 -103 -258 -50 74 -556 -74 -50 258 hlineto endchar -326 126 -138 rmoveto 61 898 -61 hlineto endchar -1 221 626 rmoveto 147 hlineto 65 39 -43 -60 hvcurveto -35 vlineto -60 -39 -43 -65 vhcurveto -147 hlineto -50 vmoveto 154 hlineto 72 43 -47 -68 hvcurveto -33 vlineto -68 -43 -47 -72 vhcurveto -154 hlineto 12 -154 rmoveto 55 103 66 -103 55 103 hlineto 110 3 73 73 102 vvcurveto 100 -85 53 -77 8 vhcurveto 4 vlineto 68 13 76 52 90 vvcurveto 85 -61 63 -104 9 vhcurveto 104 -55 -103 -66 103 -55 -103 -183 -50 74 -556 -74 -50 183 vlineto endchar -305 304 -138 rmoveto 49 -100 266 vlineto 66 -51 51 -60 11 vhcurveto 12 vlineto 60 11 51 51 66 vvcurveto 266 100 49 -101 vlineto -59 -28 -34 -51 hvcurveto -248 vlineto -59 -42 -29 -59 vhcurveto -56 vlineto 59 42 -29 -59 hvcurveto -248 vlineto -51 28 -34 59 vhcurveto endchar -305 29 -138 rmoveto 101 hlineto 59 28 34 51 hvcurveto 248 vlineto 59 42 29 59 vhcurveto 56 vlineto -59 -42 29 59 hvcurveto 248 vlineto 51 -28 34 -59 vhcurveto -101 -49 100 -266 hlineto -66 51 -52 60 -10 vhcurveto -12 vlineto -60 -10 -51 -52 -66 vvcurveto -266 -100 vlineto endchar -349 57 -138 rmoveto 207 49 -119 800 119 49 -207 hlineto endchar -349 26 -138 rmoveto 207 898 -207 -49 119 -800 -119 hlineto endchar -39 300 595 -85 callsubr -39 300 764 -85 callsubr -39 300 594 -83 callsubr -39 300 765 -83 callsubr -639 -3 708 -2 callsubr -639 -3 878 -2 callsubr -639 595 vmoveto 9 callsubr -639 3 708 -1 callsubr -639 3 878 -1 callsubr -639 7 698 -101 callsubr -27 callsubr 25 -131 -47 callsubr -639 7 868 -101 callsubr -27 callsubr 25 -131 -47 callsubr -639 583 vmoveto -35 callsubr -8 callsubr -639 753 vmoveto -35 callsubr -8 callsubr -326 126 401 rmoveto 61 359 -61 hlineto -898 vmoveto 61 359 -61 hlineto endchar -223 208 177 rmoveto 77 47 53 68 hvcurveto 11 vlineto 68 -47 53 -77 -77 -47 -53 -68 vhcurveto -11 vlineto -68 47 -53 77 vhcurveto endchar -33 callsubr endchar -33 callsubr -6 -58 callsubr -39 269 599 -91 callsubr -39 269 768 -91 callsubr -639 -31 599 -91 callsubr -39 307 558 -23 callsubr -639 7 558 -23 callsubr -33 callsubr -31 611 -91 callsubr -119 292 57 callsubr 10 49 rlineto 103 5 55 67 24 65 -36 23 rcurveline 36 callsubr -151 77 -108 137 -11 vhcurveto -13 -65 -32 callsubr -33 callsubr -129 607 -106 callsubr -33 callsubr 625 vmoveto 51 callsubr -19 258 87 rmoveto -63 32 -35 70 96 vvcurveto 137 vlineto 122 50 98 139 3 vhcurveto -121 -727 rmoveto 55 hlineto 14 82 rlineto -1 9 15 -1 11 hhcurveto 133 78 97 81 24 hvcurveto -41 21 rlineto -75 -29 -55 -57 -90 hhcurveto -18 -16 1 3 -13 hvcurveto 95 574 30 -3 24 -6 18 -9 rlinecurve -4 vlineto -27 -12 -14 -22 -27 vvcurveto -35 22 -30 41 40 26 28 43 64 -54 50 -96 15 vhcurveto 14 85 -55 0 -13 -80 rlineto -9 hlineto -184 -113 -126 -225 -176 72 -125 121 -37 hvcurveto endchar -39 311 57 callsubr 16 80 -42 0 -19 -96 -32 callsubr -639 11 57 callsubr 16 80 -42 0 -19 -96 -32 callsubr 561 450 -12 rmoveto -84 callgsubr -140 -114 115 140 140 114 115 140 112 callsubr 620 hmoveto -84 callgsubr -120 -104 85 115 -24 hvcurveto 209 110 -209 hlineto 115 24 104 85 120 hhcurveto 112 callsubr endchar -116 258 62 rmoveto -69 19 -41 61 89 vvcurveto 79 vlineto 81 42 62 68 19 vhcurveto -2 -586 rmoveto 55 103 hlineto 97 11 52 62 24 64 rrcurveto -36 23 -27 -51 -37 -38 -75 -3 rlinecurve 422 vlineto 36 25 -6 -11 20 hvcurveto -4 vlineto -27 -11 -16 -20 -27 vvcurveto -35 21 -27 39 41 24 24 43 68 -61 51 -100 5 vhcurveto 100 -55 -102 vlineto -125 -16 -87 -101 -151 vvcurveto -152 76 -105 136 -13 vhcurveto endchar 273 375 hmoveto 68 hlineto 223 470 91 215 -81 34 -92 -216 -173 -439 -4 0 -104 260 -85 185 -79 -36 82 -185 rlineto endchar -39 171 595 -106 callsubr -39 171 764 -106 callsubr -639 136 708 -75 callsubr -63 callsubr -639 136 877 -75 callsubr -63 callsubr -639 -134 577 90 callsubr -639 -134 746 90 callsubr -639 -129 595 -106 callsubr -639 -136 708 -64 callsubr -639 -136 877 -64 callsubr -639 -129 577 -76 callsubr -65 callsubr -639 -129 746 -76 callsubr -65 callsubr -639 -129 577 -68 callsubr -639 -129 746 -68 callsubr -352 143 -12 rmoveto 52 callsubr 406 vmoveto 52 callsubr endchar -20 220 113 rmoveto -40 39 -20 57 76 vvcurveto 137 vlineto 93 29 78 72 33 vhcurveto 68 -560 rmoveto -26 3 -22 7 -18 9 46 556 rcurveline 3 16 19 1 13 hhcurveto 19 hlineto -174 -727 rmoveto 50 hlineto 7 89 rlineto -5 21 18 -3 24 hhcurveto -7 -81 50 0 7 84 111 16 62 85 22 73 rlinecurve -41 21 -27 -69 -48 -52 -76 -9 rlinecurve 47 574 23 -3 20 -6 15 -7 rlinecurve -4 vlineto -25 -11 -15 -24 -27 vvcurveto -35 20 -28 43 39 25 27 43 61 -51 48 -88 17 vhcurveto 7 88 -50 0 -7 -81 rlineto 1 -11 -14 0 -5 hhcurveto -7 -13 0 -1 -13 hvcurveto 7 81 -50 0 -7 -89 rlineto -137 -33 -78 -117 -192 vvcurveto -151 53 -121 108 -51 vhcurveto endchar -372 99 108 callsubr endchar -639 -9 -254 -51 callsubr -39 300 582 rmoveto 10 callsubr -639 582 vmoveto 10 callsubr 141 390 -12 rmoveto 192 144 139 222 222 -144 139 -192 -192 -144 -139 -222 -222 144 -139 192 hvcurveto 49 vmoveto -164 -116 121 160 hvcurveto 62 vlineto 160 116 121 164 164 116 -121 -160 vhcurveto -62 vlineto -160 -116 -121 -164 vhcurveto 8 114 rmoveto 83 47 50 51 19 hvcurveto -29 17 rlineto -36 -19 -29 -26 -59 hhcurveto -68 -45 46 76 hvcurveto 59 vlineto 69 47 49 68 31 18 -4 -7 13 vhcurveto -2 vlineto -21 -9 -11 -15 -20 vvcurveto -27 17 -21 28 31 19 20 31 55 -52 40 -81 -108 -77 -77 -122 -117 63 -80 115 vhcurveto endchar 273 178 11 rmoveto 121 120 155 178 155 -178 121 -120 63 62 -121 121 -177 155 177 155 121 121 -63 62 -121 -120 -155 -178 -155 178 -121 120 -63 -62 121 -121 177 -155 -177 -155 -121 -121 rlineto endchar -5 317 170 rmoveto -84 -38 57 77 hvcurveto 90 vlineto 77 38 57 84 84 38 -57 -77 vhcurveto -90 vlineto -77 -38 -57 -84 vhcurveto -53 vmoveto 53 44 14 28 35 hvcurveto 99 -100 50 50 -101 101 rlineto 24 37 12 47 55 vvcurveto 55 -12 47 -24 37 vhcurveto 101 101 -50 50 -99 -100 rlineto 28 -35 -44 14 -53 hhcurveto -53 -44 -14 -28 -35 hvcurveto -99 100 -50 -50 101 -101 rlineto -24 -37 -12 -47 -55 vvcurveto -55 12 -47 24 -37 vhcurveto -101 -101 50 -50 99 100 rlineto -28 35 44 -14 53 hhcurveto endchar -26 29 callsubr 67 callsubr 119 callsubr endchar -88 416 440 rmoveto 87 84 -87 hlineto -102 -28 rlineto -28 vlineto -55 51 rmoveto 33 hlineto 26 142 rlineto 87 -85 -87 vlineto -185 -221 rmoveto 87 hlineto 102 28 0 28 -102 28 rlineto -87 hlineto 211 -724 rmoveto 33 hlineto 26 226 0 224 -26 195 -33 0 -26 -195 rlineto -224 vlineto endchar -78 422 440 rmoveto 87 84 -87 hlineto -102 -28 rlineto -28 vlineto 102 -444 rmoveto 87 84 -87 hlineto -102 -28 rlineto -28 vlineto -55 467 rmoveto 33 hlineto 26 142 rlineto 87 -85 -87 vlineto -861 vmoveto 85 87 hlineto -26 142 -33 0 -26 -142 rlineto -185 553 rmoveto 87 hlineto 102 28 0 28 -102 28 rlineto -87 hlineto -500 vmoveto 87 hlineto 102 28 0 28 -102 28 rlineto -87 hlineto 211 -5 rmoveto 33 hlineto 26 113 0 116 -26 113 -33 0 -26 -113 rlineto -116 vlineto endchar -26 29 callsubr 67 callsubr 119 callsubr 299 570 -23 callsubr -26 29 callsubr 67 callsubr rlineto 543 85 50 -85 95 vlineto -96 -19 rlineto -76 -185 -50 185 -176 -4 vlineto 49 -21 -48 42 -80 -82 callgsubr endchar -173 233 417 rmoveto -65 -44 53 66 66 44 53 65 65 44 -53 -66 -66 -44 -53 -65 hvcurveto -55 vmoveto 97 73 75 99 99 -73 75 -97 -97 -73 -75 -99 -99 73 -75 97 hvcurveto endchar -39 394 615 -107 callsubr -39 394 786 -107 callsubr -639 5 708 -75 callsubr 124 -128 rmoveto -74 callsubr -196 -57 callsubr -639 5 880 -75 callsubr 124 -128 rmoveto -74 callsubr -196 -57 callsubr -639 -31 729 rmoveto 62 hlineto 125 151 -27 19 -129 -99 -129 99 -27 -19 rlineto 254 -285 rmoveto -74 callsubr -196 -57 callsubr -639 -31 901 rmoveto 62 hlineto 125 151 -27 19 -129 -99 -129 99 -27 -19 rlineto 254 -285 rmoveto -74 callsubr -196 -57 callsubr -639 94 615 -107 callsubr -639 -5 708 rmoveto 31 15 -76 179 -79 -40 rlineto 227 -267 rmoveto -74 callsubr -196 -57 callsubr -639 -5 880 rmoveto 31 15 -76 179 -79 -40 rlineto 227 -267 rmoveto -74 callsubr -196 -57 callsubr -639 -143 761 rmoveto 286 63 -286 hlineto 241 -229 rmoveto -74 callsubr -196 -57 callsubr -639 -143 933 rmoveto 286 63 -286 hlineto 241 -229 rmoveto -74 callsubr -196 -57 callsubr -39 66 276 rmoveto 468 58 -468 hlineto 234 91 rmoveto 122 callsubr -368 vmoveto 122 callsubr endchar -46 327 302 rmoveto 84 -19 40 -40 -69 vvcurveto -72 -40 -44 -84 -11 vhcurveto -51 370 rmoveto -84 23 -40 36 64 vvcurveto 60 43 44 81 8 vhcurveto -2 -734 rmoveto 55 78 hlineto 131 15 71 76 113 vvcurveto 108 -64 61 -140 35 vhcurveto 249 vlineto 45 -1 32 -8 19 -9 rrcurveto -3 vlineto -25 -13 -16 -21 -29 vvcurveto -35 21 -29 43 41 25 28 43 68 -66 52 -117 7 vhcurveto 77 -55 -78 vlineto -121 -11 -81 -65 -105 vvcurveto -113 71 -60 133 -33 vhcurveto -270 vlineto -55 1 -38 7 -24 11 rrcurveto 3 vlineto 25 13 16 21 29 vvcurveto 35 -21 29 -43 -41 -25 -28 -43 -71 75 -53 129 -4 vhcurveto endchar -41 49 hmoveto 475 54 -475 hlineto 217 125 rmoveto -80 -45 47 88 hvcurveto 48 vlineto 88 45 47 80 56 55 -32 -59 vhcurveto -136 vlineto -59 -55 -32 -56 vhcurveto -32 -64 rmoveto 77 52 47 40 13 hvcurveto 6 -79 hlineto 142 25 0 40 -55 9 rlineto 431 75 51 -75 81 vlineto -92 -17 rlineto -64 -148 -51 148 -149 -4 vlineto 42 -16 -46 40 -77 hhcurveto -111 -78 -83 -140 -140 78 -83 111 hvcurveto endchar -39 300 613 -80 callsubr -39 300 783 -80 callsubr -639 613 vmoveto 51 callsubr -639 -170 vmoveto -30 callsubr -82 callsubr endchar -332 52 2 callsubr 571 -60 callsubr -536 -22 callsubr -98 callsubr endchar -98 callsubr -12 -58 callsubr -98 callsubr -6 607 -85 callsubr -98 callsubr -37 611 -91 callsubr -98 callsubr -135 607 -106 callsubr -98 callsubr 130 720 -75 callsubr -63 callsubr -98 callsubr -135 607 -56 callsubr 161 -785 -99 callsubr -98 callsubr -142 720 -64 callsubr -98 callsubr -135 589 -76 callsubr -65 callsubr -98 callsubr -135 589 -68 callsubr -98 callsubr 88 627 -107 callsubr -98 callsubr -6 625 -80 callsubr -98 callsubr -2 -158 -99 callsubr -98 callsubr 596 vmoveto 31 16 -75 183 -88 -43 rlineto endchar -98 callsubr 12 588 -101 callsubr -96 callsubr -39 300 391 rmoveto -86 -33 58 69 hvcurveto 15 vlineto 69 33 58 86 85 34 -58 -69 vhcurveto -15 vlineto -69 -34 -58 -85 vhcurveto -352 vmoveto -93 -46 60 81 hvcurveto 21 vlineto 81 46 60 93 93 46 -60 -81 vhcurveto -21 vlineto -81 -46 -60 -93 vhcurveto -51 vmoveto 152 93 78 120 105 -82 57 -84 13 hvcurveto 7 vlineto 73 11 72 64 89 vvcurveto 112 -90 66 -134 -134 -90 -66 -112 -89 72 -64 72 -11 vhcurveto -7 vlineto -82 -13 -83 -57 -105 vvcurveto -120 93 -78 152 vhcurveto endchar -267 186 209 -44 callsubr -267 186 539 -44 callsubr 171 133 -12 rmoveto 52 callsubr 272 hmoveto 52 callsubr 272 hmoveto 52 callsubr endchar -98 callsubr -149 652 -78 callsubr 144 32 272 rmoveto 719 62 -719 hlineto endchar -52 32 272 rmoveto 523 62 -523 hlineto endchar -2 380 2 callsubr 377 vlineto 129 -49 65 -125 -82 -50 -49 -43 -16 vhcurveto -4 92 hlineto -165 -33 0 -38 71 -13 rlineto -396 -71 -50 238 50 -71 317 vlineto 66 59 31 56 77 36 -43 -92 vhcurveto -419 -22 callsubr -99 148 322 rmoveto 95 45 61 84 84 38 -64 -93 vhcurveto -11 -251 vlineto 193 -516 -73 callsubr 32 16 43 91 80 hvcurveto 28 25 23 32 12 32 -37 24 rcurveline -53 -27 -45 -38 -80 hhcurveto -92 -59 66 108 hvcurveto 29 350 25 vlineto 143 -82 101 -139 -135 -98 -108 -163 -163 88 -108 150 31 19 4 8 15 vhcurveto 1 -4 rlineto -63 -39 -41 -36 -51 -52 callsubr -39 66 381 rmoveto 468 58 -468 hlineto -268 vmoveto 468 58 -468 hlineto endchar 81 178 589 rmoveto 43 40 61 31 81 hhcurveto 83 59 -31 -43 39 hvcurveto -193 -363 vlineto 182 -408 rmoveto 142 94 74 100 53 hvcurveto -45 25 rlineto -89 -48 -76 -60 -120 hhcurveto -81 -61 32 43 -40 hvcurveto 236 507 vlineto 219 -137 142 -188 -188 -137 -142 -219 -219 137 -142 188 vhcurveto endchar -69 281 41 rmoveto -83 -52 52 105 hvcurveto 93 vlineto 105 52 52 83 83 52 -52 -105 vhcurveto -93 vlineto -105 -52 -52 -83 vhcurveto -53 vmoveto 145 92 91 190 196 -81 120 -87 79 hvcurveto 76 54 -32 42 -87 -62 -25 19 -29 20 -23 11 rlinecurve -87 hlineto 39 -21 43 -35 32 -29 rrcurveto -85 -59 32 -42 89 63 rlineto 47 -52 34 -66 23 -67 -5 -2 rcurveline 43 -31 -43 24 -59 hhcurveto -130 -85 -101 -156 -159 89 -101 148 hvcurveto endchar -98 callsubr 58 626 -95 callsubr -357 121 191 rmoveto 40 hlineto 29 310 rlineto 197 -98 -197 vlineto 49 -513 rmoveto 52 callsubr endchar -357 92 -180 rmoveto 98 197 hlineto -29 310 -40 0 -29 -310 rlineto 49 377 rmoveto 52 callsubr endchar -289 44 hmoveto 258 50 -91 415 109 53 -109 87 hlineto 72 28 42 55 13 13 -1 -3 8 -107 callgsubr -76 -103 -70 -67 -102 vhcurveto -73 -71 -53 71 -415 -71 vlineto endchar 561 737 143 rmoveto 69 60 33 55 39 hvcurveto -63 45 rlineto -35 -23 -39 -23 -45 hhcurveto -70 -57 56 75 75 57 56 70 45 39 -23 -35 23 hvcurveto 63 45 rlineto 55 -39 -60 33 -69 hhcurveto -115 -91 -91 -115 -115 91 -91 115 hvcurveto 1 -152 rmoveto 119 103 57 92 67 hvcurveto -63 46 rlineto -68 -47 -85 -52 -96 hhcurveto -144 -136 115 168 168 136 115 144 97 83 -53 -67 48 hvcurveto 63 46 rlineto 92 -67 -103 57 -119 hhcurveto -186 -152 -140 -180 -19 hvcurveto -136 235 170 hlineto 61 76 rlineto -303 -696 hlineto 72 52 rlineto 257 136 vlineto -180 19 153 -140 185 hhcurveto endchar -4 44 hmoveto 238 50 -71 415 224 -415 -71 -50 238 50 -71 480 hlineto -152 -12 rlineto -168 36 hlineto 100 50 64 97 47 18 -5 -7 19 vhcurveto -3 vlineto -17 -7 -12 -15 -25 vvcurveto -28 19 -24 35 33 24 25 35 57 -57 39 -115 -152 -85 -81 -135 vhcurveto -26 -71 -53 71 -415 -71 vlineto endchar -39 268 -12 rmoveto 156 103 89 132 147 -94 74 -125 -80 -53 -42 -47 -25 hvcurveto -4 1 19 261 rlineto 330 95 -375 hlineto -25 -385 57 -12 rlineto 35 21 41 29 60 hhcurveto 93 51 -56 -95 hvcurveto -24 vlineto -96 -53 -55 -107 -45 -38 131 callsubr 80 -64 124 vhcurveto endchar -289 163 -6 -42 callsubr -289 163 324 -42 callsubr 1 44 hmoveto 238 50 -71 415 109 53 -109 65 hlineto 83 50 44 84 39 29 -4 -12 27 vhcurveto -644 -71 -50 238 50 -71 710 vlineto -95 -19 rlineto 11 -27 -31 8 -52 hhcurveto -132 -84 -73 -121 hvcurveto -48 -71 -53 71 -415 -71 vlineto endchar -138 63 -146 rmoveto 113 68 65 125 13 hvcurveto 25 247 178 0 6 52 -178 0 18 192 rlineto 101 9 38 33 53 hhcurveto 13 15 -1 -3 7 hvcurveto -3 vlineto -20 -7 -16 -20 -24 vvcurveto -28 19 -21 31 39 24 30 36 49 -43 33 -73 -113 -70 -65 -125 -11 vhcurveto -16 -177 -151 0 -6 -52 151 0 -27 -262 rlineto -100 -11 -36 -34 -53 hhcurveto -13 -15 1 3 -7 hvcurveto 3 vlineto 20 7 16 20 24 vvcurveto 28 -19 21 -31 -39 -24 -30 -36 -49 43 -33 73 vhcurveto endchar -39 355 602 rmoveto 4 -367 -256 hlineto 256 -235 rmoveto 96 161 101 74 -101 463 -95 hlineto -321 -472 rlineto -65 320 vlineto endchar -268 198 311 14 callsubr -268 198 641 14 callsubr -500 -209 hmoveto 66 hlineto 493 698 rlineto -66 hlineto endchar -88 122 -83 rmoveto 36 15 28 39 19 vhcurveto 159 hlineto 81 31 -24 -49 -55 -56 -32 -96 hvcurveto -50 hlineto -77 -46 26 51 hvcurveto 147 319 rmoveto -69 -34 40 65 hvcurveto 36 vlineto 65 34 40 69 69 34 -40 -65 vhcurveto -36 vlineto -65 -34 -40 -69 vhcurveto -4 -448 rmoveto 173 88 64 101 88 -55 50 -123 hvcurveto -118 hlineto -56 -24 13 32 28 29 22 32 8 hvcurveto -4 18 19 -2 20 hhcurveto 117 87 65 106 51 -20 33 -19 21 hvcurveto 47 4 vlineto -15 9 17 -6 19 hhcurveto 35 19 20 31 31 -24 20 -31 -42 -33 -25 -77 -3 hvcurveto 23 -32 -43 17 -60 105 callsubr endchar -15 callsubr endchar -16 callsubr endchar -16 callsubr 3 807 -85 callsubr -15 callsubr 8 807 -85 callsubr -16 callsubr -126 807 -106 callsubr -15 callsubr -121 807 -106 callsubr -16 callsubr 3 794 rmoveto 10 callsubr -15 callsubr 8 794 rmoveto 10 callsubr -16 callsubr 3 825 -80 callsubr -15 callsubr 8 825 -80 callsubr 20 444 -12 rmoveto 120 68 70 91 81 -48 44 -92 25 hvcurveto -26 8 rlineto -61 19 -19 20 47 vvcurveto 51 42 32 93 vhcurveto 40 63 hlineto 124 -79 97 -141 -141 -85 -86 -132 vhcurveto -24 -71 -53 71 -415 -71 -50 167 556 vlineto 100 41 51 89 83 45 -52 -101 vhcurveto -34 vlineto -103 -5 -67 -54 -88 vvcurveto -81 39 -40 91 -27 vhcurveto 26 -8 rlineto 64 -19 25 -21 -53 vvcurveto -57 -40 -32 -73 -33 -22 4 8 -23 vhcurveto 3 vlineto 15 7 11 17 23 vvcurveto 29 -18 22 -31 -32 -21 -24 -35 -56 58 -45 109 vhcurveto endchar -45 367 -212 rmoveto 116 101 70 144 136 -77 60 -133 hvcurveto 175 271 rlineto 49 -348 87 vlineto 72 29 42 57 13 16 -1 -3 7 -107 callgsubr -80 -104 -70 -67 -102 vhcurveto -541 -71 -50 167 465 238 vlineto -165 -253 rlineto -50 63 vlineto 99 49 -48 -96 hvcurveto -36 vlineto -100 -46 -45 -85 -26 -21 3 6 -16 vhcurveto 3 vlineto 19 8 11 15 25 vvcurveto 28 -21 23 -32 -32 -23 -24 -36 -64 69 -36 85 vhcurveto endchar -39 306 584 -89 callsubr -39 306 758 -89 callsubr -639 6 584 -89 callsubr -39 89 -12 rmoveto 422 244 0 68 -422 244 0 -69 353 -206 0 -6 -353 -206 rlineto endchar -39 89 hmoveto 422 58 -422 hlineto 60 vmoveto 422 196 0 72 -422 196 0 -62 353 -167 0 -6 -353 -167 rlineto endchar 40 355 53 rmoveto -12 -13 0 3 -11 hvcurveto 31 227 rlineto 162 -85 hlineto -95 -65 -50 -92 vhcurveto -82 16 rmoveto -75 33 -38 80 108 vvcurveto 121 vlineto 125 60 99 132 8 vhcurveto -104 -725 rmoveto 55 hlineto 11 81 rlineto -1 7 7 0 5 hhcurveto 102 64 58 50 21 hvcurveto 4 hlineto 52 -106 rlineto 37 283 61 50 -317 hlineto 44 311 41 -4 31 -8 29 -15 rlinecurve -4 vlineto -25 -12 -16 -23 -28 vvcurveto -35 22 -29 41 43 25 28 44 72 -70 55 -111 12 vhcurveto 12 83 -55 0 -11 -80 rlineto -188 -3 -119 -120 -228 vvcurveto -191 79 -121 131 -31 vhcurveto endchar -123 230 78 rmoveto 22 30 -97 callgsubr 404 -181 rmoveto 22 30 -97 callgsubr endchar -123 76 78 rmoveto 128 callsubr 232 -30 rmoveto 128 callsubr endchar -333 230 78 rmoveto 22 30 -97 callgsubr endchar -333 76 78 rmoveto 128 callsubr endchar -9 -77 callsubr 72 callsubr 322 -21 callsubr endchar -9 -77 callsubr -67 callsubr -83 callgsubr -9 -77 callsubr 72 callsubr 322 -21 callsubr -10 723 -106 callsubr -639 18 576 -101 callsubr -96 callsubr -639 18 746 -101 callsubr -96 callsubr -639 -94 480 rmoveto 105 78 callsubr -93 vlineto endchar -14 312 -12 rmoveto 132 75 54 73 44 -26 28 -41 -43 -21 -30 -37 -27 16 -20 25 -12 hvcurveto -4 vlineto -11 -19 -36 -8 -39 hhcurveto -92 -41 51 69 33 11 31 25 27 hvcurveto 339 50 -276 hlineto 154 100 rlineto 122 50 -83 hlineto 15 23 11 35 37 vvcurveto 103 -83 63 -123 -132 -75 -54 -73 -44 26 -28 41 43 21 30 37 27 -16 20 -25 12 vhcurveto 4 vlineto 11 19 36 8 39 hhcurveto 92 41 -51 -69 -33 -11 -31 -25 -27 hvcurveto -339 -50 276 hlineto -154 -100 rlineto -122 -50 83 hlineto -15 -23 -11 -35 -37 vvcurveto -103 83 -63 123 vhcurveto endchar -39 379 584 -72 callsubr -62 callsubr -39 379 758 -72 callsubr -62 callsubr -639 79 584 -72 callsubr -62 callsubr -245 63 266 rmoveto 268 78 -268 hlineto endchar -82 callsubr 119 577 rmoveto 123 callsubr endchar -82 callsubr 113 534 -100 callsubr -82 callsubr 119 545 -85 callsubr -82 callsubr -10 545 -106 callsubr -82 callsubr 213 565 -107 callsubr -82 callsubr 119 577 rmoveto 123 callsubr 1 -797 -99 callsubr -82 callsubr 125 534 -89 callsubr -82 callsubr 137 526 -101 callsubr -96 callsubr -13 -90 callsubr 74 callsubr 119 577 rmoveto 123 callsubr 315 hmoveto 123 callsubr -111 -839 rmoveto 101 58 54 117 hvcurveto 571 -60 callsubr -536 -22 callsubr -13 -90 callsubr 74 callsubr 113 534 rmoveto 132 156 -88 43 -75 -183 rlineto 241 -812 rmoveto 101 58 54 117 hvcurveto 571 -60 callsubr 43 callsubr 106 796 -100 callsubr -82 callsubr -24 590 -78 callsubr 96 527 165 rmoveto -61 -43 46 93 -23 hvcurveto 90 25 42 45 60 hhcurveto 57 36 -46 -69 hvcurveto -44 vlineto -69 -36 -46 -57 vhcurveto -319 hmoveto -57 -36 46 69 hvcurveto 44 vlineto 69 36 46 57 61 43 -46 -93 23 vhcurveto -90 -25 -42 -45 -60 hhcurveto -13 -56 rmoveto 77 62 45 99 19 hvcurveto 4 hlineto -96 28 59 -48 96 hhcurveto 108 69 78 115 115 -69 78 -108 -77 -62 -45 -99 -19 hvcurveto -4 hlineto 96 -28 -59 48 -96 hhcurveto -108 -69 -78 -115 -115 69 -78 108 hvcurveto endchar -211 116 -212 rmoveto 77 47 54 95 hvcurveto 683 vlineto 63 21 31 43 10 9 -1 -2 7 vhcurveto -3 vlineto -18 -7 -9 -14 -22 vvcurveto -28 19 -21 31 29 23 25 31 48 -36 32 -69 -77 -47 -54 -95 vhcurveto -683 vlineto -63 -21 -31 -43 -11 -8 1 2 -7 vhcurveto 3 vlineto 18 7 9 14 22 vvcurveto 28 -19 21 -31 -29 -23 -25 -31 -48 36 -32 69 vhcurveto endchar -307 167 627 rmoveto 123 callsubr 60 -833 -73 callsubr 24 6 32 76 63 hvcurveto 50 -71 480 -60 callsubr -396 -71 -50 189 vlineto 1 -4 rlineto -65 -41 -43 -34 -51 -52 callsubr -82 callsubr 183 564 -95 callsubr -332 163 627 rmoveto 123 callsubr -111 -839 rmoveto 101 58 54 117 hvcurveto 571 -60 callsubr -536 -22 callsubr -332 52 2 callsubr 571 -60 callsubr 43 callsubr 106 796 -100 callsubr -332 52 2 callsubr 571 -60 callsubr 43 callsubr -17 807 -106 callsubr -45 -77 callsubr 40 callsubr 519 -21 callsubr endchar -45 -77 callsubr 40 callsubr 519 -21 callsubr 272 -71 callsubr -31 -90 callsubr 40 callsubr 289 -53 callsubr -396 -71 vlineto endchar 66 -86 callsubr 286 76 hlineto 192 -286 rlineto -66 -50 250 50 -70 hlineto -133 191 -71 97 71 -2 rlineto 125 51 -215 hlineto 205 261 rlineto 68 50 -220 -50 86 hlineto -202 -261 rlineto -96 261 74 50 -249 -50 74 -261 -79 -51 79 -286 -74 hlineto endchar -333 -77 callsubr 710 -21 callsubr endchar -333 -77 callsubr 710 -21 callsubr 113 736 -100 callsubr -333 -77 callsubr 710 -21 callsubr 218 508 -23 callsubr -333 -77 callsubr 710 -21 callsubr 111 -71 callsubr -275 -77 callsubr 710 -21 callsubr 307 198 -80 callsubr -39 511 -12 rmoveto 69 vlineto -353 206 0 6 353 206 0 69 -422 -244 rlineto -68 vlineto endchar -39 89 hmoveto 422 58 -422 hlineto 422 60 rmoveto 62 vlineto -353 167 0 6 353 167 0 62 -422 -196 rlineto -72 vlineto endchar -51 62 hmoveto 464 181 -54 -99 -338 5 hlineto 47 24 57 60 3 77 rrcurveto 165 50 -167 hlineto -5 35 -9 30 -11 35 rrcurveto 192 50 -206 hlineto -5 25 -4 24 29 107 callsubr -23 3 -23 6 -22 vhcurveto -48 -50 63 hlineto 11 -35 12 -30 8 -35 rrcurveto -94 -50 101 -4 hlineto -69 -36 -68 -57 -27 vhcurveto endchar -31 53 hmoveto 231 hlineto 188 111 127 140 64 -33 31 -47 -41 -28 -26 -43 -43 24 -20 31 19 13 6 12 7 hvcurveto 6 -2 rlineto -102 -8 -88 -90 -155 hhcurveto -55 241 hlineto 166 82 0 55 -166 -82 0 100 166 82 0 55 -166 -82 rlineto 143 74 50 -249 -50 74 -193 vlineto -95 -47 0 -55 95 47 0 -100 -95 -47 0 -55 95 47 rlineto -195 -74 vlineto endchar -142 189 590 rmoveto 89 32 27 45 39 26 -30 -69 vhcurveto -32 vlineto -93 -46 -108 -96 -84 vhcurveto 88 -302 rmoveto 96 58 65 80 35 hvcurveto -42 25 rlineto -68 -31 -42 -48 -63 hhcurveto -64 -34 40 97 hvcurveto 47 vlineto 137 116 73 115 133 vvcurveto 109 -45 61 -91 -85 -59 -50 -143 vhcurveto -325 vlineto -21 -15 -34 -21 -28 -19 rrcurveto 23 -39 23 11 23 16 16 11 rlinecurve -24 vlineto -104 54 -70 101 vhcurveto endchar -39 456 81 rmoveto 62 253 -452 -58 390 hlineto endchar -39 117 349 rmoveto 179 293 7 0 179 -293 -179 -293 rlineto -7 hlineto -34 -56 rmoveto 75 hlineto 215 349 -215 349 -75 0 -215 -349 rlineto endchar -327 37 hmoveto 238 50 -71 317 hlineto 88 28 0 51 -88 -28 0 342 -167 -33 0 -38 71 -13 0 -288 -86 -28 0 -51 86 28 rlineto -287 -71 vlineto endchar 319 -90 callsubr 316 hlineto 67 56 31 57 76 34 -43 -92 vhcurveto -279 -71 -50 238 50 -71 316 vlineto 67 56 31 56 76 35 -43 -92 vhcurveto -279 -70 -50 237 50 -71 285 vlineto 129 -48 66 -124 -88 -46 -53 -49 -22 vhcurveto -4 hlineto 68 -20 -51 34 -88 hhcurveto -81 -48 -49 -43 -16 hvcurveto -88 callgsubr endchar -39 157 640 -78 callsubr -39 157 809 -78 callsubr -639 -143 640 -78 callsubr -39 66 276 rmoveto 468 58 -468 hlineto endchar -14 99 -200 rmoveto 99 57 hlineto -41 183 4 1 rlineto -33 21 41 -20 52 hhcurveto 79 51 48 44 16 hvcurveto 4 -92 hlineto 165 33 0 38 -71 13 -87 callsubr endchar -39 135 98 rmoveto 165 165 165 -165 41 41 -165 165 165 165 -41 41 -165 -165 -165 165 -41 -41 165 -165 -165 -165 rlineto endchar 5 -90 callsubr -67 callsubr -31 callsubr endchar 5 -90 callsubr -67 callsubr -31 callsubr 283 534 -100 callsubr 138 423 408 rmoveto 168 -259 -4 hlineto -401 449 rmoveto 4 hlineto 196 -308 rlineto -200 hlineto -133 -290 rmoveto 207 50 -74 192 230 hlineto 152 -242 rlineto 82 241 75 50 -75 116 75 50 -75 191 74 50 -207 -50 74 -192 -198 hlineto -152 242 rlineto -188 -50 74 -191 -75 -50 75 -116 -75 -50 75 -191 -74 hlineto endchar 272 101 486 44 callsubr 272 -486 rmoveto 238 50 -71 -67 callsubr -31 callsubr endchar -407 endchar 5 -90 callsubr -67 callsubr -31 callsubr 258 549 -91 callsubr 5 -90 callsubr -67 callsubr -31 callsubr 273 -71 callsubr -39 298 323 120 callsubr -145 -335 rmoveto 216 29 169 156 259 vvcurveto 173 -86 105 -155 -139 -98 -93 -136 -135 76 -85 128 90 52 52 48 21 vhcurveto 6 -1 -13 -168 -109 -125 -172 -35 rlinecurve endchar -275 179 174 -50 callsubr 41 callsubr -275 179 504 -50 callsubr 41 callsubr -39 135 69 rmoveto 65 hlineto 58 102 rlineto 276 58 -243 hlineto 83 152 rlineto 160 58 -127 hlineto 58 102 -65 0 -58 -102 rlineto -276 -58 243 hlineto -83 -152 rlineto -160 -58 127 hlineto endchar 5 -90 callsubr -67 callsubr -31 callsubr 353 564 -95 callsubr 45 279 438 rmoveto 157 hlineto -31 -178 rlineto -157 hlineto -105 -260 rmoveto 62 hlineto 34 204 157 0 -34 -204 61 0 35 204 rlineto 134 56 -125 hlineto 30 178 rlineto 135 56 -125 hlineto 34 204 -62 0 -34 -204 -157 0 34 204 -61 0 -35 -204 rlineto -134 -56 125 hlineto -30 -178 rlineto -135 -56 125 hlineto endchar 484 765 247 rmoveto 312 58 -312 hlineto 156 57 rmoveto 96 62 69 105 105 -62 69 -96 -96 -62 -69 -105 -105 62 -69 96 hvcurveto 44 vmoveto -59 -23 40 56 hvcurveto 68 vlineto 56 23 40 59 59 23 -40 -56 vhcurveto -68 vlineto -56 -23 -40 -59 vhcurveto -869 -406 rmoveto 207 50 -74 548 4 hlineto 378 -94 callgsubr -346 549 rlineto -188 -69 callsubr -92 callsubr endchar -92 callsubr -6 542 -100 callsubr -92 callsubr 553 vmoveto 9 callsubr -92 callsubr -129 553 -106 callsubr -92 callsubr 136 666 -75 callsubr -63 callsubr -92 callsubr -129 553 -56 callsubr 157 -785 -99 callsubr -92 callsubr -136 666 -64 callsubr -92 callsubr -129 535 -76 callsubr -65 callsubr -92 callsubr -129 535 -68 callsubr -92 callsubr 94 573 -107 callsubr -92 callsubr -212 vmoveto -30 callsubr 275 522 322 rmoveto 95 45 61 84 84 38 -64 -92 vhcurveto -12 -251 vlineto -238 -268 rmoveto 49 callsubr -54 vmoveto 80 63 34 72 39 hvcurveto 6 hlineto -72 39 61 -34 84 hhcurveto -102 callgsubr 65 109 hvcurveto 29 350 26 vlineto 143 -82 100 -139 -75 -73 -37 -71 -31 vhcurveto -6 hlineto 72 -28 -71 36 -83 hhcurveto -145 -95 -106 -165 -166 95 -105 145 hvcurveto endchar -39 243 -206 -73 callsubr 124 callsubr -639 -57 -206 -73 callsubr 124 callsubr -92 callsubr 6 542 -89 callsubr -92 callsubr 18 534 -101 callsubr -96 callsubr -39 callsubr endchar -39 callsubr -6 -58 callsubr -39 callsubr -158 vmoveto -30 callsubr -39 callsubr 6 596 -89 callsubr -39 callsubr 18 588 -101 callsubr -96 callsubr -39 callsubr 55 626 -46 callsubr -37 callsubr -92 callsubr 79 542 -72 callsubr -62 callsubr -92 callsubr -143 598 -78 callsubr -39 99 hmoveto 434 49 -164 649 -86 hlineto -209 -110 17 -46 177 78 rlineto -571 -169 vlineto endchar 259 -61 callsubr -54 callsubr -101 -698 rmoveto 88 callsubr endchar -281 54 hmoveto 127 callsubr endchar 244 -61 callsubr -54 callsubr 23 -387 14 callsubr -281 -61 callsubr endchar -231 176 385 rmoveto -39 -24 15 35 hvcurveto 11 vlineto 41 23 21 69 vhcurveto 43 -61 hlineto -43 -32 -19 -40 vhcurveto -27 -43 rmoveto 60 27 27 31 15 hvcurveto 3 -3 hlineto -35 19 -20 40 23 20 7 7 11 vhcurveto 27 -48 211 vlineto 69 -46 41 -81 -85 -50 -38 -39 -27 18 -16 25 25 17 15 23 17 -11 14 -11 4 vhcurveto 3 vlineto 7 12 17 2 23 hhcurveto 51 25 -28 -55 hvcurveto -46 -49 vlineto -115 -43 -36 -68 -57 37 -37 71 hvcurveto endchar -227 206 342 rmoveto 100 64 70 111 111 -64 70 -100 -100 -64 -70 -111 -111 64 -70 100 hvcurveto 37 vmoveto -63 -25 43 59 hvcurveto 84 vlineto 59 25 43 63 63 25 -43 -59 vhcurveto -84 vlineto -59 -25 -43 -63 vhcurveto endchar 80 callsubr endchar 80 callsubr 231 592 -100 callsubr -92 callsubr 64 572 -95 callsubr -22 329 17 callsubr 50 callsubr 91 -53 callsubr -596 -71 vlineto endchar 0 355 648 rmoveto 86 -570 hlineto -96 -30 -57 -56 -24 vhcurveto -63 -56 rmoveto 128 74 79 155 hvcurveto 569 74 50 -267 vlineto -140 -108 -66 -132 -132 109 -67 140 hvcurveto -412 -11 vlineto -47 -30 9 15 -24 hvcurveto 3 vlineto 27 8 17 19 31 vvcurveto 35 -21 23 -36 -39 -24 -29 -40 -69 73 -49 105 vhcurveto endchar -311 332 -120 rmoveto -110 83 -64 150 161 vvcurveto 76 vlineto 161 64 150 110 83 vhcurveto -28 34 rlineto -118 -72 -131 -171 -223 vvcurveto -223 131 -171 118 -72 vhcurveto endchar -311 24 -154 rmoveto 118 72 131 171 223 vvcurveto 223 -131 171 -118 72 vhcurveto -28 -34 rlineto 110 -83 64 -150 -161 vvcurveto -76 vlineto -161 -64 -150 -110 -83 vhcurveto endchar -52 289 41 rmoveto -83 -52 53 104 hvcurveto 93 vlineto 104 52 53 83 83 52 -53 -104 vhcurveto -93 vlineto -104 -52 -53 -83 vhcurveto -53 vmoveto 145 92 91 189 253 -157 124 -106 53 hvcurveto -85 hlineto 119 -64 75 -96 32 -97 -4 -2 rcurveline 43 -31 -44 22 -57 hhcurveto -131 -85 -100 -156 -159 89 -101 148 hvcurveto endchar 275 184 hmoveto 64 hlineto 482 698 rlineto -64 hlineto 24 -710 rmoveto -4 callsubr -466 326 rmoveto -4 callsubr 466 -283 rmoveto -5 callsubr -466 326 rmoveto -5 callsubr endchar -373 133 -12 rmoveto 52 callsubr endchar -315 162 236 rmoveto 52 callsubr endchar 659 184 hmoveto 64 hlineto 482 698 rlineto -64 hlineto 408 -710 rmoveto -4 callsubr -384 hmoveto -4 callsubr -466 326 rmoveto -4 callsubr 850 -283 rmoveto -5 callsubr -384 hmoveto -5 callsubr -466 326 rmoveto -5 callsubr endchar 59 227 501 rmoveto 240 -109 -240 hlineto 254 vmoveto 115 hlineto 64 40 -40 -57 15 hvcurveto -234 hlineto -205 vmoveto 234 hlineto -57 -15 -40 -40 -64 hhcurveto -115 hlineto -175 -247 rmoveto 269 50 -94 145 128 hlineto 105 74 51 97 25 hvcurveto 86 50 -75 hlineto 2 18 1 19 21 vvcurveto 17 -1 17 -1 15 vhcurveto 74 50 -83 hlineto 100 -25 -72 48 -109 hhcurveto -304 -50 74 -98 -74 -50 74 -107 -74 -50 74 -293 -74 hlineto endchar -16 503 -10 rmoveto 39 30 10 11 20 hvcurveto 39 -91 415 91 53 -571 -53 91 -465 95 465 198 -378 vlineto -71 25 -26 73 vhcurveto endchar -39 269 76 rmoveto 62 200 203 58 -203 200 -62 -200 -203 -58 203 hlineto endchar -39 66 hmoveto 468 58 -468 hlineto 203 113 rmoveto 62 193 203 58 -203 193 -62 -193 -203 -58 203 hlineto endchar -392 63 372 rmoveto 38 hlineto 98 326 rlineto -103 hlineto endchar -210 63 372 rmoveto 38 hlineto 98 326 rlineto -103 hlineto 149 -326 rmoveto 38 hlineto 98 326 rlineto -103 hlineto endchar 125 62 -200 rmoveto 249 50 -74 794 290 -794 -74 -50 249 50 -74 798 84 50 -660 -50 84 -798 -74 hlineto endchar -35 47 callsubr 33 -252 rmoveto 258 50 -71 668 -40 hlineto 53 callsubr 80 49 42 49 21 hvcurveto 3 -229 -91 hlineto endchar -144 198 -12 rmoveto 52 callsubr -30 222 rmoveto 59 110 hlineto 128 11 99 73 122 vvcurveto 113 -82 71 -132 -112 -89 -58 -70 -95 callgsubr 20 30 9 44 hhcurveto 75 48 -44 -79 hvcurveto -22 vlineto -89 -71 -46 -108 -5 vhcurveto endchar -144 297 394 rmoveto 52 callsubr -42 -586 rmoveto 112 89 58 70 43 -24 26 -39 -39 -26 -28 -36 -27 18 -23 19 -8 hvcurveto -4 vlineto -11 -20 -30 -9 -44 hhcurveto -75 -48 44 79 hvcurveto 22 vlineto 89 71 46 108 5 vhcurveto 164 -59 -110 vlineto -128 -11 -99 -73 -122 vvcurveto -113 82 -71 132 vhcurveto endchar -213 -85 callgsubr 207 -190 rmoveto 34 hlineto 25 190 rlineto 96 -84 -96 vlineto endchar -171 99 -125 44 callsubr 259 hmoveto 11 callsubr -171 104 callsubr 201 hmoveto 41 27 30 36 hvcurveto 6 vlineto 35 -23 28 -39 vhcurveto -2 hlineto 11 41 30 46 47 40 rrcurveto -58 hlineto -56 -43 -45 -77 -62 vvcurveto -10 vlineto -39 24 -31 43 vhcurveto endchar -171 101 486 44 callsubr 259 hmoveto 11 callsubr -372 104 callsubr endchar -372 101 486 rmoveto 11 callsubr -372 99 -125 rmoveto 11 callsubr -395 -85 callgsubr endchar 6 callsubr endchar 6 callsubr 214 534 -100 callsubr -39 258 hmoveto 95 hlineto 208 698 -62 0 -140 -475 -48 -171 -7 0 -48 171 -85 295 rlineto -146 -58 98 hlineto endchar 6 callsubr 189 549 -91 callsubr 6 callsubr 111 -71 callsubr -165 206 586 rmoveto 38 hlineto 19 10 -11 -19 hvcurveto -14 vlineto -19 -10 -11 -19 vhcurveto -38 hlineto 31 -214 rmoveto 108 91 88 118 118 -91 88 -108 -108 -91 -88 -118 -118 91 -88 108 hvcurveto 33 vmoveto -92 -67 74 87 hvcurveto 24 vlineto 87 67 74 92 92 67 -74 -87 vhcurveto -24 vlineto -87 -67 -74 -92 vhcurveto -92 67 rmoveto 78 20 -17 72 26 hlineto 34 -63 rlineto -23 12 17 -6 27 hhcurveto 14 20 -2 hlineto -12 -9 6 11 -5 hvcurveto -35 62 rlineto 28 8 14 19 30 vvcurveto 37 -24 19 -41 vhcurveto -105 -20 19 -172 -19 hlineto endchar -39 300 576 rmoveto 98 callsubr -39 300 743 rmoveto 98 callsubr -39 299 818 -7 callsubr -39 299 987 -7 callsubr -639 576 vmoveto 98 callsubr -1 227 647 rmoveto 148 hlineto 72 39 -49 -65 hvcurveto -50 vlineto -65 -39 -49 -72 vhcurveto -148 hlineto -175 -369 rmoveto 269 50 -94 109 224 50 -224 110 161 hlineto 129 75 71 121 121 -70 66 -131 hvcurveto -339 -50 74 -279 -74 -50 74 -110 -74 -50 74 -109 -74 hlineto endchar 238 225 644 rmoveto 65 hlineto 68 38 -43 -67 hvcurveto -48 vlineto -67 -38 -48 -68 vhcurveto -65 hlineto 406 -383 rmoveto 119 64 58 80 71 -42 26 -70 38 hvcurveto -31 17 rlineto -39 19 -26 24 41 vvcurveto 44 25 31 64 16 14 -1 -4 11 vhcurveto -2 vlineto -19 -7 -9 -15 -24 vvcurveto -27 20 -22 31 32 22 23 35 55 -47 30 -85 -100 -61 -50 -77 -76 37 -38 71 -37 vhcurveto 30 -16 rlineto 39 -21 32 -16 -39 vvcurveto -47 -36 -23 -59 -77 -45 44 92 -44 vhcurveto -81 168 rlineto 75 27 39 61 85 vvcurveto 123 -75 60 -121 vhcurveto -253 -50 74 -598 -74 -50 247 50 -74 272 65 hlineto 95 -192 rlineto -110 56 70 -32 120 hhcurveto endchar -31 565 hmoveto 50 -9 vlineto -48 -29 21 47 -27 hvcurveto -120 208 88 19 52 55 11 80 rlinecurve 82 50 -81 hlineto -7 51 -24 46 -55 17 rrcurveto 4 167 50 -506 -50 210 vlineto 71 39 -50 -68 1 hvcurveto -321 -50 321 hlineto -68 -1 -39 -50 -71 hhcurveto -210 -50 173 hlineto 120 -217 rlineto -71 39 46 -24 80 hhcurveto endchar -43 callsubr endchar -43 callsubr -24 -58 callsubr -43 callsubr -49 611 -91 callsubr -148 262 57 callsubr 10 48 rlineto 105 7 65 61 87 vvcurveto 91 -53 45 -104 23 vhcurveto -54 11 rlineto -53 13 -30 29 45 vvcurveto 51 37 25 65 76 33 -27 -52 vhcurveto -35 68 156 -68 -45 -4 vlineto 33 -12 -42 24 -64 hhcurveto -108 -68 -56 -93 -88 52 -50 101 -23 hvcurveto 57 -13 rlineto 55 -13 27 -28 -43 vvcurveto -57 -41 -24 -73 -80 -33 37 56 vhcurveto 20 -68 -155 68 52 4 vlineto 12 -28 37 -27 51 -7 rrcurveto -13 -66 -32 callsubr -99 85 callsubr -43 callsubr -147 607 -106 callsubr -43 callsubr -11 -242 -51 callsubr -50 352 161 rmoveto -11 4 -13 5 -11 3 -68 19 rcurveline -61 17 -31 29 51 vvcurveto 63 32 31 49 11 vhcurveto 11 -4 13 -5 11 -3 68 -19 rcurveline 61 -17 31 -29 -51 vvcurveto -63 -32 -31 -49 -11 vhcurveto -82 -316 rmoveto 127 69 60 100 61 -25 45 -49 29 hvcurveto 4 vlineto 75 23 51 52 72 vvcurveto 87 -56 43 -101 29 vhcurveto -64 18 rlineto -56 17 -32 31 52 vvcurveto 63 42 30 79 23 21 -3 -7 20 vhcurveto -2 vlineto -19 -11 -15 -11 -28 vvcurveto -31 22 -24 35 37 26 25 41 61 -61 39 -100 -127 -69 -60 -100 -61 25 -45 49 -29 vhcurveto -4 vlineto -75 -23 -51 -52 -72 vvcurveto -87 54 -43 103 -29 vhcurveto 64 -18 rlineto 56 -17 32 -31 -52 vvcurveto -63 -42 -30 -79 -23 -21 3 7 -20 vhcurveto 2 vlineto 19 11 15 11 28 vvcurveto 31 -22 24 -35 -37 -26 -25 -41 -61 61 -39 100 vhcurveto endchar -351 109 108 callsubr 93 532 rmoveto 52 callsubr endchar -39 184 hmoveto 88 hlineto 260 626 rlineto 72 -464 -209 54 114 344 vlineto endchar -301 93 hmoveto 62 callsubr -301 93 330 rmoveto 62 callsubr 129 266 hmoveto 255 hlineto 112 45 48 123 hvcurveto 527 -60 -499 vlineto -79 -28 -25 -67 vhcurveto -197 423 -60 hlineto -176 -518 rmoveto 60 603 197 hlineto 67 28 -25 -79 hvcurveto -319 60 347 vlineto 123 -45 48 -112 vhcurveto -255 hlineto endchar -39 302 41 120 callsubr 1 -53 rmoveto 139 98 93 136 135 -76 85 -128 -90 -54 -52 -48 -19 hvcurveto -6 1 rlineto 13 168 109 126 172 34 -14 44 rcurveline -216 -29 -169 -156 -259 vvcurveto -173 86 -105 155 vhcurveto endchar -275 185 35 -50 callsubr 8 callsubr -275 185 365 -50 callsubr 8 callsubr -259 8 -143 rmoveto 64 hlineto 266 891 rlineto -64 hlineto endchar -245 63 266 rmoveto 268 78 -268 hlineto endchar -407 endchar -51 62 hmoveto 464 181 -54 -99 -338 5 hlineto 52 27 56 62 83 vvcurveto 17 -2 15 -3 15 vhcurveto 168 52 -179 hlineto -15 52 -20 49 67 107 callsubr -57 20 -50 17 -51 vhcurveto -76 -52 92 hlineto 5 -20 4 -19 -21 vvcurveto -72 -36 -67 -57 -27 vhcurveto endchar -23 57 -200 rmoveto 490 208 -54 -118 -356 hlineto 246 346 0 55 -223 353 rlineto 333 -117 54 171 -490 -73 hlineto 248 -395 0 -4 -248 -353 rlineto endchar 15 callsubr endchar -276 209 -6 rmoveto 51 54 10 12 23 hvcurveto 38 -130 202 116 50 -116 159 129 callsubr -159 -53 -50 53 -165 hlineto -69 25 -28 72 vhcurveto endchar 15 callsubr 54 572 -23 callsubr 15 callsubr 2 -248 -51 callsubr 15 callsubr 2 -248 -51 callsubr 15 37 647 rmoveto 580 51 -580 hlineto 145 -698 rmoveto 289 50 -94 476 160 -120 80 171 -580 -171 80 120 159 -476 -94 hlineto endchar -35 315 17 callsubr 50 callsubr 321 -53 callsubr -826 -71 vlineto endchar -39 269 -12 rmoveto 155 99 77 126 106 -87 54 -83 16 hvcurveto 4 vlineto 80 16 76 58 90 vvcurveto 117 -98 58 -131 -124 -77 -64 -64 -43 24 -26 39 39 26 28 36 27 -18 23 -19 8 vhcurveto 4 vlineto 12 20 35 8 45 hhcurveto 79 51 -38 -75 hvcurveto -35 vlineto -69 -50 -50 -96 vhcurveto -73 -54 77 hlineto 103 53 -48 -84 hvcurveto -34 vlineto -88 -60 -45 -101 -47 -36 131 callsubr 79 -64 131 vhcurveto endchar -292 155 -6 37 callsubr 192 7 callsubr -13 -324 -24 callsubr 23 -387 14 callsubr -292 7 callsubr endchar -39 364 614 -95 callsubr -39 355 614 -46 callsubr -37 callsubr -39 355 781 -46 callsubr -37 callsubr -39 364 781 -95 callsubr -639 64 614 -95 callsubr 81 94 418 rmoveto 134 28 -39 219 59 -44 40 77 -254 -77 40 44 59 -219 -39 hlineto 229 -28 rmoveto 99 28 -32 157 hlineto -3 44 3 0 18 -44 75 -148 76 148 18 44 3 0 -3 -44 rlineto -157 -32 -28 118 28 -32 223 32 29 -94 vlineto -75 -156 -77 156 rlineto -94 -29 32 -223 -32 hlineto endchar 25 189 hmoveto 289 50 -94 181 hlineto 121 59 0 55 -121 -59 0 98 121 59 0 55 -121 -60 rlineto 206 65 callsubr -255 vlineto -121 -59 0 -55 121 59 0 -98 -121 -59 0 -55 121 59 rlineto -131 -94 vlineto endchar -39 54 hmoveto 462 182 -54 -95 -327 4 hlineto 187 160 rlineto 91 75 76 75 118 vvcurveto 120 -85 71 -140 -117 -85 -60 -68 -95 callgsubr 19 32 9 43 hhcurveto 83 50 -49 -83 hvcurveto -24 vlineto -79 -40 -63 -65 -65 vhcurveto -221 -222 rlineto endchar -291 36 hmoveto 88 callsubr endchar -291 36 330 rmoveto 88 callsubr endchar -93 callsubr -87 callsubr -81 callsubr endchar -93 callsubr -87 callsubr -81 callsubr 24 -58 callsubr -93 callsubr -87 callsubr -81 callsubr 30 607 -85 callsubr -93 callsubr -87 callsubr -81 callsubr -99 607 -106 callsubr -93 callsubr -87 callsubr -81 callsubr 124 627 -107 callsubr -93 callsubr -87 callsubr -81 callsubr 34 -158 -99 callsubr -93 callsubr -87 callsubr -81 callsubr 36 596 -89 callsubr -93 callsubr -87 callsubr -81 callsubr 48 588 -101 callsubr -96 callsubr -93 callsubr -34 callsubr endchar -93 callsubr -34 callsubr 24 -58 callsubr -93 callsubr -34 callsubr 34 -158 -99 callsubr -93 callsubr -34 callsubr 36 596 -89 callsubr -93 callsubr -34 callsubr 48 588 -101 callsubr -96 callsubr -93 callsubr -34 callsubr 94 626 -95 callsubr -93 callsubr -87 callsubr -81 callsubr 109 596 -72 callsubr -62 callsubr -93 callsubr -87 callsubr -81 callsubr -113 652 -78 callsubr -76 25 -160 rmoveto 512 62 -512 hlineto endchar -97 callsubr 290 -18 callsubr -97 callsubr 378 736 -107 callsubr 181 515 -164 rmoveto 91 hlineto 78 80 47 124 hvcurveto 196 -80 callgsubr 260 227 -117 80 171 -655 -171 80 117 167 -594 -74 -50 249 50 -74 281 hlineto 23 39 40 14 59 hhcurveto 105 37 -45 -124 hvcurveto -187 vlineto -69 -20 -29 -24 -24 vhcurveto -104 hlineto endchar -100 callgsubr 255 -70 callsubr 15 360 -12 rmoveto 153 85 69 67 43 -24 27 -39 -40 -25 -26 -39 -28 19 -24 17 -8 hvcurveto -4 vlineto -15 -24 -44 -10 -64 hhcurveto -140 -72 101 141 hvcurveto 47 278 54 -278 41 vlineto 139 63 94 127 91 60 -46 -67 vhcurveto -56 80 210 -80 -61 -4 vlineto 44 -28 -54 29 -80 hhcurveto -168 -119 -129 -232 -224 118 -137 192 hvcurveto endchar -45 callsubr endchar -88 callsubr endchar -88 callsubr 218 736 -107 callsubr -172 157 -12 -38 callsubr endchar 310 561 24 callsubr -574 -66 -89 callgsubr 169 -594 -74 -50 314 vlineto 137 72 69 137 137 -72 69 -137 hvcurveto -139 236 74 50 -485 -50 77 -107 hlineto 102 callsubr 382 633 24 callsubr -708 -54 rmoveto 249 50 -74 280 305 -280 -74 -50 314 21 callsubr -139 236 74 50 -249 -50 74 -264 -305 264 -26 callsubr endchar 259 208 hmoveto 249 50 -74 281 hlineto 24 39 44 13 60 hhcurveto 101 46 -45 -124 hvcurveto -149 -74 -50 249 50 -74 153 -81 callgsubr 260 167 -117 80 171 -595 -171 80 117 167 -594 -74 hlineto endchar 62 -86 callsubr 97 callsubr 326 -70 callsubr -11 callsubr 350 -18 callsubr -14 callsubr 137 777 -83 callsubr 131 342 -160 rmoveto 87 160 289 -25 callsubr -595 -316 595 1 callsubr 290 hlineto endchar -105 callsubr -102 callsubr endchar -12 227 54 rmoveto 294 130 vlineto 73 41 -45 -75 hvcurveto -54 vlineto -75 -41 -45 -73 vhcurveto -305 -54 rmoveto 316 hlineto 137 72 73 131 131 -72 67 -137 hvcurveto -141 242 220 -117 80 171 -475 -69 callsubr 37 83 callsubr -100 callgsubr endchar 62 157 54 rmoveto 80 115 45 198 226 vvcurveto 51 179 -590 vlineto -455 -214 rmoveto 87 160 486 -160 87 214 -104 594 74 50 -495 -50 77 -54 hlineto -252 -53 -176 -83 -112 vhcurveto -76 hlineto endchar -97 callsubr endchar 39 callsubr endchar 81 callsubr endchar -11 callsubr endchar -11 callsubr 344 715 -83 callsubr 62 -86 callsubr 97 callsubr endchar 58 114 -12 -89 callgsubr 179 -594 27 callsubr -495 -50 77 -107 vlineto 102 callsubr 237 92 callsubr 152 -86 callsubr 3 callsubr 249 -25 callsubr -264 -337 264 -26 callsubr endchar -94 callsubr endchar 152 -86 callsubr 594 337 -594 27 callsubr -687 -69 callsubr -3 227 644 55 callsubr 126 callsubr -41 callsubr endchar -19 callsubr 0 callsubr endchar -14 callsubr endchar 212 476 172 rmoveto 364 48 vlineto 105 71 -48 -100 hvcurveto -68 vlineto -100 -71 -48 -105 vhcurveto -197 hmoveto -105 -71 48 100 hvcurveto 68 vlineto 100 71 48 105 vhcurveto 48 -364 hlineto -73 -184 rmoveto 248 50 -74 80 54 hlineto 173 102 83 153 153 -102 83 -173 hvcurveto -54 70 74 50 -248 -50 73 -70 -54 hlineto -173 -102 -83 -153 -153 102 -83 173 hvcurveto 54 -80 -73 hlineto endchar 41 19 hmoveto 61 callsubr 93 callsubr 145 661 -160 rmoveto 88 214 -105 594 74 50 -249 -50 74 -595 -316 595 1 callsubr 609 hlineto endchar 86 404 hmoveto 269 -25 callsubr 99 callsubr hlineto endchar 374 52 hmoveto 909 50 -74 598 74 50 -247 25 callsubr -245 25 callsubr -247 -69 callsubr 387 904 73 callsubr -247 25 callsubr -245 25 callsubr -247 -50 74 -598 -74 -50 852 hlineto endchar 118 356 54 rmoveto 304 140 71 callsubr -98 callgsubr -395 -171 80 117 140 -594 -74 hlineto endchar 284 227 24 callsubr 268 -54 rmoveto 249 -25 callsubr -598 -74 hlineto -570 -50 rmoveto 314 21 callsubr -139 236 -26 callsubr endchar -11 227 54 rmoveto 304 140 71 callsubr -98 callgsubr -249 -69 callsubr 15 293 -12 rmoveto 192 119 134 227 231 -117 130 -164 -88 -51 -29 -44 -29 hvcurveto -4 61 -80 -210 80 56 hlineto 67 59 46 92 127 63 -94 -139 vhcurveto -41 -278 -54 278 -47 vlineto -141 -72 -101 -141 -64 -43 10 15 -24 64 callsubr -67 85 -69 152 vhcurveto endchar 358 650 45 rmoveto -122 -58 92 141 hvcurveto 142 vlineto 141 58 92 122 122 58 -92 -141 vhcurveto -142 vlineto -141 -58 -92 -122 vhcurveto -57 vmoveto 182 110 134 227 227 -110 134 -182 -171 -109 -121 -205 -11 hvcurveto -132 264 1 callsubr 249 50 -74 280 131 hlineto -216 5 112 -126 175 hhcurveto endchar 42 454 371 rmoveto -146 hlineto -71 -40 47 65 hvcurveto 49 vlineto 65 40 47 71 vhcurveto 146 hlineto -438 -644 rmoveto 154 hlineto 191 319 rlineto 93 -269 27 callsubr -334 hlineto -129 -75 -74 -119 -107 55 -61 139 -9 hvcurveto -4 vlineto -28 -5 -23 -19 -24 -41 -127 -209 rcurveline -67 hlineto endchar -104 callsubr endchar -103 callsubr endchar -85 278 41 rmoveto -87 -39 62 91 hvcurveto 103 vlineto 91 39 62 87 87 39 -62 -91 vhcurveto -103 vlineto -91 -39 -62 -87 vhcurveto 1 -53 rmoveto 140 91 103 161 161 -85 91 -135 -93 -56 -42 -80 -33 hvcurveto -4 hlineto 8 103 13 50 33 31 30 27 32 3 95 8 97 8 31 10 21 21 rrcurveto 17 19 8 20 33 vvcurveto 18 -2 15 -4 12 vhcurveto -44 hlineto -5 -39 rlineto -23 -4 -33 -6 -51 -5 -109 -11 -47 -13 -39 -39 rrcurveto -58 -61 -28 -95 -191 vvcurveto -208 98 -100 135 vhcurveto endchar -71 215 290 rmoveto 175 105 vlineto 51 28 -31 -43 hvcurveto -27 vlineto -43 -28 -31 -51 vhcurveto -105 -237 rmoveto 185 115 vlineto 56 29 -31 -48 hvcurveto -27 vlineto -48 -29 -31 -56 vhcurveto -282 -53 rmoveto 296 hlineto 111 61 47 95 78 -60 40 -63 8 hvcurveto 5 vlineto 60 12 46 35 73 vvcurveto 76 -56 49 -101 vhcurveto -294 -50 71 -418 -71 hlineto endchar 31 callsubr -93 callgsubr endchar -20 161 53 rmoveto 55 77 35 130 161 vvcurveto 44 140 -412 vlineto -375 -203 rmoveto 82 150 407 -150 82 203 -100 416 71 49 -445 -49 76 -47 hlineto -171 -40 -118 -61 -80 vhcurveto -72 hlineto endchar -98 callsubr endchar 38 callsubr endchar 82 callsubr endchar -9 callsubr endchar -9 callsubr 285 544 -83 callsubr -52 -90 callsubr 188 78 hlineto 148 -238 rlineto 70 callsubr -238 -50 71 -418 -71 hlineto endchar -25 96 -12 -87 callgsubr 145 -415 -71 -50 238 50 -71 419 71 49 -450 -49 76 -66 vlineto 103 callsubr 113 48 hmoveto 204 50 -71 381 4 hlineto 36 -77 138 -276 138 276 36 77 rlineto 4 -381 26 callsubr -184 hlineto -139 -279 -4 0 -139 279 rlineto -190 -50 71 -418 -71 hlineto endchar 26 -90 callsubr 187 235 -187 26 callsubr -238 -50 71 -178 -235 178 30 callsubr hlineto endchar -92 callsubr endchar 27 -90 callsubr 414 236 -414 26 callsubr -570 -50 71 -418 -71 hlineto endchar -22 329 17 callsubr 50 callsubr 91 -53 callsubr -596 -71 vlineto endchar -33 callsubr endchar -103 132 hmoveto 272 50 -88 415 121 -100 67 153 -472 -153 67 100 121 -415 -88 hlineto endchar -84 callsubr endchar 143 527 42 rmoveto -53 -36 27 55 hvcurveto 269 vlineto 55 36 27 53 63 42 -51 -103 vhcurveto -125 vlineto -103 -42 -51 -63 vhcurveto -272 hmoveto -63 -42 51 103 hvcurveto 125 vlineto 103 42 51 63 53 36 -27 -55 vhcurveto -269 vlineto -55 -36 -27 -53 vhcurveto 17 -242 rmoveto 238 50 -71 198 4 hlineto -37 21 36 -23 53 hhcurveto 104 76 90 181 181 -76 90 -104 -53 -36 -21 -39 -21 hvcurveto -4 275 -53 callsubr -191 -4 vlineto 39 -21 -36 21 -53 hhcurveto -104 -76 -90 -181 -181 76 -90 104 53 36 23 37 21 hvcurveto 4 -198 -71 hlineto endchar -72 28 hmoveto 63 callsubr 94 callsubr 31 558 -150 rmoveto 82 203 -101 415 71 50 -238 -50 71 -415 -228 415 30 callsubr -50 510 hlineto endchar -101 callgsubr endchar 241 48 hmoveto 784 50 -71 418 71 50 -227 77 callsubr -86 callgsubr hlineto endchar 253 780 -150 rmoveto 82 203 -101 415 71 50 -227 77 callsubr -86 callgsubr -50 732 hlineto endchar 3 308 53 rmoveto 216 106 -29 callsubr -273 -53 rmoveto 294 23 callsubr -127 147 71 49 -346 -153 67 100 112 -415 -71 hlineto endchar 177 215 53 rmoveto 216 96 -29 callsubr 219 -53 rmoveto 238 50 -71 418 30 callsubr hlineto -482 -50 rmoveto 284 23 callsubr -117 146 30 callsubr hlineto endchar -90 215 53 rmoveto 216 106 -29 callsubr -273 -53 rmoveto 294 23 callsubr -127 146 30 callsubr hlineto endchar -107 238 -12 rmoveto 149 101 102 172 167 -88 101 -138 -67 -38 -25 -36 -27 hvcurveto -3 49 -67 -157 67 29 hlineto 56 48 35 72 89 47 -65 -109 vhcurveto -16 -197 -53 197 -23 vlineto -112 -61 -66 -100 -39 -35 56 callsubr -67 74 -57 120 vhcurveto endchar 190 560 42 rmoveto -84 -35 57 96 hvcurveto 128 vlineto 96 35 57 84 84 35 -57 -96 vhcurveto -128 vlineto -96 -35 -57 -84 vhcurveto -54 vmoveto 139 86 99 172 172 -86 99 -139 -128 -85 -89 -151 -11 hvcurveto -121 178 30 callsubr -50 238 50 -71 187 120 hlineto -157 9 83 -92 133 hhcurveto endchar -55 260 269 rmoveto -55 -32 33 52 hvcurveto 26 vlineto 44 23 41 64 vhcurveto 109 -196 hlineto -347 -269 rmoveto 131 hlineto 131 220 rlineto 85 -170 26 callsubr -297 hlineto -112 -56 -68 -82 -77 62 -49 96 -7 hvcurveto -4 vlineto -35 -5 -21 -16 -23 -37 -75 -123 rcurveline -53 hlineto endchar -98 callsubr 596 vmoveto 31 16 -75 183 -88 -43 rlineto endchar -98 callsubr 88 627 -107 callsubr -16 366 2 callsubr 377 vlineto 129 -49 65 -125 -81 -49 -49 -43 -16 vhcurveto -4 -105 callgsubr -50 238 50 -71 317 vlineto 66 59 31 56 77 36 -43 -92 vhcurveto -419 -22 callsubr 31 callsubr -93 callgsubr 216 534 -100 callsubr -107 292 -12 rmoveto 122 74 57 67 40 -24 25 -37 -39 -20 -26 -33 -27 12 -19 24 -11 hvcurveto -3 vlineto -14 -21 -33 -7 -45 hhcurveto -101 -55 70 108 hvcurveto 23 197 53 -197 16 vlineto 108 55 66 88 67 46 -34 -56 vhcurveto -30 67 157 -67 -49 -3 vlineto 36 -21 -38 25 -64 hhcurveto -138 -97 -106 -166 -168 93 -102 155 hvcurveto endchar -43 callsubr endchar -82 callsubr 119 577 rmoveto 123 callsubr endchar -82 callsubr 213 565 -107 callsubr -332 163 627 rmoveto 123 callsubr -111 -839 rmoveto 101 58 54 117 hvcurveto 571 -60 callsubr -536 -22 callsubr 168 485 53 rmoveto 216 94 -29 callsubr -483 -65 -87 callgsubr 135 -415 -71 -50 282 vlineto 108 62 58 103 103 -62 58 -108 hvcurveto -115 146 71 50 -440 -49 76 -66 hlineto 103 callsubr 219 536 53 rmoveto 216 94 -29 callsubr -582 -53 rmoveto 236 50 -69 187 225 -187 -69 -50 280 23 callsubr -115 146 71 50 -236 -50 69 -178 -225 178 69 50 -236 -50 71 -418 -71 hlineto endchar -9 -77 callsubr -67 callsubr -83 callgsubr -52 -90 callsubr 188 78 hlineto 148 -238 rlineto 70 callsubr -238 -50 71 -418 -71 hlineto 281 534 -100 callsubr -9 callsubr 291 534 -89 callsubr -84 callsubr 167 806 -83 callsubr 19 288 -150 rmoveto 82 150 240 50 -71 418 71 50 -238 -50 71 -415 -228 415 30 callsubr -50 240 hlineto endchar 85 362 -12 rmoveto 4 callsubr 20 callsubr 28 callsubr -200 395 rmoveto 34 69 callsubr -34 vlineto -200 -338 -59 callsubr 48 400 -48 vlineto -141 -73 -95 -127 vhcurveto endchar 45 callsubr 106 callsubr -70 52 hmoveto 269 50 -94 594 307 214 -87 -160 -395 -69 callsubr 31 callsubr 415 245 202 -83 -149 -329 -49 71 -419 -71 hlineto endchar -70 52 hmoveto 269 50 -94 280 171 54 -171 260 75 callsubr -264 -88 -54 88 -280 -74 hlineto endchar 31 callsubr 187 131 50 -131 178 178 -100 67 153 -412 -49 71 -182 -81 -50 81 -187 -71 hlineto endchar 15 359 -164 rmoveto 91 hlineto 78 80 47 124 hvcurveto 162 -80 callgsubr 294 75 callsubr -598 -74 -50 249 50 -74 247 hlineto 23 39 40 14 59 hhcurveto 105 37 -45 -124 hvcurveto -153 vlineto -69 -20 -29 -24 -24 vhcurveto -104 hlineto endchar -77 288 -200 rmoveto 82 hlineto 75 75 48 122 hvcurveto 163 vlineto 112 -49 46 -105 -72 -42 -25 -43 -33 vhcurveto -4 242 178 -100 67 153 -412 -49 71 -419 -71 -50 254 50 -87 102 hlineto 49 42 26 68 75 24 -29 -73 vhcurveto -149 vlineto -71 -18 -28 -24 -24 vhcurveto -94 hlineto endchar 375 923 -160 rmoveto 87 214 -91 hlineto -147 250 -25 43 -20 12 -28 4 rlinecurve 74 173 19 43 17 30 76 callsubr 87 callsubr -50 115 callsubr 87 hlineto endchar 193 746 -150 rmoveto 82 203 -87 hlineto -101 166 -19 33 -21 14 -31 4 rlinecurve 51 115 12 29 15 25 11 12 19 callsubr 86 callsubr -50 116 callsubr 81 hlineto endchar -27 252 -160 rmoveto 87 151 hlineto 128 16 83 77 108 vvcurveto 107 -72 47 -84 13 vhcurveto 5 vlineto 80 16 61 59 93 vvcurveto 103 -79 75 -131 -88 -52 -30 -43 -29 vhcurveto -4 61 -80 -210 80 57 hlineto 65 58 46 88 87 42 -48 -71 vhcurveto -36 vlineto -72 -50 -46 -71 vhcurveto -102 -54 109 hlineto 84 45 -45 -77 hvcurveto -32 vlineto -80 -58 -53 -113 -57 -42 8 15 -23 64 callsubr -61 69 -63 126 -11 vhcurveto endchar -131 210 -150 rmoveto 82 142 hlineto 96 15 66 55 81 vvcurveto 71 -43 42 -75 13 vhcurveto 5 vlineto 63 13 42 43 63 vvcurveto 84 -62 53 -113 -71 -40 -26 -35 -25 vhcurveto -3 49 -67 -157 67 28 hlineto 56 47 36 72 63 32 -37 -51 vhcurveto -18 vlineto -51 -35 -33 -60 vhcurveto -66 -53 70 hlineto 72 32 -38 -49 hvcurveto -23 vlineto -51 -39 -40 -84 -55 -28 56 callsubr -60 61 -52 105 -11 vhcurveto endchar 70 618 -160 rmoveto 87 214 -88 hlineto -158 250 -27 43 -19 12 -32 4 rlinecurve 85 173 21 44 20 29 58 callsubr 125 callsubr -50 249 50 -74 280 98 hlineto 209 -330 rlineto 84 hlineto endchar -29 523 -150 rmoveto 83 203 -89 hlineto -102 166 109 callsubr -238 -50 71 -418 -71 -50 238 50 -71 188 78 hlineto 148 -238 rlineto 82 hlineto endchar 76 268 174 rmoveto 56 156 29 hlineto 192 -330 rlineto 157 50 -68 hlineto -149 254 -27 44 -16 11 -31 4 rlinecurve 75 173 19 44 18 29 76 callsubr -48 hvcurveto -78 -178 rlineto -31 155 -56 -155 -41 266 1 callsubr 249 50 -74 280 41 hlineto endchar -25 -90 callsubr 188 35 -106 51 106 27 hlineto 137 -238 rlineto 134 50 -53 hlineto -99 169 -19 32 -20 15 -33 4 rlinecurve 45 115 12 29 17 24 12 13 19 callsubr -48 -43 -26 -96 -39 hvcurveto -48 -120 rlineto -27 106 -51 -106 -35 180 30 callsubr hlineto endchar 190 182 hmoveto 249 50 -74 280 98 hlineto 204 -330 rlineto 157 50 -68 hlineto -160 256 -24 40 -21 13 -32 4 rlinecurve 88 179 15 31 21 34 16 21 rlinecurve 4 hlineto -36 1 23 -26 37 hhcurveto 41 23 30 40 43 -28 31 -51 -59 -42 -32 -110 -54 hvcurveto -92 -186 rlineto -97 266 74 50 -396 -171 80 117 141 -594 -74 hlineto endchar 40 140 hmoveto 238 50 -71 188 78 hlineto 148 -238 rlineto 70 callsubr -345 -153 67 100 111 -415 -71 hlineto endchar 165 682 73 callsubr -249 -50 74 -264 -337 264 1 callsubr 249 50 -74 3 callsubr 192 hlineto endchar 37 564 -150 rmoveto 82 203 -100 415 71 50 -238 -50 71 -178 -235 178 30 callsubr -50 238 50 -71 187 235 -187 -71 -50 185 hlineto endchar 341 -86 callsubr 280 311 -280 -74 -50 249 50 -74 594 226 -117 80 171 -481 -50 74 -264 -311 264 -26 callsubr endchar 165 -90 callsubr 187 225 -187 -71 -50 258 50 -91 415 169 -100 67 153 -403 -50 71 -178 -225 178 30 callsubr hlineto endchar 12 309 -160 rmoveto 87 152 hlineto 110 19 65 83 24 71 -42 22 rcurveline 48 callsubr -51 80 208 -99 callgsubr -205 99 -135 160 -19 hvcurveto endchar -119 240 -150 rmoveto 82 141 hlineto 88 15 51 59 21 61 -36 23 rcurveline 36 callsubr -144 71 -105 125 -19 vhcurveto endchar -66 callsubr endchar -99 151 -200 rmoveto 239 50 -72 150 hlineto 168 468 32 callsubr 121 callsubr -150 -71 vlineto endchar 5 180 hmoveto 284 50 -91 185 143 52 -144 hlineto 199 361 118 callsubr 196 -361 rlineto -140 -52 143 -185 -92 hlineto endchar -99 151 -200 rmoveto 239 50 -72 100 109 50 -109 hlineto 168 468 32 callsubr 121 callsubr -109 -50 109 -100 -71 hlineto endchar 48 596 -160 rmoveto 87 214 -86 hlineto -207 313 203 281 rlineto 59 50 -200 -50 67 hlineto -159 -235 -4 0 -151 235 rlineto 73 50 -252 -50 59 hlineto 205 -309 -212 -289 rlineto -59 -50 61 callsubr 189 hlineto endchar -62 489 -150 rmoveto 82 203 -84 hlineto -151 216 142 199 rlineto 57 50 -184 -50 61 hlineto -105 -158 -4 0 -107 158 rlineto 59 50 -224 -50 51 hlineto 151 -217 -148 -201 rlineto -57 -50 63 callsubr 175 hlineto endchar 99 616 73 callsubr -249 -50 74 99 callsubr -50 212 hlineto endchar 3 530 -150 rmoveto 82 203 -101 416 71 49 100 callsubr -50 206 hlineto endchar 86 328 121 rmoveto 56 146 hlineto 44 5 33 12 33 17 rrcurveto 4 -251 -94 -50 269 -25 callsubr -294 hlineto -27 -19 -40 -13 -47 -4 rrcurveto 167 -56 -167 vlineto -87 7 -32 47 115 vvcurveto 161 74 50 -249 -50 74 -164 vlineto -152 60 -68 160 vhcurveto endchar -6 280 93 rmoveto 51 100 hlineto 36 12 28 20 19 27 rrcurveto 4 -202 -91 -50 258 50 -71 419 71 49 -232 -49 65 -146 hlineto -43 -34 -23 -53 -7 vhcurveto 105 -51 -106 vlineto -60 7 -21 27 67 vvcurveto 119 65 49 -232 -49 71 -127 vlineto -112 52 -46 108 vhcurveto 17 hlineto endchar 87 -86 callsubr 291 hlineto 24 39 44 13 60 hhcurveto 101 46 -45 -124 hvcurveto -159 -74 -50 249 50 -74 163 -81 callgsubr 254 -26 callsubr endchar -9 -77 callsubr 72 callsubr 322 -21 callsubr endchar -88 callsubr endchar 39 callsubr 488 715 -83 callsubr 38 callsubr 389 544 -83 callsubr -335 33 hmoveto 238 50 -71 648 71 50 -238 -50 71 -648 -71 hlineto endchar -105 callsubr -102 callsubr 329 715 -83 callsubr -104 callsubr 64 606 -83 callsubr -103 callsubr 15 606 -83 callsubr -105 callsubr -102 callsubr 423 736 -107 callsubr -104 callsubr 158 627 -107 callsubr -103 callsubr 109 627 -107 callsubr 34 callsubr endchar 33 callsubr endchar -97 callsubr 284 715 -83 callsubr -98 callsubr -6 606 -83 callsubr 65 84 callsubr -99 85 callsubr 39 callsubr 582 736 -107 callsubr 38 callsubr 483 565 -107 callsubr 81 callsubr 119 798 -107 callsubr 82 callsubr 117 627 -107 callsubr -11 callsubr 201 759 -78 callsubr -9 callsubr 142 590 -78 callsubr -11 callsubr 438 736 -107 callsubr -9 callsubr 379 565 -107 callsubr -94 callsubr 94 741 -107 callsubr -92 callsubr 94 573 -107 callsubr 85 362 -12 rmoveto 4 callsubr 20 callsubr 28 callsubr -200 395 rmoveto 34 69 callsubr -34 vlineto -200 -338 -59 callsubr 48 400 -48 vlineto -141 -73 -95 -127 vhcurveto endchar 45 callsubr 106 callsubr -14 callsubr -6 821 -78 callsubr -84 callsubr 24 852 -78 callsubr -14 callsubr 231 798 -107 callsubr -84 callsubr 261 827 -107 callsubr -14 callsubr 216 770 -72 callsubr -62 callsubr -84 callsubr 246 796 -72 callsubr -62 callsubr 86 404 hmoveto 269 -25 callsubr 99 callsubr hlineto 43 736 -107 callsubr -101 callgsubr 77 565 -107 callsubr 284 227 24 callsubr 268 -54 rmoveto 249 -25 callsubr -598 -74 hlineto -570 -50 rmoveto 314 21 callsubr -139 236 -26 callsubr 503 736 -107 callsubr 177 215 53 rmoveto 216 96 -29 callsubr 219 -53 rmoveto 238 50 -71 418 30 callsubr hlineto -482 -50 rmoveto 284 23 callsubr -117 146 30 callsubr hlineto 454 565 -107 callsubr 286 -61 callsubr -54 callsubr -7 -698 rmoveto 62 callsubr 271 -61 callsubr -54 callsubr 38 -524 -50 callsubr 41 callsubr 258 -61 callsubr -54 callsubr 18 -704 37 callsubr 248 36 330 rmoveto 88 callsubr 148 -388 -24 callsubr 18 -704 37 callsubr 257 -61 callsubr -54 callsubr 22 -704 -42 callsubr 247 36 330 rmoveto 88 callsubr 148 -388 -24 callsubr 22 -704 -42 callsubr 205 7 callsubr -13 -324 -24 callsubr 22 -704 -42 callsubr 233 198 641 rmoveto 4 -185 -138 hlineto 138 -126 rmoveto 69 72 54 54 -54 242 -76 hlineto -175 -242 rlineto -54 182 vlineto -32 -402 -24 callsubr 22 -704 -42 callsubr 237 -61 callsubr -54 callsubr 10 -663 -50 callsubr 8 callsubr 194 89 callsubr -12 -324 -24 callsubr 10 -663 -50 callsubr 8 callsubr 278 -61 callsubr -54 callsubr 44 -489 -44 callsubr 226 7 callsubr -13 -324 -24 callsubr 44 -489 -44 callsubr 235 89 callsubr -12 -324 -24 callsubr 44 -489 -44 callsubr 186 93 330 rmoveto 71 hlineto 142 313 rlineto 55 -274 -123 44 61 181 vlineto -155 -636 -24 callsubr 44 -489 -44 callsubr -15 523 -206 -73 callsubr 29 7 42 83 69 hvcurveto 38 vlineto -71 13 -87 callsubr -264 vlineto -129 49 -65 125 82 50 49 43 16 vhcurveto 4 -92 hlineto 112 22 1 -4 rlineto -67 -45 -45 -38 -53 -52 callsubr -93 callsubr -87 callsubr -81 callsubr 30 588 rmoveto 98 callsubr -93 callsubr -87 callsubr -81 callsubr 85 626 -46 callsubr -37 callsubr -99 233 hmoveto 74 hlineto 179 468 32 callsubr -103 callgsubr endchar -10 callsubr endchar -10 callsubr 353 116 -100 callsubr -10 callsubr 230 127 -106 callsubr -10 callsubr 453 147 -107 callsubr -10 callsubr 365 116 -89 callsubr 340 629 408 rmoveto 156 hlineto -71 -306 rlineto -4 hlineto -222 474 rmoveto 4 hlineto 75 -286 rlineto -155 hlineto -177 118 rmoveto 152 hlineto -77 -306 rlineto -4 hlineto -68 -102 rmoveto 97 hlineto 65 242 180 0 65 -242 97 0 61 241 rlineto 141 50 -129 hlineto 29 116 rlineto 100 50 -86 hlineto 48 191 rlineto 52 50 -205 -50 88 hlineto -45 -192 -179 0 -60 242 -94 0 -63 -242 -176 0 -45 192 rlineto 88 50 -245 -50 52 hlineto 48 -191 rlineto -86 -50 99 hlineto 29 -116 rlineto -128 -50 140 hlineto endchar -72 28 hmoveto 63 callsubr 94 callsubr -84 callsubr endchar -84 callsubr 161 796 -100 callsubr -84 callsubr 38 807 -106 callsubr -84 callsubr 261 827 -107 callsubr -84 callsubr 270 42 -99 callsubr 13 182 hmoveto 289 50 -94 101 171 50 -171 100 171 50 -149 hlineto 176 297 rlineto 55 50 -206 -50 86 hlineto -161 -282 -4 0 -155 282 rlineto 86 50 -253 -50 55 hlineto 169 -297 rlineto -142 -50 171 -100 -171 -50 171 -101 -94 hlineto endchar -84 callsubr 173 796 -89 callsubr -84 callsubr 185 788 -101 callsubr -96 callsubr -84 callsubr 231 826 -95 callsubr 13 callsubr endchar 13 callsubr 204 544 -100 callsubr 13 callsubr 179 559 -91 callsubr 13 callsubr 210 573 -80 callsubr -39 300 -12 46 callsubr 53 110 callsubr -39 300 41 rmoveto -76 -38 44 76 -19 hvcurveto 275 305 rlineto 1 -15 0 -14 -15 vvcurveto -146 vlineto -147 -35 -88 -108 vhcurveto -142 191 rmoveto -1 15 0 14 15 vvcurveto 146 vlineto 147 35 88 108 76 38 -44 -76 19 vhcurveto -133 -549 46 callsubr endchar -39 300 -12 46 callsubr 305 vmoveto 37 16 20 31 hvcurveto 10 vlineto 31 -16 20 -37 -37 -16 -20 -31 vhcurveto -10 vlineto -31 16 -20 37 vhcurveto -252 110 callsubr -265 187 -6 96 callsubr -265 187 324 96 callsubr vhcurveto -3 vlineto -16 -7 -11 -14 -25 vvcurveto -27 21 -24 31 33 22 25 35 52 -44 33 return -295 vlineto -66 -59 -31 -56 -77 -36 43 92 vhcurveto 341 -60 callsubr return 177 185 50 -185 95 hlineto -96 -19 rlineto -76 -85 -50 85 -565 -71 return 128 83 98 173 173 -83 98 -128 -80 -48 -42 -49 -21 hvcurveto -4 return -132 -369 -4 0 -132 369 rlineto 71 50 -224 -50 51 hlineto return 114 68 68 69 24 hvcurveto -37 24 rlineto -53 -27 -45 -38 -80 hhcurveto -92 -59 return -9 324 hmoveto 258 50 -71 419 71 49 100 callsubr hlineto return -70 52 hmoveto 269 50 -94 594 75 callsubr -598 -74 hlineto return -80 -62 -4 vlineto 40 -19 -57 34 -87 hhcurveto -168 -121 -129 -232 return -315 -54 rmoveto 327 21 callsubr -152 236 74 50 return -121 175 121 175 -22 30 -194 -181 rlineto -48 vlineto return 203 50 -88 hlineto 60 174 264 0 60 -174 rlineto -88 -50 return -43 24 -26 39 39 26 28 36 27 -18 23 -19 8 vhcurveto 4 vlineto 11 return -598 rlineto 82 648 74 50 -207 -50 74 -499 -4 hlineto return 415 178 -100 67 153 -412 -50 71 -418 -71 hlineto return 200 36 -4 39 rlineto -299 -298 hlineto 40 -4 35 199 return 159 hlineto 129 75 70 123 124 -70 64 -131 hvcurveto return 35 -199 40 4 rlineto 298 -299 vlineto -4 -39 200 -36 return rmoveto 35 35 10 27 27 hvcurveto 58 58 22 116 346 vvcurveto 99 return -4 92 hlineto -165 -33 0 -38 71 -13 rlineto -396 -71 vlineto return rmoveto 35 30 9 23 25 hvcurveto 46 43 22 77 267 vvcurveto 58 return -216 77 callsubr -227 -50 71 -418 -71 return 105 462 rmoveto 34 hlineto 25 190 rlineto 96 -84 -96 vlineto return 15 15 1 1 8 hvcurveto 107 vlineto -2 -12 -12 -1 -13 hhcurveto return -81 -49 -49 -43 -16 vhcurveto -4 -105 callgsubr vlineto endchar hhcurveto -128 -83 -98 -173 -173 83 -98 128 hvcurveto return vlineto 151 -67 67 -159 -68 -50 -13 -24 -43 vhcurveto -4 return vlineto 149 -59 69 -162 -65 -48 -14 -23 -43 vhcurveto -4 return extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL.ttf000066400000000000000000005073501416264461600237160ustar00rootroot00000000000000GPOS*^0 GSUBU OS/2l`cmap/NNcvt #hDfpgmY7 Hsgasp glyf>#|HheadN/ 6hhea@D$hmtx|} locar%maxp_h nameޣqpost-prep!*}_< SۼE/h DD`x m00oP ;IBM @ $,   %+f0],e0,^,''F0)'v"?03R"2"008,i&\008e'p 7.4244t424a44V4l4 42|424S:#,9X0X0X0XJX6X;X'X@X>XDX7X<1J??K  3 B*BL ) 3PP A +A+ ))2$26$6JJ)'H7H"9"NN||*/>>9~9~MG5 6&")*???#'0164X7X?XBXBXBX^XBXBX?XBXYXYXYXYD_TX/XBX #%c4K4z$ ,k2L6QF2k2L6 4m4ZV-/#42q1l2%`;` ~4~2{,,%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%%+%+f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0ff0f09+9+,,,,,e0e0:,,,,,,,,,,,,,,,,,*)')')')'F0F0F0F0vv?0?0?? ??0?)?0?L0?r0r0333R"`02"2"2"l"80000+}08,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,88,8,,00088888,R"k-e'e'e'\pppppppppppppppppp    ...222224&&4444444444444444422222&4a4aaaa4a4a2a4a!j4a 44444V4V4V4V4X& 4 4 4 4 4222222222222222222222222444S:S:S:S:S:4####|4,,,,,,,,,,,,,,,,,,999q~*4h92o%+f0*.800k,+,00K0f008,0i&, 170v p0|0!00%0,=0Hs44944 d9444l4424|42#S.4"44#4t484%+%+f0f09+00&20,,,,++@,,0!000K0b0f0!'0Z0$08,8,8,,Av  y 0080?0?3ovv"*94949&44442   d9d9a4444444=#$4442222"""4S:4a4a4##42v%f$\$[s^%l*R t)l$v%f$\$[s^%l*R t)l$$$w$s$?$v$Lhl$A%$$aj%9 $s\K\\\K\\\\\\\K\K\K\K\\\K\K\J\\ \!\I\J\f\eXXXXXXXXXXXXXXXX3XX]qkcckfkkk]gdgcccg]XXXXXXXXXXXXXXkkk]gdgcccg][ & `T}lGScdzQINi;>?@ABCDEFPRbH!"#$%&'()*+,-./0123456789:ejf~M  gnhlr  "'$%-INKL{wpqBsrtuv+a_]^OAnt9KLWXUVak[\|YZmkiR 09@Zgz~~7Y #(/0O_s?    " & 0 3 : D p y !!!"!&!.!Q!Z!^!!!!!!!"""""""+"H"`"e%''L+ 1:A[h{7Y#&01Pr?    & 0 2 9 D p t !!!"!&!.!P!S![!!!!!!!"""""""+"H"`"d%''L+ F5F_=8)=F"'BB<߁RewF77&#ޔvtf>'&یcv  &(BLNXbfzTX\H8:FVN>`T}lGScdzQINi;PRbHejf~M gnhA_opru]Jswqv^aniktlrB  '"$-%+NIKL_Hapjq  !*#)9:<;=@?>GEDTQJSPR\`fhg.Us,AF     QRzMTuwxybd{^\mvgNOPWY_`aceinoprs|VZI~HLS}UX][fhjklqt^[]moz|}~{uwxyv  &(46785/1230MOVXYZWcbdeUVYWXZ{|R 09@Zgz~~7Y #(/0O_s?    " & 0 3 : D p y !!!"!&!.!Q!Z!^!!!!!!!"""""""+"H"`"e%''L+ 1:A[h{7Y#&01Pr?    & 0 2 9 D p t !!!"!&!.!P!S![!!!!!!!"""""""+"H"`"d%''L+ F5F_=8)=F"'BB<߁RewF77&#ޔvtf>'&یcv  &(BLNXbfzTX\H8:FVN>`T}lGScdzQINi;PRbHejf~M gnhA_opru]Jswqv^aniktlrB  '"$-%+NIKL_Hapjq  !*#)9:<;=@?>GEDTQJSPR\`fhg.Us,AF     QRzMTuwxybd{^\mvgNOPWY_`aceinoprs|VZI~HLS}UX][fhjklqt^[]moz|}~{uwxyv  &(46785/1230MOVXYZWcbdeUVYWXZ{|,K PXYD _^-, EiD`-,*!-, F%FRX#Y Id F had%F hadRX#eY/ SXi TX!@Yi TX!@eYY:-, F%FRX#Y F jad%F jadRX#Y/-,K &PXQXD@DY!! EPXD!YY-, EiD` E}iD`-,*-,K &SX@Y &SX#!#Y &SX#!#Y &SX#!#Y &SX#!@#Y &SX%EPX#!#!%E#!#!Y!YD- ,KSXED!!Y-+++6,"+D8,+0' +jV@.+pT<$+T@4.+xbL4+L>0"+bT@.+3*!+J</"+ D6,"+ <0&+ 6.$+ hT@.+ % +# ++ E}iD?t@tott`stpt@u0tPt4(D.H8lKPW_5gQt 8 Jp      (EX/>Yܸܸ013!%!! 0 0+/;EX/>YEX/>YEX&/&>Y009/ ܸ&!#!&9|#/+09401"&546;54&#"#"&54>323#"&=#726=#"KQj}I9:)  2I/X\H (++#2.??N<1 LBJNI=@ *!VN' -& >.1^1-&%0D/EX / >YEX/>YEX/>YEX/>Y ) )99|/ 901".54>323733#"&=#'2>=4.#"0N77N0=L4(H ),+J-##-@II $EeAAeE$6%O)' -% %6@%%VJ^JV,*EX/>YEX / >YEX/>YEX/>Y9  9 /  901"&'##'573>32'26=4&#"Y=L4(GI<0N77NM@II@-##- 6%O &!%6$EeAAeE$@VJ^JV%%,-ZEX / >YEX/>Y %%9|/A0@Pq01".54>32#"&54675.#"32679Y= %B[6)B.#  '"9(PE$PO^4'1'0C,EX / >YEX/ >YEX/>YEX/>Y & &99/9}/ 901".54>3235'575#'2>=4.#"0N77N0YEX/>Y ##9/A/?]901".54>32!3267354&#"8Y= #>U34R9REYEX / >YEX&/&>Y 9|/и"и#0173#5354>32#"&54675.#"3#3!,GGG.?'9?  )*mm[25I&?,.'"<6W5a2',PCQ_"/EX/>YEX/>YVDV9D/A`DqADD]ADDqApD]5\V59\/A0\qAp\q> A p>>>>>] \>95D9"(ܺ,("9K-KD901".54>75.54675.54>32>32#"&'##"';226=4&#";2654&+ ?V6& "6#076J,-B  6K,%&*v\V~4334433_A:2HP3= -" ,"*/ N7(?,'  /3&(?,HBLY81$1881$18&'.)%$*0,/AEX$/$>YEX)/)>YEX/>YEX/>Yܸ00$9$;';901".54632326=##".54>323732>=4.#" 'D3#,"QGJ<0N77N0=L4(#?Y!-##-@II)$   ]YE#3#Dc??cD#6%O%?_A %%SGXJV',7ESEX/>YEX/>YEX/>YJ8J98/A88]A`8qA88q)P)J9P/ApPqA0Pq2 A p22222] 2P98)9? ?8901".54>75.54675.54>323#'#"';226=4&#";2654&+ ?V6& "6#076J,,&="6K,%&*v\V~4334433_A:2HP3= -" ,"*/ N7(?, 35"(?,HBLY81$1881$18&'.)%$*"T"EX / >YEX/ >YEX"/">YEX/>Y"9/ "9и0173'573>323#534&#"3#"GG%1^PGF7:)!G2r &!!aa22EB $20 aEX/>YEX/>Yܸܸ9/01"&=46323'573#GGGs"""" &! 2,&EX/>YEX/>Y9/A  0]A]9/ܸ 01"&54632325'57"&=4632433 =GS#-#!T &!XSG"""""EEX / >YEX/ >YEX/>YEX/>Y9/ 9  иии0173'573?#53#3#53'3#"GGP}CI6YEX / >Y9/0173'573#"GGG2r &!:20:EX/>YEX / >YEX/>YEX:/:>YEX+/+>YEX/>Y:9/ 11+9""9и+,(и70173'573>323>323#534&#"3#534&#"3#0GG$1BN&3!]OGF69( GG59) G2 &!\!33%ba22EB %22EB %20b"EX/>YEX / >YEX"/">YEX/>Y"9/ 9и0173'573>323#534&#"3#0GG%1^PGF7:)!G2 &!\!aa22EB $2, )5EX / >YEX/>Y  01%2>=4.#"".54>32"3!!3"#2!!2#6Y?""?Y66X?##?X**9"z"9**9"z"9*6&Fe>>dG&&Gd>>eF&&89.EX/>YEX / >YEX/>YEX/>Y9/ $$9 9013'573>32#"&'#3!%26=4&#"&GGI<0N77N0YEX/>YEX/>YEX/>Y9&&90135##".54>323733!'2>=4.#"A[J<0N77N0=L4(G!-##-@II%6$EeAAeE$6%Od2%%VJ^JV0%EX/>YEX / >YEX%/%>Y9/ %9"к "9|/ 0173'573>32#"&54675.#"3!0GG)-6!!  ( [2 &!\!,* $ !(280EX/>YEX/>YEX/>YEX/>Y $$9 9/ 9* 9 $*9 /$ 901"&'##5332654/.54632353#54&#"0C DD5<7;R9LM_Q0= DD4915+(6NOc '4*3&+@ NBFO -#'(&&"+ JDDW'K_EX/>YEX/>Y ܸии9/01"&5#532>?33#36+C  3I-3w5  Y5e& NEX/>YEX/>YEX/>YEX/>Y9/ и/и/и/9/ 901"&5'5732>5'575#^PG7:)!GG%1 aa &!EB $' &!6 &!\!ZEX/>YEX / >YEX/>Yии   01#53#3#53##63GG3J22q22, EX/>YEX/>YEX/>YEX/>YEX/>Yии и и01#53#333#53####>3GbwNwbG3VsvV22Xv22,sEX/>YEX / >YEX/>YEX/>Y9к 9 и  иии01737'#53#37#53#3#53'#3#93;ki=93;kn=22222222,&EX/>YEX/>YEX/>Y9/A  0]A]9ии!01"&54632326?#53#3#53#{52 13GG3 &//#!/3322q220$. QEX/>YEX / >Yиܸи  017##5!353!.!CC`(h(VhrEX/>YEX/>YEX/>Yк9/  и017333#53'!3#3#4g4X<YEX/>Y-#-9#/$ $#90173#5!2#!7326=4&+5326=4&+4JJS^f%1903H,9@@959952V2[J%9**=)-G36A5,5A6:0,0:2S'\EX / >YEX/>YEX/>Y  901".54>32353#54&#"3267ZDmM*+Mj?ATPPTF1H.l`F_* )>T 3_RW[0,>22>$>T1jzI9?3!4IEX/>YEX/>Y0173#5!2#!7326=4&+4JJ+FsS..SsFկogppgo2V2,WWWW,6zkkz4IyEX/>YEX/>Yܸ  9/  ܸܸ0173#5!#5!353#5#!53!4JJ P??P2V2uLL耶4@oEX/>YEX/>Yܸ  9 / ܸ ܸ0173#5!#5!353#5#3!4JJ P??^2V2uLL222EX / >YEX/>YEX/>YEX,/,>Y ! !9ܺ'!9'/&*к.&!901".54>32353#54&#"326=#5!##'#YBmN*,PpEOV PPXP5O33G,L_w=%30@ 2]TW\/.?07;!=V55T; LF]22b'4EX/>YEX / >YEX/>YEX/>Yк9/A]A/?]  ии0173#53#!#53#3#53!3#4JJJQJJJJJ2V22222224- AEX/>YEX / >Yи0173#53#3#4JJJJ2V222GEX/>YEX/>Y9/01"&54632325#5!#HG" ]^ Jc 8+'"t22 X\4EX/>YEX / >YEX/>YEX/>Yк 9  ии и0173#53#3?#53#3#533#4JJJaNDDD^J2V22m2222/f24& KEX/>YEX / >Yи   0173#53#353!4JJJP2V2248EX/>YEX / >YEX/>YEX/>Y9/и   и ии0173#5333#3#53# '#3#4JJȶJJJ44J2V2b222uiu24EX / >YEX/>YEX/>YEX/>Yи   ии0173#533#53###3#4JJgJJRyJ2V222xV22)5EX / >YEX/>Y  01%2>=4.#"".54>32j0J33J00J33J0FsR--RsFFsR--Rs-">W55W>"">W55W>"92]TT]22]TT]24NEX/>YEX/>Y 9 /A ]A 0 ]AP ` ] и 0173#5!2+3!326=4&+4JJQbgka^69962V2_]\e2s@1/1@2P 6K/EX/>YEX/>Yи!,01"./.54>32;'2>=4.#"+">:_C$-RsFFsR-%Ea;1&!0J33J00J33J [ 9\{LT]22]TM|\8B2">W55W>"">W55W>"4'EX/>YEX/>YEX/>Y9/A]A 0]AP`] 9и'0173#5!2;#"./#3#326=4&+4JJR]kQJw1$F* ymJ5::52V2[\H^$ 2 "2s?111?:5EX/>YEX / >YEX/>YEX/>Y ''9 9ܺ- 9'-9 #01"&'##5332654&/.54>32353#54&#"+>OPPDOTK9@5_j :R3:IPPCPFE>E2]e;W ( <.3?F;3: bX+F1&7.37>24: aR.M8 #vQEX/>YEX/>Yܸ и и 0173##5!#5#3!^PSP^2Ruu2,\EX/>YEX/>YEX/>Y и01".5#53#3265#53#}Gc@JJJ``PJJ:] CkL{22whffh22KmH#ZEX/>YEX / >YEX/>Yии  01#53#37#53##I4XdLLdX4`22222xEX/>YEX/>YEX/>YEX/>YEX/>Yии и и01#53#333#53####J4X^X4aa22M22x9EX/>YEX / >YEX/>YEX/>Y9к 9 и  иии0173#53#37#53#3#53'#3#;;IC;;IC2!52222222ozEX/>YEX / >YEX/>Y9и и  ии01735#53#3#53#3![4VV4[2o22-2229C QEX/>YEX / >Yиܸи  017!#5!!53!9QtEQ5Ou50(!5EX/>YEX/>Y 01%2>=4.#""&54632,(7""7()6""6){{{) =W77W= =W77W= 50( %]EX/>YEX/>Y 99"9#901"&54632.#"2>=<',{{{ >9)6"(7"> %9? =W7  =W7  9?0(#/kEX*/*>YEX$/$>Y* *9/A]A]AqAq01%2>=4.#"7"&=4632"&54632,(7""7()6""6){{{) =W77W= =W77W=   ϹJ ;EX/>YEX / >Yи0173'733!cVN1;N.nw16)OEX/>YEX)/)>Y$ и)9/$&01?>=4&#"#"&54>32!53!618G> 0$"6J,ix-="G62J1c;>F  %% .#eZ,J@:_; IEX5/5>YEX/>Y5##9/A0@qA`pq9/-#9-/?901".54632326=4&+5326=4&#"#"&54>32 1N6#$5#LUOMMIHJG;"3$"4J/1T=#,8=0$B^ $. %$  CB"?E6C4#89  %% .$+B,"7),<(/L4', `EX/>YEX / >Y  9 /A ]ܸ и ии01%!533##%!#gA_ee`A1Jo@/hEX/>YEX/>Y! &!9&/9/A]01".54632326=4&#"'!!>32 /K5#$6"PPJF-=9wO3WEX / >YEX/>Y   9/))901".54>7>32'2>=4.#"/:Z= YEX/>Y ܸ01!#5!#6X[rH7!)7MEX/>YEX/>Y191/A`1p1qA01@1qA11q8 819819*C01".54>75.54>32'26=4&#"2>=4.#",9[?"/;4( ;S22S; (5YEX/>Y) )9 /9017>7'#"&54>322>=4.#"@iK-)5"`l#?W4:Z= YEX/>YEX-/->YC4C9;G;9 4G94G9C9 9 /! $к0;9'09-+F0901".54>7'.54>32>7#53#3#"&/>=4&#"267'%7Z@#(8"'3F,Sc0@$HN"0*N&5 %^B;:3-/1*,G. U 1F,$9/'"O/$;*L?7/(!S-229f)'2 #'C*'49* #> H-Y7B7B9/A]AqA]иG%7B9%/NGN9(NG9%*и.01".54>32#"&'##".54>32373326=4.#";'26=4&#"Vc67dWVe8(A-4:9/"=--="-8 !(801+SvKKvS+,RtH2r@0330211y:l]]o>9fV4\E(1''17R87S7-!EJ_d,DsT05]~I7J|Y1  1,,1>4h4>? KX /01!!? XN? KXI +N /01!!  N> N /01!! 1N>` /01!!b>B| EX/>Y01"&=4632 ## ## &&&&B|&N'NN L&N N )v|EX/>Y ܸ01>7#"&=4632#)#0"# #%:@'&( 21,3v&Q N PEX/>Y0153#PT"``PZ&SSAEX / >Yܸ 01"&=4>7332 #%:#-!%) 30,B%'+ EX / >Yܸ 01>7#"&=4632#+#-!% #%:B%') 30,A&UU+&VV) /ܸ 01>7#"&=4632#)#-!% #%:}B%') 30,)&YY$N/0157$yy06N/01?'76yyl0$N&[[6N&\\JL  /EX/>Yܸ01"&=46323# ## ##Q(b&&&&6J -EX/>YEX/>Yܸ01"&=463253# ## ##Qb( &&&&)@#1@/EX+/+>Y$ܸ ܸܸ ܸ 9/01"&54>75332675.54632"&=4632cs#=S0;QbC8!.$"7I ## ##cU.H5nEC;@  %% /#J&&&&'#1MEX/>YEX$/$>Y+ܸ#ܸ!ܸܸ9/01>=4&#"#"&54>32#"&=4632QbC8!.$"7I*cs#=S0; ## ##vEC;@  %% /#cU.H5n&&&&7fL  //01.54>70,YG--GY,)A--A)ZwTTwZ"Vfs=4.'7)A--A),YG--GY,xVfsY013#3#9ww11v,/EX/ >Y013#53#wwY 1~v0"J"/EX/ >Y"9/901"&=4Ȏ=46;#3#,+9,,9+,ed))de/&,,8,,&/1," ",1v>!J!/EX/ >Y!9/90134>75.5#5323"+d((de,+9,,9+,eY ," ", 1/&,,8,,&/qR/EX/>Y013#@@*qt/EX/>Y013#*@ @/^%EX/>YEX/>Y013#BBF>T +/EX,/,>YEX/>YEX///>YEX / >Y/9/  & ,9&/012=4#"2=4#""&54632"&546323#PPP"PPP~KWWKKWWKWWKKWWc@@eqTqqTqqTqqTqeaaeeaaeeaaeeaaeF> )5AEEXB/B>YEX$/$>YEXE/E>YEX*/*>YEX6/6>Y$E9/$* 0B*90/60<й012=4#"2=4#"!2=4#""&54632"&54632!"&546323#PPP"PPPPPPKWWKKWWKWWKKWW5KWWKKWW@@eqTqqTqqTqqTqqTqqTqeaaeeaaeeaaeeaaeeaaeeaaeF~v/EX/ >Y013#~==~~v(/EX/ >Yܸ0173#3#~====GeEY/EX#/#>Y3399}/P399P9:#9):39|)/F#9AF901"&5463232654&/.54675&54632#"&54675.#">54&/.'KV# ;>.*@MPF8Je_KV# ;>.*@LQF8Je %,..D%,..D6.# ./'0 HA6L,[KU6.# ./'0 HA6L,[KU<2/&. 2/&. 5e8$*b/EX/>Y**9/9}/и*!и%01".54632;".54>3!#'>5#$'B/"0# 5ZD&&C[4 Jj!*,V +'  1J21K12tv8WH:6&<PoEXG/G>YEX=/=>Y'G2'29/2'9/9/01%"&54>32#"&5475.#"32672>=4.#"".54>32V\2C)=H 3@>3,1%1'=gK))Kg=>fK))Kf>H{Z33Z{HH{Z33Z{mX.I46)B4;9A#$r+Kg<>Y%0%N90/A0]A0q%9/%9/D9D/ D9й иM0135#532;#"&/#3#2>=4.#"".54>32'326=4&+i"*# "N\#:**:##:**:#)H6 6H))H6 6HH&&- > ?HC,:!!:,,:!!:,!7L,,L77L,,L7"-EX$/$>YEX/>YEX/>Y-$.9-/и  и-иииии-и$!$#и'и!)и*0135#5373#3#5357#/#3#'35##53#5#3#C ^MK^ v LK c';((;',,,,,MM,)Vo,8pEX/>Y  99/9/ 9/%й -*-9101"&546;54#"#"&54>323#"&=#'26=#"57HV1L #2 =B0 .*+4("V3+35.S  :4 #+ = *Vr .EX/>Y9/0126=4&#""&54632/))//))/KYYKKYY{:,T,::,T,:%bSSbbSSb?j'.EX / >Y(9/01".54>32'2>54.#"$?--?$$?--?$))))j.@%%@..@%%@.7 ++  ++ ?tEX/>Y013#`gb&?t}&xx#m EX / >Y01?/7753#'7'?WR'D32[ SA'RC0[23j+Dc,P955icD+29P08 =EX/>YEX/>Y +и 017573#3#753#573#!!WffWU!7fWWWW3T68 %+UEX/>YEX/>Y+ +"и $и(и+017573#'3#3#73#53#573#573#!!WffWWffW!UU!7fWWffWWtqqtq׎W]WW-TT4xEX/>YEX/>Y9/9/A] и ииииииии017#537#53733733#3##7##37#}}#="">"}}#="">i888879!.EX/>Y9/и013#7L3Ue=?v?+ܺ 9} /  9|/01%"&'.#"'>323267$9#6&6-$9#6&6&&BL -/ܸи и 01#53533## >>::BN /01!!B,N:Bg D /EX/>Y ܹܸи и 01#53533##!! >>,l::q:^b /01?'77'^))))))B9) !/ܸܸܸ01%"&=4632"&=4632!!,!!!!!!!!,9$$$$p$$$$[:B)/A]A]017!!!!B,,: :?&eBEY/A]A]ܸ и иии017#537#5!733#3!#S:A:S:A::ff::fY /EX/>Y0175%YaDEEY /EX/>Y017%5%5YaZ9EDYF "/EX / >Y015%!!YaZZ:H>><:YF "/EX / >Y017%5%5!!YaZZ>H<:_t /017"&=4632 ## ##&&&&TL /017"&=4632:BB::BBF3 3FF3 3F/( 1EX/>YEX/>Yи 013#73#/KK"]]8%%BQN//01!5!#z>:1 HEX/>YEX/>YEX / >Y 01#53373#{bU00>_:٫F ,'UEX/>YEX/>Y""9/"9/01"&546323254632#"&5475&#"t45 @B:45 @B,$!! ^GN,$!! ^UGNm!,7K"+& + 9 ик 9"-и&4017".54>323>32#"&'#'27&#"!26=4&#")A..A)HZV:)A..A)HZV-Z%#\+22j+22+Z%#m3G++G3HHJF3G++G3HHJF8?4,4??4,4?#%SEX / >YEX/>Y 9/9 "01".54>32!3267!5.#"hGwV11VwGFxV1[=Zv$-7HYkZ>=[ 3_RR_33_R +RC&?/ ** %#0eEX/ >YEX/>Y 9 и ии $и+01"&='>74>323267>=4&#"LO !.&5 DDkg20/B* #/:|HF$ `N' E6I.XRdW/I@A35'.?F 4/ -!47#/3EX/>YEX / >YEX*/*>YEX/>YEX/>Yи   ии*$9$/$0ܹ30173#533#53###3#26=4&#""&54632!!4JJZJJRJe,&&,,&&,HVVHHVV82V222xV26*D*66*D*6,_OO__OO_9:4&I} /EX/>YEX/>Y   901".54>327.'3'26=4&#"!8W> 8P1V.qYU(\O4m>II>>II %C`<:_C$AI0Dh^5ON]NOON]NO$;V+q/,9/%%9и 9  к9к%901%"''7.547'76327''26=4&#"=P4c2e$e2c4PO5c2e$e2c5O?;;??;;u*d2eF)S8e2d**d2e8S)Fe2d*5L:Z:LL:Z:L,u+3sEX / >YEX/>Y  и ܸ 9/)и+ܸ,и301.54>753#"&54675.#>7#3O68N/7KV"'+! $ *9$73;:4 +F_99]E+fdE3 #$ Z!.%gJW=OCX224EX / >YEX/>Y * *9 /A ]A ]A ]A q 9|/ #$*9$/A$]A$$]A$q'/'*901".54>32#"&54675&#"3#3#32>7IAhH&'KlD1N6$ %F0F/ bQ!6* ( %:N 3_RU\1$1 (& 8K-2d2\e$0?4!n5//EX/>Y++9/Ap]A]A]Aq!+9|!//и201"&546323267#737>32#"&54675.#"3#?7=" (4eU7=" (5 c-%';K4^`-%':L4^`6<EX/>YEXY7 и% %79 /A ]A q %79/A] +и .и79017>54&'#53.54>32#"&54675.#"3#!53!># \L  9Q1/M6$ 4KD 'R60P ",34&M++G3#0!'&  H92O'4  6,! cF 5<CEX/>YEX/>Y,6к699/иܸ=к-=9",-9"/3и5ܺ<9C,3901.54632.54>753#"&54675.'#>54&'ak# :)dh5K-7X_# 0"ichb7=?=?3?==?H5 '&  `U'@.NMG3 '&  aQUl N=-0:A64>v#EX / >YEX/>YEX#/#>Y   9/A]A/qA] 9/A/?]A ]AqA] иииииии 01735#535#53#53#3#53#3#3#3!^7VV7^2e2d2)22222d2e22P #-59=//ApqA]A_]A]A/]AqA@qAqܸ и=69=699/A`9p9qA09@9q::99!и#ܸ6$и9,и:.и=501%!53#5!5332+#7326=4&+526=4&#3#535#4JJ7-G0)3:.1E*)755==58778YYYY2,2gg*:""5'):%'A0gA2!2A2:-#-:227 3;BEX / >YEX./.>Yи и ܸи и 5!и.;"к!"9/.+и.3ܸ-и5<и;B017.546?3623:73#"&54675&'>7#7"&'##"QPpg2 2BI# #/9J) 0B)22  .'D6/<&qYQQX C. &%" G491#TQY0mFr:6@ EX/>YEX@/@>Y; и&&;9/AqA]Aq &;9 /A ]AO ]A ]A ]A qA ] &;9/A /?O] ,и /и2и5и;=017>=#53.'#53&54>32#"&54675.#"3#3#!53!>+2e^?0 9Q1/M6$ 4KD %R60P\4202!#+G3#0!'&  H9%2023) c4%)-EX / >YEX/>YEX%/%>YEX/>Y% %9/A] %9/  ииииии!и"и&и )и*и-01735#535#535#5335#53#3#3##'#3#3#3#5JKKKKJJJKKKKRJυ22t22222t22"4?4.GQ*/EX/>YEX / >YEX/>YH 9H/  иH9*9$99?*909?90/Q01"./#3#53#53232654./.54632#"&5475.#"326=4&+w-H<0_AJJJ[i:8Q!K:,3 57VK@D 0)$*^A3773A !7)22V2[\@YEC##B9:E,) $ *!'&YEX/>YEX/>YEX'/'>YEX#/#>Y '9/A] '9/   иииииии!и%и'(и+и,и/и#0и3017#53'#53'#53#37337#53#3#3##'##73#3#3#cV04X-?^<-X40Vd=aAAaDMKG2t222222t2f2v&2Z cEX/>YEX/>YEX/>YEX / >Y ܸ 0132#4&+#332653+ZTI<-2<<2-YEX:/:>Y7ܸܹ ܹ009иий9/% % 9017".54>3235#53573#5#72>=4.#"!!*E22E*.#\KK7$0((YEX/>YEX%/%>YEX/>Y%%9/A]A/?] и ии и!иии"0173#53#53#3#53#3#'3#53#3#4JOOJJ`VD}GGFBLJ2322223a222#vEX/>YEX/>Y  9/A] 9|/A]99A]9 9 ܸи к999901735575575##5!#5#773!^yyyyPSPyyyy^2;7;b;7;uu<7;b;7;24#)/3VEX / >YEX#/#>Y   9/A?OqA]Aq9/A]A/qA/?]A@]ииик$ 9$/A/$?$]A$]A?$O$qA$]A$qAP$q и)и*и /и0и30173#535#535#5!23#3#+3!73267#53.+35#4JJJJJJ0RiSJKVjO^s0< <0s2%2k2b2IK2  2IK26++6m2 -7@EX/>YEX+/+>YEX!/!>Y+и ܸ и.+>.>9/.9/.и=к#>=9+-ܸ>701%.54>?3#"&54675.'!##'##*'#26=#bp+PqG 7 Sb$  0,==%40>&  7h2H/98REXUX.PS L6!'&!  2j&Q&>R/yQsJGU1AIEX%/%>YEX/>Y%: :9 /A ]A ] A ]:9/A/?]Aoq ܸ-и 0и 1и 4и D01".5467#537!5!>54&#"#"&546323#!!32675.546328.L6 SzS@E3 $lc.L6 Sz@E3 $l +='22d2.4D  ''!7H+='22d2.4D  ''!7H27 .8sEX / >YEX,/,>Yи  ܸ  и /,/9//и,.ܸ8017.54>;73#"&54675&'32>7#"&'#[f)MnE 7HN$ -_"6+ ) &;O27y4H-3/ TZ.PU F0 ''  $0@3!R#=P.Hf%iYEX/>YEX/>Yܸ и и 0173##5!#5#3!!!^PDP^ߑD2xx$23;5&EX/>YEX&/&>Y AO ]A ] AO]A]и и к9&$01!"&/#53267!5!.+5!#3#;#YEX0/0>Y   09}/A]0 9/A]99A]9 9 к9999' 9'/01735575575#53#7732>7'#"&54632+5J____JJ7;Z?$  &#-)LpF2/7/d/7/22R7RdR7R5F& %/04aJ,4P&EX / >YEX/>Y   9/A /?]9/иииии &01735#535#53#5!2+3#3!326=4&+4JJJJJJSbgka^69962m2n22`[[en2m2qA121A2P '1;//ApqA]A_]A]A/]AqA@qAqܸ и и к292/A_2qA/2?2]1219%и!и'ܸ#и(;017#53#5353353#5##'326=4&+5326=4&+JJ7B7NW)3:.0D)7B7 6==617712,2ggghV@"5'):%&A/ggg@3!3@2:-#-:,Z+EX/>YEX/>YEX / >YEX/>YEX+/+>YEX#/#>Y+ܸ #$ и'(0173#5354632#"&54675.#"373#53#3#,GGG{rVV  ##IJGGG25es5+"YK$ 22a2,_"EX / >YEX/>YEX/>YEX / >YEX"/">YEX/>Y"  9и0173#535463273#53.#"3#3#,GGGuc'3_GG.?GmmG250[g :22 A>A5a2+&+&+&+&+V&+&+&+&+2BNEX///>YEX/>YEX/>YEX/>YA 0@P`p ]C C/9/C9//'ܸ35395/<ܸ?ܸG01"&54675#"&=##"&546;54&#"#"&54>323326726=#")826++#2"KQj}I9:)  2I/X\H1# ,.??N<1$(#4,% LBJNI=@ *!VN' A .1^1-&%+*&+&+&+&+V&&+&+{&+y&+ &+V&&&!+{&"+z&$0D&0D&0D&0D&0VD&0D&0D&0D&02P2DEX/>YEX/>YEX/>YEX/>YEX/>YA 0@P`p ]3 39>>9!#!9#/,ܸ/01"&54675#"&=##".54>32373332672>=4.#")826,+J<0N77N0=L4(H 1# ,-##-@II$(#4,$ %6$EeAAeE$6%O)'A %%VJ^JV0D*&0D&0D&0D&0VD&&0D&0D{&0Dy&0D&0VD&&D&!0D{&"0Dz&$+DP[QEX/>YEX&/&>YEX/>YEXYEE9/A 0]A]A qA]A`p]A@qAq ܺ" 9<1&XQ1X9Q/A/Q?Q]AQQqAOQ_QqAoQQ]AQQq-6-19BE9I01"&546;54&#"#"&54>323>32!32>7#".'#'26=#"7354.#"LQj}I9:)  2H/2$U<4O6RE,! % /@*$=/!`#.??N<1 ,?? PBPM@=@ *!%,:&C[6Q] /$ (98>.1g2-&%#<+WF+&l,&,&,2HrEX/>YEX/>YAܸ ܸܸܸ+4!+49|!/A0!@!P!q=01"&'732654&/7.54>32#"&54675.#"3267632$&+  & 3P7%B[6)B.#  '"9(PE$PO^4'0&1!  ,&,&0&0Q 2EX / >YEX/ >YEX/>YEX/>YA  ] , ,9 9/ии9}/!! 901".54>3235#53573#5#'2>=4.#"0N77N0YEX/ >YEX/>Y / /9 ܺ9999(01".54>327.''7.'37'26=4&#"8W> 8O1,B4#Y U=W)W L!X6>II>>II %C`<:_D$# 2`'?*;/>*6KaxIGjF"5NO]ONNO]ON,& ,& ,& ,& ,& ,& ,V& ,& ,& ,& ,24=EX/>YEX / >YEX/>YA 0@P`p ]: 5:95/A/5?5]"9& 9.ܸ101"&5467'#".54>32!32673267354&#"U)89/ 8Y= #>U34R9REYEX/>Y " 9"/A "0"]01".=!54&#"'>32'26=#4R9^REU3?B; $AY6Q]3(2&'Gd==dG'4UG FW',& ',& ',& ',& 0,& 0,& 0,& 0,& T(EX/>YEX/ >YEX(/(>YEX/>Y(A ]9/и и 9и%0173#53573#3>323#534&#"3#"GUU`%1^PGF7:)!G252L_2!aa22EB $2T&mEX/ >Y)010 QEX/>YEX / >Y9/0173'573#0GGG2 &! 20%&{<&{ D&{<&{0V&)&{0&6&{02=-EX/>YEX/>YEX/>YA 0@P`p ]    9 /  ииܸܸ ܸ'01"&5467'#53'5733267"&=4632)8;1GGG  ,_$(&92 &! 2$  A""""J&{0,&?0,a&'{'?,}EX/>YEX/>Y9/A  0]A]9/01"&54632325'57433 =GS-#!T &!XS,"&x,A&x"E&;0SEX / >YEX/>YEX/>YEX/>Y9/ 9  иии0173'573?#53#3#53'3#0GGP}CI6YEX/>Y 9}/ 9| /  9 9  9/  9  9017357'5773#%GVVGXXG23 &!320b&%0b&%0b&J0b&%+m&V 0,1EX$/$>YEX+/+>YEX/>YEX/>YA/qA]+и$!#$!9#/"%901"&546323254&#"3#53'573>32|33 =7:)!GGG%1^PS-#!TEB $22 &!\!aaXS, &, &, &, &,V &, &, &, &, &, ,%0EX / >YEX/>Y&% &9 9%9 &9.9 .9 .9/%9017.54>327#"'.#"2>=4'/: "?Y6T;7': #?X6T;7-3##3" #3" #L#`<>dG&-GL#`<>eF&-G*9"z$Z*9"z$,, &+, &,t1\EX / >YEX / >YEX/>Y ܸ  '01".54>32353+'2>=4.#"6Y?""?Y6+$PT#%+/#?X6"3!!3"#2!!2 &Fe>>dG& nS$#pJ>eF&6*9"z"9**9"z"9*,&.,Vt&.,&.,&.,&., &,V && &!, {&", z&$,h+AJEX / >YEX/>YEX/>YEX%/%>Y 7 79G%BG9B/A/B?B],), 901".54>323>32!3267#"&'#'2>=4.#"354&#"6Y?""?Y6>cd84R9RE>dG&6657$@Y6R\3(1&46646*9"z"9**9"z"9* EWUG0&0&0&8&8&82KEX'/'>YEX,/,>YEX@/@>YEX/>Y@Dܸ ܸܸܸ@и@'3!3@9!9/9939/399//*3/901"&'732654&/7.'##5332654/.54632353#54&#"632&+  & &5 DD5<7;R9LM_Q0= DD4915+(6NO[O  + ) B$4*3&+@ NBFO -#'(&&"+ JDAU0!  8&8&,xGEX2/2 >YEX+/+>YEX/>YEX&/&>YEX/>Y9999}/2!&'+*@901"&5463232654&/.546754&#"#53#5354>32#"RU $7:)0D>]MB>C?GGG:T55R8(FA".EG0F ;*!.+('C=BM"LMLK251Q9"YEX%/% >YEX/>YEX/>Yܸ99/9+ܸ%5<901".54632326=4+57##534>32#"&54675.#"!2o 8*'@C?G.@'<@  ++\dn#YEX/>Y   9/ ܸ и иик9/01"&=#535#532>?33#3#36+55C  3ttI-425  Y52& 'g&'K&'K&8+.EX/ >YEX / >YEX/>YEX/>Y9/ $$9 9013'573>32#"&'#3!%26=4&#"GGI<0N77N0YEX%/%>YEX/>YEX / >YEX/>YA 0@P`p ] 99"и"/#и#/$и$/ &( &9(/'0ܸ301"&54>7'5##"&5'5732>5'573267 )8)p%1^PG7:)!GG$ ,$(# \!aa &!EB $' &!6 &*"  N*&N&at%EX/>YEX/>YEX/>YEX/>Y9/ и/и/и/ܸ9/! 901"&5'5732>5'5753+5#^PG7:)!GT#%G%1 aa &!EB $' &fO$d &!\!a&UVat&U3a&Ua&U/a&U &y &y &y &y,&,&,&,&,&,&",&.& .& .& &!+-&!/-&!--&!)-V&!C&!,-&!3Yh&!'-2%)EX/>YEX/>YEX/>YEX/>YA 0@P`p ] &9&/  и ииܸ"ܸ)01"&5467'#53'!3#533332673#V'6D5X<Y#&!@Y#EX/>YEX/>YEX/>Yܸ  9/  ܸܸܸ 9 /и#0173#5!#5!353#5#!53!535#3#3#47LVP??PJZL 2V2uLL耶22t&+92S&#+)2S&#.)22SBtEX/>YEX/>YEX/>Y;ܸ ܸܸܸ%.%.9!ܸ701"&'732654&/7.54>32353#54&#"3267632d&+  & ?dG&+Mj?ATPPTF1H.l`F_* '9N0  + ) A7^NW[0,>22>$>T1jzI9=2!1!  2S&#-)2S&#()4&$.&"mEX/>YEX/>Y9/и"0173#53#5!2#!7326=4&+3#4JXXJ+FsS..SsFկogppgo242,WWWW,6zkkz4&4I&%+$4I&%/$4I&%.$4I&%-$4I&%)$4I&%($4VI&%P4I&%,$4I&%3P4Ih&%'$42h-EX / >YEX/>YEX/>YA 0@P`p ]    ܸ 9/ܸܸܸи'ܸ*01"&5467'!53#5!#5!353#5#!533267)896JJ P??P  ,$(&7!2V2uLL耶$  4I&%%$4T/&%;P4VI&%&-$P4I/&%=P4I$&%>P4I#&%@P2,MEX/>YEX/>Y   9/&01".=!54.#"'>32'2>=!\GoL(7S7Nl) ,D[9KtP*,QqD-H21G 1Sn>*O3UYEX/>YEX#/#>YEX/>Y#$#9$/A$$]$9/A?O_q и иииии$ и'0173#535#53#!5#53#3#3#53!3#!5!4JXXJJQJJXXJJJQ24d22dd22d4B222p4&(-_4.&)+E&)/M&)-E&))4-&)(4V-&)2-&),4-&)3!?h&)'42J!EX / >YEX/>YEX/>YA 0@P`p ]   и ииܸ01"&5467'#53#53#33267)8=3JJJJ! ,$(%9 2V222$   S&)%4 &)*a4 &)&+'*a+X&*+&*-4&+l4&&,+4&&,B4&&,64&&,X&(EX/>YEX/>Y9}/ 9| /9 9 к  990173557#53#7353!6JZZJJP26<224644&.+c4&..c4&.4&.%c4,+EX/>YEX%/%>YEX/>YEX/>YEX/>YA]ии!и%$(01"&54632326=##3#53#533#53#33 !zJJJfJJF-#!/0OU22V222,EC2&/+>2&//>2&/->2&/)>2V&/j2&/,>2&/3j2&/*>2h&/'>2'3EX / >YEX/>Y(' (9 9'9 (909 09 091'9017.54>327#"&'.#"2>=4'Y:.3-RsF3W%7+:.3-RsF3W%7nD*0K4 0K4 DW/[T]2SW/[T]2S">W5R:`">W5R:42&+>2&/%>2(1\EX / >YEX / >YEX/>Y ܸ  '01".54>32353+'2>=4.#"jFsR--RsF1*{T#%5BI-RsF0J33J00J33J 2]TT]2 nS$-mT]29">W55W>"">W55W>"2&+>2V(&j2&,>2&3j2&&>2/&/;j2V&/&->j2/&/=j2$&/>j2#&/@j2 2EX / >YEX / >YEX/>YEX/>Y ܸ 9/ܸܸܸ! (01".54>32!#5!353#5#!53!'267.#"rJvS--SvJ4*P??P*4)BB)4N44N 2]TT]2 uLL耶 9">W55W>"4&2+4&2.4&2:&3+:&3.:2PEX*/*>YEX///>YEXE/E>YEX/>YEIܸ ܸܸܸEиE*6"6E9"9ܺ<*9-6<9/201"&'732654&/7.'##5332654&/.54>32353#54&#"6323&+  & 3APPDOTK9@5_j :R3:IPPCPFE>E2]e7Q4  + ) A&<.3?F;3: bX+F1&7.37>24: aR,L7"0!  :&3-:&3*4-EX"/">YEX/>YEX/>Y"9/9/"!&901"&54632326=4&+57!#53#5!2NM# !5IIL=ƯJJZfm"=V <- &"BD*O=3|2V2.fg5M3#v{EX / >YEX/>Y  ܺ 9}/   ииии0173#53##5!#5#3#3!^PSP^25uu52#v&4.!#v&4M#v&4M4NEX/>YEX/>YA]A]иA?OqAo]A0@qA]A P`p]Apqи0173#53#32+3#7326=4&+4JJJbgkaJ69962V22i_]\ep2@1/1@,&5+\,&5/\,&5-\,&5)\,V&5x,&5,\,&53,&5*\,h&5'\,25EX/>YEX / >YEX / >YEX/>YA 0@P`p ]и  #к' 9/ܸ201"&54>7'#".5#53#3265#53#3267)8#&/Gc@JJJ``PJJ$-' ,$(! CkL{22whffh22\v%,&  ,&51\,&5%\,("hEX/>YEX/>YEX/>Y иܸ01".5#53#3265#5353+}Gc@JJJ``PJT#%:] CkL{22whffh2nS$KmH#,&+\,V(&x,&,\,&3,&&\&7+&7-&7)&7,o&9+.o&9-.Vo&9Co&9).o&9,.o&93Zo&9%.9C&:+ 9C&:. 9C&:( 8N"EX/>YEX/>YEX"/">YEX/>YEX/>Y9/ и /и/и/9/9901'5732>5'575##"&'#cG7:)!GG%0';)c &!EB $' &!6 &!\ 9*S ?EX/>YEX/>Yии 0173!7!#*g@~3y36248nEX/>YEX/>YEX / >Yи  и013#5!#3#53!3#>JTTJJJ2222298#MEX/>YEX/>Y и иܸ0155!#5!!53!96d6aIu7v25EX / >YEX5/5>YEX/>Y5A]A q5ܸииܸ (3017335.54>32353#5>=4.#"#2P{Yj#IoMLpI#3H,{P3'1G--G1'3W5%n=sZ66Zs=7YF55W )7B%f'K:##:K'f%B7) PdEX / >YEX/>YEX/>Y  и  и9/01"&5###5!#37+_[;[[- ,5z/55a' +0D.1?aEX/ >YEX/>Yܸй 2 *29}*/9 &9901".54>7>7>?33>32'26=4&#"3U>#  "-<)&4, "2$$1$ WFew!yYEX/>Y9/A/q) )9 ( 0173#5!2#!%26=4&+726=4&+0GG&LQ=-,"YS*++*si&))&i22D978 -GG5+$$+*  *0 KEX/>YEX / >Y ܸ 0173#5!#5#3!0GGC[22da2jK]EX/>YEX/>Y  ии и и 0173>=#5!#3#5!#%#H.7LGdRiRw1)5YEX/>YEX#/#>YEXC/C>YEX=/=>YEX7/7>YCA=9A/A9 ܺ  9ии )к,#)908974A9и=>01737>7'.'##"&5463235#53#37>32#"'#3#'#3#535##5g"3 3"'##=5GGGG5=##'"3 3"g5GGGG2s# 8$)4Fx11xF4)$8 #s222,<EX./.>YEX(/(>YEX/>Y.9/A/q9}/ ."('A'']*"901".54632326=4&+5326=4&#"#533>32/I3!$/)?<26FB-20/6ACC@5UZ:/8> 8N #-#") 5&%25.&&22*1#J?/>  ?5#:(0iEX/>YEX/>YEX/>YEX/>Yк9 к 9 ии и0173#53#35#53#3#5357#3#0GGGGGGGG22222^2220i&!0<)EX/>YEX/>YEX)/)>YEX#/#>Y)к%)9%/ܺ9%9# &0173#53#37>32#"'#3#'#3#0GGGN5!##'"3  3$h5NG222x$/ )$8 "s226.xEX/>YEX"/">YEX/>Y9/и"#и& 01"&5463223267>=#5!#3#53#`//    LGGG- 0#! 'NdB11]22:dW20EX/>YEX/>YEX/>YEX/>YEX/>Y9}/и  иии0173#5333#3#53# '#3#0GGGGG$$G222^22}MM20iEX/>YEX / >YEX/>YEX/>Yк9/A]A/q  ии0173#53#35#53#3#535#3#0GGGGGGGG22222^222, 0jnEX/>YEX/>YEX / >Yи  и 0173#5!#3#53#3#0GG:GGGG222^22b2&89, MEX/>YEX/>Y ܸ и и 0173##5!#5#3!XyCCyX2dda2,18/=KEX/>YEX/>YEX/>YEX///>YEX/>YEX'/'>Y/0097799/EE'9'>+>9,0135##".54>3235'573>32#"&'#3#'2654&#"!26=4&#"G6('B00B'(6G6('B00B'(6G(11(/::?/::/(11 "CfDDfC" &!"CfDDfC" 2)) ))MM}MMMM}MM))))0jtEX/>YEX/>YEX/>Y и  и и 01)53#53#3#53#3#.GGGGGeR222a22a F EX / >YEX/>YEX / >Y 9|/A]A/qA 0]A@Pq9  ии01%35##"&=#53#326=#53#3!D[I6PNGA.93>AGG2 $JT11w8.&%11]20@EX/>YEX / >YEX/>YEX/>Yи  иии0173#53#3#53#3#53#3!0GG<<<YEX/>YEX/>YEX/>Y и  и иии 01)53#53#3#53#3#53#3# $GG<<<YEX/>Y ܸ  9 /  0173##5!#32#!%26=4&+GpCZGQYYQ-,,-j2d1TMMT5/*&*/0&EX/>YEX/>YEX/>YEX/>Yк9/ии% & 0173#53#32#!%3#53#3#'26=4&+0GGGuQYYQGGGG-,,-`222TMMT222^25/*&*/0WEX/>YEX/>Yк9/  0173#53#32#!%26=4&+0GGGQYYQ-,,-j222TMMT5/*&*/,1EX(/(>YEX"/">YEX/>Y(9/A/q9}/ ("!A !!]$901".54632326=#5354&#"#533>32-H2!$2KVEC6BCC>24S; $B\ "-#") ^T5R\1*1"%Ec?AeG%0*EX / >YEX/>YEX/>YEX/>Y 9/A/qA] и  и $01"&'#3#53#53#3>32'26=4&#"0dvxGGGGy#:O0hyyh?88??88 v22229Y=!6QHHQQHHQ%EX/>YEX/>YEX/>Y9/A]%%9и 01737>75.54>3!#3#535##5#"35K$HV*?*)GGGU[m0'.)2{F:6)2^22 4!'.!4AEX/>YEX/>YA] 9/A_qA]AO]A]A]AqA] 0173#5!#5#32#!%26=4&+4JJP܍gjjg17;;72V2udbbj6@868@4f"4 OEX/>YEX / >Yܸ  0173#5!#5#3!4JJP^2V2u2`YEX/>YEX/>Yи ии01736=#5!#3#5!#%#L>JMJhWWdz/6T 622֠N3Ut+4I% CEX/>YEX/>YEX#/#>YEX=/=>YEX7/7>YEXC/C>YA=9AA9 ܺ  9ии )к-#)9A9к09974=>:01737>7'&'##"&546323#53#37>32#"&'#3##3#53## D!J  &%1I#M\JJ\M#I1%&  J!D\JJ\2 @"),DR 22RD,)"@ 2J229&AEX///>YEX)/)>YEX/>Y/9/9//#)(ܺ+#97901".54632326=4&+5326=4&#"#533>328U;"# >+UVB?mf5D@ABPPPQB1N6Q<9+%Ea '0 &$! I< :@6@6$5B>19= )/A'FV ):(.K64EX/>YEX/>YEX/>YEX/>Yк9 к 9 ии и0173#53#35#53#3#537#3#4JJJ _JJJJ J2V22Ӽ2222-/24&00`4(EX/>YEX / >YEX(/(>YEX"/">Y(к$(9$/ ܺ 9$9"%0173#53#37>32#"&'#3##3#4JJJbX(H2%&   U"DbJ2V22QE,)"-! 2J2,xEX/>YEX / >YEX/>Y9/и !и$01"&54632327>=#5!#3#53#r46"   MJJJ 3 9&"("8lk2222RcxF48-4(2/4nEX/>YEX/>YEX / >Yи  и0173#5!#3#53!3#4JJJJJJ2V2222R24N02S##v4(EX/>YEX"/">YEX/>Y9/9ии"!%01"&5463232>?#5!#3?#53#YEX/>YEX/>Y и  и и01)53#53#!#53#3#JJJYEX/>YEX$/$>Y$9/AO]9 и и!01%35##".=#53#3267#53#3!^"L6YEX / >YEX/>YEX/>Yи  иии0173#53#3#53#3#53#3!4JJHHHHJJs2V22R22R2224`EX/>YEX/>YEX/>YEX/>Y и  и иии01)53#53#3#53#3#53#3#JJHHHHJhW2V22R22R22#lEX/>YEX/>Yܸ ܺ9/A] 0173##5!#32#!%26=4&+JPJgjjg;8;;82Ru2gggg6A8>8A4g&EX/>YEX/>YEX/>YEX/>Yк%9%/A%]ии&0173#53#32#!%3#53#3#%26=4&+4JJJgjjg:JJJJ8;;82V22gggg2V2226A8>8A4L`EX/>YEX/>Yк9/A]0173#53#32#!%26=4&+4JJJgjjg;8;;82V22gggg6A8>8A8\6EX'/'>YEX-/->YEX/>Y-9/9/-!'&ܺ)!901".5463232>=!5!54.#"#533>32%9X="# A05P5/G0ERPPPB=hJ*+Qs &1 &$! $@Y5/6)4V="?28=!(0\WU]14"8EX/>YEX/>YEX/>YEX / >Y 9/A/?]A]A_]  ии#.01".'#3#53#53#3>32'2>=4.#"BjK+JJJJ,Kh@DmK((KmD.C--C..C--C .XQ22V22MyT,1]UU]19!=V55V=!!=V55V=!u#EX / >YEX/>YEX/>Y 9/A]A 0]AP`]""9 и 01737>75.5463!#3#53###";C$hZkaNJJJ]5::52ZPYh222 ?111?+&+&0D&0D&+0& 0 OEX/>YEX / >Yܸ  0173#5!53#3!0GGIS[21a2&EX/>YEX/>Y9/A]A/qA 0]  ܸии01735#535#5!#5#3#3!0GQQGC[221d2208*EX/>YEX*/*>YEX/>Y* 9 /Ap ] и A]A ] 9013>=4&#"3#53#5!#5#3>32+ ^  +83;WGGCD6OK*6R &7/&%f221d $JT.@),& ,& ,& ,0EX / >YEX/>YEX/>Y  9A/] 9/A/q !)!9})/01".54>32353#54&#"3#3275&54632$:\@"#>V40;CC?2BMPLC $!3H %Fd?>eG&"1*0]Q5Qa)"#-"&h&hj<EEX(/(>YEX1/1>YEX / >YEX/>YEX/>YEX / >Y (9 /ии  $$ 9 ܺ 9('+и$,и17ܺ:179>,9B E 01!#'#3#535##537>7'.'##"&5463235#53#37>32#"'#3#QGGGG5g"3 3"'##=5GGGG5=##'"3 3"eWR222s# 8$)4Fx11xF4)$8 #s,&,j;EX&/&>YEX,/,>YEX/>Y,9/A/q9}/ , &%A%%](&%92999; 01.54632326=4&+5326=4&#"#533>32#OW!$/)?<26FB-20/6ACC@5UZ:/8>ZHR F-#") 5&%25.&&22*1#J?/>  ?5=O ! AEX/ >YEX / >Yи0173#53#3#!GGGG222x20i&!0i&!0i&!0<&#0j^+EX / >YEX/>YEX/>YEX/>Y 9/и  иܺ 9$9( + 01!#'#3#53#53#37>32#"'#3# RNGGGGN5!##'"3  3$fYS2222x$/ )$8 "s0W/EX/>YEX/>YEX%/%>YEX///>Yк+/9+/ 9 / иܺ9+'к '9%")+9)/,0173#53#35337>32#"'#3#'##5#3#0GGG#30A$#'"3  -!c53#G222jjxH2)$8 "s2jj2!+EX/>YEX/>YEX%/%>YEX+/+>Y ܸ '+9'/ ܺ9 '9%"(0173##5!#37>32#"'#3#'#3#GoCYGN5!##'"3  3$h5NG2d2x$/ )$8 "s223=EX/>YEX'/'>YEX/>Y9/к'9/'(+ < '= 01"&5463223267>=#5!#32#!53#%26=4&+`//    LGsQYYQG--,,-^ 0#! 'NdB12TMMT2:dW2A/*&*/0jEX/>YEX/>YEX/>YEX / >Y 9/A]A/q  и и и  01!#535#3#53#53#35#53#3#4GGGGGGGdR2222222a05 *EX/>YEX / >YEX / >YEX/>Y к 9/A]A/q  к 9/и) * 0173#53#35#53#32#!535#3#%26=4&+0GGEEGsQYYQEEF-,,-^22222TMMT225/*&*/0EX/>YEX / >YEX/>YEX/>Yк9/A]A/q    ܸи0173#53#35#5!#5#3!535#3#0GGGGC[GG2222da222, &, %cEX/>YEX/>Y9/A]A/q 01%26=!754&#"".54>32ECCCEEC6Y?""?Y66X?##?X*WE&&EW"EWWE"&Fe>>dG&&Gd>>eF&, g,j.lEX / >YEX/>Y %%9|/A0@Pq,и. 01.54>32#"&54675.#"3267#/I2%B[6)B.#  '"9(PE$PO^4'.N ,&,&,&,&8EX/>YEX / >YEX/>YEX/>Yи и  ии0135#53#3#53#3#G3FG3H22~22,28EX/>YEX/>YEX/>YEX/>YA /?] и ииии0135#53#53#3#53#3#3#Gmm3FG3mmHd222~22,2d2j;EX/>YEX/>YEX / >YEX/>Y  9 и  ик9ии  01!#53'#3#537'#53#37#53#3#;kn=93;ki=9TR2222222 F& jd"EX/>YEX/>YEX/>Y9|/A]A/qA 0]A@Pq9 ии " 01!#535##"&=#53#326=#53#3#[I6PNGA.93>AGeR2 $JT11w8.&%11` I&EX/>YEX/>YEX/>Y9|/A"2]A/qA]A@Pq и9/иик"9$к&9|&/A &0&]01%#"&=#53#53>=#53#3!535##QOGA$-3(/AGG[63JT11w2.ji$ 11]22)d0&#l80jb|EX/>YEX/>YEX/>Y и  иии 01!#53#53#3#53#3## GGGGGGR222a22^20<&{,, 7EX1/1>YEX&/& >YEX/>YEX/>YA11 1]19/A  0]A]1к"&19"/#'и"*к+901"&546323254&#"3#53#53573#3>32n33 =7:)!GGUU`%1^PS-#!TEB $2252L_2!aaXST"T*&!)-&!0-4&++ 4Z OEX/>YEX / >Yܸ  0173#5!53!3!4JJW^2V22&EX/>YEX/>Y9/A]A 0]AP`]  ܸ ии0173#53#5!#5#3#3!4JXXJP㫫^262u624\`../EX/>YEX/>Y."9"/A/"?"O"]A"]A"]A"]A"q иܸ" 9013>=4.#"3#53#5!#5#3>32+gh  !7',AJJJP K1=T4-9[n &.A(22V2u6R8/A(4I&%,$4I&%)$4I&%0$2V6~EX / >YEX/>YEX/>Y  9ܺ 9/%/%9//01".54>32353#54&#"!!32675.54632hHsP+*Mi?YEX / >YEX1/1>YEX/>YEX / >YEX/>Y (9 /ии  $$ 9 ܺ 9('+и$,и7к;179>,9BE01!##3#53##537>7'&'##"&546323#53#37>32#"&'#3#W\JJ\D!J  &%1I#M\JJ\M#I1%&  J![WJ222 @"),DR 22RD,)"@ 9&&/) 9`&DEX///>YEX)/)>YEX/>Y/9/9//#)(ܺ+#979BиD01.54632326=4&+5326=4&#"#533>32#/I2"# >+UVB?mf5D@ABPPPQB1N6Q<9+7N0W %- &$! I< :@6@6$5B>19= )/A'FV ):()D4"4-)4&0)`4&0,`4h&0'`4&2+T4`*EX / >YEX/>YEX/>YEX/>Y 9/и  иܺ9#9'*01!##3#53#53#37>32#"&'#3#jTbJJJJbX(H2%&   U"XWJ22V22QE,)"-! 40EX / >YEX/>YEX/>YEX,/,>Y 9/и   и 9/иܺ!9%9,).к090/01#3#53#53#35337>32#"&'#3### )JJJJ)8N$I1%&   KD8J22V22RD,)"-!!2J#0,EX/>YEX/>YEX,/,>YEX&/&>Y,ܸ (,9(/ ܺ9 (9&#)0173##5!#37>32#"&'#3##3#JPJa\%%'&)!   X#DbJ2Ru2)7! * (#/2J21;EX/>YEX%/%>YEX/>Y9/к:%9:/A:]%&)%;01"&54632327>=#5!#32#!53#%26=4&+r46"   MJgjjgJ 3$8;;8 9&"("8lk22gggg2RcxFBA8>8A4`EX/>YEX/>YEX / >YEX/>Y 9/A]A/?]  и ии01!#53!3#53#53#!#53#3#JJJJJQJJhW222V22224 *EX/>YEX / >YEX / >YEX/>Y к 9/A]A/?]  к) 9)/A)]и*0173#53#!#53#32#!53!3#%26=4&+4JJJ1JJgjjgJJ8;;82V2222gggg226A8>8A4EX/>YEX / >YEX/>YEX/>Yк9/A/?]A]   ܸ и0173#53#!#5!#5#3#53!3#4JJJ7JPJJJ2V222u2222&/)>2 -MEX$/$>YEX/>Y$9/$01%2>=!54.#"".54>32j0J3p3J3J00J3FsR--RsFFsR--Rs-">W5005W>"R"5W>"">W5"u2]TT]22]TT]222`S*nEX / >YEX/>YEX/>Y  9ܸ(и*01.54>32353#54&#"3267#5<`C$+Mj?ATPPTF1H.l`F_* !2B)W 8]~MW[0,>32>$>T1jzI970$h&;'<&;)<&;*<&;0<o9oEX/>YEX/>YEX/>Y9/ и ииии01735#53#53#3#53#3#3!\4VV4ǐ[24i22-2242`EX/>YEX/>YEX / >YEX/>Y  9 и  ик9ии01!#53'#3#53#53#37#53#3#TIC;;IC;VW222!52222"&?)5"`&EX/>YEX/>YEX/>Y9/AO]9и"и#&01!#535##".=#53#3267#53#3#h^"L6YEX/>YEX/>Y9/AO] и9/ии и&к(9(/01".=#53#53>7#53#3!535##HYEX/>YEX/>Y и  иии01)53#53#!#53#3!#VJJJYEX/>Y0$9$/A$]AO$]A$]AP$q иܸик $ 9013>=4.#"3#53##5!#5#3>32+h  !7',AJJPP K1=T4-9[n &.A(22Ruu6R8/A(#P$EX/>YEX$/$>YEX/>Y$ܸ и к$9/APqAO]A]A]и!0173##5!#5#3>323#5354&#"3#JPSP N3wkJJGL-EJ2Ruuiq22]L24 EX/>YEX / >YEX/>Y к  9 /A ]A ]A ] 9и0173#53#3>323#5354&#"3#4JJJ N3wkJJGL-EJ2V22iq22]L22%DQ 5EX/>YEX/>Y0126=4&#""&54632((((LJJLLJJo6/\/66/\/6+b\\bb\\b$JD ;EX/>YEX / >Yи013'733!6il7\q(!A'$J9&MEX/>YEX&/&>Y&!ܺ!9/!#017>=4&#"#"&54632353!$|"%  E6@G$i,i0 $   .52)" D,fD/=sEX1/1>YEX/>Y1  9/9/) 9)/7901"&54632326=4&+5326=4&#"#"&54>32YEX / >Y 9/ ܸии01#5733##'35#ʶL66E66H~%D6)[EX/>YEX/>Yܸ$9$/9}/01"&54632326=4&#"'73#3>32YEX/>Y ܸ9/ 901"&54>7>32'26=4&#"DK!;O-HI +(3=MB###DOE4R:#O? ?69E)* ** * J29EX/>YEX/>Yܸܸ01##5!#,G|={7)DK'5]EX / >YEX/>Y( 9(/!(!9(!9 /01"&54675.54632'26=4&#"726=4&#"FK7% /E??E/ %7KF####!!!D:0(,+%,33,%+,(0:)""""$DB#QEX / >YEX/>Yܸ 9/ 901>7'#"&54632726=4&#"\HI +(3=MBDK!;O-I###cO? ?69EOE4R:#* ** *%Qv 5EX/>YEX/>Y01726=4&#""&54632((((LJJLLJJ%6/\/66/\/6+b\\bb\\b$Dp ;EX/>YEX / >Yи0173'733!6il7\'(!A'$9v&MEX/>YEX&/&>Y&!ܺ!9/!#01?>=4&#"#"&54632353!$|"%  E6@G$i,:i0 $   .52)" D,f/v=sEX1/1>YEX/>Y1  9/9/) 9)/7901"&54632326=4&+5326=4&#"#"&54>32YEX / >Y 9 ܸии017#5733##'35#ʶL66EH66H~%6p)[EX/>YEX/>Yܸ$9$/9}/01"&54632326=4&#"'73#3>32YEX/>Y ܺ9/ 901"&54>7>32'26=4&#"DK!;O-HI +(3=MB###OE4R:#O? ?69E)* ** * 2p9EX/>YEX/>Yܸܸ01##5!#,G2={7)Kv'5]EX / >YEX/>Y( 9(/!(!9(!9 /01"&54675.54632'26=4&#"726=4&#"FK7% /E??E/ %7KF####!!!:0(,+%,33,%+,(0:)""""$Bv#QEX / >YEX/>Yܸ 9/ 9017>7'#"&54632726=4&#"\HI +(3=MBDK!;O-I###O? ?69EOE4R:#* ** *$_&'k&$U&'k&$K&'k$E&'k&'k_$X&'k"$N&'k$&'k_@&'k{ $H&'k%&'kh$}&'kK$l&'k!8&'k_%A&'kh &'k7$d&'k" //EX / >Y01'737#ROUh\Q[D $"*s  ////01?/7?/syy?yy?yy?yyIyy>xx>yy>xxK0 / 017%3#%Kt_t]P %EX/>YEX / >Y01%'7'#P_tt %EX/>YEX / >Y01?537Pt_tK0 / 01%7#53'7t_tӣPUg /01%'!#(+9*'$8Ug /01?%'7!'+(#ꥍ$'bt /0177!(#98$'bt /01%7%'77!r9#(Չ$8 3/EX/>YEX / >Y 01%'7%3#Dtt*PP 3/EX/>YEX / >Y 01?%3#%t*PPtK~v / / 017'7'!!*ttPK~v  //  017!'7'!K*ttPK`X  // 0175!!7K13t*PPtK`X / / 017!5!7k13t*PPt 3/EX/>YEX / >Y 013'7'7#P*ttP1 3/EX/>YEX / >Y 01%7#3'7tPP*t 1K'lK'lJ0 / 0177'7'7'Jtttt]%EX/>YEX/>Y01?'7'7'7tttt -;/ / 017.54>32#4.#"7  'MsKLvQ*R;Y<0Q>& t?i#3gS56]{F4_I+ >\=t!-<// 017'.#"#4>327 %>Q0 +I_4F{]65Sg3#i?tINV//  017%2>54.#52#%It{*! *-M76M/t! $$ P-@*(A-JNV/ /  01%7".54>3"3'7!t/M67M-* !){tg-A(*@-P $$ f*+EX/>YEX/>Y 01".546732>54.''!ExY4`O-ED(C[33YA&,D/#(+4V>"2Wx 0VvE^0@,vC6ZA$"?V5*EBG-*'$)JLS1BrT0e*+EX / >YEX/>Y 01".54>7'7!'32>54&'7FxW2">V4+(#/D,&AY33[C(DE-O`4Yx 0TrB1SLJ)$'-GBE*5V?"$AZ6Cv,@0^EvV0f=/AP]Ap]ܺ 9 ܸܺ 901"&'.#"'>323267l&(* &(*f !) !)f=/AP]Ap]ܺ 9 ܸܺ 901"&'.#"'>323267c!" * !" *f !( !(!/A0]AP`]01!!?ee &/AP]Ap]A@]01"&=4632,e   g -/AP]Ap]ܸи01"&=46323"&=4632gH)/A]A/]ܸи017?MTMTX**H/A]A/]017KXX+HQ/A]A/]017XK+S6/A]Ap]ܸиA]0173'~>~gbbW-/A]Ap]ܸܸ0177#~>bbS-/A]Ap]ܸ ܸ01".'7326?,&1! )**) !2S*3$$3*R";/A]A]ܸܺ9и01".546323275.54632,*?(0= (?R))@* !H//A/]AO]A]A]A]0126=4&#"".54>32,,!!,,!!,e!$!!$!% *+  +* 8 !%b//AO]AOqA/qA/]A]A]A/]ܸ%ܸ#0126=4&#"".54>327,-!!--!!-4M9m]   %)))) z+bFe%/A]A/]ܸ 01"&=46732,%,F!#M23.EX/ >Y013#>[E!2/ܸ ܸܸ01"&'732654&/736327&+  &* + ) `P!  2M^EX/>YEX / >YA 0@P`p ]иܸ01"&5467'33267)8>6#  ,$((:#$  ]fqe9kgHH~H%cScWkS@z*@^ * /A ]AO ]A/ ]ܸ017#5324q' PlE 3#F9.mSt"EX/>Yܸ01353+^]T#%inS$2|V7 /01"&=46329G /A ]A O_o] A ]A@]01>7"&=4632#5%,2!#Mf2!kGA/A]A/]ܸ ܸк 9|/01".'7326?'7&1! )**) !2GNIxG(2&&2(&kGA/A]A/]ܸ ܸк 9|/01".'7326?7&1! )**) !2ING(2&&2(&kG{E/A]A/]ܸ ܸк 9|/ܸ01".'7326?'7#532&1! )**) !2>4q' G(2&&2(lE 3#]Gy-U/A]A/] ܸܸܺ 9 ܸܺ 9$ܸ (01"&'.#"'>323267".'7326?@&(* &(*`&1! )**) !2  !(  !((2&&2(gS 6/|/A]ܸии01"&=46323"&=4632'7bLO|S(dS "@/A]ܸии"ܸܸ"ܸ01"&=46323"&=463277#b}>SccgS 6/|/A]ܸии01"&=46323"&=46327bOLS (cA A/A]A/]ܸиܺ 9| /0173'?~>~LO|Uff(cAN/A/]A]ܸܸܸ ܸииA]01".'7326?73'%1! )))) !1~>~(0&&0(yyKKA J/A]AO]A/]ܸиܺ 9| /0173'7~>~OLUff(cA{ J/A]AO]A/] ܸܺ 9| /ܸܸ017#53273'w4p' ~>~lE 3#effgS8 0/A]ܸииܸ01"&=46323"&=4632%!!bS?]Az ^ /A ]AO ]A/ ]ܸܸܺ 9 ܸܺ 9 и01"&'.#"'>32326773'@&(* &(*~>~ !' !'cc 8/A`p]ܺ 9 ܸܺ 901"&'.#"'>323267l&(* &(*  !) !) 8/A`p]ܺ 9 ܸܺ 901"&'.#"'>323267c!" * !" *  !( !()h)/A0]A `p]01!!h?e /A`]A]01"&=4632,    1/A`p]A]ܸи01"&=46323"&=4632 /A/]ܸи017?MTMT**/A/]017KX+Q/A/]017XK+-/A/]A]ܸи0173'~>~bb6/A/]A`]A]ܸܸ0177#~>bb6/A/]A]A] ܸ01".'7326?,&1! )**) !2*3$$3*";/A/]A]ܸܺ9и01".546323275.54632,*?(0= (?)) !K//A/]A]A_]A/]0126=4&#"".54>32,,!!,,!!, !$!!$!% *+  +* h !%a//A]A]A_]A]A.]A/]ܸ%ܸ#0126=4&#"".54>327,-!!--!!-4M9m   %)))) z+b^ #| /A` ]A]017#5324q' lE 3#k08/A/]ܸ ܸк 9|/01".'7326?'7&1! )**) !2GNIx(2&&2(&k08/A/]ܸ ܸк 9|/01".'7326?7&1! )**) !2IN(2&&2(&k%</A/]ܸ ܸк 9|/ܸ01".'7326?'7#532&1! )**) !2>4q' (2&&2(lE 3#]#-L/A/] ܸܸܺ 9 ܸܺ 9$ܸ (01"&'.#"'>323267".'7326?@&(* &(*`&1! )**) !2  !(  !((2&&2(g2 6/|/A/]ܸии01"&=46323"&=4632'7bLO|(d/ "8/A/]ܸии"ܸܸ"01"&=46323"&=463277#b}>ccg2 6/|/A/]ܸии01"&=46323"&=46327bOL (c/ N/A/]A]A_]ܸиܺ 9| /0173'?~>~LO|ff(c3[/A_]A/]A]ܸܸܸ ܸииA]01".'7326?73'%1! )))) !1~>~(0&&0(yyKK/ N/A/]A]A_]ܸиܺ 9| /0173'7~>~OLff(c$ N/A/]A]A_] ܸܺ 9| /ܸܸ017#53273'w4p' ~>~slE 3#effg 0/A/]ܸииܸ01"&=46323"&=4632%!!b?]# b /A / ]A ]A_ ]ܸܸܺ 9 ܸܺ 9 и01"&'.#"'>32326773'@&(* &(*~>~ !' !'cc.PEX / >YEX/>YEX/>YEX/>Y& &9 /  &/9@/J=@J9M@J901".'#!#3>32.#"32>7'".54>32.#"3267F{`=H/==`{FY2?0;C$6eN//Ne6$C;0?2Z+K8 8K+4W?8"/""/"8?W 1WtD4LCuW1PE.,!)Kh??hK)!+.EP 8K++K8 /)- #00# -)/[T"BEX-/->YEX / >YEX#/#>YEX/>Y  9/-3#=01".54>32&#"3#327!".54>32&#"327.Jb99bJ -RB. .BR-Jb99bJ 4]E((E]4 9bKKb9k6I+n+I6k9bKKb9k(F]45\F(k((((H<@@$x0 j P H .  r z@:<pLn VD4LZ"xx   @ L h t !!(!>!T!`!l!!"<"""#$#L##$$*$L$%%%&''(^()~)****6*x*+2++,,,X,l,,- -2->----.".@.^.../H/0 01@1223J34v5.567^8:89::;<<=>p?:?@@AbABC>CCCCCDDDD(DEEEE*E:EFERE^EjEzEEEEEEEEEEEFFFFFGGGG(G4GDGPG\GhHHHHILIXIdIpJJJJJJJJJK KK"KKKKLLL LLLLLLLLLMpMMMMMMNNNN&NNNNORO^OjOvOPPPP*PPPPPPQvQQQQQQQQQRnRzRRSSSS*S6SBSRS^SjSvT0Tΐz ƑΑ֑BFR^j ؖ̕jFʙppx""0\x>bު .T4rȬhЬH&¼ T$"--@ GgzQ  3 , E W: ZM &  @ & $A "e  ) f? 2 $   4 O k tsCopyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextRegularIBM;IBMPlexSerif-Text;2.006;2020IBM Plex Serif TextVersion 2.006 2020IBMPlexSerif-TextIBM Plex is a trademark of IBM Corp, registered in many jurisdictions worldwide.Bold MondayMike Abbink, Paul van der Laan, Pieter van Rosmalenhttp://www.boldmonday.comhttp://www.ibm.comThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLIBM Plex SerifTextHow razorback-jumping frogs can level six piqued gymnasts!Copyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextRegularIBM;IBMPlexSerif-Text;2.006;2020IBM Plex Serif TextVersion 2.006 2020IBMPlexSerif-TextIBM Plex is a trademark of IBM Corp, registered in many jurisdictions worldwide.Bold MondayMike Abbink, Paul van der Laan, Pieter van Rosmalenhttp://www.boldmonday.comhttp://www.ibm.comThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLIBM Plex SerifTextHow razorback-jumping frogs can level six piqued gymnasts!0DDEFGHIJKLMNOPQRSTUVWXYZ[\]$%&'()*+,-./0123456789:;<= #B " >@^`?_  Aa !    !"i#kl$j%&'n(m)*+,-./0123456789:;<=>?@ABCDEFGHIoJKLMpNOrsPQqRSTUVWXYZ[\]^_`abcdtevwfughijklmnopqrstuvwxxyzy{{||z}~}~bcdefgh      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ C     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJK.nulla.alt01g.alt01g.alt02 zero.alt01 zero.alt02 softhyphenprimeprimedblperiodcentered estimatedlitre numerosignEurobaht coloncurrencyliranairarupeewonsheqeldongkiptugrikpesoguaranihryvniaceditenge rupeeindian liraturkishrublebitcoinabreve adotbelowahookamacronaogonek aringacute abreveacuteabrevedotbelow abrevegrave abrevehook abrevetildeacircumflexacuteacircumflexdotbelowacircumflexgraveacircumflexhookacircumflextilde aacute.alt01 abreve.alt01acircumflex.alt01adieresis.alt01adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01aringacute.alt01 atilde.alt01abreveacute.alt01abrevedotbelow.alt01abrevegrave.alt01abrevehook.alt01abrevetilde.alt01acircumflexacute.alt01acircumflexdotbelow.alt01acircumflexgrave.alt01acircumflexhook.alt01acircumflextilde.alt01aeacute ccircumflex cdotaccentdcarondcroatebreveecaron edotaccent edotbelowehookemacroneogoneketildeecircumflexacuteecircumflexdotbelowecircumflexgraveecircumflexhookecircumflextildeschwa gcircumflex gcommaaccent gdotaccent gbreve.alt01gcircumflex.alt01gcommaaccent.alt01gdotaccent.alt01hbar hcircumflexibreve idotbelowihookimacroniogonekitildeijijacutedotlessjjacute jcircumflex kcommaaccent kgreenlandiclacutelcaron lcommaaccentldotnacutencaron ncommaaccent napostropheengobreve odotbelowohook ohungarumlautomacron oslashacuteohorn ohornacute ohorndotbelow ohorngrave ohornhook ohorntildeocircumflexacuteocircumflexdotbelowocircumflexgraveocircumflexhookocircumflextilderacutercaron rcommaaccentsacute scircumflex scommaaccentgermandbls.alt01tbartcaron tcommaaccenttcedillaubreve udotbelowuhook uhungarumlautumacronuogonekuringutildeuhorn uhornacute uhorndotbelow uhorngrave uhornhook uhorntildewacute wcircumflex wdieresiswgrave ycircumflex ydotbelowygraveyhookytildezacute zdotaccentAbreve AdotbelowAhookAmacronAogonek Aringacute AbreveacuteAbrevedotbelow Abrevegrave Abrevehook AbrevetildeAcircumflexacuteAcircumflexdotbelowAcircumflexgraveAcircumflexhookAcircumflextildeAEacute Ccircumflex CdotaccentDcaronDcroatEbreveEcaron Edotaccent EdotbelowEhookEmacronEogonekEtildeEcircumflexacuteEcircumflexdotbelowEcircumflexgraveEcircumflexhookEcircumflextildeSchwa Gcircumflex Gcommaaccent GdotaccentHbar HcircumflexIbreve Idotaccent IdotbelowIhookImacronIogonekItildeIJIJacuteJacute Jcircumflex KcommaaccentLacuteLcaron LcommaaccentLdotNacuteNcaron NcommaaccentEngObreve OdotbelowOhook OhungarumlautOmacron OslashacuteOhorn Ohornacute Ohorndotbelow Ohorngrave Ohornhook OhorntildeOcircumflexacuteOcircumflexdotbelowOcircumflexgraveOcircumflexhookOcircumflextildeRacuteRcaron RcommaaccentSacute Scircumflex Scommaaccent GermandblsTbarTcaron TcommaaccentTcedillaUbreve UdotbelowUhook UhungarumlautUmacronUogonekUringUtildeUhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhook UhorntildeWacute Wcircumflex WdieresisWgrave Ycircumflex YdotbelowYgraveYhookYtildeZacute ZdotaccentDeltauni0430 uni0430.alt01uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi04D3uni04D1 uni04D3.alt01 uni04D1.alt01uni04D5uni0453uni0491uni0493uni0495uni0450uni0451uni04D7uni0454uni04DDuni04C2uni0497uni04DFuni0499uni04CFuni04E5uni045Duni04E3uni045Cuni049Buni049Duni04A1uni0459uni04A3uni045Auni04A5uni04E7uni0473uni04E9uni04ABuni04EFuni04F1uni04F3uni045Euni04AFuni04B1uni04B3uni04F5uni04B7uni04B9uni04F9uni0455uni045Funi0456uni0457uni0458uni0452uni045Buni04BBuni04D9uni04D2uni04D0uni04D4uni0403uni0490uni0492uni0494uni0400uni0401uni04D6uni0404uni04DCuni04C1uni0496uni04DEuni0498uni04C0uni04E4uni040Duni04E2uni040Cuni049Auni049Cuni04A0uni0409uni04A2uni040Auni04A4uni04E6uni0472uni04E8uni04AAuni04EEuni04F0uni04F2uni040Euni04AEuni04B0uni04B2uni04F4uni04B6uni04B8uni04F8uni0405uni040Funi0406uni0407uni0408uni0402uni040Buni04BAuni04D8 zerosuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferioruni2153uni2154uni2155uni2156uni2157uni2158uni2159uni215Auni2150uni215Buni215Cuni215Duni215Euni2151 checkmark crossmark arrowleftarrowup arrowdown arrowright arrowupleft arrowupright arrowdownleftarrowdownrightarrowupleftcornerarrowdownleftcornerarrowleftupcornerarrowrightupcornerarrowleftdowncornerarrowrightdowncornerarrowuprightcornerarrowdownrightcornerarrowleftarrowrightarrowrightarrowleftarrowleftright arrowupdownarrowdowncounterclockhalfarrowdownclockhalf arrowhookleftarrowhookrightarrowupleftcounterclockarrowuprightclock tilde.alt01macron breve.cyrl ringacutecommaturnedtop caronslovak tildecomb macroncomb dotaccentcomb dieresiscombhungarumlautcomb acutecomb gravecombcircumflexcomb caroncomb brevecombringcombhookcombcommaturnedtopcombcaronslovakcombhorncomb cedillacomb dotbelowcombcommabelowcomb ogonekcomb breveacute brevegrave brevehook brevetilde dieresisacute dieresiscaron dieresisgravecircumflexacutecircumflexbrevecircumflexgravecircumflexhookdieresismacroncircumflextilde tilde.casetilde.alt01.case macron.casedotaccent.case dieresis.casehungarumlaut.case acute.case grave.casecircumflex.case caron.case breve.casebreve.cyrl_case ring.caseringacute.case hookcomb.casebreveacute.casebrevegrave.casebrevehook.casebrevetilde.casedieresisacute.casedieresiscaron.casedieresisgrave.casecircumflexacute.casecircumflexbreve.casecircumflexgrave.casecircumflexhook.casedieresismacron.casecircumflextilde.casefcclogocelogo HDFLTcyrl"latn0kern&kern,kern2mark8markDmarkP "*2.2U6g H H H HHX 8B`j* : f  & 0 6 L ^ h > " H j  .@Rh *4>",6@J<",6@J\n.H<pT,`^&j  !*!!$$%X%%%%%%&&&&&&4&N&h&'@'().)**x*+<+,8,-$-. ../R/00p01011   M68GMdis8t6GHMst     68GMbist$GHM~bist   C 8GHM~i         '6 GHM_abdis t  C   GHMabdt             6  ',<GO no  68  ',<GOno 68H  ( ',! ?@ A BC D F Z z { |                       Md i ,<Gno&GMist  '<GOnouxGHIxJxKxLxMNxOxPQxRUWYxZx[\]^dirsu      !"#$%&'(,./369<EGHILMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwxy}~x{x{.GHMbdist  ',<GOnoux   !Grst  '<GOnoy !GHMis  ',<GOnouyxxxxxxxxHIRSfxHIRSfxHIRSfxHIRSfx/GHM_ab dirst  ',<GOnoux y  -GHMbdirst  ',<GOnoux y  +GHM(di)rst  ',<GnoyO   "GMdis ',<Gno Mad it   ',<GuGst  '<GOnoy 68 C H ',<Gnox 6k-  ',<Gn 68k-H  ',<Gno  68 kH  ',<Gnoy  68kCH  ',<GOno 6 8k C H  ',<Gno 8k CH  ',<Gnox %68dkCH  ',<GOnoux  6 k H  ',<Gnox 6 8kCH  ',Gnoux68    ',Onou  68   ,<no! 68   ',<G Ono68  '<GOnou  6  ' , G O nou  6 '<Ono 6  ',<GOnou   68  ',<GOno 68   ', O no  68   ',GOnou cldfK; ( ~       NN              "         5,    $"  " ! !    V  p  0 &&&         %                       `q^  ~     #    #       !(  ,         #(   $ $ &&  &  AdH"I|U     $     $ J            (             4 " 1 V #   $            ((!& &        (      H                  )   'O         $ x  Y/2:n=*1t   t &(#(%&           ((#!#         #     >  ?H*:"7:<8N&(::8(;Q   a     (  URXR<M2(>X4F>H0@6Z4@>G4bK6 _           #       $#   $      &,0*(         -(((*(*((+(    &($$!&&  ((! &&(     (                            ",      \"A ""$$&&(*-- /1 49GHMMQQSZ\\ ^_!ac#eg&ii)kk*st+zz-./0 1 49;BG<RRBqqCDGHIZ[gl  )+./2288:=NPTTZZnpuuxzK"&068GHM_abcefgilmstBC)8:<=OPTZnopuyz(*799,;;->N.QS?UYB[mGqtZvx^{ail!#%''*, ./#15%77*9:+IL-N^1zzBCyAD,[_JGH&&006688GGHHMM*__aabbccee ff gg ii$llmmsstt'BBCC4567))/880::1<<2==3OO=PP?TT9ZZFnnAooCppEuu:yy;zz8<>,@BD-.+J)&#! I(%"       55    !!""8##$&8''()8**+.8//008112283344557799::ILNOPPQQRRSTUUVVWWXXYZ[[\\]]^^ff:hh:zz555!!"9:<=ABBDG IZ [^ _e fh i888888 !  7  $('7#7$7$%&17" !7""%#$7%%'&&7((2..0///33*66,99,::-;;.==3??)BB+EE/HI JK!LL MN7PP7QT$UW(XY'ZZ4[`7aa%bb#ce7fi$jm&pp1qs"tt7vv7wx6z{9||4}}$~2,0/+*,.3)-,            GG<HH=IL:MMBNOPPOQQRROST UUVVWWXXYZ[[\\]]^^__QaaRbbPddAff;hh;iirr>sstt"zz 12  E  S  '  476SS4S04F3S !S""#$S%%6&&S''((()+M,,%--M.. // 02M3345M66978M999:: ;; <<&==8>>M??@AMBBCDMEE FFMGGDHI1JK2LL1MNSOONPPSQT4UW7XY6ZZ5[`SaabbceSfi4jmnn*oo,pp3qsttSuuGvvSwxTyyHz{L||5}}4~-MKM9  MM9 )+8MJMC M9/$!.# @I?t       !!##$$ %%!''"**#++$,,%..&//'11'22)33*44+55,77.99/::0ILNOQQSTUUVVWWXXYZ[[\\]]^^zz   !!"-.34899 :<=ADGHH ITUZ[^_efhi~! !'"#$%&'('!)*+,-./0<@  5 6  6=kl=7R7>8?12 !!!""m###$&m''#()m**"+.m//#00m11#22m33D4455$66 7788%99 ::9GGnHHsIL`MMiNOPP_QQRR_STFUUGVVHWWGXXHYZ[[b\\c]]b^^c__a``paa&bbEddreeoffjhhjiifssetthuuqzzF5<<6=7kl=7=7!!7"9:<7=A>BB5CC^DG8HHWIZ?[^_efh i!#m#m"m#mDmm$ 9  *  3  +  4333[,3 !3""#$3%%&&3''-((,, ..//336699::;;<<(==??BBEEGG)HIJKLLMN3OOCPP3QTUW4XYZZ;[`3aabbce3fijmnn.oo/ppqstt3uuAvv3||;}}~0B  :']QZXMKVTIO\PYgLJUSdN ;~ &,28>D JPV\bhnt~~~~~~~~~~~~~~~~~~          &&22>>>DDDDDDDDDDDDDDDDDDJJPPPV\\\\\\\\\\\\\\\hhhhttt~8D Vn~~ DP  &L" ;J3CYAP]l6j*MxS9Ba  02:'047;?FIMQTVY_bdghjl"%m'*q-/u14x68|:;=>@@EEILNQSVXaclnpruwz|~  ((**--468:==HK QS$ff'jm(uu,ww-||.~/145678 FFLRX^djpvFFFFFFFFFFFFFFFFFFFFFLLLLLLLLLLLLLLLLLLLLLRRRRRRRRRRRRRRRRX^^^^^^^^^^^dddddddddddddddddddddjjjjjjjjjjjjjjjjpppppppppppvvvvvvvvvvvFLRdjFFLLRRRXddjjjppp4gNI-$ !!%%))55 &3=  CIQDSTMipOr~Wdnt}~  ((--HKQSww~, ($**06<BHNT*Z`fl`frx~~$66BHHHH*Z```fx$ &,HNf`2x~8>DJP~V\bZ0 QT/"Y3UAPLb#wj;MdmZ6e MO398ha$ 3@  !"#$%&'()*+,-./0123456789:&+.0<AMUWbm  #(*+-./0245689:;=?CLu|FL  "(.""((..'n ,FG DFLTcyrl>latnh !$'*- "%(+.  #&),/0aalt"aalt*aalt2ccmp:ccmpBccmpJdnomRdnomXdnom^fracdfraclfractliga|ligaliganumrnumrnumrordnordnordnsaltsaltsaltsinfsinfsinfss01ss01ss01ss02ss02ss02ss03ss03ss03ss04 ss04ss04ss05ss05$ss05*sups0sups6sups?@`" <=%&/0B3456789:;<=>?@;;>Fii k;;>F;HI B ;;BBHI  BBHI')$* ;   $z .X #    $$ !  "    ,  $$^ !:qq !"#$$extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL.ttx000066400000000000000000172463611416264461600237520ustar00rootroot00000000000000 PUSHW[ ] /* 1 value pushed */ 0 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ PUSHW[ ] /* 1 value pushed */ 9 LT[ ] /* LessThan */ IF[ ] /* If */ PUSHB[ ] /* 2 values pushed */ 1 1 INSTCTRL[ ] /* SetInstrExecControl */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 511 SCANCTRL[ ] /* ScanConversionControl */ PUSHW[ ] /* 1 value pushed */ 68 SCVTCI[ ] /* SetCVTCutIn */ PUSHW[ ] /* 2 values pushed */ 9 3 SDS[ ] /* SetDeltaShiftInGState */ SDB[ ] /* SetDeltaBaseInGState */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 1 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ ROUND[01] /* Round */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 2 FDEF[ ] /* FunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 1 LOOPCALL[ ] /* LoopAndCallFunction */ POP[ ] /* PopTopStack */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 3 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ ROLL[ ] /* RollTopThreeStack */ MD[0] /* MeasureDistance */ ABS[ ] /* Absolute */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[00] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[00] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ NEG[ ] /* Negate */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ MDAP[1] /* MoveDirectAbsPt */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ ROUND[01] /* Round */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 EQ[ ] /* Equal */ IF[ ] /* If */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 64 EIF[ ] /* EndIf */ ELSE[ ] /* Else */ ROUND[01] /* Round */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 EQ[ ] /* Equal */ IF[ ] /* If */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 64 NEG[ ] /* Negate */ EIF[ ] /* EndIf */ EIF[ ] /* EndIf */ MSIRP[0] /* MoveStackIndirRelPt */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 4 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[10] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[10] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ MDAP[1] /* MoveDirectAbsPt */ MIRP[11101] /* MoveIndirectRelPt */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 5 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ LT[ ] /* LessThan */ IF[ ] /* If */ LTEQ[ ] /* LessThenOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 128 WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 64 WCVTP[ ] /* WriteCVTInPixels */ EIF[ ] /* EndIf */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ POP[ ] /* PopTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ PUSHB[ ] /* 1 value pushed */ 192 LT[ ] /* LessThan */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 192 WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ EIF[ ] /* EndIf */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 6 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ ROUND[01] /* Round */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ RDTG[ ] /* RoundDownToGrid */ ROUND[01] /* Round */ RTG[ ] /* RoundToGrid */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 7 FDEF[ ] /* FunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 6 LOOPCALL[ ] /* LoopAndCallFunction */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 8 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 64 ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 0 EIF[ ] /* EndIf */ ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 128 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 192 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 256 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 320 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHW[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ RCVT[ ] /* ReadCVT */ PUSHW[ ] /* 1 value pushed */ 384 LT[ ] /* LessThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 384 SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ RCVT[ ] /* ReadCVT */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ WCVTP[ ] /* WriteCVTInPixels */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 9 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ RCVT[ ] /* ReadCVT */ WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 0 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 1 14 2 CALL[ ] /* CallFunction */ SVTCA[1] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 15 3 2 CALL[ ] /* CallFunction */ SVTCA[1] /* SetFPVectorToAxis */ PUSHW[ ] /* 8 values pushed */ 15 54 44 34 25 15 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 16 68 56 44 31 19 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 17 48 39 31 22 13 0 8 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 8 values pushed */ 1 106 86 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 2 138 112 84 60 36 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 3 84 64 52 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 4 120 98 76 52 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 5 76 62 48 34 18 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 6 98 84 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 7 51 42 33 24 14 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 8 74 60 47 34 20 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 9 68 54 44 34 22 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 10 60 48 38 28 16 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 11 54 46 36 28 16 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 12 104 84 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 13 37 30 23 16 10 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 14 35 30 23 16 10 0 8 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 18 8 7 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 0 DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ RDTG[ ] /* RoundDownToGrid */ ROUND[01] /* Round */ RTG[ ] /* RoundToGrid */ WCVTP[ ] /* WriteCVTInPixels */ PUSHW[ ] /* 3 values pushed */ 63 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 64 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 111 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 160 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 96 24 1 DELTAC1[ ] /* DeltaExceptionC1 */ PUSHW[ ] /* 3 values pushed */ 16 24 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 112 24 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 64 24 1 DELTAC3[ ] /* DeltaExceptionC3 */ PUSHW[ ] /* 3 values pushed */ 48 26 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 80 26 1 DELTAC2[ ] /* DeltaExceptionC2 */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 2 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 23 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 4 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 19 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 45 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 45 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 36 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 36 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 59 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 37 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 30 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 9 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 144 6 160 6 176 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 18 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 27 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 192 32 208 32 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 32 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 18 27 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 27 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 159 36 175 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 47 39 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 9 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 22 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 46 38 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 24 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 25 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 8 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 0 36 16 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 4 7 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 63 4 79 4 95 4 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 13 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 14 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 15 3 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 4 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 17 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 53 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 15 values pushed */ 144 0 160 0 176 0 192 0 208 0 224 0 240 0 7 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 0 0 16 0 32 0 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 9 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 31 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 1 39 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 12 9 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 31 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 15 12 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 12 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 49 39 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 12 48 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 12 96 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 25 48 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 25 96 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 25 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 39 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 4 12 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 27 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 39 45 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 69 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 69 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 73 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 54 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 54 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 27 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 42 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 45 54 60 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 13 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 9 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 63 8 79 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 111 8 127 8 143 8 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 48 16 64 16 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 224 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 80 16 96 16 112 16 128 16 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 16 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 26 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 33 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 43 48 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 41 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 17 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 30 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 60 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 60 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 32 7 48 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 160 7 176 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 32 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 224 7 240 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 96 7 112 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 128 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 60 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 88 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 81 49 88 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 81 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 81 63 81 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 127 81 143 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 79 81 95 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 111 81 127 81 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 15 81 31 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 45 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 54 45 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 66 69 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 73 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 52 19 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 71 59 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 10 52 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 52 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 19 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 32 28 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 59 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 39 28 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 70 28 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 67 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 25 47 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 53 51 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 63 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 51 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 62 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 33 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 21 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 14 9 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 9 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 17 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 7 1 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 4 values pushed */ 0 6 19 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 19 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 55 66 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 255 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 159 27 175 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 55 66 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 78 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 71 78 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 40 78 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 25 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 10 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 32 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 207 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 64 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 6 16 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 54 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 57 61 54 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 57 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 57 112 57 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 48 57 64 57 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 58 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 58 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 58 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 207 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 64 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 6 16 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 50 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 50 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 50 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 47 50 63 50 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 49 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 50 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 15 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 8 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 16 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 24 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 207 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 8 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 8 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 28 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 18 64 18 80 18 3 DELTAP2[ ] /* DeltaExceptionP2 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 96 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 65 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 43 52 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 33 64 33 80 33 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 47 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 56 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 10 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 24 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 7 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 29 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 175 5 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 6 47 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 192 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 31 26 47 26 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 192 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 6 47 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 13 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 18 47 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 13 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 32 47 32 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 46 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 53 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 33 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 59 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 66 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 3 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 9 values pushed */ 79 3 95 3 111 3 127 3 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 16 18 32 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 71 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 71 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 39 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 71 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 50 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 39 50 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 8 50 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 23 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 0 15 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 0 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 15 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 15 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 0 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 38 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 18 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 22 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 13 8 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 19 14 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 3 values pushed */ 13 8 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 7 values pushed */ 0 10 16 10 32 10 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 44 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 16 20 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 28 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 33 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 30 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 20 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 54 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 17 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 28 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 34 44 45 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 25 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 67 44 51 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 18 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 48 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 30 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 28 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 37 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 64 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 96 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 21 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 35 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 30 63 30 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 17 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 49 21 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 49 112 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 48 49 64 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 144 49 160 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 56 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 56 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 56 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 13 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 13 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 6 223 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 36 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 21 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 58 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 53 58 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 53 63 53 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 27 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 27 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 38 31 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 20 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 10 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 16 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 18 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 28 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 20 27 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 27 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 27 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 6 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 64 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 74 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 61 64 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 77 64 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 33 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 0 8 16 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 31 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 31 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 9 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 16 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 22 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 43 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 86 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 68 26 86 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 68 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 96 68 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 15 68 31 68 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 0 68 16 68 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 112 68 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 53 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 92 86 53 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 92 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 92 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 112 92 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 62 10 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 11 values pushed */ 112 62 128 62 144 62 160 62 176 62 5 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 11 92 62 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 18 53 68 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 44 40 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 75 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 75 68 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 48 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 59 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 74 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 56 26 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 56 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 15 56 31 56 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 96 56 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 56 16 56 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 80 41 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 80 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 80 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 48 80 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 50 10 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 11 values pushed */ 112 50 128 50 144 50 160 50 176 50 5 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 11 50 80 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 18 56 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 63 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 63 56 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 50 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 50 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 22 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 50 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 64 29 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 57 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 57 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 53 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 25 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 33 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 46 62 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 17 46 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 62 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 62 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 0 18 16 18 32 18 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 3 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 31 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 96 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 144 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 58 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 21 58 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 143 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 207 10 223 10 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 9 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 14 21 58 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 31 14 47 14 63 14 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 111 14 127 14 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 52 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 68 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 19 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 4 values pushed */ 34 3 0 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 4 values pushed */ 38 3 10 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 3 values pushed */ 13 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 52 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 34 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 26 34 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 14 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 21 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 8 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 4 63 4 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 13 5 3 CALL[ ] /* CallFunction */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 64 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 64 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 59 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 208 6 224 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 192 6 208 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 12 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 192 12 208 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 31 28 47 28 63 28 79 28 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 59 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 48 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 11 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 0 3 16 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 2 3 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 9 8 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 20 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 23 3 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 39 24 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 17 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 0 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 11 9 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 12 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 9 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 4 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 13 3 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 58 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 49 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 34 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 3 96 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 96 3 112 3 128 3 144 3 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 20 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 7 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 7 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 41 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 30 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 22 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 22 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 2 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 2 27 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 8 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 29 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 51 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 55 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 55 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 66 71 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 66 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 66 63 66 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 24 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 44 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 10 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 7 28 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 20 10 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 45 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 42 45 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 7 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 1 37 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 11 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 46 29 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 14 11 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 26 11 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 47 37 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 36 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 42 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 8 18 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 32 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 20 47 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 32 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 66 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 66 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 69 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 69 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 54 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 54 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 30 36 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 66 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 25 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 63 8 79 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 240 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 3 8 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 159 3 175 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 31 3 47 3 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 31 3 47 3 63 3 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 36 63 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 63 36 79 36 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 240 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 80 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 14 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 2 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 27 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 38 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 11 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 12 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 37 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 37 78 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 255 48 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 48 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 37 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 37 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 68 3 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 68 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 21 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 68 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 13 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 77 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 176 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 14 47 14 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 7 31 7 47 7 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 207 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 46 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 7 31 7 47 7 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 11 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 15 7 31 7 47 7 63 7 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 4 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 72 16 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 72 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 72 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 63 42 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 57 63 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 81 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 79 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 192 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 192 6 208 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 36 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 8 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 4 12 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 42 24 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 32 36 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 27 36 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 64 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 64 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 68 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 51 64 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 22 33 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 19 27 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 57 51 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 47 51 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 42 51 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 30 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 32 34 48 34 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 51 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 51 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 80 51 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 57 80 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 58 35 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 41 58 51 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 70 35 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 65 70 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 10 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 41 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 60 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 60 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 37 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 10 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 37 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 12 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 19 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 9 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 27 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 36 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 53 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 35 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 48 26 64 26 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 96 26 112 26 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 27 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 63 27 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 41 32 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 55 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 41 32 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 55 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 45 36 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 30 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 31 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 21 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 2 3 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 9 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 23 7 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 24 4 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 3 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 36 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 8 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 8 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 8 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 21 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 11 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 31 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 11 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 26 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 224 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 80 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 36 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 47 31 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 58 25 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 58 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 29 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 41 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 6 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 16 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 79 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 224 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 4 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 127 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 159 27 175 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 255 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 27 223 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 14 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 55 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 55 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 67 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 67 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 65 26 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 22 65 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 35 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 30 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 58 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 26 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 35 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 55 27 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 4 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 4 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 8 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 24 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 21 24 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 208 29 224 29 240 29 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 33 values pushed */ 0 29 16 29 32 29 48 29 64 29 80 29 96 29 112 29 128 29 144 29 160 29 176 29 192 29 208 29 224 29 240 29 16 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 0 29 1 DELTAP3[ ] /* DeltaExceptionP3 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 160 3 176 3 192 3 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 255 13 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 15 13 1 DELTAP3[ ] /* DeltaExceptionP3 */ NPUSHW[ ] /* 5 values pushed */ 239 13 255 13 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 95 13 111 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 143 13 159 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 31 13 47 13 63 13 3 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 13 223 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 96 13 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 48 13 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 9 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 14 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 23 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 6 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 37 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 25 45 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 33 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 19 15 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 19 63 19 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 19 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 19 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 12 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 23 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 23 48 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 23 96 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 34 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 34 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 30 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 50 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 42 30 50 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 57 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 30 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 41 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 13 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 67 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 67 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 55 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 55 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 67 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 65 26 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 22 65 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 44 35 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 31 56 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 46 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 25 46 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 25 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 15 39 31 39 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 42 34 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 31 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 4 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 15 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 8 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 26 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 4 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 4 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 23 255 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 23 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 48 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 55 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 55 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 24 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 69 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 62 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 12 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 128 6 144 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 6 48 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 6 80 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 19 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 19 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 6 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 27 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 22 40 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 22 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 22 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 13 33 29 33 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 36 28 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 4 13 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 4 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 239 4 255 4 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 239 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 37 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 7 values pushed */ 0 49 16 49 32 49 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 49 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 38 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 35 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 21 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 18 31 18 47 18 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 29 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 29 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 26 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 27 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 60 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 28 255 28 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 28 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 26 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 28 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 5 255 5 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 5 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 7 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 3 48 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 3 96 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 3 255 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 3 48 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 24 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 47 34 63 34 79 34 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 175 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 207 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 143 34 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 34 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 22 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 12 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 28 32 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 40 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 36 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 32 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 59 49 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 62 44 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 40 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 36 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 58 49 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 62 44 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 26 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 35 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 55 28 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 66 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 68 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 23 44 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 23 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 15 37 31 37 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 40 38 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 50 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 57 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 3 12 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 21 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 35 16 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 3 12 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 23 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 36 16 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 10 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 9 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 23 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 37 14 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 1 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 4 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 3 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 12 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 43 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 6 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 10 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 6 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 14 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 18 63 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 14 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 5 255 5 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 5 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 14 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 25 255 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 25 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 28 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 18 64 18 80 18 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 8 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 9 values pushed */ 15 5 31 5 47 5 63 5 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 15 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 23 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 15 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 23 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 16 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 25 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 14 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 128 8 144 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 8 48 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 8 80 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 8 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 0 8 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 7 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 0 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 7 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 34 1 50 1 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 1 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 128 1 144 1 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 1 80 1 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 6 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 1 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 1 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 32 38 48 38 2 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 176 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 224 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 12 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 28 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 24 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 10 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 2 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 2 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 15 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 19 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 127 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 4 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 15 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 192 8 208 8 224 8 240 8 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 144 8 160 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 6 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 6 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 34 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 35 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 42 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 239 29 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 29 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 143 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ Copyright 2020 IBM Corp. All rights reserved. IBM Plex Serif Text Regular IBM;IBMPlexSerif-Text;2.006;2020 IBM Plex Serif Text Version 2.006 2020 IBMPlexSerif-Text IBM Plex¨ is a trademark of IBM Corp, registered in many jurisdictions worldwide. Bold Monday Mike Abbink, Paul van der Laan, Pieter van Rosmalen http://www.boldmonday.com http://www.ibm.com This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL IBM Plex Serif Text How razorback-jumping frogs can level six piqued gymnasts! Copyright 2020 IBM Corp. All rights reserved. IBM Plex Serif Text Regular IBM;IBMPlexSerif-Text;2.006;2020 IBM Plex Serif Text Version 2.006 2020 IBMPlexSerif-Text IBM Plex® is a trademark of IBM Corp, registered in many jurisdictions worldwide. Bold Monday Mike Abbink, Paul van der Laan, Pieter van Rosmalen http://www.boldmonday.com http://www.ibm.com This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL IBM Plex Serif Text How razorback-jumping frogs can level six piqued gymnasts! extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/000077500000000000000000000000001416264461600266075ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/fontinfo.plist000066400000000000000000000440671416264461600315210ustar00rootroot00000000000000 ascender 780 capHeight 698 copyright Copyright 2020 IBM Corp. All rights reserved. descender -220 familyName IBM Plex Serif guidelines italicAngle 0.0 openTypeHeadCreated 2014/06/20 01:44:42 openTypeHeadFlags 0 1 openTypeHeadLowestRecPPEM 3 openTypeHheaAscender 780 openTypeHheaCaretOffset 0 openTypeHheaCaretSlopeRise 1 openTypeHheaCaretSlopeRun 0 openTypeHheaDescender -220 openTypeHheaLineGap 300 openTypeNameDesigner Mike Abbink, Paul van der Laan, Pieter van Rosmalen openTypeNameDesignerURL http://www.ibm.com openTypeNameLicense This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeNameManufacturer Bold Monday openTypeNameManufacturerURL http://www.boldmonday.com openTypeNamePreferredFamilyName IBM Plex Serif openTypeNamePreferredSubfamilyName Text openTypeNameRecords encodingID 0 languageID 0 nameID 0 platformID 1 string Copyright 2020 IBM Corp. All rights reserved. encodingID 1 languageID 1033 nameID 0 platformID 3 string Copyright 2020 IBM Corp. All rights reserved. encodingID 0 languageID 0 nameID 1 platformID 1 string IBM Plex Serif Text encodingID 1 languageID 1033 nameID 1 platformID 3 string IBM Plex Serif Text encodingID 0 languageID 0 nameID 2 platformID 1 string Regular encodingID 1 languageID 1033 nameID 2 platformID 3 string Regular encodingID 0 languageID 0 nameID 3 platformID 1 string IBM;IBMPlexSerif-Text;2.006;2020 encodingID 1 languageID 1033 nameID 3 platformID 3 string IBM;IBMPlexSerif-Text;2.006;2020 encodingID 0 languageID 0 nameID 4 platformID 1 string IBM Plex Serif Text encodingID 1 languageID 1033 nameID 4 platformID 3 string IBM Plex Serif Text encodingID 0 languageID 0 nameID 5 platformID 1 string Version 2.006 2020 encodingID 1 languageID 1033 nameID 5 platformID 3 string Version 2.006 2020 encodingID 0 languageID 0 nameID 6 platformID 1 string IBMPlexSerif-Text encodingID 1 languageID 1033 nameID 6 platformID 3 string IBMPlexSerif-Text encodingID 0 languageID 0 nameID 7 platformID 1 string IBM Plex¨ is a trademark of IBM Corp, registered in many jurisdictions worldwide. encodingID 1 languageID 1033 nameID 7 platformID 3 string IBM Plex® is a trademark of IBM Corp, registered in many jurisdictions worldwide. encodingID 0 languageID 0 nameID 8 platformID 1 string Bold Monday encodingID 1 languageID 1033 nameID 8 platformID 3 string Bold Monday encodingID 0 languageID 0 nameID 9 platformID 1 string Mike Abbink, Paul van der Laan, Pieter van Rosmalen encodingID 1 languageID 1033 nameID 9 platformID 3 string Mike Abbink, Paul van der Laan, Pieter van Rosmalen encodingID 0 languageID 0 nameID 11 platformID 1 string http://www.boldmonday.com encodingID 1 languageID 1033 nameID 11 platformID 3 string http://www.boldmonday.com encodingID 0 languageID 0 nameID 12 platformID 1 string http://www.ibm.com encodingID 1 languageID 1033 nameID 12 platformID 3 string http://www.ibm.com encodingID 0 languageID 0 nameID 13 platformID 1 string This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL encodingID 1 languageID 1033 nameID 13 platformID 3 string This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL encodingID 0 languageID 0 nameID 14 platformID 1 string http://scripts.sil.org/OFL encodingID 1 languageID 1033 nameID 14 platformID 3 string http://scripts.sil.org/OFL encodingID 0 languageID 0 nameID 16 platformID 1 string IBM Plex Serif encodingID 1 languageID 1033 nameID 16 platformID 3 string IBM Plex Serif encodingID 0 languageID 0 nameID 17 platformID 1 string Text encodingID 1 languageID 1033 nameID 17 platformID 3 string Text encodingID 0 languageID 0 nameID 19 platformID 1 string How razorback-jumping frogs can level six piqued gymnasts! encodingID 1 languageID 1033 nameID 19 platformID 3 string How razorback-jumping frogs can level six piqued gymnasts! openTypeNameUniqueID IBM;IBMPlexSerif-Text;2.006;2020 openTypeNameVersion Version 2.006 2020 openTypeOS2CodePageRanges 0 1 2 4 7 8 29 openTypeOS2Panose 2 6 5 3 5 4 6 0 2 3 openTypeOS2Selection openTypeOS2StrikeoutPosition 304 openTypeOS2StrikeoutSize 48 openTypeOS2SubscriptXOffset 0 openTypeOS2SubscriptXSize 700 openTypeOS2SubscriptYOffset 140 openTypeOS2SubscriptYSize 650 openTypeOS2SuperscriptXOffset 0 openTypeOS2SuperscriptXSize 700 openTypeOS2SuperscriptYOffset 477 openTypeOS2SuperscriptYSize 650 openTypeOS2Type openTypeOS2TypoAscender 780 openTypeOS2TypoDescender -220 openTypeOS2TypoLineGap 300 openTypeOS2UnicodeRanges 0 1 2 3 5 6 9 29 31 32 33 35 36 37 45 60 62 openTypeOS2VendorID IBM openTypeOS2WeightClass 450 openTypeOS2WidthClass 5 openTypeOS2WinAscent 1025 openTypeOS2WinDescent 275 postscriptBlueFuzz 0 postscriptBlueValues -12 0 368 374 518 530 698 710 748 760 postscriptFamilyBlues postscriptFamilyOtherBlues postscriptFontName IBMPlexSerif-Text postscriptForceBold postscriptFullName IBM Plex Serif Text postscriptIsFixedPitch postscriptNominalWidthX 639 postscriptOtherBlues -212 -200 324 330 postscriptStemSnapH 50 54 postscriptStemSnapV 80 96 106 postscriptUnderlinePosition -73 postscriptUnderlineThickness 48 postscriptWeightName Medium styleMapFamilyName IBM Plex Serif Text styleMapStyleName regular styleName Text trademark IBM Plex¨ is a trademark of IBM Corp, registered in many jurisdictions worldwide. unitsPerEm 1000 versionMajor 2 versionMinor 6 xHeight 518 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/000077500000000000000000000000001416264461600301155ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_.glif000066400000000000000000000020311416264461600312730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_E_.glif000066400000000000000000000033121416264461600315420ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_E_acute.glif000066400000000000000000000036301416264461600325670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_acute.glif000066400000000000000000000023471416264461600323270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_breve.glif000066400000000000000000000033031416264461600323220ustar00rootroot00000000000000 A_breveacute.glif000066400000000000000000000036231416264461600332720ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs A_brevedotbelow.glif000066400000000000000000000044751416264461600340160ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs A_brevegrave.glif000066400000000000000000000036231416264461600332750ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_brevehook.glif000066400000000000000000000043461416264461600332130ustar00rootroot00000000000000 A_brevetilde.glif000066400000000000000000000053461416264461600332760ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs A_circumflex.glif000066400000000000000000000025551416264461600333110ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs A_circumflexacute.glif000066400000000000000000000030751416264461600343310ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs A_circumflexdotbelow.glif000066400000000000000000000037471416264461600350550ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs A_circumflexgrave.glif000066400000000000000000000030741416264461600343330ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs A_circumflexhook.glif000066400000000000000000000036201416264461600341640ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs A_circumflextilde.glif000066400000000000000000000046201416264461600343260ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_dieresis.glif000066400000000000000000000043631416264461600330350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_dotbelow.glif000066400000000000000000000032231416264461600330370ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_grave.glif000066400000000000000000000023471416264461600323320ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_hook.glif000066400000000000000000000030671416264461600321660ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_macron.glif000066400000000000000000000023501416264461600324770ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_ogonek.glif000066400000000000000000000034601416264461600325050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_ring.glif000066400000000000000000000041771416264461600321700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_ringacute.glif000066400000000000000000000045201416264461600332020ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/A_tilde.glif000066400000000000000000000040571416264461600323270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/B_.glif000066400000000000000000000035711416264461600313060ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_.glif000066400000000000000000000026741416264461600313120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_R_.glif000066400000000000000000000002271416264461600315630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_acute.glif000066400000000000000000000032121416264461600323210ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_caron.glif000066400000000000000000000034131416264461600323250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_cedilla.glif000066400000000000000000000047151416264461600326260ustar00rootroot00000000000000 C_circumflex.glif000066400000000000000000000034201416264461600333030ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/C_dotaccent.glif000066400000000000000000000040561416264461600331730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/D_.glif000066400000000000000000000022351416264461600313040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/D_caron.glif000066400000000000000000000027541416264461600323350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/D_croat.glif000066400000000000000000000027701416264461600323410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/D_elta.glif000066400000000000000000000011701416264461600321470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_.glif000066400000000000000000000022571416264461600313110ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_acute.glif000066400000000000000000000025751416264461600323360ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_breve.glif000066400000000000000000000035311416264461600323310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_caron.glif000066400000000000000000000027761416264461600323420ustar00rootroot00000000000000 E_circumflex.glif000066400000000000000000000030031416264461600333020ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs E_circumflexacute.glif000066400000000000000000000033231416264461600343310ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs E_circumflexdotbelow.glif000066400000000000000000000041751416264461600350550ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs E_circumflexgrave.glif000066400000000000000000000033221416264461600343330ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs E_circumflexhook.glif000066400000000000000000000040461416264461600341730ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs E_circumflextilde.glif000066400000000000000000000050461416264461600343350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_dieresis.glif000066400000000000000000000046111416264461600330350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_dotaccent.glif000066400000000000000000000034411416264461600331720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_dotbelow.glif000066400000000000000000000034511416264461600330460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_grave.glif000066400000000000000000000025751416264461600323410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_hook.glif000066400000000000000000000033151416264461600321660ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_macron.glif000066400000000000000000000025761416264461600325150ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_ng.glif000066400000000000000000000037771416264461600316460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_ogonek.glif000066400000000000000000000037061416264461600325140ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_th.glif000066400000000000000000000027651416264461600316510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_tilde.glif000066400000000000000000000043051416264461600323270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/E_uro.glif000066400000000000000000000034501416264461600320330ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/F_.glif000066400000000000000000000021311416264461600313010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/G_.glif000066400000000000000000000035061416264461600313110ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/G_breve.glif000066400000000000000000000047601416264461600323400ustar00rootroot00000000000000 G_circumflex.glif000066400000000000000000000042321416264461600333110ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs G_commaaccent.glif000066400000000000000000000051171416264461600334250ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/G_dotaccent.glif000066400000000000000000000046701416264461600332010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/G_ermandbls.glif000066400000000000000000000036601416264461600332020ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/H_.glif000066400000000000000000000025231416264461600313100ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/H_bar.glif000066400000000000000000000035651416264461600320040ustar00rootroot00000000000000 H_circumflex.glif000066400000000000000000000032471416264461600333170ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_.glif000066400000000000000000000012531416264461600313100ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_J_.glif000066400000000000000000000035251416264461600315650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_J_acute.glif000066400000000000000000000043241416264461600326050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_acute.glif000066400000000000000000000015711416264461600323350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_breve.glif000066400000000000000000000025171416264461600323400ustar00rootroot00000000000000 I_circumflex.glif000066400000000000000000000017751416264461600333240ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_dieresis.glif000066400000000000000000000035751416264461600330510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_dotaccent.glif000066400000000000000000000024351416264461600332000ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_dotbelow.glif000066400000000000000000000024451416264461600330540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_grave.glif000066400000000000000000000015701416264461600323370ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_hook.glif000066400000000000000000000023071416264461600321720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_macron.glif000066400000000000000000000015701416264461600325120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_ogonek.glif000066400000000000000000000027021416264461600325130ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/I_tilde.glif000066400000000000000000000032721416264461600323350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/J_.glif000066400000000000000000000024711416264461600313140ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/J_acute.glif000066400000000000000000000027571416264461600323450ustar00rootroot00000000000000 J_circumflex.glif000066400000000000000000000032151416264461600333140ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/K_.glif000066400000000000000000000026511416264461600313150ustar00rootroot00000000000000 K_commaaccent.glif000066400000000000000000000042621416264461600334310ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_.glif000066400000000000000000000014011416264461600313060ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_acute.glif000066400000000000000000000017171416264461600323420ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_caron.glif000066400000000000000000000017171416264461600323430ustar00rootroot00000000000000 L_commaaccent.glif000066400000000000000000000030121416264461600334220ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_dot.glif000066400000000000000000000025551416264461600320300ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/L_slash.glif000066400000000000000000000021341416264461600323450ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/M_.glif000066400000000000000000000025761416264461600313250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/N_.glif000066400000000000000000000021251416264461600313140ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/N_acute.glif000066400000000000000000000024431416264461600323410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/N_caron.glif000066400000000000000000000026441416264461600323450ustar00rootroot00000000000000 N_commaaccent.glif000066400000000000000000000035361416264461600334370ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/N_tilde.glif000066400000000000000000000041531416264461600323410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_.glif000066400000000000000000000023621416264461600313200ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_E_.glif000066400000000000000000000037651416264461600315740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_acute.glif000066400000000000000000000027001416264461600323360ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_breve.glif000066400000000000000000000036341416264461600323470ustar00rootroot00000000000000 O_circumflex.glif000066400000000000000000000031061416264461600333200ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs O_circumflexacute.glif000066400000000000000000000034261416264461600343470ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs O_circumflexdotbelow.glif000066400000000000000000000043001416264461600350550ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs O_circumflexgrave.glif000066400000000000000000000034261416264461600343520ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs O_circumflexhook.glif000066400000000000000000000041511416264461600342020ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs O_circumflextilde.glif000066400000000000000000000051511416264461600343440ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_dieresis.glif000066400000000000000000000047141416264461600330530ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_dotbelow.glif000066400000000000000000000035541416264461600330640ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_grave.glif000066400000000000000000000027001416264461600323410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_hook.glif000066400000000000000000000034201416264461600321750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_horn.glif000066400000000000000000000032731416264461600322110ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_hornacute.glif000066400000000000000000000036111416264461600332270ustar00rootroot00000000000000 O_horndotbelow.glif000066400000000000000000000044651416264461600336760ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_horngrave.glif000066400000000000000000000036111416264461600332320ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_hornhook.glif000066400000000000000000000043311416264461600330660ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_horntilde.glif000066400000000000000000000053211416264461600332270ustar00rootroot00000000000000 O_hungarumlaut.glif000066400000000000000000000032201416264461600336700ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_macron.glif000066400000000000000000000027011416264461600325150ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_mega.glif000066400000000000000000000034161416264461600321530ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_slash.glif000066400000000000000000000040141416264461600323470ustar00rootroot00000000000000 O_slashacute.glif000066400000000000000000000043321416264461600333150ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/O_tilde.glif000066400000000000000000000044101416264461600323360ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/P_.glif000066400000000000000000000025141416264461600313200ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Q_.glif000066400000000000000000000033101416264461600313140ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/R_.glif000066400000000000000000000034221416264461600313210ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/R_acute.glif000066400000000000000000000037401416264461600323460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/R_caron.glif000066400000000000000000000041411416264461600323430ustar00rootroot00000000000000 R_commaaccent.glif000066400000000000000000000050331416264461600334350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_.glif000066400000000000000000000042511416264461600313230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_acute.glif000066400000000000000000000045671416264461600323570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_caron.glif000066400000000000000000000047701416264461600323540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_cedilla.glif000066400000000000000000000062731416264461600326470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/S_chwa.glif000066400000000000000000000026761416264461600321770ustar00rootroot00000000000000 S_circumflex.glif000066400000000000000000000047751416264461600333410ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs S_commaaccent.glif000066400000000000000000000056621416264461600334460ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_.glif000066400000000000000000000015311416264461600313220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_bar.glif000066400000000000000000000022641416264461600320130ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_caron.glif000066400000000000000000000022501416264461600323440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_cedilla.glif000066400000000000000000000031361416264461600326430ustar00rootroot00000000000000 T_commaaccent.glif000066400000000000000000000031421416264461600334360ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/T_horn.glif000066400000000000000000000027741416264461600322230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_.glif000066400000000000000000000023741416264461600313310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_acute.glif000066400000000000000000000027121416264461600323470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_breve.glif000066400000000000000000000036461416264461600323600ustar00rootroot00000000000000 U_circumflex.glif000066400000000000000000000031201416264461600333220ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_dieresis.glif000066400000000000000000000047261416264461600330640ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_dotbelow.glif000066400000000000000000000035661416264461600330750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_grave.glif000066400000000000000000000027121416264461600323520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_hook.glif000066400000000000000000000034321416264461600322060ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_horn.glif000066400000000000000000000027321416264461600322160ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_hornacute.glif000066400000000000000000000032501416264461600332340ustar00rootroot00000000000000 U_horndotbelow.glif000066400000000000000000000041241416264461600336740ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_horngrave.glif000066400000000000000000000032501416264461600332370ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_hornhook.glif000066400000000000000000000037701416264461600331020ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_horntilde.glif000066400000000000000000000047601416264461600332430ustar00rootroot00000000000000 U_hungarumlaut.glif000066400000000000000000000032321416264461600337010ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_macron.glif000066400000000000000000000027131416264461600325260ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_ogonek.glif000066400000000000000000000042111416264461600325240ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_ring.glif000066400000000000000000000045421416264461600322100ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/U_tilde.glif000066400000000000000000000044221416264461600323470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/V_.glif000066400000000000000000000016601416264461600313270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/W_.glif000066400000000000000000000022601416264461600313250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/W_acute.glif000066400000000000000000000025761416264461600323610ustar00rootroot00000000000000 W_circumflex.glif000066400000000000000000000030041416264461600333250ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/W_dieresis.glif000066400000000000000000000046121416264461600330600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/W_grave.glif000066400000000000000000000025761416264461600323640ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/X_.glif000066400000000000000000000026471416264461600313370ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_.glif000066400000000000000000000021321416264461600313250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_acute.glif000066400000000000000000000024501416264461600323520ustar00rootroot00000000000000 Y_circumflex.glif000066400000000000000000000026561416264461600333430ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_dieresis.glif000066400000000000000000000044641416264461600330670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_dotbelow.glif000066400000000000000000000033241416264461600330710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_grave.glif000066400000000000000000000024501416264461600323550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_hook.glif000066400000000000000000000031701416264461600322110ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Y_tilde.glif000066400000000000000000000041601416264461600323520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Z_.glif000066400000000000000000000014021416264461600313250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Z_acute.glif000066400000000000000000000017201416264461600323520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Z_caron.glif000066400000000000000000000021211416264461600323470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/Z_dotaccent.glif000066400000000000000000000025641416264461600332240ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/_notdef.glif000066400000000000000000000010141416264461600323720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/_null.glif000066400000000000000000000002011416264461600320620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/a.alt01.glif000066400000000000000000000034151416264461600321230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/a.glif000066400000000000000000000046441416264461600312100ustar00rootroot00000000000000 aacute.alt01.glif000066400000000000000000000037331416264461600330710ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aacute.glif000066400000000000000000000051621416264461600322260ustar00rootroot00000000000000 abreve.alt01.glif000066400000000000000000000046671416264461600331020ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/abreve.glif000066400000000000000000000061161416264461600322300ustar00rootroot00000000000000 abreveacute.alt01.glif000066400000000000000000000052051416264461600341110ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/abreveacute.glif000066400000000000000000000064341416264461600332550ustar00rootroot00000000000000 abrevedotbelow.alt01.glif000066400000000000000000000060611416264461600346300ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs abrevedotbelow.glif000066400000000000000000000073101416264461600337060ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs abrevegrave.alt01.glif000066400000000000000000000052051416264461600341140ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/abrevegrave.glif000066400000000000000000000064341416264461600332600ustar00rootroot00000000000000 abrevehook.alt01.glif000066400000000000000000000057251416264461600337570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/abrevehook.glif000066400000000000000000000071541416264461600331140ustar00rootroot00000000000000 abrevetilde.alt01.glif000066400000000000000000000067151416264461600341200ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/abrevetilde.glif000066400000000000000000000101441416264461600332460ustar00rootroot00000000000000 acircumflex.alt01.glif000066400000000000000000000041411416264461600341230ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/acircumflex.glif000066400000000000000000000053701416264461600332670ustar00rootroot00000000000000 acircumflexacute.alt01.glif000066400000000000000000000044571416264461600351570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflexacute.glif000066400000000000000000000057061416264461600342350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflexdotbelow.alt01.glif000066400000000000000000000053331416264461600356670ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflexdotbelow.glif000066400000000000000000000065621416264461600347540ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflexgrave.alt01.glif000066400000000000000000000044551416264461600351600ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflexgrave.glif000066400000000000000000000057031416264461600342350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflexhook.alt01.glif000066400000000000000000000051771416264461600350160ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflexhook.glif000066400000000000000000000064261416264461600340740ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflextilde.alt01.glif000066400000000000000000000061671416264461600351570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs acircumflextilde.glif000066400000000000000000000074161416264461600342350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/acute.case.glif000066400000000000000000000005201416264461600327700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/acute.glif000066400000000000000000000005431416264461600320630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/acutecomb.glif000066400000000000000000000005141416264461600327220ustar00rootroot00000000000000 adieresis.alt01.glif000066400000000000000000000057471416264461600336060ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/adieresis.glif000066400000000000000000000071761416264461600327430ustar00rootroot00000000000000 adotbelow.alt01.glif000066400000000000000000000046071416264461600336100ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/adotbelow.glif000066400000000000000000000060361416264461600327450ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ae.glif000066400000000000000000000064561416264461600313600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aeacute.glif000066400000000000000000000067741416264461600324050ustar00rootroot00000000000000 agrave.alt01.glif000066400000000000000000000037331416264461600330740ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/agrave.glif000066400000000000000000000051621416264461600322310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ahook.alt01.glif000066400000000000000000000044531416264461600330070ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ahook.glif000066400000000000000000000057021416264461600320650ustar00rootroot00000000000000 amacron.alt01.glif000066400000000000000000000037341416264461600332500ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/amacron.glif000066400000000000000000000051631416264461600324050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ampersand.glif000066400000000000000000000057531416264461600327440ustar00rootroot00000000000000 aogonek.alt01.glif000066400000000000000000000051161416264461600332470ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aogonek.glif000066400000000000000000000062671416264461600324160ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/approxequal.glif000066400000000000000000000042741416264461600333300ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aring.alt01.glif000066400000000000000000000055631416264461600330110ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aring.glif000066400000000000000000000070121416264461600320600ustar00rootroot00000000000000 aringacute.alt01.glif000066400000000000000000000061011416264461600337410ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/aringacute.glif000066400000000000000000000073301416264461600331050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/arrowdown.glif000066400000000000000000000012241416264461600330010ustar00rootroot00000000000000 arrowdownclockhalf.glif000066400000000000000000000021371416264461600345750ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowdowncounterclockhalf.glif000066400000000000000000000021461416264461600361750ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowdownleft.glif000066400000000000000000000012261416264461600335770ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowdownleftcorner.glif000066400000000000000000000013101416264461600350020ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowdownright.glif000066400000000000000000000012271416264461600337630ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowdownrightcorner.glif000066400000000000000000000013111416264461600351660ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowhookleft.glif000066400000000000000000000020021416264461600335610ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowhookright.glif000066400000000000000000000020011416264461600337430ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/arrowleft.glif000066400000000000000000000012231416264461600327630ustar00rootroot00000000000000 arrowleftarrowright.glif000066400000000000000000000022201416264461600350130ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowleftdowncorner.glif000066400000000000000000000013071416264461600350100ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowleftright.glif000066400000000000000000000015571416264461600337540ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowleftupcorner.glif000066400000000000000000000013061416264461600344640ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/arrowright.glif000066400000000000000000000012231416264461600331460ustar00rootroot00000000000000 arrowrightarrowleft.glif000066400000000000000000000022201416264461600350130ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowrightdowncorner.glif000066400000000000000000000013071416264461600351730ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowrightupcorner.glif000066400000000000000000000013061416264461600346470ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/arrowup.glif000066400000000000000000000012161416264461600324570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/arrowupdown.glif000066400000000000000000000015551416264461600333550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/arrowupleft.glif000066400000000000000000000012251416264461600333320ustar00rootroot00000000000000 arrowupleftcorner.glif000066400000000000000000000013031416264461600344610ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowupleftcounterclock.glif000066400000000000000000000026211416264461600356700ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowupright.glif000066400000000000000000000012261416264461600334370ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowuprightclock.glif000066400000000000000000000026131416264461600344540ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs arrowuprightcorner.glif000066400000000000000000000013041416264461600346450ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/asciicircum.glif000066400000000000000000000010241416264461600332500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/asciitilde.glif000066400000000000000000000022551416264461600330760ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/asterisk.glif000066400000000000000000000030641416264461600326100ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/at.glif000066400000000000000000000056401416264461600313710ustar00rootroot00000000000000 atilde.alt01.glif000066400000000000000000000054431416264461600330710ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/atilde.glif000066400000000000000000000066721416264461600322350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/b.glif000066400000000000000000000031361416264461600312040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/backslash.glif000066400000000000000000000005501416264461600327130ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/baht.glif000066400000000000000000000047651416264461600317120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/bar.glif000066400000000000000000000005431416264461600315260ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/bitcoin.glif000066400000000000000000000046771416264461600324250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/braceleft.glif000066400000000000000000000026411416264461600327120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/braceright.glif000066400000000000000000000026441416264461600331000ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/bracketleft.glif000066400000000000000000000010251416264461600332440ustar00rootroot00000000000000 bracketright.glif000066400000000000000000000010241416264461600333470ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/breve.case.glif000066400000000000000000000014541416264461600330010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/breve.cyrl.glif000066400000000000000000000026061416264461600330370ustar00rootroot00000000000000 breve.cyrl_case.glif000066400000000000000000000026131416264461600337510ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/breve.glif000066400000000000000000000014771416264461600320740ustar00rootroot00000000000000 breveacute.case.glif000066400000000000000000000017361416264461600337470ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/breveacute.glif000066400000000000000000000017271416264461600331140ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/brevecomb.glif000066400000000000000000000014471416264461600327320ustar00rootroot00000000000000 brevegrave.case.glif000066400000000000000000000017361416264461600337520ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/brevegrave.glif000066400000000000000000000017271416264461600331170ustar00rootroot00000000000000 brevehook.case.glif000066400000000000000000000024531416264461600336030ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/brevehook.glif000066400000000000000000000024411416264461600327450ustar00rootroot00000000000000 brevetilde.case.glif000066400000000000000000000034621416264461600337450ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/brevetilde.glif000066400000000000000000000034401416264461600331060ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/brokenbar.glif000066400000000000000000000010621416264461600327240ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/bullet.glif000066400000000000000000000014001416264461600322420ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/c.glif000066400000000000000000000030731416264461600312050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cacute.glif000066400000000000000000000034111416264461600322230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/caron.case.glif000066400000000000000000000007211416264461600327740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/caron.glif000066400000000000000000000007441416264461600320670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/caroncomb.glif000066400000000000000000000007161416264461600327270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/caronslovak.glif000066400000000000000000000005511416264461600333030ustar00rootroot00000000000000 caronslovakcomb.glif000066400000000000000000000005201416264461600340610ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ccaron.glif000066400000000000000000000036121416264461600322270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ccedilla.glif000066400000000000000000000051151416264461600325220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ccircumflex.glif000066400000000000000000000036171416264461600332730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cdotaccent.glif000066400000000000000000000042551416264461600330750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cedi.glif000066400000000000000000000042341416264461600316670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cedilla.glif000066400000000000000000000023741416264461600323630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cedillacomb.glif000066400000000000000000000023251416264461600332200ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/celogo.glif000066400000000000000000000044671416264461600322430ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/cent.glif000066400000000000000000000035751416264461600317230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/checkmark.glif000066400000000000000000000012711416264461600327110ustar00rootroot00000000000000 circumflex.case.glif000066400000000000000000000007261416264461600337610ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/circumflex.glif000066400000000000000000000007511416264461600331240ustar00rootroot00000000000000 circumflexacute.case.glif000066400000000000000000000012141416264461600347740ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflexacute.glif000066400000000000000000000012051416264461600340620ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflexbreve.case.glif000066400000000000000000000021511416264461600347770ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflexbreve.glif000066400000000000000000000021341416264461600340660ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflexcomb.glif000066400000000000000000000007231416264461600337050ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflexgrave.case.glif000066400000000000000000000012201416264461600347740ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflexgrave.glif000066400000000000000000000012111416264461600340620ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflexhook.case.glif000066400000000000000000000017351416264461600346430ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflexhook.glif000066400000000000000000000017231416264461600337260ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflextilde.case.glif000066400000000000000000000027361416264461600350060ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs circumflextilde.glif000066400000000000000000000027141416264461600340700ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/colon.glif000066400000000000000000000025341416264461600320760ustar00rootroot00000000000000 coloncurrency.glif000066400000000000000000000055111416264461600335700ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/comma.glif000066400000000000000000000016651416264461600320640ustar00rootroot00000000000000 commabelowcomb.glif000066400000000000000000000015741416264461600336760ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs commaturnedtop.glif000066400000000000000000000016241416264461600337450ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs commaturnedtopcomb.glif000066400000000000000000000015601416264461600346050ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/contents.plist000066400000000000000000001426661416264461600330460ustar00rootroot00000000000000 .notdef _notdef.glif .null _null.glif A A_.glif AE A_E_.glif AEacute A_E_acute.glif Aacute A_acute.glif Abreve A_breve.glif Abreveacute A_breveacute.glif Abrevedotbelow A_brevedotbelow.glif Abrevegrave A_brevegrave.glif Abrevehook A_brevehook.glif Abrevetilde A_brevetilde.glif Acircumflex A_circumflex.glif Acircumflexacute A_circumflexacute.glif Acircumflexdotbelow A_circumflexdotbelow.glif Acircumflexgrave A_circumflexgrave.glif Acircumflexhook A_circumflexhook.glif Acircumflextilde A_circumflextilde.glif Adieresis A_dieresis.glif Adotbelow A_dotbelow.glif Agrave A_grave.glif Ahook A_hook.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Aringacute A_ringacute.glif Atilde A_tilde.glif B B_.glif C C_.glif CR C_R_.glif Cacute C_acute.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif D D_.glif Dcaron D_caron.glif Dcroat D_croat.glif Delta D_elta.glif E E_.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Ecircumflexacute E_circumflexacute.glif Ecircumflexdotbelow E_circumflexdotbelow.glif Ecircumflexgrave E_circumflexgrave.glif Ecircumflexhook E_circumflexhook.glif Ecircumflextilde E_circumflextilde.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Edotbelow E_dotbelow.glif Egrave E_grave.glif Ehook E_hook.glif Emacron E_macron.glif Eng E_ng.glif Eogonek E_ogonek.glif Eth E_th.glif Etilde E_tilde.glif Euro E_uro.glif F F_.glif G G_.glif Gbreve G_breve.glif Gcircumflex G_circumflex.glif Gcommaaccent G_commaaccent.glif Gdotaccent G_dotaccent.glif Germandbls G_ermandbls.glif H H_.glif Hbar H_bar.glif Hcircumflex H_circumflex.glif I I_.glif IJ I_J_.glif IJacute I_J_acute.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Idotbelow I_dotbelow.glif Igrave I_grave.glif Ihook I_hook.glif Imacron I_macron.glif Iogonek I_ogonek.glif Itilde I_tilde.glif J J_.glif Jacute J_acute.glif Jcircumflex J_circumflex.glif K K_.glif Kcommaaccent K_commaaccent.glif L L_.glif Lacute L_acute.glif Lcaron L_caron.glif Lcommaaccent L_commaaccent.glif Ldot L_dot.glif Lslash L_slash.glif M M_.glif N N_.glif Nacute N_acute.glif Ncaron N_caron.glif Ncommaaccent N_commaaccent.glif Ntilde N_tilde.glif O O_.glif OE O_E_.glif Oacute O_acute.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Ocircumflexacute O_circumflexacute.glif Ocircumflexdotbelow O_circumflexdotbelow.glif Ocircumflexgrave O_circumflexgrave.glif Ocircumflexhook O_circumflexhook.glif Ocircumflextilde O_circumflextilde.glif Odieresis O_dieresis.glif Odotbelow O_dotbelow.glif Ograve O_grave.glif Ohook O_hook.glif Ohorn O_horn.glif Ohornacute O_hornacute.glif Ohorndotbelow O_horndotbelow.glif Ohorngrave O_horngrave.glif Ohornhook O_hornhook.glif Ohorntilde O_horntilde.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Omega O_mega.glif Oslash O_slash.glif Oslashacute O_slashacute.glif Otilde O_tilde.glif P P_.glif Q Q_.glif R R_.glif Racute R_acute.glif Rcaron R_caron.glif Rcommaaccent R_commaaccent.glif S S_.glif Sacute S_acute.glif Scaron S_caron.glif Scedilla S_cedilla.glif Schwa S_chwa.glif Scircumflex S_circumflex.glif Scommaaccent S_commaaccent.glif T T_.glif Tbar T_bar.glif Tcaron T_caron.glif Tcedilla T_cedilla.glif Tcommaaccent T_commaaccent.glif Thorn T_horn.glif U U_.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Udotbelow U_dotbelow.glif Ugrave U_grave.glif Uhook U_hook.glif Uhorn U_horn.glif Uhornacute U_hornacute.glif Uhorndotbelow U_horndotbelow.glif Uhorngrave U_horngrave.glif Uhornhook U_hornhook.glif Uhorntilde U_horntilde.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Uogonek U_ogonek.glif Uring U_ring.glif Utilde U_tilde.glif V V_.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif Y Y_.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ydotbelow Y_dotbelow.glif Ygrave Y_grave.glif Yhook Y_hook.glif Ytilde Y_tilde.glif Z Z_.glif Zacute Z_acute.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif a a.glif a.alt01 a.alt01.glif aacute aacute.glif aacute.alt01 aacute.alt01.glif abreve abreve.glif abreve.alt01 abreve.alt01.glif abreveacute abreveacute.glif abreveacute.alt01 abreveacute.alt01.glif abrevedotbelow abrevedotbelow.glif abrevedotbelow.alt01 abrevedotbelow.alt01.glif abrevegrave abrevegrave.glif abrevegrave.alt01 abrevegrave.alt01.glif abrevehook abrevehook.glif abrevehook.alt01 abrevehook.alt01.glif abrevetilde abrevetilde.glif abrevetilde.alt01 abrevetilde.alt01.glif acircumflex acircumflex.glif acircumflex.alt01 acircumflex.alt01.glif acircumflexacute acircumflexacute.glif acircumflexacute.alt01 acircumflexacute.alt01.glif acircumflexdotbelow acircumflexdotbelow.glif acircumflexdotbelow.alt01 acircumflexdotbelow.alt01.glif acircumflexgrave acircumflexgrave.glif acircumflexgrave.alt01 acircumflexgrave.alt01.glif acircumflexhook acircumflexhook.glif acircumflexhook.alt01 acircumflexhook.alt01.glif acircumflextilde acircumflextilde.glif acircumflextilde.alt01 acircumflextilde.alt01.glif acute acute.glif acute.case acute.case.glif acutecomb acutecomb.glif adieresis adieresis.glif adieresis.alt01 adieresis.alt01.glif adotbelow adotbelow.glif adotbelow.alt01 adotbelow.alt01.glif ae ae.glif aeacute aeacute.glif agrave agrave.glif agrave.alt01 agrave.alt01.glif ahook ahook.glif ahook.alt01 ahook.alt01.glif amacron amacron.glif amacron.alt01 amacron.alt01.glif ampersand ampersand.glif aogonek aogonek.glif aogonek.alt01 aogonek.alt01.glif approxequal approxequal.glif aring aring.glif aring.alt01 aring.alt01.glif aringacute aringacute.glif aringacute.alt01 aringacute.alt01.glif arrowdown arrowdown.glif arrowdownclockhalf arrowdownclockhalf.glif arrowdowncounterclockhalf arrowdowncounterclockhalf.glif arrowdownleft arrowdownleft.glif arrowdownleftcorner arrowdownleftcorner.glif arrowdownright arrowdownright.glif arrowdownrightcorner arrowdownrightcorner.glif arrowhookleft arrowhookleft.glif arrowhookright arrowhookright.glif arrowleft arrowleft.glif arrowleftarrowright arrowleftarrowright.glif arrowleftdowncorner arrowleftdowncorner.glif arrowleftright arrowleftright.glif arrowleftupcorner arrowleftupcorner.glif arrowright arrowright.glif arrowrightarrowleft arrowrightarrowleft.glif arrowrightdowncorner arrowrightdowncorner.glif arrowrightupcorner arrowrightupcorner.glif arrowup arrowup.glif arrowupdown arrowupdown.glif arrowupleft arrowupleft.glif arrowupleftcorner arrowupleftcorner.glif arrowupleftcounterclock arrowupleftcounterclock.glif arrowupright arrowupright.glif arrowuprightclock arrowuprightclock.glif arrowuprightcorner arrowuprightcorner.glif asciicircum asciicircum.glif asciitilde asciitilde.glif asterisk asterisk.glif at at.glif atilde atilde.glif atilde.alt01 atilde.alt01.glif b b.glif backslash backslash.glif baht baht.glif bar bar.glif bitcoin bitcoin.glif braceleft braceleft.glif braceright braceright.glif bracketleft bracketleft.glif bracketright bracketright.glif breve breve.glif breve.case breve.case.glif breve.cyrl breve.cyrl.glif breve.cyrl_case breve.cyrl_case.glif breveacute breveacute.glif breveacute.case breveacute.case.glif brevecomb brevecomb.glif brevegrave brevegrave.glif brevegrave.case brevegrave.case.glif brevehook brevehook.glif brevehook.case brevehook.case.glif brevetilde brevetilde.glif brevetilde.case brevetilde.case.glif brokenbar brokenbar.glif bullet bullet.glif c c.glif cacute cacute.glif caron caron.glif caron.case caron.case.glif caroncomb caroncomb.glif caronslovak caronslovak.glif caronslovakcomb caronslovakcomb.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedi cedi.glif cedilla cedilla.glif cedillacomb cedillacomb.glif celogo celogo.glif cent cent.glif checkmark checkmark.glif circumflex circumflex.glif circumflex.case circumflex.case.glif circumflexacute circumflexacute.glif circumflexacute.case circumflexacute.case.glif circumflexbreve circumflexbreve.glif circumflexbreve.case circumflexbreve.case.glif circumflexcomb circumflexcomb.glif circumflexgrave circumflexgrave.glif circumflexgrave.case circumflexgrave.case.glif circumflexhook circumflexhook.glif circumflexhook.case circumflexhook.case.glif circumflextilde circumflextilde.glif circumflextilde.case circumflextilde.case.glif colon colon.glif coloncurrency coloncurrency.glif comma comma.glif commabelowcomb commabelowcomb.glif commaturnedtop commaturnedtop.glif commaturnedtopcomb commaturnedtopcomb.glif copyright copyright.glif crossmark crossmark.glif currency currency.glif d d.glif dagger dagger.glif daggerdbl daggerdbl.glif dcaron dcaron.glif dcroat dcroat.glif degree degree.glif dieresis dieresis.glif dieresis.case dieresis.case.glif dieresisacute dieresisacute.glif dieresisacute.case dieresisacute.case.glif dieresiscaron dieresiscaron.glif dieresiscaron.case dieresiscaron.case.glif dieresiscomb dieresiscomb.glif dieresisgrave dieresisgrave.glif dieresisgrave.case dieresisgrave.case.glif dieresismacron dieresismacron.glif dieresismacron.case dieresismacron.case.glif divide divide.glif dollar dollar.glif dong dong.glif dotaccent dotaccent.glif dotaccent.case dotaccent.case.glif dotaccentcomb dotaccentcomb.glif dotbelowcomb dotbelowcomb.glif dotlessi dotlessi.glif dotlessj dotlessj.glif e e.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif ecircumflexacute ecircumflexacute.glif ecircumflexdotbelow ecircumflexdotbelow.glif ecircumflexgrave ecircumflexgrave.glif ecircumflexhook ecircumflexhook.glif ecircumflextilde ecircumflextilde.glif edieresis edieresis.glif edotaccent edotaccent.glif edotbelow edotbelow.glif egrave egrave.glif ehook ehook.glif eight eight.glif eightinferior eightinferior.glif eightsuperior eightsuperior.glif ellipsis ellipsis.glif emacron emacron.glif emdash emdash.glif endash endash.glif eng eng.glif eogonek eogonek.glif equal equal.glif estimated estimated.glif eth eth.glif etilde etilde.glif exclam exclam.glif exclamdown exclamdown.glif f f.glif fcclogo fcclogo.glif fi fi.glif five five.glif fiveinferior fiveinferior.glif fivesuperior fivesuperior.glif fl fl.glif florin florin.glif four four.glif fourinferior fourinferior.glif foursuperior foursuperior.glif fraction fraction.glif g g.glif g.alt01 g.alt01.glif g.alt02 g.alt02.glif gbreve gbreve.glif gbreve.alt01 gbreve.alt01.glif gcircumflex gcircumflex.glif gcircumflex.alt01 gcircumflex.alt01.glif gcommaaccent gcommaaccent.glif gcommaaccent.alt01 gcommaaccent.alt01.glif gdotaccent gdotaccent.glif gdotaccent.alt01 gdotaccent.alt01.glif germandbls germandbls.glif germandbls.alt01 germandbls.alt01.glif grave grave.glif grave.case grave.case.glif gravecomb gravecomb.glif greater greater.glif greaterequal greaterequal.glif guarani guarani.glif guillemotleft guillemotleft.glif guillemotright guillemotright.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif hbar hbar.glif hcircumflex hcircumflex.glif hookcomb hookcomb.glif hookcomb.case hookcomb.case.glif horncomb horncomb.glif hryvnia hryvnia.glif hungarumlaut hungarumlaut.glif hungarumlaut.case hungarumlaut.case.glif hungarumlautcomb hungarumlautcomb.glif hyphen hyphen.glif i i.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif idotbelow idotbelow.glif igrave igrave.glif ihook ihook.glif ij ij.glif ijacute ijacute.glif imacron imacron.glif infinity infinity.glif integral integral.glif iogonek iogonek.glif itilde itilde.glif j j.glif jacute jacute.glif jcircumflex jcircumflex.glif k k.glif kcommaaccent kcommaaccent.glif kgreenlandic kgreenlandic.glif kip kip.glif l l.glif lacute lacute.glif lcaron lcaron.glif lcommaaccent lcommaaccent.glif ldot ldot.glif less less.glif lessequal lessequal.glif lira lira.glif liraturkish liraturkish.glif litre litre.glif logicalnot logicalnot.glif lozenge lozenge.glif lslash lslash.glif m m.glif macron macron.glif macron.case macron.case.glif macroncomb macroncomb.glif minus minus.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif naira naira.glif napostrophe napostrophe.glif nbspace nbspace.glif ncaron ncaron.glif ncommaaccent ncommaaccent.glif nine nine.glif nineinferior nineinferior.glif ninesuperior ninesuperior.glif notequal notequal.glif ntilde ntilde.glif numbersign numbersign.glif numerosign numerosign.glif o o.glif oacute oacute.glif obreve obreve.glif ocircumflex ocircumflex.glif ocircumflexacute ocircumflexacute.glif ocircumflexdotbelow ocircumflexdotbelow.glif ocircumflexgrave ocircumflexgrave.glif ocircumflexhook ocircumflexhook.glif ocircumflextilde ocircumflextilde.glif odieresis odieresis.glif odotbelow odotbelow.glif oe oe.glif ogonek ogonek.glif ogonekcomb ogonekcomb.glif ograve ograve.glif ohook ohook.glif ohorn ohorn.glif ohornacute ohornacute.glif ohorndotbelow ohorndotbelow.glif ohorngrave ohorngrave.glif ohornhook ohornhook.glif ohorntilde ohorntilde.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif one one.glif onehalf onehalf.glif oneinferior oneinferior.glif onequarter onequarter.glif onesuperior onesuperior.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif oslash oslash.glif oslashacute oslashacute.glif otilde otilde.glif p p.glif paragraph paragraph.glif parenleft parenleft.glif parenright parenright.glif partialdiff partialdiff.glif percent percent.glif period period.glif periodcentered periodcentered.glif perthousand perthousand.glif peso peso.glif pi pi.glif plus plus.glif plusminus plusminus.glif prime prime.glif primedbl primedbl.glif product product.glif q q.glif question question.glif questiondown questiondown.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif racute racute.glif radical radical.glif rcaron rcaron.glif rcommaaccent rcommaaccent.glif registered registered.glif ring ring.glif ring.case ring.case.glif ringacute ringacute.glif ringacute.case ringacute.case.glif ringcomb ringcomb.glif ruble ruble.glif rupee rupee.glif rupeeindian rupeeindian.glif s s.glif sacute sacute.glif scaron scaron.glif scedilla scedilla.glif schwa schwa.glif scircumflex scircumflex.glif scommaaccent scommaaccent.glif section section.glif semicolon semicolon.glif seven seven.glif seveninferior seveninferior.glif sevensuperior sevensuperior.glif sheqel sheqel.glif six six.glif sixinferior sixinferior.glif sixsuperior sixsuperior.glif slash slash.glif softhyphen softhyphen.glif space space.glif sterling sterling.glif summation summation.glif t t.glif tbar tbar.glif tcaron tcaron.glif tcedilla tcedilla.glif tcommaaccent tcommaaccent.glif tenge tenge.glif thorn thorn.glif three three.glif threeinferior threeinferior.glif threequarters threequarters.glif threesuperior threesuperior.glif tilde tilde.glif tilde.alt01 tilde.alt01.glif tilde.alt01.case tilde.alt01.case.glif tilde.case tilde.case.glif tildecomb tildecomb.glif trademark trademark.glif tugrik tugrik.glif two two.glif twoinferior twoinferior.glif twosuperior twosuperior.glif u u.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif udotbelow udotbelow.glif ugrave ugrave.glif uhook uhook.glif uhorn uhorn.glif uhornacute uhornacute.glif uhorndotbelow uhorndotbelow.glif uhorngrave uhorngrave.glif uhornhook uhornhook.glif uhorntilde uhorntilde.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif underscore underscore.glif uni0400 uni0400.glif uni0401 uni0401.glif uni0402 uni0402.glif uni0403 uni0403.glif uni0404 uni0404.glif uni0405 uni0405.glif uni0406 uni0406.glif uni0407 uni0407.glif uni0408 uni0408.glif uni0409 uni0409.glif uni040A uni040A_.glif uni040B uni040B_.glif uni040C uni040C_.glif uni040D uni040D_.glif uni040E uni040E_.glif uni040F uni040F_.glif uni0410 uni0410.glif uni0411 uni0411.glif uni0412 uni0412.glif uni0413 uni0413.glif uni0414 uni0414.glif uni0415 uni0415.glif uni0416 uni0416.glif uni0417 uni0417.glif uni0418 uni0418.glif uni0419 uni0419.glif uni041A uni041A_.glif uni041B uni041B_.glif uni041C uni041C_.glif uni041D uni041D_.glif uni041E uni041E_.glif uni041F uni041F_.glif uni0420 uni0420.glif uni0421 uni0421.glif uni0422 uni0422.glif uni0423 uni0423.glif uni0424 uni0424.glif uni0425 uni0425.glif uni0426 uni0426.glif uni0427 uni0427.glif uni0428 uni0428.glif uni0429 uni0429.glif uni042A uni042A_.glif uni042B uni042B_.glif uni042C uni042C_.glif uni042D uni042D_.glif uni042E uni042E_.glif uni042F uni042F_.glif uni0430 uni0430.glif uni0430.alt01 uni0430.alt01.glif uni0431 uni0431.glif uni0432 uni0432.glif uni0433 uni0433.glif uni0434 uni0434.glif uni0435 uni0435.glif uni0436 uni0436.glif uni0437 uni0437.glif uni0438 uni0438.glif uni0439 uni0439.glif uni043A uni043A_.glif uni043B uni043B_.glif uni043C uni043C_.glif uni043D uni043D_.glif uni043E uni043E_.glif uni043F uni043F_.glif uni0440 uni0440.glif uni0441 uni0441.glif uni0442 uni0442.glif uni0443 uni0443.glif uni0444 uni0444.glif uni0445 uni0445.glif uni0446 uni0446.glif uni0447 uni0447.glif uni0448 uni0448.glif uni0449 uni0449.glif uni044A uni044A_.glif uni044B uni044B_.glif uni044C uni044C_.glif uni044D uni044D_.glif uni044E uni044E_.glif uni044F uni044F_.glif uni0450 uni0450.glif uni0451 uni0451.glif uni0452 uni0452.glif uni0453 uni0453.glif uni0454 uni0454.glif uni0455 uni0455.glif uni0456 uni0456.glif uni0457 uni0457.glif uni0458 uni0458.glif uni0459 uni0459.glif uni045A uni045A_.glif uni045B uni045B_.glif uni045C uni045C_.glif uni045D uni045D_.glif uni045E uni045E_.glif uni045F uni045F_.glif uni0472 uni0472.glif uni0473 uni0473.glif uni0490 uni0490.glif uni0491 uni0491.glif uni0492 uni0492.glif uni0493 uni0493.glif uni0494 uni0494.glif uni0495 uni0495.glif uni0496 uni0496.glif uni0497 uni0497.glif uni0498 uni0498.glif uni0499 uni0499.glif uni049A uni049A_.glif uni049B uni049B_.glif uni049C uni049C_.glif uni049D uni049D_.glif uni04A0 uni04A_0.glif uni04A1 uni04A_1.glif uni04A2 uni04A_2.glif uni04A3 uni04A_3.glif uni04A4 uni04A_4.glif uni04A5 uni04A_5.glif uni04AA uni04A_A_.glif uni04AB uni04A_B_.glif uni04AE uni04A_E_.glif uni04AF uni04A_F_.glif uni04B0 uni04B_0.glif uni04B1 uni04B_1.glif uni04B2 uni04B_2.glif uni04B3 uni04B_3.glif uni04B6 uni04B_6.glif uni04B7 uni04B_7.glif uni04B8 uni04B_8.glif uni04B9 uni04B_9.glif uni04BA uni04B_A_.glif uni04BB uni04B_B_.glif uni04C0 uni04C_0.glif uni04C1 uni04C_1.glif uni04C2 uni04C_2.glif uni04CF uni04C_F_.glif uni04D0 uni04D_0.glif uni04D1 uni04D_1.glif uni04D1.alt01 uni04D_1.alt01.glif uni04D2 uni04D_2.glif uni04D3 uni04D_3.glif uni04D3.alt01 uni04D_3.alt01.glif uni04D4 uni04D_4.glif uni04D5 uni04D_5.glif uni04D6 uni04D_6.glif uni04D7 uni04D_7.glif uni04D8 uni04D_8.glif uni04D9 uni04D_9.glif uni04DC uni04D_C_.glif uni04DD uni04D_D_.glif uni04DE uni04D_E_.glif uni04DF uni04D_F_.glif uni04E2 uni04E_2.glif uni04E3 uni04E_3.glif uni04E4 uni04E_4.glif uni04E5 uni04E_5.glif uni04E6 uni04E_6.glif uni04E7 uni04E_7.glif uni04E8 uni04E_8.glif uni04E9 uni04E_9.glif uni04EE uni04E_E_.glif uni04EF uni04E_F_.glif uni04F0 uni04F_0.glif uni04F1 uni04F_1.glif uni04F2 uni04F_2.glif uni04F3 uni04F_3.glif uni04F4 uni04F_4.glif uni04F5 uni04F_5.glif uni04F8 uni04F_8.glif uni04F9 uni04F_9.glif uni2150 uni2150.glif uni2151 uni2151.glif uni2153 uni2153.glif uni2154 uni2154.glif uni2155 uni2155.glif uni2156 uni2156.glif uni2157 uni2157.glif uni2158 uni2158.glif uni2159 uni2159.glif uni215A uni215A_.glif uni215B uni215B_.glif uni215C uni215C_.glif uni215D uni215D_.glif uni215E uni215E_.glif uogonek uogonek.glif uring uring.glif utilde utilde.glif v v.glif w w.glif wacute wacute.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif won won.glif x x.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif ydotbelow ydotbelow.glif yen yen.glif ygrave ygrave.glif yhook yhook.glif ytilde ytilde.glif z z.glif zacute zacute.glif zcaron zcaron.glif zdotaccent zdotaccent.glif zero zero.glif zero.alt01 zero.alt01.glif zero.alt02 zero.alt02.glif zeroinferior zeroinferior.glif zerosuperior zerosuperior.glif extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/copyright.glif000066400000000000000000000052501416264461600327720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/crossmark.glif000066400000000000000000000020231416264461600327610ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/currency.glif000066400000000000000000000042451416264461600326170ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/d.glif000066400000000000000000000032661416264461600312120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dagger.glif000066400000000000000000000025531416264461600322160ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/daggerdbl.glif000066400000000000000000000043031416264461600326730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dcaron.glif000066400000000000000000000036041416264461600322310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dcroat.glif000066400000000000000000000036751416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/degree.glif000066400000000000000000000022121416264461600322100ustar00rootroot00000000000000 dieresis.case.glif000066400000000000000000000025341416264461600334260ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dieresis.glif000066400000000000000000000025571416264461600326000ustar00rootroot00000000000000 dieresisacute.case.glif000066400000000000000000000030161416264461600344440ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dieresisacute.glif000066400000000000000000000030071416264461600335320ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dieresiscaron.case.glif000066400000000000000000000032231416264461600344450ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dieresiscaron.glif000066400000000000000000000032121416264461600335310ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dieresiscomb.glif000066400000000000000000000025301416264461600333510ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dieresisgrave.case.glif000066400000000000000000000030201416264461600344420ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dieresisgrave.glif000066400000000000000000000030111416264461600335300ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dieresismacron.case.glif000066400000000000000000000030221416264461600346170ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dieresismacron.glif000066400000000000000000000030151416264461600337070ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/divide.glif000066400000000000000000000030571416264461600322310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dollar.glif000066400000000000000000000053271416264461600322440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dong.glif000066400000000000000000000042071416264461600317120ustar00rootroot00000000000000 dotaccent.case.glif000066400000000000000000000013641416264461600335630ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dotaccent.glif000066400000000000000000000014071416264461600327260ustar00rootroot00000000000000 dotaccentcomb.glif000066400000000000000000000013501416264461600335050ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs dotbelowcomb.glif000066400000000000000000000013601416264461600333610ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dotlessi.glif000066400000000000000000000011341416264461600326050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/dotlessj.glif000066400000000000000000000023761416264461600326170ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/e.glif000066400000000000000000000026711416264461600312120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eacute.glif000066400000000000000000000032071416264461600322300ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ebreve.glif000066400000000000000000000041431416264461600322320ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ecaron.glif000066400000000000000000000034101416264461600322250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ecircumflex.glif000066400000000000000000000034151416264461600332710ustar00rootroot00000000000000 ecircumflexacute.glif000066400000000000000000000037331416264461600342370ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ecircumflexdotbelow.glif000066400000000000000000000046071416264461600347560ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ecircumflexgrave.glif000066400000000000000000000037311416264461600342400ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ecircumflexhook.glif000066400000000000000000000044531416264461600340760ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ecircumflextilde.glif000066400000000000000000000054431416264461600342370ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/edieresis.glif000066400000000000000000000052231416264461600327360ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/edotaccent.glif000066400000000000000000000040531416264461600330730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/edotbelow.glif000066400000000000000000000040631416264461600327470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/egrave.glif000066400000000000000000000032071416264461600322330ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ehook.glif000066400000000000000000000037271416264461600320760ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eight.glif000066400000000000000000000045601416264461600320650ustar00rootroot00000000000000 eightinferior.glif000066400000000000000000000045601416264461600335440ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs eightsuperior.glif000066400000000000000000000045741416264461600336040ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ellipsis.glif000066400000000000000000000036721416264461600326140ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/emacron.glif000066400000000000000000000032101416264461600324000ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/emdash.glif000066400000000000000000000005421416264461600322220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/endash.glif000066400000000000000000000005421416264461600322230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eng.glif000066400000000000000000000041511416264461600315320ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eogonek.glif000066400000000000000000000045041416264461600324120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/equal.glif000066400000000000000000000010501416264461600320630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/estimated.glif000066400000000000000000000025421416264461600327420ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/eth.glif000066400000000000000000000037601416264461600315460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/etilde.glif000066400000000000000000000047171416264461600322370ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/exclam.glif000066400000000000000000000020231416264461600322260ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/exclamdown.glif000066400000000000000000000020371416264461600331230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/f.glif000066400000000000000000000032301416264461600312030ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/fcclogo.glif000066400000000000000000000050551416264461600324010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/fi.glif000066400000000000000000000036761416264461600313720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/five.glif000066400000000000000000000034711416264461600317160ustar00rootroot00000000000000 fiveinferior.glif000066400000000000000000000034661416264461600334010ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs fivesuperior.glif000066400000000000000000000035101416264461600334220ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/fl.glif000066400000000000000000000031311416264461600313570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/florin.glif000066400000000000000000000044611416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/four.glif000066400000000000000000000015221416264461600317330ustar00rootroot00000000000000 fourinferior.glif000066400000000000000000000015251416264461600334150ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs foursuperior.glif000066400000000000000000000015351416264461600334510ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/fraction.glif000066400000000000000000000005441416264461600325700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/g.alt01.glif000066400000000000000000000045011416264461600321260ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/g.alt02.glif000066400000000000000000000064111416264461600321310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/g.glif000066400000000000000000000071511416264461600312120ustar00rootroot00000000000000 gbreve.alt01.glif000066400000000000000000000057531416264461600331050ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/gbreve.glif000066400000000000000000000077051416264461600322430ustar00rootroot00000000000000 gcircumflex.alt01.glif000066400000000000000000000052251416264461600341350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/gcircumflex.glif000066400000000000000000000071571416264461600333020ustar00rootroot00000000000000 gcommaaccent.alt01.glif000066400000000000000000000060751416264461600342520ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs gcommaaccent.glif000066400000000000000000000100271416264461600333220ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs gdotaccent.alt01.glif000066400000000000000000000056631416264461600337460ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/gdotaccent.glif000066400000000000000000000076151416264461600331040ustar00rootroot00000000000000 germandbls.alt01.glif000066400000000000000000000053171416264461600337450ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/germandbls.glif000066400000000000000000000054701416264461600331040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/grave.case.glif000066400000000000000000000005201416264461600327730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/grave.glif000066400000000000000000000005431416264461600320660ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/gravecomb.glif000066400000000000000000000005141416264461600327250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/greater.glif000066400000000000000000000010141416264461600324050ustar00rootroot00000000000000 greaterequal.glif000066400000000000000000000013231416264461600333610ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/guarani.glif000066400000000000000000000050201416264461600324030ustar00rootroot00000000000000 guillemotleft.glif000066400000000000000000000014621416264461600335600ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs guillemotright.glif000066400000000000000000000014611416264461600337420ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs guilsinglleft.glif000066400000000000000000000007511416264461600335540ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs guilsinglright.glif000066400000000000000000000007501416264461600337360ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/h.glif000066400000000000000000000026711416264461600312150ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hbar.glif000066400000000000000000000032761416264461600317040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hcircumflex.glif000066400000000000000000000034131416264461600332720ustar00rootroot00000000000000 hookcomb.case.glif000066400000000000000000000012021416264461600334070ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hookcomb.glif000066400000000000000000000012251416264461600325610ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/horncomb.glif000066400000000000000000000010401416264461600325620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hryvnia.glif000066400000000000000000000056041416264461600324450ustar00rootroot00000000000000 hungarumlaut.case.glif000066400000000000000000000010401416264461600343220ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs hungarumlaut.glif000066400000000000000000000010631416264461600334150ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs hungarumlautcomb.glif000066400000000000000000000010341416264461600342540ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/hyphen.glif000066400000000000000000000005421416264461600322540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/i.glif000066400000000000000000000022761416264461600312170ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/iacute.glif000066400000000000000000000014431416264461600322340ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ibreve.glif000066400000000000000000000023711416264461600322370ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/icircumflex.glif000066400000000000000000000016471416264461600333020ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/idieresis.glif000066400000000000000000000034471416264461600327500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/idotbelow.glif000066400000000000000000000034701416264461600327540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/igrave.glif000066400000000000000000000014421416264461600322360ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ihook.glif000066400000000000000000000021611416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ij.glif000066400000000000000000000056311416264461600313670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ijacute.glif000066400000000000000000000041061416264461600324050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/imacron.glif000066400000000000000000000014421416264461600324110ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/infinity.glif000066400000000000000000000043611416264461600326150ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/integral.glif000066400000000000000000000037571416264461600326010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/iogonek.glif000066400000000000000000000037251416264461600324220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/itilde.glif000066400000000000000000000031431416264461600322330ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/j.glif000066400000000000000000000035401416264461600312130ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/jacute.glif000066400000000000000000000026551416264461600322430ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/jcircumflex.glif000066400000000000000000000031101416264461600332660ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/k.glif000066400000000000000000000025231416264461600312140ustar00rootroot00000000000000 kcommaaccent.glif000066400000000000000000000041341416264461600333300ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs kgreenlandic.glif000066400000000000000000000025361416264461600333350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/kip.glif000066400000000000000000000034011416264461600315410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/l.glif000066400000000000000000000011251416264461600312120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lacute.glif000066400000000000000000000014431416264461600322370ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lcaron.glif000066400000000000000000000014431416264461600322400ustar00rootroot00000000000000 lcommaaccent.glif000066400000000000000000000025321416264461600333310ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ldot.glif000066400000000000000000000023011416264461600317160ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/less.glif000066400000000000000000000010131416264461600317210ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lessequal.glif000066400000000000000000000013221416264461600327540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lira.glif000066400000000000000000000047651416264461600317230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/liraturkish.glif000066400000000000000000000040501416264461600333200ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/litre.glif000066400000000000000000000035741416264461600321100ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/logicalnot.glif000066400000000000000000000006721416264461600331200ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lozenge.glif000066400000000000000000000013231416264461600324220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/lslash.glif000066400000000000000000000016601416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/m.glif000066400000000000000000000043451416264461600312220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/macron.case.glif000066400000000000000000000005211416264461600331470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/macron.glif000066400000000000000000000005441416264461600322420ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/macroncomb.glif000066400000000000000000000005211416264461600330760ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/minus.glif000066400000000000000000000005411416264461600321130ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/mu.glif000066400000000000000000000026611416264461600314060ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/multiply.glif000066400000000000000000000012721416264461600326410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/n.glif000066400000000000000000000026711416264461600312230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/nacute.glif000066400000000000000000000032071416264461600322410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/naira.glif000066400000000000000000000042271416264461600320570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/napostrophe.glif000066400000000000000000000043501416264461600333240ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/nbspace.glif000066400000000000000000000002341416264461600323720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ncaron.glif000066400000000000000000000034101416264461600322360ustar00rootroot00000000000000 ncommaaccent.glif000066400000000000000000000043021416264461600333300ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/nine.glif000066400000000000000000000030371416264461600317140ustar00rootroot00000000000000 nineinferior.glif000066400000000000000000000030411416264461600333660ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ninesuperior.glif000066400000000000000000000030471416264461600334270ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/notequal.glif000066400000000000000000000020201416264461600326020ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ntilde.glif000066400000000000000000000047171416264461600322500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/numbersign.glif000066400000000000000000000030551416264461600331340ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/numerosign.glif000066400000000000000000000046251416264461600331550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/o.glif000066400000000000000000000023601416264461600312170ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oacute.glif000066400000000000000000000026761416264461600322530ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/obreve.glif000066400000000000000000000036321416264461600322460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ocircumflex.glif000066400000000000000000000031041416264461600332760ustar00rootroot00000000000000 ocircumflexacute.glif000066400000000000000000000034221416264461600342440ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ocircumflexdotbelow.glif000066400000000000000000000042761416264461600347720ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ocircumflexgrave.glif000066400000000000000000000034211416264461600342460ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ocircumflexhook.glif000066400000000000000000000041421416264461600341030ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs ocircumflextilde.glif000066400000000000000000000051321416264461600342440ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/odieresis.glif000066400000000000000000000047121416264461600327520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/odotbelow.glif000066400000000000000000000035521416264461600327630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oe.glif000066400000000000000000000050641416264461600313700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ogonek.glif000066400000000000000000000020341416264461600322410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ogonekcomb.glif000066400000000000000000000020031416264461600330760ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ograve.glif000066400000000000000000000026761416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohook.glif000066400000000000000000000034161416264461600321030ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohorn.glif000066400000000000000000000032711416264461600321100ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohornacute.glif000066400000000000000000000036071416264461600331350ustar00rootroot00000000000000 ohorndotbelow.glif000066400000000000000000000044631416264461600335750ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohorngrave.glif000066400000000000000000000036071416264461600331400ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohornhook.glif000066400000000000000000000043271416264461600327740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ohorntilde.glif000066400000000000000000000053171416264461600331350ustar00rootroot00000000000000 ohungarumlaut.glif000066400000000000000000000032161416264461600335760ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/omacron.glif000066400000000000000000000026771416264461600324320ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/one.glif000066400000000000000000000012021416264461600315340ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/onehalf.glif000066400000000000000000000045751416264461600324070ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oneinferior.glif000066400000000000000000000012121416264461600332730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/onequarter.glif000066400000000000000000000030151416264461600331440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/onesuperior.glif000066400000000000000000000012221416264461600333270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ordfeminine.glif000066400000000000000000000046751416264461600332730ustar00rootroot00000000000000 ordmasculine.glif000066400000000000000000000024001416264461600333620ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oslash.glif000066400000000000000000000040111416264461600322450ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/oslashacute.glif000066400000000000000000000043271416264461600333010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/otilde.glif000066400000000000000000000044061416264461600322440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/p.glif000066400000000000000000000034241416264461600312220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/paragraph.glif000066400000000000000000000032611416264461600327270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/parenleft.glif000066400000000000000000000014111416264461600327350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/parenright.glif000066400000000000000000000014111416264461600331200ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/partialdiff.glif000066400000000000000000000030421416264461600332440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/percent.glif000066400000000000000000000050331416264461600324210ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/period.glif000066400000000000000000000013661416264461600322500ustar00rootroot00000000000000 periodcentered.glif000066400000000000000000000014101416264461600336710ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/perthousand.glif000066400000000000000000000072141416264461600333200ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/peso.glif000066400000000000000000000046331416264461600317340ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/pi.glif000066400000000000000000000017041416264461600313720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/plus.glif000066400000000000000000000012661416264461600317500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/plusminus.glif000066400000000000000000000015761416264461600330300ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/prime.glif000066400000000000000000000005411416264461600320740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/primedbl.glif000066400000000000000000000010551416264461600325570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/product.glif000066400000000000000000000020351416264461600324400ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/q.glif000066400000000000000000000032771416264461600312310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/question.glif000066400000000000000000000040201416264461600326230ustar00rootroot00000000000000 questiondown.glif000066400000000000000000000040371416264461600334440ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/quotedbl.glif000066400000000000000000000013311416264461600325750ustar00rootroot00000000000000 quotedblbase.glif000066400000000000000000000033261416264461600333570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs quotedblleft.glif000066400000000000000000000033561416264461600334020ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs quotedblright.glif000066400000000000000000000033541416264461600335630ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/quoteleft.glif000066400000000000000000000017021416264461600327700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/quoteright.glif000066400000000000000000000017001416264461600331510ustar00rootroot00000000000000 quotesinglbase.glif000066400000000000000000000016711416264461600337330ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/quotesingle.glif000066400000000000000000000006751416264461600333270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/r.glif000066400000000000000000000030121416264461600312150ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/racute.glif000066400000000000000000000033301416264461600322420ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/radical.glif000066400000000000000000000012651416264461600323630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/rcaron.glif000066400000000000000000000035311416264461600322460ustar00rootroot00000000000000 rcommaaccent.glif000066400000000000000000000044231416264461600333400ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/registered.glif000066400000000000000000000056011416264461600331170ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ring.case.glif000066400000000000000000000023501416264461600326310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ring.glif000066400000000000000000000023731416264461600317240ustar00rootroot00000000000000 ringacute.case.glif000066400000000000000000000026711416264461600336020ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ringacute.glif000066400000000000000000000026611416264461600327460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ringcomb.glif000066400000000000000000000023311416264461600325570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ruble.glif000066400000000000000000000035201416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/rupee.glif000066400000000000000000000064461416264461600321120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/rupeeindian.glif000066400000000000000000000033211416264461600332620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/s.glif000066400000000000000000000042511416264461600312240ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sacute.glif000066400000000000000000000045671416264461600322600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/scaron.glif000066400000000000000000000047671416264461600322630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/scedilla.glif000066400000000000000000000062731416264461600325500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/schwa.glif000066400000000000000000000026731416264461600320750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/scircumflex.glif000066400000000000000000000047741416264461600333200ustar00rootroot00000000000000 scommaaccent.glif000066400000000000000000000056621416264461600333470ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/section.glif000066400000000000000000000074241416264461600324330ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/semicolon.glif000066400000000000000000000030411416264461600327460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/seven.glif000066400000000000000000000010641416264461600321010ustar00rootroot00000000000000 seveninferior.glif000066400000000000000000000010711416264461600335560ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs sevensuperior.glif000066400000000000000000000010751416264461600336150ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sheqel.glif000066400000000000000000000026051416264461600322440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/six.glif000066400000000000000000000030341416264461600315630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sixinferior.glif000066400000000000000000000030361416264461600333230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sixsuperior.glif000066400000000000000000000030501416264461600333520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/slash.glif000066400000000000000000000005421416264461600320730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/softhyphen.glif000066400000000000000000000005461416264461600331540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/space.glif000066400000000000000000000002321416264461600320500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/sterling.glif000066400000000000000000000043341416264461600326130ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/summation.glif000066400000000000000000000016761416264461600330060ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/t.glif000066400000000000000000000021071416264461600312230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tbar.glif000066400000000000000000000026401416264461600317120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tcaron.glif000066400000000000000000000024251416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tcedilla.glif000066400000000000000000000035141416264461600325440ustar00rootroot00000000000000 tcommaaccent.glif000066400000000000000000000035201416264461600333370ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tenge.glif000066400000000000000000000020441416264461600320620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/thorn.glif000066400000000000000000000034261416264461600321170ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/three.glif000066400000000000000000000051331416264461600320710ustar00rootroot00000000000000 threeinferior.glif000066400000000000000000000051231416264461600335470ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs threequarters.glif000066400000000000000000000067421416264461600336100ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs threesuperior.glif000066400000000000000000000051461416264461600336070ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs tilde.alt01.case.glif000066400000000000000000000022361416264461600336370ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tilde.alt01.glif000066400000000000000000000022311416264461600327770ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tilde.case.glif000066400000000000000000000022301416264461600327700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tilde.glif000066400000000000000000000022531416264461600320630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tildecomb.glif000066400000000000000000000022251416264461600327230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/trademark.glif000066400000000000000000000042141416264461600327330ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/tugrik.glif000066400000000000000000000030161416264461600322650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/two.glif000066400000000000000000000032741416264461600315770ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/twoinferior.glif000066400000000000000000000033001416264461600333230ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/twosuperior.glif000066400000000000000000000033101416264461600333570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/u.glif000066400000000000000000000024201416264461600312220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uacute.glif000066400000000000000000000027361416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ubreve.glif000066400000000000000000000036721416264461600322600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ucircumflex.glif000066400000000000000000000031441416264461600333100ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/udieresis.glif000066400000000000000000000047521416264461600327640ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/udotbelow.glif000066400000000000000000000036121416264461600327660ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ugrave.glif000066400000000000000000000027361416264461600322610ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhook.glif000066400000000000000000000034561416264461600321150ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhorn.glif000066400000000000000000000031041416264461600321110ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhornacute.glif000066400000000000000000000034221416264461600331360ustar00rootroot00000000000000 uhorndotbelow.glif000066400000000000000000000042761416264461600336050ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhorngrave.glif000066400000000000000000000034221416264461600331410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhornhook.glif000066400000000000000000000041421416264461600327750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uhorntilde.glif000066400000000000000000000051321416264461600331360ustar00rootroot00000000000000 uhungarumlaut.glif000066400000000000000000000032561416264461600336100ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/umacron.glif000066400000000000000000000027371416264461600324350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/underscore.glif000066400000000000000000000005501416264461600331310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0400.glif000066400000000000000000000025761416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0401.glif000066400000000000000000000046071416264461600320670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0402.glif000066400000000000000000000035461416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0403.glif000066400000000000000000000017201416264461600320620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0404.glif000066400000000000000000000037171416264461600320730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0405.glif000066400000000000000000000042571416264461600320740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0406.glif000066400000000000000000000012611416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0407.glif000066400000000000000000000035731416264461600320760ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0408.glif000066400000000000000000000024771416264461600321010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0409.glif000066400000000000000000000050231416264461600320700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni040A_.glif000066400000000000000000000037671416264461600322540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni040B_.glif000066400000000000000000000032661416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni040C_.glif000066400000000000000000000040271416264461600322440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni040D_.glif000066400000000000000000000033151416264461600322440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni040E_.glif000066400000000000000000000060271416264461600322500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni040F_.glif000066400000000000000000000022611416264461600322450ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0410.glif000066400000000000000000000020371416264461600320620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0411.glif000066400000000000000000000026431416264461600320660ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0412.glif000066400000000000000000000035771416264461600320760ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0413.glif000066400000000000000000000014071416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0414.glif000066400000000000000000000024231416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0415.glif000066400000000000000000000022651416264461600320720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0416.glif000066400000000000000000000057501416264461600320750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0417.glif000066400000000000000000000047361416264461600321010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0418.glif000066400000000000000000000030041416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0419.glif000066400000000000000000000054031416264461600320730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni041A_.glif000066400000000000000000000035161416264461600322450ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni041B_.glif000066400000000000000000000035661416264461600322530ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni041C_.glif000066400000000000000000000026041416264461600322440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni041D_.glif000066400000000000000000000025311416264461600322440ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni041E_.glif000066400000000000000000000023701416264461600322460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni041F_.glif000066400000000000000000000020011416264461600322360ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0420.glif000066400000000000000000000025221416264461600320620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0421.glif000066400000000000000000000027021416264461600320630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0422.glif000066400000000000000000000015371416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0423.glif000066400000000000000000000034301416264461600320640ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0424.glif000066400000000000000000000045201416264461600320660ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0425.glif000066400000000000000000000026551416264461600320760ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0426.glif000066400000000000000000000021371416264461600320720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0427.glif000066400000000000000000000030221416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0428.glif000066400000000000000000000025361416264461600320770ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0429.glif000066400000000000000000000026661416264461600321040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni042A_.glif000066400000000000000000000026461416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni042B_.glif000066400000000000000000000035471416264461600322530ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni042C_.glif000066400000000000000000000025161416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni042D_.glif000066400000000000000000000037141416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni042E_.glif000066400000000000000000000035471416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni042F_.glif000066400000000000000000000032661416264461600322550ustar00rootroot00000000000000 uni0430.alt01.glif000066400000000000000000000034231416264461600327250ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0430.glif000066400000000000000000000046521416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0431.glif000066400000000000000000000044071416264461600320700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0432.glif000066400000000000000000000035761416264461600320770ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0433.glif000066400000000000000000000014071416264461600320670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0434.glif000066400000000000000000000024251416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0435.glif000066400000000000000000000026771416264461600321030ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0436.glif000066400000000000000000000057461416264461600321040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0437.glif000066400000000000000000000047351416264461600321020ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0438.glif000066400000000000000000000030041416264461600320670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0439.glif000066400000000000000000000054031416264461600320750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni043A_.glif000066400000000000000000000035161416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni043B_.glif000066400000000000000000000035601416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni043C_.glif000066400000000000000000000026031416264461600322450ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni043D_.glif000066400000000000000000000025311416264461600322460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni043E_.glif000066400000000000000000000023661416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni043F_.glif000066400000000000000000000020011416264461600322400ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0440.glif000066400000000000000000000034321416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0441.glif000066400000000000000000000031011416264461600320570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0442.glif000066400000000000000000000015351416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0443.glif000066400000000000000000000033301416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0444.glif000066400000000000000000000057121416264461600320740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0445.glif000066400000000000000000000026551416264461600321000ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0446.glif000066400000000000000000000021371416264461600320740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0447.glif000066400000000000000000000030371416264461600320750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0448.glif000066400000000000000000000025351416264461600321000ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0449.glif000066400000000000000000000026651416264461600321050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni044A_.glif000066400000000000000000000026451416264461600322520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni044B_.glif000066400000000000000000000035461416264461600322540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni044C_.glif000066400000000000000000000025151416264461600322500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni044D_.glif000066400000000000000000000037121416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni044E_.glif000066400000000000000000000035431416264461600322540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni044F_.glif000066400000000000000000000032661416264461600322570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0450.glif000066400000000000000000000032101416264461600320600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0451.glif000066400000000000000000000052211416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0452.glif000066400000000000000000000045571416264461600321010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0453.glif000066400000000000000000000017201416264461600320670ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0454.glif000066400000000000000000000037151416264461600320760ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0455.glif000066400000000000000000000042571416264461600321010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0456.glif000066400000000000000000000023041416264461600320710ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0457.glif000066400000000000000000000034451416264461600321010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0458.glif000066400000000000000000000035461416264461600321040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0459.glif000066400000000000000000000050141416264461600320750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni045A_.glif000066400000000000000000000037651416264461600322570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni045B_.glif000066400000000000000000000033011416264461600322420ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni045C_.glif000066400000000000000000000040271416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni045D_.glif000066400000000000000000000033151416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni045E_.glif000066400000000000000000000057271416264461600322630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni045F_.glif000066400000000000000000000022611416264461600322520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0472.glif000066400000000000000000000027011416264461600320700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0473.glif000066400000000000000000000026771416264461600321050ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0490.glif000066400000000000000000000014071416264461600320720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0491.glif000066400000000000000000000014071416264461600320730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0492.glif000066400000000000000000000021351416264461600320730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0493.glif000066400000000000000000000021351416264461600320740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0494.glif000066400000000000000000000034161416264461600321000ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0495.glif000066400000000000000000000034371416264461600321040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0496.glif000066400000000000000000000061021416264461600320750ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0497.glif000066400000000000000000000060761416264461600321100ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0498.glif000066400000000000000000000051171416264461600321040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni0499.glif000066400000000000000000000051161416264461600321040ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni049A_.glif000066400000000000000000000036461416264461600322610ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni049B_.glif000066400000000000000000000036461416264461600322620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni049C_.glif000066400000000000000000000042461416264461600322600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni049D_.glif000066400000000000000000000042461416264461600322610ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_0.glif000066400000000000000000000036461416264461600322500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_1.glif000066400000000000000000000036461416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_2.glif000066400000000000000000000026611416264461600322460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_3.glif000066400000000000000000000026611416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_4.glif000066400000000000000000000026571416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_5.glif000066400000000000000000000026571416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_A_.glif000066400000000000000000000030641416264461600324220ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_B_.glif000066400000000000000000000032631416264461600324240ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_E_.glif000066400000000000000000000021401416264461600324200ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04A_F_.glif000066400000000000000000000021461416264461600324270ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_0.glif000066400000000000000000000025421416264461600322430ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_1.glif000066400000000000000000000025441416264461600322460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_2.glif000066400000000000000000000030051416264461600322400ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_3.glif000066400000000000000000000030051416264461600322410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_6.glif000066400000000000000000000031521416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_7.glif000066400000000000000000000031671416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_8.glif000066400000000000000000000033721416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_9.glif000066400000000000000000000034751416264461600322620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_A_.glif000066400000000000000000000030101416264461600324120ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04B_B_.glif000066400000000000000000000026771416264461600324350ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04C_0.glif000066400000000000000000000012611416264461600322410ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04C_1.glif000066400000000000000000000103471416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04C_2.glif000066400000000000000000000103451416264461600322460ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04C_F_.glif000066400000000000000000000012611416264461600324260ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_0.glif000066400000000000000000000044361416264461600322510ustar00rootroot00000000000000 uni04D_1.alt01.glif000066400000000000000000000060221416264461600331040ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_1.glif000066400000000000000000000072461416264461600322540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_2.glif000066400000000000000000000043611416264461600322500ustar00rootroot00000000000000 uni04D_3.alt01.glif000066400000000000000000000057451416264461600331210ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_3.glif000066400000000000000000000071741416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_4.glif000066400000000000000000000033171416264461600322520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_5.glif000066400000000000000000000064631416264461600322600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_6.glif000066400000000000000000000046641416264461600322620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_7.glif000066400000000000000000000052761416264461600322630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_8.glif000066400000000000000000000027001416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_9.glif000066400000000000000000000026751416264461600322650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_C_.glif000066400000000000000000000102721416264461600324260ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_D_.glif000066400000000000000000000102701416264461600324250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_E_.glif000066400000000000000000000072601416264461600324330ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04D_F_.glif000066400000000000000000000072571416264461600324420ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_2.glif000066400000000000000000000033151416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_3.glif000066400000000000000000000033151416264461600322500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_4.glif000066400000000000000000000053261416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_5.glif000066400000000000000000000053261416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_6.glif000066400000000000000000000047121416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_7.glif000066400000000000000000000047101416264461600322540ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_8.glif000066400000000000000000000027011416264461600322530ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_9.glif000066400000000000000000000026771416264461600322700ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_E_.glif000066400000000000000000000037411416264461600324340ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04E_F_.glif000066400000000000000000000036411416264461600324340ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04F_0.glif000066400000000000000000000057521416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04F_1.glif000066400000000000000000000056521416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04F_2.glif000066400000000000000000000042521416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04F_3.glif000066400000000000000000000041521416264461600322510ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04F_4.glif000066400000000000000000000053441416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04F_5.glif000066400000000000000000000053611416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04F_8.glif000066400000000000000000000060711416264461600322600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni04F_9.glif000066400000000000000000000060701416264461600322600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2150.glif000066400000000000000000000023571416264461600320720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2151.glif000066400000000000000000000043311416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2153.glif000066400000000000000000000064231416264461600320730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2154.glif000066400000000000000000000105111416264461600320650ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2155.glif000066400000000000000000000047611416264461600321000ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2156.glif000066400000000000000000000070471416264461600321010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2157.glif000066400000000000000000000107031416264461600320730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2158.glif000066400000000000000000000052731416264461600321020ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni2159.glif000066400000000000000000000043251416264461600321000ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni215A_.glif000066400000000000000000000066121416264461600322500ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni215B_.glif000066400000000000000000000060521416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni215C_.glif000066400000000000000000000117741416264461600322570ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni215D_.glif000066400000000000000000000103371416264461600322520ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uni215E_.glif000066400000000000000000000057231416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uogonek.glif000066400000000000000000000040471416264461600324340ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/uring.glif000066400000000000000000000045661416264461600321170ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/utilde.glif000066400000000000000000000044461416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/v.glif000066400000000000000000000015301416264461600312240ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/w.glif000066400000000000000000000022541416264461600312310ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/wacute.glif000066400000000000000000000025721416264461600322560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/wcircumflex.glif000066400000000000000000000030001416264461600333010ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/wdieresis.glif000066400000000000000000000046061416264461600327640ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/wgrave.glif000066400000000000000000000025721416264461600322610ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/won.glif000066400000000000000000000046711416264461600315730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/x.glif000066400000000000000000000026471416264461600312400ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/y.glif000066400000000000000000000033221416264461600312300ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yacute.glif000066400000000000000000000036401416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ycircumflex.glif000066400000000000000000000040461416264461600333160ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ydieresis.glif000066400000000000000000000056541416264461600327720ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ydotbelow.glif000066400000000000000000000045141416264461600327740ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yen.glif000066400000000000000000000032661416264461600315620ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ygrave.glif000066400000000000000000000036401416264461600322600ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/yhook.glif000066400000000000000000000043601416264461600321140ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/ytilde.glif000066400000000000000000000053501416264461600322550ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/z.glif000066400000000000000000000014021416264461600312260ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zacute.glif000066400000000000000000000017201416264461600322530ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zcaron.glif000066400000000000000000000021201416264461600322470ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zdotaccent.glif000066400000000000000000000025641416264461600331250ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zero.alt01.glif000066400000000000000000000030511416264461600326560ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zero.alt02.glif000066400000000000000000000035141416264461600326630ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs/zero.glif000066400000000000000000000023651416264461600317450ustar00rootroot00000000000000 zeroinferior.glif000066400000000000000000000023641416264461600334230ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs zerosuperior.glif000066400000000000000000000023761416264461600334610ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/groups.plist000066400000000000000000001235341416264461600312130ustar00rootroot00000000000000 public.kern1.A A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehook Abrevetilde Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhook Acircumflextilde Adieresis Adotbelow Agrave Ahook Amacron Aogonek Aring Aringacute Atilde public.kern1.AE AE AEacute E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Eogonek Etilde OE public.kern1.C C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent public.kern1.D D Dcaron Dcroat Eth public.kern1.Eng Eng N Nacute Ncaron Ncommaaccent Ntilde public.kern1.G G Gbreve Gcircumflex Gcommaaccent Gdotaccent public.kern1.IJ IJ IJacute J Jacute Jcircumflex public.kern1.K K Kcommaaccent public.kern1.L L Lacute Lcaron Lcommaaccent Ldot Lslash public.kern1.O O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhook Ocircumflextilde Odieresis Odotbelow Ograve Ohook Ohungarumlaut Omacron Oslash Oslashacute Otilde Q Schwa public.kern1.Ohorn Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhook Ohorntilde public.kern1.R R Racute Rcaron Rcommaaccent public.kern1.S S Sacute Scaron Scedilla Scircumflex Scommaaccent public.kern1.T T Tbar Tcaron Tcedilla Tcommaaccent public.kern1.U U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhook Uhungarumlaut Umacron Uogonek Uring Utilde public.kern1.Uhorn Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhook Uhorntilde public.kern1.W W Wacute Wcircumflex Wdieresis Wgrave public.kern1.Y Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhook Ytilde public.kern1.Z Z Zacute Zcaron Zdotaccent public.kern1.a a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde adieresis adotbelow agrave ahook amacron aogonek aring aringacute atilde public.kern1.a.alt01 a.alt01 aacute.alt01 abreve.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflex.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 u uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhungarumlaut umacron uogonek uring utilde public.kern1.ae ae aeacute e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook ecircumflextilde edieresis edotaccent edotbelow egrave ehook emacron eogonek etilde oe public.kern1.asterisk asterisk quotedbl quotesingle public.kern1.b b p thorn public.kern1.c c cacute ccaron ccedilla ccircumflex cdotaccent public.kern1.colon colon semicolon public.kern1.comma comma ellipsis period quotedblbase quotesinglbase public.kern1.d d fl l lacute lcommaaccent lslash public.kern1.dcaron dcaron lcaron public.kern1.dotlessi dotlessi dotlessj eng g.alt01 gbreve.alt01 gcircumflex.alt01 gcommaaccent.alt01 gdotaccent.alt01 ij ijacute j jacute jcircumflex q public.kern1.emdash emdash endash hyphen softhyphen public.kern1.fi fi i iacute ibreve icircumflex idieresis idotbelow igrave ihook imacron iogonek itilde public.kern1.g g g.alt02 gbreve gcircumflex gcommaaccent gdotaccent public.kern1.guillemotleft guillemotleft guilsinglleft public.kern1.guillemotright guillemotright guilsinglright public.kern1.h h hbar hcircumflex m n nacute napostrophe ncaron ncommaaccent ntilde public.kern1.k k kcommaaccent kgreenlandic public.kern1.o o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhook ocircumflextilde odieresis odotbelow ograve ohook ohungarumlaut omacron oslash oslashacute otilde schwa public.kern1.ohorn ohorn ohornacute ohorndotbelow ohorngrave ohornhook ohorntilde public.kern1.quotedblleft quotedblleft quoteleft public.kern1.quotedblright quotedblright quoteright public.kern1.r r racute rcaron rcommaaccent public.kern1.s s sacute scaron scedilla scircumflex scommaaccent public.kern1.t t tbar tcaron tcedilla tcommaaccent public.kern1.uhorn uhorn uhornacute uhorndotbelow uhorngrave uhornhook uhorntilde public.kern1.uni0400 uni0400 uni0401 uni0415 uni04D4 uni04D6 public.kern1.uni0403 uni0403 uni0413 uni0490 uni04A4 public.kern1.uni0406 uni0406 uni0407 uni040D uni040F uni0418 uni0419 uni041B uni041C uni041D uni041F uni0427 uni0428 uni042B uni042F uni04B8 uni04C0 uni04E2 uni04E4 uni04F4 uni04F8 public.kern1.uni0409 uni0409 uni040A uni042A uni042C public.kern1.uni040B uni040B uni04BA public.kern1.uni040C uni040C uni0416 uni041A uni049C uni04A0 uni04C1 uni04DC public.kern1.uni040E uni040E uni0423 uni04EE uni04F0 uni04F2 public.kern1.uni0410 uni0410 uni04D0 uni04D2 public.kern1.uni0412 uni0412 uni0417 uni0498 uni04DE public.kern1.uni0414 uni0414 uni0426 uni0429 uni04A2 uni04B6 public.kern1.uni041E uni041E uni042D uni042E uni0472 uni04D8 uni04E6 uni04E8 public.kern1.uni0421 uni0421 uni04AA public.kern1.uni0430 uni0430 uni04D1 uni04D3 public.kern1.uni0430.alt01 uni0430.alt01 uni04D1.alt01 uni04D3.alt01 public.kern1.uni0431 uni0431 uni043E uni044D uni044E uni0473 uni04D9 uni04E7 uni04E9 public.kern1.uni0432 uni0432 uni0437 uni0499 uni04DF public.kern1.uni0433 uni0433 uni0453 uni0491 uni04A5 public.kern1.uni0434 uni0434 uni0446 uni0449 uni04A3 uni04B7 public.kern1.uni0435 uni0435 uni0450 uni0451 uni04D5 uni04D7 public.kern1.uni0436 uni0436 uni043A uni045C uni049D uni04A1 uni04C2 uni04DD public.kern1.uni0438 uni0438 uni0439 uni043B uni043C uni043D uni043F uni0447 uni0448 uni044B uni044F uni045D uni045F uni04B9 uni04E3 uni04E5 uni04F5 uni04F9 public.kern1.uni0441 uni0441 uni04AB public.kern1.uni0443 uni0443 uni045E uni04EF uni04F1 uni04F3 public.kern1.uni044A uni044A uni044C uni0459 uni045A public.kern1.uni0456 uni0456 uni0457 public.kern1.uni045B uni045B uni04BB public.kern1.uni0496 uni0496 uni049A public.kern1.uni0497 uni0497 uni049B public.kern1.w w wacute wcircumflex wdieresis wgrave public.kern1.y y yacute ycircumflex ydieresis ydotbelow ygrave yhook ytilde public.kern1.z z zacute zcaron zdotaccent public.kern2.A A AE AEacute Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehook Abrevetilde Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhook Acircumflextilde Adieresis Adotbelow Agrave Ahook Amacron Aogonek Aring Aringacute Atilde public.kern2.B B D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Eng Eogonek Eth Etilde F Germandbls H Hbar Hcircumflex I IJ IJacute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihook Imacron Iogonek Itilde K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde P R Racute Rcaron Rcommaaccent Thorn public.kern2.C C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent G Gbreve Gcircumflex Gcommaaccent Gdotaccent O OE Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhook Ocircumflextilde Odieresis Odotbelow Ograve Ohook Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhook Ohorntilde Ohungarumlaut Omacron Oslash Oslashacute Otilde Q Schwa public.kern2.J J Jacute Jcircumflex public.kern2.S S Sacute Scaron Scedilla Scircumflex Scommaaccent public.kern2.T T Tbar Tcaron Tcedilla Tcommaaccent public.kern2.U U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhook Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhook Uhorntilde Uhungarumlaut Umacron Uogonek Uring Utilde public.kern2.W W Wacute Wcircumflex Wdieresis Wgrave public.kern2.Y Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhook Ytilde public.kern2.Z Z Zacute Zcaron Zdotaccent public.kern2._empty_lu.0_st.2_cl.0 public.kern2.a a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde adieresis adotbelow ae aeacute agrave ahook amacron aogonek aring aringacute atilde public.kern2.a.alt01 a.alt01 aacute.alt01 abreve.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflex.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 d dcaron dcroat eth g.alt01 gbreve.alt01 gcircumflex.alt01 gcommaaccent.alt01 gdotaccent.alt01 q public.kern2.asterisk asterisk quotedbl quotesingle public.kern2.braceright braceright bracketright public.kern2.c c cacute ccaron ccedilla ccircumflex cdotaccent e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook ecircumflextilde edieresis edotaccent edotbelow egrave ehook emacron eogonek etilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhook ocircumflextilde odieresis odotbelow oe ograve ohook ohorn ohornacute ohorndotbelow ohorngrave ohornhook ohorntilde ohungarumlaut omacron oslash oslashacute otilde schwa public.kern2.colon colon semicolon public.kern2.comma comma ellipsis period quotedblbase quotesinglbase public.kern2.dotlessi dotlessi eng kgreenlandic m n nacute ncaron ncommaaccent ntilde r racute rcaron rcommaaccent public.kern2.dotlessj dotlessj j jacute jcircumflex public.kern2.emdash emdash endash hyphen softhyphen public.kern2.f f fi fl germandbls public.kern2.g g g.alt02 gbreve gcircumflex gcommaaccent gdotaccent public.kern2.guillemotleft guillemotleft guilsinglleft public.kern2.guillemotright guillemotright guilsinglright public.kern2.h h hcircumflex k kcommaaccent l lacute lcaron lcommaaccent ldot lslash public.kern2.i i iacute ibreve icircumflex idieresis idotbelow igrave ihook ij ijacute imacron iogonek itilde public.kern2.quotedblleft quotedblleft quoteleft public.kern2.quotedblright quotedblright quoteright public.kern2.s s sacute scaron scedilla scircumflex scommaaccent public.kern2.t t tbar tcaron tcedilla tcommaaccent public.kern2.u u uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhorn uhornacute uhorndotbelow uhorngrave uhornhook uhorntilde uhungarumlaut umacron uogonek uring utilde public.kern2.uni0400 uni0400 uni0401 uni0403 uni0406 uni0407 uni040A uni040C uni040D uni040F uni0411 uni0412 uni0413 uni0415 uni0418 uni0419 uni041A uni041C uni041D uni041F uni0420 uni0426 uni0428 uni0429 uni042B uni042C uni042E uni0490 uni0494 uni049A uni049C uni04A2 uni04A4 uni04BA uni04C0 uni04D6 uni04E2 uni04E4 uni04F8 public.kern2.uni0402 uni0402 uni040B uni0422 public.kern2.uni0404 uni0404 uni041E uni0421 uni0472 uni04AA uni04D8 uni04E6 uni04E8 public.kern2.uni0409 uni0409 uni041B public.kern2.uni040E uni040E uni0423 uni04EE uni04F0 uni04F2 public.kern2.uni0410 uni0410 uni04D0 uni04D2 public.kern2.uni0416 uni0416 uni0496 uni04C1 uni04DC public.kern2.uni0417 uni0417 uni042D uni0498 uni04DE public.kern2.uni0425 uni0425 uni04B2 public.kern2.uni0427 uni0427 uni04B6 uni04B8 uni04F4 public.kern2.uni042A uni042A uni04A0 public.kern2.uni0430 uni0430 uni04D1 uni04D3 uni04D5 public.kern2.uni0430.alt01 uni0430.alt01 uni04D1.alt01 uni04D3.alt01 public.kern2.uni0432 uni0432 uni0433 uni0438 uni0439 uni043A uni043C uni043D uni043F uni0446 uni0448 uni0449 uni044B uni044C uni044E uni0453 uni045A uni045C uni045D uni045F uni0491 uni0495 uni049B uni049D uni04A3 uni04A5 uni04E3 uni04E5 uni04F9 public.kern2.uni0435 uni0435 uni043E uni0441 uni0450 uni0451 uni0454 uni0473 uni04AB uni04D7 uni04D9 uni04E7 uni04E9 public.kern2.uni0436 uni0436 uni0497 uni04C2 uni04DD public.kern2.uni0437 uni0437 uni044D uni0499 uni04DF public.kern2.uni043B uni043B uni0459 public.kern2.uni0442 uni0442 uni044A uni04A1 public.kern2.uni0443 uni0443 uni045E uni04EF uni04F1 uni04F3 public.kern2.uni0445 uni0445 uni04B3 public.kern2.uni0447 uni0447 uni04B7 uni04B9 uni04F5 public.kern2.uni0452 uni0452 uni045B public.kern2.uni0456 uni0456 uni0457 public.kern2.uni04BB uni04BB uni04CF public.kern2.w w wacute wcircumflex wdieresis wgrave public.kern2.y y yacute ycircumflex ydieresis ydotbelow ygrave yhook ytilde public.kern2.z z zacute zcaron zdotaccent extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/kerning.plist000066400000000000000000017511341416264461600313350ustar00rootroot00000000000000 Aogonek braceright 16 bracketright 16 dotlessj 4 j 4 jacute 4 jcircumflex 4 parenright 36 B V -30 X -20 ampersand -10 eightsuperior -11 fiveinferior -2 fivesuperior -12 foursuperior -10 ninesuperior -15 oneinferior -2 onesuperior -12 public.kern2.A -19 public.kern2.J -8 public.kern2.T -20 public.kern2.W -25 public.kern2.Y -30 public.kern2.Z -21 public.kern2.asterisk -20 public.kern2.comma -31 public.kern2.f -5 public.kern2.g -10 public.kern2.guillemotleft 20 public.kern2.guillemotright -10 public.kern2.quotedblleft -20 public.kern2.quotedblright -20 public.kern2.t -5 public.kern2.u -10 public.kern2.w -10 public.kern2.y -5 public.kern2.z -16 question -28 registered -13 sevensuperior -20 sixsuperior -10 slash -17 threeinferior -2 threesuperior -12 trademark -20 twoinferior -4 twosuperior -13 underscore -60 v -10 x -10 zeroinferior 2 zerosuperior -15 D AE -35 AEacute -35 Dcaron AE -35 AEacute -35 Dcroat AE -35 AEacute -35 Eogonek dotlessj -6 j -6 jacute -6 jcircumflex -6 parenright 12 Eth AE -35 AEacute -35 F AE -78 AEacute -78 ampersand -38 at -30 eightinferior -62 fiveinferior -54 fourinferior -77 germandbls.alt01 -28 ibreve -8 icircumflex -8 idieresis -8 imacron -8 itilde -8 jcircumflex -8 nineinferior -61 ninesuperior 4 oneinferior -60 onesuperior 5 p -25 public.kern2.A -56 public.kern2.C -17 public.kern2.J -59 public.kern2.a -40 public.kern2.a.alt01 -37 public.kern2.asterisk 6 public.kern2.c -42 public.kern2.comma -100 public.kern2.dotlessi -25 public.kern2.dotlessj -25 public.kern2.emdash -20 public.kern2.f -5 public.kern2.g -42 public.kern2.guillemotleft -32 public.kern2.guillemotright -20 public.kern2.i -25 public.kern2.quotedblleft 12 public.kern2.quotedblright 8 public.kern2.s -32 public.kern2.t -5 public.kern2.u -25 public.kern2.w -10 public.kern2.y -8 public.kern2.z -26 question 15 registered 2 seveninferior -46 sevensuperior 2 sixinferior -65 sixsuperior 4 slash -50 threeinferior -53 threesuperior 2 trademark 10 twoinferior -62 twosuperior 2 underscore -130 v -10 x -28 zeroinferior -67 zerosuperior 4 Germandbls V -20 X -7 ampersand -8 copyright -2 eightinferior 10 eightsuperior -30 fiveinferior 8 fivesuperior -22 fourinferior 10 foursuperior -32 nineinferior 20 ninesuperior -20 onesuperior -12 ordfeminine -22 ordmasculine -22 public.kern2.A -13 public.kern2.C -3 public.kern2.T -16 public.kern2.U -12 public.kern2.W -20 public.kern2.Y -18 public.kern2.Z -20 public.kern2.asterisk -13 public.kern2.comma -10 public.kern2.emdash 12 public.kern2.g -2 public.kern2.guillemotleft 40 public.kern2.quotedblleft -30 public.kern2.quotedblright -20 public.kern2.t -2 public.kern2.w -12 public.kern2.y -12 public.kern2.z -12 question -14 questiondown -6 registered -27 sevensuperior -12 sixinferior 10 sixsuperior -32 slash -16 threesuperior -12 trademark -12 twosuperior -17 underscore -60 v -12 x -15 zeroinferior 20 zerosuperior -20 H foursuperior -2 Hbar foursuperior -2 Hcircumflex foursuperior -2 I foursuperior -2 IJ AE -28 AEacute -28 IJacute AE -28 AEacute -28 Iacute foursuperior -2 Ibreve foursuperior -2 Icircumflex foursuperior -2 Idieresis foursuperior -2 Idotaccent foursuperior -2 Idotbelow foursuperior -2 Igrave foursuperior -2 Ihook foursuperior -2 Imacron foursuperior -2 Iogonek foursuperior -2 parenright 15 Itilde foursuperior -2 J AE -28 AEacute -28 Jacute AE -28 AEacute -28 Jcircumflex AE -28 AEacute -28 Lcaron T -11 Tbar -11 Tcaron -11 Tcedilla -11 Tcommaaccent -11 V -7 W -7 Wacute -7 Wcircumflex -7 Wdieresis -7 Wgrave -7 Y -9 Yacute -9 Ycircumflex -9 Ydieresis -9 Ydotbelow -9 Ygrave -9 Yhook -9 Ytilde -9 quotedblleft -12 quotedblright -10 quoteleft -12 quoteright -10 trademark -6 M foursuperior -2 O AE -23 AEacute -23 Oacute AE -23 AEacute -23 Obreve AE -23 AEacute -23 Ocircumflex AE -23 AEacute -23 Ocircumflexacute AE -23 AEacute -23 Ocircumflexdotbelow AE -23 AEacute -23 Ocircumflexgrave AE -23 AEacute -23 Ocircumflexhook AE -23 AEacute -23 Ocircumflextilde AE -23 AEacute -23 Odieresis AE -23 AEacute -23 Odotbelow AE -23 AEacute -23 Ograve AE -23 AEacute -23 Ohook AE -23 AEacute -23 Ohungarumlaut AE -23 AEacute -23 Omacron AE -23 AEacute -23 Oslash AE -23 AEacute -23 Oslashacute AE -23 AEacute -23 Otilde AE -23 AEacute -23 P AE -84 AEacute -84 X -15 ampersand -34 at -10 eightinferior -65 eightsuperior 10 fiveinferior -60 fivesuperior 10 fourinferior -102 foursuperior 10 nineinferior -60 ninesuperior 10 oneinferior -62 public.kern2.A -48 public.kern2.J -42 public.kern2.T 2 public.kern2.W 5 public.kern2.Z -2 public.kern2.a -15 public.kern2.a.alt01 -21 public.kern2.asterisk 9 public.kern2.c -21 public.kern2.comma -130 public.kern2.dotlessi -10 public.kern2.emdash -10 public.kern2.g -25 public.kern2.quotedblleft 12 public.kern2.quotedblright 12 public.kern2.s -20 public.kern2.w 8 public.kern2.y 14 public.kern2.z -8 seveninferior -22 sevensuperior 9 sixinferior -89 sixsuperior 10 slash -50 threeinferior -60 twoinferior -62 underscore -130 v 10 x -12 zeroinferior -60 zerosuperior 10 Q AE -23 AEacute -23 Schwa AE -23 AEacute -23 T AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Tbar AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Tcaron AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Tcedilla AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Tcommaaccent AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Thorn AE -40 AEacute -40 V -23 X -36 ampersand -4 at 10 eightsuperior 5 fiveinferior -2 fourinferior -15 foursuperior 10 ninesuperior -15 onesuperior -2 public.kern2.A -20 public.kern2.J -25 public.kern2.W -3 public.kern2.Y -37 public.kern2.a -5 public.kern2.asterisk -20 public.kern2.comma -60 public.kern2.emdash 30 public.kern2.g -10 public.kern2.guillemotleft 30 public.kern2.guillemotright 5 public.kern2.quotedblleft -20 public.kern2.quotedblright -2 public.kern2.s 8 public.kern2.w 8 public.kern2.y 10 seveninferior 8 sevensuperior -22 sixinferior -10 slash -40 trademark -16 twosuperior 8 underscore -130 v 10 x -14 zerosuperior 8 U AE -35 AEacute -35 Uacute AE -35 AEacute -35 Ubreve AE -35 AEacute -35 Ucircumflex AE -35 AEacute -35 Udieresis AE -35 AEacute -35 Udotbelow AE -35 AEacute -35 Ugrave AE -35 AEacute -35 Uhook AE -35 AEacute -35 Uhorn AE -40 AEacute -40 Uhornacute AE -40 AEacute -40 Uhorndotbelow AE -40 AEacute -40 Uhorngrave AE -40 AEacute -40 Uhornhook AE -40 AEacute -40 Uhorntilde AE -40 AEacute -40 Uhungarumlaut AE -35 AEacute -35 Umacron AE -35 AEacute -35 Uogonek AE -35 AEacute -35 Uring AE -35 AEacute -35 Utilde AE -35 AEacute -35 V AE -75 AEacute -75 V 10 ampersand -44 at -40 b 2 eightinferior -62 eightsuperior 10 exclamdown -20 fiveinferior -57 fivesuperior 19 fourinferior -72 germandbls.alt01 -36 idieresis 11 imacron 10 itilde 3 nineinferior -62 ninesuperior 11 oneinferior -62 onesuperior 20 p -37 parenright 28 public.kern2.A -52 public.kern2.C -23 public.kern2.J -49 public.kern2.S -10 public.kern2.T 19 public.kern2.W 10 public.kern2.Y 9 public.kern2.a -67 public.kern2.a.alt01 -57 public.kern2.asterisk 20 public.kern2.c -58 public.kern2.colon -20 public.kern2.comma -70 public.kern2.dotlessi -55 public.kern2.dotlessj -20 public.kern2.emdash -25 public.kern2.f -20 public.kern2.g -60 public.kern2.guillemotleft -41 public.kern2.guillemotright -22 public.kern2.i -20 public.kern2.quotedblleft 20 public.kern2.quotedblright 24 public.kern2.s -55 public.kern2.t -20 public.kern2.u -20 public.kern2.w -12 public.kern2.y -12 public.kern2.z -30 question 14 questiondown -60 registered 10 seveninferior -60 sevensuperior 28 sixinferior -62 slash -50 threeinferior -62 threesuperior 20 trademark 28 twoinferior -54 twosuperior 20 underscore -70 v -12 x -20 zeroinferior -54 zerosuperior 20 W AE -55 AEacute -55 icircumflex -1 idieresis 2 Wacute AE -55 AEacute -55 icircumflex -1 idieresis 2 Wcircumflex AE -55 AEacute -55 icircumflex -1 idieresis 2 Wdieresis AE -55 AEacute -55 icircumflex -1 idieresis 2 Wgrave AE -55 AEacute -55 icircumflex -1 idieresis 2 X ampersand -15 at -30 eightinferior 10 fiveinferior 10 fivesuperior 8 fourinferior 10 foursuperior -30 nineinferior -20 ninesuperior 8 oneinferior -1 onesuperior 10 parenright 16 public.kern2.A 17 public.kern2.C -18 public.kern2.J 18 public.kern2.T 16 public.kern2.a -10 public.kern2.a.alt01 -17 public.kern2.asterisk 16 public.kern2.c -17 public.kern2.comma 11 public.kern2.emdash -40 public.kern2.g -10 public.kern2.guillemotleft -42 public.kern2.guillemotright -20 public.kern2.quotedblleft 16 public.kern2.quotedblright 16 public.kern2.s -5 public.kern2.t -10 public.kern2.u -20 public.kern2.w -22 public.kern2.y -12 public.kern2.z 6 question 8 questiondown 30 seveninferior -20 sevensuperior 24 sixsuperior -2 threeinferior 10 threesuperior 10 trademark 16 twoinferior 10 twosuperior 10 underscore 20 v -12 zeroinferior 13 zerosuperior 12 Y AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Yacute AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ycircumflex AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ydieresis AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ydotbelow AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ygrave AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Yhook AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ytilde AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 ampersand V -38 public.kern2.C 12 public.kern2.J 10 public.kern2.T -52 public.kern2.U -2 public.kern2.W -14 public.kern2.Y -54 public.kern2.Z -2 public.kern2.a.alt01 6 public.kern2.t -5 public.kern2.uni0402 -52 public.kern2.uni0404 12 public.kern2.uni0409 18 public.kern2.uni040E -50 public.kern2.uni0416 6 public.kern2.uni0417 -14 public.kern2.uni0427 -48 public.kern2.uni042A -52 public.kern2.uni0430 -6 public.kern2.uni0430.alt01 -4 public.kern2.uni0435 -4 public.kern2.uni0436 3 public.kern2.uni0437 -4 public.kern2.uni043B 14 public.kern2.uni0442 -14 public.kern2.uni0443 -10 public.kern2.uni0447 -30 public.kern2.w -10 public.kern2.y -10 uni0408 10 uni0414 15 uni0424 -6 uni042F 6 uni0431 -4 uni0434 11 uni0444 -4 uni044F 3 uni0492 9 uni0493 9 uni04AE -54 uni04AF -18 uni04B0 -54 uni04B1 -18 v -10 aogonek dotlessj -1 j -1 jacute -1 jcircumflex -1 parenright 20 aogonek.alt01 dotlessj -1 j -1 jacute -1 jcircumflex -1 asterisk uni0457 4 at V -40 X -30 public.kern2.A -20 public.kern2.J -22 public.kern2.S -11 public.kern2.T -38 public.kern2.W -30 public.kern2.Y -60 public.kern2.Z -30 public.kern2.uni0402 -38 public.kern2.uni0409 -16 public.kern2.uni040E -42 public.kern2.uni0410 -20 public.kern2.uni0416 -47 public.kern2.uni0417 -12 public.kern2.uni0425 -30 public.kern2.uni0427 -26 public.kern2.uni042A -38 public.kern2.uni0436 -9 public.kern2.uni0437 -3 public.kern2.uni043B -10 public.kern2.uni0442 4 public.kern2.uni0443 -10 public.kern2.uni0445 -10 public.kern2.y -2 uni0405 -11 uni0408 -22 uni0414 -27 uni0424 7 uni042F -19 uni0431 3 uni0434 -24 uni044F -2 uni0492 14 uni0493 2 uni04AE -60 uni04AF -4 uni04B0 -56 uni04B1 -4 uni04D4 -20 x -10 braceleft public.kern2.dotlessj 78 uni0458 78 bracketleft public.kern2.dotlessj 78 public.kern2.uni0409 -6 public.kern2.uni0442 -6 public.kern2.uni0447 -18 uni0414 12 uni0424 -12 uni042F -6 uni0431 -6 uni0434 6 uni0457 6 uni0458 78 bracketright public.kern2.dotlessj 13 uni0458 41 comma dotlessj 10 j 10 jacute 10 jcircumflex 10 uni0443 -46 uni0458 35 uni045E -46 uni04EF -46 uni04F1 -46 uni04F3 -46 y -2 yacute -2 ycircumflex -2 ydieresis -2 ydotbelow -2 ygrave -2 yhook -2 ytilde -2 eightinferior V -62 X 10 eightinferior -10 fiveinferior -2 oneinferior -15 public.kern2.A 4 public.kern2.J 10 public.kern2.T -62 public.kern2.U -6 public.kern2.W -42 public.kern2.Y -80 public.kern2.Z -2 public.kern2.a 10 public.kern2.a.alt01 10 public.kern2.c 13 public.kern2.f -10 public.kern2.g -5 public.kern2.t -10 public.kern2.uni0402 -62 public.kern2.uni0404 4 public.kern2.uni0409 16 public.kern2.uni040E -42 public.kern2.uni0410 12 public.kern2.uni0425 10 public.kern2.uni0427 -39 public.kern2.uni042A -62 public.kern2.uni0430 10 public.kern2.uni0430.alt01 9 public.kern2.uni0435 13 public.kern2.uni0436 -4 public.kern2.uni043B 22 public.kern2.uni0442 -33 public.kern2.uni0443 -27 public.kern2.uni0445 -6 public.kern2.uni0447 -22 public.kern2.w -29 public.kern2.y -27 public.kern2.z 8 threeinferior -4 uni0408 10 uni0414 9 uni0431 9 uni0434 12 uni0444 7 uni044F 2 uni0492 18 uni0493 13 uni04AE -80 uni04AF -34 uni04B0 -74 uni04B1 -34 uni04D4 12 v -30 x -6 eightsuperior V 10 b 20 eightsuperior -10 fivesuperior -2 fraction 12 jcircumflex 6 onesuperior -15 p 20 public.kern2.A -64 public.kern2.J -52 public.kern2.T 20 public.kern2.W 10 public.kern2.Z -10 public.kern2.a 10 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 8 public.kern2.g -5 public.kern2.h 11 public.kern2.i 4 public.kern2.t 20 public.kern2.u 20 public.kern2.uni0402 20 public.kern2.uni0409 -74 public.kern2.uni040E -6 public.kern2.uni0410 -64 public.kern2.uni0416 -17 public.kern2.uni0427 10 public.kern2.uni042A 20 public.kern2.uni0430 10 public.kern2.uni0436 2 public.kern2.uni043B -49 public.kern2.uni0442 10 public.kern2.uni0443 28 public.kern2.uni0445 12 public.kern2.uni0447 9 public.kern2.uni04BB 11 public.kern2.w 24 public.kern2.y 28 public.kern2.z 20 thorn 20 threesuperior -4 uni0408 -52 uni0414 -42 uni0424 6 uni042F -13 uni0431 4 uni0434 -32 uni0440 20 uni044F 1 uni0457 4 uni0492 10 uni04AF 30 uni04B1 30 uni04D4 -64 v 30 x 12 eth public.kern2.A -16 public.kern2.T -50 public.kern2.Y -30 public.kern2.asterisk -20 public.kern2.comma -3 public.kern2.emdash 20 public.kern2.guillemotleft 20 public.kern2.quotedblleft -46 public.kern2.quotedblright -46 question -4 underscore -54 exclamdown V -20 public.kern2.A 28 public.kern2.W -16 public.kern2.Y -32 public.kern2.a -1 public.kern2.dotlessj 30 public.kern2.uni0410 28 public.kern2.uni0430 -3 public.kern2.w -2 uni0458 30 uni04AE -32 f V 82 X 77 ampersand 16 at 30 bracketleft 12 eightinferior -25 eightsuperior 62 exclam 32 fiveinferior -22 fivesuperior 72 fourinferior -17 foursuperior 48 ibreve 3 icircumflex 16 idieresis 16 igrave 15 imacron 11 itilde 5 jcircumflex 16 lslash -4 nineinferior -27 ninesuperior 64 oneinferior -22 onesuperior 54 p -2 parenright 95 public.kern2.A -10 public.kern2.B 54 public.kern2.C 23 public.kern2.J -2 public.kern2.S 40 public.kern2.T 85 public.kern2.U 60 public.kern2.W 82 public.kern2.Y 88 public.kern2.Z 50 public.kern2.a -2 public.kern2.a.alt01 -4 public.kern2.asterisk 88 public.kern2.braceright 75 public.kern2.c -10 public.kern2.comma -4 public.kern2.emdash -29 public.kern2.g -4 public.kern2.guillemotleft -13 public.kern2.guillemotright -10 public.kern2.i 3 public.kern2.quotedblleft 52 public.kern2.quotedblright 70 public.kern2.w -4 public.kern2.y 2 question 62 registered 52 seveninferior -22 sevensuperior 90 sixinferior -32 sixsuperior 52 slash -10 threeinferior -12 threesuperior 64 trademark 98 twoinferior -12 twosuperior 62 underscore -20 v 2 zeroinferior -13 zerosuperior 71 fiveinferior V -60 eightinferior -5 fiveinferior -6 fourinferior 8 nineinferior -9 oneinferior -12 public.kern2.C -2 public.kern2.J 10 public.kern2.T -52 public.kern2.W -32 public.kern2.Y -80 public.kern2.Z -3 public.kern2.a.alt01 14 public.kern2.c 4 public.kern2.comma -2 public.kern2.f -10 public.kern2.g -10 public.kern2.t -10 public.kern2.u -2 public.kern2.uni0402 -52 public.kern2.uni0404 -2 public.kern2.uni0409 16 public.kern2.uni040E -44 public.kern2.uni0427 -41 public.kern2.uni042A -52 public.kern2.uni0430.alt01 4 public.kern2.uni0435 4 public.kern2.uni043B 22 public.kern2.uni0442 -23 public.kern2.uni0443 -17 public.kern2.uni0447 -24 public.kern2.w -14 public.kern2.y -17 seveninferior -10 threeinferior -1 uni0408 10 uni0424 -2 uni0431 4 uni0444 4 uni044F 6 uni0492 15 uni0493 4 uni04AE -80 uni04AF -30 uni04B0 -74 uni04B1 -30 v -22 fivesuperior V 10 X 6 b 20 eightsuperior -5 fivesuperior -6 foursuperior 8 fraction 10 germandbls.alt01 9 ninesuperior -9 onesuperior -12 p 18 public.kern2.A -54 public.kern2.C -5 public.kern2.J -47 public.kern2.S -2 public.kern2.T 5 public.kern2.W 15 public.kern2.Z -2 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 10 public.kern2.g -2 public.kern2.h 11 public.kern2.i 4 public.kern2.t 20 public.kern2.u 20 public.kern2.uni0402 5 public.kern2.uni0404 -5 public.kern2.uni0409 -82 public.kern2.uni040E -6 public.kern2.uni0410 -54 public.kern2.uni0416 -15 public.kern2.uni0425 6 public.kern2.uni0427 4 public.kern2.uni042A 5 public.kern2.uni0436 7 public.kern2.uni043B -47 public.kern2.uni0442 14 public.kern2.uni0443 28 public.kern2.uni0445 12 public.kern2.uni0447 6 public.kern2.uni0456 4 public.kern2.uni04BB 11 public.kern2.w 20 public.kern2.y 28 public.kern2.z 20 sevensuperior -10 thorn 20 threesuperior -1 uni0405 -6 uni0408 -47 uni0414 -50 uni0424 4 uni042F -13 uni0431 4 uni0434 -30 uni0440 18 uni044F -2 uni0492 15 uni04AF 28 uni04B1 22 uni04D4 -54 v 28 x 12 fourinferior V -50 eightinferior -8 fiveinferior -8 nineinferior -24 oneinferior -21 public.kern2.A 10 public.kern2.J 12 public.kern2.T -55 public.kern2.W -40 public.kern2.Y -70 public.kern2.a 10 public.kern2.a.alt01 2 public.kern2.dotlessi -10 public.kern2.f -10 public.kern2.g -14 public.kern2.s 5 public.kern2.t -10 public.kern2.uni0402 -55 public.kern2.uni0404 8 public.kern2.uni0409 34 public.kern2.uni040E -41 public.kern2.uni0410 10 public.kern2.uni0416 6 public.kern2.uni0425 4 public.kern2.uni0427 -44 public.kern2.uni042A -55 public.kern2.uni0430 10 public.kern2.uni0430.alt01 8 public.kern2.uni0435 8 public.kern2.uni0436 6 public.kern2.uni0437 4 public.kern2.uni043B 26 public.kern2.uni0442 -14 public.kern2.uni0443 -17 public.kern2.uni0445 10 public.kern2.uni0447 -36 public.kern2.w -27 public.kern2.y -17 public.kern2.z 2 seveninferior -16 sixinferior -8 threeinferior -16 uni0405 4 uni0408 12 uni0414 12 uni042F 10 uni0431 8 uni0434 10 uni0444 8 uni044F 12 uni0455 5 uni0492 6 uni0493 10 uni04AE -70 uni04AF -27 uni04B0 -64 uni04B1 -27 uni04D4 10 v -30 x 2 zeroinferior -8 foursuperior V 5 X -5 b 4 eightsuperior -8 fivesuperior -8 fraction 8 germandbls.alt01 2 jcircumflex 4 ninesuperior -24 onesuperior -21 p 2 public.kern2.A -46 public.kern2.J -55 public.kern2.S -8 public.kern2.T 10 public.kern2.W 20 public.kern2.Z -10 public.kern2.a 2 public.kern2.comma -60 public.kern2.dotlessi 2 public.kern2.f 2 public.kern2.h 2 public.kern2.i 4 public.kern2.t 20 public.kern2.u 4 public.kern2.uni0402 10 public.kern2.uni0409 -79 public.kern2.uni040E -4 public.kern2.uni0410 -46 public.kern2.uni0416 -12 public.kern2.uni0425 -5 public.kern2.uni0427 6 public.kern2.uni042A 10 public.kern2.uni0430 6 public.kern2.uni0432 6 public.kern2.uni0436 11 public.kern2.uni043B -43 public.kern2.uni0442 21 public.kern2.uni0443 12 public.kern2.uni0445 12 public.kern2.uni0447 9 public.kern2.uni0456 4 public.kern2.uni04BB 7 public.kern2.w 30 public.kern2.y 12 public.kern2.z 20 sevensuperior -16 sixsuperior -8 thorn 4 threesuperior -16 uni0405 -8 uni0408 -55 uni0414 -48 uni0424 8 uni042F -6 uni0431 6 uni0434 -26 uni0440 6 uni044F -4 uni0492 15 uni0493 6 uni04AF 24 uni04B1 16 uni04D4 -46 v 25 x 12 zerosuperior -8 fraction eightinferior 3 fiveinferior 4 fourinferior -30 nineinferior 4 oneinferior 4 seveninferior 45 sixinferior -30 threeinferior 8 twoinferior 8 germandbls V -36 eightinferior 18 eightsuperior -26 fiveinferior 16 fivesuperior -26 fourinferior 28 foursuperior -16 nineinferior 10 ninesuperior -24 oneinferior 6 onesuperior -26 ordfeminine -10 ordmasculine -10 public.kern2.A 6 public.kern2.C -4 public.kern2.J 10 public.kern2.T -36 public.kern2.W -32 public.kern2.Y -44 public.kern2.Z -12 public.kern2.a 6 public.kern2.asterisk -34 public.kern2.emdash -20 public.kern2.guillemotleft 10 public.kern2.guillemotright -2 public.kern2.quotedblleft -40 public.kern2.quotedblright -40 public.kern2.t -10 public.kern2.w -17 public.kern2.y -16 public.kern2.z -10 question -26 questiondown 10 registered -32 sevensuperior -26 sixinferior 20 sixsuperior -24 slash -5 threeinferior 8 threesuperior -26 trademark -32 twoinferior 16 twosuperior -28 underscore -50 v -17 x -10 zeroinferior 20 zerosuperior -16 germandbls.alt01 V -22 X 36 at -4 copyright -4 eightinferior 23 eightsuperior 18 fiveinferior 26 fivesuperior 16 fourinferior 30 foursuperior 18 nineinferior -2 ninesuperior 10 oneinferior 23 onesuperior -4 ordfeminine 4 ordmasculine 8 parenright 18 public.kern2.A 53 public.kern2.B 24 public.kern2.C 14 public.kern2.J 44 public.kern2.S 16 public.kern2.T -10 public.kern2.W -12 public.kern2.Y -26 public.kern2.Z 8 public.kern2.a 10 public.kern2.a.alt01 -3 public.kern2.asterisk -2 public.kern2.c -2 public.kern2.comma 28 public.kern2.dotlessj 22 public.kern2.emdash -20 public.kern2.f 17 public.kern2.g 10 public.kern2.guillemotright -2 public.kern2.quotedblright 16 public.kern2.s 10 public.kern2.t -6 public.kern2.w -2 public.kern2.y 16 public.kern2.z 6 question -2 questiondown 20 seveninferior -1 sevensuperior -2 sixinferior 11 sixsuperior 18 slash 46 threeinferior 33 trademark -8 twoinferior 32 underscore 24 v -1 x 14 zeroinferior 28 zerosuperior 18 guillemotright AE -4 AEacute -4 guilsinglright AE -4 AEacute -4 ibreve V 10 W 10 Wacute 10 Wcircumflex 10 Wdieresis 10 Wgrave 10 Y 10 Yacute 10 Ycircumflex 10 Ydieresis 10 Ydotbelow 10 Ygrave 10 Yhook 10 Ytilde 10 icircumflex T 16 Tbar 16 Tcaron 16 Tcedilla 16 Tcommaaccent 16 V 16 eightsuperior 4 ninesuperior 6 sevensuperior 6 threesuperior 4 trademark 6 twosuperior 4 zerosuperior 4 idieresis T 16 Tbar 16 Tcaron 16 Tcedilla 16 Tcommaaccent 16 V 20 W 20 Wacute 20 Wcircumflex 20 Wdieresis 20 Wgrave 20 Y 25 Yacute 25 Ycircumflex 25 Ydieresis 25 Ydotbelow 25 Ygrave 25 Yhook 25 Ytilde 25 eightsuperior 4 ninesuperior 6 sevensuperior 8 threesuperior 6 trademark 6 twosuperior 6 ij Y -20 Yacute -20 Ycircumflex -20 Ydieresis -20 Ydotbelow -20 Ygrave -20 Yhook -20 Ytilde -20 ijacute Y -12 Yacute -12 Ycircumflex -12 Ydieresis -12 Ydotbelow -12 Ygrave -12 Yhook -12 Ytilde -12 parenright -2 imacron T 16 Tbar 16 Tcaron 16 Tcedilla 16 Tcommaaccent 16 V 20 W 15 Wacute 15 Wcircumflex 15 Wdieresis 15 Wgrave 15 Y 20 Yacute 20 Ycircumflex 20 Ydieresis 20 Ydotbelow 20 Ygrave 20 Yhook 20 Ytilde 20 iogonek dotlessj -1 j -1 jacute -1 jcircumflex -1 itilde T 16 Tbar 16 Tcaron 16 Tcedilla 16 Tcommaaccent 16 V 12 W 20 Wacute 20 Wcircumflex 20 Wdieresis 20 Wgrave 20 Y 20 Yacute 20 Ycircumflex 20 Ydieresis 20 Ydotbelow 20 Ygrave 20 Yhook 20 Ytilde 20 ninesuperior 2 sevensuperior 6 threesuperior 4 trademark 5 twosuperior 4 jacute Y -5 Yacute -5 Ycircumflex -5 Ydieresis -5 Ydotbelow -5 Ygrave -5 Yhook -5 Ytilde -5 jcircumflex T 8 Tbar 8 Tcaron 8 Tcedilla 8 Tcommaaccent 8 V 15 W 20 Wacute 20 Wcircumflex 20 Wdieresis 20 Wgrave 20 Y 15 Yacute 15 Ycircumflex 15 Ydieresis 15 Ydotbelow 15 Ygrave 15 Yhook 15 Ytilde 15 asterisk 6 eightsuperior 6 fivesuperior 4 ninesuperior 8 onesuperior 4 quotedbl 6 quotesingle 6 sevensuperior 8 sixsuperior 4 threesuperior 6 trademark 6 twosuperior 6 zerosuperior 6 lslash eightsuperior 30 fivesuperior 30 foursuperior 48 ninesuperior 10 onesuperior 28 quotedblright 4 quoteright 4 sevensuperior 10 sixsuperior 30 threesuperior 40 twosuperior 30 zerosuperior 36 nineinferior V -62 X -10 eightinferior -4 fiveinferior -1 fourinferior -5 oneinferior -5 public.kern2.A -5 public.kern2.J 15 public.kern2.T -62 public.kern2.U -5 public.kern2.W -37 public.kern2.Y -80 public.kern2.Z -4 public.kern2.a 10 public.kern2.a.alt01 15 public.kern2.c 18 public.kern2.comma -20 public.kern2.f -10 public.kern2.g -5 public.kern2.s -5 public.kern2.t -17 public.kern2.uni0402 -62 public.kern2.uni0404 8 public.kern2.uni0409 23 public.kern2.uni040E -49 public.kern2.uni0410 -5 public.kern2.uni0416 -14 public.kern2.uni0417 -4 public.kern2.uni0425 -10 public.kern2.uni0427 -36 public.kern2.uni042A -62 public.kern2.uni0430 10 public.kern2.uni0430.alt01 14 public.kern2.uni0435 18 public.kern2.uni0436 -13 public.kern2.uni043B 4 public.kern2.uni0442 -27 public.kern2.uni0443 -21 public.kern2.uni0445 -28 public.kern2.uni0447 -20 public.kern2.w -22 public.kern2.y -21 public.kern2.z -4 seveninferior -4 sixinferior -6 threeinferior -1 uni0408 15 uni0414 -10 uni042F -13 uni0431 14 uni0434 -13 uni0444 12 uni044F -4 uni0455 -5 uni0492 13 uni0493 16 uni04AE -80 uni04AF -24 uni04B0 -64 uni04B1 -24 uni04D4 -5 v -20 x -28 ninesuperior V 10 X 8 b 20 eightsuperior -4 fivesuperior -1 foursuperior -5 fraction -22 germandbls.alt01 8 jcircumflex 4 onesuperior -5 p 20 public.kern2.A -72 public.kern2.J -47 public.kern2.T 22 public.kern2.W 20 public.kern2.Z -8 public.kern2.a -5 public.kern2.a.alt01 -10 public.kern2.c -4 public.kern2.comma -60 public.kern2.dotlessi 20 public.kern2.f 2 public.kern2.g -20 public.kern2.h 11 public.kern2.i 5 public.kern2.s -15 public.kern2.t 22 public.kern2.u 15 public.kern2.uni0402 22 public.kern2.uni0409 -83 public.kern2.uni040E -4 public.kern2.uni0410 -72 public.kern2.uni0416 -6 public.kern2.uni0425 8 public.kern2.uni0427 6 public.kern2.uni042A 22 public.kern2.uni0430 -5 public.kern2.uni0430.alt01 -16 public.kern2.uni0435 -16 public.kern2.uni043B -45 public.kern2.uni0442 8 public.kern2.uni0443 34 public.kern2.uni0445 24 public.kern2.uni0447 9 public.kern2.uni04BB 11 public.kern2.w 36 public.kern2.y 34 public.kern2.z 10 sevensuperior -4 sixsuperior -6 thorn 20 threesuperior -1 uni0408 -47 uni0414 -56 uni042F -13 uni0431 -6 uni0434 -28 uni0440 20 uni0444 -16 uni044F -23 uni0455 -15 uni0457 5 uni0492 6 uni04AF 30 uni04B1 30 uni04D4 -72 v 30 x 4 oneinferior V -80 X 11 eightinferior -12 fiveinferior -12 fourinferior -10 nineinferior -25 oneinferior -20 public.kern2.A 33 public.kern2.C -10 public.kern2.J 2 public.kern2.T -62 public.kern2.U -20 public.kern2.W -60 public.kern2.Y -100 public.kern2.Z 13 public.kern2.c -2 public.kern2.f -20 public.kern2.g -10 public.kern2.t -20 public.kern2.u -10 public.kern2.uni0402 -62 public.kern2.uni0404 -10 public.kern2.uni0409 6 public.kern2.uni040E -51 public.kern2.uni0410 33 public.kern2.uni0417 -10 public.kern2.uni0425 11 public.kern2.uni0427 -83 public.kern2.uni042A -62 public.kern2.uni0430.alt01 -6 public.kern2.uni0435 -6 public.kern2.uni0437 -6 public.kern2.uni043B 9 public.kern2.uni0442 -36 public.kern2.uni0443 -30 public.kern2.uni0445 6 public.kern2.uni0447 -64 public.kern2.w -34 public.kern2.y -30 public.kern2.z 18 seveninferior -27 sixinferior -16 threeinferior -10 uni0408 6 uni0414 6 uni0424 -18 uni0431 -6 uni0434 4 uni0444 -6 uni04AE -100 uni04AF -46 uni04B0 -94 uni04B1 -46 uni04D4 33 v -40 x 2 zeroinferior -15 onesuperior V -2 eightsuperior -12 fivesuperior -12 foursuperior -10 fraction 45 ninesuperior -25 onesuperior -20 public.kern2.A -46 public.kern2.J -70 public.kern2.S -10 public.kern2.T -10 public.kern2.W 3 public.kern2.Y -28 public.kern2.Z -20 public.kern2.a.alt01 26 public.kern2.c 1 public.kern2.comma -50 public.kern2.dotlessi 10 public.kern2.f 3 public.kern2.t 10 public.kern2.uni0402 -10 public.kern2.uni0409 -90 public.kern2.uni040E -21 public.kern2.uni0410 -46 public.kern2.uni0416 -34 public.kern2.uni0417 -6 public.kern2.uni0425 -4 public.kern2.uni0427 -10 public.kern2.uni042A -10 public.kern2.uni0430.alt01 3 public.kern2.uni0435 3 public.kern2.uni0436 -6 public.kern2.uni0437 4 public.kern2.uni043B -49 public.kern2.uni0442 14 public.kern2.uni0447 6 public.kern2.w 8 sevensuperior -27 sixsuperior -16 threesuperior -10 uni0405 -10 uni0408 -70 uni0414 -64 uni0424 6 uni042F -23 uni0431 3 uni0434 -34 uni044F 8 uni0492 20 uni04AE -28 uni04AF 8 uni04B0 -28 uni04D4 -46 v 8 zerosuperior -15 parenleft V 20 X 8 b 20 hcircumflex 36 ibreve 4 idieresis 4 public.kern2.T 20 public.kern2.W 20 public.kern2.Y 18 public.kern2.dotlessj 86 public.kern2.g 20 public.kern2.h 10 public.kern2.uni0402 20 public.kern2.uni0409 -13 public.kern2.uni040E 6 public.kern2.uni0425 8 public.kern2.uni0427 6 public.kern2.uni042A 20 public.kern2.uni0442 -6 public.kern2.uni0443 10 public.kern2.uni0447 -22 public.kern2.uni04BB 10 public.kern2.w -10 public.kern2.y 10 uni0414 21 uni0424 -12 uni042F -6 uni0431 -5 uni0434 25 uni0457 4 uni0458 86 uni04AE 18 uni04AF -6 uni04B0 18 v -10 percent public.kern2.asterisk -60 public.kern2.quotedblleft -60 public.kern2.quotedblright -60 perthousand public.kern2.asterisk -60 public.kern2.quotedblleft -60 public.kern2.quotedblright -60 public.kern1.A V -52 X 17 ampersand -10 at -20 b -2 eightinferior 4 eightsuperior -64 exclamdown 28 fiveinferior 10 fivesuperior -54 fourinferior 10 foursuperior -46 nineinferior -5 ninesuperior -72 oneinferior 14 onesuperior -46 p -10 public.kern2.A 15 public.kern2.C -26 public.kern2.J 14 public.kern2.T -56 public.kern2.U -26 public.kern2.W -36 public.kern2.Y -55 public.kern2.a.alt01 -7 public.kern2.asterisk -90 public.kern2.c -7 public.kern2.comma 17 public.kern2.emdash -25 public.kern2.guillemotleft -2 public.kern2.guillemotright -10 public.kern2.h -8 public.kern2.quotedblleft -100 public.kern2.quotedblright -100 public.kern2.t -14 public.kern2.u -20 public.kern2.w -20 public.kern2.y -17 public.kern2.z 14 question -20 questiondown 40 registered -60 seveninferior -12 sevensuperior -84 sixinferior 7 sixsuperior -54 slash 20 threeinferior 20 threesuperior -46 trademark -85 twoinferior 20 twosuperior -36 underscore 12 v -26 zeroinferior 20 zerosuperior -54 public.kern1.AE V -10 at -10 eightsuperior -5 fivesuperior -10 fourinferior 10 foursuperior -5 nineinferior -13 ninesuperior -5 oneinferior -5 onesuperior -5 public.kern2.W -2 public.kern2.Y -19 public.kern2.Z -2 public.kern2.a.alt01 -10 public.kern2.c -10 public.kern2.emdash -20 public.kern2.g -10 public.kern2.w -5 seveninferior -2 sevensuperior -2 sixsuperior -10 slash 10 trademark 10 twosuperior -1 v -5 zerosuperior -5 public.kern1.C ampersand -8 at -11 eightinferior -1 fiveinferior 2 fourinferior 3 ninesuperior 10 oneinferior -4 onesuperior 6 p -5 public.kern2.A -15 public.kern2.C -13 public.kern2.W 5 public.kern2.Y -5 public.kern2.Z -8 public.kern2.a -10 public.kern2.a.alt01 -10 public.kern2.asterisk 10 public.kern2.c -10 public.kern2.comma -37 public.kern2.dotlessi -15 public.kern2.emdash -20 public.kern2.g -20 public.kern2.quotedblleft 3 public.kern2.quotedblright 10 registered 9 seveninferior -4 sevensuperior 1 sixinferior 5 sixsuperior 1 slash -10 threeinferior 2 threesuperior 2 trademark 2 twoinferior 1 twosuperior 8 underscore -24 zerosuperior 11 public.kern1.D V -23 X -18 ampersand -5 eightsuperior 8 fiveinferior 6 fivesuperior 14 fourinferior -4 foursuperior 16 nineinferior 5 oneinferior -2 onesuperior 10 public.kern2.A -26 public.kern2.C 8 public.kern2.J -16 public.kern2.T -11 public.kern2.W -17 public.kern2.Y -32 public.kern2.Z -17 public.kern2.asterisk -12 public.kern2.comma -45 public.kern2.emdash 20 public.kern2.guillemotleft 22 public.kern2.quotedblleft -3 public.kern2.quotedblright -16 question -16 registered 8 seveninferior 14 sevensuperior -8 sixinferior -2 sixsuperior 8 slash -10 threeinferior 7 threesuperior 11 trademark -14 twoinferior -2 twosuperior 11 underscore -80 zeroinferior 8 zerosuperior 8 public.kern1.Eng public.kern2.A -11 public.kern2.J -11 public.kern2.a -6 public.kern2.a.alt01 -7 public.kern2.c -7 public.kern2.comma -40 public.kern2.g -15 public.kern2.guillemotright -20 public.kern2.s -2 public.kern2.u -1 public.kern2.w -2 public.kern2.z -18 slash -30 underscore -30 v -2 public.kern1.G V -19 X -5 ampersand 6 at 10 eightsuperior -9 fivesuperior -9 fourinferior -2 foursuperior -4 ninesuperior -14 oneinferior -2 onesuperior -12 public.kern2.A -10 public.kern2.C 18 public.kern2.J -2 public.kern2.T -26 public.kern2.W -16 public.kern2.Y -17 public.kern2.Z -12 public.kern2.a 10 public.kern2.a.alt01 10 public.kern2.asterisk -24 public.kern2.comma -34 public.kern2.emdash 28 public.kern2.guillemotleft 30 public.kern2.quotedblleft -32 public.kern2.quotedblright -30 public.kern2.w -2 public.kern2.y -1 question -22 registered -10 sevensuperior -16 sixinferior -2 sixsuperior -10 slash -10 threesuperior -6 trademark -30 twoinferior -2 twosuperior -2 underscore -42 v -1 zerosuperior -12 public.kern1.IJ X -15 eightinferior -17 fiveinferior -14 fourinferior -21 nineinferior -22 oneinferior -24 parenright 10 public.kern2.A -26 public.kern2.J -35 public.kern2.a -5 public.kern2.a.alt01 -5 public.kern2.c -10 public.kern2.comma -50 public.kern2.g -10 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.s -5 public.kern2.u -5 questiondown -40 seveninferior -14 sixinferior -19 slash -20 threeinferior -24 trademark 4 twoinferior -24 underscore -60 zeroinferior -4 public.kern1.K V -8 ampersand -25 at -40 eightinferior 4 eightsuperior -12 fiveinferior 4 fivesuperior -12 fourinferior 2 foursuperior -42 nineinferior -18 ninesuperior -12 onesuperior -15 p -10 parenright 10 public.kern2.C -27 public.kern2.J 2 public.kern2.T -4 public.kern2.W -4 public.kern2.Y -3 public.kern2.a -13 public.kern2.a.alt01 -26 public.kern2.asterisk -7 public.kern2.c -27 public.kern2.comma 22 public.kern2.dotlessi -10 public.kern2.emdash -63 public.kern2.f -8 public.kern2.g -8 public.kern2.guillemotleft -40 public.kern2.guillemotright -20 public.kern2.quotedblleft -12 public.kern2.quotedblright -11 public.kern2.t -20 public.kern2.u -25 public.kern2.w -24 public.kern2.y -24 public.kern2.z 10 registered -32 seveninferior -25 sevensuperior -2 sixinferior 4 sixsuperior -30 slash 11 threeinferior 6 threesuperior -10 trademark -2 twoinferior 4 twosuperior -12 v -24 x 4 zeroinferior -1 zerosuperior -12 public.kern1.L V -72 ampersand -6 at -18 eightsuperior -68 fiveinferior 10 fivesuperior -60 fourinferior 18 foursuperior -70 nineinferior 2 ninesuperior -82 onesuperior -70 public.kern2.A 8 public.kern2.C -17 public.kern2.J 10 public.kern2.T -70 public.kern2.U -37 public.kern2.W -46 public.kern2.Y -74 public.kern2.a 2 public.kern2.asterisk -70 public.kern2.emdash -36 public.kern2.f 2 public.kern2.quotedblleft -80 public.kern2.quotedblright -78 public.kern2.t -10 public.kern2.u -9 public.kern2.w -31 public.kern2.y -30 public.kern2.z 16 question -45 registered -102 seveninferior -2 sevensuperior -60 sixinferior 2 sixsuperior -68 threeinferior 2 threesuperior -58 trademark -84 twosuperior -68 underscore -2 v -40 x 10 zeroinferior 3 zerosuperior -70 public.kern1.O V -23 X -18 ampersand -2 fiveinferior -2 fivesuperior -2 fourinferior -13 foursuperior 16 ninesuperior -12 oneinferior -3 onesuperior -10 public.kern2.A -26 public.kern2.C 8 public.kern2.J -16 public.kern2.T -11 public.kern2.W -17 public.kern2.Y -32 public.kern2.Z -16 public.kern2.asterisk -10 public.kern2.comma -35 public.kern2.emdash 20 public.kern2.guillemotleft 22 public.kern2.quotedblleft -14 public.kern2.quotedblright -15 public.kern2.w 10 public.kern2.y 10 question -14 seveninferior 18 sevensuperior -22 sixinferior -2 slash -10 threeinferior -2 threesuperior -5 trademark -17 twoinferior -3 underscore -60 v 10 public.kern1.Ohorn X -11 ampersand -2 fiveinferior -2 fivesuperior -3 fourinferior -13 ninesuperior -4 oneinferior -3 public.kern2.A -22 public.kern2.C 8 public.kern2.J -16 public.kern2.Y -1 public.kern2.Z -11 public.kern2.asterisk -1 public.kern2.comma -35 public.kern2.emdash 20 public.kern2.quotedblleft -2 public.kern2.quotedblright -2 registered -1 seveninferior 18 sevensuperior -4 sixinferior -2 slash -10 threeinferior -2 trademark -2 twoinferior -3 underscore -60 public.kern1.R V -27 ampersand -14 at -22 eightinferior 4 eightsuperior -19 fiveinferior 10 fivesuperior -20 fourinferior 25 foursuperior -14 nineinferior -30 ninesuperior -17 oneinferior 10 onesuperior -26 public.kern2.A 10 public.kern2.C -13 public.kern2.J 26 public.kern2.T -24 public.kern2.U -13 public.kern2.W -23 public.kern2.Y -36 public.kern2.a.alt01 -17 public.kern2.asterisk -30 public.kern2.c -17 public.kern2.comma 21 public.kern2.emdash -25 public.kern2.g -14 public.kern2.guillemotleft -20 public.kern2.guillemotright -10 public.kern2.quotedblleft -33 public.kern2.quotedblright -33 public.kern2.t -10 public.kern2.u -6 public.kern2.w -9 public.kern2.y -4 question -24 registered -4 seveninferior -20 sevensuperior -27 sixinferior -6 sixsuperior -17 slash 10 threeinferior 25 threesuperior -24 trademark -32 twoinferior 20 twosuperior -24 underscore -2 v -5 zeroinferior 20 zerosuperior -17 public.kern1.S V -5 ampersand -10 eightsuperior -2 fiveinferior -2 fivesuperior -2 foursuperior -2 ninesuperior -1 oneinferior -4 onesuperior -2 p -5 parenright -10 public.kern2.A -12 public.kern2.J -1 public.kern2.S -6 public.kern2.T -13 public.kern2.W -9 public.kern2.Y -11 public.kern2.Z -2 public.kern2.comma -4 public.kern2.dotlessi -2 public.kern2.emdash 10 public.kern2.g -5 public.kern2.guillemotleft 20 public.kern2.w -1 public.kern2.z -10 registered -3 sevensuperior -2 sixinferior 1 sixsuperior -2 slash -10 threeinferior -1 threesuperior -2 twoinferior -2 twosuperior -3 underscore -44 x -4 zeroinferior 10 public.kern1.T V 19 X 16 ampersand -28 at -38 b 4 eightinferior -62 eightsuperior 20 fiveinferior -62 fivesuperior 18 fourinferior -70 foursuperior 12 nineinferior -62 ninesuperior 22 oneinferior -62 onesuperior 25 p -21 parenright 20 public.kern2.A -56 public.kern2.C -11 public.kern2.J -42 public.kern2.S -8 public.kern2.T 22 public.kern2.W 19 public.kern2.Y 14 public.kern2.a -40 public.kern2.a.alt01 -45 public.kern2.asterisk 30 public.kern2.c -45 public.kern2.colon -10 public.kern2.comma -80 public.kern2.dotlessi -14 public.kern2.emdash -50 public.kern2.f -10 public.kern2.g -50 public.kern2.guillemotleft -42 public.kern2.guillemotright -30 public.kern2.h 2 public.kern2.quotedblleft 22 public.kern2.quotedblright 20 public.kern2.s -30 public.kern2.u -18 public.kern2.y 6 public.kern2.z -24 question 22 questiondown -60 registered 30 seveninferior -52 sevensuperior 30 sixinferior -62 sixsuperior 20 slash -70 threeinferior -62 threesuperior 20 trademark 25 twoinferior -62 twosuperior 20 underscore -60 v 6 x -16 zeroinferior -62 zerosuperior 30 public.kern1.U eightinferior -6 fiveinferior -1 fourinferior -7 germandbls.alt01 -2 nineinferior -4 oneinferior -12 public.kern2.A -26 public.kern2.J -26 public.kern2.a -16 public.kern2.a.alt01 -20 public.kern2.asterisk 8 public.kern2.c -20 public.kern2.comma -50 public.kern2.emdash -8 public.kern2.g -20 public.kern2.guillemotright -10 public.kern2.s -11 public.kern2.t -1 public.kern2.w -1 public.kern2.z -8 seveninferior -8 slash -30 threeinferior -12 trademark 2 twoinferior -12 underscore -50 x -8 zeroinferior -12 public.kern1.Uhorn V 16 ampersand -18 at -4 eightinferior -10 eightsuperior 3 fiveinferior -5 fivesuperior 10 fourinferior -12 nineinferior -8 ninesuperior 11 oneinferior -16 onesuperior 10 parenright 44 public.kern2.A -20 public.kern2.J -21 public.kern2.T 19 public.kern2.W 16 public.kern2.Y 14 public.kern2.asterisk 10 public.kern2.braceright 6 public.kern2.comma -54 public.kern2.emdash -12 public.kern2.g -15 public.kern2.quotedblleft 15 public.kern2.quotedblright 19 seveninferior -12 sevensuperior 22 sixinferior -4 slash -34 threeinferior -16 threesuperior 12 trademark 34 twoinferior -16 twosuperior 10 underscore -56 zeroinferior -16 zerosuperior 10 public.kern1.W V 10 ampersand -26 at -30 b 2 eightinferior -42 eightsuperior 10 exclamdown -16 fiveinferior -44 fivesuperior 18 fourinferior -59 foursuperior 15 germandbls.alt01 -28 nineinferior -45 ninesuperior 20 oneinferior -62 onesuperior 28 p -16 parenright 20 public.kern2.A -36 public.kern2.C -17 public.kern2.J -32 public.kern2.S -5 public.kern2.T 19 public.kern2.W 10 public.kern2.Y 9 public.kern2.a -57 public.kern2.a.alt01 -40 public.kern2.asterisk 20 public.kern2.c -45 public.kern2.colon -10 public.kern2.comma -52 public.kern2.dotlessi -30 public.kern2.dotlessj -15 public.kern2.emdash -25 public.kern2.f -20 public.kern2.g -45 public.kern2.guillemotleft -20 public.kern2.guillemotright -22 public.kern2.i -15 public.kern2.quotedblleft 20 public.kern2.quotedblright 21 public.kern2.s -50 public.kern2.t -10 public.kern2.u -10 public.kern2.w -5 public.kern2.y -5 public.kern2.z -35 question 14 questiondown -60 registered 15 seveninferior -32 sevensuperior 30 sixinferior -50 sixsuperior 8 slash -30 threeinferior -57 threesuperior 20 trademark 28 twoinferior -57 twosuperior 20 underscore -50 v -5 x -18 zeroinferior -40 zerosuperior 24 public.kern1.Y V 9 ampersand -46 at -60 eightinferior -80 exclamdown -32 fiveinferior -80 fourinferior -100 foursuperior -10 germandbls.alt01 -30 nineinferior -80 ninesuperior 2 oneinferior -80 onesuperior 16 p -40 parenright 18 public.kern2.A -55 public.kern2.C -32 public.kern2.J -44 public.kern2.S -22 public.kern2.T 14 public.kern2.W 9 public.kern2.a -72 public.kern2.a.alt01 -67 public.kern2.asterisk 16 public.kern2.c -74 public.kern2.colon -32 public.kern2.comma -60 public.kern2.dotlessi -50 public.kern2.dotlessj -20 public.kern2.emdash -50 public.kern2.f -39 public.kern2.g -77 public.kern2.guillemotleft -52 public.kern2.guillemotright -42 public.kern2.i -20 public.kern2.quotedblleft 18 public.kern2.quotedblright 18 public.kern2.s -73 public.kern2.t -22 public.kern2.u -40 public.kern2.w -23 public.kern2.y -21 public.kern2.z -40 question 9 questiondown -70 registered 5 seveninferior -60 sevensuperior 18 sixinferior -80 slash -60 threeinferior -80 threesuperior 10 trademark 26 twoinferior -90 twosuperior 10 underscore -60 v -25 x -29 zeroinferior -80 zerosuperior 8 public.kern1.Z ampersand -8 at -28 eightsuperior -18 fivesuperior -7 fourinferior 10 foursuperior -12 ninesuperior -10 onesuperior 6 public.kern2.C -16 public.kern2.Z -10 public.kern2.a 2 public.kern2.a.alt01 -1 public.kern2.asterisk -2 public.kern2.c -5 public.kern2.emdash -30 public.kern2.guillemotleft -8 public.kern2.guillemotright -12 public.kern2.t -10 public.kern2.u -5 public.kern2.w -22 public.kern2.y -5 public.kern2.z -9 registered -4 seveninferior -10 sixsuperior -12 threesuperior -10 trademark 8 twosuperior -11 underscore 15 v -2 zeroinferior 10 zerosuperior -2 public.kern1.a V -60 b -8 eightinferior 8 eightsuperior -5 fivesuperior -4 foursuperior -2 nineinferior -5 ninesuperior -35 oneinferior -2 onesuperior -22 public.kern2.A 8 public.kern2.T -50 public.kern2.U -5 public.kern2.W -44 public.kern2.Y -64 public.kern2.asterisk -53 public.kern2.comma 2 public.kern2.f -4 public.kern2.g -5 public.kern2.guillemotleft 2 public.kern2.guillemotright -4 public.kern2.quotedblleft -60 public.kern2.quotedblright -30 public.kern2.t -8 public.kern2.u -4 public.kern2.w -10 public.kern2.y -10 registered -10 seveninferior -10 sevensuperior -32 sixsuperior -10 slash 5 threeinferior 5 threesuperior -2 trademark -34 twoinferior 10 twosuperior -10 v -14 zeroinferior 10 zerosuperior -2 public.kern1.a.alt01 V -40 fivesuperior -4 ninesuperior -2 oneinferior -2 onesuperior -4 public.kern2.T -45 public.kern2.W -15 public.kern2.Y -40 public.kern2.asterisk -10 public.kern2.comma 10 public.kern2.guillemotleft 2 public.kern2.quotedblleft -30 public.kern2.quotedblright -20 registered -8 sevensuperior -12 twosuperior -2 public.kern1.ae V -44 X -17 at 10 eightinferior 10 eightsuperior 8 fiveinferior 3 fivesuperior 13 fourinferior 5 foursuperior 13 nineinferior 10 ninesuperior -15 oneinferior 5 public.kern2.B -1 public.kern2.C 10 public.kern2.S -10 public.kern2.T -30 public.kern2.W -43 public.kern2.Y -68 public.kern2.Z -20 public.kern2.a 10 public.kern2.a.alt01 9 public.kern2.asterisk -20 public.kern2.comma -20 public.kern2.emdash 10 public.kern2.guillemotleft 40 public.kern2.guillemotright 10 public.kern2.quotedblleft -31 public.kern2.quotedblright -5 public.kern2.w -3 public.kern2.y -6 public.kern2.z -5 registered 4 seveninferior 20 sevensuperior -12 sixinferior 5 sixsuperior 8 threeinferior 6 threesuperior 10 trademark -15 twoinferior 5 twosuperior 18 underscore -34 v -2 x -11 zeroinferior 20 zerosuperior 8 public.kern1.asterisk V 20 X 16 public.kern2.A -90 public.kern2.C -10 public.kern2.J -30 public.kern2.T 30 public.kern2.U 8 public.kern2.W 20 public.kern2.Y 16 public.kern2.a.alt01 -20 public.kern2.c -20 public.kern2.comma -90 public.kern2.uni0402 30 public.kern2.uni0404 -10 public.kern2.uni0409 -72 public.kern2.uni040E 8 public.kern2.uni0410 -90 public.kern2.uni0416 -16 public.kern2.uni0417 -6 public.kern2.uni0425 16 public.kern2.uni0427 9 public.kern2.uni042A 30 public.kern2.uni0430 -8 public.kern2.uni0430.alt01 -24 public.kern2.uni0435 -20 public.kern2.uni0437 -13 public.kern2.uni043B -65 public.kern2.uni0442 6 public.kern2.uni0443 20 public.kern2.uni0445 12 public.kern2.uni0447 -3 public.kern2.w 18 public.kern2.y 20 public.kern2.z 2 questiondown -140 uni0408 -30 uni0414 -40 uni0424 -16 uni042F -32 uni0431 -15 uni0434 -47 uni0444 -24 uni044F -22 uni04AE 16 uni04AF 20 uni04B0 16 uni04B1 20 uni04D4 -90 v 20 x 12 public.kern1.b V -56 X -17 eightinferior 10 fiveinferior 8 fivesuperior -2 fourinferior -2 foursuperior 3 nineinferior 10 ninesuperior -27 oneinferior 8 onesuperior -2 public.kern2.A -7 public.kern2.C 10 public.kern2.T -35 public.kern2.W -27 public.kern2.Y -59 public.kern2.Z -21 public.kern2.a 10 public.kern2.a.alt01 9 public.kern2.asterisk -28 public.kern2.c 9 public.kern2.comma -27 public.kern2.emdash 20 public.kern2.guillemotleft 35 public.kern2.guillemotright -4 public.kern2.quotedblleft -32 public.kern2.quotedblright -10 public.kern2.w -7 public.kern2.y -5 public.kern2.z -7 registered -5 seveninferior 28 sevensuperior -24 sixinferior 8 sixsuperior -2 threeinferior 8 trademark -15 twoinferior 8 underscore -60 v -5 x -17 zeroinferior 10 zerosuperior -20 public.kern1.c V -32 X -8 eightsuperior 15 fiveinferior 8 fivesuperior 15 fourinferior 10 foursuperior 25 oneinferior 10 public.kern2.A 8 public.kern2.J 10 public.kern2.S 4 public.kern2.T -24 public.kern2.W -29 public.kern2.Y -36 public.kern2.Z -15 public.kern2.a -3 public.kern2.a.alt01 -7 public.kern2.asterisk -8 public.kern2.c -9 public.kern2.comma -16 public.kern2.emdash -10 public.kern2.g -3 public.kern2.guillemotleft 5 public.kern2.quotedblleft -15 seveninferior 3 sevensuperior -2 sixinferior 5 sixsuperior 15 slash -10 threeinferior 10 threesuperior 15 twoinferior 8 twosuperior 15 underscore -10 x -5 zeroinferior 15 zerosuperior 15 public.kern1.colon V -20 public.kern2.T -10 public.kern2.W -10 public.kern2.Y -32 public.kern2.uni0402 -10 public.kern2.uni0409 6 public.kern2.uni040E -30 public.kern2.uni0427 -14 public.kern2.uni042A -10 public.kern2.uni043B 12 uni0414 6 uni04AE -32 uni04B0 -32 public.kern1.comma V -70 X 11 b -28 eightsuperior -50 fiveinferior -2 fivesuperior -60 fourinferior 10 foursuperior -50 nineinferior -24 ninesuperior -70 oneinferior -6 onesuperior -50 p -18 public.kern2.A 17 public.kern2.C -35 public.kern2.J 11 public.kern2.T -80 public.kern2.U -50 public.kern2.W -52 public.kern2.Y -60 public.kern2.a.alt01 -19 public.kern2.asterisk -90 public.kern2.c -27 public.kern2.g -15 public.kern2.h 2 public.kern2.quotedblleft -70 public.kern2.quotedblright -70 public.kern2.s 2 public.kern2.t -40 public.kern2.u -40 public.kern2.uni0402 -80 public.kern2.uni0404 -35 public.kern2.uni0409 12 public.kern2.uni040E -52 public.kern2.uni0410 17 public.kern2.uni0416 11 public.kern2.uni0417 -18 public.kern2.uni0425 11 public.kern2.uni0427 -73 public.kern2.uni042A -80 public.kern2.uni0430 -13 public.kern2.uni0430.alt01 -26 public.kern2.uni0435 -27 public.kern2.uni0436 17 public.kern2.uni0437 -4 public.kern2.uni043B 22 public.kern2.uni0442 -87 public.kern2.uni0443 -54 public.kern2.uni0445 12 public.kern2.uni0447 -48 public.kern2.uni04BB 6 public.kern2.w -62 public.kern2.y -54 question -51 seveninferior -34 sevensuperior -30 sixinferior -8 sixsuperior -50 thorn -10 threesuperior -50 twoinferior 8 twosuperior -50 uni0405 -4 uni0408 11 uni0414 16 uni0424 -70 uni042F 6 uni0431 -26 uni0434 15 uni0440 -18 uni0444 -26 uni044F 13 uni0455 6 uni04AE -60 uni04AF -68 uni04B0 -60 uni04B1 -58 uni04D4 17 v -62 x 12 zeroinferior -2 zerosuperior -60 public.kern1.d X 11 eightinferior 2 fiveinferior 2 fourinferior 2 public.kern2.A 10 public.kern2.comma 10 public.kern2.guillemotleft 2 public.kern2.quotedblleft -36 public.kern2.quotedblright -25 public.kern2.w -1 sixinferior 2 threeinferior 2 twoinferior 2 zeroinferior 2 public.kern1.dcaron V 23 ampersand -8 b 72 bracketleft 13 eightsuperior 55 exclam 22 fivesuperior 58 foursuperior 26 ninesuperior 60 onesuperior 56 ordfeminine 10 p 4 parenright 97 public.kern2.B 18 public.kern2.T 21 public.kern2.Y 62 public.kern2.Z 13 public.kern2.asterisk 58 public.kern2.braceright 81 public.kern2.comma 10 public.kern2.dotlessj 12 public.kern2.f 7 public.kern2.guillemotleft 2 public.kern2.h 63 public.kern2.i 8 public.kern2.quotedblleft 23 public.kern2.quotedblright 34 public.kern2.t 8 public.kern2.u 2 public.kern2.w 14 public.kern2.y 24 public.kern2.z 6 question 42 registered 40 sevensuperior 78 sixsuperior 38 thorn 40 threesuperior 58 trademark 59 twosuperior 58 underscore -20 v 24 zerosuperior 56 public.kern1.dotlessi V -35 ninesuperior -10 onesuperior 20 parenright 10 public.kern2.T -10 public.kern2.W -30 public.kern2.Y -30 public.kern2.Z -10 public.kern2.asterisk -20 public.kern2.comma -20 public.kern2.guillemotleft 2 public.kern2.guillemotright -2 public.kern2.quotedblleft -19 public.kern2.quotedblright -11 sevensuperior -10 slash -15 underscore -4 public.kern1.emdash V -25 X -40 public.kern2.A -25 public.kern2.C 20 public.kern2.J -40 public.kern2.S -20 public.kern2.T -50 public.kern2.U -8 public.kern2.W -25 public.kern2.Y -50 public.kern2.Z -50 public.kern2.a.alt01 20 public.kern2.c 20 public.kern2.f -5 public.kern2.g 9 public.kern2.uni0402 -50 public.kern2.uni0404 20 public.kern2.uni0409 -38 public.kern2.uni040E -56 public.kern2.uni0410 -25 public.kern2.uni0416 -67 public.kern2.uni0417 -20 public.kern2.uni0425 -40 public.kern2.uni0427 -12 public.kern2.uni042A -50 public.kern2.uni0430.alt01 20 public.kern2.uni0435 20 public.kern2.uni0436 -18 public.kern2.uni0437 6 public.kern2.uni043B -22 public.kern2.uni0442 -6 public.kern2.uni0443 -10 public.kern2.uni0445 -35 public.kern2.uni0447 -2 public.kern2.w -3 public.kern2.y -10 public.kern2.z -15 question -22 uni0405 -20 uni0408 -40 uni0414 -39 uni0424 20 uni042F -26 uni0431 23 uni0434 -31 uni0444 20 uni044F 12 uni0455 9 uni0492 18 uni0493 19 uni04AE -50 uni04AF -12 uni04B0 -50 uni04B1 -12 uni04D4 -25 v -10 x -35 public.kern1.fi V -18 oneinferior -2 public.kern2.J 10 public.kern2.Y -20 public.kern2.comma 10 public.kern2.quotedblleft -20 public.kern2.quotedblright -10 public.kern1.g V -10 X 10 ampersand -5 at -7 eightinferior -10 eightsuperior 12 fiveinferior -4 fivesuperior 20 fourinferior -10 foursuperior 30 nineinferior -24 ninesuperior 22 oneinferior -10 onesuperior 10 parenright 23 public.kern2.A 13 public.kern2.C 8 public.kern2.J -2 public.kern2.S 8 public.kern2.T 12 public.kern2.Y -10 public.kern2.a -4 public.kern2.a.alt01 -8 public.kern2.asterisk 15 public.kern2.braceright 13 public.kern2.c -8 public.kern2.comma 13 public.kern2.dotlessj 30 public.kern2.emdash -3 public.kern2.guillemotleft -3 public.kern2.guillemotright -17 public.kern2.quotedblleft 2 public.kern2.quotedblright 10 public.kern2.w 3 public.kern2.y 10 registered 20 seveninferior -14 sevensuperior 20 sixinferior -20 sixsuperior 21 slash 30 threesuperior 10 trademark 2 twoinferior 8 twosuperior 10 underscore 16 v 10 zeroinferior -15 zerosuperior 22 public.kern1.guillemotleft V -22 X -20 public.kern2.A -10 public.kern2.T -30 public.kern2.U -10 public.kern2.W -22 public.kern2.Y -42 public.kern2.Z -20 public.kern2.a.alt01 -2 public.kern2.c -2 public.kern2.dotlessi -2 public.kern2.f -4 public.kern2.g -12 public.kern2.t 5 public.kern2.uni0402 -30 public.kern2.uni040E -50 public.kern2.uni0410 -10 public.kern2.uni0416 -21 public.kern2.uni0417 -13 public.kern2.uni0425 -20 public.kern2.uni0427 -26 public.kern2.uni042A -30 public.kern2.uni0430.alt01 -10 public.kern2.uni0432 -6 public.kern2.uni0435 -10 public.kern2.uni0436 -3 public.kern2.uni0437 -3 public.kern2.uni043B 3 public.kern2.uni0442 4 public.kern2.uni0445 -10 public.kern2.uni0447 -8 public.kern2.w -2 public.kern2.z -1 uni0405 -4 uni0414 -16 uni0424 -8 uni042F -17 uni0431 -6 uni0434 -17 uni0444 -10 uni044F -6 uni04AE -42 uni04AF -6 uni04B0 -42 uni04B1 -6 uni04D4 -10 x -10 public.kern1.guillemotright V -41 X -42 b 12 public.kern2.A -2 public.kern2.C 22 public.kern2.J -10 public.kern2.T -42 public.kern2.W -20 public.kern2.Y -52 public.kern2.Z -32 public.kern2.a 5 public.kern2.a.alt01 35 public.kern2.c 40 public.kern2.dotlessi 4 public.kern2.g 2 public.kern2.h 4 public.kern2.s 3 public.kern2.u 2 public.kern2.uni0402 -42 public.kern2.uni0404 22 public.kern2.uni0409 -23 public.kern2.uni040E -60 public.kern2.uni0410 -14 public.kern2.uni0416 -33 public.kern2.uni0417 -14 public.kern2.uni0425 -42 public.kern2.uni0427 -24 public.kern2.uni042A -42 public.kern2.uni0430 19 public.kern2.uni0430.alt01 38 public.kern2.uni0432 6 public.kern2.uni0435 40 public.kern2.uni0436 -11 public.kern2.uni0437 -5 public.kern2.uni043B -17 public.kern2.uni0442 -6 public.kern2.uni0443 -6 public.kern2.uni0445 -20 public.kern2.uni0447 -2 public.kern2.uni04BB 6 public.kern2.w -2 public.kern2.y -2 public.kern2.z -2 uni0408 -10 uni0414 -36 uni0424 28 uni042F -21 uni0431 37 uni0434 -38 uni0444 38 uni044F 8 uni0455 11 uni0492 20 uni0493 12 uni04AE -52 uni04AF -6 uni04B0 -44 uni04B1 -6 uni04D4 -20 x -20 public.kern1.h V -50 fivesuperior -2 ninesuperior -22 oneinferior -2 onesuperior -20 public.kern2.T -51 public.kern2.W -25 public.kern2.Y -50 public.kern2.asterisk -40 public.kern2.comma 10 public.kern2.guillemotleft 2 public.kern2.quotedblleft -50 public.kern2.quotedblright -30 public.kern2.w -11 public.kern2.y -13 registered -25 sevensuperior -27 threeinferior 2 trademark -35 twoinferior 2 v -13 zeroinferior 2 public.kern1.k V -11 X 20 ampersand -18 at -10 eightinferior 4 fiveinferior 20 fivesuperior 18 fourinferior 10 foursuperior 20 nineinferior -10 onesuperior -12 public.kern2.A 20 public.kern2.C -2 public.kern2.J 24 public.kern2.W -2 public.kern2.Y -22 public.kern2.Z 13 public.kern2.a.alt01 -15 public.kern2.c -15 public.kern2.comma 22 public.kern2.emdash -37 public.kern2.g -7 public.kern2.guillemotleft -27 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.quotedblright 35 public.kern2.s -2 public.kern2.t -10 public.kern2.u -10 registered 18 seveninferior -20 sevensuperior -10 sixinferior 2 sixsuperior 2 slash 10 threeinferior 20 threesuperior -10 twoinferior 20 twosuperior -12 underscore 10 v -3 zeroinferior 4 zerosuperior 10 public.kern1.o V -58 X -15 eightinferior 13 fiveinferior 12 fourinferior 13 foursuperior 13 nineinferior 23 ninesuperior -14 oneinferior 21 onesuperior -2 public.kern2.A -7 public.kern2.C 10 public.kern2.T -45 public.kern2.W -45 public.kern2.Y -74 public.kern2.Z -20 public.kern2.a 10 public.kern2.a.alt01 10 public.kern2.asterisk -20 public.kern2.c 10 public.kern2.comma -27 public.kern2.emdash 20 public.kern2.f -5 public.kern2.guillemotleft 35 public.kern2.quotedblleft -32 public.kern2.quotedblright -29 public.kern2.w -10 public.kern2.y -7 public.kern2.z -9 registered -5 seveninferior 20 sevensuperior -14 sixinferior 18 threeinferior 13 trademark -15 twoinferior 8 twosuperior 10 underscore -50 v -11 x -17 zeroinferior 36 public.kern1.ohorn eightinferior 13 eightsuperior 14 fiveinferior 12 fivesuperior 13 fourinferior 13 foursuperior 14 nineinferior 23 ninesuperior 20 oneinferior 21 onesuperior 12 parenright 10 public.kern2.a.alt01 10 public.kern2.asterisk 22 public.kern2.braceright 10 public.kern2.c 10 public.kern2.comma -20 public.kern2.emdash 10 public.kern2.guillemotleft 15 public.kern2.quotedblleft 6 public.kern2.quotedblright 6 public.kern2.t 2 public.kern2.w 1 public.kern2.y 4 public.kern2.z 2 question 22 registered 24 seveninferior 20 sevensuperior 16 sixinferior 18 sixsuperior 19 threeinferior 13 threesuperior 14 trademark 14 twoinferior 8 twosuperior 14 underscore -60 v 4 x 4 zeroinferior 36 zerosuperior 20 public.kern1.quotedblleft V 20 X 16 germandbls.alt01 -27 public.kern2.A -100 public.kern2.C -14 public.kern2.J -60 public.kern2.S -5 public.kern2.T 20 public.kern2.W 20 public.kern2.Y 18 public.kern2.a -30 public.kern2.a.alt01 -30 public.kern2.c -40 public.kern2.comma -70 public.kern2.g -30 public.kern2.s -15 public.kern2.t 14 public.kern2.uni0402 20 public.kern2.uni0404 -14 public.kern2.uni0409 -105 public.kern2.uni040E -3 public.kern2.uni0410 -100 public.kern2.uni0416 -25 public.kern2.uni0417 -10 public.kern2.uni0425 16 public.kern2.uni0427 4 public.kern2.uni042A 20 public.kern2.uni0430 -30 public.kern2.uni0430.alt01 -39 public.kern2.uni0435 -40 public.kern2.uni0436 -12 public.kern2.uni0437 -18 public.kern2.uni043B -77 public.kern2.uni0443 40 public.kern2.uni0445 10 public.kern2.uni04BB -3 public.kern2.w 30 public.kern2.y 40 questiondown -110 uni0405 -5 uni0408 -60 uni0414 -70 uni0424 -28 uni042F -31 uni0431 -26 uni0434 -60 uni0444 -39 uni044F -34 uni0455 -15 uni04AE 18 uni04AF 35 uni04B0 18 uni04B1 33 uni04D4 -124 v 35 x 10 public.kern1.quotedblright V 24 X 16 exclamdown -24 germandbls.alt01 -29 p -15 public.kern2.A -100 public.kern2.C -25 public.kern2.J -70 public.kern2.S -2 public.kern2.T 20 public.kern2.W 25 public.kern2.Y 26 public.kern2.a -70 public.kern2.a.alt01 -70 public.kern2.c -80 public.kern2.colon -20 public.kern2.comma -70 public.kern2.dotlessi -30 public.kern2.emdash -40 public.kern2.f -30 public.kern2.g -75 public.kern2.s -65 public.kern2.t -20 public.kern2.u -10 public.kern2.uni0402 20 public.kern2.uni0404 -25 public.kern2.uni0409 -107 public.kern2.uni040E 6 public.kern2.uni0410 -100 public.kern2.uni0416 -21 public.kern2.uni0417 -24 public.kern2.uni0425 16 public.kern2.uni0427 6 public.kern2.uni042A 20 public.kern2.uni0430 -70 public.kern2.uni0430.alt01 -80 public.kern2.uni0432 -30 public.kern2.uni0435 -80 public.kern2.uni0436 -38 public.kern2.uni0437 -47 public.kern2.uni043B -102 public.kern2.uni0442 -28 public.kern2.uni0443 10 public.kern2.uni0445 -13 public.kern2.uni0447 -23 public.kern2.uni04BB -6 public.kern2.w 10 public.kern2.y 10 public.kern2.z -40 questiondown -120 uni0405 -23 uni0408 -70 uni0414 -76 uni0424 -58 uni042F -59 uni0431 -50 uni0434 -87 uni0440 -15 uni0444 -78 uni044F -104 uni0455 -65 uni0493 -30 uni04AE 26 uni04AF 10 uni04B0 24 uni04B1 6 uni04D4 -129 v 10 x -13 public.kern1.r V -2 X -14 ampersand -14 eightinferior -20 eightsuperior 38 fiveinferior -12 fivesuperior 44 fourinferior -42 foursuperior 48 nineinferior -22 ninesuperior 20 oneinferior -22 onesuperior 18 public.kern2.A -27 public.kern2.C 18 public.kern2.J -28 public.kern2.S 7 public.kern2.Y -13 public.kern2.asterisk 15 public.kern2.comma -100 public.kern2.emdash -12 public.kern2.f 14 public.kern2.g -1 public.kern2.guillemotright 10 public.kern2.quotedblleft 12 public.kern2.quotedblright 29 public.kern2.t 11 public.kern2.u 18 public.kern2.w 27 public.kern2.y 30 public.kern2.z 2 registered 30 sevensuperior 18 sixinferior -34 sixsuperior 42 slash -45 threeinferior -22 threesuperior 30 trademark 20 twoinferior -22 twosuperior 30 underscore -80 v 30 zeroinferior -22 zerosuperior 40 public.kern1.s V -30 X -23 ampersand -5 eightsuperior 7 fiveinferior -1 fivesuperior 7 fourinferior 5 ninesuperior -2 oneinferior -2 onesuperior -12 public.kern2.A -5 public.kern2.C 10 public.kern2.J 5 public.kern2.T -20 public.kern2.W -28 public.kern2.Y -42 public.kern2.Z -15 public.kern2.asterisk -10 public.kern2.comma -16 public.kern2.emdash -10 public.kern2.f -5 public.kern2.g -10 public.kern2.quotedblleft -10 public.kern2.s -6 public.kern2.t -7 public.kern2.w -5 public.kern2.y -4 public.kern2.z -18 seveninferior -1 sevensuperior -12 sixinferior 5 sixsuperior 8 slash -10 threesuperior -1 trademark -2 twoinferior -2 twosuperior -2 underscore -24 v -6 x -16 zeroinferior 6 public.kern1.t X 10 ampersand -5 at -5 eightinferior 4 eightsuperior 22 fivesuperior 20 fourinferior 20 foursuperior 20 nineinferior -18 ninesuperior 22 public.kern2.A 22 public.kern2.C 20 public.kern2.J 22 public.kern2.S 20 public.kern2.T 15 public.kern2.Y -20 public.kern2.asterisk 20 public.kern2.braceright 20 public.kern2.comma 13 public.kern2.dotlessj 2 public.kern2.emdash -24 public.kern2.g -10 public.kern2.guillemotleft -15 public.kern2.guillemotright -10 public.kern2.i 2 public.kern2.quotedblleft 4 public.kern2.quotedblright 20 public.kern2.t -8 public.kern2.w -2 public.kern2.y 1 question 7 registered 23 sevensuperior 20 sixinferior -6 sixsuperior 24 slash 10 threeinferior 18 threesuperior 10 trademark 5 twoinferior 19 twosuperior 10 underscore 8 v 1 zeroinferior 12 zerosuperior 32 public.kern1.uhorn eightsuperior 40 exclam 20 fivesuperior 40 foursuperior 40 ninesuperior 42 oneinferior -2 onesuperior 40 parenright 10 public.kern2.asterisk 45 public.kern2.braceright 10 public.kern2.quotedblleft 30 public.kern2.quotedblright 30 public.kern2.t 12 public.kern2.w 15 public.kern2.y 15 public.kern2.z 5 question 30 registered 40 sevensuperior 42 sixsuperior 40 threesuperior 40 trademark 30 twosuperior 30 v 15 x 7 zerosuperior 43 public.kern1.uni0400 ampersand -4 at -10 eightsuperior -5 fivesuperior -10 fourinferior 10 foursuperior -5 nineinferior -13 ninesuperior -5 oneinferior -5 onesuperior -5 public.kern2.emdash -20 public.kern2.uni0409 3 public.kern2.uni040E -13 public.kern2.uni0427 -5 public.kern2.uni0430.alt01 -5 public.kern2.uni0435 -10 public.kern2.uni0437 -3 public.kern2.uni0442 -7 public.kern2.uni0447 -15 seveninferior -6 sevensuperior -6 sixsuperior -10 slash 10 threesuperior 8 trademark 10 twosuperior 6 uni0424 -8 uni0431 -3 uni0444 -5 uni044F 2 uni04AE -19 uni04AF -3 uni04B0 -19 uni04B1 -3 zerosuperior -5 public.kern1.uni0403 ampersand -42 at -38 eightinferior -101 eightsuperior 16 fiveinferior -88 fivesuperior 18 fourinferior -91 foursuperior 12 nineinferior -97 ninesuperior 26 oneinferior -84 onesuperior 25 parenright 20 public.kern2.asterisk 30 public.kern2.colon -10 public.kern2.comma -100 public.kern2.emdash -54 public.kern2.guillemotleft -56 public.kern2.guillemotright -30 public.kern2.quotedblleft 22 public.kern2.quotedblright 20 public.kern2.uni0402 22 public.kern2.uni0404 -11 public.kern2.uni0409 -65 public.kern2.uni040E 11 public.kern2.uni0410 -69 public.kern2.uni0416 -6 public.kern2.uni0417 -3 public.kern2.uni0425 4 public.kern2.uni0427 6 public.kern2.uni042A 22 public.kern2.uni0430 -44 public.kern2.uni0430.alt01 -49 public.kern2.uni0432 -16 public.kern2.uni0435 -49 public.kern2.uni0436 -23 public.kern2.uni0437 -26 public.kern2.uni043B -71 public.kern2.uni0442 -16 public.kern2.uni0443 2 public.kern2.uni0445 -4 public.kern2.uni0447 -8 public.kern2.uni0452 6 public.kern2.uni0456 -6 public.kern2.uni04BB 6 question 26 registered 30 seveninferior -83 sevensuperior 22 sixinferior -104 sixsuperior 20 slash -86 threeinferior -88 threesuperior 20 trademark 25 twoinferior -88 twosuperior 20 underscore -95 uni0405 -7 uni0408 -57 uni0414 -45 uni0424 -16 uni042F -24 uni0431 -14 uni0434 -62 uni0440 -13 uni0444 -49 uni044F -47 uni0455 -38 uni0458 -6 uni0493 -16 uni04AE 10 uni04AF 2 uni04B0 10 uni04B1 2 uni04D4 -112 zeroinferior -101 zerosuperior 26 public.kern1.uni0406 foursuperior -6 public.kern1.uni0409 ampersand 6 at 6 copyright 6 eightinferior 13 eightsuperior -13 fiveinferior 10 fivesuperior -4 fourinferior 13 foursuperior -8 nineinferior 16 ninesuperior -23 oneinferior 10 onesuperior -4 public.kern2.asterisk -56 public.kern2.comma -11 public.kern2.emdash 17 public.kern2.guillemotleft 31 public.kern2.guillemotright 6 public.kern2.quotedblleft -70 public.kern2.quotedblright -57 public.kern2.uni0402 -62 public.kern2.uni0404 2 public.kern2.uni0409 6 public.kern2.uni040E -42 public.kern2.uni0410 -2 public.kern2.uni0416 -6 public.kern2.uni0417 -6 public.kern2.uni0425 -7 public.kern2.uni0427 -49 public.kern2.uni042A -62 public.kern2.uni0430 9 public.kern2.uni0430.alt01 13 public.kern2.uni0435 13 public.kern2.uni0436 -3 public.kern2.uni043B 5 public.kern2.uni0442 -5 public.kern2.uni0443 -8 public.kern2.uni0445 -8 public.kern2.uni0447 -10 registered -14 seveninferior 13 sevensuperior -30 sixinferior 13 sixsuperior -16 slash -4 threeinferior 15 threesuperior -6 trademark -51 twoinferior 11 twosuperior -2 underscore -49 uni0414 -3 uni0424 2 uni042F -2 uni0431 16 uni0434 -10 uni0444 13 uni044F 6 uni0492 16 uni0493 14 uni04AE -62 uni04AF -9 uni04B0 -42 uni04B1 -9 uni04D4 -5 zeroinferior 16 zerosuperior -16 public.kern1.uni040B ampersand -6 at -12 copyright -10 eightsuperior -62 fivesuperior -62 foursuperior -60 ninesuperior -80 onesuperior -60 public.kern2.asterisk -90 public.kern2.emdash -17 public.kern2.guillemotleft -6 public.kern2.guillemotright -9 public.kern2.quotedblleft -97 public.kern2.quotedblright -81 public.kern2.uni0402 -89 public.kern2.uni0404 -21 public.kern2.uni0409 4 public.kern2.uni040E -68 public.kern2.uni0417 -16 public.kern2.uni0427 -95 public.kern2.uni042A -89 public.kern2.uni0430 -5 public.kern2.uni0430.alt01 -11 public.kern2.uni0435 -14 public.kern2.uni0437 -8 public.kern2.uni043B 7 public.kern2.uni0442 -43 public.kern2.uni0443 -52 public.kern2.uni0447 -67 question -8 registered -68 seveninferior -15 sevensuperior -83 sixsuperior -62 slash 8 threesuperior -56 trademark -92 twoinferior 4 twosuperior -56 uni0405 -3 uni0414 6 uni0424 -25 uni0431 -10 uni0434 6 uni0440 -16 uni0444 -10 uni044F 4 uni0455 -3 uni0458 -4 uni04AE -92 uni04AF -52 uni04B0 -86 uni04B1 -52 zerosuperior -62 public.kern1.uni040C ampersand -21 at -34 copyright -28 eightinferior 6 eightsuperior -17 fiveinferior 4 fivesuperior -14 fourinferior 6 foursuperior -32 nineinferior -6 ninesuperior -13 onesuperior -14 public.kern2.asterisk -16 public.kern2.comma 11 public.kern2.emdash -67 public.kern2.guillemotleft -33 public.kern2.guillemotright -21 public.kern2.quotedblleft -21 public.kern2.quotedblright -16 public.kern2.uni0402 -15 public.kern2.uni0404 -30 public.kern2.uni0409 10 public.kern2.uni040E -12 public.kern2.uni0410 10 public.kern2.uni0416 4 public.kern2.uni0417 -14 public.kern2.uni0427 -18 public.kern2.uni042A -15 public.kern2.uni0430 -13 public.kern2.uni0430.alt01 -26 public.kern2.uni0432 -2 public.kern2.uni0435 -26 public.kern2.uni0436 14 public.kern2.uni0437 -13 public.kern2.uni043B 22 public.kern2.uni0442 -46 public.kern2.uni0443 -33 public.kern2.uni0445 14 public.kern2.uni0447 -59 public.kern2.uni0456 -2 registered -21 seveninferior -24 sevensuperior -3 sixinferior 6 sixsuperior -33 slash 10 threeinferior 13 threesuperior -8 twoinferior 12 twosuperior -12 uni0405 -4 uni0408 3 uni0414 16 uni0424 -44 uni042F 3 uni0431 -24 uni0434 18 uni0440 -14 uni0444 -25 uni044F 14 uni0455 -4 uni0458 -5 uni0493 -2 uni04AE -12 uni04AF -36 uni04B0 -12 uni04B1 -36 uni04D4 13 zeroinferior 4 zerosuperior -18 public.kern1.uni040E ampersand -63 at -56 copyright -42 eightinferior -103 eightsuperior 7 fiveinferior -96 fivesuperior 6 fourinferior -110 foursuperior -11 nineinferior -96 ninesuperior 12 oneinferior -94 onesuperior 10 parenright 12 public.kern2.asterisk 14 public.kern2.colon -39 public.kern2.comma -122 public.kern2.emdash -69 public.kern2.guillemotleft -76 public.kern2.guillemotright -63 public.kern2.quotedblleft 6 public.kern2.quotedblright 20 public.kern2.uni0402 12 public.kern2.uni0404 -34 public.kern2.uni0409 -84 public.kern2.uni040E 12 public.kern2.uni0410 -111 public.kern2.uni0416 -9 public.kern2.uni0417 -11 public.kern2.uni0425 3 public.kern2.uni0427 8 public.kern2.uni042A 12 public.kern2.uni0430 -77 public.kern2.uni0430.alt01 -85 public.kern2.uni0432 -52 public.kern2.uni0435 -82 public.kern2.uni0436 -58 public.kern2.uni0437 -60 public.kern2.uni043B -98 public.kern2.uni0442 -41 public.kern2.uni0443 -45 public.kern2.uni0445 -42 public.kern2.uni0447 -46 public.kern2.uni0452 6 public.kern2.uni0456 -27 question 14 registered 12 seveninferior -84 sevensuperior 24 sixinferior -108 sixsuperior -14 slash -82 threeinferior -90 threesuperior 14 trademark 36 twoinferior -90 twosuperior 16 underscore -167 uni0405 -20 uni0408 -73 uni0414 -59 uni0424 -55 uni042F -46 uni0431 -33 uni0434 -95 uni0440 -49 uni0444 -78 uni044F -75 uni0455 -70 uni0458 -24 uni0493 -52 uni04AE 14 uni04AF -45 uni04B0 11 uni04B1 -45 uni04D4 -136 zeroinferior -108 zerosuperior 12 public.kern1.uni0410 ampersand -10 at -20 eightinferior 12 eightsuperior -64 exclamdown 28 fiveinferior 10 fivesuperior -54 fourinferior 10 foursuperior -46 nineinferior -5 ninesuperior -72 oneinferior 14 onesuperior -46 public.kern2.asterisk -90 public.kern2.comma 17 public.kern2.emdash -25 public.kern2.guillemotleft -14 public.kern2.guillemotright -10 public.kern2.quotedblleft -100 public.kern2.quotedblright -100 public.kern2.uni0402 -56 public.kern2.uni0404 -26 public.kern2.uni0409 18 public.kern2.uni040E -48 public.kern2.uni0410 15 public.kern2.uni0416 10 public.kern2.uni0417 -13 public.kern2.uni0425 17 public.kern2.uni0427 -81 public.kern2.uni042A -56 public.kern2.uni0430 -6 public.kern2.uni0430.alt01 -12 public.kern2.uni0435 -7 public.kern2.uni0436 11 public.kern2.uni0437 -3 public.kern2.uni043B 16 public.kern2.uni0442 -54 public.kern2.uni0443 -17 public.kern2.uni0447 -76 public.kern2.uni0452 -4 public.kern2.uni04BB -8 question -20 questiondown 40 registered -60 seveninferior -12 sevensuperior -84 sixinferior 7 sixsuperior -54 slash 20 threeinferior 20 threesuperior -46 trademark -85 twoinferior 20 twosuperior -36 uni0408 14 uni0414 18 uni0424 -38 uni042F 9 uni0431 -11 uni0434 14 uni0440 -10 uni0444 -6 uni044F 2 uni04AE -55 uni04AF -41 uni04B0 -55 uni04B1 -35 uni04D4 15 zeroinferior 20 zerosuperior -54 public.kern1.uni0412 ampersand -10 eightsuperior -11 fiveinferior -6 fivesuperior -12 foursuperior -10 ninesuperior -15 oneinferior -6 onesuperior -12 public.kern2.asterisk -20 public.kern2.comma -31 public.kern2.guillemotleft 20 public.kern2.guillemotright -10 public.kern2.quotedblleft -20 public.kern2.quotedblright -19 public.kern2.uni0402 -20 public.kern2.uni0409 -3 public.kern2.uni040E -24 public.kern2.uni0410 -19 public.kern2.uni0416 -14 public.kern2.uni0417 -5 public.kern2.uni0425 -20 public.kern2.uni0427 -27 public.kern2.uni042A -20 public.kern2.uni0436 -12 public.kern2.uni0437 -2 public.kern2.uni043B -4 public.kern2.uni0442 -10 public.kern2.uni0443 -5 public.kern2.uni0445 -10 public.kern2.uni0447 -14 question -18 registered -13 sevensuperior -20 sixsuperior -10 slash -17 threeinferior -6 threesuperior -12 trademark -20 twoinferior -12 twosuperior -13 underscore -60 uni0408 -8 uni0414 -21 uni0424 -4 uni042F -14 uni0431 3 uni0434 -22 uni044F -12 uni0492 7 uni0493 5 uni04AE -30 uni04AF -7 uni04B0 -30 uni04B1 -7 uni04D4 -19 zeroinferior 6 zerosuperior -15 public.kern1.uni0414 ampersand -6 at -12 copyright -9 eightinferior -4 eightsuperior -12 fiveinferior 3 fivesuperior -9 fourinferior 9 foursuperior -16 nineinferior -12 ninesuperior -10 onesuperior -6 parenright 9 public.kern2.asterisk -9 public.kern2.braceright 6 public.kern2.colon 3 public.kern2.comma 10 public.kern2.emdash -18 public.kern2.guillemotleft -18 public.kern2.guillemotright -12 public.kern2.quotedblleft -21 public.kern2.quotedblright -9 public.kern2.uni0402 -6 public.kern2.uni0404 -15 public.kern2.uni0409 11 public.kern2.uni040E -8 public.kern2.uni0410 6 public.kern2.uni0416 6 public.kern2.uni0417 -2 public.kern2.uni0425 3 public.kern2.uni0427 -6 public.kern2.uni042A -6 public.kern2.uni0430 -2 public.kern2.uni0430.alt01 -16 public.kern2.uni0435 -16 public.kern2.uni0436 10 public.kern2.uni0437 -6 public.kern2.uni043B 23 public.kern2.uni0442 -23 public.kern2.uni0445 8 public.kern2.uni0447 -45 registered -18 seveninferior -20 sixinferior -4 sixsuperior -15 slash 19 threeinferior 12 threesuperior -3 twoinferior 6 twosuperior -6 underscore 17 uni0408 6 uni0414 8 uni0424 -21 uni0431 -9 uni0434 8 uni0440 -6 uni0444 -12 uni044F 12 uni0458 72 uni04AE -9 uni04AF -21 uni04B0 -9 uni04B1 -19 uni04D4 5 zeroinferior -4 zerosuperior -15 public.kern1.uni041E ampersand -10 eightinferior 4 fiveinferior -2 fivesuperior -6 fourinferior -13 foursuperior 16 nineinferior 4 ninesuperior -12 oneinferior -9 onesuperior -10 public.kern2.asterisk -10 public.kern2.comma -35 public.kern2.emdash 20 public.kern2.guillemotleft 22 public.kern2.quotedblleft -14 public.kern2.quotedblright -15 public.kern2.uni0402 -11 public.kern2.uni0404 8 public.kern2.uni0409 -10 public.kern2.uni040E -27 public.kern2.uni0410 -26 public.kern2.uni0416 -30 public.kern2.uni0417 -6 public.kern2.uni0425 -18 public.kern2.uni0427 -12 public.kern2.uni042A -11 public.kern2.uni0436 -3 public.kern2.uni043B -11 public.kern2.uni0442 3 public.kern2.uni0443 10 public.kern2.uni0447 -6 question -14 seveninferior 18 sevensuperior -22 sixinferior -2 slash -10 threeinferior -6 threesuperior -5 trademark -17 twoinferior -9 underscore -60 uni0408 -16 uni0414 -39 uni0424 11 uni042F -13 uni0431 5 uni0434 -30 uni044F -1 uni0492 14 uni0493 3 uni04AE -32 uni04AF 4 uni04B0 -31 uni04B1 4 uni04D4 -23 public.kern1.uni0421 ampersand -8 at -11 eightinferior -3 fiveinferior 2 fourinferior 3 nineinferior -8 ninesuperior 10 oneinferior -16 onesuperior 6 public.kern2.asterisk 10 public.kern2.comma -37 public.kern2.emdash -20 public.kern2.quotedblleft 4 public.kern2.quotedblright 10 public.kern2.uni0404 -13 public.kern2.uni0409 -2 public.kern2.uni040E -5 public.kern2.uni0410 -15 public.kern2.uni0416 -4 public.kern2.uni0417 -3 public.kern2.uni0427 -3 public.kern2.uni0430 -10 public.kern2.uni0430.alt01 -10 public.kern2.uni0435 -10 public.kern2.uni0436 -5 public.kern2.uni0437 -3 public.kern2.uni043B -2 public.kern2.uni0442 -3 public.kern2.uni0447 -5 registered 9 seveninferior -12 sevensuperior 3 sixinferior 5 sixsuperior 3 slash -10 threeinferior 2 threesuperior 6 trademark 6 twoinferior 1 twosuperior 8 underscore -24 uni0414 -7 uni0424 -5 uni042F -9 uni0431 -2 uni0434 -12 uni0440 -5 uni0444 -10 uni044F -12 uni04AE -5 uni04B0 -5 uni04D4 -15 zeroinferior -4 zerosuperior 11 public.kern1.uni0430 eightsuperior -5 fivesuperior -12 foursuperior -6 nineinferior -5 ninesuperior -35 oneinferior -6 onesuperior -22 public.kern2.asterisk -53 public.kern2.comma 6 public.kern2.guillemotleft 6 public.kern2.guillemotright -12 public.kern2.quotedblleft -60 public.kern2.quotedblright -30 public.kern2.uni0402 -50 public.kern2.uni0409 16 public.kern2.uni040E -56 public.kern2.uni0410 8 public.kern2.uni0416 5 public.kern2.uni0417 -8 public.kern2.uni0427 -70 public.kern2.uni042A -50 public.kern2.uni043B 9 public.kern2.uni0442 -15 public.kern2.uni0443 -10 public.kern2.uni0447 -37 registered -10 seveninferior -10 sevensuperior -32 sixinferior -4 sixsuperior -10 slash 5 threeinferior 5 threesuperior -10 trademark -34 twoinferior 10 twosuperior -10 uni0414 13 uni0424 -9 uni0434 6 uni044F 2 uni04AE -64 uni04AF -16 uni04B0 -64 uni04B1 -16 uni04D4 8 zeroinferior 10 zerosuperior -10 public.kern1.uni0430.alt01 ninesuperior -13 public.kern2.asterisk -6 public.kern2.quotedblleft -15 public.kern2.quotedblright -10 public.kern2.uni0402 -13 public.kern2.uni040E -21 public.kern2.uni0427 -17 public.kern2.uni042A -13 public.kern2.uni043B 3 public.kern2.uni0442 -4 public.kern2.uni0443 -3 public.kern2.uni0447 -12 registered -6 sevensuperior -13 slash 2 uni0434 2 uni0440 -3 uni044F 2 uni04AE -25 uni04AF -18 uni04B0 -25 uni04B1 -3 public.kern1.uni0431 eightinferior 13 fiveinferior 12 fourinferior 13 foursuperior 13 nineinferior 23 ninesuperior -14 oneinferior 21 onesuperior -6 public.kern2.asterisk -20 public.kern2.comma -27 public.kern2.emdash 20 public.kern2.guillemotleft 35 public.kern2.guillemotright -4 public.kern2.quotedblleft -32 public.kern2.quotedblright -29 public.kern2.uni0402 -45 public.kern2.uni0404 10 public.kern2.uni040E -55 public.kern2.uni0410 -7 public.kern2.uni0416 -26 public.kern2.uni0417 -4 public.kern2.uni0425 -15 public.kern2.uni0427 -31 public.kern2.uni042A -45 public.kern2.uni0430 10 public.kern2.uni0430.alt01 8 public.kern2.uni0435 10 public.kern2.uni0436 -10 public.kern2.uni0437 -2 public.kern2.uni0442 -1 public.kern2.uni0443 -7 public.kern2.uni0445 -17 public.kern2.uni0447 -10 registered -5 seveninferior 20 sevensuperior -14 sixinferior 18 slash 4 threeinferior 13 trademark -15 twoinferior 8 twosuperior 10 underscore -50 uni0408 -6 uni0414 -13 uni0424 4 uni042F -18 uni0431 6 uni0434 -19 uni0444 10 uni0492 6 uni0493 9 uni04AE -74 uni04AF -13 uni04B0 -71 uni04B1 -13 uni04D4 -7 zeroinferior 36 public.kern1.uni0432 eightsuperior -6 fiveinferior -2 fivesuperior -6 fourinferior 4 ninesuperior -14 oneinferior -5 onesuperior -6 parenright -6 public.kern2.asterisk -21 public.kern2.braceright -6 public.kern2.colon -4 public.kern2.comma -9 public.kern2.guillemotleft 10 public.kern2.guillemotright -5 public.kern2.quotedblleft -24 public.kern2.quotedblright -22 public.kern2.uni0400 -6 public.kern2.uni0402 -40 public.kern2.uni0404 -3 public.kern2.uni0409 6 public.kern2.uni040E -50 public.kern2.uni0410 -10 public.kern2.uni0416 -7 public.kern2.uni0417 -10 public.kern2.uni0425 -12 public.kern2.uni0427 -41 public.kern2.uni042A -40 public.kern2.uni0430 4 public.kern2.uni0430.alt01 2 public.kern2.uni0435 5 public.kern2.uni0436 -3 public.kern2.uni043B 9 public.kern2.uni0442 -1 public.kern2.uni0443 -12 public.kern2.uni0445 -6 public.kern2.uni0447 -8 public.kern2.uni0452 -2 public.kern2.uni04BB -2 question -4 registered -13 seveninferior -3 sevensuperior -33 sixsuperior -6 slash -16 threeinferior 2 trademark -28 twoinferior 1 underscore -41 uni0414 -9 uni042F -9 uni0431 3 uni0434 -9 uni0444 2 uni044F -5 uni0492 6 uni0493 9 uni04AE -60 uni04AF -14 uni04B0 -60 uni04B1 -14 zerosuperior -12 public.kern1.uni0433 ampersand -31 copyright 2 eightinferior -33 eightsuperior 10 fiveinferior -20 fivesuperior 15 fourinferior -67 foursuperior 21 nineinferior -33 oneinferior -33 onesuperior 8 parenright -6 public.kern2.asterisk 6 public.kern2.braceright -6 public.kern2.comma -107 public.kern2.emdash -6 public.kern2.guillemotleft -6 public.kern2.guillemotright 4 public.kern2.quotedblleft 11 public.kern2.quotedblright 17 public.kern2.uni0402 -14 public.kern2.uni0404 3 public.kern2.uni0409 -57 public.kern2.uni040E -33 public.kern2.uni0410 -54 public.kern2.uni0416 -46 public.kern2.uni0425 -52 public.kern2.uni0427 -13 public.kern2.uni042A -14 public.kern2.uni0430.alt01 -1 public.kern2.uni0435 -1 public.kern2.uni0436 4 public.kern2.uni0437 2 public.kern2.uni043B -31 public.kern2.uni0442 10 public.kern2.uni0443 6 public.kern2.uni0445 8 public.kern2.uni0447 13 public.kern2.uni0452 -6 public.kern2.uni04BB -6 registered 15 seveninferior -6 sixinferior -56 sixsuperior 10 slash -55 threeinferior -23 threesuperior 21 trademark -2 twoinferior -26 twosuperior 18 underscore -100 uni0408 -67 uni0414 -47 uni0424 6 uni042F -6 uni0431 7 uni0434 -21 uni0440 5 uni0444 -1 uni044F -1 uni0455 2 uni0492 6 uni04AE -54 uni04AF 6 uni04B0 -54 uni04B1 6 uni04D4 -90 zeroinferior -33 zerosuperior 10 public.kern1.uni0434 ampersand -2 at -7 copyright -8 eightinferior 6 eightsuperior -3 fivesuperior -9 fourinferior 12 foursuperior 6 nineinferior -10 ninesuperior -3 onesuperior -12 parenright 17 public.kern2.asterisk -6 public.kern2.braceright 6 public.kern2.comma 11 public.kern2.emdash -10 public.kern2.guillemotleft -10 public.kern2.guillemotright -5 public.kern2.quotedblleft -6 public.kern2.quotedblright -6 public.kern2.uni0402 -19 public.kern2.uni0404 -6 public.kern2.uni0409 17 public.kern2.uni040E -40 public.kern2.uni0410 13 public.kern2.uni0416 8 public.kern2.uni0417 -5 public.kern2.uni0425 7 public.kern2.uni0427 -26 public.kern2.uni042A -19 public.kern2.uni0430 -2 public.kern2.uni0430.alt01 -12 public.kern2.uni0435 -12 public.kern2.uni0436 11 public.kern2.uni0437 -2 public.kern2.uni043B 22 public.kern2.uni0442 -7 public.kern2.uni0443 12 public.kern2.uni0445 9 public.kern2.uni0447 -6 public.kern2.uni04BB 3 seveninferior -15 sevensuperior -21 sixinferior 6 sixsuperior -3 slash 36 threeinferior 12 trademark -27 twoinferior 10 twosuperior -6 underscore 36 uni0408 12 uni0414 14 uni0424 -13 uni042F 6 uni0431 -7 uni0434 18 uni0440 5 uni0444 -9 uni044F 11 uni0455 -2 uni0458 74 uni04AE -48 uni04AF -4 uni04B0 -48 uni04B1 -4 uni04D4 14 zeroinferior 3 zerosuperior -3 public.kern1.uni0435 at 10 eightinferior 10 eightsuperior 8 fiveinferior 3 fivesuperior 13 fourinferior 5 foursuperior 13 nineinferior 10 ninesuperior -15 oneinferior 5 public.kern2.asterisk -20 public.kern2.comma -20 public.kern2.emdash 10 public.kern2.guillemotleft 40 public.kern2.guillemotright 10 public.kern2.quotedblleft -31 public.kern2.quotedblright -5 public.kern2.uni0400 -3 public.kern2.uni0402 -30 public.kern2.uni0404 10 public.kern2.uni040E -57 public.kern2.uni0410 -8 public.kern2.uni0416 -23 public.kern2.uni0417 -4 public.kern2.uni0425 -17 public.kern2.uni0427 -28 public.kern2.uni042A -30 public.kern2.uni0430 10 public.kern2.uni0436 -7 public.kern2.uni0442 2 public.kern2.uni0443 -6 public.kern2.uni0445 -11 public.kern2.uni0447 -6 seveninferior 20 sevensuperior -12 sixinferior 5 sixsuperior 8 threeinferior 6 threesuperior 10 trademark -15 twoinferior 5 twosuperior 18 underscore -34 uni0405 -10 uni0414 -13 uni0424 10 uni042F -16 uni0431 3 uni0434 -11 uni044F 7 uni0492 9 uni0493 10 uni04AE -68 uni04AF -8 uni04B0 -62 uni04B1 -8 uni04D4 -8 zeroinferior 20 zerosuperior 8 public.kern1.uni0436 ampersand -12 at -8 eightinferior -4 eightsuperior 2 fiveinferior 6 fivesuperior 3 fourinferior 6 foursuperior 16 nineinferior -14 ninesuperior -8 onesuperior -12 public.kern2.comma 17 public.kern2.emdash -18 public.kern2.guillemotleft -11 public.kern2.guillemotright -3 public.kern2.quotedblleft 6 public.kern2.quotedblright 9 public.kern2.uni0402 -18 public.kern2.uni0404 -3 public.kern2.uni0409 13 public.kern2.uni040E -39 public.kern2.uni0410 11 public.kern2.uni0416 14 public.kern2.uni0417 -9 public.kern2.uni0425 13 public.kern2.uni0427 -29 public.kern2.uni042A -18 public.kern2.uni0430 -2 public.kern2.uni0430.alt01 -10 public.kern2.uni0435 -10 public.kern2.uni0436 11 public.kern2.uni0437 -2 public.kern2.uni043B 18 public.kern2.uni0442 4 public.kern2.uni0443 8 public.kern2.uni0445 9 registered 5 seveninferior -14 sevensuperior -18 sixsuperior 2 slash 4 threeinferior 12 threesuperior 12 trademark -20 twoinferior 9 twosuperior 2 underscore 4 uni0405 -3 uni0414 16 uni0424 -4 uni042F 9 uni0431 -1 uni0434 17 uni0440 1 uni0444 -10 uni044F 12 uni0455 -3 uni0492 6 uni04AE -58 uni04AF 4 uni04B0 -58 uni04B1 4 uni04D4 6 zeroinferior -4 zerosuperior 2 public.kern1.uni0438 fiveinferior -3 fourinferior -3 nineinferior -6 oneinferior -9 public.kern2.guillemotleft 6 public.kern2.guillemotright -6 public.kern2.quotedblright 6 public.kern2.uni0402 -16 public.kern2.uni040E -31 public.kern2.uni0427 -28 public.kern2.uni042A -16 seveninferior -6 sixinferior -5 slash 8 trademark -14 twoinferior -6 uni0424 -5 uni044F 2 uni04AE -50 uni04B0 -50 zeroinferior -6 public.kern1.uni0441 ampersand -4 eightsuperior 15 fiveinferior 8 fivesuperior 15 fourinferior 10 foursuperior 25 oneinferior 10 public.kern2.asterisk -8 public.kern2.comma -16 public.kern2.emdash -10 public.kern2.guillemotleft 5 public.kern2.guillemotright -4 public.kern2.quotedblleft -15 public.kern2.uni0402 -24 public.kern2.uni0409 6 public.kern2.uni040E -39 public.kern2.uni0410 8 public.kern2.uni0416 -12 public.kern2.uni0425 -8 public.kern2.uni0427 -24 public.kern2.uni042A -24 public.kern2.uni0430 -3 public.kern2.uni0430.alt01 -7 public.kern2.uni0435 -9 public.kern2.uni0437 -2 public.kern2.uni043B -2 public.kern2.uni0445 -5 public.kern2.uni0447 -6 public.kern2.uni04BB -4 seveninferior 3 sevensuperior -6 sixinferior 5 sixsuperior 15 slash -10 threeinferior 10 threesuperior 15 twoinferior 8 twosuperior 15 underscore -10 uni0405 4 uni0408 10 uni0414 -6 uni042F -6 uni0431 -1 uni0434 -8 uni0444 -4 uni044F 4 uni0492 9 uni04AE -36 uni04B0 -36 uni04D4 6 zeroinferior 15 zerosuperior 15 public.kern1.uni0443 ampersand -18 at -10 eightinferior -29 eightsuperior 28 fiveinferior -29 fivesuperior 28 fourinferior -36 foursuperior 30 nineinferior -23 ninesuperior 33 oneinferior -26 parenright -10 public.kern2.asterisk 20 public.kern2.comma -66 public.kern2.emdash -10 public.kern2.guillemotleft -6 public.kern2.guillemotright -6 public.kern2.quotedblleft 40 public.kern2.quotedblright 40 public.kern2.uni0402 6 public.kern2.uni0404 10 public.kern2.uni0409 -53 public.kern2.uni040E -31 public.kern2.uni0410 -27 public.kern2.uni0416 -39 public.kern2.uni0425 -12 public.kern2.uni0427 -6 public.kern2.uni042A 6 public.kern2.uni0430 -14 public.kern2.uni0430.alt01 -17 public.kern2.uni0435 -13 public.kern2.uni0436 4 public.kern2.uni0437 -2 public.kern2.uni043B -46 public.kern2.uni0442 9 public.kern2.uni0443 23 public.kern2.uni0445 10 public.kern2.uni0447 10 public.kern2.uni0452 -5 public.kern2.uni04BB -5 registered 38 seveninferior -14 sevensuperior 9 sixinferior -44 sixsuperior 30 slash -15 threeinferior -24 threesuperior 16 trademark 20 twoinferior -24 twosuperior 16 underscore -80 uni0405 10 uni0408 -39 uni0414 -49 uni0424 -5 uni042F -15 uni0431 -3 uni0434 -39 uni0444 -12 uni044F -21 uni0455 -8 uni04AE -21 uni04AF 17 uni04B0 -20 uni04B1 17 uni04D4 -27 zeroinferior -32 zerosuperior 38 public.kern1.uni044A ampersand 13 eightinferior 13 eightsuperior -46 fiveinferior 12 fivesuperior -29 fourinferior 19 foursuperior -36 nineinferior 18 ninesuperior -44 oneinferior 6 onesuperior -28 parenright -6 public.kern2.asterisk -48 public.kern2.comma -4 public.kern2.emdash -4 public.kern2.guillemotleft 27 public.kern2.guillemotright 8 public.kern2.quotedblleft -64 public.kern2.quotedblright -50 public.kern2.uni0402 -90 public.kern2.uni0409 13 public.kern2.uni040E -50 public.kern2.uni0416 -6 public.kern2.uni0425 -12 public.kern2.uni0427 -70 public.kern2.uni042A -90 public.kern2.uni0430 5 public.kern2.uni0430.alt01 9 public.kern2.uni0435 9 public.kern2.uni0436 -8 public.kern2.uni043B 14 public.kern2.uni0442 -27 public.kern2.uni0443 -35 public.kern2.uni0445 -10 public.kern2.uni0447 -32 public.kern2.uni0452 -6 public.kern2.uni04BB -6 question -10 registered -52 seveninferior 10 sevensuperior -52 sixinferior 15 sixsuperior -46 threeinferior 12 threesuperior -18 trademark -66 twoinferior 14 twosuperior -17 underscore -24 uni0408 4 uni0414 -5 uni042F -7 uni0431 9 uni0434 -3 uni0440 -4 uni0444 9 uni044F 3 uni0455 2 uni0493 11 uni04AE -104 uni04AF -32 uni04B0 -57 uni04B1 -32 uni04D4 -6 zeroinferior 15 zerosuperior -46 public.kern1.uni0456 oneinferior -12 public.kern2.comma 10 public.kern2.guillemotleft -4 public.kern2.quotedblleft -20 public.kern2.quotedblright -10 public.kern2.uni0402 -4 public.kern2.uni0409 5 public.kern2.uni040E -20 public.kern2.uni0410 2 public.kern2.uni0427 -26 public.kern2.uni042A -4 public.kern2.uni043B 9 public.kern2.uni0442 -16 public.kern2.uni0443 -10 public.kern2.uni0447 -22 slash 4 uni0408 10 uni0414 5 uni0424 -13 uni0434 9 uni044F 2 uni04AE -24 uni04AF -10 uni04B0 -24 uni04B1 -10 uni04D4 2 public.kern1.uni045B eightsuperior -8 fiveinferior 4 fivesuperior -10 foursuperior -4 nineinferior -4 ninesuperior -22 oneinferior -6 onesuperior -20 public.kern2.asterisk -40 public.kern2.comma 10 public.kern2.guillemotleft 6 public.kern2.guillemotright -8 public.kern2.quotedblleft -50 public.kern2.quotedblright -30 public.kern2.uni0402 -51 public.kern2.uni0409 6 public.kern2.uni040E -46 public.kern2.uni0417 -17 public.kern2.uni0427 -59 public.kern2.uni042A -51 public.kern2.uni0437 -5 public.kern2.uni043B 6 public.kern2.uni0442 -13 public.kern2.uni0443 -13 public.kern2.uni0447 -34 registered -25 seveninferior -2 sevensuperior -27 sixsuperior -8 slash 4 threeinferior 6 threesuperior -8 trademark -35 twoinferior 6 twosuperior -4 uni0414 6 uni0424 -12 uni0431 -4 uni0434 6 uni044F 2 uni04AE -50 uni04AF -13 uni04B0 -50 uni04B1 -13 zeroinferior 6 zerosuperior -8 public.kern1.uni0496 ampersand -15 at -21 copyright -25 eightinferior 12 eightsuperior -26 fiveinferior 7 fivesuperior -14 fourinferior 12 foursuperior -41 nineinferior -6 ninesuperior -18 onesuperior -14 parenright 31 public.kern2.asterisk -22 public.kern2.braceright 9 public.kern2.colon 6 public.kern2.comma 21 public.kern2.emdash -67 public.kern2.guillemotleft -33 public.kern2.guillemotright -18 public.kern2.quotedblleft -25 public.kern2.quotedblright -22 public.kern2.uni0402 -18 public.kern2.uni0404 -32 public.kern2.uni0409 20 public.kern2.uni040E -20 public.kern2.uni0410 11 public.kern2.uni0416 9 public.kern2.uni0417 -14 public.kern2.uni0425 3 public.kern2.uni0427 -21 public.kern2.uni042A -18 public.kern2.uni0430 -3 public.kern2.uni0430.alt01 -29 public.kern2.uni0432 5 public.kern2.uni0435 -26 public.kern2.uni0436 15 public.kern2.uni0437 -4 public.kern2.uni043B 31 public.kern2.uni0442 -46 public.kern2.uni0443 17 public.kern2.uni0445 12 public.kern2.uni0447 -62 public.kern2.uni0452 5 public.kern2.uni0456 5 public.kern2.uni04BB 5 registered -24 seveninferior -24 sevensuperior -9 sixinferior 12 sixsuperior -36 slash 41 threeinferior 16 threesuperior -14 trademark -6 twoinferior 15 twosuperior -12 underscore 39 uni0405 -4 uni0408 14 uni0414 31 uni0424 -49 uni042F 7 uni0431 -22 uni0434 30 uni0440 2 uni0444 -25 uni044F 16 uni0455 -2 uni0458 79 uni0493 5 uni04AE -18 uni04AF -36 uni04B0 -18 uni04B1 -25 uni04D4 18 zeroinferior 12 zerosuperior -24 public.kern1.uni0497 ampersand -4 at -12 copyright -12 eightsuperior -10 fiveinferior 4 fivesuperior -9 fourinferior 9 foursuperior 6 nineinferior -12 ninesuperior -15 onesuperior -19 parenright 31 public.kern2.asterisk -20 public.kern2.braceright 11 public.kern2.colon 9 public.kern2.comma 19 public.kern2.emdash -24 public.kern2.guillemotleft -21 public.kern2.guillemotright -9 public.kern2.quotedblleft -14 public.kern2.quotedblright -10 public.kern2.uni0402 -36 public.kern2.uni0404 -15 public.kern2.uni0409 21 public.kern2.uni040E -43 public.kern2.uni0410 11 public.kern2.uni0416 17 public.kern2.uni0417 -10 public.kern2.uni0425 11 public.kern2.uni0427 -37 public.kern2.uni042A -36 public.kern2.uni0430.alt01 -12 public.kern2.uni0435 -12 public.kern2.uni0436 17 public.kern2.uni0437 -3 public.kern2.uni043B 28 public.kern2.uni0442 -8 public.kern2.uni0443 18 public.kern2.uni0445 16 public.kern2.uni0447 -12 question -6 registered -7 seveninferior -18 sevensuperior -28 sixsuperior -10 slash 52 threeinferior 13 trademark -21 twoinferior 12 twosuperior -11 underscore 49 uni0408 10 uni0414 29 uni0424 -14 uni042F 12 uni0431 -6 uni0434 34 uni0440 5 uni0444 -12 uni044F 19 uni0458 86 uni04AE -61 uni04AF -9 uni04B0 -61 uni04B1 -7 uni04D4 17 zerosuperior -10 public.kern1.w V -12 X -22 ampersand -14 eightinferior -29 eightsuperior 24 fiveinferior -24 fivesuperior 36 fourinferior -34 foursuperior 30 nineinferior -26 ninesuperior 36 oneinferior -16 onesuperior 6 parenright -10 public.kern2.A -22 public.kern2.C 10 public.kern2.J -24 public.kern2.S 10 public.kern2.U -1 public.kern2.W -5 public.kern2.Y -23 public.kern2.Z -4 public.kern2.a -9 public.kern2.a.alt01 -8 public.kern2.asterisk 18 public.kern2.c -10 public.kern2.comma -62 public.kern2.emdash -3 public.kern2.g -18 public.kern2.guillemotleft -2 public.kern2.guillemotright -4 public.kern2.quotedblleft 38 public.kern2.quotedblright 40 public.kern2.s -3 public.kern2.w 12 public.kern2.y 17 registered 38 seveninferior -12 sevensuperior 8 sixinferior -32 sixsuperior 33 slash -10 threeinferior -32 threesuperior 16 trademark 16 twoinferior -24 twosuperior 20 underscore -40 v 16 zeroinferior -22 zerosuperior 38 public.kern1.y V -12 X -12 ampersand -18 at -10 eightinferior -29 eightsuperior 28 fiveinferior -29 fivesuperior 28 fourinferior -36 foursuperior 30 nineinferior -23 ninesuperior 33 oneinferior -26 parenright -10 public.kern2.A -27 public.kern2.C 10 public.kern2.J -39 public.kern2.S 10 public.kern2.T 6 public.kern2.W -5 public.kern2.Y -21 public.kern2.a -14 public.kern2.a.alt01 -10 public.kern2.asterisk 20 public.kern2.c -13 public.kern2.comma -66 public.kern2.emdash -10 public.kern2.f 3 public.kern2.g -20 public.kern2.guillemotleft -2 public.kern2.guillemotright -2 public.kern2.quotedblleft 40 public.kern2.quotedblright 40 public.kern2.s -8 public.kern2.w 17 public.kern2.y 23 registered 38 seveninferior -14 sevensuperior 9 sixinferior -44 sixsuperior 30 slash -15 threeinferior -24 threesuperior 16 trademark 20 twoinferior -24 twosuperior 16 underscore -80 v 23 zeroinferior -32 zerosuperior 38 public.kern1.z V -30 X 6 ampersand -12 at -9 eightinferior 10 eightsuperior 20 fiveinferior 8 fivesuperior 18 fourinferior 18 foursuperior 40 nineinferior -10 oneinferior 8 public.kern2.A 6 public.kern2.J 3 public.kern2.T -24 public.kern2.W -24 public.kern2.Y -40 public.kern2.Z -8 public.kern2.a.alt01 -12 public.kern2.asterisk 2 public.kern2.c -11 public.kern2.comma 2 public.kern2.emdash -20 public.kern2.guillemotleft -2 public.kern2.quotedblright 20 public.kern2.s -10 registered 15 seveninferior -2 sixinferior 10 sixsuperior 20 threeinferior 10 threesuperior 10 trademark 10 twoinferior 16 twosuperior 10 underscore 10 zeroinferior 12 zerosuperior 20 q underscore 28 question V 15 public.kern2.A -20 public.kern2.T 16 public.kern2.W 15 public.kern2.Y 15 public.kern2.comma -144 public.kern2.quotedblleft 20 public.kern2.quotedblright 10 public.kern2.uni0410 -20 uni04AE 15 uni04D4 -16 questiondown V -60 b -40 public.kern2.A 10 public.kern2.C -30 public.kern2.J -18 public.kern2.T -60 public.kern2.U -30 public.kern2.W -24 public.kern2.Y -65 public.kern2.a -20 public.kern2.a.alt01 -30 public.kern2.c -30 public.kern2.dotlessj 48 public.kern2.g -10 public.kern2.i -2 public.kern2.s -10 public.kern2.t -20 public.kern2.u -10 public.kern2.uni0402 -60 public.kern2.uni0404 -30 public.kern2.uni0410 10 public.kern2.uni0430 -20 public.kern2.uni0435 -30 public.kern2.uni0443 -16 public.kern2.uni0456 -6 public.kern2.w -30 public.kern2.y -16 public.kern2.z -5 uni0408 -18 uni0455 -10 uni0458 48 uni04AE -65 uni04D4 8 v -30 quotedbl uni0457 4 quotedblbase dotlessj 12 j 12 jacute 12 jcircumflex 12 uni0443 -46 uni0458 35 uni045E -46 uni04EF -46 uni04F1 -46 uni04F3 -46 y -2 yacute -2 ycircumflex -2 ydieresis -2 ydotbelow -2 ygrave -2 yhook -2 ytilde -2 quotedblleft AE -124 AEacute -124 uni0457 14 quotedblright AE -129 AEacute -129 ibreve 28 icircumflex 30 idieresis 30 imacron 28 itilde 30 uni0457 13 quoteleft AE -124 AEacute -124 uni0457 14 quoteright AE -129 AEacute -129 ibreve 28 icircumflex 30 idieresis 30 imacron 28 itilde 30 uni0457 13 quotesinglbase dotlessj 12 j 12 jacute 12 jcircumflex 12 uni0443 -46 uni0458 35 uni045E -46 uni04EF -46 uni04F1 -46 uni04F3 -46 y -2 yacute -2 ycircumflex -2 ydieresis -2 ydotbelow -2 ygrave -2 yhook -2 ytilde -2 quotesingle uni0457 4 registered V 10 public.kern2.A -60 public.kern2.C -1 public.kern2.T 30 public.kern2.W 15 public.kern2.Y 5 public.kern2.Z -3 public.kern2.a.alt01 -5 public.kern2.c -5 public.kern2.u 10 public.kern2.uni0402 30 public.kern2.uni0404 -3 public.kern2.uni0410 -60 public.kern2.uni0425 -4 public.kern2.uni0435 -5 public.kern2.uni0443 38 public.kern2.uni0445 20 public.kern2.w 38 public.kern2.y 38 uni04AE 5 uni04D4 -48 v 56 x 20 seveninferior V -40 X -30 eightinferior -15 fiveinferior -7 fourinferior -15 nineinferior -1 oneinferior -2 public.kern2.A -2 public.kern2.C 13 public.kern2.J -20 public.kern2.S -12 public.kern2.T -52 public.kern2.U -5 public.kern2.W -25 public.kern2.Y -60 public.kern2.Z -7 public.kern2.a.alt01 32 public.kern2.c 18 public.kern2.comma -70 public.kern2.f -10 public.kern2.t -5 public.kern2.uni0402 -52 public.kern2.uni0404 13 public.kern2.uni0409 -12 public.kern2.uni040E -64 public.kern2.uni0410 -10 public.kern2.uni0416 -30 public.kern2.uni0417 -17 public.kern2.uni0425 -30 public.kern2.uni0427 -20 public.kern2.uni042A -52 public.kern2.uni0430 -4 public.kern2.uni0430.alt01 14 public.kern2.uni0435 18 public.kern2.uni0436 -21 public.kern2.uni043B -19 public.kern2.uni0442 -6 public.kern2.uni0443 -5 public.kern2.uni0445 -10 public.kern2.uni0447 -12 public.kern2.w -12 public.kern2.y -5 public.kern2.z -2 seveninferior 12 sixinferior -12 threeinferior -1 uni0405 -12 uni0408 -20 uni0414 -23 uni0424 8 uni042F -24 uni0431 14 uni0434 -28 uni0444 14 uni044F -2 uni0492 20 uni0493 6 uni04AE -60 uni04AF -14 uni04B0 -54 uni04B1 -14 uni04D4 -10 v -10 x -10 zeroinferior -6 sevensuperior V 20 X 24 b 22 eightsuperior -15 fivesuperior -7 foursuperior -15 fraction -27 germandbls.alt01 -2 icircumflex 2 jcircumflex 2 ninesuperior -1 onesuperior -2 parenright 20 public.kern2.A -84 public.kern2.C -12 public.kern2.J -37 public.kern2.S -12 public.kern2.T 30 public.kern2.W 30 public.kern2.Y 18 public.kern2.a -12 public.kern2.a.alt01 -24 public.kern2.c -19 public.kern2.comma -70 public.kern2.dotlessi 10 public.kern2.f -10 public.kern2.g -35 public.kern2.h 27 public.kern2.i 4 public.kern2.s -30 public.kern2.t -5 public.kern2.uni0402 30 public.kern2.uni0404 -12 public.kern2.uni0409 -89 public.kern2.uni040E 12 public.kern2.uni0410 -84 public.kern2.uni0416 -4 public.kern2.uni0417 -10 public.kern2.uni0425 24 public.kern2.uni0427 10 public.kern2.uni042A 30 public.kern2.uni0430 -12 public.kern2.uni0430.alt01 -33 public.kern2.uni0432 -6 public.kern2.uni0435 -19 public.kern2.uni0436 -21 public.kern2.uni0437 -18 public.kern2.uni043B -69 public.kern2.uni0442 -14 public.kern2.uni0443 10 public.kern2.uni0445 -10 public.kern2.uni0447 -10 public.kern2.uni04BB 27 public.kern2.w 5 public.kern2.y 10 public.kern2.z -10 sevensuperior 12 sixsuperior -12 thorn 20 threesuperior -1 twosuperior -5 uni0405 -12 uni0408 -37 uni0414 -58 uni0424 -31 uni042F -44 uni0431 -21 uni0434 -52 uni0444 -33 uni044F -34 uni0455 -30 uni0457 4 uni0493 -6 uni04AE 18 uni04AF 2 uni04B0 18 uni04B1 2 uni04D4 -84 x -10 zerosuperior -6 sixinferior V -62 eightinferior -4 fiveinferior -5 fourinferior 10 nineinferior -15 oneinferior -16 public.kern2.A 7 public.kern2.C -2 public.kern2.J 12 public.kern2.S 1 public.kern2.T -62 public.kern2.U -10 public.kern2.W -42 public.kern2.Y -70 public.kern2.Z -2 public.kern2.a 10 public.kern2.a.alt01 10 public.kern2.c 10 public.kern2.dotlessi -10 public.kern2.f -18 public.kern2.g -15 public.kern2.s 1 public.kern2.t -25 public.kern2.uni0402 -62 public.kern2.uni0404 -2 public.kern2.uni0409 22 public.kern2.uni040E -42 public.kern2.uni0410 7 public.kern2.uni0416 6 public.kern2.uni0427 -60 public.kern2.uni042A -62 public.kern2.uni0430 10 public.kern2.uni0430.alt01 6 public.kern2.uni0435 10 public.kern2.uni043B 27 public.kern2.uni0442 -31 public.kern2.uni0443 -29 public.kern2.uni0445 -8 public.kern2.uni0447 -39 public.kern2.w -32 public.kern2.y -29 public.kern2.z 8 seveninferior -15 threeinferior -4 uni0405 3 uni0408 12 uni0414 6 uni0424 -6 uni042F 3 uni0431 6 uni0434 9 uni0444 6 uni044F 4 uni0455 3 uni0492 10 uni0493 6 uni04AE -70 uni04AF -46 uni04B0 -70 uni04B1 -46 uni04D4 7 v -32 x -8 sixsuperior X -10 b 18 eightsuperior -4 fivesuperior -5 foursuperior 10 fraction 10 germandbls.alt01 2 ninesuperior -17 onesuperior -16 p 20 public.kern2.A -54 public.kern2.J -45 public.kern2.T 20 public.kern2.W 5 public.kern2.Z -18 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 18 public.kern2.g -5 public.kern2.h 9 public.kern2.i 4 public.kern2.t 14 public.kern2.u 20 public.kern2.uni0402 20 public.kern2.uni0409 -71 public.kern2.uni040E -8 public.kern2.uni0410 -54 public.kern2.uni0416 -23 public.kern2.uni0425 -10 public.kern2.uni0427 10 public.kern2.uni042A 20 public.kern2.uni0436 4 public.kern2.uni043B -44 public.kern2.uni0442 10 public.kern2.uni0443 30 public.kern2.uni0445 12 public.kern2.uni0447 12 public.kern2.uni04BB 9 public.kern2.w 37 public.kern2.y 30 public.kern2.z 20 sevensuperior -15 thorn 20 threesuperior -4 uni0408 -45 uni0414 -39 uni0424 6 uni042F -6 uni0431 3 uni0434 -27 uni0440 20 uni0444 -6 uni044F -4 uni0457 4 uni0492 15 uni04AF 30 uni04B1 30 uni04D4 -54 v 30 x 12 slash V 20 p -40 public.kern2.A -52 public.kern2.C -10 public.kern2.J -32 public.kern2.S -10 public.kern2.T 20 public.kern2.W 20 public.kern2.Y 20 public.kern2.a -45 public.kern2.a.alt01 -40 public.kern2.c -40 public.kern2.dotlessi -42 public.kern2.f -30 public.kern2.g -45 public.kern2.s -40 public.kern2.t -20 public.kern2.u -35 public.kern2.uni0402 20 public.kern2.uni0404 -10 public.kern2.uni0409 -62 public.kern2.uni040E 13 public.kern2.uni0410 -52 public.kern2.uni0416 -32 public.kern2.uni0417 -13 public.kern2.uni0425 4 public.kern2.uni0427 8 public.kern2.uni042A 20 public.kern2.uni0430 -45 public.kern2.uni0430.alt01 -40 public.kern2.uni0432 -39 public.kern2.uni0435 -40 public.kern2.uni0436 -49 public.kern2.uni0437 -35 public.kern2.uni043B -90 public.kern2.uni0442 -20 public.kern2.uni0443 -10 public.kern2.uni0445 -30 public.kern2.uni0447 -27 public.kern2.w -10 public.kern2.y -10 public.kern2.z -30 slash -120 uni0405 -10 uni0408 -32 uni0414 -59 uni0424 -20 uni042F -45 uni0431 -32 uni0434 -73 uni0440 -40 uni0444 -54 uni044F -49 uni0455 -40 uni0493 -39 uni04AE 20 uni04AF -10 uni04B0 8 uni04B1 -10 uni04D4 -52 v -10 x -30 tbar a.alt01 12 aacute.alt01 12 abreve.alt01 12 abreveacute.alt01 12 abrevedotbelow.alt01 12 abrevegrave.alt01 12 abrevehook.alt01 12 abrevetilde.alt01 12 acircumflex.alt01 12 acircumflexacute.alt01 12 acircumflexdotbelow.alt01 12 acircumflexgrave.alt01 12 acircumflexhook.alt01 12 acircumflextilde.alt01 12 adieresis.alt01 12 adotbelow.alt01 12 agrave.alt01 12 ahook.alt01 12 amacron.alt01 12 aogonek.alt01 12 aring.alt01 12 aringacute.alt01 12 atilde.alt01 12 c 12 cacute 12 ccaron 12 ccedilla 12 ccircumflex 12 cdotaccent 12 d 12 dcaron 12 dcroat 12 e 12 eacute 12 ebreve 12 ecaron 12 ecircumflex 12 ecircumflexacute 12 ecircumflexdotbelow 12 ecircumflexgrave 12 ecircumflexhook 12 ecircumflextilde 12 edieresis 12 edotaccent 12 edotbelow 12 egrave 12 ehook 12 emacron 12 emdash 20 endash 20 eogonek 12 eth 12 etilde 12 g.alt01 12 gbreve.alt01 12 gcircumflex.alt01 12 gcommaaccent.alt01 12 gdotaccent.alt01 12 guillemotleft 30 guilsinglleft 30 hyphen 20 o 12 oacute 12 obreve 12 ocircumflex 12 ocircumflexacute 12 ocircumflexdotbelow 12 ocircumflexgrave 12 ocircumflexhook 12 ocircumflextilde 12 odieresis 12 odotbelow 12 oe 12 ograve 12 ohook 12 ohorn 12 ohornacute 12 ohorndotbelow 12 ohorngrave 12 ohornhook 12 ohorntilde 12 ohungarumlaut 12 omacron 12 oslash 12 oslashacute 12 otilde 12 q 12 schwa 12 softhyphen 20 tcaron V 26 W 34 Wacute 34 Wcircumflex 34 Wdieresis 34 Wgrave 34 X 30 Y 24 Yacute 24 Ycircumflex 24 Ydieresis 24 Ydotbelow 24 Ygrave 24 Yhook 24 Ytilde 24 asterisk 40 b 28 braceright 36 bracketright 36 eightsuperior 6 exclam 2 fivesuperior 6 h 18 hcircumflex 18 k 18 kcommaaccent 18 l 18 lacute 18 lcaron 18 lcommaaccent 18 ldot 18 lslash 18 ninesuperior 8 onesuperior 4 parenright 50 quotedbl 40 quotedblright 8 quoteright 8 quotesingle 40 sevensuperior 10 threesuperior 6 trademark 38 twosuperior 5 tcedilla dotlessj 2 j 2 jacute 2 jcircumflex 2 tcommaaccent dotlessj 2 j 2 jacute 2 jcircumflex 2 threeinferior V -54 X 8 eightinferior -6 fiveinferior -4 fourinferior -2 nineinferior -1 oneinferior -12 public.kern2.A 10 public.kern2.C -2 public.kern2.T -62 public.kern2.W -47 public.kern2.Y -80 public.kern2.a.alt01 13 public.kern2.c 17 public.kern2.comma -2 public.kern2.dotlessi -10 public.kern2.f -10 public.kern2.g -7 public.kern2.t -10 public.kern2.uni0402 -62 public.kern2.uni0404 -2 public.kern2.uni0409 6 public.kern2.uni040E -55 public.kern2.uni0410 10 public.kern2.uni0416 -4 public.kern2.uni0427 -46 public.kern2.uni042A -62 public.kern2.uni0430.alt01 11 public.kern2.uni0435 17 public.kern2.uni043B 22 public.kern2.uni0442 -24 public.kern2.uni0443 -22 public.kern2.uni0447 -32 public.kern2.w -16 public.kern2.y -22 public.kern2.z 6 seveninferior -7 sixinferior -1 threeinferior -10 uni0424 4 uni042F -5 uni0431 11 uni0444 11 uni044F 6 uni0455 -4 uni0492 13 uni0493 4 uni04AE -80 uni04AF -30 uni04B0 -62 uni04B1 -30 uni04D4 10 v -22 threesuperior V 18 X 10 b 10 eightsuperior -6 fivesuperior -4 foursuperior -2 fraction 4 jcircumflex 4 ninesuperior -1 onesuperior -12 p 20 public.kern2.A -54 public.kern2.C -5 public.kern2.J -44 public.kern2.S -2 public.kern2.T 20 public.kern2.W 18 public.kern2.Z -2 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.dotlessj 4 public.kern2.f 10 public.kern2.g -10 public.kern2.h 2 public.kern2.i 3 public.kern2.t 10 public.kern2.u 2 public.kern2.uni0402 20 public.kern2.uni0404 -5 public.kern2.uni0409 -77 public.kern2.uni040E -8 public.kern2.uni0410 -54 public.kern2.uni0416 -19 public.kern2.uni0425 10 public.kern2.uni0427 4 public.kern2.uni042A 20 public.kern2.uni0436 6 public.kern2.uni043B -50 public.kern2.uni0442 12 public.kern2.uni0443 18 public.kern2.uni0445 12 public.kern2.uni0447 9 public.kern2.uni0456 3 public.kern2.uni04BB 7 public.kern2.w 18 public.kern2.y 18 public.kern2.z 10 sevensuperior -7 sixsuperior -1 thorn 10 threesuperior -10 uni0405 -10 uni0408 -44 uni0414 -46 uni0424 1 uni042F -18 uni0434 -33 uni0440 20 uni044F -8 uni0458 20 uni0492 14 uni04AF 26 uni04B1 14 uni04D4 -54 v 28 x 12 trademark V 18 public.kern2.A -65 public.kern2.uni0410 -65 uni04D4 -53 twoinferior V -54 X 18 public.kern2.A 20 public.kern2.C -4 public.kern2.J 26 public.kern2.T -62 public.kern2.W -49 public.kern2.Y -80 public.kern2.a 10 public.kern2.a.alt01 16 public.kern2.c 20 public.kern2.comma 8 public.kern2.f -10 public.kern2.g -10 public.kern2.t -1 public.kern2.uni0402 -62 public.kern2.uni0404 -7 public.kern2.uni0409 18 public.kern2.uni040E -47 public.kern2.uni0410 20 public.kern2.uni0416 10 public.kern2.uni0425 18 public.kern2.uni0427 -43 public.kern2.uni042A -62 public.kern2.uni0430 10 public.kern2.uni0430.alt01 11 public.kern2.uni0435 20 public.kern2.uni0436 4 public.kern2.uni0437 4 public.kern2.uni043B 15 public.kern2.uni0442 -32 public.kern2.uni0443 -20 public.kern2.uni0445 10 public.kern2.uni0447 -34 public.kern2.uni0456 -4 public.kern2.w -22 public.kern2.y -20 public.kern2.z 16 uni0408 26 uni0414 15 uni0424 -2 uni042F 10 uni0431 11 uni0434 10 uni0444 11 uni044F 4 uni0492 4 uni0493 4 uni04AE -80 uni04AF -30 uni04B0 -66 uni04B1 -30 uni04D4 20 v -22 x 10 twosuperior V 18 X 8 b 15 fraction 45 jcircumflex 4 p 20 public.kern2.A -36 public.kern2.C 8 public.kern2.J -44 public.kern2.S -2 public.kern2.T 20 public.kern2.W 18 public.kern2.Z -4 public.kern2.a 10 public.kern2.a.alt01 16 public.kern2.c 13 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 10 public.kern2.g 8 public.kern2.h 11 public.kern2.i 3 public.kern2.t 10 public.kern2.u 30 public.kern2.uni0402 20 public.kern2.uni0409 -77 public.kern2.uni040E -6 public.kern2.uni0410 -36 public.kern2.uni0416 -26 public.kern2.uni0417 -6 public.kern2.uni042A 20 public.kern2.uni0430 10 public.kern2.uni0430.alt01 7 public.kern2.uni0435 13 public.kern2.uni0436 2 public.kern2.uni0437 3 public.kern2.uni043B -47 public.kern2.uni0442 18 public.kern2.uni0443 26 public.kern2.uni0445 10 public.kern2.uni0447 9 public.kern2.uni0456 3 public.kern2.uni04BB 11 public.kern2.w 23 public.kern2.y 26 public.kern2.z 10 thorn 15 uni0405 -6 uni0408 -44 uni0414 -46 uni0424 4 uni042F -14 uni0431 12 uni0434 -32 uni0440 20 uni0444 7 uni044F 6 uni0492 17 uni04AF 26 uni04B1 18 uni04D4 -36 v 28 x 10 underscore V -70 X 20 b -20 p 10 public.kern2.A 12 public.kern2.C -60 public.kern2.J -18 public.kern2.S -42 public.kern2.T -60 public.kern2.U -50 public.kern2.W -50 public.kern2.Y -60 public.kern2.Z 15 public.kern2.a -30 public.kern2.a.alt01 -48 public.kern2.c -50 public.kern2.dotlessj 96 public.kern2.f -22 public.kern2.g 11 public.kern2.s -35 public.kern2.t -25 public.kern2.u -35 public.kern2.uni0402 -60 public.kern2.uni0404 -60 public.kern2.uni0409 -10 public.kern2.uni040E -77 public.kern2.uni0417 -44 public.kern2.uni0425 20 public.kern2.uni0427 -162 public.kern2.uni042A -60 public.kern2.uni0430 -30 public.kern2.uni0430.alt01 -50 public.kern2.uni0435 -50 public.kern2.uni0436 4 public.kern2.uni0437 -21 public.kern2.uni043B -2 public.kern2.uni0442 -74 public.kern2.uni0443 17 public.kern2.uni0445 20 public.kern2.uni0447 -143 public.kern2.w -40 public.kern2.y 17 public.kern2.z 10 thorn 30 uni0405 -42 uni0408 -18 uni0414 33 uni0424 -137 uni0431 -53 uni0434 40 uni0440 10 uni0444 -50 uni044F 4 uni0455 -35 uni0458 96 uni04AE -60 uni04AF -73 uni04B0 -60 uni04B1 -30 v -70 x 20 uni0402 ampersand 6 eightsuperior -36 fivesuperior -26 fourinferior 10 foursuperior -27 ninesuperior -46 onesuperior -24 public.kern2.asterisk -64 public.kern2.colon -4 public.kern2.comma -10 public.kern2.guillemotleft 22 public.kern2.quotedblleft -87 public.kern2.quotedblright -78 public.kern2.uni0402 -72 public.kern2.uni0404 -3 public.kern2.uni040E -49 public.kern2.uni0410 -10 public.kern2.uni0417 -8 public.kern2.uni0425 -5 public.kern2.uni0427 -60 public.kern2.uni042A -72 public.kern2.uni0430.alt01 6 public.kern2.uni0435 6 public.kern2.uni0436 -2 public.kern2.uni0437 -2 public.kern2.uni0442 -14 public.kern2.uni0443 -12 public.kern2.uni0447 -34 public.kern2.uni0452 -2 public.kern2.uni04BB -2 registered -34 sevensuperior -46 sixsuperior -36 threeinferior 6 threesuperior -20 trademark -50 twosuperior -20 uni0424 -3 uni042F -4 uni0431 6 uni0434 -2 uni0440 -4 uni0444 6 uni044F 4 uni0458 15 uni0492 8 uni0493 6 uni04AE -67 uni04AF -21 uni04B0 -61 uni04B1 -21 uni04D4 -6 zerosuperior -36 uni0403 uni0457 22 uni0404 ampersand -13 at -13 fiveinferior -6 foursuperior -9 nineinferior -16 oneinferior -18 public.kern2.asterisk -4 public.kern2.comma -24 public.kern2.emdash -20 public.kern2.quotedblleft -6 public.kern2.quotedblright 2 public.kern2.uni0402 -5 public.kern2.uni0404 -13 public.kern2.uni0409 -4 public.kern2.uni040E -12 public.kern2.uni0410 -25 public.kern2.uni0416 -6 public.kern2.uni0417 -6 public.kern2.uni0425 -2 public.kern2.uni0427 -10 public.kern2.uni042A -5 public.kern2.uni0430 -6 public.kern2.uni0430.alt01 -14 public.kern2.uni0432 -7 public.kern2.uni0435 -14 public.kern2.uni0436 -14 public.kern2.uni0437 -10 public.kern2.uni043B -4 public.kern2.uni0442 -14 public.kern2.uni0443 -6 public.kern2.uni0445 -6 public.kern2.uni0447 -16 public.kern2.uni0456 -6 registered -6 seveninferior -12 sixinferior -4 slash -12 twoinferior -6 twosuperior 2 underscore -51 uni0405 -2 uni0408 -2 uni0414 -10 uni0424 -10 uni042F -10 uni0431 -9 uni0434 -16 uni0440 -12 uni0444 -14 uni044F -9 uni0455 -6 uni0458 -6 uni0493 -6 uni04AE -12 uni04AF -6 uni04B0 -10 uni04B1 -6 uni04D4 -25 zeroinferior -6 zerosuperior 2 uni0405 ampersand -10 eightsuperior -6 fiveinferior -2 fivesuperior -6 foursuperior -10 ninesuperior -5 oneinferior -16 onesuperior -6 parenright -10 public.kern2.asterisk 4 public.kern2.comma -24 public.kern2.emdash 10 public.kern2.guillemotleft 20 public.kern2.quotedblleft -4 public.kern2.quotedblright -2 public.kern2.uni0402 -13 public.kern2.uni0409 -3 public.kern2.uni040E -11 public.kern2.uni0410 -12 public.kern2.uni0416 -8 public.kern2.uni0417 -5 public.kern2.uni0427 -6 public.kern2.uni042A -13 public.kern2.uni0436 -9 public.kern2.uni0437 -3 public.kern2.uni0442 -9 public.kern2.uni0443 -5 public.kern2.uni0445 -4 public.kern2.uni0447 -10 registered -3 sevensuperior -6 sixinferior 3 sixsuperior -10 slash -10 threeinferior -3 threesuperior -8 twoinferior -10 twosuperior -11 underscore -44 uni0405 -6 uni0408 -7 uni0414 -10 uni0424 -4 uni042F -6 uni0434 -21 uni0440 -5 uni044F -5 uni0492 2 uni04AE -11 uni04AF -5 uni04B0 -11 uni04B1 -5 uni04D4 -12 zeroinferior 10 uni0408 eightinferior -17 fiveinferior -14 fourinferior -21 nineinferior -22 oneinferior -24 parenright 10 public.kern2.comma -50 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.quotedblright 2 public.kern2.uni0409 -30 public.kern2.uni040E 3 public.kern2.uni0410 -26 public.kern2.uni0416 -5 public.kern2.uni0425 -15 public.kern2.uni0430 -5 public.kern2.uni0430.alt01 -10 public.kern2.uni0435 -10 public.kern2.uni0436 -2 public.kern2.uni0437 -7 public.kern2.uni043B -18 public.kern2.uni0442 -6 public.kern2.uni0447 -14 questiondown -40 seveninferior -14 sixinferior -19 slash -20 threeinferior -24 trademark 12 twoinferior -24 underscore -60 uni0408 -35 uni0414 -32 uni0424 -3 uni042F -8 uni0431 -4 uni0434 -30 uni0444 -10 uni044F -6 uni0455 -5 uni04D4 -28 zeroinferior -16 uni040C uni0457 2 uni040E uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uni0411 ampersand -6 eightinferior 3 eightsuperior -20 fiveinferior 8 fivesuperior -9 fourinferior 8 foursuperior -16 nineinferior 9 ninesuperior -16 onesuperior -9 public.kern2.asterisk -29 public.kern2.comma -17 public.kern2.emdash 6 public.kern2.guillemotleft 29 public.kern2.guillemotright 2 public.kern2.quotedblleft -27 public.kern2.quotedblright -23 public.kern2.uni0402 -17 public.kern2.uni040E -19 public.kern2.uni0410 -9 public.kern2.uni0416 -12 public.kern2.uni0417 -2 public.kern2.uni0425 -14 public.kern2.uni0427 -21 public.kern2.uni042A -17 public.kern2.uni0430.alt01 2 public.kern2.uni0435 5 public.kern2.uni0436 -8 public.kern2.uni043B 2 public.kern2.uni0442 -8 public.kern2.uni0443 -12 public.kern2.uni0445 -11 public.kern2.uni0447 -18 registered -11 seveninferior 4 sevensuperior -12 sixinferior 5 sixsuperior -23 slash -11 threeinferior 10 threesuperior -3 trademark -12 twoinferior 4 twosuperior -6 underscore -57 uni0408 -3 uni0414 -12 uni0424 -3 uni042F -9 uni0431 3 uni0434 -14 uni0444 3 uni044F 1 uni0492 9 uni0493 7 uni04AE -17 uni04AF -15 uni04B0 -17 uni04B1 -15 uni04D4 -9 zeroinferior 6 zerosuperior -20 uni0412 question -24 uni04D8 -3 uni0413 uni0457 22 uni0416 uni0457 2 uni0417 uni04D8 -3 uni041A uni0457 2 uni0420 ampersand -34 at -10 eightinferior -65 eightsuperior 10 fiveinferior -60 fivesuperior 10 fourinferior -102 foursuperior 10 nineinferior -60 ninesuperior 10 oneinferior -62 onesuperior 4 public.kern2.asterisk 9 public.kern2.comma -130 public.kern2.emdash -10 public.kern2.quotedblleft 12 public.kern2.quotedblright 12 public.kern2.uni0402 6 public.kern2.uni0409 -70 public.kern2.uni040E -9 public.kern2.uni0410 -48 public.kern2.uni0416 -17 public.kern2.uni0417 -5 public.kern2.uni0425 -15 public.kern2.uni042A 6 public.kern2.uni0430 -15 public.kern2.uni0430.alt01 -19 public.kern2.uni0435 -21 public.kern2.uni0436 -6 public.kern2.uni0437 -6 public.kern2.uni043B -52 public.kern2.uni0442 7 public.kern2.uni0443 14 public.kern2.uni0447 3 registered 8 seveninferior -22 sevensuperior 9 sixinferior -89 sixsuperior 10 slash -50 threeinferior -60 threesuperior 4 trademark 4 twoinferior -62 twosuperior 4 underscore -130 uni0408 -42 uni0414 -58 uni0424 3 uni042F -13 uni0434 -41 uni0444 -19 uni044F -33 uni0455 -20 uni0492 8 uni04AF 10 uni04B1 10 uni04D4 -84 zeroinferior -60 zerosuperior 10 uni0422 ampersand -28 at -38 eightinferior -62 eightsuperior 20 fiveinferior -62 fivesuperior 18 fourinferior -70 foursuperior 12 nineinferior -62 ninesuperior 22 oneinferior -62 onesuperior 25 parenright 20 public.kern2.asterisk 30 public.kern2.colon -10 public.kern2.comma -80 public.kern2.emdash -50 public.kern2.guillemotleft -42 public.kern2.guillemotright -30 public.kern2.quotedblleft 22 public.kern2.quotedblright 20 public.kern2.uni0402 22 public.kern2.uni0404 -11 public.kern2.uni0409 -56 public.kern2.uni040E 10 public.kern2.uni0410 -56 public.kern2.uni0416 -15 public.kern2.uni0417 -3 public.kern2.uni0425 16 public.kern2.uni0427 6 public.kern2.uni042A 22 public.kern2.uni0430 -40 public.kern2.uni0430.alt01 -41 public.kern2.uni0432 -16 public.kern2.uni0435 -45 public.kern2.uni0436 -18 public.kern2.uni0437 -29 public.kern2.uni043B -58 public.kern2.uni0442 -14 public.kern2.uni0443 6 public.kern2.uni0445 -16 public.kern2.uni0447 -6 public.kern2.uni04BB 6 question 22 questiondown -60 registered 30 seveninferior -52 sevensuperior 30 sixinferior -62 sixsuperior 20 slash -70 threeinferior -62 threesuperior 20 trademark 25 twoinferior -62 twosuperior 20 underscore -60 uni0405 -8 uni0408 -42 uni0414 -39 uni0424 -15 uni042F -22 uni0431 -14 uni0434 -49 uni0440 -21 uni0444 -41 uni044F -48 uni0455 -30 uni0457 8 uni0493 -16 uni04AE 14 uni04AF 4 uni04B0 14 uni04B1 4 uni04D4 -65 zeroinferior -62 zerosuperior 30 uni0423 uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uni0424 ampersand -6 at 7 copyright 4 eightsuperior 6 fiveinferior 3 fivesuperior 11 fourinferior -12 foursuperior 17 ninesuperior -6 oneinferior 6 onesuperior 6 parenright -12 public.kern2.asterisk -16 public.kern2.braceright -12 public.kern2.comma -70 public.kern2.emdash 20 public.kern2.guillemotleft 28 public.kern2.guillemotright -8 public.kern2.quotedblleft -18 public.kern2.quotedblright -9 public.kern2.uni0402 -15 public.kern2.uni0404 11 public.kern2.uni0409 -35 public.kern2.uni040E -54 public.kern2.uni0410 -42 public.kern2.uni0416 -44 public.kern2.uni0417 -7 public.kern2.uni0425 -56 public.kern2.uni0427 -15 public.kern2.uni042A -15 public.kern2.uni0430.alt01 4 public.kern2.uni0432 -5 public.kern2.uni0435 4 public.kern2.uni0436 -4 public.kern2.uni0437 -1 public.kern2.uni043B -27 public.kern2.uni0442 6 public.kern2.uni0443 -1 public.kern2.uni0447 -2 public.kern2.uni04BB -6 registered 4 seveninferior 8 sevensuperior -14 sixinferior -11 sixsuperior 6 slash -20 threeinferior 6 threesuperior 11 trademark -22 twoinferior 6 twosuperior 8 underscore -137 uni0408 -37 uni0414 -50 uni0424 16 uni042F -17 uni0431 7 uni0434 -37 uni0444 4 uni044F 3 uni0492 12 uni0493 5 uni04AE -58 uni04AF -1 uni04B0 -49 uni04B1 -1 uni04D4 -63 zerosuperior 6 uni0425 ampersand -15 at -30 eightinferior 10 fiveinferior 10 fivesuperior 8 fourinferior 10 foursuperior -30 nineinferior -20 ninesuperior 8 oneinferior -3 onesuperior 10 parenright 16 public.kern2.asterisk 16 public.kern2.comma 11 public.kern2.emdash -40 public.kern2.guillemotleft -42 public.kern2.guillemotright -20 public.kern2.quotedblright 16 public.kern2.uni0402 16 public.kern2.uni0404 -18 public.kern2.uni0409 18 public.kern2.uni0410 17 public.kern2.uni0417 -10 public.kern2.uni042A 16 public.kern2.uni0430 -10 public.kern2.uni0430.alt01 -25 public.kern2.uni0435 -17 public.kern2.uni0436 13 public.kern2.uni0437 -10 public.kern2.uni043B 25 public.kern2.uni0442 -52 public.kern2.uni0443 -12 public.kern2.uni0445 8 public.kern2.uni0447 -74 question 8 questiondown 30 registered -4 seveninferior -20 sevensuperior 24 sixsuperior -10 threeinferior 10 threesuperior 10 trademark 16 twoinferior 10 twosuperior 10 underscore 20 uni0408 18 uni0414 12 uni0424 -56 uni0431 -22 uni0434 18 uni0444 -16 uni044F 13 uni0455 -5 uni04AF -30 uni04B1 -30 uni04D4 17 zeroinferior 13 uni0431 ninesuperior -6 parenright 9 quotedblleft -27 quotedblright -2 quoteleft -27 quoteright -2 sevensuperior -14 uni0402 -20 uni040B -20 uni040E -26 uni0422 -20 uni0423 -26 uni042A -20 uni04A0 -20 uni04AE -47 uni04B0 -47 uni04EE -26 uni04F0 -26 uni04F2 -26 uni0432 uni043B 3 uni0459 3 uni0437 uni043B 5 uni0459 5 uni0440 eightinferior 10 fiveinferior 8 fivesuperior -6 fourinferior -6 foursuperior 3 nineinferior 10 ninesuperior -27 oneinferior 8 onesuperior -10 public.kern2.asterisk -28 public.kern2.comma -27 public.kern2.emdash 20 public.kern2.guillemotleft 35 public.kern2.guillemotright -4 public.kern2.quotedblleft -32 public.kern2.quotedblright -10 public.kern2.uni0402 -35 public.kern2.uni0404 10 public.kern2.uni040E -55 public.kern2.uni0410 -7 public.kern2.uni0416 -26 public.kern2.uni0417 -4 public.kern2.uni0425 -17 public.kern2.uni0427 -31 public.kern2.uni042A -35 public.kern2.uni0430 10 public.kern2.uni0430.alt01 5 public.kern2.uni0435 9 public.kern2.uni0436 -8 public.kern2.uni0437 -2 public.kern2.uni0442 -1 public.kern2.uni0443 -5 public.kern2.uni0445 -17 public.kern2.uni0447 -10 registered -5 seveninferior 28 sevensuperior -24 sixinferior 8 sixsuperior -10 slash 4 threeinferior 8 trademark -15 twoinferior 8 underscore -60 uni0408 -2 uni0414 -13 uni0424 4 uni042F -18 uni0431 5 uni0434 -18 uni0444 5 uni0455 2 uni0492 6 uni0493 9 uni04AE -59 uni04AF -13 uni04B0 -59 uni04B1 -13 uni04D4 -7 zeroinferior 10 zerosuperior -20 uni0442 ampersand -31 copyright 2 eightinferior -33 eightsuperior 10 fiveinferior -23 fivesuperior 15 fourinferior -52 foursuperior 21 nineinferior -33 oneinferior -33 onesuperior 8 parenright -6 public.kern2.asterisk 6 public.kern2.braceright -6 public.kern2.comma -87 public.kern2.emdash -6 public.kern2.guillemotleft -6 public.kern2.guillemotright 4 public.kern2.quotedblleft 11 public.kern2.quotedblright 17 public.kern2.uni0402 -14 public.kern2.uni0404 3 public.kern2.uni0409 -49 public.kern2.uni040E -39 public.kern2.uni0410 -54 public.kern2.uni0416 -46 public.kern2.uni0417 -3 public.kern2.uni0425 -52 public.kern2.uni0427 -9 public.kern2.uni042A -14 public.kern2.uni0430 2 public.kern2.uni0430.alt01 -1 public.kern2.uni0435 -1 public.kern2.uni0436 4 public.kern2.uni0437 2 public.kern2.uni043B -30 public.kern2.uni0442 10 public.kern2.uni0443 6 public.kern2.uni0445 8 public.kern2.uni0447 13 public.kern2.uni0452 -6 public.kern2.uni04BB -6 registered 15 seveninferior -6 sixinferior -50 sixsuperior 10 slash -55 threeinferior -20 threesuperior 21 trademark -2 twoinferior -20 twosuperior 18 underscore -74 uni0408 -53 uni0414 -39 uni0424 6 uni042F -6 uni0431 4 uni0434 -22 uni0440 5 uni0444 -1 uni044F 3 uni0455 2 uni0492 6 uni04AE -48 uni04AF 6 uni04B0 -48 uni04B1 6 uni04D4 -69 zeroinferior -33 zerosuperior 10 uni0444 eightinferior 10 fiveinferior 8 fivesuperior -6 fourinferior -6 foursuperior 1 nineinferior 10 ninesuperior -31 oneinferior 4 onesuperior -10 public.kern2.asterisk -24 public.kern2.comma -26 public.kern2.emdash 20 public.kern2.guillemotleft 35 public.kern2.guillemotright -4 public.kern2.quotedblleft -31 public.kern2.quotedblright -27 public.kern2.uni0402 -41 public.kern2.uni040E -51 public.kern2.uni0410 -12 public.kern2.uni0416 -25 public.kern2.uni0417 -4 public.kern2.uni0425 -24 public.kern2.uni0427 -31 public.kern2.uni042A -41 public.kern2.uni0430 7 public.kern2.uni0430.alt01 5 public.kern2.uni0435 10 public.kern2.uni0436 -10 public.kern2.uni0437 -2 public.kern2.uni0442 -1 public.kern2.uni0443 -6 public.kern2.uni0445 -15 public.kern2.uni0447 -10 registered -5 seveninferior 16 sevensuperior -32 sixinferior 4 sixsuperior -10 slash 4 threeinferior 4 trademark -15 twoinferior 4 twosuperior 2 underscore -50 uni0414 -10 uni0424 4 uni042F -18 uni0431 5 uni0434 -15 uni0444 5 uni0492 6 uni0493 9 uni04AE -90 uni04AF -13 uni04B0 -68 uni04B1 -13 uni04D4 -15 zeroinferior 10 zerosuperior -12 uni0445 ampersand -20 at -10 eightinferior -6 eightsuperior 12 fivesuperior 10 fourinferior -8 foursuperior 20 nineinferior -20 ninesuperior 16 public.kern2.asterisk 12 public.kern2.comma 12 public.kern2.emdash -35 public.kern2.guillemotleft -20 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.quotedblright 20 public.kern2.uni0402 -16 public.kern2.uni0409 16 public.kern2.uni040E -29 public.kern2.uni0410 6 public.kern2.uni0416 14 public.kern2.uni0425 8 public.kern2.uni0427 -21 public.kern2.uni042A -16 public.kern2.uni0430.alt01 -15 public.kern2.uni0435 -17 public.kern2.uni0436 9 public.kern2.uni0437 -2 public.kern2.uni043B 18 public.kern2.uni0442 4 public.kern2.uni0443 7 public.kern2.uni0447 3 registered 20 seveninferior -10 sixinferior -8 sixsuperior 12 slash 8 threeinferior 7 threesuperior 8 trademark 10 twoinferior 10 twosuperior 10 underscore 20 uni0408 6 uni0414 15 uni042F 10 uni0431 -5 uni0434 16 uni0444 -15 uni044F 11 uni0455 -4 uni04AE -29 uni04AF 7 uni04B0 -29 uni04B1 7 uni04D4 6 zerosuperior 22 uni0452 ampersand -6 eightinferior -6 eightsuperior -8 fivesuperior -10 fourinferior -2 foursuperior -4 nineinferior -2 ninesuperior -23 oneinferior -8 onesuperior -13 public.kern2.asterisk -26 public.kern2.comma -20 public.kern2.guillemotright -6 public.kern2.quotedblleft -30 public.kern2.quotedblright -21 public.kern2.uni0402 -20 public.kern2.uni0404 -12 public.kern2.uni0409 -4 public.kern2.uni040E -63 public.kern2.uni0410 -16 public.kern2.uni0416 -20 public.kern2.uni0417 -16 public.kern2.uni0425 -20 public.kern2.uni0427 -24 public.kern2.uni042A -20 public.kern2.uni0430 -9 public.kern2.uni0430.alt01 -9 public.kern2.uni0432 -10 public.kern2.uni0435 -9 public.kern2.uni0436 -11 public.kern2.uni0437 -8 public.kern2.uni043B -8 public.kern2.uni0442 -12 public.kern2.uni0443 -15 public.kern2.uni0445 -11 public.kern2.uni0447 -35 public.kern2.uni0452 -10 public.kern2.uni0456 -10 public.kern2.uni04BB -10 registered -22 seveninferior -2 sevensuperior -31 sixinferior -2 sixsuperior -8 slash -19 threesuperior -8 trademark -44 twosuperior -4 underscore -20 uni0405 -6 uni0408 -4 uni0424 -17 uni042F -20 uni0431 -9 uni0434 -9 uni0440 -4 uni0444 -9 uni044F -7 uni0455 -8 uni0493 -5 uni04AE -60 uni04AF -15 uni04B0 -60 uni04B1 -15 uni04D4 -4 zeroinferior -6 zerosuperior -14 uni0454 ampersand -3 eightinferior -2 fivesuperior 1 foursuperior 4 nineinferior -4 ninesuperior -3 public.kern2.asterisk -9 public.kern2.comma -13 public.kern2.emdash -9 public.kern2.guillemotleft -3 public.kern2.guillemotright -3 public.kern2.quotedblright 4 public.kern2.uni0402 -29 public.kern2.uni040E -38 public.kern2.uni0410 -3 public.kern2.uni0416 -13 public.kern2.uni0425 -10 public.kern2.uni0427 -18 public.kern2.uni042A -29 public.kern2.uni0430 -1 public.kern2.uni0430.alt01 -9 public.kern2.uni0435 -9 public.kern2.uni043B -2 public.kern2.uni0442 -3 public.kern2.uni0443 -2 public.kern2.uni0445 2 public.kern2.uni0447 -7 public.kern2.uni0452 -4 public.kern2.uni04BB -4 seveninferior -3 sevensuperior -10 sixinferior -2 slash -5 threesuperior 4 trademark -13 twosuperior 4 underscore -26 uni0414 -6 uni0424 -1 uni042F -6 uni0434 -10 uni0444 -9 uni044F 6 uni0455 -2 uni04AE -65 uni04AF -2 uni04B0 -65 uni04B1 -2 zeroinferior -2 uni0455 ampersand -5 eightinferior -4 eightsuperior 7 fiveinferior 1 fivesuperior 7 fourinferior 5 nineinferior -6 ninesuperior -14 oneinferior -10 onesuperior -12 public.kern2.asterisk -10 public.kern2.comma -16 public.kern2.emdash -10 public.kern2.quotedblleft -10 public.kern2.uni0402 -20 public.kern2.uni0404 10 public.kern2.uni0409 9 public.kern2.uni040E -47 public.kern2.uni0410 -5 public.kern2.uni0416 -10 public.kern2.uni0417 -4 public.kern2.uni0425 -23 public.kern2.uni0427 -26 public.kern2.uni042A -20 public.kern2.uni0430 -4 public.kern2.uni0436 -2 public.kern2.uni0437 -3 public.kern2.uni0442 -3 public.kern2.uni0443 -4 public.kern2.uni0447 -5 seveninferior -7 sevensuperior -12 sixinferior 5 sixsuperior 8 slash -10 threeinferior -4 threesuperior -5 trademark -6 twoinferior -14 twosuperior -10 underscore -24 uni0408 5 uni0414 -9 uni042F -10 uni0434 -9 uni044F 2 uni0455 -6 uni0492 6 uni04AE -42 uni04AF -3 uni04B0 -42 uni04B1 -3 uni04D4 -5 zeroinferior 6 zerosuperior -4 uni0457 asterisk 15 braceright 12 bracketright 12 eightsuperior 4 fivesuperior 4 ninesuperior 6 onesuperior 4 parenright 14 question 28 quotedbl 15 quotedblleft 2 quotedblright 25 quoteleft 2 quoteright 25 quotesingle 15 sevensuperior 8 threesuperior 6 trademark 36 twosuperior 6 uni0400 9 uni0401 9 uni0402 18 uni0403 9 uni0406 9 uni0407 9 uni040A 9 uni040B 18 uni040C 9 uni040D 9 uni040E 4 uni040F 9 uni0411 9 uni0412 9 uni0413 9 uni0415 9 uni0416 2 uni0418 9 uni0419 9 uni041A 9 uni041C 9 uni041D 9 uni041F 9 uni0420 9 uni0422 18 uni0423 4 uni0426 9 uni0427 18 uni0428 9 uni0429 9 uni042A 18 uni042B 9 uni042C 9 uni042E 9 uni0452 10 uni045B 10 uni0490 9 uni0492 9 uni0494 9 uni0496 2 uni049A 9 uni049C 9 uni04A0 18 uni04A2 9 uni04A4 9 uni04AE 24 uni04B0 24 uni04B6 18 uni04B8 18 uni04BA 9 uni04BB 10 uni04C0 9 uni04C1 2 uni04CF 10 uni04D6 9 uni04DC 2 uni04E2 9 uni04E4 9 uni04EE 4 uni04F0 4 uni04F2 4 uni04F4 18 uni04F8 9 zerosuperior 3 uni0458 ninesuperior -10 onesuperior 20 parenright 10 public.kern2.asterisk -20 public.kern2.comma -20 public.kern2.guillemotleft 6 public.kern2.guillemotright -6 public.kern2.quotedblleft -19 public.kern2.quotedblright -11 public.kern2.uni0402 -10 public.kern2.uni0409 -10 public.kern2.uni040E -17 public.kern2.uni0410 -4 public.kern2.uni0416 -8 public.kern2.uni0417 -8 public.kern2.uni0425 -14 public.kern2.uni0427 -19 public.kern2.uni042A -10 public.kern2.uni043B -3 public.kern2.uni0442 -5 public.kern2.uni0447 -9 sevensuperior -10 slash -15 underscore -4 uni0408 -4 uni0414 -6 uni0424 -9 uni042F -8 uni0434 -8 uni04AE -30 uni04AF -3 uni04B0 -30 uni04B1 -3 uni04D4 -8 uni0490 ampersand -27 at -72 colon -52 comma -136 copyright -11 eightinferior -133 eightsuperior -11 ellipsis -136 emdash -136 endash -136 fiveinferior -120 fourinferior -128 foursuperior -13 guillemotleft -93 guillemotright -73 guilsinglleft -93 guilsinglright -73 hyphen -136 nineinferior -128 ninesuperior -11 oneinferior -116 parenright 6 period -136 quotedblbase -136 quotedblleft 6 quoteleft 6 quotesinglbase -136 registered 6 semicolon -52 seveninferior -120 sixinferior -136 sixsuperior -11 slash -112 softhyphen -136 threeinferior -120 twoinferior -120 underscore -81 uni0404 -45 uni0405 -28 uni0408 -52 uni0409 -58 uni0410 -109 uni0414 -42 uni0416 -6 uni0417 -13 uni041B -58 uni041E -45 uni0421 -45 uni0424 -66 uni042D -13 uni042F -56 uni0430 -126 uni0430.alt01 -139 uni0431 -61 uni0432 -114 uni0433 -114 uni0434 -112 uni0435 -121 uni0436 -106 uni0437 -106 uni0438 -114 uni0439 -114 uni043A -114 uni043B -124 uni043C -114 uni043D -114 uni043E -121 uni043F -114 uni0440 -108 uni0441 -121 uni0442 -102 uni0443 -90 uni0444 -124 uni0445 -106 uni0446 -114 uni0447 -118 uni0448 -114 uni0449 -114 uni044A -102 uni044B -114 uni044C -114 uni044D -106 uni044E -114 uni044F -118 uni0450 -87 uni0451 -71 uni0453 -114 uni0454 -121 uni0455 -109 uni0456 -25 uni0457 22 uni0458 -25 uni0459 -124 uni045A -114 uni045C -114 uni045D -114 uni045E -90 uni045F -114 uni0472 -45 uni0473 -121 uni0491 -114 uni0493 -114 uni0495 -114 uni0496 -6 uni0497 -106 uni0498 -13 uni0499 -106 uni049B -114 uni049D -114 uni04A1 -102 uni04A3 -114 uni04A5 -114 uni04AA -45 uni04AB -121 uni04AF -96 uni04B1 -96 uni04B3 -106 uni04B7 -118 uni04B9 -118 uni04C1 -6 uni04C2 -106 uni04D0 -109 uni04D1 -60 uni04D2 -109 uni04D3 -60 uni04D4 -136 uni04D5 -126 uni04D7 -55 uni04D8 -45 uni04D9 -121 uni04DC -6 uni04DD -106 uni04DE -13 uni04DF -68 uni04E3 -114 uni04E5 -114 uni04E6 -45 uni04E7 -71 uni04E8 -45 uni04E9 -121 uni04EF -90 uni04F1 -90 uni04F3 -90 uni04F5 -118 uni04F9 -114 zeroinferior -133 zerosuperior -11 uni0491 ampersand -15 at -6 copyright -2 eightinferior -40 emdash -38 endash -38 fiveinferior -25 fourinferior -36 guillemotleft -8 guilsinglleft -8 hyphen -38 nineinferior -36 ninesuperior 6 oneinferior -25 question 8 quotedblleft 8 quotedblright 17 quoteleft 8 quoteright 17 seveninferior -21 sevensuperior 6 sixinferior -40 slash -56 softhyphen -38 threeinferior -25 twoinferior -25 uni0430 -12 uni0430.alt01 -31 uni0434 -9 uni0435 -31 uni0436 -5 uni0437 -2 uni043B -9 uni043E -31 uni0441 -31 uni0444 -29 uni044D -2 uni044F -16 uni0450 -31 uni0451 -31 uni0454 -31 uni0455 -19 uni0457 20 uni0459 -9 uni0473 -31 uni0497 -5 uni0499 -2 uni04AB -31 uni04AE -3 uni04B0 -3 uni04C2 -5 uni04D1 -12 uni04D1.alt01 -31 uni04D3 -12 uni04D3.alt01 -31 uni04D5 -12 uni04D7 -31 uni04D9 -31 uni04DD -5 uni04DF -2 uni04E7 -31 uni04E9 -31 zeroinferior -40 uni0492 ampersand -42 at -38 eightinferior -93 eightsuperior 16 fiveinferior -80 fivesuperior 18 fourinferior -83 foursuperior 12 nineinferior -84 ninesuperior 26 oneinferior -80 onesuperior 25 parenright 20 public.kern2.asterisk 30 public.kern2.colon -10 public.kern2.comma -100 public.kern2.emdash -54 public.kern2.guillemotleft -56 public.kern2.guillemotright -30 public.kern2.quotedblleft 22 public.kern2.quotedblright 20 public.kern2.uni0402 22 public.kern2.uni0404 -11 public.kern2.uni0409 -65 public.kern2.uni040E 11 public.kern2.uni0410 -69 public.kern2.uni0417 -3 public.kern2.uni0425 4 public.kern2.uni0427 6 public.kern2.uni042A 22 public.kern2.uni0430 -44 public.kern2.uni0430.alt01 -49 public.kern2.uni0432 -16 public.kern2.uni0435 -49 public.kern2.uni0436 -23 public.kern2.uni0437 -26 public.kern2.uni043B -71 public.kern2.uni0442 -16 public.kern2.uni0443 2 public.kern2.uni0445 -4 public.kern2.uni0447 -8 public.kern2.uni04BB 6 question 26 registered 30 seveninferior -66 sevensuperior 22 sixinferior -91 sixsuperior 20 slash -86 threeinferior -80 threesuperior 20 trademark 25 twoinferior -80 twosuperior 20 underscore -95 uni0405 -7 uni0408 -57 uni0414 -45 uni0424 -16 uni042F -24 uni0431 -14 uni0434 -62 uni0440 -13 uni0444 -48 uni044F -47 uni0455 -38 uni0457 16 uni0493 -16 uni04AE 10 uni04AF 2 uni04B0 10 uni04B1 2 uni04D4 -112 zeroinferior -88 zerosuperior 26 uni0493 ampersand -31 copyright 2 eightinferior -33 eightsuperior 10 fiveinferior -20 fivesuperior 15 fourinferior -67 foursuperior 21 nineinferior -33 oneinferior -33 onesuperior 8 parenright -6 public.kern2.asterisk 6 public.kern2.braceright -6 public.kern2.comma -107 public.kern2.emdash -6 public.kern2.guillemotleft -10 public.kern2.guillemotright 4 public.kern2.quotedblleft 11 public.kern2.quotedblright 22 public.kern2.uni0402 -14 public.kern2.uni0404 3 public.kern2.uni0409 -57 public.kern2.uni040E -41 public.kern2.uni0410 -54 public.kern2.uni0416 -46 public.kern2.uni0425 -52 public.kern2.uni0427 -13 public.kern2.uni042A -14 public.kern2.uni0430 2 public.kern2.uni0430.alt01 -2 public.kern2.uni0435 -2 public.kern2.uni0436 3 public.kern2.uni0437 2 public.kern2.uni043B -30 public.kern2.uni0442 10 public.kern2.uni0443 6 public.kern2.uni0445 8 public.kern2.uni0447 13 public.kern2.uni0452 -6 public.kern2.uni04BB -6 registered 15 seveninferior -6 sixinferior -56 sixsuperior 10 slash -55 threeinferior -23 threesuperior 21 trademark -4 twoinferior -26 twosuperior 18 underscore -100 uni0408 -67 uni0414 -47 uni0424 6 uni042F -6 uni0431 7 uni0434 -21 uni0440 5 uni0444 -2 uni044F -1 uni0455 2 uni0492 6 uni04AE -54 uni04AF 6 uni04B0 -54 uni04B1 6 uni04D4 -90 zeroinferior -33 zerosuperior 10 uni0494 ampersand 4 copyright -6 eightsuperior -47 fivesuperior -20 fourinferior 10 foursuperior -30 ninesuperior -47 onesuperior -21 public.kern2.asterisk -50 public.kern2.colon -4 public.kern2.comma -8 public.kern2.guillemotleft 25 public.kern2.quotedblleft -61 public.kern2.quotedblright -53 public.kern2.uni0402 -44 public.kern2.uni0404 -7 public.kern2.uni040E -37 public.kern2.uni0410 -10 public.kern2.uni0417 -9 public.kern2.uni0425 -5 public.kern2.uni0427 -54 public.kern2.uni042A -44 public.kern2.uni0430 4 public.kern2.uni0430.alt01 1 public.kern2.uni0435 1 public.kern2.uni0436 -2 public.kern2.uni0437 -3 public.kern2.uni043B 6 public.kern2.uni0442 -15 public.kern2.uni0443 -9 public.kern2.uni0445 -2 public.kern2.uni0447 -34 public.kern2.uni0452 -3 public.kern2.uni04BB -2 registered -34 seveninferior -4 sevensuperior -47 sixsuperior -50 threeinferior 6 threesuperior -14 trademark -29 twosuperior -14 uni0405 -2 uni0424 -8 uni042F -6 uni0431 1 uni0434 -2 uni0440 -6 uni0444 1 uni044F 2 uni0458 22 uni0492 5 uni0493 2 uni04AE -45 uni04AF -21 uni04B0 -41 uni04B1 -21 uni04D4 -6 zerosuperior -47 uni0495 ampersand 3 copyright -6 eightinferior 6 eightsuperior -37 fivesuperior -32 fourinferior 11 foursuperior -19 nineinferior 6 ninesuperior -40 onesuperior -23 parenright 10 public.kern2.asterisk -41 public.kern2.emdash -7 public.kern2.guillemotleft 4 public.kern2.guillemotright -6 public.kern2.quotedblleft -38 public.kern2.quotedblright -38 public.kern2.uni0402 -52 public.kern2.uni0409 13 public.kern2.uni040E -48 public.kern2.uni0427 -59 public.kern2.uni042A -52 public.kern2.uni043B 14 public.kern2.uni0442 -27 public.kern2.uni0443 -6 public.kern2.uni0447 -27 public.kern2.uni0452 -3 public.kern2.uni04BB -3 question -4 registered -29 sevensuperior -50 sixinferior 6 sixsuperior -33 slash 18 threeinferior 6 threesuperior -23 trademark -51 twoinferior 6 twosuperior -23 underscore 12 uni0408 4 uni0414 6 uni0424 -6 uni0431 -2 uni0434 4 uni044F 8 uni0458 46 uni0493 4 uni04AE -85 uni04AF -27 uni04B0 -62 uni04B1 -25 zeroinferior 6 zerosuperior -35 uni0496 uni0457 2 uni0498 uni04D8 -3 uni049A uni0457 2 uni049C uni0457 2 uni04A0 uni0457 2 uni04A4 uni0457 22 uni04AE ampersand -46 at -60 copyright -29 eightinferior -80 exclamdown -32 fiveinferior -80 fivesuperior 4 fourinferior -100 foursuperior -10 nineinferior -80 ninesuperior 6 oneinferior -80 parenright 18 public.kern2.asterisk 16 public.kern2.colon -32 public.kern2.comma -60 public.kern2.emdash -50 public.kern2.guillemotleft -52 public.kern2.guillemotright -42 public.kern2.quotedblleft 18 public.kern2.quotedblright 18 public.kern2.uni0402 14 public.kern2.uni0404 -32 public.kern2.uni0409 -62 public.kern2.uni040E 3 public.kern2.uni0410 -55 public.kern2.uni0416 -12 public.kern2.uni0417 -14 public.kern2.uni0427 2 public.kern2.uni042A 14 public.kern2.uni0430 -72 public.kern2.uni0430.alt01 -90 public.kern2.uni0432 -50 public.kern2.uni0435 -74 public.kern2.uni0436 -58 public.kern2.uni0437 -65 public.kern2.uni043B -84 public.kern2.uni0442 -48 public.kern2.uni0443 -21 public.kern2.uni0445 -29 public.kern2.uni0447 -57 public.kern2.uni0456 -24 question 9 questiondown -70 registered 5 seveninferior -60 sevensuperior 18 sixinferior -80 slash -60 threeinferior -80 threesuperior 10 trademark 26 twoinferior -90 twosuperior 10 underscore -60 uni0405 -22 uni0408 -44 uni0414 -44 uni0424 -58 uni042F -51 uni0431 -49 uni0434 -76 uni0440 -40 uni0444 -90 uni044F -68 uni0455 -73 uni0457 10 uni0458 -20 uni0493 -50 uni04AE 4 uni04AF -27 uni04B0 4 uni04B1 -27 uni04D4 -80 zeroinferior -80 zerosuperior 8 uni04AF ampersand -22 at -2 eightinferior -34 eightsuperior 30 fiveinferior -28 fivesuperior 28 fourinferior -54 foursuperior 30 nineinferior -24 ninesuperior 30 oneinferior -36 onesuperior 8 parenright -6 public.kern2.asterisk 20 public.kern2.comma -68 public.kern2.emdash -12 public.kern2.guillemotleft -6 public.kern2.guillemotright -6 public.kern2.quotedblleft 33 public.kern2.quotedblright 40 public.kern2.uni0402 4 public.kern2.uni0404 4 public.kern2.uni0409 -44 public.kern2.uni040E -31 public.kern2.uni0410 -41 public.kern2.uni0416 -36 public.kern2.uni0425 -30 public.kern2.uni0427 -10 public.kern2.uni042A 4 public.kern2.uni0430 -16 public.kern2.uni0430.alt01 -13 public.kern2.uni0435 -13 public.kern2.uni0436 4 public.kern2.uni0437 -2 public.kern2.uni043B -38 public.kern2.uni0442 9 public.kern2.uni0443 17 public.kern2.uni0445 7 public.kern2.uni0447 10 public.kern2.uni0452 -5 public.kern2.uni04BB -5 registered 40 seveninferior -18 sixinferior -48 sixsuperior 30 slash -16 threeinferior -28 threesuperior 18 trademark 20 twoinferior -22 twosuperior 20 underscore -73 uni0408 -40 uni0414 -39 uni0424 -1 uni042F -13 uni0431 -2 uni0434 -29 uni0444 -13 uni044F -16 uni0455 -8 uni04AE -27 uni04AF 17 uni04B0 -27 uni04B1 17 uni04D4 -39 zeroinferior -26 zerosuperior 30 uni04B0 ampersand -44 at -56 copyright -23 eightinferior -74 fiveinferior -62 fivesuperior 4 fourinferior -80 foursuperior -10 nineinferior -70 ninesuperior 6 oneinferior -57 parenright 18 public.kern2.asterisk 16 public.kern2.colon -32 public.kern2.comma -60 public.kern2.emdash -50 public.kern2.guillemotleft -44 public.kern2.guillemotright -42 public.kern2.quotedblleft 18 public.kern2.quotedblright 18 public.kern2.uni0402 14 public.kern2.uni0404 -31 public.kern2.uni0409 -62 public.kern2.uni040E 3 public.kern2.uni0410 -55 public.kern2.uni0416 -16 public.kern2.uni0417 -14 public.kern2.uni0427 2 public.kern2.uni042A 10 public.kern2.uni0430 -70 public.kern2.uni0430.alt01 -71 public.kern2.uni0432 -50 public.kern2.uni0435 -71 public.kern2.uni0436 -58 public.kern2.uni0437 -65 public.kern2.uni043B -84 public.kern2.uni0442 -48 public.kern2.uni0443 -21 public.kern2.uni0445 -29 public.kern2.uni0447 -57 public.kern2.uni0456 -20 question 6 registered 5 seveninferior -50 sevensuperior 18 sixinferior -74 slash -60 threeinferior -62 threesuperior 10 trademark 26 twoinferior -67 twosuperior 10 underscore -60 uni0405 -22 uni0408 -44 uni0414 -44 uni0424 -49 uni042F -51 uni0431 -45 uni0434 -76 uni0440 -40 uni0444 -68 uni044F -68 uni0455 -73 uni0457 10 uni0458 -20 uni0493 -42 uni04AE 4 uni04AF -27 uni04B0 4 uni04B1 -27 uni04D4 -80 zeroinferior -68 zerosuperior 8 uni04B1 ampersand -22 at -2 eightinferior -34 eightsuperior 30 fiveinferior -28 fivesuperior 24 fourinferior -54 foursuperior 30 nineinferior -24 ninesuperior 30 oneinferior -36 onesuperior 4 public.kern2.asterisk 20 public.kern2.comma -58 public.kern2.emdash -12 public.kern2.guillemotleft -6 public.kern2.guillemotright -6 public.kern2.quotedblleft 27 public.kern2.quotedblright 44 public.kern2.uni0402 4 public.kern2.uni0404 4 public.kern2.uni0409 -40 public.kern2.uni040E -31 public.kern2.uni0410 -35 public.kern2.uni0416 -36 public.kern2.uni0425 -30 public.kern2.uni0427 -10 public.kern2.uni042A 4 public.kern2.uni0430 -16 public.kern2.uni0430.alt01 -13 public.kern2.uni0435 -13 public.kern2.uni0436 4 public.kern2.uni0437 -2 public.kern2.uni043B -34 public.kern2.uni0442 9 public.kern2.uni0443 17 public.kern2.uni0445 7 public.kern2.uni0447 10 public.kern2.uni0452 -5 public.kern2.uni04BB -5 registered 40 seveninferior -18 sixinferior -48 sixsuperior 30 slash -16 threeinferior -28 threesuperior 14 trademark 20 twoinferior -22 twosuperior 20 underscore -30 uni0408 -40 uni0414 -20 uni0424 -1 uni042F -13 uni0431 -2 uni0434 -24 uni0444 -13 uni044F -16 uni0455 -8 uni0458 14 uni04AE -27 uni04AF 17 uni04B0 -27 uni04B1 21 uni04D4 -39 zeroinferior -26 zerosuperior 30 uni04B2 ampersand -8 at -21 copyright -14 eightinferior 16 eightsuperior -6 fiveinferior 7 fivesuperior -10 fourinferior 16 foursuperior -46 nineinferior -13 ninesuperior -1 onesuperior -2 parenright 31 public.kern2.asterisk -6 public.kern2.braceright 9 public.kern2.colon 6 public.kern2.comma 21 public.kern2.emdash -61 public.kern2.guillemotleft -37 public.kern2.guillemotright -14 public.kern2.quotedblleft -15 public.kern2.quotedblright -9 public.kern2.uni0402 -3 public.kern2.uni0404 -35 public.kern2.uni0409 29 public.kern2.uni040E -5 public.kern2.uni0410 13 public.kern2.uni0416 9 public.kern2.uni0417 -11 public.kern2.uni0425 3 public.kern2.uni0427 -6 public.kern2.uni042A -3 public.kern2.uni0430 -4 public.kern2.uni0430.alt01 -20 public.kern2.uni0432 5 public.kern2.uni0435 -22 public.kern2.uni0436 19 public.kern2.uni0437 -6 public.kern2.uni043B 32 public.kern2.uni0442 -42 public.kern2.uni0443 19 public.kern2.uni0445 16 public.kern2.uni0447 -58 public.kern2.uni0452 5 public.kern2.uni0456 5 public.kern2.uni04BB 5 registered -16 seveninferior -24 sevensuperior 8 sixinferior 12 sixsuperior -31 slash 41 threeinferior 16 threesuperior -9 trademark 8 twoinferior 13 twosuperior -7 underscore 40 uni0405 -2 uni0408 18 uni0414 31 uni0424 -60 uni042F 8 uni0431 -16 uni0434 30 uni0440 2 uni0444 -16 uni044F 19 uni0458 79 uni04AE -2 uni04AF -30 uni04B0 -2 uni04B1 -18 uni04D4 19 zeroinferior 12 zerosuperior -6 uni04B3 ampersand -8 at -15 copyright -10 eightinferior -4 eightsuperior 8 fivesuperior 9 foursuperior 18 nineinferior -16 ninesuperior 4 onesuperior -9 parenright 31 public.kern2.asterisk -4 public.kern2.braceright 11 public.kern2.colon 9 public.kern2.comma 19 public.kern2.emdash -40 public.kern2.guillemotleft -26 public.kern2.guillemotright -12 public.kern2.quotedblleft -2 public.kern2.quotedblright 8 public.kern2.uni0402 -13 public.kern2.uni0404 -12 public.kern2.uni0409 21 public.kern2.uni040E -38 public.kern2.uni0410 9 public.kern2.uni0416 13 public.kern2.uni0417 -3 public.kern2.uni0425 11 public.kern2.uni0427 -29 public.kern2.uni042A -13 public.kern2.uni0430 -2 public.kern2.uni0430.alt01 -18 public.kern2.uni0435 -18 public.kern2.uni0436 17 public.kern2.uni0437 -1 public.kern2.uni043B 28 public.kern2.uni0442 -5 public.kern2.uni0443 18 public.kern2.uni0445 16 public.kern2.uni0447 -8 registered 6 seveninferior -16 sevensuperior -9 sixinferior -4 sixsuperior 13 slash 52 threeinferior 11 threesuperior 6 trademark -7 twoinferior 10 twosuperior 1 underscore 49 uni0408 13 uni0414 29 uni0424 -12 uni042F 10 uni0431 -11 uni0434 34 uni0440 5 uni0444 -18 uni044F 19 uni0455 -2 uni0458 86 uni04AE -42 uni04AF 2 uni04B0 -42 uni04B1 2 uni04D4 17 zerosuperior 13 uni04C1 uni0457 2 uni04CF parenright 6 public.kern2.guillemotleft 6 public.kern2.quotedblleft -18 public.kern2.quotedblright -10 public.kern2.uni0402 6 public.kern2.uni0409 4 public.kern2.uni042A 6 public.kern2.uni043B 10 public.kern2.uni0442 -7 public.kern2.uni0443 -6 public.kern2.uni0447 -16 registered -9 uni0414 10 uni0424 -6 uni0434 8 uni044F 4 uni04AF -6 uni04B1 -6 uni04DC uni0457 2 uni04DE uni04D8 -3 uni04EE uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uni04F0 uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uni04F2 uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uogonek dotlessj 2 j 2 jacute 2 jcircumflex 2 parenright 23 v V -12 X -12 ampersand -12 eightinferior -30 eightsuperior 30 fiveinferior -22 fivesuperior 28 fourinferior -42 foursuperior 30 nineinferior -20 ninesuperior 30 oneinferior -32 onesuperior 8 parenright -10 public.kern2.A -27 public.kern2.C 10 public.kern2.J -40 public.kern2.S 10 public.kern2.T 6 public.kern2.W -5 public.kern2.Y -25 public.kern2.a -14 public.kern2.a.alt01 -9 public.kern2.asterisk 20 public.kern2.c -11 public.kern2.comma -62 public.kern2.emdash -10 public.kern2.g -14 public.kern2.guillemotright -2 public.kern2.quotedblleft 35 public.kern2.quotedblright 40 public.kern2.s -2 public.kern2.u 1 public.kern2.w 16 public.kern2.y 23 registered 56 seveninferior -10 sixinferior -42 sixsuperior 30 slash -15 threeinferior -22 threesuperior 18 trademark 20 twoinferior -12 twosuperior 20 underscore -70 v 19 zeroinferior -20 zerosuperior 30 x V -20 ampersand -20 at -10 eightinferior -6 eightsuperior 12 fivesuperior 10 foursuperior 20 nineinferior -20 ninesuperior 4 public.kern2.A 2 public.kern2.J 2 public.kern2.T -16 public.kern2.U -8 public.kern2.W -10 public.kern2.Y -29 public.kern2.a.alt01 -15 public.kern2.asterisk 12 public.kern2.c -17 public.kern2.comma 12 public.kern2.emdash -35 public.kern2.guillemotleft -20 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.quotedblright 20 public.kern2.s -4 registered 20 seveninferior -10 sixinferior -8 sixsuperior 12 threeinferior 7 trademark 10 twoinferior 10 twosuperior 2 underscore 20 zerosuperior 22 zeroinferior V -54 X 13 fiveinferior -1 oneinferior -2 public.kern2.A 20 public.kern2.J 12 public.kern2.S 10 public.kern2.T -62 public.kern2.U -2 public.kern2.W -40 public.kern2.Y -80 public.kern2.a 22 public.kern2.a.alt01 28 public.kern2.c 36 public.kern2.comma -2 public.kern2.f -10 public.kern2.g -10 public.kern2.s 1 public.kern2.t -10 public.kern2.uni0402 -62 public.kern2.uni0409 17 public.kern2.uni040E -43 public.kern2.uni0410 20 public.kern2.uni0416 4 public.kern2.uni0425 13 public.kern2.uni0427 -48 public.kern2.uni042A -62 public.kern2.uni0430 22 public.kern2.uni0430.alt01 20 public.kern2.uni0435 36 public.kern2.uni0436 -4 public.kern2.uni043B 16 public.kern2.uni0442 -33 public.kern2.uni0443 -27 public.kern2.uni0447 -28 public.kern2.w -22 public.kern2.y -27 public.kern2.z 10 uni0405 10 uni0408 12 uni0414 6 uni0431 17 uni0434 -2 uni0444 10 uni044F 6 uni0455 7 uni0492 18 uni0493 16 uni04AE -80 uni04AF -26 uni04B0 -68 uni04B1 -26 uni04D4 20 v -20 zerosuperior V 20 X 12 b 21 fivesuperior -1 germandbls.alt01 12 jcircumflex 6 onesuperior -2 p 20 public.kern2.A -54 public.kern2.J -52 public.kern2.T 30 public.kern2.W 24 public.kern2.Y 8 public.kern2.a 10 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 12 public.kern2.g -6 public.kern2.h 11 public.kern2.i 4 public.kern2.t 14 public.kern2.u 20 public.kern2.uni0402 30 public.kern2.uni0409 -85 public.kern2.uni040E 2 public.kern2.uni0410 -54 public.kern2.uni0416 -18 public.kern2.uni0427 12 public.kern2.uni042A 30 public.kern2.uni0430 10 public.kern2.uni0436 2 public.kern2.uni043B -43 public.kern2.uni0442 10 public.kern2.uni0443 38 public.kern2.uni0445 22 public.kern2.uni0447 9 public.kern2.uni04BB 11 public.kern2.w 38 public.kern2.y 38 public.kern2.z 20 thorn 21 uni0408 -52 uni0414 -54 uni0424 6 uni042F -9 uni0434 -26 uni0440 20 uni0444 -12 uni044F -9 uni0457 4 uni0492 12 uni04AE 8 uni04AF 30 uni04B0 8 uni04B1 30 uni04D4 -54 v 30 x 22 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/layercontents.plist000066400000000000000000000004371416264461600325620ustar00rootroot00000000000000 public.default glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/lib.plist000066400000000000000000000654071416264461600304460ustar00rootroot00000000000000 public.glyphOrder .notdef .null CR space a a.alt01 b c d e f g g.alt01 g.alt02 h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z zero zero.alt01 zero.alt02 one two three four five six seven eight nine ampersand at hyphen softhyphen endash emdash underscore period ellipsis colon comma semicolon quotesingle quotedbl quoteleft quoteright quotedblleft quotedblright quotesinglbase quotedblbase guilsinglleft guilsinglright guillemotleft guillemotright exclamdown exclam questiondown question parenleft parenright bracketleft bracketright braceleft braceright slash backslash fraction percent perthousand bar brokenbar section paragraph copyright registered trademark ordfeminine ordmasculine degree prime primedbl asterisk dagger daggerdbl numbersign asciicircum asciitilde plus minus plusminus multiply divide equal approxequal notequal less greater lessequal greaterequal periodcentered bullet lozenge logicalnot radical integral infinity estimated litre numerosign partialdiff currency cent Euro florin sterling dollar yen baht coloncurrency lira naira rupee won sheqel dong kip tugrik peso guarani hryvnia cedi tenge rupeeindian liraturkish ruble bitcoin fi fl aacute abreve acircumflex adieresis adotbelow agrave ahook amacron aogonek aring aringacute atilde abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde aacute.alt01 abreve.alt01 acircumflex.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 ae aeacute cacute ccaron ccedilla ccircumflex cdotaccent dcaron dcroat eth eacute ebreve ecaron ecircumflex edieresis edotaccent edotbelow egrave ehook emacron eogonek etilde ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook ecircumflextilde schwa gbreve gcircumflex gcommaaccent gdotaccent gbreve.alt01 gcircumflex.alt01 gcommaaccent.alt01 gdotaccent.alt01 hbar hcircumflex dotlessi iacute ibreve icircumflex idieresis idotbelow igrave ihook imacron iogonek itilde ij ijacute dotlessj jacute jcircumflex kcommaaccent kgreenlandic lacute lcaron lcommaaccent ldot lslash nacute ncaron ncommaaccent ntilde napostrophe eng oacute obreve ocircumflex odieresis odotbelow ograve ohook ohungarumlaut omacron oslash oslashacute otilde ohorn ohornacute ohorndotbelow ohorngrave ohornhook ohorntilde ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhook ocircumflextilde oe racute rcaron rcommaaccent sacute scaron scedilla scircumflex scommaaccent germandbls germandbls.alt01 tbar tcaron tcommaaccent tcedilla thorn uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhungarumlaut umacron uogonek uring utilde uhorn uhornacute uhorndotbelow uhorngrave uhornhook uhorntilde wacute wcircumflex wdieresis wgrave yacute ycircumflex ydieresis ydotbelow ygrave yhook ytilde zacute zcaron zdotaccent Aacute Abreve Acircumflex Adieresis Adotbelow Agrave Ahook Amacron Aogonek Aring Aringacute Atilde Abreveacute Abrevedotbelow Abrevegrave Abrevehook Abrevetilde Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhook Acircumflextilde AE AEacute Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Dcaron Dcroat Eth Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Eogonek Etilde Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde Schwa Gbreve Gcircumflex Gcommaaccent Gdotaccent Hbar Hcircumflex Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihook Imacron Iogonek Itilde IJ IJacute Jacute Jcircumflex Kcommaaccent Lacute Lcaron Lcommaaccent Ldot Lslash Nacute Ncaron Ncommaaccent Ntilde Eng Oacute Obreve Ocircumflex Odieresis Odotbelow Ograve Ohook Ohungarumlaut Omacron Oslash Oslashacute Otilde Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhook Ohorntilde Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhook Ocircumflextilde OE Racute Rcaron Rcommaaccent Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls Tbar Tcaron Tcommaaccent Tcedilla Thorn Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhook Uhungarumlaut Umacron Uogonek Uring Utilde Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhook Uhorntilde Wacute Wcircumflex Wdieresis Wgrave Yacute Ycircumflex Ydotbelow Ydieresis Ygrave Yhook Ytilde Zacute Zcaron Zdotaccent mu Delta product summation Omega pi uni0430 uni0430.alt01 uni0431 uni0432 uni0433 uni0434 uni0435 uni0436 uni0437 uni0438 uni0439 uni043A uni043B uni043C uni043D uni043E uni043F uni0440 uni0441 uni0442 uni0443 uni0444 uni0445 uni0446 uni0447 uni0448 uni0449 uni044A uni044B uni044C uni044D uni044E uni044F uni0410 uni0411 uni0412 uni0413 uni0414 uni0415 uni0416 uni0417 uni0418 uni0419 uni041A uni041B uni041C uni041D uni041E uni041F uni0420 uni0421 uni0422 uni0423 uni0424 uni0425 uni0426 uni0427 uni0428 uni0429 uni042A uni042B uni042C uni042D uni042E uni042F uni04D3 uni04D1 uni04D3.alt01 uni04D1.alt01 uni04D5 uni0453 uni0491 uni0493 uni0495 uni0450 uni0451 uni04D7 uni0454 uni04DD uni04C2 uni0497 uni04DF uni0499 uni04CF uni04E5 uni045D uni04E3 uni045C uni049B uni049D uni04A1 uni0459 uni04A3 uni045A uni04A5 uni04E7 uni0473 uni04E9 uni04AB uni04EF uni04F1 uni04F3 uni045E uni04AF uni04B1 uni04B3 uni04F5 uni04B7 uni04B9 uni04F9 uni0455 uni045F uni0456 uni0457 uni0458 uni0452 uni045B uni04BB uni04D9 uni04D2 uni04D0 uni04D4 uni0403 uni0490 uni0492 uni0494 uni0400 uni0401 uni04D6 uni0404 uni04DC uni04C1 uni0496 uni04DE uni0498 uni04C0 uni04E4 uni040D uni04E2 uni040C uni049A uni049C uni04A0 uni0409 uni04A2 uni040A uni04A4 uni04E6 uni0472 uni04E8 uni04AA uni04EE uni04F0 uni04F2 uni040E uni04AE uni04B0 uni04B2 uni04F4 uni04B6 uni04B8 uni04F8 uni0405 uni040F uni0406 uni0407 uni0408 uni0402 uni040B uni04BA uni04D8 zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior onehalf uni2153 uni2154 onequarter threequarters uni2155 uni2156 uni2157 uni2158 uni2159 uni215A uni2150 uni215B uni215C uni215D uni215E uni2151 checkmark crossmark arrowleft arrowup arrowdown arrowright arrowupleft arrowupright arrowdownleft arrowdownright arrowupleftcorner arrowdownleftcorner arrowleftupcorner arrowrightupcorner arrowleftdowncorner arrowrightdowncorner arrowuprightcorner arrowdownrightcorner arrowleftarrowright arrowrightarrowleft arrowleftright arrowupdown arrowdowncounterclockhalf arrowdownclockhalf arrowhookleft arrowhookright arrowupleftcounterclock arrowuprightclock tilde tilde.alt01 macron dotaccent dieresis hungarumlaut acute grave circumflex caron breve breve.cyrl ring ringacute commaturnedtop caronslovak cedilla ogonek tildecomb macroncomb dotaccentcomb dieresiscomb hungarumlautcomb acutecomb gravecomb circumflexcomb caroncomb brevecomb ringcomb hookcomb commaturnedtopcomb caronslovakcomb horncomb cedillacomb dotbelowcomb commabelowcomb ogonekcomb breveacute brevegrave brevehook brevetilde dieresisacute dieresiscaron dieresisgrave circumflexacute circumflexbreve circumflexgrave circumflexhook dieresismacron circumflextilde tilde.case tilde.alt01.case macron.case dotaccent.case dieresis.case hungarumlaut.case acute.case grave.case circumflex.case caron.case breve.case breve.cyrl_case ring.case ringacute.case hookcomb.case breveacute.case brevegrave.case brevehook.case brevetilde.case dieresisacute.case dieresiscaron.case dieresisgrave.case circumflexacute.case circumflexbreve.case circumflexgrave.case circumflexhook.case dieresismacron.case circumflextilde.case nbspace fcclogo celogo extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo/metainfo.plist000066400000000000000000000004761416264461600314750ustar00rootroot00000000000000 creator com.github.fonttools.ufoLib formatVersion 3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/000077500000000000000000000000001416264461600260205ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/fontinfo.plist000066400000000000000000000433751416264461600307330ustar00rootroot00000000000000 ascender 780 capHeight 698 copyright Copyright 2020 IBM Corp. All rights reserved. descender -220 familyName IBM Plex Serif guidelines italicAngle 0.0 openTypeGaspRangeRecords rangeGaspBehavior 1 rangeMaxPPEM 8 rangeGaspBehavior 0 rangeMaxPPEM 16 rangeGaspBehavior 0 1 rangeMaxPPEM 65535 openTypeHeadCreated 2014/06/20 01:44:42 openTypeHeadFlags 0 3 openTypeHeadLowestRecPPEM 9 openTypeHheaAscender 1025 openTypeHheaCaretOffset 0 openTypeHheaCaretSlopeRise 1 openTypeHheaCaretSlopeRun 0 openTypeHheaDescender -275 openTypeHheaLineGap 0 openTypeNameDesigner Mike Abbink, Paul van der Laan, Pieter van Rosmalen openTypeNameDesignerURL http://www.ibm.com openTypeNameLicense This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL openTypeNameLicenseURL http://scripts.sil.org/OFL openTypeNameManufacturer Bold Monday openTypeNameManufacturerURL http://www.boldmonday.com openTypeNamePreferredFamilyName IBM Plex Serif openTypeNamePreferredSubfamilyName Text openTypeNameRecords encodingID 0 languageID 0 nameID 0 platformID 1 string Copyright 2020 IBM Corp. All rights reserved. encodingID 1 languageID 1033 nameID 0 platformID 3 string Copyright 2020 IBM Corp. All rights reserved. encodingID 0 languageID 0 nameID 1 platformID 1 string IBM Plex Serif Text encodingID 1 languageID 1033 nameID 1 platformID 3 string IBM Plex Serif Text encodingID 0 languageID 0 nameID 2 platformID 1 string Regular encodingID 1 languageID 1033 nameID 2 platformID 3 string Regular encodingID 0 languageID 0 nameID 3 platformID 1 string IBM;IBMPlexSerif-Text;2.006;2020 encodingID 1 languageID 1033 nameID 3 platformID 3 string IBM;IBMPlexSerif-Text;2.006;2020 encodingID 0 languageID 0 nameID 4 platformID 1 string IBM Plex Serif Text encodingID 1 languageID 1033 nameID 4 platformID 3 string IBM Plex Serif Text encodingID 0 languageID 0 nameID 5 platformID 1 string Version 2.006 2020 encodingID 1 languageID 1033 nameID 5 platformID 3 string Version 2.006 2020 encodingID 0 languageID 0 nameID 6 platformID 1 string IBMPlexSerif-Text encodingID 1 languageID 1033 nameID 6 platformID 3 string IBMPlexSerif-Text encodingID 0 languageID 0 nameID 7 platformID 1 string IBM Plex¨ is a trademark of IBM Corp, registered in many jurisdictions worldwide. encodingID 1 languageID 1033 nameID 7 platformID 3 string IBM Plex® is a trademark of IBM Corp, registered in many jurisdictions worldwide. encodingID 0 languageID 0 nameID 8 platformID 1 string Bold Monday encodingID 1 languageID 1033 nameID 8 platformID 3 string Bold Monday encodingID 0 languageID 0 nameID 9 platformID 1 string Mike Abbink, Paul van der Laan, Pieter van Rosmalen encodingID 1 languageID 1033 nameID 9 platformID 3 string Mike Abbink, Paul van der Laan, Pieter van Rosmalen encodingID 0 languageID 0 nameID 11 platformID 1 string http://www.boldmonday.com encodingID 1 languageID 1033 nameID 11 platformID 3 string http://www.boldmonday.com encodingID 0 languageID 0 nameID 12 platformID 1 string http://www.ibm.com encodingID 1 languageID 1033 nameID 12 platformID 3 string http://www.ibm.com encodingID 0 languageID 0 nameID 13 platformID 1 string This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL encodingID 1 languageID 1033 nameID 13 platformID 3 string This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL encodingID 0 languageID 0 nameID 14 platformID 1 string http://scripts.sil.org/OFL encodingID 1 languageID 1033 nameID 14 platformID 3 string http://scripts.sil.org/OFL encodingID 0 languageID 0 nameID 16 platformID 1 string IBM Plex Serif encodingID 1 languageID 1033 nameID 16 platformID 3 string IBM Plex Serif encodingID 0 languageID 0 nameID 17 platformID 1 string Text encodingID 1 languageID 1033 nameID 17 platformID 3 string Text encodingID 0 languageID 0 nameID 19 platformID 1 string How razorback-jumping frogs can level six piqued gymnasts! encodingID 1 languageID 1033 nameID 19 platformID 3 string How razorback-jumping frogs can level six piqued gymnasts! openTypeNameUniqueID IBM;IBMPlexSerif-Text;2.006;2020 openTypeNameVersion Version 2.006 2020 openTypeOS2CodePageRanges 0 1 2 4 7 8 29 openTypeOS2Panose 2 6 5 3 5 4 6 0 2 3 openTypeOS2Selection openTypeOS2StrikeoutPosition 304 openTypeOS2StrikeoutSize 48 openTypeOS2SubscriptXOffset 0 openTypeOS2SubscriptXSize 700 openTypeOS2SubscriptYOffset 140 openTypeOS2SubscriptYSize 650 openTypeOS2SuperscriptXOffset 0 openTypeOS2SuperscriptXSize 700 openTypeOS2SuperscriptYOffset 477 openTypeOS2SuperscriptYSize 650 openTypeOS2Type openTypeOS2TypoAscender 780 openTypeOS2TypoDescender -220 openTypeOS2TypoLineGap 300 openTypeOS2UnicodeRanges 0 1 2 3 5 6 9 29 31 32 33 35 36 37 45 60 62 openTypeOS2VendorID IBM openTypeOS2WeightClass 450 openTypeOS2WidthClass 5 openTypeOS2WinAscent 977 openTypeOS2WinDescent 212 postscriptBlueValues postscriptFamilyBlues postscriptFamilyOtherBlues postscriptIsFixedPitch postscriptOtherBlues postscriptStemSnapH postscriptStemSnapV postscriptUnderlinePosition -73 postscriptUnderlineThickness 48 styleMapFamilyName IBM Plex Serif Text styleMapStyleName regular styleName Text trademark IBM Plex¨ is a trademark of IBM Corp, registered in many jurisdictions worldwide. unitsPerEm 1000 versionMajor 2 versionMinor 6 xHeight 518 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/000077500000000000000000000000001416264461600273265ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_.glif000066400000000000000000000060731416264461600305160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 2 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5d9ca44a63800838eef2e894fef7b85f74c1485ac552192bc95004fd3499461ade3a7657d155299c548fedfae3b51107f8f99b379d8e3470d601474cae256d01 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_E_.glif000066400000000000000000000113631416264461600307600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 23 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 4 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 60b674906b5eff1a6afce3ae8c69d0741d7ca6c6fe41aca6c69bb495012eea7c3a2141f964eb1a04c5718bdea802ec3daeee55dec9ead3c364e9edda5343da2b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_E_acute.glif000066400000000000000000000015131416264461600317760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_acute.glif000066400000000000000000000015101416264461600315270ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_breve.glif000066400000000000000000000015101416264461600315310ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_breveacute.glif000066400000000000000000000015231416264461600325570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_brevedotbelow.glif000066400000000000000000000021461416264461600332770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_brevegrave.glif000066400000000000000000000015231416264461600325620ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_brevehook.glif000066400000000000000000000015211416264461600324140ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_brevetilde.glif000066400000000000000000000015231416264461600325570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_circumflex.glif000066400000000000000000000015221416264461600325720ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap A_circumflexacute.glif000066400000000000000000000015351416264461600335410ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap A_circumflexdotbelow.glif000066400000000000000000000021601416264461600342520ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap A_circumflexgrave.glif000066400000000000000000000015351416264461600335440ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap A_circumflexhook.glif000066400000000000000000000015331416264461600333760ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap A_circumflextilde.glif000066400000000000000000000015351416264461600335410ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_dieresis.glif000066400000000000000000000015161416264461600322430ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_dotbelow.glif000066400000000000000000000015161416264461600322530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_grave.glif000066400000000000000000000015101416264461600315320ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_hook.glif000066400000000000000000000015131416264461600313710ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_macron.glif000066400000000000000000000015121416264461600317070ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_ogonek.glif000066400000000000000000000110241416264461600317110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 19 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 67498da62dc5f9c51f9b0471d3988574086ed8ef6103da2fefed4ee52d7a0822fcd47e37287966838024bb8c8560678c812163f37c94a650e958eb268bdcc039 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_ring.glif000066400000000000000000000015061416264461600313720ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_ringacute.glif000066400000000000000000000015201416264461600324100ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/A_tilde.glif000066400000000000000000000015101416264461600315270ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/B_.glif000066400000000000000000000073161416264461600305200ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 45 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 45 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 36 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 36 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id bc718c1a0360102a30653108cb05a03aad8115cd954a6b11bf0cd315e89c906bee920004772b6c0e5438fa8290fdd3261f9a85bc4c73a34b87c0d81943b749f0 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_.glif000066400000000000000000000064611416264461600305210ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 7b79848332ef5bf989ab8d1177cd22db978b22e42f7ba792d35ce3ad12da071d53e08368438f6a23681e5b9d024b49605835a22d9f0412f0d2a186df12a6a365 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_acute.glif000066400000000000000000000015101416264461600315310ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_caron.glif000066400000000000000000000015101416264461600315320ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_cedilla.glif000066400000000000000000000112661416264461600320360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 59 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 37 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 585b8b68ff82edaacfeb42c921c03bb157d426d0cdbd03275be2be06a228811998962ca932ff4b08e158219a406045f5af4dd8e2f1f67ecdada8d49967918951 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_circumflex.glif000066400000000000000000000015221416264461600325740ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/C_dotaccent.glif000066400000000000000000000015201416264461600323750ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_.glif000066400000000000000000000051701416264461600305160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8836fa926bd43da2d0306f72c5ad131cf2257eac4805d0187f30f7e4592377c4a7aab8e34eab76d8cad6df94bc1e867ddcf4e160961e063ce29c6080eece02ff extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_caron.glif000066400000000000000000000015101416264461600315330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_croat.glif000066400000000000000000000067131416264461600315530ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 30 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e456af6233d5ebce1d5ed6f66eec03560260f331cc1169e739629125872d0cf764a6019db7cadd91c9b5194d6c71ea9967d0d113b4a3c67e9b0e0d0d849c7646 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/D_elta.glif000066400000000000000000000036541416264461600313710ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w638l42+51l267+698l370+698l595+51l595+0l42+0|l106+54l488+54l300+616l294+616| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_.glif000066400000000000000000000064421416264461600305220ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 9 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f979738db05ba22252d9cba919b0aa056867e56aaf1d053392b591c8008e71c9c2d8d8559b7e5b50ba78e6c36a654910951078f587df7ca86ace0bbd0a93f170 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_acute.glif000066400000000000000000000015101416264461600315330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_breve.glif000066400000000000000000000015101416264461600315350ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_caron.glif000066400000000000000000000015101416264461600315340ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_circumflex.glif000066400000000000000000000015221416264461600325760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap E_circumflexacute.glif000066400000000000000000000015351416264461600335450ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap E_circumflexdotbelow.glif000066400000000000000000000021601416264461600342560ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap E_circumflexgrave.glif000066400000000000000000000015351416264461600335500ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap E_circumflexhook.glif000066400000000000000000000015331416264461600334020ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap E_circumflextilde.glif000066400000000000000000000015351416264461600335450ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_dieresis.glif000066400000000000000000000015161416264461600322470ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_dotaccent.glif000066400000000000000000000015201416264461600323770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_dotbelow.glif000066400000000000000000000015161416264461600322570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_grave.glif000066400000000000000000000015101416264461600315360ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_hook.glif000066400000000000000000000015131416264461600313750ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_macron.glif000066400000000000000000000015121416264461600317130ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_ng.glif000066400000000000000000000113131416264461600310400ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 144 6 160 6 176 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 07536831bcf315663160fc84e652541931b3625df90d8c06c9c88708430aa59d15f3f777be8df15524d9cd6940701d0f68445bf4167c8681961015d92a021cee extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_ogonek.glif000066400000000000000000000114641416264461600317250ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 18 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 506415c1a5f33e1cf4014d389319e183a803cafd668b894e4b49f097f501081071501bce345a002ab4ee2ba15b6848ab93a953cc4a8cfb788a848f24388cb24b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_th.glif000066400000000000000000000010671416264461600310540ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_tilde.glif000066400000000000000000000015101416264461600315330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/E_uro.glif000066400000000000000000000113021416264461600312370ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 27 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 192 32 208 32 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 32 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 18 27 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 27 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 159 36 175 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 47 39 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0ae49070b7c8e1f573aa2b3eea065ff64b546fdbafe9b82c173177a64ca5116c47882b9b2209289b9161e78cfd9ec5e2c6dab8fcda3d55998651bae85a0f06f9 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/F_.glif000066400000000000000000000061071416264461600305210ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 9 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 12e21ef772b3f1478bc3f58fd24ae606cf7088421b45f1b8b71d0b3c39d885dcd6a7e13556b8ef468830c300c7cd495ce0309aa380150c8ec80dbcc2cd6e84ea extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_.glif000066400000000000000000000106401416264461600305170ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 22 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 46 38 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4645cfab3e2642e7feee2ce6e2aec9aa3d3a2677defbd7f266baf7be00156a3a39d4a988e05a90d0467be62ad38eb831e1ec0aebfc95f5799adbfe5eb70253c7 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_breve.glif000066400000000000000000000015101416264461600315370ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_circumflex.glif000066400000000000000000000015221416264461600326000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_commaaccent.glif000066400000000000000000000015231416264461600327120ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_dotaccent.glif000066400000000000000000000015201416264461600324010ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/G_ermandbls.glif000066400000000000000000000103361416264461600324110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 24 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 25 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5e0daa6962006a6603d73dcb41106ea8437e5eecd4e226459129ce9640267b9312b924b46c755ca77ebf36fd2121e35042cba8f45e32d0dafcbfad8d19f3b11a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/H_.glif000066400000000000000000000101221416264461600305130ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id dd1f8959179d3929e86a125b28308f69d0469957251850168b027f1401f932f0877f25bd3c545ab03ee51960a5784b5fe0f329cb2c45ec279c10429bfa8bf0c2 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/H_bar.glif000066400000000000000000000126621416264461600312130ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 8 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 0 36 16 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 4 7 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 63 4 79 4 95 4 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 03d6dc1d2d88d4ff175cb54bc26aa1057cacb56a1ce7cfc008ccbaad86a05068c4cbe6b6a442f549b2566ce1b71dbc6ff6dd8feb526711d23621b752275a236a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/H_circumflex.glif000066400000000000000000000015221416264461600326010ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_.glif000066400000000000000000000037631416264461600305310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w353l52+50l126+50l126+648l52+648l52+698l301+698l301+648l227+648l227+50l301+50l301+0l52+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_J_.glif000066400000000000000000000014751416264461600310000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_J_acute.glif000066400000000000000000000025231416264461600320150ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component3 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_acute.glif000066400000000000000000000015121416264461600315410ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_breve.glif000066400000000000000000000015121416264461600315430ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_circumflex.glif000066400000000000000000000015241416264461600326040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_dieresis.glif000066400000000000000000000015201416264461600322460ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_dotaccent.glif000066400000000000000000000015221416264461600324050ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_dotbelow.glif000066400000000000000000000015161416264461600322630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_grave.glif000066400000000000000000000015121416264461600315440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_hook.glif000066400000000000000000000015131416264461600314010ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_macron.glif000066400000000000000000000015141416264461600317210ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_ogonek.glif000066400000000000000000000070541416264461600317310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 23c9d8f6be44cb1f4dc824c3731f8765ef8bd6e10f3ac9bbc482efb79c4a62ab9d762a522fc60fba86e0b12ab9f636740643be2ebdb506f4f85530c06b9428e3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/I_tilde.glif000066400000000000000000000015121416264461600315410ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/J_.glif000066400000000000000000000051631416264461600305260ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3df1d916b903fb2b6ee8ad790c3d3d123cd2a484b81e09c4acff8f0c16078eb2a92d320d4ea33f281eab5c82babcc528981e985c22b043a8625123b4b6c0d123 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/J_acute.glif000066400000000000000000000014601416264461600315440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/J_circumflex.glif000066400000000000000000000015221416264461600326030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/K_.glif000066400000000000000000000077211416264461600305310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4ad4d9a2d594d3e199f6b81b5818ca5eb85cc25ca9724845604b59cb8c6d653ea7dec6f3446b0f9ab882f4dcdf11b23354e96624fa8ff7b4e2c78be13c75c12d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/K_commaaccent.glif000066400000000000000000000015231416264461600327160ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_.glif000066400000000000000000000043361416264461600305310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w598l52+50l126+50l126+648l52+648l52+698l301+698l301+648l227+648l227+54l470+54l470+182l550+182l550+0l52+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_acute.glif000066400000000000000000000015121416264461600315440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_caron.glif000066400000000000000000000015271416264461600315530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_commaaccent.glif000066400000000000000000000015231416264461600327170ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_dot.glif000066400000000000000000000015241416264461600312340ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/L_slash.glif000066400000000000000000000074131416264461600315630ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 13 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 14 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 15 3 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 03998f7b1ed54769223c4a523658cb5410c84c1febdbc09bdb6806f7f88cc6bac81f183c61582db1116d511c8b7a76b1721a2ed81a2d34216238e88d827ccd5a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/M_.glif000066400000000000000000000100331416264461600305210ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 4 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4b6b816255841a5a8817fc99b298dd0ca31d65834471b32d04263baf98f3334eb9db087fc8a9c7e1c793419ebf4e7a61096c55ee9968c94312991ac0b3b74ce9 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_.glif000066400000000000000000000065671416264461600305430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ddd80680fbf5464e05a1c85116c1833d780c9a239fb46dec7ae1714be02d7d0ba9921540bd864aaf58732a8893356163bc540ee5b92680a3c8a3912c4c6bc2a7 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_acute.glif000066400000000000000000000015101416264461600315440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_caron.glif000066400000000000000000000015101416264461600315450ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_commaaccent.glif000066400000000000000000000015231416264461600327210ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/N_tilde.glif000066400000000000000000000015101416264461600315440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_.glif000066400000000000000000000054261416264461600305350ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 7fe64d70c09d210f5e0c16aadf4f470766d269134a9c26be345b78a8060e5a1905587c250639207021d53103b2a607591b96d262742aba17365063fead5eee75 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_E_.glif000066400000000000000000000114051416264461600307730ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 17 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f4e7bce10ae44b1e1db97b5d243b74cfb4e30c7964cc59725be72b8826077278ef13bf94c8ca439efacbf7f402e8327d2624dff8d89f66f62e70476ed507c567 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_acute.glif000066400000000000000000000015101416264461600315450ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_breve.glif000066400000000000000000000015101416264461600315470ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_circumflex.glif000066400000000000000000000015221416264461600326100ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap O_circumflexacute.glif000066400000000000000000000015351416264461600335570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap O_circumflexdotbelow.glif000066400000000000000000000021601416264461600342700ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap O_circumflexgrave.glif000066400000000000000000000015351416264461600335620ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap O_circumflexhook.glif000066400000000000000000000015331416264461600334140ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap O_circumflextilde.glif000066400000000000000000000015351416264461600335570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_dieresis.glif000066400000000000000000000015161416264461600322610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_dotbelow.glif000066400000000000000000000015161416264461600322710ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_grave.glif000066400000000000000000000015101416264461600315500ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_hook.glif000066400000000000000000000015131416264461600314070ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_horn.glif000066400000000000000000000072421416264461600314220ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0e499f8dfd0513cd0b1fb2e780a74a91439a0e50d7164e72f03ac7cb2c66eb8d1e2c3e08d4b471ede9792814319b2351535dd4d57ae7d2829306391dfdd3ecc7 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_hornacute.glif000066400000000000000000000015201416264461600324350ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_horndotbelow.glif000066400000000000000000000015261416264461600331610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_horngrave.glif000066400000000000000000000015201416264461600324400ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_hornhook.glif000066400000000000000000000015231416264461600322770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_horntilde.glif000066400000000000000000000015261416264461600324430ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_hungarumlaut.glif000066400000000000000000000015261416264461600331670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_macron.glif000066400000000000000000000015121416264461600317250ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_mega.glif000066400000000000000000000110151416264461600313560ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 53 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 15 values pushed */ 144 0 160 0 176 0 192 0 208 0 224 0 240 0 7 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 0 0 16 0 32 0 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9cf00fc772c41e2d6ca44d9a2c4252c7dc522bbfe834aa7432561d14328d0481f9dca0c50dd5149b8a8f04c488932a8650eb71015e39670b2c686ad948bee50b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_slash.glif000066400000000000000000000103061416264461600315610ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 9 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 31 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 1 39 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 12 9 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 31 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 15 12 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 12 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 49 39 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 7e7294144c0b94a380912f3f58f9ea78b9d3e47ed7f6a75269550f9b33cf7a2f5d401e5f5fc9e7d15c2320643ed53e829d61972252df24f83734185a12b3ce58 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_slashacute.glif000066400000000000000000000015221416264461600326030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/O_tilde.glif000066400000000000000000000015101416264461600315450ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/P_.glif000066400000000000000000000063121416264461600305310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 12 48 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 12 96 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c609676f774a52fa2dddfff5e04757774e4516449f37e7f59788bca5b33ba617b1871d3842f74552f8c8f39925a6618ce0af7ca42bc9882a0864c76e6c6d2a59 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Q_.glif000066400000000000000000000071031416264461600305310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8288bfe1412ada5c77324f914e4afbe23f4136d8608bd86f5546b6912208772e955cc3a465ab8099e1c156eca5b167b6d3a5f4dc042e0e93c822b8e80f5373fe extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_.glif000066400000000000000000000102371416264461600305340ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 25 48 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 25 96 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 25 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e509430b9bd839351e9a1e497f6a78c5bf2c9b8aaadeb49a6f97fa46e6c63e69bf414cf16de31b30d353fb25297c23847aee6c7ca6c70bd6848b845a1c662867 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_acute.glif000066400000000000000000000015101416264461600315500ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_caron.glif000066400000000000000000000015101416264461600315510ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/R_commaaccent.glif000066400000000000000000000015231416264461600327250ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_.glif000066400000000000000000000110741416264461600305350ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 39 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 4 12 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 27 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 39 45 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 712056da4cce104c34d6074ca71c7a8e70214c707cb6c50d8ec19e01f1ed8b353997754f86fd7e26ab7c94aed1133d921c0d5c4c3f879a165c31c3f14c67b025 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_acute.glif000066400000000000000000000015101416264461600315510ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_caron.glif000066400000000000000000000015101416264461600315520ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_cedilla.glif000066400000000000000000000140041416264461600320470ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 69 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 69 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 73 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 54 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 54 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 27 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 42 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 45 54 60 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2940c8ac79bbc407a2f2df94a9898c0d6cb39fe5a2d288ca28808c30f74189f8701aa9e8f28d31c370de01881369d6f5cca51d1ef1d00955af6a105b4f2a4ca5 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_chwa.glif000066400000000000000000000063521416264461600314030ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 13 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 92ac8a9a5c1553075bd3d115f5594ab2ef09d72fdd1db605eda0e3d4445b15e500aa3b492149c59dd5386f5243cdfbfa3c5f5d22fff165a9fb9b4ba6639af2ea extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_circumflex.glif000066400000000000000000000015221416264461600326140ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/S_commaaccent.glif000066400000000000000000000015231416264461600327260ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_.glif000066400000000000000000000046771416264461600305510ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w665l189+50l283+50l283+644l115+644l115+527l35+527l35+698l630+698l630+527l550+527l550+644l384+644l384+50l478+50l478+0l189+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_bar.glif000066400000000000000000000066151416264461600312300ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 9 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 307460e4c8c281093b7699a5c7916355a0cffa6689071dcd2bc94b59c4d5c682e4686e28dcc4813ef275d0e9bf2cdf8b83c6d048a609ccf6c8b5ec6ea3092a0d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_caron.glif000066400000000000000000000015101416264461600315530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_cedilla.glif000066400000000000000000000015171416264461600320550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_commaaccent.glif000066400000000000000000000015231416264461600327270ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/T_horn.glif000066400000000000000000000076201416264461600314270ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 63 8 79 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 111 8 127 8 143 8 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 48 16 64 16 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 224 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 80 16 96 16 112 16 128 16 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 16 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2a88b043ecb8080666cff8c689a98ee43f4168cb830e1a0a2cb2d04655bed280fd64aa157b164deb1e2d2b4722d46f264ead4bb2295fa1ab639d6b37130c2d4d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_.glif000066400000000000000000000060331416264461600305360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id cc1efc8bd990da7f8b9916717399689979c3858608d7e4bf2c39341d672d28c9eef11e09a4f21ad870bab5eb63b4f96d46d7e707cf52ecef14a4e8dea29d73a9 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_acute.glif000066400000000000000000000015101416264461600315530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_breve.glif000066400000000000000000000015101416264461600315550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_circumflex.glif000066400000000000000000000015221416264461600326160ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_dieresis.glif000066400000000000000000000015161416264461600322670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_dotbelow.glif000066400000000000000000000015161416264461600322770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_grave.glif000066400000000000000000000015101416264461600315560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_hook.glif000066400000000000000000000015131416264461600314150ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_horn.glif000066400000000000000000000066331416264461600314330ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1c61acef98b03defa38bb331bc9a814cc1e2ec04081a09ef327d6749eea2f80f55d993291cacbc0bd3c582382763cfdb6fe897f24a7de3e49b53ee1c490d72c3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_hornacute.glif000066400000000000000000000015201416264461600324430ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_horndotbelow.glif000066400000000000000000000015261416264461600331670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_horngrave.glif000066400000000000000000000015201416264461600324460ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_hornhook.glif000066400000000000000000000015231416264461600323050ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_horntilde.glif000066400000000000000000000015261416264461600324510ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_hungarumlaut.glif000066400000000000000000000015261416264461600331750ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_macron.glif000066400000000000000000000015121416264461600317330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_ogonek.glif000066400000000000000000000110741416264461600317420ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 26 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3f1a8605531c3bdff538aa3dc4ff115180bf05da090749312eb93fd5d8f080c2a1650a4eee3e6d62ef27fcd85c4509b245f1b401822ea00fea11856919f8843c extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_ring.glif000066400000000000000000000015061416264461600314160ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/U_tilde.glif000066400000000000000000000015101416264461600315530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/V_.glif000066400000000000000000000052331416264461600305400ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c7e1bfb70cbf5b6b0249295ef6b5718ad8b0ffd4b2e2a14d24d1bdd5b360fd52a6b7f972f3737348e562f4019ccf7b0eda5597947cc36c9dd36fdb557081a1ce extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_.glif000066400000000000000000000072141416264461600305420ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id aec587833ab648da8736f384e979b4536126cfb9f5c087f34022959835c75544b81e2b67a004ad25ec2a9309a92eb366c5e9c03163e7223721a58c14072a32ab extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_acute.glif000066400000000000000000000015111416264461600315560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_circumflex.glif000066400000000000000000000015231416264461600326210ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_dieresis.glif000066400000000000000000000015171416264461600322720ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/W_grave.glif000066400000000000000000000015111416264461600315610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/X_.glif000066400000000000000000000103041416264461600305350ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2594d36b32bf88918fd20b2ecf9a8aa41931e29a325602302b4111bef4b88ef30d5beea198e189d15bc5993a3b17c632d4cdbbfcdb28ba8dc4ebac16404bfcfa extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_.glif000066400000000000000000000063761416264461600305540ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1a4857a7dc3ed8fcf7889173152c697c749d08d66e891291cb5a5e2c8d48ecb79c455a85d6246fa2f4c7d31a6581771d5fb06d609ead9f6f86bb15893c9f97a2 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_acute.glif000066400000000000000000000015101416264461600315570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_circumflex.glif000066400000000000000000000015221416264461600326220ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_dieresis.glif000066400000000000000000000015161416264461600322730ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_dotbelow.glif000066400000000000000000000015161416264461600323030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_grave.glif000066400000000000000000000015101416264461600315620ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_hook.glif000066400000000000000000000015131416264461600314210ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Y_tilde.glif000066400000000000000000000015101416264461600315570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_.glif000066400000000000000000000045271416264461600305510ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w641l57+53l453+644l148+644l148+527l67+527l67+698l569+698l569+645l173+54l498+54l498+182l579+182l579+0l57+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_acute.glif000066400000000000000000000015101416264461600315600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_caron.glif000066400000000000000000000015101416264461600315610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/Z_dotaccent.glif000066400000000000000000000015201416264461600324240ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/_notdef.glif000066400000000000000000000027601416264461600316140ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w464l32+0l32+780l432+780l432+0|l80+48l384+48l384+732l80+732| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/_null.glif000066400000000000000000000002011416264461600312730ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/a.alt01.glif000066400000000000000000000103011416264461600313240ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 41 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 17 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 30 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id acbc5b6c72c21ffe7d1bbdaabd8a83f6d7ace6ae1f90affd34f93abdb20dd7fe724f561bf3eca9a8975a078afb1023b9dc3d337a8c9c285d1614df5f64db39b6 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/a.glif000066400000000000000000000113301416264461600304070ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 33 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 43 48 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 40b487fefa616e05454de1d99c8caaa4497bc719513c2bbd2a4b322b27afdf6879a51ea7de67b601fcde642a2cd285472bc678b0345566766f80fb89b5284cbc extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aacute.alt01.glif000066400000000000000000000014701416264461600323550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aacute.glif000066400000000000000000000015041416264461600314330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abreve.alt01.glif000066400000000000000000000014701416264461600323570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abreve.glif000066400000000000000000000015041416264461600314350ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap abreveacute.alt01.glif000066400000000000000000000015021416264461600333160ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abreveacute.glif000066400000000000000000000015161416264461600324620ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap abrevedotbelow.alt01.glif000066400000000000000000000021261416264461600340370ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abrevedotbelow.glif000066400000000000000000000021421416264461600331740ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap abrevegrave.alt01.glif000066400000000000000000000015021416264461600333210ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abrevegrave.glif000066400000000000000000000015161416264461600324650ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap abrevehook.alt01.glif000066400000000000000000000015001416264461600331530ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abrevehook.glif000066400000000000000000000015141416264461600323170ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap abrevetilde.alt01.glif000066400000000000000000000015021416264461600333160ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/abrevetilde.glif000066400000000000000000000015161416264461600324620ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflex.alt01.glif000066400000000000000000000015021416264461600333320ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acircumflex.glif000066400000000000000000000015161416264461600324760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflexacute.alt01.glif000066400000000000000000000015141416264461600343570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflexacute.glif000066400000000000000000000015301416264461600334350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflexdotbelow.alt01.glif000066400000000000000000000021401416264461600350710ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflexdotbelow.glif000066400000000000000000000021541416264461600341560ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflexgrave.alt01.glif000066400000000000000000000015141416264461600343620ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflexgrave.glif000066400000000000000000000015301416264461600334400ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflexhook.alt01.glif000066400000000000000000000015121416264461600342140ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acircumflexhook.glif000066400000000000000000000015261416264461600333600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflextilde.alt01.glif000066400000000000000000000015141416264461600343570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap acircumflextilde.glif000066400000000000000000000015301416264461600334350ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acute.case.glif000066400000000000000000000016611416264461600322100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l263+774l338+957l426+914l294+758| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acute.glif000066400000000000000000000020151416264461600312700ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l263+600l338+783l426+740l294+584| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/acutecomb.glif000066400000000000000000000010631416264461600321330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/adieresis.alt01.glif000066400000000000000000000014761416264461600330710ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/adieresis.glif000066400000000000000000000015121416264461600321400ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/adotbelow.alt01.glif000066400000000000000000000015021416264461600330670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/adotbelow.glif000066400000000000000000000015161416264461600321540ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ae.glif000066400000000000000000000166121416264461600305640ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 60 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 60 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 32 7 48 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 160 7 176 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 32 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 224 7 240 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 96 7 112 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 128 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 60 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 88 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 81 49 88 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 81 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 81 63 81 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 127 81 143 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 79 81 95 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 111 81 127 81 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 15 81 31 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 45 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 54 45 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 66 69 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 73 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 16180a53044c7a3436775939463eff50252e75bf79647e2882f3ce27befb8652fcc1110d72c3baab5b87cdf3ea965dfe15ae0ba77f8cb47ac026bf88db871905 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aeacute.glif000066400000000000000000000015061416264461600316020ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/agrave.alt01.glif000066400000000000000000000014701416264461600323600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/agrave.glif000066400000000000000000000015041416264461600314360ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ahook.alt01.glif000066400000000000000000000014721416264461600322160ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ahook.glif000066400000000000000000000015061416264461600312740ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/amacron.alt01.glif000066400000000000000000000014721416264461600325350ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/amacron.glif000066400000000000000000000015061416264461600316130ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ampersand.glif000066400000000000000000000136731416264461600321550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 52 19 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 71 59 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 10 52 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 52 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 19 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 32 28 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 59 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 39 28 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 70 28 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5ee20fb078072aecea530d5637caae9e915478fc171f28b8ddf3fece08d34f00111ba8a46741c93c4fa90ad64d0d503d0519ecf5c475777d4b83d128abc7f8a0 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aogonek.alt01.glif000066400000000000000000000127151416264461600325420ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 51 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 62 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 33 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a4eb242c813d3c7a94c33eb1236cd5258be48e1dbcb9f982877564ad54d706498bd1051f1d5474526c17f798fd3c58fce7e92d2b154d9e726e1f4efdfdfb48df extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aogonek.glif000066400000000000000000000136531416264461600316240ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 67 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 25 47 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 53 51 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 63 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f42ec326455aff12c500bb51a75dddeab932c51ef48a32c2b28412598fda6bc210297f2da4f6a8bc1132db1d38f0478c4e7ac8e7ab8e4e5534fd83fca100f68a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/approxequal.glif000066400000000000000000000015461416264461600325400ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aring.alt01.glif000066400000000000000000000014661416264461600322200ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aring.glif000066400000000000000000000015021416264461600312670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap aringacute.alt01.glif000066400000000000000000000015001416264461600331500ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/aringacute.glif000066400000000000000000000015141416264461600323140ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowdown.glif000066400000000000000000000031271416264461600322160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l219+199l244+230l410+114l390+465l390+698l470+698l470+465l450+114l616+230l641+199l430-12| arrowdownclockhalf.glif000066400000000000000000000040331416264461600340030ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3fb451052318029475b1dae97f048ea13cb5b232d4342bcdba2a463b830220d90fb9d8fe6835c9a92ee25237da8c7eac4dce952174fc0be92eb13c03bbcad491 arrowdowncounterclockhalf.glif000066400000000000000000000037501416264461600354100ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 21 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id fda76031a9799843474dfee75a0f5dd342956a63ced31ec7445aed48fc0508e5b84a42f747abf475a87642c00bb3014ff829f623e4cae4dbefb7c06d2aad3c36 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowdownleft.glif000066400000000000000000000022421416264461600330660ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l187+396l227+400l262+201l496+463l661+628l718+572l553+407l290+173l490+137l486+98l187+98| arrowdownleftcorner.glif000066400000000000000000000035221416264461600342220ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l156+199l367+410l398+385l282+219l580+235l580+698l660+698l660+160l580+160l282+179l398+13l367-12| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowdownright.glif000066400000000000000000000022431416264461600332520ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l370+137l570+173l307+407l142+572l199+628l364+463l598+201l633+400l673+396l673+98l374+98| arrowdownrightcorner.glif000066400000000000000000000035231416264461600344060ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l462+13l578+179l280+160l200+160l200+698l280+698l280+235l578+219l462+385l493+410l704+199l493-12| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowhookleft.glif000066400000000000000000000040371416264461600330630ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 14 9 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id de4df893110d3822172df7b22727cccf576ed499b4f1d77a69442534478ecbba8c408426f8e22f18212ff38ed57e9414263381523d55a0441758df5f7ad75f91 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowhookright.glif000066400000000000000000000041331416264461600332430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 9 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 63c19862789bc7e03c575b284728314b873a675ea57a22b28f0ac143ae4bf1628e7e61e1243f5589fc83d5ef1bb5bf59ac0c22da2b0394b1c17034ccb664d439 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowleft.glif000066400000000000000000000023471416264461600322040ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l75+349l286+560l317+535l201+369l552+389l785+389l785+309l552+309l201+329l317+163l286+138| arrowleftarrowright.glif000066400000000000000000000015551416264461600342360ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap arrowleftdowncorner.glif000066400000000000000000000025411416264461600342220ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l75+307l100+338l266+222l247+520l247+600l785+600l785+520l322+520l306+222l472+338l497+307l286+96| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowleftright.glif000066400000000000000000000027501416264461600332400ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8fa291c93b74576e88dc76cc6d089cce51e420c5402534b013ae750ecddd1c26d82db661c9cd6bfa1f224efe4a6ed69315b3eaae008e28100ae36b10d3fcf0a0 arrowleftupcorner.glif000066400000000000000000000025411416264461600336770ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l247+206l266+504l100+388l75+419l286+630l497+419l472+388l306+504l322+206l785+206l785+126l247+126| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowright.glif000066400000000000000000000023461416264461600323660ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l543+163l659+329l308+309l75+309l75+389l308+389l659+369l543+535l574+560l785+349l574+138| arrowrightarrowleft.glif000066400000000000000000000015551416264461600342360ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap arrowrightdowncorner.glif000066400000000000000000000026331416264461600344070ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l363+307l388+338l554+222l538+520l75+520l75+600l613+600l613+520l594+222l760+338l785+307l574+96| arrowrightupcorner.glif000066400000000000000000000026341416264461600340650ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l75+206l538+206l554+504l388+388l363+419l574+630l785+419l760+388l594+504l613+206l613+126l75+126| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowup.glif000066400000000000000000000031161416264461600316710ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l390+233l410+584l244+468l219+499l430+710l641+499l616+468l450+584l470+233l470+0l390+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowupdown.glif000066400000000000000000000035241416264461600325640ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8cfe3ef1c1b7f05d460e0177bb1a2764790377be476a6a6f075267e651437180024790c92d48e8b6b2f66336d46e447c10ead48d7e46d3d1626c8fbc20daccc6 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowupleft.glif000066400000000000000000000022421416264461600325430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l496+250l262+512l227+313l187+317l187+615l486+615l490+576l290+540l553+306l718+141l661+85| arrowupleftcorner.glif000066400000000000000000000035131416264461600336770ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l580+463l282+479l398+313l367+288l156+499l367+710l398+685l282+519l580+538l660+538l660+0l580+0| arrowupleftcounterclock.glif000066400000000000000000000053541416264461600351070ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 17 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 32080f3d1aecf61ed744cce3d21bb784f218c09e9c14fa972cdcd43419c90f5e8a3813757419c46e35e108e5eb4b511345eb29326edb3eaa28151ea6a382b93a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/arrowupright.glif000066400000000000000000000022431416264461600327270ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l142+141l307+306l570+540l370+576l374+615l673+615l673+317l633+313l598+512l364+250l199+85| arrowuprightclock.glif000066400000000000000000000053461416264461600336730ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id deb60084624e9cad455c1b06f337539d302b1541dde7982b146ab74d1e50e571a3dc470aba9fc7c6bb170c430b6fe26633bb4136ace94d8ea4afcb6ae451cc6e arrowuprightcorner.glif000066400000000000000000000035141416264461600340630ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w860l200+538l280+538l578+519l462+685l493+710l704+499l493+288l462+313l578+479l280+463l280+0l200+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/asciicircum.glif000066400000000000000000000030671416264461600324720ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 7 1 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l55+341l262+698l338+698l545+341l494+313l303+630l297+630l106+313| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/asciitilde.glif000066400000000000000000000045651416264461600323150ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 4 values pushed */ 0 6 19 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 19 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a4a5768e2988f84dba57bee0dcea98f74e2400e654af18e14a063318440a480d66168b0458e666f07574454fd63f8dc693d8a867546642186f0ff943b6320aba extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/asterisk.glif000066400000000000000000000044421416264461600320220ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a3ab13a76ee45ff77e122b904696055cba2bb31111387e562116099d3eaab322f0d8c5686e46e66a12d28406bf8f5fbc865031e95096346baacebcb463e39b8c extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/at.glif000066400000000000000000000127651416264461600306100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 55 66 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 255 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 159 27 175 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 55 66 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 78 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 71 78 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 40 78 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d8c0ed0f8ba388d7ceeac8c4d19a6d8ec5c38a1b8674ba93bebdcd0c6ce7c03f88d8ac39f41a74a7da11acb6780043100ebdcfdbc54e07a8b277334694b443cf extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/atilde.alt01.glif000066400000000000000000000014701416264461600323550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/atilde.glif000066400000000000000000000015041416264461600314330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/b.glif000066400000000000000000000100701416264461600304100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 25 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 10 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 32 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 02958aac6463e1d886beacd68e42b08f3da4043ee20a86da694d95b2dbad9211e8e770a7a7281ccbb6b8408ef03994b5fbae7fe5b7bc4e69ea45054e0050c9ba extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/backslash.glif000066400000000000000000000020661416264461600321300ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w380l42+748l106+748l372-143l308-143| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/baht.glif000066400000000000000000000134151416264461600311130ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 207 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 64 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 6 16 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 54 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 57 61 54 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 57 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 57 112 57 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 48 57 64 57 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 58 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 58 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 58 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f1b0061f58df77037cd0c0ed8cfe35c1614f4851e40f93b15d8f02483d623ee26e7123a7eb06f6f0c2924ce993ffd2cb7f17c142f3135f7fd2526903ecef9148 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bar.glif000066400000000000000000000020621416264461600307350ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w313l126+760l187+760l187-138l126-138| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bitcoin.glif000066400000000000000000000130271416264461600316230ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 207 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 64 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 6 16 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 50 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 50 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 50 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 47 50 63 50 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 49 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 50 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f866f1a3a1ea9731dc3c63408e895d9b412c83f4707d57910983fdda322725c235b74a42a42df6b0328f9e53a34727bf49f142ef206e2cb2d75c3242872b542a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/braceleft.glif000066400000000000000000000056171416264461600321310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 15 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 8 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6a0c45e53d4a1d4cba036195bae8d5367e6fa77ddfe50d414c3532cb7cad973388843c6ea0f8343a4002d0d3b5097d938d9a5eee627a403f9b558ac6bc713fad extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/braceright.glif000066400000000000000000000055501416264461600323100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 16 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 24 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e3945587fd90a80383e7a333567b9d43a6cf75111fcc81a7c859684aa0e4c7c6554f21776d6cb3efb5e211f0abebdd011265d2ac1a96235739353c280e024540 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bracketleft.glif000066400000000000000000000027111416264461600324600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w290l57+760l264+760l264+711l145+711l145-89l264-89l264-138l57-138| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bracketright.glif000066400000000000000000000030011416264461600326340ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w290l26-89l145-89l145+711l26+711l26+760l233+760l233-138l26-138| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.case.glif000066400000000000000000000037031416264461600322110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 26113d0b0be50430f6b43a3e15cda8ce8d70ec40ec1d6f96324888c359fd85a01bf6840abcbbd1925b021333471bf34ed0ef47a6c1c9b4bda147446acd19b85c extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.cyrl.glif000066400000000000000000000051031416264461600322430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 207 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 8 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e78cb8ec2d5d495e6e2252941afc1a6916f21ca7e65df006aac18891cc46c000c523ac19966347e1d12fb00037ee13b3a3d73cbcb9e3e4dfed3eee878fc7e02b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.cyrl_case.glif000066400000000000000000000051101416264461600332340ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 8 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id efcaed739352ba3faef3d883894e070fee690c298e8683afaee2c46e746dbe5f1ba6a2573cc344f62a45e7149286acf95c5ad5a727771baa594c29077bd9ad4e extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breve.glif000066400000000000000000000036151416264461600313010ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a5bd022ae0af0bf6a1402cafbbbf812847cab6562d3a2c564e938bb936b7c1c9cb273450f7adcf31e2c7f85389ee93acd0b368e80f469728f89bc21d1539c41c extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breveacute.case.glif000066400000000000000000000044171416264461600332360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 7d089ee61139666dc486be7e73b10da451748557a567fa5153b730f084ac2f09b834d7e6dd3701bcc6c610ad9485f791ae9c88014e9e038ebc8270653f4b7422 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/breveacute.glif000066400000000000000000000045211416264461600323200ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 276307d3175d2337db3205a9155001484aeb090dc363109cdae15aee6c517dd1fb5221d8aafaed041bcc9b4bc896082125b587f6fc4101bc09d43510be263711 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevecomb.glif000066400000000000000000000010631416264461600321350ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevegrave.case.glif000066400000000000000000000044171416264461600332410ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 07c0df33ebd9fafe9d7e5701c9ff139ebc3093d79b0201d409d9f7e5a78ecdb54f9721243c0007c3cfbe48fe8a199357b5f58dd4508efb39bbe4fd79994fa7fb extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevegrave.glif000066400000000000000000000045211416264461600323230ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c4aa29858c5b819c96f740a24b0060bc1839e0c642c08ce820df6fe87f4b81fad33bbd27e532633122b56feb992c50f794c68b9294f723d3dcbf847f990ebefe extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevehook.case.glif000066400000000000000000000051721416264461600330740ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f348dab5d1504dcd20c3f55874fa8ed9b0af9fb964fa051d6a3238239810aaaf84cf548f2f0bbc1070acb353356e002b1c84dd137745b8d187f248145e8cdefe extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevehook.glif000066400000000000000000000052711416264461600321620ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9860d246a55e498045998cc6cc91da694a5f88dbe317bad126160228c827e5ad81219c688b0af24eeb433af23b49b9d77e00fa6fcc59ded4bb09cc4a9ba0c1d8 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevetilde.case.glif000066400000000000000000000064431416264461600332370ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1a42bfde6a22bc8fa92b04752fcf641ef74d8a4198b7a6b77285c4f1d0052b4a94676c2da9353495b78add25972ab98eaab4965fef75fc6abb699f3a4e6982a7 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brevetilde.glif000066400000000000000000000065331416264461600323250ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id edc26b168996fe682cc0e061d76a903331ec3521c3f7e251bc0683a715259a42f26e364d57aca4a74641ad6b9073876ec2688ac9eb52ef8b302ba1193ec89c38 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/brokenbar.glif000066400000000000000000000030341416264461600321360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w313l126+221l187+221l187-138l126-138|l126+760l187+760l187+401l126+401| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/bullet.glif000066400000000000000000000024321416264461600314610ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w416q208+177o150+177o84+247q84+298l84+309o84+360o150+430q208+430o266+430o332+360q332+309l332+298o332+247o266+177| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/c.glif000066400000000000000000000064501416264461600304200ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 28 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 18 64 18 80 18 3 DELTAP2[ ] /* DeltaExceptionP2 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a592c4120283cd6bae7ddc2b7758dda8738609a247ceeb990579ea62415c79c9b449cf037cfa9891b1d6047e0b47d7755d7b5636d417fbb6689d2ae26e3f112a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cacute.glif000066400000000000000000000015041416264461600314350ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caron.case.glif000066400000000000000000000027271416264461600322150ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 96 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l143+922l171+942l300+844l429+942l457+922l331+768l269+768| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caron.glif000066400000000000000000000026411416264461600312760ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l143+753l171+773l300+675l429+773l457+753l331+599l269+599| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caroncomb.glif000066400000000000000000000010631416264461600321340ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caronslovak.glif000066400000000000000000000020741416264461600325160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l318+748l409+748l340+558l307+558| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/caronslovakcomb.glif000066400000000000000000000010771416264461600333610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ccaron.glif000066400000000000000000000015041416264461600314360ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ccedilla.glif000066400000000000000000000112561416264461600317360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 65 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 43 52 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 33 64 33 80 33 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id eb44edd8112b8e8b73beac2da398b385aae5c8055444719c78a0585ccf6d62390f9642ff59b8a9782691857d2f3b888386295a9d7a3205d4960232b26fd013d2 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ccircumflex.glif000066400000000000000000000015161416264461600325000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cdotaccent.glif000066400000000000000000000015141416264461600323010ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cedi.glif000066400000000000000000000105151416264461600310770ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 47 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 56 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8245db1715881d30977de03bad70b078f296a1d214635f11415cd2a5ff0a2fcca44978734acd4d8f1ab94e332f682226c048ce0751c42b712ed99d70b38d62dd extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cedilla.glif000066400000000000000000000040221416264461600315640ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 47c1c7be8929d8250b3a68f73d05773a6c3c65f98d451ce48b4133ef5129555283cb747f88803954c66b48eb7abb07dea45c88920f0dc0338617dbaaad41031f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cedillacomb.glif000066400000000000000000000010671416264461600324330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/celogo.glif000066400000000000000000000114301416264461600314400ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 10 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 24 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 7 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c0ee2a43dc166b560c192f1c865a034a33e76d3f6c428b2a9ac8bb5a4dfb3e0689ef7e592aa6ddd936254ebd0090ddeec496f3d39b981d5884b5dfd185794a2b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/cent.glif000066400000000000000000000102211416264461600311160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 29 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9eae61022946799c3d9a09e360fddc9350d7dbc7cf42a10d7d01c36fa613913eeb8af64b27780f5842307f50ded8dfa5ba629c1c0b3aadaa52db0033a2f6e78e extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/checkmark.glif000066400000000000000000000031041416264461600321170ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w912l221+288l139+473l218+509l303+324l407+64l411+64l584+503l676+719l757+685l666+470l443+0l375+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/circumflex.case.glif000066400000000000000000000026231416264461600332470ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l143+784l269+938l331+938l457+784l429+764l300+862l171+764| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/circumflex.glif000066400000000000000000000027601416264461600323370ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 175 5 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l143+615l269+769l331+769l457+615l429+595l300+693l171+595| circumflexacute.case.glif000066400000000000000000000037441416264461600342170ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 6 47 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w0l-157+766l-31+920l31+920l157+766l129+746l0+848l-129+746|l105+892l181+1071l260+1031l136+877| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/circumflexacute.glif000066400000000000000000000036141416264461600333600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w0l-157+597l-31+751l31+751l157+597l129+577l0+679l-129+577|l105+723l181+902l260+862l136+708| circumflexbreve.case.glif000066400000000000000000000053321416264461600342140ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 31 26 47 26 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 192 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5a74c17e6c258a2e93d57995c6598f17238f466c4bad566f6c50b849a90dd7c476f40ccfbf47612b70450dc3d1561c2f0ba810c7f97893280551e9b233ba5dc8 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/circumflexbreve.glif000066400000000000000000000051721416264461600333630ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 192 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c76caaac2d2213cefd6430e4d8d351a08616a9d626b42dc9e92b8c9d2658d70dcde63f72ed835de8808aedeb648f6ed333f33142973c81f622d0f87e7283eed3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/circumflexcomb.glif000066400000000000000000000010751416264461600331760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap circumflexgrave.case.glif000066400000000000000000000037541416264461600342230ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 6 47 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w0l-157+766l-31+920l31+920l157+766l129+746l0+848l-129+746|l-260+1031l-181+1071l-105+892l-136+877| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/circumflexgrave.glif000066400000000000000000000037351416264461600333670ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w0l-157+597l-31+751l31+751l157+597l129+577l0+679l-129+577|l-260+862l-181+902l-105+723l-136+708| circumflexhook.case.glif000066400000000000000000000045051416264461600340520ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 18 47 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 13 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id dff1dca38fc6636cb36aacca5fb4a2a3f16f127e12c2173106f142a01443c5afcc1acd88e703436fed7c0066853e47c506c89b9d91ca7ed3ddb24c29968e2131 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/circumflexhook.glif000066400000000000000000000044641416264461600332230ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 13 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 021c597afe67c5e8267fce7a76c942669c0196453be64aa04c75deaf7bf2bac0d80a5edfac38f0b3f91f3bb47f41ecda0015df899be1ea4021561579f1dc2a71 circumflextilde.case.glif000066400000000000000000000060401416264461600342070ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 32 47 32 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 00615f65ee74903b8b2f60646d9aada4e998fa0961ac88697f588c159b5d19428900157ca69ea3a8e1afde1ab844d22d5df0293e3d7cf0ce386faa78d9bed472 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/circumflextilde.glif000066400000000000000000000060071416264461600333570ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a11c5b86aaa488073257e7b5fd4468e138b27c40b7d09bed47550ec1a7c783a84a7aec5685dec5d69dc2704ab6d34d89f1f6a82ca3d20bb05dfb446cd6a3b9e9 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/colon.glif000066400000000000000000000015441416264461600313070ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/coloncurrency.glif000066400000000000000000000124761416264461600330700ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 46 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 53 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 33 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 59 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 66 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6ca6270a198944802ec812be81aebd5dc5544117e3d44553b5d17adfcee1a267c0b36cc4204f629a0df4bbe55a829a8eae7324ae09805a3835b312d6ae4c4fe4 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/comma.glif000066400000000000000000000035121416264461600312660ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 05641e77f562020a30beaa543328a0e3d4b66fa4ff6f027390d5e814d36066f8ae842e83103b37dba14350ae531bf32289da7ffd5806117b719a5146687eec9f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/commabelowcomb.glif000066400000000000000000000036341416264461600331650ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 3 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 9 values pushed */ 79 3 95 3 111 3 127 3 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 16 18 32 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a021a9aa1dfbffd93487530af7e2e03ca29211fe7fc1f51dac400baf219dc42ab23110d6137d22bb09f84835ebd79b6c1f547ff1b59b4b0272188e053975b760 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/commaturnedtop.glif000066400000000000000000000033331416264461600332340ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1dbc192d88d31c6e71bdb07aa60bbafc91e43065b92902c39e9e05e0d2701be77fa1abda6758c9bd6fdfef50c842901d48363c3441f642836e570fe329a96794 commaturnedtopcomb.glif000066400000000000000000000011051416264461600340110ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/contents.plist000066400000000000000000001427421416264461600322520ustar00rootroot00000000000000 .notdef _notdef.glif .null _null.glif A A_.glif AE A_E_.glif AEacute A_E_acute.glif Aacute A_acute.glif Abreve A_breve.glif Abreveacute A_breveacute.glif Abrevedotbelow A_brevedotbelow.glif Abrevegrave A_brevegrave.glif Abrevehook A_brevehook.glif Abrevetilde A_brevetilde.glif Acircumflex A_circumflex.glif Acircumflexacute A_circumflexacute.glif Acircumflexdotbelow A_circumflexdotbelow.glif Acircumflexgrave A_circumflexgrave.glif Acircumflexhook A_circumflexhook.glif Acircumflextilde A_circumflextilde.glif Adieresis A_dieresis.glif Adotbelow A_dotbelow.glif Agrave A_grave.glif Ahook A_hook.glif Amacron A_macron.glif Aogonek A_ogonek.glif Aring A_ring.glif Aringacute A_ringacute.glif Atilde A_tilde.glif B B_.glif C C_.glif Cacute C_acute.glif Ccaron C_caron.glif Ccedilla C_cedilla.glif Ccircumflex C_circumflex.glif Cdotaccent C_dotaccent.glif D D_.glif Dcaron D_caron.glif Dcroat D_croat.glif Delta D_elta.glif E E_.glif Eacute E_acute.glif Ebreve E_breve.glif Ecaron E_caron.glif Ecircumflex E_circumflex.glif Ecircumflexacute E_circumflexacute.glif Ecircumflexdotbelow E_circumflexdotbelow.glif Ecircumflexgrave E_circumflexgrave.glif Ecircumflexhook E_circumflexhook.glif Ecircumflextilde E_circumflextilde.glif Edieresis E_dieresis.glif Edotaccent E_dotaccent.glif Edotbelow E_dotbelow.glif Egrave E_grave.glif Ehook E_hook.glif Emacron E_macron.glif Eng E_ng.glif Eogonek E_ogonek.glif Eth E_th.glif Etilde E_tilde.glif Euro E_uro.glif F F_.glif G G_.glif Gbreve G_breve.glif Gcircumflex G_circumflex.glif Gcommaaccent G_commaaccent.glif Gdotaccent G_dotaccent.glif Germandbls G_ermandbls.glif H H_.glif Hbar H_bar.glif Hcircumflex H_circumflex.glif I I_.glif IJ I_J_.glif IJacute I_J_acute.glif Iacute I_acute.glif Ibreve I_breve.glif Icircumflex I_circumflex.glif Idieresis I_dieresis.glif Idotaccent I_dotaccent.glif Idotbelow I_dotbelow.glif Igrave I_grave.glif Ihook I_hook.glif Imacron I_macron.glif Iogonek I_ogonek.glif Itilde I_tilde.glif J J_.glif Jacute J_acute.glif Jcircumflex J_circumflex.glif K K_.glif Kcommaaccent K_commaaccent.glif L L_.glif Lacute L_acute.glif Lcaron L_caron.glif Lcommaaccent L_commaaccent.glif Ldot L_dot.glif Lslash L_slash.glif M M_.glif N N_.glif Nacute N_acute.glif Ncaron N_caron.glif Ncommaaccent N_commaaccent.glif Ntilde N_tilde.glif O O_.glif OE O_E_.glif Oacute O_acute.glif Obreve O_breve.glif Ocircumflex O_circumflex.glif Ocircumflexacute O_circumflexacute.glif Ocircumflexdotbelow O_circumflexdotbelow.glif Ocircumflexgrave O_circumflexgrave.glif Ocircumflexhook O_circumflexhook.glif Ocircumflextilde O_circumflextilde.glif Odieresis O_dieresis.glif Odotbelow O_dotbelow.glif Ograve O_grave.glif Ohook O_hook.glif Ohorn O_horn.glif Ohornacute O_hornacute.glif Ohorndotbelow O_horndotbelow.glif Ohorngrave O_horngrave.glif Ohornhook O_hornhook.glif Ohorntilde O_horntilde.glif Ohungarumlaut O_hungarumlaut.glif Omacron O_macron.glif Omega O_mega.glif Oslash O_slash.glif Oslashacute O_slashacute.glif Otilde O_tilde.glif P P_.glif Q Q_.glif R R_.glif Racute R_acute.glif Rcaron R_caron.glif Rcommaaccent R_commaaccent.glif S S_.glif Sacute S_acute.glif Scaron S_caron.glif Scedilla S_cedilla.glif Schwa S_chwa.glif Scircumflex S_circumflex.glif Scommaaccent S_commaaccent.glif T T_.glif Tbar T_bar.glif Tcaron T_caron.glif Tcedilla T_cedilla.glif Tcommaaccent T_commaaccent.glif Thorn T_horn.glif U U_.glif Uacute U_acute.glif Ubreve U_breve.glif Ucircumflex U_circumflex.glif Udieresis U_dieresis.glif Udotbelow U_dotbelow.glif Ugrave U_grave.glif Uhook U_hook.glif Uhorn U_horn.glif Uhornacute U_hornacute.glif Uhorndotbelow U_horndotbelow.glif Uhorngrave U_horngrave.glif Uhornhook U_hornhook.glif Uhorntilde U_horntilde.glif Uhungarumlaut U_hungarumlaut.glif Umacron U_macron.glif Uogonek U_ogonek.glif Uring U_ring.glif Utilde U_tilde.glif V V_.glif W W_.glif Wacute W_acute.glif Wcircumflex W_circumflex.glif Wdieresis W_dieresis.glif Wgrave W_grave.glif X X_.glif Y Y_.glif Yacute Y_acute.glif Ycircumflex Y_circumflex.glif Ydieresis Y_dieresis.glif Ydotbelow Y_dotbelow.glif Ygrave Y_grave.glif Yhook Y_hook.glif Ytilde Y_tilde.glif Z Z_.glif Zacute Z_acute.glif Zcaron Z_caron.glif Zdotaccent Z_dotaccent.glif a a.glif a.alt01 a.alt01.glif aacute aacute.glif aacute.alt01 aacute.alt01.glif abreve abreve.glif abreve.alt01 abreve.alt01.glif abreveacute abreveacute.glif abreveacute.alt01 abreveacute.alt01.glif abrevedotbelow abrevedotbelow.glif abrevedotbelow.alt01 abrevedotbelow.alt01.glif abrevegrave abrevegrave.glif abrevegrave.alt01 abrevegrave.alt01.glif abrevehook abrevehook.glif abrevehook.alt01 abrevehook.alt01.glif abrevetilde abrevetilde.glif abrevetilde.alt01 abrevetilde.alt01.glif acircumflex acircumflex.glif acircumflex.alt01 acircumflex.alt01.glif acircumflexacute acircumflexacute.glif acircumflexacute.alt01 acircumflexacute.alt01.glif acircumflexdotbelow acircumflexdotbelow.glif acircumflexdotbelow.alt01 acircumflexdotbelow.alt01.glif acircumflexgrave acircumflexgrave.glif acircumflexgrave.alt01 acircumflexgrave.alt01.glif acircumflexhook acircumflexhook.glif acircumflexhook.alt01 acircumflexhook.alt01.glif acircumflextilde acircumflextilde.glif acircumflextilde.alt01 acircumflextilde.alt01.glif acute acute.glif acute.case acute.case.glif acutecomb acutecomb.glif adieresis adieresis.glif adieresis.alt01 adieresis.alt01.glif adotbelow adotbelow.glif adotbelow.alt01 adotbelow.alt01.glif ae ae.glif aeacute aeacute.glif agrave agrave.glif agrave.alt01 agrave.alt01.glif ahook ahook.glif ahook.alt01 ahook.alt01.glif amacron amacron.glif amacron.alt01 amacron.alt01.glif ampersand ampersand.glif aogonek aogonek.glif aogonek.alt01 aogonek.alt01.glif approxequal approxequal.glif aring aring.glif aring.alt01 aring.alt01.glif aringacute aringacute.glif aringacute.alt01 aringacute.alt01.glif arrowdown arrowdown.glif arrowdownclockhalf arrowdownclockhalf.glif arrowdowncounterclockhalf arrowdowncounterclockhalf.glif arrowdownleft arrowdownleft.glif arrowdownleftcorner arrowdownleftcorner.glif arrowdownright arrowdownright.glif arrowdownrightcorner arrowdownrightcorner.glif arrowhookleft arrowhookleft.glif arrowhookright arrowhookright.glif arrowleft arrowleft.glif arrowleftarrowright arrowleftarrowright.glif arrowleftdowncorner arrowleftdowncorner.glif arrowleftright arrowleftright.glif arrowleftupcorner arrowleftupcorner.glif arrowright arrowright.glif arrowrightarrowleft arrowrightarrowleft.glif arrowrightdowncorner arrowrightdowncorner.glif arrowrightupcorner arrowrightupcorner.glif arrowup arrowup.glif arrowupdown arrowupdown.glif arrowupleft arrowupleft.glif arrowupleftcorner arrowupleftcorner.glif arrowupleftcounterclock arrowupleftcounterclock.glif arrowupright arrowupright.glif arrowuprightclock arrowuprightclock.glif arrowuprightcorner arrowuprightcorner.glif asciicircum asciicircum.glif asciitilde asciitilde.glif asterisk asterisk.glif at at.glif atilde atilde.glif atilde.alt01 atilde.alt01.glif b b.glif backslash backslash.glif baht baht.glif bar bar.glif bitcoin bitcoin.glif braceleft braceleft.glif braceright braceright.glif bracketleft bracketleft.glif bracketright bracketright.glif breve breve.glif breve.case breve.case.glif breve.cyrl breve.cyrl.glif breve.cyrl_case breve.cyrl_case.glif breveacute breveacute.glif breveacute.case breveacute.case.glif brevecomb brevecomb.glif brevegrave brevegrave.glif brevegrave.case brevegrave.case.glif brevehook brevehook.glif brevehook.case brevehook.case.glif brevetilde brevetilde.glif brevetilde.case brevetilde.case.glif brokenbar brokenbar.glif bullet bullet.glif c c.glif cacute cacute.glif caron caron.glif caron.case caron.case.glif caroncomb caroncomb.glif caronslovak caronslovak.glif caronslovakcomb caronslovakcomb.glif ccaron ccaron.glif ccedilla ccedilla.glif ccircumflex ccircumflex.glif cdotaccent cdotaccent.glif cedi cedi.glif cedilla cedilla.glif cedillacomb cedillacomb.glif celogo celogo.glif cent cent.glif checkmark checkmark.glif circumflex circumflex.glif circumflex.case circumflex.case.glif circumflexacute circumflexacute.glif circumflexacute.case circumflexacute.case.glif circumflexbreve circumflexbreve.glif circumflexbreve.case circumflexbreve.case.glif circumflexcomb circumflexcomb.glif circumflexgrave circumflexgrave.glif circumflexgrave.case circumflexgrave.case.glif circumflexhook circumflexhook.glif circumflexhook.case circumflexhook.case.glif circumflextilde circumflextilde.glif circumflextilde.case circumflextilde.case.glif colon colon.glif coloncurrency coloncurrency.glif comma comma.glif commabelowcomb commabelowcomb.glif commaturnedtop commaturnedtop.glif commaturnedtopcomb commaturnedtopcomb.glif copyright copyright.glif crossmark crossmark.glif currency currency.glif d d.glif dagger dagger.glif daggerdbl daggerdbl.glif dcaron dcaron.glif dcroat dcroat.glif degree degree.glif dieresis dieresis.glif dieresis.case dieresis.case.glif dieresisacute dieresisacute.glif dieresisacute.case dieresisacute.case.glif dieresiscaron dieresiscaron.glif dieresiscaron.case dieresiscaron.case.glif dieresiscomb dieresiscomb.glif dieresisgrave dieresisgrave.glif dieresisgrave.case dieresisgrave.case.glif dieresismacron dieresismacron.glif dieresismacron.case dieresismacron.case.glif divide divide.glif dollar dollar.glif dong dong.glif dotaccent dotaccent.glif dotaccent.case dotaccent.case.glif dotaccentcomb dotaccentcomb.glif dotbelowcomb dotbelowcomb.glif dotlessi dotlessi.glif dotlessj dotlessj.glif e e.glif eacute eacute.glif ebreve ebreve.glif ecaron ecaron.glif ecircumflex ecircumflex.glif ecircumflexacute ecircumflexacute.glif ecircumflexdotbelow ecircumflexdotbelow.glif ecircumflexgrave ecircumflexgrave.glif ecircumflexhook ecircumflexhook.glif ecircumflextilde ecircumflextilde.glif edieresis edieresis.glif edotaccent edotaccent.glif edotbelow edotbelow.glif egrave egrave.glif ehook ehook.glif eight eight.glif eightinferior eightinferior.glif eightsuperior eightsuperior.glif ellipsis ellipsis.glif emacron emacron.glif emdash emdash.glif endash endash.glif eng eng.glif eogonek eogonek.glif equal equal.glif estimated estimated.glif eth eth.glif etilde etilde.glif exclam exclam.glif exclamdown exclamdown.glif f f.glif fcclogo fcclogo.glif fi fi.glif five five.glif fiveinferior fiveinferior.glif fivesuperior fivesuperior.glif fl fl.glif florin florin.glif four four.glif fourinferior fourinferior.glif foursuperior foursuperior.glif fraction fraction.glif g g.glif g.alt01 g.alt01.glif g.alt02 g.alt02.glif gbreve gbreve.glif gbreve.alt01 gbreve.alt01.glif gcircumflex gcircumflex.glif gcircumflex.alt01 gcircumflex.alt01.glif gcommaaccent gcommaaccent.glif gcommaaccent.alt01 gcommaaccent.alt01.glif gdotaccent gdotaccent.glif gdotaccent.alt01 gdotaccent.alt01.glif germandbls germandbls.glif germandbls.alt01 germandbls.alt01.glif grave grave.glif grave.case grave.case.glif gravecomb gravecomb.glif greater greater.glif greaterequal greaterequal.glif guarani guarani.glif guillemotleft guillemotleft.glif guillemotright guillemotright.glif guilsinglleft guilsinglleft.glif guilsinglright guilsinglright.glif h h.glif hbar hbar.glif hcircumflex hcircumflex.glif hookcomb hookcomb.glif hookcomb.case hookcomb.case.glif horncomb horncomb.glif hryvnia hryvnia.glif hungarumlaut hungarumlaut.glif hungarumlaut.case hungarumlaut.case.glif hungarumlautcomb hungarumlautcomb.glif hyphen hyphen.glif i i.glif iacute iacute.glif ibreve ibreve.glif icircumflex icircumflex.glif idieresis idieresis.glif idotbelow idotbelow.glif igrave igrave.glif ihook ihook.glif ij ij.glif ijacute ijacute.glif imacron imacron.glif infinity infinity.glif integral integral.glif iogonek iogonek.glif itilde itilde.glif j j.glif jacute jacute.glif jcircumflex jcircumflex.glif k k.glif kcommaaccent kcommaaccent.glif kgreenlandic kgreenlandic.glif kip kip.glif l l.glif lacute lacute.glif lcaron lcaron.glif lcommaaccent lcommaaccent.glif ldot ldot.glif less less.glif lessequal lessequal.glif lira lira.glif liraturkish liraturkish.glif litre litre.glif logicalnot logicalnot.glif lozenge lozenge.glif lslash lslash.glif m m.glif macron macron.glif macron.case macron.case.glif macroncomb macroncomb.glif minus minus.glif mu mu.glif multiply multiply.glif n n.glif nacute nacute.glif naira naira.glif napostrophe napostrophe.glif ncaron ncaron.glif ncommaaccent ncommaaccent.glif nine nine.glif nineinferior nineinferior.glif ninesuperior ninesuperior.glif nonbreakingspace nonbreakingspace.glif nonmarkingreturn nonmarkingreturn.glif notequal notequal.glif ntilde ntilde.glif numbersign numbersign.glif numerosign numerosign.glif o o.glif oacute oacute.glif obreve obreve.glif ocircumflex ocircumflex.glif ocircumflexacute ocircumflexacute.glif ocircumflexdotbelow ocircumflexdotbelow.glif ocircumflexgrave ocircumflexgrave.glif ocircumflexhook ocircumflexhook.glif ocircumflextilde ocircumflextilde.glif odieresis odieresis.glif odotbelow odotbelow.glif oe oe.glif ogonek ogonek.glif ogonekcomb ogonekcomb.glif ograve ograve.glif ohook ohook.glif ohorn ohorn.glif ohornacute ohornacute.glif ohorndotbelow ohorndotbelow.glif ohorngrave ohorngrave.glif ohornhook ohornhook.glif ohorntilde ohorntilde.glif ohungarumlaut ohungarumlaut.glif omacron omacron.glif one one.glif onehalf onehalf.glif oneinferior oneinferior.glif onequarter onequarter.glif onesuperior onesuperior.glif ordfeminine ordfeminine.glif ordmasculine ordmasculine.glif oslash oslash.glif oslashacute oslashacute.glif otilde otilde.glif p p.glif paragraph paragraph.glif parenleft parenleft.glif parenright parenright.glif partialdiff partialdiff.glif percent percent.glif period period.glif periodcentered periodcentered.glif perthousand perthousand.glif peso peso.glif pi pi.glif plus plus.glif plusminus plusminus.glif prime prime.glif primedbl primedbl.glif product product.glif q q.glif question question.glif questiondown questiondown.glif quotedbl quotedbl.glif quotedblbase quotedblbase.glif quotedblleft quotedblleft.glif quotedblright quotedblright.glif quoteleft quoteleft.glif quoteright quoteright.glif quotesinglbase quotesinglbase.glif quotesingle quotesingle.glif r r.glif racute racute.glif radical radical.glif rcaron rcaron.glif rcommaaccent rcommaaccent.glif registered registered.glif ring ring.glif ring.case ring.case.glif ringacute ringacute.glif ringacute.case ringacute.case.glif ringcomb ringcomb.glif ruble ruble.glif rupee rupee.glif rupeeindian rupeeindian.glif s s.glif sacute sacute.glif scaron scaron.glif scedilla scedilla.glif schwa schwa.glif scircumflex scircumflex.glif scommaaccent scommaaccent.glif section section.glif semicolon semicolon.glif seven seven.glif seveninferior seveninferior.glif sevensuperior sevensuperior.glif sheqel sheqel.glif six six.glif sixinferior sixinferior.glif sixsuperior sixsuperior.glif slash slash.glif softhyphen softhyphen.glif space space.glif sterling sterling.glif summation summation.glif t t.glif tbar tbar.glif tcaron tcaron.glif tcedilla tcedilla.glif tcommaaccent tcommaaccent.glif tenge tenge.glif thorn thorn.glif three three.glif threeinferior threeinferior.glif threequarters threequarters.glif threesuperior threesuperior.glif tilde tilde.glif tilde.alt01 tilde.alt01.glif tilde.alt01.case tilde.alt01.case.glif tilde.case tilde.case.glif tildecomb tildecomb.glif trademark trademark.glif tugrik tugrik.glif two two.glif twoinferior twoinferior.glif twosuperior twosuperior.glif u u.glif uacute uacute.glif ubreve ubreve.glif ucircumflex ucircumflex.glif udieresis udieresis.glif udotbelow udotbelow.glif ugrave ugrave.glif uhook uhook.glif uhorn uhorn.glif uhornacute uhornacute.glif uhorndotbelow uhorndotbelow.glif uhorngrave uhorngrave.glif uhornhook uhornhook.glif uhorntilde uhorntilde.glif uhungarumlaut uhungarumlaut.glif umacron umacron.glif underscore underscore.glif uni0400 uni0400.glif uni0401 uni0401.glif uni0402 uni0402.glif uni0403 uni0403.glif uni0404 uni0404.glif uni0405 uni0405.glif uni0406 uni0406.glif uni0407 uni0407.glif uni0408 uni0408.glif uni0409 uni0409.glif uni040A uni040A_.glif uni040B uni040B_.glif uni040C uni040C_.glif uni040D uni040D_.glif uni040E uni040E_.glif uni040F uni040F_.glif uni0410 uni0410.glif uni0411 uni0411.glif uni0412 uni0412.glif uni0413 uni0413.glif uni0414 uni0414.glif uni0415 uni0415.glif uni0416 uni0416.glif uni0417 uni0417.glif uni0418 uni0418.glif uni0419 uni0419.glif uni041A uni041A_.glif uni041B uni041B_.glif uni041C uni041C_.glif uni041D uni041D_.glif uni041E uni041E_.glif uni041F uni041F_.glif uni0420 uni0420.glif uni0421 uni0421.glif uni0422 uni0422.glif uni0423 uni0423.glif uni0424 uni0424.glif uni0425 uni0425.glif uni0426 uni0426.glif uni0427 uni0427.glif uni0428 uni0428.glif uni0429 uni0429.glif uni042A uni042A_.glif uni042B uni042B_.glif uni042C uni042C_.glif uni042D uni042D_.glif uni042E uni042E_.glif uni042F uni042F_.glif uni0430 uni0430.glif uni0430.alt01 uni0430.alt01.glif uni0431 uni0431.glif uni0432 uni0432.glif uni0433 uni0433.glif uni0434 uni0434.glif uni0435 uni0435.glif uni0436 uni0436.glif uni0437 uni0437.glif uni0438 uni0438.glif uni0439 uni0439.glif uni043A uni043A_.glif uni043B uni043B_.glif uni043C uni043C_.glif uni043D uni043D_.glif uni043E uni043E_.glif uni043F uni043F_.glif uni0440 uni0440.glif uni0441 uni0441.glif uni0442 uni0442.glif uni0443 uni0443.glif uni0444 uni0444.glif uni0445 uni0445.glif uni0446 uni0446.glif uni0447 uni0447.glif uni0448 uni0448.glif uni0449 uni0449.glif uni044A uni044A_.glif uni044B uni044B_.glif uni044C uni044C_.glif uni044D uni044D_.glif uni044E uni044E_.glif uni044F uni044F_.glif uni0450 uni0450.glif uni0451 uni0451.glif uni0452 uni0452.glif uni0453 uni0453.glif uni0454 uni0454.glif uni0455 uni0455.glif uni0456 uni0456.glif uni0457 uni0457.glif uni0458 uni0458.glif uni0459 uni0459.glif uni045A uni045A_.glif uni045B uni045B_.glif uni045C uni045C_.glif uni045D uni045D_.glif uni045E uni045E_.glif uni045F uni045F_.glif uni0472 uni0472.glif uni0473 uni0473.glif uni0490 uni0490.glif uni0491 uni0491.glif uni0492 uni0492.glif uni0493 uni0493.glif uni0494 uni0494.glif uni0495 uni0495.glif uni0496 uni0496.glif uni0497 uni0497.glif uni0498 uni0498.glif uni0499 uni0499.glif uni049A uni049A_.glif uni049B uni049B_.glif uni049C uni049C_.glif uni049D uni049D_.glif uni04A0 uni04A_0.glif uni04A1 uni04A_1.glif uni04A2 uni04A_2.glif uni04A3 uni04A_3.glif uni04A4 uni04A_4.glif uni04A5 uni04A_5.glif uni04AA uni04A_A_.glif uni04AB uni04A_B_.glif uni04AE uni04A_E_.glif uni04AF uni04A_F_.glif uni04B0 uni04B_0.glif uni04B1 uni04B_1.glif uni04B2 uni04B_2.glif uni04B3 uni04B_3.glif uni04B6 uni04B_6.glif uni04B7 uni04B_7.glif uni04B8 uni04B_8.glif uni04B9 uni04B_9.glif uni04BA uni04B_A_.glif uni04BB uni04B_B_.glif uni04C0 uni04C_0.glif uni04C1 uni04C_1.glif uni04C2 uni04C_2.glif uni04CF uni04C_F_.glif uni04D0 uni04D_0.glif uni04D1 uni04D_1.glif uni04D1.alt01 uni04D_1.alt01.glif uni04D2 uni04D_2.glif uni04D3 uni04D_3.glif uni04D3.alt01 uni04D_3.alt01.glif uni04D4 uni04D_4.glif uni04D5 uni04D_5.glif uni04D6 uni04D_6.glif uni04D7 uni04D_7.glif uni04D8 uni04D_8.glif uni04D9 uni04D_9.glif uni04DC uni04D_C_.glif uni04DD uni04D_D_.glif uni04DE uni04D_E_.glif uni04DF uni04D_F_.glif uni04E2 uni04E_2.glif uni04E3 uni04E_3.glif uni04E4 uni04E_4.glif uni04E5 uni04E_5.glif uni04E6 uni04E_6.glif uni04E7 uni04E_7.glif uni04E8 uni04E_8.glif uni04E9 uni04E_9.glif uni04EE uni04E_E_.glif uni04EF uni04E_F_.glif uni04F0 uni04F_0.glif uni04F1 uni04F_1.glif uni04F2 uni04F_2.glif uni04F3 uni04F_3.glif uni04F4 uni04F_4.glif uni04F5 uni04F_5.glif uni04F8 uni04F_8.glif uni04F9 uni04F_9.glif uni2150 uni2150.glif uni2151 uni2151.glif uni2153 uni2153.glif uni2154 uni2154.glif uni2155 uni2155.glif uni2156 uni2156.glif uni2157 uni2157.glif uni2158 uni2158.glif uni2159 uni2159.glif uni215A uni215A_.glif uni215B uni215B_.glif uni215C uni215C_.glif uni215D uni215D_.glif uni215E uni215E_.glif uogonek uogonek.glif uring uring.glif utilde utilde.glif v v.glif w w.glif wacute wacute.glif wcircumflex wcircumflex.glif wdieresis wdieresis.glif wgrave wgrave.glif won won.glif x x.glif y y.glif yacute yacute.glif ycircumflex ycircumflex.glif ydieresis ydieresis.glif ydotbelow ydotbelow.glif yen yen.glif ygrave ygrave.glif yhook yhook.glif ytilde ytilde.glif z z.glif zacute zacute.glif zcaron zcaron.glif zdotaccent zdotaccent.glif zero zero.glif zero.alt01 zero.alt01.glif zero.alt02 zero.alt02.glif zeroinferior zeroinferior.glif zerosuperior zerosuperior.glif extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/copyright.glif000066400000000000000000000116441416264461600322070ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 71 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 71 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 39 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 71 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 50 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 39 50 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 8 50 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 23 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 085c204a98adb1d31ae72695835797c7abd23fe767bc17de8bdbe09272fa5ea679491e9618cbec8bf28d8b8963039fa042c06bd0e6af6d8b95fa20bec3dd3508 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/crossmark.glif000066400000000000000000000034001416264461600321720ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e742d9429404f2efc3d948c931dfaa7f7c4a30ef0d5ccc568080af521ad53f62a70d812631011956d80862a0cc38a8acf38329c42a2fb7722024a73791c13687 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/currency.glif000066400000000000000000000074771416264461600320420ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 0 15 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 0 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 15 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 15 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 0 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 705ceda7f201c769edf90b2f170884b85c5d0fa69d74d001d016973304be7e44d4afc69be766a908ff0fc88990c4e07557a4ef219c8c60007155d9e8e04fa281 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/d.glif000066400000000000000000000111211416264461600304100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 38 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 18 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 22 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id cc4bde058e95ec4c288bac1c17b7275c46b0f0082e0fa9f116bd318895ac05bfe0e3021433f55a367cbfd2297a819b5541174182fb87c4c22a3a3a80335746b1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dagger.glif000066400000000000000000000052201416264461600314210ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 13 8 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4c70d6d627f370791d835192a22262f36001937ab1454ad5addc485eadbd9a24d21bd9b57ed6861d39ce690f89c449c2c8ff7e783d890a518ff1df586109a03f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/daggerdbl.glif000066400000000000000000000074521416264461600321140ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 19 14 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 3 values pushed */ 13 8 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1203e971bb54af919b16b96a79f11129ea8c6007449ab156dc690735d0a631cde721af8bba157bb64cfd39aee6a158301161487b7ae313dc216e2d58e2b4cb84 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dcaron.glif000066400000000000000000000015121416264461600314360ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dcroat.glif000066400000000000000000000117531416264461600314540ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 7 values pushed */ 0 10 16 10 32 10 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 44 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 16 20 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 28 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 33 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2add0b2df5851adb8414733c849334e17fa27ccb727c60d427c76d9701bcf472c784f84497f77f2a19ae0befb63c027cfb7db15c2a85538117bb13d1d29e59fe extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/degree.glif000066400000000000000000000051141416264461600314250ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 30 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 20 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1a71ca4d89d9c1cf6c44629728f9af10a16239e3ad66a2a5df488ca243c1688de7483cbdd509c926b019b80c322ee436dafc0044c8dfe1fa26f4624ff9ff7839 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dieresis.case.glif000066400000000000000000000043201416264461600327110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5650c9596f727a6dd3f4b837c568402ac8551bfcb9991a1347da46e117a22a261212e0cf53c9a48d985e694f726fdd08f76c8624f4e9812a68feb6ceeb781314 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dieresis.glif000066400000000000000000000043351416264461600320050ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9cfdd107a90f642f7bf6303b86b775111e0b764c619f5aed34450149a700ca6c7caf489ed127abaa1c78d2c6de23c3cdb3c486ae7555c2817fc90fd60b6945ed dieresisacute.case.glif000066400000000000000000000051401416264461600336550ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8cc720daf9c25f61ef45774715a9afc024c69d1cb4e5a85fa335fbecc92f3f8a40b941c7e478604f607b00c11cb00f8634b6ed70376344c11e20bbf794abda41 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dieresisacute.glif000066400000000000000000000051311416264461600330220ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e222f6b7034d0007c55d24cef5c850ce1e877b98ec9b0b761be408778ef4c9ff5507d31af5922a5e9a9c7551d297b0e32cfd131f7758299a3e8315a3798992d2 dieresiscaron.case.glif000066400000000000000000000053671416264461600336710ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6fe1254e7fd16121e509f16b4f97fcf75d5fab13754b5e081ceb6c431c12409b8b79e6a0053dcd0f43d83599fbc50bd813e476d4cc69e64222eb004acc7f9d45 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dieresiscaron.glif000066400000000000000000000055551416264461600330350ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ae70040bfddf17260a227ec23a16c60fbae6bd79941e8322dc5123e8fa48533d9a3d5759821a6ea62068d8cb090f0acbb3c180b2a2af519a45f335ce69c3bdfd extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dieresiscomb.glif000066400000000000000000000010711416264461600326400ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap dieresisgrave.case.glif000066400000000000000000000051421416264461600336620ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c457528a1c94360565d9e2344ed8f9f13d83703a4f512b744e7e96f3186d11f63499ec9b39e880535aa3152ea67010a2c13ede01ed6e994745e851842178e347 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dieresisgrave.glif000066400000000000000000000051331416264461600330270ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 36fa04a7ed5c3d63b51d814603a5774156f39ebed7e9659941961f8a723bbb1560e387401c1b58e561a8dd7983fc6c21e7c83fad231accf0919ef4324b75eb46 dieresismacron.case.glif000066400000000000000000000047671416264461600340510ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0465e2b974ef2d573592c5b5a4cdd9acb528f249c3a2a4c032a36270b089c1de684378f2e931e82af7a64b9c121a3731f7615acdcceb001aa040c6a3c16c90d7 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dieresismacron.glif000066400000000000000000000047621416264461600332110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 96dde859b14f4e0f7222003b36a49cfa0bbf489f5be4e5c26ee10d833ec2f4dbf539dd926fa64f69247e12e6d326384718436f9f079cf89ec8e9b6d3edd82381 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/divide.glif000066400000000000000000000045331416264461600314420ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 20b6ebc86ba4332939b86ac26efb6d88743d690409e3d5255cace509545436266e1f20100faa158510bae022557f6f48cf142714683ac17b3ace476e6e7c7f58 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dollar.glif000066400000000000000000000126411416264461600314520ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 54 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 17 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 28 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 34 44 45 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 25 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 67 44 51 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0e314d86eb79f2cce7c901554b6f3399f94252ce21e415848523d6b4c624f76c88f706d0dac83fc5d33b90746eeec3f25d90cfaa7b23e32bd78ef278bff5eb86 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dong.glif000066400000000000000000000116111416264461600311200ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 18 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 48 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 30 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 28 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 37 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1d34c10703bbc31c52de573be751915e9b7c45be09e158e872d58664856713d8b2b19ea950f0a02d03d62327eb59cb300d225e6dca7119e67ebc22026c626051 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dotaccent.case.glif000066400000000000000000000026451416264461600330560ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 96 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600q300+783o274+783o243+815q243+839l243+842o243+866o274+898q300+898o326+898o357+866q357+842l357+839o357+815o326+783| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dotaccent.glif000066400000000000000000000030011416264461600321270ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 64 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600q300+613o274+613o243+645q243+669l243+672o243+696o274+728q300+728o326+728o357+696q357+672l357+669o357+645o326+613| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dotaccentcomb.glif000066400000000000000000000010731416264461600327770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dotbelowcomb.glif000066400000000000000000000023751416264461600326600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w0q0-170o-25-170o-55-139q-55-116l-55-113o-55-90o-25-59q0-59o25-59o55-90q55-113l55-116o55-139o25-170| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dotlessi.glif000066400000000000000000000041131416264461600320160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w319l48+50l119+50l119+446l48+459l48+497l215+530l215+50l286+50l286+0l48+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/dotlessj.glif000066400000000000000000000056011416264461600320220ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 21 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a3cee4593fa062c0b48dc48d778c8cb5afab02d5531d8285341453cf91c9423066c5ee2e55132df20b34e180631fb2731bfd73448b77d93550d04a3b12ce80ce extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/e.glif000066400000000000000000000063671416264461600304310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 35 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 30 63 30 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 17 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4f3aae977457f0a1a34f8d5db4552951877e2c186fa7a6e2d1d866a444a6bfe3ff321822616afdc32baf4ef8e15d3e3afc248009defcc5b109ba0510a05d738d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eacute.glif000066400000000000000000000015041416264461600314370ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ebreve.glif000066400000000000000000000015041416264461600314410ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ecaron.glif000066400000000000000000000015041416264461600314400ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ecircumflex.glif000066400000000000000000000015161416264461600325020ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap ecircumflexacute.glif000066400000000000000000000015301416264461600334410ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap ecircumflexdotbelow.glif000066400000000000000000000021541416264461600341620ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap ecircumflexgrave.glif000066400000000000000000000015301416264461600334440ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ecircumflexhook.glif000066400000000000000000000015261416264461600333640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap ecircumflextilde.glif000066400000000000000000000015301416264461600334410ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/edieresis.glif000066400000000000000000000015121416264461600321440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/edotaccent.glif000066400000000000000000000015141416264461600323030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/edotbelow.glif000066400000000000000000000015161416264461600321600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/egrave.glif000066400000000000000000000015041416264461600314420ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ehook.glif000066400000000000000000000015061416264461600313000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eight.glif000066400000000000000000000115161416264461600312750ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 49 21 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 49 112 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 48 49 64 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 144 49 160 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 56 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 56 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 56 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a6931970fa7474e2a5c27e00472d7a797287c8854eb77f27f869cc91b8a75a17ea7c436826c54cf5cee4442805b24cb09f046fafedd233564b69bf2f658d473a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eightinferior.glif000066400000000000000000000074741416264461600330430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 13 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 35f49ca3ca338f694fed77493a707f30d92faedb0ab07dd488394a3863c8e3f0bca517751b9433edba3db9f4a75b6abb5bf70024984b9872e519bb0df7b96cf1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eightsuperior.glif000066400000000000000000000075101416264461600330650ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 13 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id afebbd0499d9a4eb5c86ab1c2db8cd9fdf2af0fae1103c0c9c3864d91f50876d5778a63ce1d99566c4346557248463ead8b20e0b01fd9a9ab97f4bbd06813c93 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ellipsis.glif000066400000000000000000000021351416264461600320160ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/emacron.glif000066400000000000000000000015061416264461600316170ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/emdash.glif000066400000000000000000000015751416264461600314420ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w783l32+334l751+334l751+272l32+272| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/endash.glif000066400000000000000000000015751416264461600314430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w587l32+334l555+334l555+272l32+272| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eng.glif000066400000000000000000000113241416264461600307430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 6 223 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 36 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 21 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b3a6580552be22177e5062a2e8ba25b65c6ab436761456390cecc0c1fe3a10a6ce93df5b514b41ae8121aac15f71457079bd4d259c15bac624d71612dec04525 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eogonek.glif000066400000000000000000000113631416264461600316240ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 58 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 53 58 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 53 63 53 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 27 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 27 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 38 31 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id dd278c2f2f3f6fb323d0d16895b7c90e629017ba4f9df1949db24fb160a2e9543e6f4e6161eb5ff9094a03859b6ff4fec35047e8e88f5653be82d928e9b08df8 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/equal.glif000066400000000000000000000025751416264461600313110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l66+229l534+229l534+171l66+171|l66+439l534+439l534+381l66+381| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/estimated.glif000066400000000000000000000061121416264461600321500ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 20 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 10 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 16 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b48c670a3a36696324baa905ffc64b4a39a56d4a5b538f3a02936dc8d6bd8f27b7a78b5ba10d34c76383d1884e35bae162eb4e1be14c98d6012966bb7c806a56 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/eth.glif000066400000000000000000000105631416264461600307560ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 18 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 28 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 20 27 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 27 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id edb118e6a6f802555e6e5c51bc7507231f647e38352ff9307cb2930a51e92ece1e35e8081f23a3a63d8ea4350213ab6846597e2e6b7db57e64629d26de5cc61f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/etilde.glif000066400000000000000000000015041416264461600314370ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/exclam.glif000066400000000000000000000040671416264461600314510ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 53f64223d183b105741441c1f6cb265cf0e76c82fd1f27f7ff2b67d17d52e6ac32326a363dfa2ef2c8077626b332f6a298f3f06db81577db86931c46aa0abc4d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/exclamdown.glif000066400000000000000000000036071416264461600323400ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id aa06d8310b855310be3342b753a580850d721a5aa3a4d22c31878d44a76dbf3a313d3c6da0ac3465b1dfa319124241702a5838f0dabd76df5dc816c8dc5017e9 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/f.glif000066400000000000000000000074271416264461600304300ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 27 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3d25229250d9897b741004b553a04b6228ae2c5f82f089f3c8e4abe91cfe29c7ef9d7e8ee621cf86d12947b1dd325629a3e700be6ea2c74d97a14937589a9f0a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fcclogo.glif000066400000000000000000000134771416264461600316210ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 6 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 64 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 74 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 61 64 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 77 64 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6783083d41403048919cda36ab8b441c037d8969bc018606b548f0395c8a39d94871c4d791c07298d5318b0fe8b030d8009db698d26c236f4f7c86bd07289a9e extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fi.glif000066400000000000000000000114131416264461600305670ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8c5b6607c3090ffd4b89285af17637e1f1888b69caad05fff9520d37f3f80f2da4e799887c481024cae935bb025d059d1a3ef19c46e20ae80c769da4505da322 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/five.glif000066400000000000000000000071541416264461600311310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 33 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 0 8 16 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a861ccba2ef62537fe3f6e60c3c88c1c3faa4142886febb2b9183637d7794c1720b95293b268f190d16988cd2df122555554413631e654c09435aac1d6642690 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fiveinferior.glif000066400000000000000000000066261416264461600326720ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 31 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c19da5358b5052f45ff21a3b0dbbac1f511128dc4bbcbce6d7e3abddbf8f4376fe4303c0ab5268e3c7535dab9f278dfc2b45c5c6207119cdf8faa07cd373f41b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fivesuperior.glif000066400000000000000000000066501416264461600327220ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 31 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 24f3e0120fc77e3eab1b1570cbf80d35200b2d1a8fc9a9ad372093d7359113adcba3588b871f25a2e39076348d4faecf75e722e49da44558ba6c811328db26d5 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fl.glif000066400000000000000000000107031416264461600305730ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 9 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id bf56433be8937b491a0ad919f60b53b0e5c9c705cc31d50b5e37b067ebe980974b095a2e6729e9eb839548aa8215973ebf33d75a99449222566af62c300d3489 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/florin.glif000066400000000000000000000105061416264461600314640ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 16 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 22 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 43 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b84e777128b945c77f057ecb780aeb5715766cd18ff60b1b9d95e492596950ad394081ab27b2a433c081f964d367fe02679c3f2c7d57e64a56c99c6c335d8d72 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/four.glif000066400000000000000000000051531416264461600311500ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l359+161l39+161l39+226l360+698l455+698l455+235l556+235l556+161l455+161l455+0l359+0|l103+235l359+235l359+602l355+602| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fourinferior.glif000066400000000000000000000045411416264461600327060ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w371l202+72l20+72l20+126l195+368l271+368l271+126l325+126l325+72l271+72l271+0l202+0|l64+126l202+126l202+311l198+311| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/foursuperior.glif000066400000000000000000000045641416264461600327460ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w371l202+402l20+402l20+456l195+698l271+698l271+456l325+456l325+402l271+402l271+330l202+330|l64+456l202+456l202+641l198+641| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/fraction.glif000066400000000000000000000023541416264461600320020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w139l284+698l350+698l-143+0l-209+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.alt01.glif000066400000000000000000000113131416264461600313360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 48 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 59 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3f8e5467160bb371ad4b669dd580fa42d5b36552adffac9d1d5cce0073f1d54e1c1121b81c23c32394a6ec2755136ba7578ab8c31c46c3817e64fd65c381ecbd extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.alt02.glif000066400000000000000000000140761416264461600313500ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 74 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 56 26 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 56 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 15 56 31 56 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 96 56 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 56 16 56 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 80 41 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 80 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 80 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 48 80 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 50 10 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 11 values pushed */ 112 50 128 50 144 50 160 50 176 50 5 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 11 50 80 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 18 56 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 63 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 63 56 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id dc15ad10e698af7efc34fd8ed02e8804b23391dc36ef0b71eed4eaaa58e866b65760727649872fe31cb01e42058fe9e50188c147bc45eccd1f53da3de8f84147 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/g.glif000066400000000000000000000147331416264461600304270ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 86 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 68 26 86 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 68 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 96 68 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 15 68 31 68 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 0 68 16 68 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 112 68 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 53 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 92 86 53 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 92 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 92 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 112 92 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 62 10 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 11 values pushed */ 112 62 128 62 144 62 160 62 176 62 5 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 11 92 62 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 18 53 68 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 44 40 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 75 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 75 68 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 894edc6a83a489cb3b91ab5e5d08edd22f99be1ce2b3742b5a26fc7122f8d06dfe6f329e98070ad3415b78d6bfb4c14ae3fa9ed3964a4654e40780248cfbe9ff extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/gbreve.alt01.glif000066400000000000000000000014701416264461600323650ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/gbreve.glif000066400000000000000000000015121416264461600314420ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap gcircumflex.alt01.glif000066400000000000000000000015021416264461600333400ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/gcircumflex.glif000066400000000000000000000015241416264461600325030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap gcommaaccent.alt01.glif000066400000000000000000000015071416264461600334560ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/gcommaaccent.glif000066400000000000000000000015311416264461600326120ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap gdotaccent.alt01.glif000066400000000000000000000015001416264461600331410ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/gdotaccent.glif000066400000000000000000000015221416264461600323040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap germandbls.alt01.glif000066400000000000000000000123561416264461600331570ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 57 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 57 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 53 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 25 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d138b28599334864cf68958d64b8bad2745e64ae13b2fe43b65cb90cffbb2b6030c2ec8f2b6f4e9cb129add971414eaf2a33b0c6f8689c49dc24dde8f2979e62 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/germandbls.glif000066400000000000000000000131071416264461600323110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 50 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 50 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 22 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 50 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 64 29 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8c025704974db2313a45dc478a41f4e8d8a04d0fe1363c90003af2282f350f616d1be162d969ce98b049318078c475c89e7f285369e0289ba0a9b731a69851a2 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/grave.case.glif000066400000000000000000000016611416264461600322130ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l174+914l262+957l337+774l306+758| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/grave.glif000066400000000000000000000020151416264461600312730ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l174+740l262+783l337+600l306+584| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/gravecomb.glif000066400000000000000000000010631416264461600321360ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/greater.glif000066400000000000000000000023651416264461600316300ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l89+57l442+263l442+269l89+475l89+544l511+300l511+232l89-12| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/greaterequal.glif000066400000000000000000000031421416264461600326520ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l89+180l442+347l442+353l89+520l89+582l511+386l511+314l89+118|l89+58l511+58l511+0l89+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/guarani.glif000066400000000000000000000127551416264461600316310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 33 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 46 62 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 17 46 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 62 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 62 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d0252980d0d85cc158d7ace2fa64bcbb967405d1081f93c9d7126fef5ad03420a4aa17e8b945fe3fc57b4414d92d35f29864741ee9d64dfe3e9f13e801d99c69 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/guillemotleft.glif000066400000000000000000000015401416264461600330450ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/guillemotright.glif000066400000000000000000000015431416264461600332330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/guilsinglleft.glif000066400000000000000000000017241416264461600330450ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w306l36+259l36+307l230+488l252+458l131+283l252+108l230+78| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/guilsinglright.glif000066400000000000000000000017211416264461600332250ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w306l54+108l175+283l54+458l76+488l270+307l270+259l76+78| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/h.glif000066400000000000000000000100261416264461600304170ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c51b1fd3af4bc1f9d95750d53290047cf7b48f3e96580a1531139a3579ece9aec279b2af29c04b2184bd352a33a3107340c27dc5511b7192d5069300a6741963 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hbar.glif000066400000000000000000000106601416264461600311100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 0 18 16 18 32 18 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 3 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 31 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b11c9cb33c00952fb32ed1a3c068bdb0d6898643119c2df4259568a3ff629889a34c7da900a82b0b4ac8c23b1399e5ea5bd12eb9196cfe10442ad3204bc02689 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hcircumflex.glif000066400000000000000000000031441416264461600325040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f9667f90651a781c8f49150b5cd2cf421300a1628d09f131b6cd1c8c8ec7cc4d7256cfa8a8eadb58cb0b1a19a777fc01b1057078474540620f8d60904bf16402 public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hookcomb.case.glif000066400000000000000000000026661416264461600327160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 96 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 144 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w0l-14+762l38+870l-90+870l-90+939l23+939o62+939o94+907q94+884o94+862o68+811q45+781l18+746| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hookcomb.glif000066400000000000000000000027361416264461600320020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w0l-14+592l38+700l-90+700l-90+769l23+769o62+769o94+737q94+714o94+692o68+641q45+611l18+576| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/horncomb.glif000066400000000000000000000025731416264461600320070ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w0l-94+518l-1+518l-1+628l83+628l83+545o83+516o48+480q11+480l-94+480| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hryvnia.glif000066400000000000000000000133201416264461600316500ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 58 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 21 58 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 143 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 207 10 223 10 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 9 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 14 21 58 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 31 14 47 14 63 14 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 111 14 127 14 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 52 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 68 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ba67ba10f55db9906e99f4ea82341f9fb2ff410305f91857f6d742f9757ebe02e93d7ede2638a0aea6a1a66ea32e00f4aa0c347f9c18e4e1bd71415d2c75c22a hungarumlaut.case.glif000066400000000000000000000025411416264461600335420ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l181+774l258+957l342+915l212+758|l348+774l425+957l509+915l379+758| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hungarumlaut.glif000066400000000000000000000026751416264461600327170ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l181+600l258+783l342+741l212+584|l348+600l425+783l509+741l379+584| hungarumlautcomb.glif000066400000000000000000000011011416264461600334600ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/hyphen.glif000066400000000000000000000015701416264461600314670ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w394l63+344l331+344l331+266l63+266| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/i.glif000066400000000000000000000056441416264461600304320ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 19 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4d8307a0b0712fee0733c8d989e843223c9b45a22f56206a37e53d6a4c825da933d28e4f07866a5d3c92289c79041b7a8b86eac1002b3a60b0feda1cb57c3066 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/iacute.glif000066400000000000000000000015141416264461600314440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ibreve.glif000066400000000000000000000015141416264461600314460ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/icircumflex.glif000066400000000000000000000015261416264461600325070ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/idieresis.glif000066400000000000000000000015221416264461600321510ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/idotbelow.glif000066400000000000000000000015161416264461600321640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/igrave.glif000066400000000000000000000015141416264461600314470ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ihook.glif000066400000000000000000000015151416264461600313040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ij.glif000066400000000000000000000014751416264461600306020ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ijacute.glif000066400000000000000000000025271416264461600316230ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component3 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/imacron.glif000066400000000000000000000015161416264461600316240ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/infinity.glif000066400000000000000000000070521416264461600320260ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 4 values pushed */ 34 3 0 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 4 values pushed */ 38 3 10 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 3 values pushed */ 13 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 52 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0d3015c01d7f0001c05e5c8027705ee5da8f1412238fa6e1eef204baeebf9f267b7a157d6f628cc41288c8756e87286a0f1f028219e9d624e7936a5fa459f396 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/integral.glif000066400000000000000000000063471416264461600320100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 34 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 26 34 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a1286266a32f6b59c5462087742a3ce0ded9335034f8fdc7ccb2ec92d89ffaa35a776df4e9b13a4b706d7194a15f2ce7537211c68eada3d75a1dccc4b8132727 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/iogonek.glif000066400000000000000000000105641416264461600316320ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 14 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6284cb64846997ab68896074c30fc8fb655747e9bf5741567ee10e321d82cc76d90e4981234d6a6d58f8c9d997891d0144713934b929689fffba887b80f29ac3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/itilde.glif000066400000000000000000000015141416264461600314440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/j.glif000066400000000000000000000071331416264461600304260ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 21 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 639ef6be1b6f637a3e4e73e5896ae22982a94ea2412237b856794d639d5bd06302d87a7c106d7dfa940f409b2dd03ec0a0e3f816276bb9fb4e06c7ec1f179ba2 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/jacute.glif000066400000000000000000000014641416264461600314510ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/jcircumflex.glif000066400000000000000000000015261416264461600325100ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/k.glif000066400000000000000000000100621416264461600304220ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 366e4e99210aab54a6965b8f11a3f8e161085618265073dca993d58857d217b4e8dd619c0d4587d518721a895683a7abf8fcbf2275511f643bc2c1c10da1edbe extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/kcommaaccent.glif000066400000000000000000000015231416264461600326170ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/kgreenlandic.glif000066400000000000000000000100751416264461600326220ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c8e044e2ca0aa7a55886de772876e88eb9ae5d6b5b2b85a6c887a19e5b05706b46768bf30678e393efb4d6d55082f9b837aaff794570f54455b3c7199cc81a74 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/kip.glif000066400000000000000000000116031416264461600307550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 8 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 4 63 4 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ba118541f6875497562aa97c06972f95054fb0c024723ce8f2d46d0af1e835eb7825a9cc2c41a15e088a326d68ef8d9fe08fcd33443f5ee97b2da7133300eb2f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/l.glif000066400000000000000000000041041416264461600304230ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w306l34+50l105+50l105+676l34+689l34+727l201+760l201+50l272+50l272+0l34+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lacute.glif000066400000000000000000000025371416264461600314550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 13 5 3 CALL[ ] /* CallFunction */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id afeb3f260ec24f5c32679e64957906280ed8a16d04d5b3805bb8927e7fca5893029937c0736b53973204b587066f4576cbc95d55fe6f1c18870f3f0097ebdb96 public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lcaron.glif000066400000000000000000000015121416264461600314460ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lcommaaccent.glif000066400000000000000000000015231416264461600326200ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ldot.glif000066400000000000000000000015251416264461600311360ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/less.glif000066400000000000000000000023661416264461600311460ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l89+232l89+300l511+544l511+475l158+269l158+263l511+57l511-12| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lessequal.glif000066400000000000000000000031431416264461600321700ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l89+314l89+386l511+582l511+520l158+353l158+347l511+180l511+118|l89+58l511+58l511+0l89+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lira.glif000066400000000000000000000135441416264461600311270ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 64 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 64 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 59 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 208 6 224 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 192 6 208 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 12 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 192 12 208 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 31 28 47 28 63 28 79 28 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 59 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8e53cabde6f0e362f13bded888674b8b7b21b7a0b9b05ba111ae59111262771b7751f1d993541acf4e228fa048a93d60f0f157bbfa1db4ff8b11b0f3cb24d570 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/liraturkish.glif000066400000000000000000000134771416264461600325460ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 48 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 11 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 0 3 16 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 2 3 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 9 8 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 20 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 23 3 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 39 24 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id bf2ff47d41211b4eaef671ea862a9434a95ca93c8da9a84fcf49602e456d48115e782848ce06dbc9d1485984388716a39132f488ef22667e3359679fa91530fc extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/litre.glif000066400000000000000000000074411416264461600313160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 17 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5bae61b7fa25b24a1f311c034b57ccc5fae92511d01d90b9a9707288e7b8d0079ceefa8748e63d77409686cafca8a0e0cff41951c2965b574eeacae55a4ab9d6 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/logicalnot.glif000066400000000000000000000020411416264461600323210ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l456+276l66+276l66+334l518+334l518+81l456+81| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lozenge.glif000066400000000000000000000035271416264461600316430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l47+349l262+698l337+698l552+349l337+0l262+0|l296+56l303+56l482+349l303+642l296+642l117+349| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/lslash.glif000066400000000000000000000071271416264461600314660ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 0 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 11 9 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 12 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 9 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 4 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 13 3 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 321bb86d6b8959d6eff945759dd24e4898fb77b774e471e068e705d5bc23e15673f4b0632f6e52b251a74deeac7648654a24701776ee07500bf98bf387daa568 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/m.glif000066400000000000000000000135101416264461600304250ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 58 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 49 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 34 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0728dd02658c1510e6a40792d9dc10fd54f39b5847e1087188cc6d274de4829ad1616bbf4fd5e0d726ea2f18cfc5f6513e8cac09e2aea246f971249fff14a0be extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/macron.case.glif000066400000000000000000000020151416264461600323600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 96 3 112 3 128 3 144 3 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l157+872l443+872l443+809l157+809| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/macron.glif000066400000000000000000000020231416264461600314450ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 3 96 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l157+703l443+703l443+640l157+640| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/macroncomb.glif000066400000000000000000000010651416264461600323130ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/minus.glif000066400000000000000000000015741416264461600313330ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l66+334l534+334l534+276l66+276| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/mu.glif000066400000000000000000000115751416264461600306230ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 20 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 7 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 7 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e5ba78970f9de26d5ce3bcae729fa7ee117a28788af88e83fa2ee649f207fcaae7af3416b94dd1c6d2f705b3f2aac8842b23e700f390d4dd0ed0f60f0b377cd5 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/multiply.glif000066400000000000000000000023141416264461600320500ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l94+139l259+304l94+469l135+510l300+345l465+510l506+469l341+304l506+139l465+98l300+263l135+98| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/n.glif000066400000000000000000000100261416264461600304250ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6d041218983593bf127231364dad99787b711d6ca7e538d25cb6e157bc3a8d21590231ad245fcbdf4de94d8b429c6373b56c98e845db69ae210735373ee74381 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/nacute.glif000066400000000000000000000015031416264461600314470ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/naira.glif000066400000000000000000000137621416264461600312740ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id fe9330ef7917402a187dc512b65124dbf3d34e18fda847de9603d0a172410bf556c21114836d5f6a7bc78ae86a7185353a595f2d65d2e6dd10593475dacced97 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/napostrophe.glif000066400000000000000000000015171416264461600325370ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ncaron.glif000066400000000000000000000015031416264461600314500ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ncommaaccent.glif000066400000000000000000000015231416264461600326220ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/nine.glif000066400000000000000000000067771416264461600311430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 41 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 30 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 413005faabed193cb368d1f484719bfb3b778147bf54c57cf938f50fc6503d7a37b8007922e44b0ec43bbd443e2980d638b974b88366eabe1d7bb2d2155257fb extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/nineinferior.glif000066400000000000000000000060141416264461600326610ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 22 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a3d547e9ed10c324ea68c86b5cf6ce89e70ab22fd1074d2d7077c6d7e9a18bc2ceb574dd2c725f4a0f04b5c8668054a43422eca049672ec28805960df72267bc extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ninesuperior.glif000066400000000000000000000060221416264461600327130ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 22 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c1dfd24d1b5140f561fe8d8435bff96d5f2c64eaca3634d1cb76685dc5b16e3f81b2bb2d4ef37deadded83424fdc87c3acfdad4d5a0196393c54abf680db3c2f nonbreakingspace.glif000066400000000000000000000002451416264461600334240ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs nonmarkingreturn.glif000066400000000000000000000002451416264461600335160ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/notequal.glif000066400000000000000000000052261416264461600320260ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 2 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b9f779786a828f6961c875021cf234cb8f0ee2b5588dc45d64b4c678784eae9c0360e1b1e6b5012fd584893b03cc34b22efdbb5b73e77476fa26e2241c9937d0 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ntilde.glif000066400000000000000000000015031416264461600314470ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/numbersign.glif000066400000000000000000000105031416264461600323410ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 2 27 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 8 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 01a8962765b9e77fd3abfebba67b199d7cea42017876c0576e8598962b9d78b0ea2637ac06b6f5570234752ff321c7993e885b728194d15403cb95e2afb4de87 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/numerosign.glif000066400000000000000000000124031416264461600323570ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 29 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 51 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d38abe1787b20902877a18cf5e62faad6d96ee39bc94a797b8703e9d1a6e5b4c072e4d3b44e9db3572f5316247a6e377b5eb75c00d162ee3c89d284892a749ce extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/o.glif000066400000000000000000000054241416264461600304340ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e7cb7f55ad02bcca88c0fe8e5ac9b5fe7b300554a53cf76b08ce9d0f971322312654006d05defeb06087f31abe02503b6d3cde14a96b575bc92026336bcadc40 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oacute.glif000066400000000000000000000015041416264461600314510ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/obreve.glif000066400000000000000000000015041416264461600314530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ocircumflex.glif000066400000000000000000000015161416264461600325140ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap ocircumflexacute.glif000066400000000000000000000015301416264461600334530ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap ocircumflexdotbelow.glif000066400000000000000000000021541416264461600341740ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap ocircumflexgrave.glif000066400000000000000000000015301416264461600334560ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ocircumflexhook.glif000066400000000000000000000015261416264461600333760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap ocircumflextilde.glif000066400000000000000000000015301416264461600334530ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/odieresis.glif000066400000000000000000000015121416264461600321560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/odotbelow.glif000066400000000000000000000015161416264461600321720ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oe.glif000066400000000000000000000125761416264461600306070ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 55 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 55 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 66 71 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 66 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 66 63 66 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 24 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 44 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8e4fec9766e1483924657d721d3df24db31d5d860554fbb25e7b38c587d56ab7cf22e55070d382d6e1df434f23a9a9a180a3dbc5594e22c327c837e376797bd8 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ogonek.glif000066400000000000000000000046101416264461600314540ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 16b378984b6f873a3ce642eb8d826fa05c931e9f2ab06dd066c1bd61b0a8f481470406f857c83d1ffbbeab6097016d7d6951362b2284aa38678c0f8de6a8ac19 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ogonekcomb.glif000066400000000000000000000010651416264461600323160ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ograve.glif000066400000000000000000000015041416264461600314540ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohook.glif000066400000000000000000000015061416264461600313120ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohorn.glif000066400000000000000000000072401416264461600313210ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 46a7fe0ffc8aad1e6177f0313f03e1e6576c43f659a7603a776b674f5969e04ac83c7dbfb5861a648f4b340ff005ed0e58aca4e3e001aafeb40aa77079a10a00 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohornacute.glif000066400000000000000000000015141416264461600323410ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohorndotbelow.glif000066400000000000000000000015261416264461600330620ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohorngrave.glif000066400000000000000000000015141416264461600323440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohornhook.glif000066400000000000000000000015161416264461600322020ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohorntilde.glif000066400000000000000000000015221416264461600323400ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ohungarumlaut.glif000066400000000000000000000015221416264461600330640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/omacron.glif000066400000000000000000000015061416264461600316310ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/one.glif000066400000000000000000000035731416264461600307620ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l99+49l268+49l268+620l91+542l74+588l283+698l369+698l369+49l533+49l533+0l99+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/onehalf.glif000066400000000000000000000021501416264461600316030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oneinferior.glif000066400000000000000000000036031416264461600325120ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w358l54+39l159+39l159+310l51+270l36+303l177+368l232+368l232+39l324+39l324+0l54+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/onequarter.glif000066400000000000000000000021541416264461600323600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/onesuperior.glif000066400000000000000000000036231416264461600325470ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w358l54+369l159+369l159+640l51+600l36+633l177+698l232+698l232+369l324+369l324+330l54+330| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ordfeminine.glif000066400000000000000000000102531416264461600324710ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 10 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 7 28 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 20 10 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 45 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 42 45 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5d6477bb76f9e57a86b5e22e03fe1bfba9bb02e235b18423c4ea17cbdae96cda00a5dd86848536ab823c691a374123a771c50aa59229a2424ba135a68904f149 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ordmasculine.glif000066400000000000000000000042711416264461600326620ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 7 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 19da62ef832eb8128120a628d7aedf5420e96fededebf09640047afbb011f167098b44a40fe03e80436743bd8c5363187856d5237e9296d802dcafc740318894 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oslash.glif000066400000000000000000000101471416264461600314650ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 1 37 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 11 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 46 29 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 14 11 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 26 11 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 47 37 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c16586c108a23ef7e374e215abaad897f9b1d353f145f000e24c7e32b2b52e156f7eb6129e5d4cb3e317a440ca139a42448a16a9094102125b0b1db62a925746 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/oslashacute.glif000066400000000000000000000015161416264461600325070ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/otilde.glif000066400000000000000000000015041416264461600314510ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/p.glif000066400000000000000000000106651416264461600304400ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 36 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e266dc9f3af6ac2bd5150ba56daf7207c6e527daa702774fe43f90aa4578afe73ccb47080b19fc88e0d5fa39d45c39464d4c08454a36b369e943d48083eaa260 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/paragraph.glif000066400000000000000000000071201416264461600321360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 42 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 8 18 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a2e2e106f802eaae83cc03b32ee4e49c2d351b7078b3d66f8abf0e648a0b70ba7604341826f5be4ce789f18048623a7026991a4ad110b4ccb7b53e8ee86ad499 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/parenleft.glif000066400000000000000000000031721416264461600321540ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 89d86ef497f4e2ed5cb0d28c8117e31a796e71d44103608db292211bc075837191a665aa0e644616197e80ce19a00214a2eb8bda8d5471db505a30c4f9636c21 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/parenright.glif000066400000000000000000000031121416264461600323310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 407e590f61eed03eeb4a405f32e7fe94138117b8e49f686736697e92cd7065ca63fb4b435a7a5ab78ba2baa2cac88466e597b2779639ecfdf682d51e5c385065 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/partialdiff.glif000066400000000000000000000060411416264461600324570ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 32 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6f154def99c60b0eefe8d45400fa72582ab4fcf44d537383902f59956f22dd9c9767b571d828318d1598513d566acd6d81d81cbec3e213b50f8a0f5e560d2666 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/percent.glif000066400000000000000000000104261416264461600316340ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 20 47 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 32 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0df5667fd93bfed1de5d6680c95649db243756f860ce3688ffe27d63e21d6ef85639b2279f0d12c8dd1b517492414914f7cc2bafa7332784c66056bc8881b95d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/period.glif000066400000000000000000000027021416264461600314540ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w266q133-12o101-12o66+26q66+53l66+59o66+86o101+124q133+124o165+124o200+86q200+59l200+53o200+26o165-12| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/periodcentered.glif000066400000000000000000000024421416264461600331670ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w324q162+236o130+236o95+274q95+301l95+307o95+334o130+372q162+372o194+372o229+334q229+307l229+301o229+274o194+236| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/perthousand.glif000066400000000000000000000133251416264461600325310ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 66 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 66 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 69 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 69 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 54 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 54 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 30 36 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 66 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 25 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9d494b8656bcfc76d093de3735e3ac371744cc8196fdad9f522015cfe168bfb366bf658c0defcbcea11050f04bb5217aa6988021396cdeb9429ea9b681cca069 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/peso.glif000066400000000000000000000147661416264461600311550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 63 8 79 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 240 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 3 8 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 159 3 175 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 31 3 47 3 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 31 3 47 3 63 3 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 36 63 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 63 36 79 36 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 240 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 80 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1c2652fab011645b86777bca7d5c3eac4fd3173ca186738b5ba352cca00faf373dd18d538df72b6238c2ac2b36c6c4082a6e1025a6a13c22ed41a01e5074fea6 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/pi.glif000066400000000000000000000054111416264461600306020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 14 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9c27b6882f8132d80a90779586c77be5405935ea25d33f360fc1a4862afa0eecf5df29dbcfbfaf22cd94e834bce242eb9affc7556bae898b3cd33d800e905d14 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/plus.glif000066400000000000000000000034041416264461600311550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l269+276l66+276l66+334l269+334l269+534l331+534l331+334l534+334l534+276l331+276l331+76l269+76| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/plusminus.glif000066400000000000000000000044541416264461600322370ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 2 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l269+364l66+364l66+422l269+422l269+615l331+615l331+422l534+422l534+364l331+364l331+171l269+171|l66+58l534+58l534+0l66+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/prime.glif000066400000000000000000000020621416264461600313050ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w247l96+698l199+698l101+372l63+372| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/primedbl.glif000066400000000000000000000015131416264461600317670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/product.glif000066400000000000000000000060151416264461600316530ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1520c5b3495dd27d67935199c9c959f0b8cf03dc42042adac9fcecb0e5c75eb902401494eee98348e6785853ebd236d04f0053a683aea2724b4cf0f60ed418f3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/q.glif000066400000000000000000000077371416264461600304470ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 27 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 38 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d370b566b7a69a8f8542d8adc37b78be934d8ee30021055290de312b8015ebc3a93075160a26415016ba59d7c31e4dbdf5fb9300dc68faa458de99cf2e8b27fd extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/question.glif000066400000000000000000000070171416264461600320450ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9f7ae6dc9a103a6de078948b2834fe7612a4f9b1f267c0b3444893ec22b0502bb145c4175c9208a79ddc8c436398b8a84a7a5168552d6788a0b87f67e7b20b09 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/questiondown.glif000066400000000000000000000065411416264461600327360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 11 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 06def8f06477f53057257ed72b1b42e4e46978c830718ce7e86bad5304cc665a3f28b9eb15155fe1360347cb62911c14a372b0aa182bb8b955feb4d98bb290a1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/quotedbl.glif000066400000000000000000000015271416264461600320150ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/quotedblbase.glif000066400000000000000000000015411416264461600326440ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/quotedblleft.glif000066400000000000000000000015271416264461600326700ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/quotedblright.glif000066400000000000000000000015321416264461600330470ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/quoteleft.glif000066400000000000000000000034501416264461600322030ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 14331e91ee97780d3057a2657afd2d84f07ebfe17b7e3c77bde9ca58f207fbbfb89ba442d62b9bf804bfaf6da86566ba431a6b9d38ca3041b3077cb04773934a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/quoteright.glif000066400000000000000000000036201416264461600323650ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 20647393045525019c6ca8eb32a5f02fa8a672e401ba31ab663eedd25f297db90121f6b43afec21f95979d23bb93a2b0a29bab35af2921e7429710893f77f4db extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/quotesinglbase.glif000066400000000000000000000033141416264461600332170ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2ad4c4cba48f839ce19d3ead4ce9f1ba15c1070dbb54cebc07f389ba87a0148f0a1a534a55d9ccc3738047614a2e895ae684bf6a45d260197ac7e871f3d25b64 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/quotesingle.glif000066400000000000000000000022361416264461600325330ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w244l80+652l80+748l164+748l164+652l139+462l105+462| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/r.glif000066400000000000000000000075141416264461600304410ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 12 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f7b6ab2e55a04b4ed65da0a4c1e276ee1a281c8c9c9ffc76bb3511db2342b9c511313e8fe6ac2aa02bf4506609f4dc4623d95a49914a143db2a8db237039597f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/racute.glif000066400000000000000000000015041416264461600314540ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/radical.glif000066400000000000000000000041621416264461600315730ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l123+460l25+460l25+518l171+518l256+223l304+52l311+52l359+223l499+698l561+698l353+0l258+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/rcaron.glif000066400000000000000000000015041416264461600314550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/rcommaaccent.glif000066400000000000000000000015231416264461600326260ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/registered.glif000066400000000000000000000131111416264461600323230ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 37 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 37 78 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 255 48 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 48 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 37 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 37 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 68 3 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 68 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 21 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 68 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 13 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 77 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ac68f5bbab2faa3272fc4312d155869b28ce60fcea2f3922bb3c668ec5c40a8fb02119d1a4fab24c0b15b3c4cce221c26fd686c2882104d62d7225d38a1c6e68 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ring.case.glif000066400000000000000000000050121416264461600320400ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 14 47 14 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 7 31 7 47 7 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e1a9ae2df8ffddde6220064eda6a334eaf7fc4d18b592bd7cdfb5fb82c5f586b984195e44382015cae3681455235067b4a3681acc9dfbf004d35829711e95f35 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ring.glif000066400000000000000000000051271416264461600311350ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 176 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 815ef34af3d63e5b5c097586689eb0842f859b9c11ae8faff662c9e7c6ac28d7848c27d3b31568c98c3daf558296f3cb2cb927527d89cd429c07d023572deb85 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ringacute.case.glif000066400000000000000000000057601416264461600330740ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 207 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 46 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 7 31 7 47 7 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 28cda248f9870f0416bd1a5aec6a3e04324f1b3d5fe1a9030431f0138e130d0a679225371f936468eb2245cb92d8f1a98093ac1b5fbd120636d54390d2b74899 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ringacute.glif000066400000000000000000000060451416264461600321570ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4890593d139e9b07983e451ed27e08cec953abe08098013060d35de5438c913fd0c969db8ffef88be731debd479f20ec7a78704824bcf75fc585f5bb6be48471 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ringcomb.glif000066400000000000000000000010611416264461600317670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ruble.glif000066400000000000000000000104621416264461600313050ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 11 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 15 7 31 7 47 7 63 7 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 4 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d9e56dc3243171ef213381b448abf9d2a2d5f67c1992e913138a573453335254566199408562cf64b500059997082475b4148a8b0faad998613276bbde989cfa extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/rupee.glif000066400000000000000000000136751416264461600313250ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 72 16 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 72 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 72 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 63 42 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 57 63 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 81 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d1752315dee3af052b2ba3d0369d305c4e5c59c0638ef39a2970879614928cd02ede8be79c46c35caba178333200e1fa99dff7bdfd06d94251e192afb316f5ed extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/rupeeindian.glif000066400000000000000000000077311416264461600325040ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 79 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 192 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 192 6 208 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0a54c198199d1264809daa63e7b9facf3a41b93a45309ae840d61d4b68b32d8c12e93d9b84146e1d6aaeead3287283f8610f6b8255d08b697de4c947e750dcc4 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/s.glif000066400000000000000000000110211416264461600304260ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 36 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 8 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 4 12 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 42 24 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 32 36 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 27 36 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 87bee73e15dd0c166859cc7a1e3e31155e2a79ca1548c281b2b7fded00137f0fb2e19659e14255d02ad0215312e9e5b4839ced74291d135b04f4864d0af2ca6c extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sacute.glif000066400000000000000000000015041416264461600314550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/scaron.glif000066400000000000000000000015041416264461600314560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/scedilla.glif000066400000000000000000000137311416264461600317560ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 64 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 64 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 68 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 51 64 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 22 33 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 19 27 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 57 51 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 47 51 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 42 51 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 7810fe03c6432009d6b99b4221a2699f753b7bbc7b81b257974e8efb94b88783d66576a3847a72e83595de51af09de26ff91f23ccccb2b344d7f5dbab997734d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/schwa.glif000066400000000000000000000061041416264461600312770ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 30 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 32 34 48 34 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 34824172761bdc5eeb354278b222db5e7b82332f514476b25f6d5bef85d791c059a3ebe7e28f8cd21a9543407f101c33dbb1fc40bff86cd0184dd0f985148d69 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/scircumflex.glif000066400000000000000000000015161416264461600325200ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/scommaaccent.glif000066400000000000000000000015231416264461600326270ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/section.glif000066400000000000000000000131051416264461600316350ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 51 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 51 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 80 51 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 57 80 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 58 35 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 41 58 51 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 70 35 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 65 70 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 35feff588734c69c1d7690d7e2dd365658fc1e37c80e1d806abb54383071c22335b2338377dd0dc4ba01bf15fab370aeef358d6180074da33584d9ce91d42ad0 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/semicolon.glif000066400000000000000000000015471416264461600321700ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/seven.glif000066400000000000000000000034421416264461600313140ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w600l466+603l122+603l122+489l68+489l68+698l532+698l532+626l272+0l184+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/seveninferior.glif000066400000000000000000000034361416264461600330550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w338l257+306l76+306l76+245l32+245l32+368l306+368l306+313l164+0l93+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sevensuperior.glif000066400000000000000000000034461416264461600331110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w338l257+636l76+636l76+575l32+575l32+698l306+698l306+643l164+330l93+330| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sheqel.glif000066400000000000000000000062141416264461600314550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6e3affd35b30bb3d13e3129b5f16a0733c7edabe49c931a22f970606eb1f0121d1f76c8df3d58b5d2b6f691c63d5f89a0857f634161fbd9c8fd57ec7abcf80bd extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/six.glif000066400000000000000000000070631416264461600310020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 10 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 41 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c5e94dd7ee369c6593790bf456841866ce9b4c1ceedf4b94dab75c2eb21ca44c907e1aecc1d78f8cbdad35811cc9f26f64855b7a34d61110bf6623a1ab25b687 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sixinferior.glif000066400000000000000000000060771416264461600325440ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 78fc458fe18ea846431b2ad7311771006064548000e78618da2573f11f0dc242000858b3e94c3290924865f9833be6760543d93c037f8745ee27b5cf6ed4fba1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sixsuperior.glif000066400000000000000000000061121416264461600325650ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id bb63b6326a40931ad38fc7545da47612e60f8d0ca887b247e02c6e179a21397c697f2327f357431b9434d7e52ea82c57dd3c7568cf14c3d02d6ed1aa4ded4161 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/slash.glif000066400000000000000000000020561416264461600313060ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w380l274+748l338+748l72-143l8-143| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/softhyphen.glif000066400000000000000000000010761416264461600323640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/space.glif000066400000000000000000000002321416264461600312610ustar00rootroot00000000000000 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/sterling.glif000066400000000000000000000111621416264461600320210ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 60 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 60 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 37 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 10 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 37 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id cf7d71bea014cf01445f3c0d885a4bf688e745fcb68f76fd035ebc9f6acd4c73e4fdd4244e0b482cc7475f805acbead11dfd8896ee0a0089c28dd82436c51123 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/summation.glif000066400000000000000000000047601416264461600322140ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 12 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 7ed9aee9246f4b614d01b2cd4ea2bc8f1e67fc27ba4aed76cdd9269638d6a20efdce6ea09683cf0a35d5167e823a6bd5bbc52174aa5441c840fcefa6d8c9a6d8 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/t.glif000066400000000000000000000055551416264461600304460ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 19 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5c77d669d11c62142c5e129cabbf7ddf49c296b56304a17f40d25d51394c308c9fdc951a6cff20aed7a35b76ec195e2d168bbfbbc8adb4e70de3f3ffa65c882b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tbar.glif000066400000000000000000000073041416264461600311250ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 9 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 27 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2a22215e6446478621f17904742f3eaae5267a4d69777ffe0a9a1571c9022119100f1723202fdde58e897c5ae3db1b715bfe79f377a6f741d4d3b22ff7b7adc4 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tcaron.glif000066400000000000000000000015261416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tcedilla.glif000066400000000000000000000015171416264461600317560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tcommaaccent.glif000066400000000000000000000015231416264461600326300ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tenge.glif000066400000000000000000000053461416264461600313030ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f19e306b8385997d6bed3354f706dcb0d0e50d4f9b8b1fda0439a3943f7744dff222613d91369af292d0e44bde14e18e9f8653d6582d6e3b943232aa6a8d8b02 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/thorn.glif000066400000000000000000000107631416264461600313320ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 36 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2b7525b385149351baad55185cd8a20206c0b5d1e192f1895162ab89ea6bf05ed8afb241c1fd45b0846cc2e00f82ed255e45c3d1636cec047c9785765f9c6ebe extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/three.glif000066400000000000000000000116471416264461600313110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 53 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 35 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 48 26 64 26 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 96 26 112 26 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 27 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 63 27 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 560d70740956bee804ca250802a4160aa2cfa6c319f2dbf7cca0bcfaec51bd93da97b2a9c68616a0a4085be7f0cf3d87763dbae92087f0b5c5c6e1f332a3f9ba extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/threeinferior.glif000066400000000000000000000105201416264461600330340ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 41 32 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 55 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c592b2e45b019145c23fc2490e45d0c029ec1c26977838001a9d5d30b6c99f2b1fde960346a7314bee590a21b74ae1394687ad536489424d4adbda532e2e6601 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/threequarters.glif000066400000000000000000000021611416264461600330670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/threesuperior.glif000066400000000000000000000105421416264461600330730ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 41 32 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 55 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b4004f99d797fb6a924e9038de3dbea7a22137a856df605df97119b493cf00f5150c1b18dec8d6314506f19dfe9bfe278e4661c1d1f991d5d5e212da46ac15a9 tilde.alt01.case.glif000066400000000000000000000043121416264461600330450ustar00rootroot00000000000000extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 93aa22f5c2e4e5ee5f5910a11a880c3177f2c4e7406d99a1e3acd1dc02ea80680130e6870cc7b7e5ef29aa090c874a4c7d13bd30156abb7b250fe2c11308549e extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tilde.alt01.glif000066400000000000000000000044111416264461600322120ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 066a26135e7ab0f509bd010d437c3fcd5359717eea4f3a0cd1b028f39e30fcc6ecba79553ae07c5443aca2ce1c9a7e82403fb0c4f76a61e8ce4a84981b6b0a8d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tilde.case.glif000066400000000000000000000043041416264461600322050ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2fd2e0fa5af4f216e4823c7ad52e62d4ddb704e70f13927031e6c7f46bfad40e5475090f3cf03ed4f3a38f879ace6691e6dccb20681f7429313b87376ee4a310 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tilde.glif000066400000000000000000000044331416264461600312760ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 73f6e426a1024ef9874e11e1121580d6b53cb6d364abe50cf1d12796c14cd398a670ef92c38a01f60c00d1f14202bc0d220f4805558ffc4af69a35a8a944d63e extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tildecomb.glif000066400000000000000000000010631416264461600321330ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/trademark.glif000066400000000000000000000125551416264461600321530ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 45 36 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 30 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ed17ce39fc5aaae9bf233d117044b9ca3a4353faa041ea6997cc08cc2ad426006875eaeb812827c1764d810daa85c0cd2c8e309d9c41297d5547629532a7b2d3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/tugrik.glif000066400000000000000000000124161416264461600315020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 31 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 21 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 2 3 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 9 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 23 7 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 24 4 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 3 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 278e67d49582f06b402c97c5bda118026b047508bbb6b9b78957668aaabfc7ee742d9a68e5f7facaf1ea7210eae300f57e8dc122f6f2d0ca53a1daf2ad284017 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/two.glif000066400000000000000000000063531416264461600310110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 36 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 8 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8e3744b7dd6b39df5af87d1abd68044e8920be06c4ff25e70bb9111bc23383ed72d685ef7bde4bed4782eff101cd4a7c28914d8fee30a42e6e6234c5dcfee831 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/twoinferior.glif000066400000000000000000000062101416264461600325370ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 8 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c14a044ae98a270705de2e4eb99afd3f4bb266a96d7fc9a27dcf75e1f1fb9c302022200ce24cfa0637c7317fb37d9743d79a8a495eb67f3b9508b4bcc359364d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/twosuperior.glif000066400000000000000000000062201416264461600325730ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 8 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 83da7acfba890e217e723a77e3c05b429a509ae5ff9d1f1e03f0c60ea737c90ee89654f60c85506dd1321f3f3d88b5557456b815234280c2aec8377e19705de0 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/u.glif000066400000000000000000000105321416264461600304360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 21 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 11 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0041d9f6ea896ab3ce3cf3b56d84b369e660ec064679d0be6a40bc927ed1e5b0328625501db1bc02942a1b2a0fb610f3fe3c090dace3e574caa7b47261877935 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uacute.glif000066400000000000000000000015021416264461600314550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ubreve.glif000066400000000000000000000015021416264461600314570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ucircumflex.glif000066400000000000000000000015141416264461600325200ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/udieresis.glif000066400000000000000000000015101416264461600321620ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/udotbelow.glif000066400000000000000000000015161416264461600322000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ugrave.glif000066400000000000000000000015021416264461600314600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhook.glif000066400000000000000000000015061416264461600313200ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhorn.glif000066400000000000000000000115701416264461600313300ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 31 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 11 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3fe520536f2e3427a1c5e554708534d0c33919c07eb9eabb4fd05d37e77ed9f534316d39e79cd79aea100c4907e6a7e2f8995cd0bff0c9ad1bf372591ac78b98 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhornacute.glif000066400000000000000000000015121416264461600323450ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhorndotbelow.glif000066400000000000000000000015261416264461600330700ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhorngrave.glif000066400000000000000000000015121416264461600323500ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhornhook.glif000066400000000000000000000015161416264461600322100ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhorntilde.glif000066400000000000000000000015121416264461600323450ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uhungarumlaut.glif000066400000000000000000000015201416264461600330700ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/umacron.glif000066400000000000000000000015041416264461600316350ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/underscore.glif000066400000000000000000000016011416264461600323400ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w563l25-98l537-98l537-160l25-160| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0400.glif000066400000000000000000000015111416264461600312660ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0401.glif000066400000000000000000000015141416264461600312720ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0402.glif000066400000000000000000000107431416264461600312770ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 26 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 224 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 80 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 36 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d521072a1c920738f0e07dd031059d9e6a839623b48d007e3a738c009073d45ce98a65a1468dfc5d9a05660d552cee27aa5ec7203206c4d2b8cbf73ff2677b28 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0403.glif000066400000000000000000000015171416264461600312770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0404.glif000066400000000000000000000104221416264461600312730ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 47 31 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0c05c7ee2a44241d2e29c63ded605f0f88dee4ad9e87e0dbf8a9b1655fce98ba6a5c8800d029f670e421df553145512b3a985c631e3e0f2d3dceb867702d7fcb extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0405.glif000066400000000000000000000010661416264461600313000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0406.glif000066400000000000000000000010661416264461600313010ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0407.glif000066400000000000000000000015161416264461600313020ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0408.glif000066400000000000000000000010661416264461600313030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0409.glif000066400000000000000000000114141416264461600313020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 58 25 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 58 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 29 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 659956642a78edd1c97dfe4f7edff101e85ef169962e951a6ad353cb240b74326cf14a8f106a7e987eaecd0401a3b6f80f035860649ca650777cfb7b7ea20aea extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni040A_.glif000066400000000000000000000120531416264461600314510ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 41 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 38c105f7df62b0e5b7d8111ad7c925432a8114b789f2812cac36aaf61c6426288291b0f115f87f94a9e3f028379e866b791bebb9b58730b2dd271719c51519d0 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni040B_.glif000066400000000000000000000105221416264461600314510ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 6 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 16 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 79 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 224 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 003ac7452b9648e90be5001cc0ab82ca965e47a0bfcf78eca2b56f74d5540b5347cfbc0c8d7e492ccacbeab390c3b71d3f606ed9b14a49a1cc44af4b9e5f7de9 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni040C_.glif000066400000000000000000000015171416264461600314560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni040D_.glif000066400000000000000000000015171416264461600314570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni040E_.glif000066400000000000000000000015241416264461600314560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni040F_.glif000066400000000000000000000065461416264461600314700ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id bcd7beb2df0c3093e1055d6278b44d02e981a88db481bc8b4033cf5e892dae5ea6bdde7127e884b5eb2289a8a9ea375a8fe1129135570d0879a30a070ea6fd49 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0410.glif000066400000000000000000000010661416264461600312740ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0411.glif000066400000000000000000000073411416264461600312770ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 4 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 127 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 159 27 175 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 255 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 27 223 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5dd0a223cdc8abb9616a988a08a625bd6129f9b82f9d20a65621e600fa27290357c72bcc515548592063f3ddae7f801e2438b9d370994b200f5fe2d933b54ca3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0412.glif000066400000000000000000000010661416264461600312760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0413.glif000066400000000000000000000044351416264461600313020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w569l52+50l126+50l126+648l52+648l52+698l534+698l534+527l454+527l454+644l227+644l227+50l321+50l321+0l52+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0414.glif000066400000000000000000000057641416264461600313110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 14 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id cac5e9d482ed4666c9165bae2d519ccd06ac442565317714646de2f3d76e2801701e5871ab0bb4c5a23b4b7e402c6a1b5c4ea00356cafc231de9303ab88fde06 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0415.glif000066400000000000000000000010661416264461600313010ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0416.glif000066400000000000000000000150431416264461600313020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 55 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 55 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 67 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 67 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 65 26 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 22 65 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 35 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 30 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 58 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5172989151b2b6b51a012808c6eb57c002bfdc04e4cd81d9afc02d44d567cf4f26618f1875a1a22ab63e65ea96df343010d3c56ad04a2c4c2147aa5fcd35aae2 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0417.glif000066400000000000000000000115341416264461600313040ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 26 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 35 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 55 27 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id decf200036913a71fad0f3c1b8925966828f421192ae8b83b245efadd66f8d0490b40dabaa87d9c53cb80b6d923abc013d5ab2bc85473ce29e507186f22155b1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0418.glif000066400000000000000000000104421416264461600313020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 4 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ad835c59a8f1fae75675ad7e8bd1ef7b979ee5aa064fdf873e02252bcf76a18d85c7738a27438a6d03f551bf55a58bff7e02c00c4074b0f8037a1be992433aba extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0419.glif000066400000000000000000000015241416264461600313040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni041A_.glif000066400000000000000000000106321416264461600314530ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 4 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 8 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4e4f165a2fcf0b50dcd460eb05ee2f09d9fe165d351483cd171d76f4977a96d5b89159d1b069c9608486d51578d52fcc0fa5e39daceb804d5fe6ca21384a780c extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni041B_.glif000066400000000000000000000076611416264461600314640ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 24 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0f44bf95112b2ec032bdc86328bd449498009abb74455ff80b13745c5b061bcd75446fb06b450d612acd5a752a6769e169d1e1d3bfff4a45fd5e083f9e71cb0f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni041C_.glif000066400000000000000000000010661416264461600314560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni041D_.glif000066400000000000000000000010661416264461600314570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni041E_.glif000066400000000000000000000010661416264461600314600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni041F_.glif000066400000000000000000000057611416264461600314670ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 87077ce3127bd8a89e3a6d6d467cca0fdf9648ecb091e767235e6a7509538c9473b71e0269eb5ad39f5d71466275cebd1aae02911039caf2f46a6b9160b624ba extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0420.glif000066400000000000000000000010661416264461600312750ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0421.glif000066400000000000000000000010661416264461600312760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0422.glif000066400000000000000000000010661416264461600312770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0423.glif000066400000000000000000000076771416264461600313160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 21 24 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 32cf28d70eeea0277bc863a62b6e11f6358308c63b176762e32d6d9dd5340f3d51edb967b90aaaca674ded014e6bffdcb4d6ca2f45cdb79902d7e544acba6794 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0424.glif000066400000000000000000000125341416264461600313030ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 208 29 224 29 240 29 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 33 values pushed */ 0 29 16 29 32 29 48 29 64 29 80 29 96 29 112 29 128 29 144 29 160 29 176 29 192 29 208 29 224 29 240 29 16 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 0 29 1 DELTAP3[ ] /* DeltaExceptionP3 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 160 3 176 3 192 3 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 255 13 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 15 13 1 DELTAP3[ ] /* DeltaExceptionP3 */ NPUSHW[ ] /* 5 values pushed */ 239 13 255 13 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 95 13 111 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 143 13 159 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 31 13 47 13 63 13 3 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 13 223 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 96 13 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 48 13 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 9 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ec54efc038d411942e9cd131efa7f2d415cd69a5284271837a0cf0a0c2476dfe63008f2327a152caa7bb4ce2bad1067fe77cc830cdcae859b774dce08072a8ac extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0425.glif000066400000000000000000000010661416264461600313020ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0426.glif000066400000000000000000000062271416264461600313070ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id fd7d35c3d03986212b53c5129478652bf1f3240dea5c4ab74a7b4aca241863f3aa4d39a94a391e468a52ae0a0526cb259e49fec0ce03cbca003a1c8e29a5c66d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0427.glif000066400000000000000000000075231416264461600313100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 14 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 23 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9aa36a092f04c359f9e8b75bec0087c9f8cc61428ca233c3926896044a38837e47fee5764ed47ac234e3f5dcf20d391eef03c2f0a76779be3826fa7edf109829 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0428.glif000066400000000000000000000075231416264461600313110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9f8db4875abc318899b91ab28ac278ba3a22d23aeb35dc1bf011aa46de2cc368be024f26d96664c7520ff304a86a48f1d64b9ddf3111f001c5bb0041a705bf4a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0429.glif000066400000000000000000000100571416264461600313060ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4cc65f10d866b7a4a714accd5efcf9b63f81cbb927343844192b1659034418652a53d3dc9dc87474b175a94fbef76a833277f9e9669ff8d1f9ee5b4afc0103d7 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni042A_.glif000066400000000000000000000063071416264461600314600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 6 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9c337628e0b52e35e35e211f2b483cfaf28821544794b24ea1e107bb1bf61003e8a2d02a88564d99626df5bf9ab09b900f4623a83cfb065ab811b2fd67c67696 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni042B_.glif000066400000000000000000000106171416264461600314600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 37 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2838f9ac420a603b7a8a09d2c377b1cf7b9dd9c4519e8660a5aab2983910982ac8f6bdfb32a0d2e5a71652d6118cd09f452df22f6e4b7e9e76ea607cc7a8c052 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni042C_.glif000066400000000000000000000056661416264461600314710ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id be15b33b97ae3f79dea216d805a6a217f1b501b371a77ed1cddf463e28cec0c10547340bbb5d4d684e3a4b636117f8fda5cee4cb51bd7376df90f575bcabf731 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni042D_.glif000066400000000000000000000105121416264461600314540ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 25 45 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 33 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id bf5c11d69cf8b95f1e1f4a077aa2a97f17bfcd1f86fd5fb5172b29d0ff30f5e716f84b7b157de17af4ecd9295a00f6ed97cc9bc46aeeb43be7bc75b07067b7cd extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni042E_.glif000066400000000000000000000114721416264461600314630ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 19 15 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 19 63 19 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 19 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 19 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3bc8cdd790b299df09d6412e192d400c2c26e8eba94f3f86fbf7d2224957e7c1901e8336c69c0769ccf65bcbd31f42cd48e343383db655434a8ae2c0a7b8b9c4 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni042F_.glif000066400000000000000000000077671416264461600315000ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 12 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 23 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 23 48 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 23 96 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 34 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 34 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3c8ae200ff2702f79ebd6014bcd5ce2c1e98f105147656921294f7438126d50af89aed00b8fae2367df71d6d969e30cd219161ed786be09317799729ea1445e1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0430.alt01.glif000066400000000000000000000010521416264461600322110ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0430.glif000066400000000000000000000010661416264461600312760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0431.glif000066400000000000000000000103141416264461600312730ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 30 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 50 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 42 30 50 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 57 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id cb638fc488e2bac1181cb1a60564103f2bf0d6e98fc3e67bb0c92741ade4a92d88058dbc73f076abcc6461e72dad8dfc6e962993d6928aed9ed1bc5010885eb1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0432.glif000066400000000000000000000072431416264461600313030ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 30 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 41 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 3899a7f3f5c451a40e029144b6f1c2e2b8d12d5dc6b4261f3d68a0742193b0f4617fbb8fdea98a3fefc369f228c391484f2189d941d5af5eae8e1f8d85b1c889 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0433.glif000066400000000000000000000043431416264461600313020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w492l48+50l119+50l119+468l48+468l48+518l460+518l460+365l393+365l393+465l215+465l215+50l306+50l306+0l48+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0434.glif000066400000000000000000000057761416264461600313160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 13 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 80b07a05dc80b39b73c4dac7ec6291aa41f2d5d6b3552b3a04e898c9f76de34de771f528c85d93d1579c056d25fb114eec8ab59fb3b1965a8abae5140a75ae56 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0435.glif000066400000000000000000000010661416264461600313030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0436.glif000066400000000000000000000150361416264461600313060ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 67 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 67 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 55 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 55 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 67 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 65 26 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 22 65 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 44 35 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 31 56 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e397b17f216465a17a6cac994c7d710e8b5d48d82f894e695789758c2207a830ee705b6427551a193ad741b8151912acecfacde9af6c3b22f2a58a29c159a6d9 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0437.glif000066400000000000000000000114301416264461600313010ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 46 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 25 46 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 25 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 15 39 31 39 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 42 34 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 8099a5edde4b71aaf9d7b2dea0f399f696b420266eb4aa73f80c8961c28093cd19cdc38ff5c5f717509d76ebfa9de0730b8ddca1c9959905bc53dafc0b52f12b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0438.glif000066400000000000000000000104421416264461600313040ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 31 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 03d5d67e73971e5b3210a2aaceb7736b14b2d23be462b7a0116c6eb45b7f871704c30d24abac86539f136ad2e919a0b52bef89f0e79b0425acdc47353e7c8950 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0439.glif000066400000000000000000000015171416264461600313100ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni043A_.glif000066400000000000000000000106711416264461600314600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 4 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 15 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 8 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 5a2c3742ca402ac28749ddfec6b15bf33f1eeab1426a0a6984718c5af25570749c7cfbdbd59f75bfa9b702b7eae0e7e922be0afdf939881058450d236b89c67f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni043B_.glif000066400000000000000000000077461416264461600314720ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 26 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9e60225af5b66c9e90e85b31d4ac81ac37396fa45269e641bf4eda2e35678f6bbeb84876f12de8c81dec573667c8a1d5bd3ab7dcc27fd35f73c03fe368f1c088 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni043C_.glif000066400000000000000000000105221416264461600314550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 4 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a515e3938aa8f47b8e3b520a7679bf048826196089f95ca09f15bc19209905d0bf391aed71f04375012f402e6727c891990dc7bdd40305de7bff691b63fdbbb3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni043D_.glif000066400000000000000000000077501416264461600314670ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 4 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 23 255 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 23 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id d5e6508c8c3bdfe65b9e9fef42e39685f82782e436b25dcec481a146ca67faae7cb224ad2123ee3ae717811d87bbdd45b23de7b90665c2ba04d8bdd94e67d003 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni043E_.glif000066400000000000000000000010661416264461600314620ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni043F_.glif000066400000000000000000000057621416264461600314720ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1bc4c70e2e45b21e2973bb9c82a572fa53b234e9f04f051ed27a7f6f1d245e24af1e9634ec36c521dfaebf34f7048752fffc8fb11fc3de2ff98c555494656110 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0440.glif000066400000000000000000000010661416264461600312770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0441.glif000066400000000000000000000010661416264461600313000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0442.glif000066400000000000000000000046071416264461600313050ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w536l132+50l220+50l220+465l99+465l99+365l32+365l32+518l504+518l504+365l437+365l437+465l316+465l316+50l404+50l404+0l132+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0443.glif000066400000000000000000000010661416264461600313020ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0444.glif000066400000000000000000000150571416264461600313100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 48 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 55 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 55 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 24 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 69 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 62 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ec38a040622f4b52266876f0426513ab779ffe4fee2ee7c77b2317624b17be8d07369841a777b02f22ae3e080b7ddb1b49fa797dc851d2012f1211e351e4d514 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0445.glif000066400000000000000000000010661416264461600313040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0446.glif000066400000000000000000000062301416264461600313030ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c2f5fc2a035e4f43c40b0787455ded5a65d62f658a1c74afe03fd1005698047eecce6a8310925d2d3ed97d39df8d6a195f70c609a5b6aea87a5973dd86dd4786 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0447.glif000066400000000000000000000077711416264461600313170ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 12 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 128 6 144 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 6 48 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 6 80 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 19 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 19 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a708625ec7ac5c05429405d6b983c618a19ca0089c98bb75e1e1b229cc50f5bf2c14d3d9eec6f5927b4312faf9a4662a573ad277f8daf490e99ed76e6b895ba5 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0448.glif000066400000000000000000000075231416264461600313130ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6dfd32ea2f2791dc3645f6984c9b8141a3d7b39e565bd034004b45cf152501884b16357b85810186099a8ad7aaba1c00702021a96d20a6bd5a3bcb640064b27c extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0449.glif000066400000000000000000000100571416264461600313100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b58191dd191ab1d43acc9437dabf2402468107cad40bf50712bbb1e118f824f06431636f724944457e9d7854f46f683fe157055757d4783518c817f0ab1bf7fc extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni044A_.glif000066400000000000000000000061111416264461600314530ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 6 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 27 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 52933db8fadf67669271518c316da393c84771da3099fd944414e01c7526285ab10eb0dacecc988cd194fe8bebd4a7282883f21c9cc8e41d772165053a1730f3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni044B_.glif000066400000000000000000000106741416264461600314650ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b6afa556d0dec19634601b6d3b973bf9e35b8a922f7f307fa083036f588558a191fded79fa0b9f6a7805d634c60d1bb819ee9b31ab7adc71e39f63d3dccdca3f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni044C_.glif000066400000000000000000000055541416264461600314670ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 72bcc035020b8b1585163061e848432532d0a316d02b51244376dfe5f44874a12a1ca20e69002c0d2658721acd32c7fc2655620f83464633b5f1b2aa8010ab09 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni044D_.glif000066400000000000000000000106001416264461600314540ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 22 40 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 22 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 22 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 13 33 29 33 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 36 28 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 2e41b4b6502df5dc369654599bcba89106cd1c082bccc965a87456262dd3eb3e503c4dc0e5acdef1ba59b2f7f606bb6d09733bcadc2a99782000f52eac009eeb extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni044E_.glif000066400000000000000000000105671416264461600314710ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 4 13 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 4 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 239 4 255 4 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6157d3eacf151f8d6bae60cbbe9ca7ea94c28eb1355b976f2268bac2ab5ce6ccfff9b6cddc730dd485c86490927eb3912a24539b0c5a2b2e90e9460ecaee6b19 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni044F_.glif000066400000000000000000000075331416264461600314710ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 239 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 37 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ba1a2b890b005a332dc59899a63d32a62371d65c19f8229e24d15f54e6fa5e736d7bdc3e2bb3c84457ff7828ee4d44b68ec9514841bf166f5733c0d487be6381 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0450.glif000066400000000000000000000015051416264461600312760ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0451.glif000066400000000000000000000015101416264461600312730ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0452.glif000066400000000000000000000121761416264461600313060ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 7 values pushed */ 0 49 16 49 32 49 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 49 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 38 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 35 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 21 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 845607535af2266db813969cc3faaf5e1aa339d8b8e579c62caa474207bbc97961e3f4fb788852eef84ecbd3989a8f3e195b519a5c615430fc71f1ba01635aa5 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0453.glif000066400000000000000000000015131416264461600313000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0454.glif000066400000000000000000000104601416264461600313020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 18 31 18 47 18 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 29 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 29 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b1a242e4db55ce42a50c661a0d6046e28b8c4abfb338950faa4befbb9e9011975eec717430e178c5d672bb15d4fce21d7e16dde806e319e5f0ec03913d810915 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0455.glif000066400000000000000000000010661416264461600313050ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0456.glif000066400000000000000000000010661416264461600313060ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0457.glif000066400000000000000000000015201416264461600313020ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0458.glif000066400000000000000000000010661416264461600313100ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0459.glif000066400000000000000000000116531416264461600313140ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 26 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 27 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 60 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id fdc5b78d4b0a93183d67b9c46eb9147358e598dd478ff1e2b10208dded9610dc7073f990400ce072d7d42a5978cc42750bf72e5c6f825ba45b6291fd98696320 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni045A_.glif000066400000000000000000000117511416264461600314620ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 28 255 28 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 28 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id cf84d5fb82ce133afacd7bfe910993424c1671457088a1305489a10443581f076842b234bc0b5d44db8351f33645aade77cab44827df5e9d98352a8ba59ae27a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni045B_.glif000066400000000000000000000010711416264461600314550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni045C_.glif000066400000000000000000000015121416264461600314560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni045D_.glif000066400000000000000000000015121416264461600314570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni045E_.glif000066400000000000000000000015121416264461600314600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni045F_.glif000066400000000000000000000065471416264461600314760ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c5cc0974b5ee3f1a162b5a0cb15e946d4892298bba1e543118339a5b019ddb4fa40a05e20fd9fa61650ab14f39ea469dd0a5676ee8711354d1e3d0ea5a0aa780 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0472.glif000066400000000000000000000064361416264461600313120ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 26 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9515040cb297d6c16bd2d66be1603fd55566d752704cf0295a2722a13ee0701b5eaef947a30993185276f7ffe232ce55f19752589577262e7671d884b33ca754 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0473.glif000066400000000000000000000062771416264461600313160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 28 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 5 255 5 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 5 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id bb601db46e75185411657842d3387fdc1ed070f936d308b3cc061df043eaf3afa0e3d788d92865a22bc8bd66bcb98fb1c31c6b36c0bbba95be72e78a67672961 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0490.glif000066400000000000000000000044351416264461600313070ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w569l52+50l126+50l126+648l52+648l52+698l447+698l447+858l534+858l534+644l227+644l227+50l321+50l321+0l52+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0491.glif000066400000000000000000000044361416264461600313110ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w492l48+50l119+50l119+469l48+469l48+518l377+518l377+667l460+667l460+465l215+465l215+50l306+50l306+0l48+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0492.glif000066400000000000000000000065511416264461600313120ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 7 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 3 48 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 3 96 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 61426e8a7798fa154cde70293624d7c265fd570b509b1a8bfa8445606d04bd6361db652a2c67603503467cd99876912cb3a49f5b668f5f76f8de21c57612760d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0493.glif000066400000000000000000000064621416264461600313140ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 3 255 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 3 48 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 62d7e3554f71ee89f6ae4ae28ebea1e5865250cb1b31878b87b580dd0ce1f823e4f52d0e9dc4225ad63494d21c27f351d6b6dd2c7d293f8944538a33c68d070f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0494.glif000066400000000000000000000106471416264461600313150ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 24 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 47 34 63 34 79 34 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 175 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 207 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 143 34 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 34 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id fd46a3a158b9422bf5b7d58dfcf7c639667903c6ad5b4fa78f412f67c797fd74df9fa3c6b771f57ffdbab5e44aaf505cf98c30437bc58716db5c2d266054673a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0495.glif000066400000000000000000000104161416264461600313100ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 22 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 12 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 28 32 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e3b4a2ca50749cf7321128be606c94d27b11d3c84b8a4a23638d2304f4c64aa35bf9f5c840454f194571401432dc6a5d76124ceda7a3130a15006fd6a30a277a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0496.glif000066400000000000000000000154701416264461600313160ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 40 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 36 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 32 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 59 49 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 62 44 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 849769d71edbec7e9cc964112512493b519b34b79084b31c83af714bf17944c232018794e8227f7ae36f0b67e46220e328488c1c7aebd8f901dbae9bd9a9fdce extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0497.glif000066400000000000000000000154651416264461600313230ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 40 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 36 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 58 49 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 62 44 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9714a0a09c0242d941d805c0cdf261149d0026a70d323bfa246e97f9ac55102d785a9b1a497beae3cddbe8320f3b8764af1eb267480abfc86493c8605ea3beb3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0498.glif000066400000000000000000000123371416264461600313170ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 26 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 35 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 55 28 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 66 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 68 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 784ff8f6abf1836c468691f667a9ff29df792ec9f2a93cf03e708651078c73615fab2ed71440c001482b7aa2c692bf0836aae7911cea2c9c99e3f8b54ec8d059 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni0499.glif000066400000000000000000000122261416264461600313150ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 23 44 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 23 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 15 37 31 37 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 40 38 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 50 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 57 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b2282ff427ec7d96356e712426c1e36ddf60f5d7deeb87013dd63d19a9ac97b3e715cc2e6e30ba99aac4a6bb1499dfb0c7e932855a46defb7000ae565166a49a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni049A_.glif000066400000000000000000000111631416264461600314630ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 3 12 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 21 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 35 16 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c354da28aa12c555d57b9c4adf016321f5f57d057cfb2cfb14d0724a8d44648ae56aaf21eef12e34ccbacfd381ee9ee67fb7fd2397a4ad40fd43b6e2a8c91eef extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni049B_.glif000066400000000000000000000112231416264461600314610ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 3 12 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 23 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 36 16 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ae1e9bfc2d734c5cbbcbffe77363664bf1cc772607fb8c8d614009f96d154e7bab5b103802db1fc5ac0bbc00397cbd1722037e5fec3254e03b09ce728dd93a39 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni049C_.glif000066400000000000000000000125331416264461600314670ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 10 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 9 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 23 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 37 14 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 1 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f941b0e08161db3c4f3408f43b7652d4f6cd896590f2e3ed0b5baac22cba345c8d7f86bef85bc74ce702399fd1cc94eb38f470f5e491a80fcf656c3271226d03 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni049D_.glif000066400000000000000000000124021416264461600314630ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 4 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 3 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 12 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 43 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1a3fd9c16bbb301120351689c42c80eaf097eb4c6a4dc80f6889b134250a62a5d47381dfe3d85ff7a1edf0af0ecc42b9de6d0636e72e0d3a33aec7829472e911 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_0.glif000066400000000000000000000113571416264461600314570ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 6 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 10 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 671d40571f65b4a977d732a29d7d724d6a40d64c04d853baafd24717ca9432b4457907bba800f1f8a00c7ee8885240cf725f8ba4c0110ea2eb2894dc138a71f0 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_1.glif000066400000000000000000000111321416264461600314470ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 6 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 555a819f58176027e7a465eb28339bf4b1adae91c275a3aced84ef0d88f211804a3b6deb448351ede4dd0d61f1ba04f2fe96fb8026ec136fd2fdea4ac51ea11b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_2.glif000066400000000000000000000103051416264461600314510ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 14 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 18 63 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4d37390fa9be5a8e4df8bef52bd401b38579833d2a13263e70cb4f19c09a597caab37761f35f046dcd9e66d1bf349c9509b97efd5ff56d61937c7ec0e21e3cd8 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_3.glif000066400000000000000000000104731416264461600314600ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 14 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 5 255 5 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 5 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1787883928f7ea55102b666e1e4148cc46d782eac057e4b56420099b026e81b1886132f674d9c0809508f3ca5591ea07952faf1ec881002f77c57a0eb2464c17 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_4.glif000066400000000000000000000105561416264461600314630ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 14 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 40730a2ca76159c67373293dc8d7cf4c2389eee18e3d67f0b5655282a76d6ab394fd241bc12299fb82a18187904f668bcf361418b05c1e562af7ce1ef5de2f61 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_5.glif000066400000000000000000000103031416264461600314520ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 25 255 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 25 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4e60c1dcd6f28370e70831c28debb36a286aeec3a42cadf0a0f51bdba7638fd8408c009da74a45c323a7c8284c7ee82a8ca96f90b18f2cae5a61f313b99bfe54 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_A_.glif000066400000000000000000000072711416264461600316370ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 060c54c89d8eeca7249651ee7020ad980e3afa4be2673915b4c4ccea0c495eef7041bd85c4a03c74ba61f94d40b7244fe327545ec65d2b0de9fbc88d6494f026 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_B_.glif000066400000000000000000000071621416264461600316370ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 28 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 18 64 18 80 18 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id eb18a58f80e0588198755c72f88a817480b9c58b2234b01388c83f6f705b5f2bab9a5b0186d0b3417c5681a6efefb35ab3bc40a33e74bfdf85bee8e47853c912 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_E_.glif000066400000000000000000000010661416264461600316370ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04A_F_.glif000066400000000000000000000067101416264461600316410ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ed824087930ef6d3dbba45d7199b796557ed404b424ce98cf56abab784138847513e5ad556e1c0f457873d71d88497dc93d416a2482b226b300d4310346ab957 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_0.glif000066400000000000000000000074131416264461600314560ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 8 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 6bf34280ef2cba6fb4af246b8cce9a001b28a1f9e78e968d42065db7b1a253e969472b23b35b59e255f33d533ee211a6759276eff974fea2383c4c5381c12612 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_1.glif000066400000000000000000000100401416264461600314450ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 9 values pushed */ 15 5 31 5 47 5 63 5 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b4b3f3d4fa6746a43e415d5c74206eb2da600e61faccffdd0e81360c10bb530d36957552656b7ce9b1a69bc9ddcdd54cc24163e87dcb6b36ad5ee10b22cf4c9a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_2.glif000066400000000000000000000105561416264461600314620ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 15 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 23 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 03aa505e90c7b13900c8be0afe9f3b8d088bce668424a56d2cd06a30b8e6da6bd2e8c75857bb96e66e08ce02a075898eb280fdfc065145bb9c32b5af35d624e1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_3.glif000066400000000000000000000105571416264461600314640ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 15 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 23 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 223ec89a0bc62c159e8cc4e5c33d18095493381c4a96ae2ae070f03fd0ed6561ac72338cbe74d0c636e7e85d6dbe21942b78b9291e7686d66f1eb4c9018fe850 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_6.glif000066400000000000000000000100611416264461600314550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 16 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 25 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 1cc7fd143d3912428ccdda72edfacc6f5521c6cbb4cc5e3b451675ddda3e11e567962600db4be80441539829979c264c1d9239bc6c741c456239bd60ee17ac72 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_7.glif000066400000000000000000000105161416264461600314630ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 14 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 128 8 144 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 8 48 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 8 80 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 8 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f49fa88c6d49eb3e022d71ce0f89269982910174bbb240fa9d2d154c0585614224d083e78c7f2f945bfa6b3dcc210cb61360fb62ea9c34bfc9d532f09552112d extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_8.glif000066400000000000000000000111031416264461600314550ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 0 8 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 7 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 0 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b9ba4154fd0299f37dfb8d6327548c04a1aad7a6ce7761755f5a4750efaf7695e9f83b0c1543b5681cd11f7275d1e3b100c2af57811e4bb7b9b1a8595f05be48 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_9.glif000066400000000000000000000120551416264461600314650ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 7 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 34 1 50 1 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 1 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 128 1 144 1 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 1 80 1 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 6 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 1 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 1 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 32 38 48 38 2 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 9ebf3e389352d4c8dd456b14a07dcc7da7324f65686ed8bb3c30b3ff1a4517f1f66539ad7a131c9477b28f9b97bdc566736d6b742003733a6318138b506d100b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_A_.glif000066400000000000000000000076341416264461600316430ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 176 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 224 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 12 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4c02c265642c27d4e4e8947601a00f007cf8f9212e523fbc699ae3674db7f0d99852fbdab8c5dde1105e3d9fa27b39033d80da0fb15dda4519b326645a573835 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04B_B_.glif000066400000000000000000000010661416264461600316350ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04C_0.glif000066400000000000000000000010661416264461600314550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04C_1.glif000066400000000000000000000015261416264461600314570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04C_2.glif000066400000000000000000000015201416264461600314520ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04C_F_.glif000066400000000000000000000037711416264461600316470ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w304l33+50l104+50l104+698l33+698l33+748l271+748l271+698l200+698l200+50l271+50l271+0l33+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_0.glif000066400000000000000000000015161416264461600314560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_1.alt01.glif000066400000000000000000000014761416264461600324040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_1.glif000066400000000000000000000015121416264461600314530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_2.glif000066400000000000000000000015141416264461600314560ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_3.alt01.glif000066400000000000000000000014741416264461600324040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_3.glif000066400000000000000000000015101416264461600314530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_4.glif000066400000000000000000000010671416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_5.glif000066400000000000000000000010671416264461600314640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_6.glif000066400000000000000000000015161416264461600314640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_7.glif000066400000000000000000000015121416264461600314610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_8.glif000066400000000000000000000010721416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_9.glif000066400000000000000000000010721416264461600314640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_C_.glif000066400000000000000000000015241416264461600316370ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_D_.glif000066400000000000000000000015161416264461600316410ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_E_.glif000066400000000000000000000015221416264461600316370ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04D_F_.glif000066400000000000000000000015161416264461600316430ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_2.glif000066400000000000000000000015201416264461600314540ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_3.glif000066400000000000000000000015131416264461600314570ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_4.glif000066400000000000000000000015221416264461600314600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_5.glif000066400000000000000000000015151416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_6.glif000066400000000000000000000015141416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_7.glif000066400000000000000000000015101416264461600314600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_8.glif000066400000000000000000000010741416264461600314660ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_9.glif000066400000000000000000000010741416264461600314670ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_E_.glif000066400000000000000000000015201416264461600316360ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04E_F_.glif000066400000000000000000000015061416264461600316430ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04F_0.glif000066400000000000000000000015221416264461600314550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04F_1.glif000066400000000000000000000015101416264461600314530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04F_2.glif000066400000000000000000000015261416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04F_3.glif000066400000000000000000000015141416264461600314610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04F_4.glif000066400000000000000000000015221416264461600314610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04F_5.glif000066400000000000000000000015141416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04F_8.glif000066400000000000000000000015231416264461600314660ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni04F_9.glif000066400000000000000000000015161416264461600314710ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2150.glif000066400000000000000000000021521416264461600312740ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2151.glif000066400000000000000000000021511416264461600312740ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2153.glif000066400000000000000000000021521416264461600312770ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2154.glif000066400000000000000000000021521416264461600313000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2155.glif000066400000000000000000000021511416264461600313000ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2156.glif000066400000000000000000000021511416264461600313010ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2157.glif000066400000000000000000000021531416264461600313040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2158.glif000066400000000000000000000021521416264461600313040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni2159.glif000066400000000000000000000021501416264461600313030ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni215A_.glif000066400000000000000000000021511416264461600314530ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni215B_.glif000066400000000000000000000021521416264461600314550ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni215C_.glif000066400000000000000000000021541416264461600314600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni215D_.glif000066400000000000000000000021531416264461600314600ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uni215E_.glif000066400000000000000000000021541416264461600314620ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component2 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uogonek.glif000066400000000000000000000133721416264461600316460ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 28 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 24 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 10 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id de16dcc7cc4f16c1bd4ae1340acbcb40fa7f0f1cbb9580e42f4106420217f885e0bc9b6006ac46589ba70c5ae3db725a45cf0b67c74384581c487c5d69cf46c5 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/uring.glif000066400000000000000000000015001416264461600313110ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/utilde.glif000066400000000000000000000015101416264461600314540ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/v.glif000066400000000000000000000050741416264461600304440ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w540l54+468l3+468l3+518l227+518l227+468l156+468l288+99l292+99l424+468l353+468l353+518l537+518l537+468l486+468l307+0l233+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/w.glif000066400000000000000000000072101416264461600304370ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 4716fe2c1e6483112a6f84a3181a1a76c8a2e33cc3e6e1852a5784e890cdbb08546a035de523b07d952ea05c774e794f528611e4c4e6fc024730cfb6531460ea extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/wacute.glif000066400000000000000000000015041416264461600314610ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/wcircumflex.glif000066400000000000000000000015161416264461600325240ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/wdieresis.glif000066400000000000000000000015121416264461600321660ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/wgrave.glif000066400000000000000000000015041416264461600314640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/won.glif000066400000000000000000000153131416264461600307770ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 2 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 2 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id f157f5e095baf0f749c84b8eb5200ef4a4cd9f58003d8da1dac374fb91c2567d0dd2d0278829c692eca6707d0ebe9ab6d260bbb59fbddfad1b5d1133652e4bd4 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/x.glif000066400000000000000000000103041416264461600304360ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id e8cff76b6b16559391e205e36673ab4c7c7bb0041ba7aa8c5f6c418fcb827c6d79fe4b9f2d6facf2edd3cb373efed1189e380217db0640f54421b37c6598201a extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/y.glif000066400000000000000000000077551416264461600304570ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 15 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 19 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 62efb6fcea1687df14bc802a28e8d4094d25994de2f8b10299c25221d4b7ab2de0077938dbf5b6280f7c85e50fe2ff9a125719f73ae03837775e526d0bfc51d3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yacute.glif000066400000000000000000000015041416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ycircumflex.glif000066400000000000000000000015161416264461600325260ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ydieresis.glif000066400000000000000000000015121416264461600321700ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ydotbelow.glif000066400000000000000000000015161416264461600322040ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yen.glif000066400000000000000000000122651416264461600307720ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 127 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 4 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 15 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 192 8 208 8 224 8 240 8 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 144 8 160 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id a738e2f4daa2923480ff44d43f2d524a44921343e4b4842b249a0cf745e79e9e38d7b6b6bd7beba7ad4ba8d5fa207868c8bc8148b2a80da9d692e93770899304 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ygrave.glif000066400000000000000000000015041416264461600314660ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/yhook.glif000066400000000000000000000015061416264461600313240ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/ytilde.glif000066400000000000000000000015041416264461600314630ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/z.glif000066400000000000000000000045271416264461600304520ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id w508l46+40l335+466l121+466l121+362l54+362l54+518l454+518l454+478l165+52l395+52l395+156l462+156l462+0l46+0| extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zacute.glif000066400000000000000000000015041416264461600314640ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zcaron.glif000066400000000000000000000015041416264461600314650ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zdotaccent.glif000066400000000000000000000015141416264461600323300ustar00rootroot00000000000000 public.objectLibs component0 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics component1 public.truetype.roundOffsetToGrid public.truetype.useMyMetrics public.truetype.overlap extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zero.alt01.glif000066400000000000000000000062751416264461600321020ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 6 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 6 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 34 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 35 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0ec35b7f192d814791b0568ea1b82a7de6005644a704274b135d281af93c3a2f29ce71e6259978d005d672954d7c8d191d8d8d9e52023e1e3a2b89e984b5fc90 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zero.alt02.glif000066400000000000000000000071271416264461600321000ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 42 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 239 29 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 29 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 143 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id b7c26a9f37f12e226ae9020b2c724e754a8a816d077b11cd79d4fcca907dc5f3d6c95f76ea7a2e58aab7e4dc0a6925e9f8484abb822732185ae4e4c688065e9b extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zero.glif000066400000000000000000000050451416264461600311540ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id ee933343306688870c301cf8876a6a0b1008eee94679334bc2c6a0cff62cf8507cce22da3a1f7a39415d8d90599bdf81fa4023254c1dacab269d49f7bf39d1dd extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zeroinferior.glif000066400000000000000000000044571416264461600327200ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id 0957e3922665d2d86e90d76efce4fe332d7201751ce8a29088ff7d6e7d85900336e0a518aacaf710ace48de4b8547d6c98482e4c0ee36a6b1364eb29835ffc8f extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/glyphs/zerosuperior.glif000066400000000000000000000044711416264461600327470ustar00rootroot00000000000000 public.truetype.instructions assembly SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ formatVersion 1 id c471f9d4a3d6e089b90d0686f85c4982cd6df4ff258fa46ac0486b578afa8a5f26068c69d895f8a0091747f498b4f52aed77fbd09c996e82e1c1bc9706d041e9 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/groups.plist000066400000000000000000001235341416264461600304240ustar00rootroot00000000000000 public.kern1.A A Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehook Abrevetilde Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhook Acircumflextilde Adieresis Adotbelow Agrave Ahook Amacron Aogonek Aring Aringacute Atilde public.kern1.AE AE AEacute E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Eogonek Etilde OE public.kern1.C C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent public.kern1.D D Dcaron Dcroat Eth public.kern1.Eng Eng N Nacute Ncaron Ncommaaccent Ntilde public.kern1.G G Gbreve Gcircumflex Gcommaaccent Gdotaccent public.kern1.IJ IJ IJacute J Jacute Jcircumflex public.kern1.K K Kcommaaccent public.kern1.L L Lacute Lcaron Lcommaaccent Ldot Lslash public.kern1.O O Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhook Ocircumflextilde Odieresis Odotbelow Ograve Ohook Ohungarumlaut Omacron Oslash Oslashacute Otilde Q Schwa public.kern1.Ohorn Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhook Ohorntilde public.kern1.R R Racute Rcaron Rcommaaccent public.kern1.S S Sacute Scaron Scedilla Scircumflex Scommaaccent public.kern1.T T Tbar Tcaron Tcedilla Tcommaaccent public.kern1.U U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhook Uhungarumlaut Umacron Uogonek Uring Utilde public.kern1.Uhorn Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhook Uhorntilde public.kern1.W W Wacute Wcircumflex Wdieresis Wgrave public.kern1.Y Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhook Ytilde public.kern1.Z Z Zacute Zcaron Zdotaccent public.kern1.a a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde adieresis adotbelow agrave ahook amacron aogonek aring aringacute atilde public.kern1.a.alt01 a.alt01 aacute.alt01 abreve.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflex.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 u uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhungarumlaut umacron uogonek uring utilde public.kern1.ae ae aeacute e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook ecircumflextilde edieresis edotaccent edotbelow egrave ehook emacron eogonek etilde oe public.kern1.asterisk asterisk quotedbl quotesingle public.kern1.b b p thorn public.kern1.c c cacute ccaron ccedilla ccircumflex cdotaccent public.kern1.colon colon semicolon public.kern1.comma comma ellipsis period quotedblbase quotesinglbase public.kern1.d d fl l lacute lcommaaccent lslash public.kern1.dcaron dcaron lcaron public.kern1.dotlessi dotlessi dotlessj eng g.alt01 gbreve.alt01 gcircumflex.alt01 gcommaaccent.alt01 gdotaccent.alt01 ij ijacute j jacute jcircumflex q public.kern1.emdash emdash endash hyphen softhyphen public.kern1.fi fi i iacute ibreve icircumflex idieresis idotbelow igrave ihook imacron iogonek itilde public.kern1.g g g.alt02 gbreve gcircumflex gcommaaccent gdotaccent public.kern1.guillemotleft guillemotleft guilsinglleft public.kern1.guillemotright guillemotright guilsinglright public.kern1.h h hbar hcircumflex m n nacute napostrophe ncaron ncommaaccent ntilde public.kern1.k k kcommaaccent kgreenlandic public.kern1.o o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhook ocircumflextilde odieresis odotbelow ograve ohook ohungarumlaut omacron oslash oslashacute otilde schwa public.kern1.ohorn ohorn ohornacute ohorndotbelow ohorngrave ohornhook ohorntilde public.kern1.quotedblleft quotedblleft quoteleft public.kern1.quotedblright quotedblright quoteright public.kern1.r r racute rcaron rcommaaccent public.kern1.s s sacute scaron scedilla scircumflex scommaaccent public.kern1.t t tbar tcaron tcedilla tcommaaccent public.kern1.uhorn uhorn uhornacute uhorndotbelow uhorngrave uhornhook uhorntilde public.kern1.uni0400 uni0400 uni0401 uni0415 uni04D4 uni04D6 public.kern1.uni0403 uni0403 uni0413 uni0490 uni04A4 public.kern1.uni0406 uni0406 uni0407 uni040D uni040F uni0418 uni0419 uni041B uni041C uni041D uni041F uni0427 uni0428 uni042B uni042F uni04B8 uni04C0 uni04E2 uni04E4 uni04F4 uni04F8 public.kern1.uni0409 uni0409 uni040A uni042A uni042C public.kern1.uni040B uni040B uni04BA public.kern1.uni040C uni040C uni0416 uni041A uni049C uni04A0 uni04C1 uni04DC public.kern1.uni040E uni040E uni0423 uni04EE uni04F0 uni04F2 public.kern1.uni0410 uni0410 uni04D0 uni04D2 public.kern1.uni0412 uni0412 uni0417 uni0498 uni04DE public.kern1.uni0414 uni0414 uni0426 uni0429 uni04A2 uni04B6 public.kern1.uni041E uni041E uni042D uni042E uni0472 uni04D8 uni04E6 uni04E8 public.kern1.uni0421 uni0421 uni04AA public.kern1.uni0430 uni0430 uni04D1 uni04D3 public.kern1.uni0430.alt01 uni0430.alt01 uni04D1.alt01 uni04D3.alt01 public.kern1.uni0431 uni0431 uni043E uni044D uni044E uni0473 uni04D9 uni04E7 uni04E9 public.kern1.uni0432 uni0432 uni0437 uni0499 uni04DF public.kern1.uni0433 uni0433 uni0453 uni0491 uni04A5 public.kern1.uni0434 uni0434 uni0446 uni0449 uni04A3 uni04B7 public.kern1.uni0435 uni0435 uni0450 uni0451 uni04D5 uni04D7 public.kern1.uni0436 uni0436 uni043A uni045C uni049D uni04A1 uni04C2 uni04DD public.kern1.uni0438 uni0438 uni0439 uni043B uni043C uni043D uni043F uni0447 uni0448 uni044B uni044F uni045D uni045F uni04B9 uni04E3 uni04E5 uni04F5 uni04F9 public.kern1.uni0441 uni0441 uni04AB public.kern1.uni0443 uni0443 uni045E uni04EF uni04F1 uni04F3 public.kern1.uni044A uni044A uni044C uni0459 uni045A public.kern1.uni0456 uni0456 uni0457 public.kern1.uni045B uni045B uni04BB public.kern1.uni0496 uni0496 uni049A public.kern1.uni0497 uni0497 uni049B public.kern1.w w wacute wcircumflex wdieresis wgrave public.kern1.y y yacute ycircumflex ydieresis ydotbelow ygrave yhook ytilde public.kern1.z z zacute zcaron zdotaccent public.kern2.A A AE AEacute Aacute Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehook Abrevetilde Acircumflex Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhook Acircumflextilde Adieresis Adotbelow Agrave Ahook Amacron Aogonek Aring Aringacute Atilde public.kern2.B B D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Eng Eogonek Eth Etilde F Germandbls H Hbar Hcircumflex I IJ IJacute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihook Imacron Iogonek Itilde K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde P R Racute Rcaron Rcommaaccent Thorn public.kern2.C C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent G Gbreve Gcircumflex Gcommaaccent Gdotaccent O OE Oacute Obreve Ocircumflex Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhook Ocircumflextilde Odieresis Odotbelow Ograve Ohook Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhook Ohorntilde Ohungarumlaut Omacron Oslash Oslashacute Otilde Q Schwa public.kern2.J J Jacute Jcircumflex public.kern2.S S Sacute Scaron Scedilla Scircumflex Scommaaccent public.kern2.T T Tbar Tcaron Tcedilla Tcommaaccent public.kern2.U U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhook Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhook Uhorntilde Uhungarumlaut Umacron Uogonek Uring Utilde public.kern2.W W Wacute Wcircumflex Wdieresis Wgrave public.kern2.Y Y Yacute Ycircumflex Ydieresis Ydotbelow Ygrave Yhook Ytilde public.kern2.Z Z Zacute Zcaron Zdotaccent public.kern2._empty_lu.0_st.2_cl.0 public.kern2.a a aacute abreve abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflex acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde adieresis adotbelow ae aeacute agrave ahook amacron aogonek aring aringacute atilde public.kern2.a.alt01 a.alt01 aacute.alt01 abreve.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflex.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 d dcaron dcroat eth g.alt01 gbreve.alt01 gcircumflex.alt01 gcommaaccent.alt01 gdotaccent.alt01 q public.kern2.asterisk asterisk quotedbl quotesingle public.kern2.braceright braceright bracketright public.kern2.c c cacute ccaron ccedilla ccircumflex cdotaccent e eacute ebreve ecaron ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook ecircumflextilde edieresis edotaccent edotbelow egrave ehook emacron eogonek etilde o oacute obreve ocircumflex ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhook ocircumflextilde odieresis odotbelow oe ograve ohook ohorn ohornacute ohorndotbelow ohorngrave ohornhook ohorntilde ohungarumlaut omacron oslash oslashacute otilde schwa public.kern2.colon colon semicolon public.kern2.comma comma ellipsis period quotedblbase quotesinglbase public.kern2.dotlessi dotlessi eng kgreenlandic m n nacute ncaron ncommaaccent ntilde r racute rcaron rcommaaccent public.kern2.dotlessj dotlessj j jacute jcircumflex public.kern2.emdash emdash endash hyphen softhyphen public.kern2.f f fi fl germandbls public.kern2.g g g.alt02 gbreve gcircumflex gcommaaccent gdotaccent public.kern2.guillemotleft guillemotleft guilsinglleft public.kern2.guillemotright guillemotright guilsinglright public.kern2.h h hcircumflex k kcommaaccent l lacute lcaron lcommaaccent ldot lslash public.kern2.i i iacute ibreve icircumflex idieresis idotbelow igrave ihook ij ijacute imacron iogonek itilde public.kern2.quotedblleft quotedblleft quoteleft public.kern2.quotedblright quotedblright quoteright public.kern2.s s sacute scaron scedilla scircumflex scommaaccent public.kern2.t t tbar tcaron tcedilla tcommaaccent public.kern2.u u uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhorn uhornacute uhorndotbelow uhorngrave uhornhook uhorntilde uhungarumlaut umacron uogonek uring utilde public.kern2.uni0400 uni0400 uni0401 uni0403 uni0406 uni0407 uni040A uni040C uni040D uni040F uni0411 uni0412 uni0413 uni0415 uni0418 uni0419 uni041A uni041C uni041D uni041F uni0420 uni0426 uni0428 uni0429 uni042B uni042C uni042E uni0490 uni0494 uni049A uni049C uni04A2 uni04A4 uni04BA uni04C0 uni04D6 uni04E2 uni04E4 uni04F8 public.kern2.uni0402 uni0402 uni040B uni0422 public.kern2.uni0404 uni0404 uni041E uni0421 uni0472 uni04AA uni04D8 uni04E6 uni04E8 public.kern2.uni0409 uni0409 uni041B public.kern2.uni040E uni040E uni0423 uni04EE uni04F0 uni04F2 public.kern2.uni0410 uni0410 uni04D0 uni04D2 public.kern2.uni0416 uni0416 uni0496 uni04C1 uni04DC public.kern2.uni0417 uni0417 uni042D uni0498 uni04DE public.kern2.uni0425 uni0425 uni04B2 public.kern2.uni0427 uni0427 uni04B6 uni04B8 uni04F4 public.kern2.uni042A uni042A uni04A0 public.kern2.uni0430 uni0430 uni04D1 uni04D3 uni04D5 public.kern2.uni0430.alt01 uni0430.alt01 uni04D1.alt01 uni04D3.alt01 public.kern2.uni0432 uni0432 uni0433 uni0438 uni0439 uni043A uni043C uni043D uni043F uni0446 uni0448 uni0449 uni044B uni044C uni044E uni0453 uni045A uni045C uni045D uni045F uni0491 uni0495 uni049B uni049D uni04A3 uni04A5 uni04E3 uni04E5 uni04F9 public.kern2.uni0435 uni0435 uni043E uni0441 uni0450 uni0451 uni0454 uni0473 uni04AB uni04D7 uni04D9 uni04E7 uni04E9 public.kern2.uni0436 uni0436 uni0497 uni04C2 uni04DD public.kern2.uni0437 uni0437 uni044D uni0499 uni04DF public.kern2.uni043B uni043B uni0459 public.kern2.uni0442 uni0442 uni044A uni04A1 public.kern2.uni0443 uni0443 uni045E uni04EF uni04F1 uni04F3 public.kern2.uni0445 uni0445 uni04B3 public.kern2.uni0447 uni0447 uni04B7 uni04B9 uni04F5 public.kern2.uni0452 uni0452 uni045B public.kern2.uni0456 uni0456 uni0457 public.kern2.uni04BB uni04BB uni04CF public.kern2.w w wacute wcircumflex wdieresis wgrave public.kern2.y y yacute ycircumflex ydieresis ydotbelow ygrave yhook ytilde public.kern2.z z zacute zcaron zdotaccent extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/kerning.plist000066400000000000000000017511341416264461600305460ustar00rootroot00000000000000 Aogonek braceright 16 bracketright 16 dotlessj 4 j 4 jacute 4 jcircumflex 4 parenright 36 B V -30 X -20 ampersand -10 eightsuperior -11 fiveinferior -2 fivesuperior -12 foursuperior -10 ninesuperior -15 oneinferior -2 onesuperior -12 public.kern2.A -19 public.kern2.J -8 public.kern2.T -20 public.kern2.W -25 public.kern2.Y -30 public.kern2.Z -21 public.kern2.asterisk -20 public.kern2.comma -31 public.kern2.f -5 public.kern2.g -10 public.kern2.guillemotleft 20 public.kern2.guillemotright -10 public.kern2.quotedblleft -20 public.kern2.quotedblright -20 public.kern2.t -5 public.kern2.u -10 public.kern2.w -10 public.kern2.y -5 public.kern2.z -16 question -28 registered -13 sevensuperior -20 sixsuperior -10 slash -17 threeinferior -2 threesuperior -12 trademark -20 twoinferior -4 twosuperior -13 underscore -60 v -10 x -10 zeroinferior 2 zerosuperior -15 D AE -35 AEacute -35 Dcaron AE -35 AEacute -35 Dcroat AE -35 AEacute -35 Eogonek dotlessj -6 j -6 jacute -6 jcircumflex -6 parenright 12 Eth AE -35 AEacute -35 F AE -78 AEacute -78 ampersand -38 at -30 eightinferior -62 fiveinferior -54 fourinferior -77 germandbls.alt01 -28 ibreve -8 icircumflex -8 idieresis -8 imacron -8 itilde -8 jcircumflex -8 nineinferior -61 ninesuperior 4 oneinferior -60 onesuperior 5 p -25 public.kern2.A -56 public.kern2.C -17 public.kern2.J -59 public.kern2.a -40 public.kern2.a.alt01 -37 public.kern2.asterisk 6 public.kern2.c -42 public.kern2.comma -100 public.kern2.dotlessi -25 public.kern2.dotlessj -25 public.kern2.emdash -20 public.kern2.f -5 public.kern2.g -42 public.kern2.guillemotleft -32 public.kern2.guillemotright -20 public.kern2.i -25 public.kern2.quotedblleft 12 public.kern2.quotedblright 8 public.kern2.s -32 public.kern2.t -5 public.kern2.u -25 public.kern2.w -10 public.kern2.y -8 public.kern2.z -26 question 15 registered 2 seveninferior -46 sevensuperior 2 sixinferior -65 sixsuperior 4 slash -50 threeinferior -53 threesuperior 2 trademark 10 twoinferior -62 twosuperior 2 underscore -130 v -10 x -28 zeroinferior -67 zerosuperior 4 Germandbls V -20 X -7 ampersand -8 copyright -2 eightinferior 10 eightsuperior -30 fiveinferior 8 fivesuperior -22 fourinferior 10 foursuperior -32 nineinferior 20 ninesuperior -20 onesuperior -12 ordfeminine -22 ordmasculine -22 public.kern2.A -13 public.kern2.C -3 public.kern2.T -16 public.kern2.U -12 public.kern2.W -20 public.kern2.Y -18 public.kern2.Z -20 public.kern2.asterisk -13 public.kern2.comma -10 public.kern2.emdash 12 public.kern2.g -2 public.kern2.guillemotleft 40 public.kern2.quotedblleft -30 public.kern2.quotedblright -20 public.kern2.t -2 public.kern2.w -12 public.kern2.y -12 public.kern2.z -12 question -14 questiondown -6 registered -27 sevensuperior -12 sixinferior 10 sixsuperior -32 slash -16 threesuperior -12 trademark -12 twosuperior -17 underscore -60 v -12 x -15 zeroinferior 20 zerosuperior -20 H foursuperior -2 Hbar foursuperior -2 Hcircumflex foursuperior -2 I foursuperior -2 IJ AE -28 AEacute -28 IJacute AE -28 AEacute -28 Iacute foursuperior -2 Ibreve foursuperior -2 Icircumflex foursuperior -2 Idieresis foursuperior -2 Idotaccent foursuperior -2 Idotbelow foursuperior -2 Igrave foursuperior -2 Ihook foursuperior -2 Imacron foursuperior -2 Iogonek foursuperior -2 parenright 15 Itilde foursuperior -2 J AE -28 AEacute -28 Jacute AE -28 AEacute -28 Jcircumflex AE -28 AEacute -28 Lcaron T -11 Tbar -11 Tcaron -11 Tcedilla -11 Tcommaaccent -11 V -7 W -7 Wacute -7 Wcircumflex -7 Wdieresis -7 Wgrave -7 Y -9 Yacute -9 Ycircumflex -9 Ydieresis -9 Ydotbelow -9 Ygrave -9 Yhook -9 Ytilde -9 quotedblleft -12 quotedblright -10 quoteleft -12 quoteright -10 trademark -6 M foursuperior -2 O AE -23 AEacute -23 Oacute AE -23 AEacute -23 Obreve AE -23 AEacute -23 Ocircumflex AE -23 AEacute -23 Ocircumflexacute AE -23 AEacute -23 Ocircumflexdotbelow AE -23 AEacute -23 Ocircumflexgrave AE -23 AEacute -23 Ocircumflexhook AE -23 AEacute -23 Ocircumflextilde AE -23 AEacute -23 Odieresis AE -23 AEacute -23 Odotbelow AE -23 AEacute -23 Ograve AE -23 AEacute -23 Ohook AE -23 AEacute -23 Ohungarumlaut AE -23 AEacute -23 Omacron AE -23 AEacute -23 Oslash AE -23 AEacute -23 Oslashacute AE -23 AEacute -23 Otilde AE -23 AEacute -23 P AE -84 AEacute -84 X -15 ampersand -34 at -10 eightinferior -65 eightsuperior 10 fiveinferior -60 fivesuperior 10 fourinferior -102 foursuperior 10 nineinferior -60 ninesuperior 10 oneinferior -62 public.kern2.A -48 public.kern2.J -42 public.kern2.T 2 public.kern2.W 5 public.kern2.Z -2 public.kern2.a -15 public.kern2.a.alt01 -21 public.kern2.asterisk 9 public.kern2.c -21 public.kern2.comma -130 public.kern2.dotlessi -10 public.kern2.emdash -10 public.kern2.g -25 public.kern2.quotedblleft 12 public.kern2.quotedblright 12 public.kern2.s -20 public.kern2.w 8 public.kern2.y 14 public.kern2.z -8 seveninferior -22 sevensuperior 9 sixinferior -89 sixsuperior 10 slash -50 threeinferior -60 twoinferior -62 underscore -130 v 10 x -12 zeroinferior -60 zerosuperior 10 Q AE -23 AEacute -23 Schwa AE -23 AEacute -23 T AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Tbar AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Tcaron AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Tcedilla AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Tcommaaccent AE -65 AEacute -65 icircumflex 8 idieresis 8 imacron 8 itilde 8 jcircumflex 3 Thorn AE -40 AEacute -40 V -23 X -36 ampersand -4 at 10 eightsuperior 5 fiveinferior -2 fourinferior -15 foursuperior 10 ninesuperior -15 onesuperior -2 public.kern2.A -20 public.kern2.J -25 public.kern2.W -3 public.kern2.Y -37 public.kern2.a -5 public.kern2.asterisk -20 public.kern2.comma -60 public.kern2.emdash 30 public.kern2.g -10 public.kern2.guillemotleft 30 public.kern2.guillemotright 5 public.kern2.quotedblleft -20 public.kern2.quotedblright -2 public.kern2.s 8 public.kern2.w 8 public.kern2.y 10 seveninferior 8 sevensuperior -22 sixinferior -10 slash -40 trademark -16 twosuperior 8 underscore -130 v 10 x -14 zerosuperior 8 U AE -35 AEacute -35 Uacute AE -35 AEacute -35 Ubreve AE -35 AEacute -35 Ucircumflex AE -35 AEacute -35 Udieresis AE -35 AEacute -35 Udotbelow AE -35 AEacute -35 Ugrave AE -35 AEacute -35 Uhook AE -35 AEacute -35 Uhorn AE -40 AEacute -40 Uhornacute AE -40 AEacute -40 Uhorndotbelow AE -40 AEacute -40 Uhorngrave AE -40 AEacute -40 Uhornhook AE -40 AEacute -40 Uhorntilde AE -40 AEacute -40 Uhungarumlaut AE -35 AEacute -35 Umacron AE -35 AEacute -35 Uogonek AE -35 AEacute -35 Uring AE -35 AEacute -35 Utilde AE -35 AEacute -35 V AE -75 AEacute -75 V 10 ampersand -44 at -40 b 2 eightinferior -62 eightsuperior 10 exclamdown -20 fiveinferior -57 fivesuperior 19 fourinferior -72 germandbls.alt01 -36 idieresis 11 imacron 10 itilde 3 nineinferior -62 ninesuperior 11 oneinferior -62 onesuperior 20 p -37 parenright 28 public.kern2.A -52 public.kern2.C -23 public.kern2.J -49 public.kern2.S -10 public.kern2.T 19 public.kern2.W 10 public.kern2.Y 9 public.kern2.a -67 public.kern2.a.alt01 -57 public.kern2.asterisk 20 public.kern2.c -58 public.kern2.colon -20 public.kern2.comma -70 public.kern2.dotlessi -55 public.kern2.dotlessj -20 public.kern2.emdash -25 public.kern2.f -20 public.kern2.g -60 public.kern2.guillemotleft -41 public.kern2.guillemotright -22 public.kern2.i -20 public.kern2.quotedblleft 20 public.kern2.quotedblright 24 public.kern2.s -55 public.kern2.t -20 public.kern2.u -20 public.kern2.w -12 public.kern2.y -12 public.kern2.z -30 question 14 questiondown -60 registered 10 seveninferior -60 sevensuperior 28 sixinferior -62 slash -50 threeinferior -62 threesuperior 20 trademark 28 twoinferior -54 twosuperior 20 underscore -70 v -12 x -20 zeroinferior -54 zerosuperior 20 W AE -55 AEacute -55 icircumflex -1 idieresis 2 Wacute AE -55 AEacute -55 icircumflex -1 idieresis 2 Wcircumflex AE -55 AEacute -55 icircumflex -1 idieresis 2 Wdieresis AE -55 AEacute -55 icircumflex -1 idieresis 2 Wgrave AE -55 AEacute -55 icircumflex -1 idieresis 2 X ampersand -15 at -30 eightinferior 10 fiveinferior 10 fivesuperior 8 fourinferior 10 foursuperior -30 nineinferior -20 ninesuperior 8 oneinferior -1 onesuperior 10 parenright 16 public.kern2.A 17 public.kern2.C -18 public.kern2.J 18 public.kern2.T 16 public.kern2.a -10 public.kern2.a.alt01 -17 public.kern2.asterisk 16 public.kern2.c -17 public.kern2.comma 11 public.kern2.emdash -40 public.kern2.g -10 public.kern2.guillemotleft -42 public.kern2.guillemotright -20 public.kern2.quotedblleft 16 public.kern2.quotedblright 16 public.kern2.s -5 public.kern2.t -10 public.kern2.u -20 public.kern2.w -22 public.kern2.y -12 public.kern2.z 6 question 8 questiondown 30 seveninferior -20 sevensuperior 24 sixsuperior -2 threeinferior 10 threesuperior 10 trademark 16 twoinferior 10 twosuperior 10 underscore 20 v -12 zeroinferior 13 zerosuperior 12 Y AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Yacute AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ycircumflex AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ydieresis AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ydotbelow AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ygrave AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Yhook AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 Ytilde AE -80 AEacute -80 idieresis 10 imacron 6 itilde 10 jcircumflex -15 ampersand V -38 public.kern2.C 12 public.kern2.J 10 public.kern2.T -52 public.kern2.U -2 public.kern2.W -14 public.kern2.Y -54 public.kern2.Z -2 public.kern2.a.alt01 6 public.kern2.t -5 public.kern2.uni0402 -52 public.kern2.uni0404 12 public.kern2.uni0409 18 public.kern2.uni040E -50 public.kern2.uni0416 6 public.kern2.uni0417 -14 public.kern2.uni0427 -48 public.kern2.uni042A -52 public.kern2.uni0430 -6 public.kern2.uni0430.alt01 -4 public.kern2.uni0435 -4 public.kern2.uni0436 3 public.kern2.uni0437 -4 public.kern2.uni043B 14 public.kern2.uni0442 -14 public.kern2.uni0443 -10 public.kern2.uni0447 -30 public.kern2.w -10 public.kern2.y -10 uni0408 10 uni0414 15 uni0424 -6 uni042F 6 uni0431 -4 uni0434 11 uni0444 -4 uni044F 3 uni0492 9 uni0493 9 uni04AE -54 uni04AF -18 uni04B0 -54 uni04B1 -18 v -10 aogonek dotlessj -1 j -1 jacute -1 jcircumflex -1 parenright 20 aogonek.alt01 dotlessj -1 j -1 jacute -1 jcircumflex -1 asterisk uni0457 4 at V -40 X -30 public.kern2.A -20 public.kern2.J -22 public.kern2.S -11 public.kern2.T -38 public.kern2.W -30 public.kern2.Y -60 public.kern2.Z -30 public.kern2.uni0402 -38 public.kern2.uni0409 -16 public.kern2.uni040E -42 public.kern2.uni0410 -20 public.kern2.uni0416 -47 public.kern2.uni0417 -12 public.kern2.uni0425 -30 public.kern2.uni0427 -26 public.kern2.uni042A -38 public.kern2.uni0436 -9 public.kern2.uni0437 -3 public.kern2.uni043B -10 public.kern2.uni0442 4 public.kern2.uni0443 -10 public.kern2.uni0445 -10 public.kern2.y -2 uni0405 -11 uni0408 -22 uni0414 -27 uni0424 7 uni042F -19 uni0431 3 uni0434 -24 uni044F -2 uni0492 14 uni0493 2 uni04AE -60 uni04AF -4 uni04B0 -56 uni04B1 -4 uni04D4 -20 x -10 braceleft public.kern2.dotlessj 78 uni0458 78 bracketleft public.kern2.dotlessj 78 public.kern2.uni0409 -6 public.kern2.uni0442 -6 public.kern2.uni0447 -18 uni0414 12 uni0424 -12 uni042F -6 uni0431 -6 uni0434 6 uni0457 6 uni0458 78 bracketright public.kern2.dotlessj 13 uni0458 41 comma dotlessj 10 j 10 jacute 10 jcircumflex 10 uni0443 -46 uni0458 35 uni045E -46 uni04EF -46 uni04F1 -46 uni04F3 -46 y -2 yacute -2 ycircumflex -2 ydieresis -2 ydotbelow -2 ygrave -2 yhook -2 ytilde -2 eightinferior V -62 X 10 eightinferior -10 fiveinferior -2 oneinferior -15 public.kern2.A 4 public.kern2.J 10 public.kern2.T -62 public.kern2.U -6 public.kern2.W -42 public.kern2.Y -80 public.kern2.Z -2 public.kern2.a 10 public.kern2.a.alt01 10 public.kern2.c 13 public.kern2.f -10 public.kern2.g -5 public.kern2.t -10 public.kern2.uni0402 -62 public.kern2.uni0404 4 public.kern2.uni0409 16 public.kern2.uni040E -42 public.kern2.uni0410 12 public.kern2.uni0425 10 public.kern2.uni0427 -39 public.kern2.uni042A -62 public.kern2.uni0430 10 public.kern2.uni0430.alt01 9 public.kern2.uni0435 13 public.kern2.uni0436 -4 public.kern2.uni043B 22 public.kern2.uni0442 -33 public.kern2.uni0443 -27 public.kern2.uni0445 -6 public.kern2.uni0447 -22 public.kern2.w -29 public.kern2.y -27 public.kern2.z 8 threeinferior -4 uni0408 10 uni0414 9 uni0431 9 uni0434 12 uni0444 7 uni044F 2 uni0492 18 uni0493 13 uni04AE -80 uni04AF -34 uni04B0 -74 uni04B1 -34 uni04D4 12 v -30 x -6 eightsuperior V 10 b 20 eightsuperior -10 fivesuperior -2 fraction 12 jcircumflex 6 onesuperior -15 p 20 public.kern2.A -64 public.kern2.J -52 public.kern2.T 20 public.kern2.W 10 public.kern2.Z -10 public.kern2.a 10 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 8 public.kern2.g -5 public.kern2.h 11 public.kern2.i 4 public.kern2.t 20 public.kern2.u 20 public.kern2.uni0402 20 public.kern2.uni0409 -74 public.kern2.uni040E -6 public.kern2.uni0410 -64 public.kern2.uni0416 -17 public.kern2.uni0427 10 public.kern2.uni042A 20 public.kern2.uni0430 10 public.kern2.uni0436 2 public.kern2.uni043B -49 public.kern2.uni0442 10 public.kern2.uni0443 28 public.kern2.uni0445 12 public.kern2.uni0447 9 public.kern2.uni04BB 11 public.kern2.w 24 public.kern2.y 28 public.kern2.z 20 thorn 20 threesuperior -4 uni0408 -52 uni0414 -42 uni0424 6 uni042F -13 uni0431 4 uni0434 -32 uni0440 20 uni044F 1 uni0457 4 uni0492 10 uni04AF 30 uni04B1 30 uni04D4 -64 v 30 x 12 eth public.kern2.A -16 public.kern2.T -50 public.kern2.Y -30 public.kern2.asterisk -20 public.kern2.comma -3 public.kern2.emdash 20 public.kern2.guillemotleft 20 public.kern2.quotedblleft -46 public.kern2.quotedblright -46 question -4 underscore -54 exclamdown V -20 public.kern2.A 28 public.kern2.W -16 public.kern2.Y -32 public.kern2.a -1 public.kern2.dotlessj 30 public.kern2.uni0410 28 public.kern2.uni0430 -3 public.kern2.w -2 uni0458 30 uni04AE -32 f V 82 X 77 ampersand 16 at 30 bracketleft 12 eightinferior -25 eightsuperior 62 exclam 32 fiveinferior -22 fivesuperior 72 fourinferior -17 foursuperior 48 ibreve 3 icircumflex 16 idieresis 16 igrave 15 imacron 11 itilde 5 jcircumflex 16 lslash -4 nineinferior -27 ninesuperior 64 oneinferior -22 onesuperior 54 p -2 parenright 95 public.kern2.A -10 public.kern2.B 54 public.kern2.C 23 public.kern2.J -2 public.kern2.S 40 public.kern2.T 85 public.kern2.U 60 public.kern2.W 82 public.kern2.Y 88 public.kern2.Z 50 public.kern2.a -2 public.kern2.a.alt01 -4 public.kern2.asterisk 88 public.kern2.braceright 75 public.kern2.c -10 public.kern2.comma -4 public.kern2.emdash -29 public.kern2.g -4 public.kern2.guillemotleft -13 public.kern2.guillemotright -10 public.kern2.i 3 public.kern2.quotedblleft 52 public.kern2.quotedblright 70 public.kern2.w -4 public.kern2.y 2 question 62 registered 52 seveninferior -22 sevensuperior 90 sixinferior -32 sixsuperior 52 slash -10 threeinferior -12 threesuperior 64 trademark 98 twoinferior -12 twosuperior 62 underscore -20 v 2 zeroinferior -13 zerosuperior 71 fiveinferior V -60 eightinferior -5 fiveinferior -6 fourinferior 8 nineinferior -9 oneinferior -12 public.kern2.C -2 public.kern2.J 10 public.kern2.T -52 public.kern2.W -32 public.kern2.Y -80 public.kern2.Z -3 public.kern2.a.alt01 14 public.kern2.c 4 public.kern2.comma -2 public.kern2.f -10 public.kern2.g -10 public.kern2.t -10 public.kern2.u -2 public.kern2.uni0402 -52 public.kern2.uni0404 -2 public.kern2.uni0409 16 public.kern2.uni040E -44 public.kern2.uni0427 -41 public.kern2.uni042A -52 public.kern2.uni0430.alt01 4 public.kern2.uni0435 4 public.kern2.uni043B 22 public.kern2.uni0442 -23 public.kern2.uni0443 -17 public.kern2.uni0447 -24 public.kern2.w -14 public.kern2.y -17 seveninferior -10 threeinferior -1 uni0408 10 uni0424 -2 uni0431 4 uni0444 4 uni044F 6 uni0492 15 uni0493 4 uni04AE -80 uni04AF -30 uni04B0 -74 uni04B1 -30 v -22 fivesuperior V 10 X 6 b 20 eightsuperior -5 fivesuperior -6 foursuperior 8 fraction 10 germandbls.alt01 9 ninesuperior -9 onesuperior -12 p 18 public.kern2.A -54 public.kern2.C -5 public.kern2.J -47 public.kern2.S -2 public.kern2.T 5 public.kern2.W 15 public.kern2.Z -2 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 10 public.kern2.g -2 public.kern2.h 11 public.kern2.i 4 public.kern2.t 20 public.kern2.u 20 public.kern2.uni0402 5 public.kern2.uni0404 -5 public.kern2.uni0409 -82 public.kern2.uni040E -6 public.kern2.uni0410 -54 public.kern2.uni0416 -15 public.kern2.uni0425 6 public.kern2.uni0427 4 public.kern2.uni042A 5 public.kern2.uni0436 7 public.kern2.uni043B -47 public.kern2.uni0442 14 public.kern2.uni0443 28 public.kern2.uni0445 12 public.kern2.uni0447 6 public.kern2.uni0456 4 public.kern2.uni04BB 11 public.kern2.w 20 public.kern2.y 28 public.kern2.z 20 sevensuperior -10 thorn 20 threesuperior -1 uni0405 -6 uni0408 -47 uni0414 -50 uni0424 4 uni042F -13 uni0431 4 uni0434 -30 uni0440 18 uni044F -2 uni0492 15 uni04AF 28 uni04B1 22 uni04D4 -54 v 28 x 12 fourinferior V -50 eightinferior -8 fiveinferior -8 nineinferior -24 oneinferior -21 public.kern2.A 10 public.kern2.J 12 public.kern2.T -55 public.kern2.W -40 public.kern2.Y -70 public.kern2.a 10 public.kern2.a.alt01 2 public.kern2.dotlessi -10 public.kern2.f -10 public.kern2.g -14 public.kern2.s 5 public.kern2.t -10 public.kern2.uni0402 -55 public.kern2.uni0404 8 public.kern2.uni0409 34 public.kern2.uni040E -41 public.kern2.uni0410 10 public.kern2.uni0416 6 public.kern2.uni0425 4 public.kern2.uni0427 -44 public.kern2.uni042A -55 public.kern2.uni0430 10 public.kern2.uni0430.alt01 8 public.kern2.uni0435 8 public.kern2.uni0436 6 public.kern2.uni0437 4 public.kern2.uni043B 26 public.kern2.uni0442 -14 public.kern2.uni0443 -17 public.kern2.uni0445 10 public.kern2.uni0447 -36 public.kern2.w -27 public.kern2.y -17 public.kern2.z 2 seveninferior -16 sixinferior -8 threeinferior -16 uni0405 4 uni0408 12 uni0414 12 uni042F 10 uni0431 8 uni0434 10 uni0444 8 uni044F 12 uni0455 5 uni0492 6 uni0493 10 uni04AE -70 uni04AF -27 uni04B0 -64 uni04B1 -27 uni04D4 10 v -30 x 2 zeroinferior -8 foursuperior V 5 X -5 b 4 eightsuperior -8 fivesuperior -8 fraction 8 germandbls.alt01 2 jcircumflex 4 ninesuperior -24 onesuperior -21 p 2 public.kern2.A -46 public.kern2.J -55 public.kern2.S -8 public.kern2.T 10 public.kern2.W 20 public.kern2.Z -10 public.kern2.a 2 public.kern2.comma -60 public.kern2.dotlessi 2 public.kern2.f 2 public.kern2.h 2 public.kern2.i 4 public.kern2.t 20 public.kern2.u 4 public.kern2.uni0402 10 public.kern2.uni0409 -79 public.kern2.uni040E -4 public.kern2.uni0410 -46 public.kern2.uni0416 -12 public.kern2.uni0425 -5 public.kern2.uni0427 6 public.kern2.uni042A 10 public.kern2.uni0430 6 public.kern2.uni0432 6 public.kern2.uni0436 11 public.kern2.uni043B -43 public.kern2.uni0442 21 public.kern2.uni0443 12 public.kern2.uni0445 12 public.kern2.uni0447 9 public.kern2.uni0456 4 public.kern2.uni04BB 7 public.kern2.w 30 public.kern2.y 12 public.kern2.z 20 sevensuperior -16 sixsuperior -8 thorn 4 threesuperior -16 uni0405 -8 uni0408 -55 uni0414 -48 uni0424 8 uni042F -6 uni0431 6 uni0434 -26 uni0440 6 uni044F -4 uni0492 15 uni0493 6 uni04AF 24 uni04B1 16 uni04D4 -46 v 25 x 12 zerosuperior -8 fraction eightinferior 3 fiveinferior 4 fourinferior -30 nineinferior 4 oneinferior 4 seveninferior 45 sixinferior -30 threeinferior 8 twoinferior 8 germandbls V -36 eightinferior 18 eightsuperior -26 fiveinferior 16 fivesuperior -26 fourinferior 28 foursuperior -16 nineinferior 10 ninesuperior -24 oneinferior 6 onesuperior -26 ordfeminine -10 ordmasculine -10 public.kern2.A 6 public.kern2.C -4 public.kern2.J 10 public.kern2.T -36 public.kern2.W -32 public.kern2.Y -44 public.kern2.Z -12 public.kern2.a 6 public.kern2.asterisk -34 public.kern2.emdash -20 public.kern2.guillemotleft 10 public.kern2.guillemotright -2 public.kern2.quotedblleft -40 public.kern2.quotedblright -40 public.kern2.t -10 public.kern2.w -17 public.kern2.y -16 public.kern2.z -10 question -26 questiondown 10 registered -32 sevensuperior -26 sixinferior 20 sixsuperior -24 slash -5 threeinferior 8 threesuperior -26 trademark -32 twoinferior 16 twosuperior -28 underscore -50 v -17 x -10 zeroinferior 20 zerosuperior -16 germandbls.alt01 V -22 X 36 at -4 copyright -4 eightinferior 23 eightsuperior 18 fiveinferior 26 fivesuperior 16 fourinferior 30 foursuperior 18 nineinferior -2 ninesuperior 10 oneinferior 23 onesuperior -4 ordfeminine 4 ordmasculine 8 parenright 18 public.kern2.A 53 public.kern2.B 24 public.kern2.C 14 public.kern2.J 44 public.kern2.S 16 public.kern2.T -10 public.kern2.W -12 public.kern2.Y -26 public.kern2.Z 8 public.kern2.a 10 public.kern2.a.alt01 -3 public.kern2.asterisk -2 public.kern2.c -2 public.kern2.comma 28 public.kern2.dotlessj 22 public.kern2.emdash -20 public.kern2.f 17 public.kern2.g 10 public.kern2.guillemotright -2 public.kern2.quotedblright 16 public.kern2.s 10 public.kern2.t -6 public.kern2.w -2 public.kern2.y 16 public.kern2.z 6 question -2 questiondown 20 seveninferior -1 sevensuperior -2 sixinferior 11 sixsuperior 18 slash 46 threeinferior 33 trademark -8 twoinferior 32 underscore 24 v -1 x 14 zeroinferior 28 zerosuperior 18 guillemotright AE -4 AEacute -4 guilsinglright AE -4 AEacute -4 ibreve V 10 W 10 Wacute 10 Wcircumflex 10 Wdieresis 10 Wgrave 10 Y 10 Yacute 10 Ycircumflex 10 Ydieresis 10 Ydotbelow 10 Ygrave 10 Yhook 10 Ytilde 10 icircumflex T 16 Tbar 16 Tcaron 16 Tcedilla 16 Tcommaaccent 16 V 16 eightsuperior 4 ninesuperior 6 sevensuperior 6 threesuperior 4 trademark 6 twosuperior 4 zerosuperior 4 idieresis T 16 Tbar 16 Tcaron 16 Tcedilla 16 Tcommaaccent 16 V 20 W 20 Wacute 20 Wcircumflex 20 Wdieresis 20 Wgrave 20 Y 25 Yacute 25 Ycircumflex 25 Ydieresis 25 Ydotbelow 25 Ygrave 25 Yhook 25 Ytilde 25 eightsuperior 4 ninesuperior 6 sevensuperior 8 threesuperior 6 trademark 6 twosuperior 6 ij Y -20 Yacute -20 Ycircumflex -20 Ydieresis -20 Ydotbelow -20 Ygrave -20 Yhook -20 Ytilde -20 ijacute Y -12 Yacute -12 Ycircumflex -12 Ydieresis -12 Ydotbelow -12 Ygrave -12 Yhook -12 Ytilde -12 parenright -2 imacron T 16 Tbar 16 Tcaron 16 Tcedilla 16 Tcommaaccent 16 V 20 W 15 Wacute 15 Wcircumflex 15 Wdieresis 15 Wgrave 15 Y 20 Yacute 20 Ycircumflex 20 Ydieresis 20 Ydotbelow 20 Ygrave 20 Yhook 20 Ytilde 20 iogonek dotlessj -1 j -1 jacute -1 jcircumflex -1 itilde T 16 Tbar 16 Tcaron 16 Tcedilla 16 Tcommaaccent 16 V 12 W 20 Wacute 20 Wcircumflex 20 Wdieresis 20 Wgrave 20 Y 20 Yacute 20 Ycircumflex 20 Ydieresis 20 Ydotbelow 20 Ygrave 20 Yhook 20 Ytilde 20 ninesuperior 2 sevensuperior 6 threesuperior 4 trademark 5 twosuperior 4 jacute Y -5 Yacute -5 Ycircumflex -5 Ydieresis -5 Ydotbelow -5 Ygrave -5 Yhook -5 Ytilde -5 jcircumflex T 8 Tbar 8 Tcaron 8 Tcedilla 8 Tcommaaccent 8 V 15 W 20 Wacute 20 Wcircumflex 20 Wdieresis 20 Wgrave 20 Y 15 Yacute 15 Ycircumflex 15 Ydieresis 15 Ydotbelow 15 Ygrave 15 Yhook 15 Ytilde 15 asterisk 6 eightsuperior 6 fivesuperior 4 ninesuperior 8 onesuperior 4 quotedbl 6 quotesingle 6 sevensuperior 8 sixsuperior 4 threesuperior 6 trademark 6 twosuperior 6 zerosuperior 6 lslash eightsuperior 30 fivesuperior 30 foursuperior 48 ninesuperior 10 onesuperior 28 quotedblright 4 quoteright 4 sevensuperior 10 sixsuperior 30 threesuperior 40 twosuperior 30 zerosuperior 36 nineinferior V -62 X -10 eightinferior -4 fiveinferior -1 fourinferior -5 oneinferior -5 public.kern2.A -5 public.kern2.J 15 public.kern2.T -62 public.kern2.U -5 public.kern2.W -37 public.kern2.Y -80 public.kern2.Z -4 public.kern2.a 10 public.kern2.a.alt01 15 public.kern2.c 18 public.kern2.comma -20 public.kern2.f -10 public.kern2.g -5 public.kern2.s -5 public.kern2.t -17 public.kern2.uni0402 -62 public.kern2.uni0404 8 public.kern2.uni0409 23 public.kern2.uni040E -49 public.kern2.uni0410 -5 public.kern2.uni0416 -14 public.kern2.uni0417 -4 public.kern2.uni0425 -10 public.kern2.uni0427 -36 public.kern2.uni042A -62 public.kern2.uni0430 10 public.kern2.uni0430.alt01 14 public.kern2.uni0435 18 public.kern2.uni0436 -13 public.kern2.uni043B 4 public.kern2.uni0442 -27 public.kern2.uni0443 -21 public.kern2.uni0445 -28 public.kern2.uni0447 -20 public.kern2.w -22 public.kern2.y -21 public.kern2.z -4 seveninferior -4 sixinferior -6 threeinferior -1 uni0408 15 uni0414 -10 uni042F -13 uni0431 14 uni0434 -13 uni0444 12 uni044F -4 uni0455 -5 uni0492 13 uni0493 16 uni04AE -80 uni04AF -24 uni04B0 -64 uni04B1 -24 uni04D4 -5 v -20 x -28 ninesuperior V 10 X 8 b 20 eightsuperior -4 fivesuperior -1 foursuperior -5 fraction -22 germandbls.alt01 8 jcircumflex 4 onesuperior -5 p 20 public.kern2.A -72 public.kern2.J -47 public.kern2.T 22 public.kern2.W 20 public.kern2.Z -8 public.kern2.a -5 public.kern2.a.alt01 -10 public.kern2.c -4 public.kern2.comma -60 public.kern2.dotlessi 20 public.kern2.f 2 public.kern2.g -20 public.kern2.h 11 public.kern2.i 5 public.kern2.s -15 public.kern2.t 22 public.kern2.u 15 public.kern2.uni0402 22 public.kern2.uni0409 -83 public.kern2.uni040E -4 public.kern2.uni0410 -72 public.kern2.uni0416 -6 public.kern2.uni0425 8 public.kern2.uni0427 6 public.kern2.uni042A 22 public.kern2.uni0430 -5 public.kern2.uni0430.alt01 -16 public.kern2.uni0435 -16 public.kern2.uni043B -45 public.kern2.uni0442 8 public.kern2.uni0443 34 public.kern2.uni0445 24 public.kern2.uni0447 9 public.kern2.uni04BB 11 public.kern2.w 36 public.kern2.y 34 public.kern2.z 10 sevensuperior -4 sixsuperior -6 thorn 20 threesuperior -1 uni0408 -47 uni0414 -56 uni042F -13 uni0431 -6 uni0434 -28 uni0440 20 uni0444 -16 uni044F -23 uni0455 -15 uni0457 5 uni0492 6 uni04AF 30 uni04B1 30 uni04D4 -72 v 30 x 4 oneinferior V -80 X 11 eightinferior -12 fiveinferior -12 fourinferior -10 nineinferior -25 oneinferior -20 public.kern2.A 33 public.kern2.C -10 public.kern2.J 2 public.kern2.T -62 public.kern2.U -20 public.kern2.W -60 public.kern2.Y -100 public.kern2.Z 13 public.kern2.c -2 public.kern2.f -20 public.kern2.g -10 public.kern2.t -20 public.kern2.u -10 public.kern2.uni0402 -62 public.kern2.uni0404 -10 public.kern2.uni0409 6 public.kern2.uni040E -51 public.kern2.uni0410 33 public.kern2.uni0417 -10 public.kern2.uni0425 11 public.kern2.uni0427 -83 public.kern2.uni042A -62 public.kern2.uni0430.alt01 -6 public.kern2.uni0435 -6 public.kern2.uni0437 -6 public.kern2.uni043B 9 public.kern2.uni0442 -36 public.kern2.uni0443 -30 public.kern2.uni0445 6 public.kern2.uni0447 -64 public.kern2.w -34 public.kern2.y -30 public.kern2.z 18 seveninferior -27 sixinferior -16 threeinferior -10 uni0408 6 uni0414 6 uni0424 -18 uni0431 -6 uni0434 4 uni0444 -6 uni04AE -100 uni04AF -46 uni04B0 -94 uni04B1 -46 uni04D4 33 v -40 x 2 zeroinferior -15 onesuperior V -2 eightsuperior -12 fivesuperior -12 foursuperior -10 fraction 45 ninesuperior -25 onesuperior -20 public.kern2.A -46 public.kern2.J -70 public.kern2.S -10 public.kern2.T -10 public.kern2.W 3 public.kern2.Y -28 public.kern2.Z -20 public.kern2.a.alt01 26 public.kern2.c 1 public.kern2.comma -50 public.kern2.dotlessi 10 public.kern2.f 3 public.kern2.t 10 public.kern2.uni0402 -10 public.kern2.uni0409 -90 public.kern2.uni040E -21 public.kern2.uni0410 -46 public.kern2.uni0416 -34 public.kern2.uni0417 -6 public.kern2.uni0425 -4 public.kern2.uni0427 -10 public.kern2.uni042A -10 public.kern2.uni0430.alt01 3 public.kern2.uni0435 3 public.kern2.uni0436 -6 public.kern2.uni0437 4 public.kern2.uni043B -49 public.kern2.uni0442 14 public.kern2.uni0447 6 public.kern2.w 8 sevensuperior -27 sixsuperior -16 threesuperior -10 uni0405 -10 uni0408 -70 uni0414 -64 uni0424 6 uni042F -23 uni0431 3 uni0434 -34 uni044F 8 uni0492 20 uni04AE -28 uni04AF 8 uni04B0 -28 uni04D4 -46 v 8 zerosuperior -15 parenleft V 20 X 8 b 20 hcircumflex 36 ibreve 4 idieresis 4 public.kern2.T 20 public.kern2.W 20 public.kern2.Y 18 public.kern2.dotlessj 86 public.kern2.g 20 public.kern2.h 10 public.kern2.uni0402 20 public.kern2.uni0409 -13 public.kern2.uni040E 6 public.kern2.uni0425 8 public.kern2.uni0427 6 public.kern2.uni042A 20 public.kern2.uni0442 -6 public.kern2.uni0443 10 public.kern2.uni0447 -22 public.kern2.uni04BB 10 public.kern2.w -10 public.kern2.y 10 uni0414 21 uni0424 -12 uni042F -6 uni0431 -5 uni0434 25 uni0457 4 uni0458 86 uni04AE 18 uni04AF -6 uni04B0 18 v -10 percent public.kern2.asterisk -60 public.kern2.quotedblleft -60 public.kern2.quotedblright -60 perthousand public.kern2.asterisk -60 public.kern2.quotedblleft -60 public.kern2.quotedblright -60 public.kern1.A V -52 X 17 ampersand -10 at -20 b -2 eightinferior 4 eightsuperior -64 exclamdown 28 fiveinferior 10 fivesuperior -54 fourinferior 10 foursuperior -46 nineinferior -5 ninesuperior -72 oneinferior 14 onesuperior -46 p -10 public.kern2.A 15 public.kern2.C -26 public.kern2.J 14 public.kern2.T -56 public.kern2.U -26 public.kern2.W -36 public.kern2.Y -55 public.kern2.a.alt01 -7 public.kern2.asterisk -90 public.kern2.c -7 public.kern2.comma 17 public.kern2.emdash -25 public.kern2.guillemotleft -2 public.kern2.guillemotright -10 public.kern2.h -8 public.kern2.quotedblleft -100 public.kern2.quotedblright -100 public.kern2.t -14 public.kern2.u -20 public.kern2.w -20 public.kern2.y -17 public.kern2.z 14 question -20 questiondown 40 registered -60 seveninferior -12 sevensuperior -84 sixinferior 7 sixsuperior -54 slash 20 threeinferior 20 threesuperior -46 trademark -85 twoinferior 20 twosuperior -36 underscore 12 v -26 zeroinferior 20 zerosuperior -54 public.kern1.AE V -10 at -10 eightsuperior -5 fivesuperior -10 fourinferior 10 foursuperior -5 nineinferior -13 ninesuperior -5 oneinferior -5 onesuperior -5 public.kern2.W -2 public.kern2.Y -19 public.kern2.Z -2 public.kern2.a.alt01 -10 public.kern2.c -10 public.kern2.emdash -20 public.kern2.g -10 public.kern2.w -5 seveninferior -2 sevensuperior -2 sixsuperior -10 slash 10 trademark 10 twosuperior -1 v -5 zerosuperior -5 public.kern1.C ampersand -8 at -11 eightinferior -1 fiveinferior 2 fourinferior 3 ninesuperior 10 oneinferior -4 onesuperior 6 p -5 public.kern2.A -15 public.kern2.C -13 public.kern2.W 5 public.kern2.Y -5 public.kern2.Z -8 public.kern2.a -10 public.kern2.a.alt01 -10 public.kern2.asterisk 10 public.kern2.c -10 public.kern2.comma -37 public.kern2.dotlessi -15 public.kern2.emdash -20 public.kern2.g -20 public.kern2.quotedblleft 3 public.kern2.quotedblright 10 registered 9 seveninferior -4 sevensuperior 1 sixinferior 5 sixsuperior 1 slash -10 threeinferior 2 threesuperior 2 trademark 2 twoinferior 1 twosuperior 8 underscore -24 zerosuperior 11 public.kern1.D V -23 X -18 ampersand -5 eightsuperior 8 fiveinferior 6 fivesuperior 14 fourinferior -4 foursuperior 16 nineinferior 5 oneinferior -2 onesuperior 10 public.kern2.A -26 public.kern2.C 8 public.kern2.J -16 public.kern2.T -11 public.kern2.W -17 public.kern2.Y -32 public.kern2.Z -17 public.kern2.asterisk -12 public.kern2.comma -45 public.kern2.emdash 20 public.kern2.guillemotleft 22 public.kern2.quotedblleft -3 public.kern2.quotedblright -16 question -16 registered 8 seveninferior 14 sevensuperior -8 sixinferior -2 sixsuperior 8 slash -10 threeinferior 7 threesuperior 11 trademark -14 twoinferior -2 twosuperior 11 underscore -80 zeroinferior 8 zerosuperior 8 public.kern1.Eng public.kern2.A -11 public.kern2.J -11 public.kern2.a -6 public.kern2.a.alt01 -7 public.kern2.c -7 public.kern2.comma -40 public.kern2.g -15 public.kern2.guillemotright -20 public.kern2.s -2 public.kern2.u -1 public.kern2.w -2 public.kern2.z -18 slash -30 underscore -30 v -2 public.kern1.G V -19 X -5 ampersand 6 at 10 eightsuperior -9 fivesuperior -9 fourinferior -2 foursuperior -4 ninesuperior -14 oneinferior -2 onesuperior -12 public.kern2.A -10 public.kern2.C 18 public.kern2.J -2 public.kern2.T -26 public.kern2.W -16 public.kern2.Y -17 public.kern2.Z -12 public.kern2.a 10 public.kern2.a.alt01 10 public.kern2.asterisk -24 public.kern2.comma -34 public.kern2.emdash 28 public.kern2.guillemotleft 30 public.kern2.quotedblleft -32 public.kern2.quotedblright -30 public.kern2.w -2 public.kern2.y -1 question -22 registered -10 sevensuperior -16 sixinferior -2 sixsuperior -10 slash -10 threesuperior -6 trademark -30 twoinferior -2 twosuperior -2 underscore -42 v -1 zerosuperior -12 public.kern1.IJ X -15 eightinferior -17 fiveinferior -14 fourinferior -21 nineinferior -22 oneinferior -24 parenright 10 public.kern2.A -26 public.kern2.J -35 public.kern2.a -5 public.kern2.a.alt01 -5 public.kern2.c -10 public.kern2.comma -50 public.kern2.g -10 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.s -5 public.kern2.u -5 questiondown -40 seveninferior -14 sixinferior -19 slash -20 threeinferior -24 trademark 4 twoinferior -24 underscore -60 zeroinferior -4 public.kern1.K V -8 ampersand -25 at -40 eightinferior 4 eightsuperior -12 fiveinferior 4 fivesuperior -12 fourinferior 2 foursuperior -42 nineinferior -18 ninesuperior -12 onesuperior -15 p -10 parenright 10 public.kern2.C -27 public.kern2.J 2 public.kern2.T -4 public.kern2.W -4 public.kern2.Y -3 public.kern2.a -13 public.kern2.a.alt01 -26 public.kern2.asterisk -7 public.kern2.c -27 public.kern2.comma 22 public.kern2.dotlessi -10 public.kern2.emdash -63 public.kern2.f -8 public.kern2.g -8 public.kern2.guillemotleft -40 public.kern2.guillemotright -20 public.kern2.quotedblleft -12 public.kern2.quotedblright -11 public.kern2.t -20 public.kern2.u -25 public.kern2.w -24 public.kern2.y -24 public.kern2.z 10 registered -32 seveninferior -25 sevensuperior -2 sixinferior 4 sixsuperior -30 slash 11 threeinferior 6 threesuperior -10 trademark -2 twoinferior 4 twosuperior -12 v -24 x 4 zeroinferior -1 zerosuperior -12 public.kern1.L V -72 ampersand -6 at -18 eightsuperior -68 fiveinferior 10 fivesuperior -60 fourinferior 18 foursuperior -70 nineinferior 2 ninesuperior -82 onesuperior -70 public.kern2.A 8 public.kern2.C -17 public.kern2.J 10 public.kern2.T -70 public.kern2.U -37 public.kern2.W -46 public.kern2.Y -74 public.kern2.a 2 public.kern2.asterisk -70 public.kern2.emdash -36 public.kern2.f 2 public.kern2.quotedblleft -80 public.kern2.quotedblright -78 public.kern2.t -10 public.kern2.u -9 public.kern2.w -31 public.kern2.y -30 public.kern2.z 16 question -45 registered -102 seveninferior -2 sevensuperior -60 sixinferior 2 sixsuperior -68 threeinferior 2 threesuperior -58 trademark -84 twosuperior -68 underscore -2 v -40 x 10 zeroinferior 3 zerosuperior -70 public.kern1.O V -23 X -18 ampersand -2 fiveinferior -2 fivesuperior -2 fourinferior -13 foursuperior 16 ninesuperior -12 oneinferior -3 onesuperior -10 public.kern2.A -26 public.kern2.C 8 public.kern2.J -16 public.kern2.T -11 public.kern2.W -17 public.kern2.Y -32 public.kern2.Z -16 public.kern2.asterisk -10 public.kern2.comma -35 public.kern2.emdash 20 public.kern2.guillemotleft 22 public.kern2.quotedblleft -14 public.kern2.quotedblright -15 public.kern2.w 10 public.kern2.y 10 question -14 seveninferior 18 sevensuperior -22 sixinferior -2 slash -10 threeinferior -2 threesuperior -5 trademark -17 twoinferior -3 underscore -60 v 10 public.kern1.Ohorn X -11 ampersand -2 fiveinferior -2 fivesuperior -3 fourinferior -13 ninesuperior -4 oneinferior -3 public.kern2.A -22 public.kern2.C 8 public.kern2.J -16 public.kern2.Y -1 public.kern2.Z -11 public.kern2.asterisk -1 public.kern2.comma -35 public.kern2.emdash 20 public.kern2.quotedblleft -2 public.kern2.quotedblright -2 registered -1 seveninferior 18 sevensuperior -4 sixinferior -2 slash -10 threeinferior -2 trademark -2 twoinferior -3 underscore -60 public.kern1.R V -27 ampersand -14 at -22 eightinferior 4 eightsuperior -19 fiveinferior 10 fivesuperior -20 fourinferior 25 foursuperior -14 nineinferior -30 ninesuperior -17 oneinferior 10 onesuperior -26 public.kern2.A 10 public.kern2.C -13 public.kern2.J 26 public.kern2.T -24 public.kern2.U -13 public.kern2.W -23 public.kern2.Y -36 public.kern2.a.alt01 -17 public.kern2.asterisk -30 public.kern2.c -17 public.kern2.comma 21 public.kern2.emdash -25 public.kern2.g -14 public.kern2.guillemotleft -20 public.kern2.guillemotright -10 public.kern2.quotedblleft -33 public.kern2.quotedblright -33 public.kern2.t -10 public.kern2.u -6 public.kern2.w -9 public.kern2.y -4 question -24 registered -4 seveninferior -20 sevensuperior -27 sixinferior -6 sixsuperior -17 slash 10 threeinferior 25 threesuperior -24 trademark -32 twoinferior 20 twosuperior -24 underscore -2 v -5 zeroinferior 20 zerosuperior -17 public.kern1.S V -5 ampersand -10 eightsuperior -2 fiveinferior -2 fivesuperior -2 foursuperior -2 ninesuperior -1 oneinferior -4 onesuperior -2 p -5 parenright -10 public.kern2.A -12 public.kern2.J -1 public.kern2.S -6 public.kern2.T -13 public.kern2.W -9 public.kern2.Y -11 public.kern2.Z -2 public.kern2.comma -4 public.kern2.dotlessi -2 public.kern2.emdash 10 public.kern2.g -5 public.kern2.guillemotleft 20 public.kern2.w -1 public.kern2.z -10 registered -3 sevensuperior -2 sixinferior 1 sixsuperior -2 slash -10 threeinferior -1 threesuperior -2 twoinferior -2 twosuperior -3 underscore -44 x -4 zeroinferior 10 public.kern1.T V 19 X 16 ampersand -28 at -38 b 4 eightinferior -62 eightsuperior 20 fiveinferior -62 fivesuperior 18 fourinferior -70 foursuperior 12 nineinferior -62 ninesuperior 22 oneinferior -62 onesuperior 25 p -21 parenright 20 public.kern2.A -56 public.kern2.C -11 public.kern2.J -42 public.kern2.S -8 public.kern2.T 22 public.kern2.W 19 public.kern2.Y 14 public.kern2.a -40 public.kern2.a.alt01 -45 public.kern2.asterisk 30 public.kern2.c -45 public.kern2.colon -10 public.kern2.comma -80 public.kern2.dotlessi -14 public.kern2.emdash -50 public.kern2.f -10 public.kern2.g -50 public.kern2.guillemotleft -42 public.kern2.guillemotright -30 public.kern2.h 2 public.kern2.quotedblleft 22 public.kern2.quotedblright 20 public.kern2.s -30 public.kern2.u -18 public.kern2.y 6 public.kern2.z -24 question 22 questiondown -60 registered 30 seveninferior -52 sevensuperior 30 sixinferior -62 sixsuperior 20 slash -70 threeinferior -62 threesuperior 20 trademark 25 twoinferior -62 twosuperior 20 underscore -60 v 6 x -16 zeroinferior -62 zerosuperior 30 public.kern1.U eightinferior -6 fiveinferior -1 fourinferior -7 germandbls.alt01 -2 nineinferior -4 oneinferior -12 public.kern2.A -26 public.kern2.J -26 public.kern2.a -16 public.kern2.a.alt01 -20 public.kern2.asterisk 8 public.kern2.c -20 public.kern2.comma -50 public.kern2.emdash -8 public.kern2.g -20 public.kern2.guillemotright -10 public.kern2.s -11 public.kern2.t -1 public.kern2.w -1 public.kern2.z -8 seveninferior -8 slash -30 threeinferior -12 trademark 2 twoinferior -12 underscore -50 x -8 zeroinferior -12 public.kern1.Uhorn V 16 ampersand -18 at -4 eightinferior -10 eightsuperior 3 fiveinferior -5 fivesuperior 10 fourinferior -12 nineinferior -8 ninesuperior 11 oneinferior -16 onesuperior 10 parenright 44 public.kern2.A -20 public.kern2.J -21 public.kern2.T 19 public.kern2.W 16 public.kern2.Y 14 public.kern2.asterisk 10 public.kern2.braceright 6 public.kern2.comma -54 public.kern2.emdash -12 public.kern2.g -15 public.kern2.quotedblleft 15 public.kern2.quotedblright 19 seveninferior -12 sevensuperior 22 sixinferior -4 slash -34 threeinferior -16 threesuperior 12 trademark 34 twoinferior -16 twosuperior 10 underscore -56 zeroinferior -16 zerosuperior 10 public.kern1.W V 10 ampersand -26 at -30 b 2 eightinferior -42 eightsuperior 10 exclamdown -16 fiveinferior -44 fivesuperior 18 fourinferior -59 foursuperior 15 germandbls.alt01 -28 nineinferior -45 ninesuperior 20 oneinferior -62 onesuperior 28 p -16 parenright 20 public.kern2.A -36 public.kern2.C -17 public.kern2.J -32 public.kern2.S -5 public.kern2.T 19 public.kern2.W 10 public.kern2.Y 9 public.kern2.a -57 public.kern2.a.alt01 -40 public.kern2.asterisk 20 public.kern2.c -45 public.kern2.colon -10 public.kern2.comma -52 public.kern2.dotlessi -30 public.kern2.dotlessj -15 public.kern2.emdash -25 public.kern2.f -20 public.kern2.g -45 public.kern2.guillemotleft -20 public.kern2.guillemotright -22 public.kern2.i -15 public.kern2.quotedblleft 20 public.kern2.quotedblright 21 public.kern2.s -50 public.kern2.t -10 public.kern2.u -10 public.kern2.w -5 public.kern2.y -5 public.kern2.z -35 question 14 questiondown -60 registered 15 seveninferior -32 sevensuperior 30 sixinferior -50 sixsuperior 8 slash -30 threeinferior -57 threesuperior 20 trademark 28 twoinferior -57 twosuperior 20 underscore -50 v -5 x -18 zeroinferior -40 zerosuperior 24 public.kern1.Y V 9 ampersand -46 at -60 eightinferior -80 exclamdown -32 fiveinferior -80 fourinferior -100 foursuperior -10 germandbls.alt01 -30 nineinferior -80 ninesuperior 2 oneinferior -80 onesuperior 16 p -40 parenright 18 public.kern2.A -55 public.kern2.C -32 public.kern2.J -44 public.kern2.S -22 public.kern2.T 14 public.kern2.W 9 public.kern2.a -72 public.kern2.a.alt01 -67 public.kern2.asterisk 16 public.kern2.c -74 public.kern2.colon -32 public.kern2.comma -60 public.kern2.dotlessi -50 public.kern2.dotlessj -20 public.kern2.emdash -50 public.kern2.f -39 public.kern2.g -77 public.kern2.guillemotleft -52 public.kern2.guillemotright -42 public.kern2.i -20 public.kern2.quotedblleft 18 public.kern2.quotedblright 18 public.kern2.s -73 public.kern2.t -22 public.kern2.u -40 public.kern2.w -23 public.kern2.y -21 public.kern2.z -40 question 9 questiondown -70 registered 5 seveninferior -60 sevensuperior 18 sixinferior -80 slash -60 threeinferior -80 threesuperior 10 trademark 26 twoinferior -90 twosuperior 10 underscore -60 v -25 x -29 zeroinferior -80 zerosuperior 8 public.kern1.Z ampersand -8 at -28 eightsuperior -18 fivesuperior -7 fourinferior 10 foursuperior -12 ninesuperior -10 onesuperior 6 public.kern2.C -16 public.kern2.Z -10 public.kern2.a 2 public.kern2.a.alt01 -1 public.kern2.asterisk -2 public.kern2.c -5 public.kern2.emdash -30 public.kern2.guillemotleft -8 public.kern2.guillemotright -12 public.kern2.t -10 public.kern2.u -5 public.kern2.w -22 public.kern2.y -5 public.kern2.z -9 registered -4 seveninferior -10 sixsuperior -12 threesuperior -10 trademark 8 twosuperior -11 underscore 15 v -2 zeroinferior 10 zerosuperior -2 public.kern1.a V -60 b -8 eightinferior 8 eightsuperior -5 fivesuperior -4 foursuperior -2 nineinferior -5 ninesuperior -35 oneinferior -2 onesuperior -22 public.kern2.A 8 public.kern2.T -50 public.kern2.U -5 public.kern2.W -44 public.kern2.Y -64 public.kern2.asterisk -53 public.kern2.comma 2 public.kern2.f -4 public.kern2.g -5 public.kern2.guillemotleft 2 public.kern2.guillemotright -4 public.kern2.quotedblleft -60 public.kern2.quotedblright -30 public.kern2.t -8 public.kern2.u -4 public.kern2.w -10 public.kern2.y -10 registered -10 seveninferior -10 sevensuperior -32 sixsuperior -10 slash 5 threeinferior 5 threesuperior -2 trademark -34 twoinferior 10 twosuperior -10 v -14 zeroinferior 10 zerosuperior -2 public.kern1.a.alt01 V -40 fivesuperior -4 ninesuperior -2 oneinferior -2 onesuperior -4 public.kern2.T -45 public.kern2.W -15 public.kern2.Y -40 public.kern2.asterisk -10 public.kern2.comma 10 public.kern2.guillemotleft 2 public.kern2.quotedblleft -30 public.kern2.quotedblright -20 registered -8 sevensuperior -12 twosuperior -2 public.kern1.ae V -44 X -17 at 10 eightinferior 10 eightsuperior 8 fiveinferior 3 fivesuperior 13 fourinferior 5 foursuperior 13 nineinferior 10 ninesuperior -15 oneinferior 5 public.kern2.B -1 public.kern2.C 10 public.kern2.S -10 public.kern2.T -30 public.kern2.W -43 public.kern2.Y -68 public.kern2.Z -20 public.kern2.a 10 public.kern2.a.alt01 9 public.kern2.asterisk -20 public.kern2.comma -20 public.kern2.emdash 10 public.kern2.guillemotleft 40 public.kern2.guillemotright 10 public.kern2.quotedblleft -31 public.kern2.quotedblright -5 public.kern2.w -3 public.kern2.y -6 public.kern2.z -5 registered 4 seveninferior 20 sevensuperior -12 sixinferior 5 sixsuperior 8 threeinferior 6 threesuperior 10 trademark -15 twoinferior 5 twosuperior 18 underscore -34 v -2 x -11 zeroinferior 20 zerosuperior 8 public.kern1.asterisk V 20 X 16 public.kern2.A -90 public.kern2.C -10 public.kern2.J -30 public.kern2.T 30 public.kern2.U 8 public.kern2.W 20 public.kern2.Y 16 public.kern2.a.alt01 -20 public.kern2.c -20 public.kern2.comma -90 public.kern2.uni0402 30 public.kern2.uni0404 -10 public.kern2.uni0409 -72 public.kern2.uni040E 8 public.kern2.uni0410 -90 public.kern2.uni0416 -16 public.kern2.uni0417 -6 public.kern2.uni0425 16 public.kern2.uni0427 9 public.kern2.uni042A 30 public.kern2.uni0430 -8 public.kern2.uni0430.alt01 -24 public.kern2.uni0435 -20 public.kern2.uni0437 -13 public.kern2.uni043B -65 public.kern2.uni0442 6 public.kern2.uni0443 20 public.kern2.uni0445 12 public.kern2.uni0447 -3 public.kern2.w 18 public.kern2.y 20 public.kern2.z 2 questiondown -140 uni0408 -30 uni0414 -40 uni0424 -16 uni042F -32 uni0431 -15 uni0434 -47 uni0444 -24 uni044F -22 uni04AE 16 uni04AF 20 uni04B0 16 uni04B1 20 uni04D4 -90 v 20 x 12 public.kern1.b V -56 X -17 eightinferior 10 fiveinferior 8 fivesuperior -2 fourinferior -2 foursuperior 3 nineinferior 10 ninesuperior -27 oneinferior 8 onesuperior -2 public.kern2.A -7 public.kern2.C 10 public.kern2.T -35 public.kern2.W -27 public.kern2.Y -59 public.kern2.Z -21 public.kern2.a 10 public.kern2.a.alt01 9 public.kern2.asterisk -28 public.kern2.c 9 public.kern2.comma -27 public.kern2.emdash 20 public.kern2.guillemotleft 35 public.kern2.guillemotright -4 public.kern2.quotedblleft -32 public.kern2.quotedblright -10 public.kern2.w -7 public.kern2.y -5 public.kern2.z -7 registered -5 seveninferior 28 sevensuperior -24 sixinferior 8 sixsuperior -2 threeinferior 8 trademark -15 twoinferior 8 underscore -60 v -5 x -17 zeroinferior 10 zerosuperior -20 public.kern1.c V -32 X -8 eightsuperior 15 fiveinferior 8 fivesuperior 15 fourinferior 10 foursuperior 25 oneinferior 10 public.kern2.A 8 public.kern2.J 10 public.kern2.S 4 public.kern2.T -24 public.kern2.W -29 public.kern2.Y -36 public.kern2.Z -15 public.kern2.a -3 public.kern2.a.alt01 -7 public.kern2.asterisk -8 public.kern2.c -9 public.kern2.comma -16 public.kern2.emdash -10 public.kern2.g -3 public.kern2.guillemotleft 5 public.kern2.quotedblleft -15 seveninferior 3 sevensuperior -2 sixinferior 5 sixsuperior 15 slash -10 threeinferior 10 threesuperior 15 twoinferior 8 twosuperior 15 underscore -10 x -5 zeroinferior 15 zerosuperior 15 public.kern1.colon V -20 public.kern2.T -10 public.kern2.W -10 public.kern2.Y -32 public.kern2.uni0402 -10 public.kern2.uni0409 6 public.kern2.uni040E -30 public.kern2.uni0427 -14 public.kern2.uni042A -10 public.kern2.uni043B 12 uni0414 6 uni04AE -32 uni04B0 -32 public.kern1.comma V -70 X 11 b -28 eightsuperior -50 fiveinferior -2 fivesuperior -60 fourinferior 10 foursuperior -50 nineinferior -24 ninesuperior -70 oneinferior -6 onesuperior -50 p -18 public.kern2.A 17 public.kern2.C -35 public.kern2.J 11 public.kern2.T -80 public.kern2.U -50 public.kern2.W -52 public.kern2.Y -60 public.kern2.a.alt01 -19 public.kern2.asterisk -90 public.kern2.c -27 public.kern2.g -15 public.kern2.h 2 public.kern2.quotedblleft -70 public.kern2.quotedblright -70 public.kern2.s 2 public.kern2.t -40 public.kern2.u -40 public.kern2.uni0402 -80 public.kern2.uni0404 -35 public.kern2.uni0409 12 public.kern2.uni040E -52 public.kern2.uni0410 17 public.kern2.uni0416 11 public.kern2.uni0417 -18 public.kern2.uni0425 11 public.kern2.uni0427 -73 public.kern2.uni042A -80 public.kern2.uni0430 -13 public.kern2.uni0430.alt01 -26 public.kern2.uni0435 -27 public.kern2.uni0436 17 public.kern2.uni0437 -4 public.kern2.uni043B 22 public.kern2.uni0442 -87 public.kern2.uni0443 -54 public.kern2.uni0445 12 public.kern2.uni0447 -48 public.kern2.uni04BB 6 public.kern2.w -62 public.kern2.y -54 question -51 seveninferior -34 sevensuperior -30 sixinferior -8 sixsuperior -50 thorn -10 threesuperior -50 twoinferior 8 twosuperior -50 uni0405 -4 uni0408 11 uni0414 16 uni0424 -70 uni042F 6 uni0431 -26 uni0434 15 uni0440 -18 uni0444 -26 uni044F 13 uni0455 6 uni04AE -60 uni04AF -68 uni04B0 -60 uni04B1 -58 uni04D4 17 v -62 x 12 zeroinferior -2 zerosuperior -60 public.kern1.d X 11 eightinferior 2 fiveinferior 2 fourinferior 2 public.kern2.A 10 public.kern2.comma 10 public.kern2.guillemotleft 2 public.kern2.quotedblleft -36 public.kern2.quotedblright -25 public.kern2.w -1 sixinferior 2 threeinferior 2 twoinferior 2 zeroinferior 2 public.kern1.dcaron V 23 ampersand -8 b 72 bracketleft 13 eightsuperior 55 exclam 22 fivesuperior 58 foursuperior 26 ninesuperior 60 onesuperior 56 ordfeminine 10 p 4 parenright 97 public.kern2.B 18 public.kern2.T 21 public.kern2.Y 62 public.kern2.Z 13 public.kern2.asterisk 58 public.kern2.braceright 81 public.kern2.comma 10 public.kern2.dotlessj 12 public.kern2.f 7 public.kern2.guillemotleft 2 public.kern2.h 63 public.kern2.i 8 public.kern2.quotedblleft 23 public.kern2.quotedblright 34 public.kern2.t 8 public.kern2.u 2 public.kern2.w 14 public.kern2.y 24 public.kern2.z 6 question 42 registered 40 sevensuperior 78 sixsuperior 38 thorn 40 threesuperior 58 trademark 59 twosuperior 58 underscore -20 v 24 zerosuperior 56 public.kern1.dotlessi V -35 ninesuperior -10 onesuperior 20 parenright 10 public.kern2.T -10 public.kern2.W -30 public.kern2.Y -30 public.kern2.Z -10 public.kern2.asterisk -20 public.kern2.comma -20 public.kern2.guillemotleft 2 public.kern2.guillemotright -2 public.kern2.quotedblleft -19 public.kern2.quotedblright -11 sevensuperior -10 slash -15 underscore -4 public.kern1.emdash V -25 X -40 public.kern2.A -25 public.kern2.C 20 public.kern2.J -40 public.kern2.S -20 public.kern2.T -50 public.kern2.U -8 public.kern2.W -25 public.kern2.Y -50 public.kern2.Z -50 public.kern2.a.alt01 20 public.kern2.c 20 public.kern2.f -5 public.kern2.g 9 public.kern2.uni0402 -50 public.kern2.uni0404 20 public.kern2.uni0409 -38 public.kern2.uni040E -56 public.kern2.uni0410 -25 public.kern2.uni0416 -67 public.kern2.uni0417 -20 public.kern2.uni0425 -40 public.kern2.uni0427 -12 public.kern2.uni042A -50 public.kern2.uni0430.alt01 20 public.kern2.uni0435 20 public.kern2.uni0436 -18 public.kern2.uni0437 6 public.kern2.uni043B -22 public.kern2.uni0442 -6 public.kern2.uni0443 -10 public.kern2.uni0445 -35 public.kern2.uni0447 -2 public.kern2.w -3 public.kern2.y -10 public.kern2.z -15 question -22 uni0405 -20 uni0408 -40 uni0414 -39 uni0424 20 uni042F -26 uni0431 23 uni0434 -31 uni0444 20 uni044F 12 uni0455 9 uni0492 18 uni0493 19 uni04AE -50 uni04AF -12 uni04B0 -50 uni04B1 -12 uni04D4 -25 v -10 x -35 public.kern1.fi V -18 oneinferior -2 public.kern2.J 10 public.kern2.Y -20 public.kern2.comma 10 public.kern2.quotedblleft -20 public.kern2.quotedblright -10 public.kern1.g V -10 X 10 ampersand -5 at -7 eightinferior -10 eightsuperior 12 fiveinferior -4 fivesuperior 20 fourinferior -10 foursuperior 30 nineinferior -24 ninesuperior 22 oneinferior -10 onesuperior 10 parenright 23 public.kern2.A 13 public.kern2.C 8 public.kern2.J -2 public.kern2.S 8 public.kern2.T 12 public.kern2.Y -10 public.kern2.a -4 public.kern2.a.alt01 -8 public.kern2.asterisk 15 public.kern2.braceright 13 public.kern2.c -8 public.kern2.comma 13 public.kern2.dotlessj 30 public.kern2.emdash -3 public.kern2.guillemotleft -3 public.kern2.guillemotright -17 public.kern2.quotedblleft 2 public.kern2.quotedblright 10 public.kern2.w 3 public.kern2.y 10 registered 20 seveninferior -14 sevensuperior 20 sixinferior -20 sixsuperior 21 slash 30 threesuperior 10 trademark 2 twoinferior 8 twosuperior 10 underscore 16 v 10 zeroinferior -15 zerosuperior 22 public.kern1.guillemotleft V -22 X -20 public.kern2.A -10 public.kern2.T -30 public.kern2.U -10 public.kern2.W -22 public.kern2.Y -42 public.kern2.Z -20 public.kern2.a.alt01 -2 public.kern2.c -2 public.kern2.dotlessi -2 public.kern2.f -4 public.kern2.g -12 public.kern2.t 5 public.kern2.uni0402 -30 public.kern2.uni040E -50 public.kern2.uni0410 -10 public.kern2.uni0416 -21 public.kern2.uni0417 -13 public.kern2.uni0425 -20 public.kern2.uni0427 -26 public.kern2.uni042A -30 public.kern2.uni0430.alt01 -10 public.kern2.uni0432 -6 public.kern2.uni0435 -10 public.kern2.uni0436 -3 public.kern2.uni0437 -3 public.kern2.uni043B 3 public.kern2.uni0442 4 public.kern2.uni0445 -10 public.kern2.uni0447 -8 public.kern2.w -2 public.kern2.z -1 uni0405 -4 uni0414 -16 uni0424 -8 uni042F -17 uni0431 -6 uni0434 -17 uni0444 -10 uni044F -6 uni04AE -42 uni04AF -6 uni04B0 -42 uni04B1 -6 uni04D4 -10 x -10 public.kern1.guillemotright V -41 X -42 b 12 public.kern2.A -2 public.kern2.C 22 public.kern2.J -10 public.kern2.T -42 public.kern2.W -20 public.kern2.Y -52 public.kern2.Z -32 public.kern2.a 5 public.kern2.a.alt01 35 public.kern2.c 40 public.kern2.dotlessi 4 public.kern2.g 2 public.kern2.h 4 public.kern2.s 3 public.kern2.u 2 public.kern2.uni0402 -42 public.kern2.uni0404 22 public.kern2.uni0409 -23 public.kern2.uni040E -60 public.kern2.uni0410 -14 public.kern2.uni0416 -33 public.kern2.uni0417 -14 public.kern2.uni0425 -42 public.kern2.uni0427 -24 public.kern2.uni042A -42 public.kern2.uni0430 19 public.kern2.uni0430.alt01 38 public.kern2.uni0432 6 public.kern2.uni0435 40 public.kern2.uni0436 -11 public.kern2.uni0437 -5 public.kern2.uni043B -17 public.kern2.uni0442 -6 public.kern2.uni0443 -6 public.kern2.uni0445 -20 public.kern2.uni0447 -2 public.kern2.uni04BB 6 public.kern2.w -2 public.kern2.y -2 public.kern2.z -2 uni0408 -10 uni0414 -36 uni0424 28 uni042F -21 uni0431 37 uni0434 -38 uni0444 38 uni044F 8 uni0455 11 uni0492 20 uni0493 12 uni04AE -52 uni04AF -6 uni04B0 -44 uni04B1 -6 uni04D4 -20 x -20 public.kern1.h V -50 fivesuperior -2 ninesuperior -22 oneinferior -2 onesuperior -20 public.kern2.T -51 public.kern2.W -25 public.kern2.Y -50 public.kern2.asterisk -40 public.kern2.comma 10 public.kern2.guillemotleft 2 public.kern2.quotedblleft -50 public.kern2.quotedblright -30 public.kern2.w -11 public.kern2.y -13 registered -25 sevensuperior -27 threeinferior 2 trademark -35 twoinferior 2 v -13 zeroinferior 2 public.kern1.k V -11 X 20 ampersand -18 at -10 eightinferior 4 fiveinferior 20 fivesuperior 18 fourinferior 10 foursuperior 20 nineinferior -10 onesuperior -12 public.kern2.A 20 public.kern2.C -2 public.kern2.J 24 public.kern2.W -2 public.kern2.Y -22 public.kern2.Z 13 public.kern2.a.alt01 -15 public.kern2.c -15 public.kern2.comma 22 public.kern2.emdash -37 public.kern2.g -7 public.kern2.guillemotleft -27 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.quotedblright 35 public.kern2.s -2 public.kern2.t -10 public.kern2.u -10 registered 18 seveninferior -20 sevensuperior -10 sixinferior 2 sixsuperior 2 slash 10 threeinferior 20 threesuperior -10 twoinferior 20 twosuperior -12 underscore 10 v -3 zeroinferior 4 zerosuperior 10 public.kern1.o V -58 X -15 eightinferior 13 fiveinferior 12 fourinferior 13 foursuperior 13 nineinferior 23 ninesuperior -14 oneinferior 21 onesuperior -2 public.kern2.A -7 public.kern2.C 10 public.kern2.T -45 public.kern2.W -45 public.kern2.Y -74 public.kern2.Z -20 public.kern2.a 10 public.kern2.a.alt01 10 public.kern2.asterisk -20 public.kern2.c 10 public.kern2.comma -27 public.kern2.emdash 20 public.kern2.f -5 public.kern2.guillemotleft 35 public.kern2.quotedblleft -32 public.kern2.quotedblright -29 public.kern2.w -10 public.kern2.y -7 public.kern2.z -9 registered -5 seveninferior 20 sevensuperior -14 sixinferior 18 threeinferior 13 trademark -15 twoinferior 8 twosuperior 10 underscore -50 v -11 x -17 zeroinferior 36 public.kern1.ohorn eightinferior 13 eightsuperior 14 fiveinferior 12 fivesuperior 13 fourinferior 13 foursuperior 14 nineinferior 23 ninesuperior 20 oneinferior 21 onesuperior 12 parenright 10 public.kern2.a.alt01 10 public.kern2.asterisk 22 public.kern2.braceright 10 public.kern2.c 10 public.kern2.comma -20 public.kern2.emdash 10 public.kern2.guillemotleft 15 public.kern2.quotedblleft 6 public.kern2.quotedblright 6 public.kern2.t 2 public.kern2.w 1 public.kern2.y 4 public.kern2.z 2 question 22 registered 24 seveninferior 20 sevensuperior 16 sixinferior 18 sixsuperior 19 threeinferior 13 threesuperior 14 trademark 14 twoinferior 8 twosuperior 14 underscore -60 v 4 x 4 zeroinferior 36 zerosuperior 20 public.kern1.quotedblleft V 20 X 16 germandbls.alt01 -27 public.kern2.A -100 public.kern2.C -14 public.kern2.J -60 public.kern2.S -5 public.kern2.T 20 public.kern2.W 20 public.kern2.Y 18 public.kern2.a -30 public.kern2.a.alt01 -30 public.kern2.c -40 public.kern2.comma -70 public.kern2.g -30 public.kern2.s -15 public.kern2.t 14 public.kern2.uni0402 20 public.kern2.uni0404 -14 public.kern2.uni0409 -105 public.kern2.uni040E -3 public.kern2.uni0410 -100 public.kern2.uni0416 -25 public.kern2.uni0417 -10 public.kern2.uni0425 16 public.kern2.uni0427 4 public.kern2.uni042A 20 public.kern2.uni0430 -30 public.kern2.uni0430.alt01 -39 public.kern2.uni0435 -40 public.kern2.uni0436 -12 public.kern2.uni0437 -18 public.kern2.uni043B -77 public.kern2.uni0443 40 public.kern2.uni0445 10 public.kern2.uni04BB -3 public.kern2.w 30 public.kern2.y 40 questiondown -110 uni0405 -5 uni0408 -60 uni0414 -70 uni0424 -28 uni042F -31 uni0431 -26 uni0434 -60 uni0444 -39 uni044F -34 uni0455 -15 uni04AE 18 uni04AF 35 uni04B0 18 uni04B1 33 uni04D4 -124 v 35 x 10 public.kern1.quotedblright V 24 X 16 exclamdown -24 germandbls.alt01 -29 p -15 public.kern2.A -100 public.kern2.C -25 public.kern2.J -70 public.kern2.S -2 public.kern2.T 20 public.kern2.W 25 public.kern2.Y 26 public.kern2.a -70 public.kern2.a.alt01 -70 public.kern2.c -80 public.kern2.colon -20 public.kern2.comma -70 public.kern2.dotlessi -30 public.kern2.emdash -40 public.kern2.f -30 public.kern2.g -75 public.kern2.s -65 public.kern2.t -20 public.kern2.u -10 public.kern2.uni0402 20 public.kern2.uni0404 -25 public.kern2.uni0409 -107 public.kern2.uni040E 6 public.kern2.uni0410 -100 public.kern2.uni0416 -21 public.kern2.uni0417 -24 public.kern2.uni0425 16 public.kern2.uni0427 6 public.kern2.uni042A 20 public.kern2.uni0430 -70 public.kern2.uni0430.alt01 -80 public.kern2.uni0432 -30 public.kern2.uni0435 -80 public.kern2.uni0436 -38 public.kern2.uni0437 -47 public.kern2.uni043B -102 public.kern2.uni0442 -28 public.kern2.uni0443 10 public.kern2.uni0445 -13 public.kern2.uni0447 -23 public.kern2.uni04BB -6 public.kern2.w 10 public.kern2.y 10 public.kern2.z -40 questiondown -120 uni0405 -23 uni0408 -70 uni0414 -76 uni0424 -58 uni042F -59 uni0431 -50 uni0434 -87 uni0440 -15 uni0444 -78 uni044F -104 uni0455 -65 uni0493 -30 uni04AE 26 uni04AF 10 uni04B0 24 uni04B1 6 uni04D4 -129 v 10 x -13 public.kern1.r V -2 X -14 ampersand -14 eightinferior -20 eightsuperior 38 fiveinferior -12 fivesuperior 44 fourinferior -42 foursuperior 48 nineinferior -22 ninesuperior 20 oneinferior -22 onesuperior 18 public.kern2.A -27 public.kern2.C 18 public.kern2.J -28 public.kern2.S 7 public.kern2.Y -13 public.kern2.asterisk 15 public.kern2.comma -100 public.kern2.emdash -12 public.kern2.f 14 public.kern2.g -1 public.kern2.guillemotright 10 public.kern2.quotedblleft 12 public.kern2.quotedblright 29 public.kern2.t 11 public.kern2.u 18 public.kern2.w 27 public.kern2.y 30 public.kern2.z 2 registered 30 sevensuperior 18 sixinferior -34 sixsuperior 42 slash -45 threeinferior -22 threesuperior 30 trademark 20 twoinferior -22 twosuperior 30 underscore -80 v 30 zeroinferior -22 zerosuperior 40 public.kern1.s V -30 X -23 ampersand -5 eightsuperior 7 fiveinferior -1 fivesuperior 7 fourinferior 5 ninesuperior -2 oneinferior -2 onesuperior -12 public.kern2.A -5 public.kern2.C 10 public.kern2.J 5 public.kern2.T -20 public.kern2.W -28 public.kern2.Y -42 public.kern2.Z -15 public.kern2.asterisk -10 public.kern2.comma -16 public.kern2.emdash -10 public.kern2.f -5 public.kern2.g -10 public.kern2.quotedblleft -10 public.kern2.s -6 public.kern2.t -7 public.kern2.w -5 public.kern2.y -4 public.kern2.z -18 seveninferior -1 sevensuperior -12 sixinferior 5 sixsuperior 8 slash -10 threesuperior -1 trademark -2 twoinferior -2 twosuperior -2 underscore -24 v -6 x -16 zeroinferior 6 public.kern1.t X 10 ampersand -5 at -5 eightinferior 4 eightsuperior 22 fivesuperior 20 fourinferior 20 foursuperior 20 nineinferior -18 ninesuperior 22 public.kern2.A 22 public.kern2.C 20 public.kern2.J 22 public.kern2.S 20 public.kern2.T 15 public.kern2.Y -20 public.kern2.asterisk 20 public.kern2.braceright 20 public.kern2.comma 13 public.kern2.dotlessj 2 public.kern2.emdash -24 public.kern2.g -10 public.kern2.guillemotleft -15 public.kern2.guillemotright -10 public.kern2.i 2 public.kern2.quotedblleft 4 public.kern2.quotedblright 20 public.kern2.t -8 public.kern2.w -2 public.kern2.y 1 question 7 registered 23 sevensuperior 20 sixinferior -6 sixsuperior 24 slash 10 threeinferior 18 threesuperior 10 trademark 5 twoinferior 19 twosuperior 10 underscore 8 v 1 zeroinferior 12 zerosuperior 32 public.kern1.uhorn eightsuperior 40 exclam 20 fivesuperior 40 foursuperior 40 ninesuperior 42 oneinferior -2 onesuperior 40 parenright 10 public.kern2.asterisk 45 public.kern2.braceright 10 public.kern2.quotedblleft 30 public.kern2.quotedblright 30 public.kern2.t 12 public.kern2.w 15 public.kern2.y 15 public.kern2.z 5 question 30 registered 40 sevensuperior 42 sixsuperior 40 threesuperior 40 trademark 30 twosuperior 30 v 15 x 7 zerosuperior 43 public.kern1.uni0400 ampersand -4 at -10 eightsuperior -5 fivesuperior -10 fourinferior 10 foursuperior -5 nineinferior -13 ninesuperior -5 oneinferior -5 onesuperior -5 public.kern2.emdash -20 public.kern2.uni0409 3 public.kern2.uni040E -13 public.kern2.uni0427 -5 public.kern2.uni0430.alt01 -5 public.kern2.uni0435 -10 public.kern2.uni0437 -3 public.kern2.uni0442 -7 public.kern2.uni0447 -15 seveninferior -6 sevensuperior -6 sixsuperior -10 slash 10 threesuperior 8 trademark 10 twosuperior 6 uni0424 -8 uni0431 -3 uni0444 -5 uni044F 2 uni04AE -19 uni04AF -3 uni04B0 -19 uni04B1 -3 zerosuperior -5 public.kern1.uni0403 ampersand -42 at -38 eightinferior -101 eightsuperior 16 fiveinferior -88 fivesuperior 18 fourinferior -91 foursuperior 12 nineinferior -97 ninesuperior 26 oneinferior -84 onesuperior 25 parenright 20 public.kern2.asterisk 30 public.kern2.colon -10 public.kern2.comma -100 public.kern2.emdash -54 public.kern2.guillemotleft -56 public.kern2.guillemotright -30 public.kern2.quotedblleft 22 public.kern2.quotedblright 20 public.kern2.uni0402 22 public.kern2.uni0404 -11 public.kern2.uni0409 -65 public.kern2.uni040E 11 public.kern2.uni0410 -69 public.kern2.uni0416 -6 public.kern2.uni0417 -3 public.kern2.uni0425 4 public.kern2.uni0427 6 public.kern2.uni042A 22 public.kern2.uni0430 -44 public.kern2.uni0430.alt01 -49 public.kern2.uni0432 -16 public.kern2.uni0435 -49 public.kern2.uni0436 -23 public.kern2.uni0437 -26 public.kern2.uni043B -71 public.kern2.uni0442 -16 public.kern2.uni0443 2 public.kern2.uni0445 -4 public.kern2.uni0447 -8 public.kern2.uni0452 6 public.kern2.uni0456 -6 public.kern2.uni04BB 6 question 26 registered 30 seveninferior -83 sevensuperior 22 sixinferior -104 sixsuperior 20 slash -86 threeinferior -88 threesuperior 20 trademark 25 twoinferior -88 twosuperior 20 underscore -95 uni0405 -7 uni0408 -57 uni0414 -45 uni0424 -16 uni042F -24 uni0431 -14 uni0434 -62 uni0440 -13 uni0444 -49 uni044F -47 uni0455 -38 uni0458 -6 uni0493 -16 uni04AE 10 uni04AF 2 uni04B0 10 uni04B1 2 uni04D4 -112 zeroinferior -101 zerosuperior 26 public.kern1.uni0406 foursuperior -6 public.kern1.uni0409 ampersand 6 at 6 copyright 6 eightinferior 13 eightsuperior -13 fiveinferior 10 fivesuperior -4 fourinferior 13 foursuperior -8 nineinferior 16 ninesuperior -23 oneinferior 10 onesuperior -4 public.kern2.asterisk -56 public.kern2.comma -11 public.kern2.emdash 17 public.kern2.guillemotleft 31 public.kern2.guillemotright 6 public.kern2.quotedblleft -70 public.kern2.quotedblright -57 public.kern2.uni0402 -62 public.kern2.uni0404 2 public.kern2.uni0409 6 public.kern2.uni040E -42 public.kern2.uni0410 -2 public.kern2.uni0416 -6 public.kern2.uni0417 -6 public.kern2.uni0425 -7 public.kern2.uni0427 -49 public.kern2.uni042A -62 public.kern2.uni0430 9 public.kern2.uni0430.alt01 13 public.kern2.uni0435 13 public.kern2.uni0436 -3 public.kern2.uni043B 5 public.kern2.uni0442 -5 public.kern2.uni0443 -8 public.kern2.uni0445 -8 public.kern2.uni0447 -10 registered -14 seveninferior 13 sevensuperior -30 sixinferior 13 sixsuperior -16 slash -4 threeinferior 15 threesuperior -6 trademark -51 twoinferior 11 twosuperior -2 underscore -49 uni0414 -3 uni0424 2 uni042F -2 uni0431 16 uni0434 -10 uni0444 13 uni044F 6 uni0492 16 uni0493 14 uni04AE -62 uni04AF -9 uni04B0 -42 uni04B1 -9 uni04D4 -5 zeroinferior 16 zerosuperior -16 public.kern1.uni040B ampersand -6 at -12 copyright -10 eightsuperior -62 fivesuperior -62 foursuperior -60 ninesuperior -80 onesuperior -60 public.kern2.asterisk -90 public.kern2.emdash -17 public.kern2.guillemotleft -6 public.kern2.guillemotright -9 public.kern2.quotedblleft -97 public.kern2.quotedblright -81 public.kern2.uni0402 -89 public.kern2.uni0404 -21 public.kern2.uni0409 4 public.kern2.uni040E -68 public.kern2.uni0417 -16 public.kern2.uni0427 -95 public.kern2.uni042A -89 public.kern2.uni0430 -5 public.kern2.uni0430.alt01 -11 public.kern2.uni0435 -14 public.kern2.uni0437 -8 public.kern2.uni043B 7 public.kern2.uni0442 -43 public.kern2.uni0443 -52 public.kern2.uni0447 -67 question -8 registered -68 seveninferior -15 sevensuperior -83 sixsuperior -62 slash 8 threesuperior -56 trademark -92 twoinferior 4 twosuperior -56 uni0405 -3 uni0414 6 uni0424 -25 uni0431 -10 uni0434 6 uni0440 -16 uni0444 -10 uni044F 4 uni0455 -3 uni0458 -4 uni04AE -92 uni04AF -52 uni04B0 -86 uni04B1 -52 zerosuperior -62 public.kern1.uni040C ampersand -21 at -34 copyright -28 eightinferior 6 eightsuperior -17 fiveinferior 4 fivesuperior -14 fourinferior 6 foursuperior -32 nineinferior -6 ninesuperior -13 onesuperior -14 public.kern2.asterisk -16 public.kern2.comma 11 public.kern2.emdash -67 public.kern2.guillemotleft -33 public.kern2.guillemotright -21 public.kern2.quotedblleft -21 public.kern2.quotedblright -16 public.kern2.uni0402 -15 public.kern2.uni0404 -30 public.kern2.uni0409 10 public.kern2.uni040E -12 public.kern2.uni0410 10 public.kern2.uni0416 4 public.kern2.uni0417 -14 public.kern2.uni0427 -18 public.kern2.uni042A -15 public.kern2.uni0430 -13 public.kern2.uni0430.alt01 -26 public.kern2.uni0432 -2 public.kern2.uni0435 -26 public.kern2.uni0436 14 public.kern2.uni0437 -13 public.kern2.uni043B 22 public.kern2.uni0442 -46 public.kern2.uni0443 -33 public.kern2.uni0445 14 public.kern2.uni0447 -59 public.kern2.uni0456 -2 registered -21 seveninferior -24 sevensuperior -3 sixinferior 6 sixsuperior -33 slash 10 threeinferior 13 threesuperior -8 twoinferior 12 twosuperior -12 uni0405 -4 uni0408 3 uni0414 16 uni0424 -44 uni042F 3 uni0431 -24 uni0434 18 uni0440 -14 uni0444 -25 uni044F 14 uni0455 -4 uni0458 -5 uni0493 -2 uni04AE -12 uni04AF -36 uni04B0 -12 uni04B1 -36 uni04D4 13 zeroinferior 4 zerosuperior -18 public.kern1.uni040E ampersand -63 at -56 copyright -42 eightinferior -103 eightsuperior 7 fiveinferior -96 fivesuperior 6 fourinferior -110 foursuperior -11 nineinferior -96 ninesuperior 12 oneinferior -94 onesuperior 10 parenright 12 public.kern2.asterisk 14 public.kern2.colon -39 public.kern2.comma -122 public.kern2.emdash -69 public.kern2.guillemotleft -76 public.kern2.guillemotright -63 public.kern2.quotedblleft 6 public.kern2.quotedblright 20 public.kern2.uni0402 12 public.kern2.uni0404 -34 public.kern2.uni0409 -84 public.kern2.uni040E 12 public.kern2.uni0410 -111 public.kern2.uni0416 -9 public.kern2.uni0417 -11 public.kern2.uni0425 3 public.kern2.uni0427 8 public.kern2.uni042A 12 public.kern2.uni0430 -77 public.kern2.uni0430.alt01 -85 public.kern2.uni0432 -52 public.kern2.uni0435 -82 public.kern2.uni0436 -58 public.kern2.uni0437 -60 public.kern2.uni043B -98 public.kern2.uni0442 -41 public.kern2.uni0443 -45 public.kern2.uni0445 -42 public.kern2.uni0447 -46 public.kern2.uni0452 6 public.kern2.uni0456 -27 question 14 registered 12 seveninferior -84 sevensuperior 24 sixinferior -108 sixsuperior -14 slash -82 threeinferior -90 threesuperior 14 trademark 36 twoinferior -90 twosuperior 16 underscore -167 uni0405 -20 uni0408 -73 uni0414 -59 uni0424 -55 uni042F -46 uni0431 -33 uni0434 -95 uni0440 -49 uni0444 -78 uni044F -75 uni0455 -70 uni0458 -24 uni0493 -52 uni04AE 14 uni04AF -45 uni04B0 11 uni04B1 -45 uni04D4 -136 zeroinferior -108 zerosuperior 12 public.kern1.uni0410 ampersand -10 at -20 eightinferior 12 eightsuperior -64 exclamdown 28 fiveinferior 10 fivesuperior -54 fourinferior 10 foursuperior -46 nineinferior -5 ninesuperior -72 oneinferior 14 onesuperior -46 public.kern2.asterisk -90 public.kern2.comma 17 public.kern2.emdash -25 public.kern2.guillemotleft -14 public.kern2.guillemotright -10 public.kern2.quotedblleft -100 public.kern2.quotedblright -100 public.kern2.uni0402 -56 public.kern2.uni0404 -26 public.kern2.uni0409 18 public.kern2.uni040E -48 public.kern2.uni0410 15 public.kern2.uni0416 10 public.kern2.uni0417 -13 public.kern2.uni0425 17 public.kern2.uni0427 -81 public.kern2.uni042A -56 public.kern2.uni0430 -6 public.kern2.uni0430.alt01 -12 public.kern2.uni0435 -7 public.kern2.uni0436 11 public.kern2.uni0437 -3 public.kern2.uni043B 16 public.kern2.uni0442 -54 public.kern2.uni0443 -17 public.kern2.uni0447 -76 public.kern2.uni0452 -4 public.kern2.uni04BB -8 question -20 questiondown 40 registered -60 seveninferior -12 sevensuperior -84 sixinferior 7 sixsuperior -54 slash 20 threeinferior 20 threesuperior -46 trademark -85 twoinferior 20 twosuperior -36 uni0408 14 uni0414 18 uni0424 -38 uni042F 9 uni0431 -11 uni0434 14 uni0440 -10 uni0444 -6 uni044F 2 uni04AE -55 uni04AF -41 uni04B0 -55 uni04B1 -35 uni04D4 15 zeroinferior 20 zerosuperior -54 public.kern1.uni0412 ampersand -10 eightsuperior -11 fiveinferior -6 fivesuperior -12 foursuperior -10 ninesuperior -15 oneinferior -6 onesuperior -12 public.kern2.asterisk -20 public.kern2.comma -31 public.kern2.guillemotleft 20 public.kern2.guillemotright -10 public.kern2.quotedblleft -20 public.kern2.quotedblright -19 public.kern2.uni0402 -20 public.kern2.uni0409 -3 public.kern2.uni040E -24 public.kern2.uni0410 -19 public.kern2.uni0416 -14 public.kern2.uni0417 -5 public.kern2.uni0425 -20 public.kern2.uni0427 -27 public.kern2.uni042A -20 public.kern2.uni0436 -12 public.kern2.uni0437 -2 public.kern2.uni043B -4 public.kern2.uni0442 -10 public.kern2.uni0443 -5 public.kern2.uni0445 -10 public.kern2.uni0447 -14 question -18 registered -13 sevensuperior -20 sixsuperior -10 slash -17 threeinferior -6 threesuperior -12 trademark -20 twoinferior -12 twosuperior -13 underscore -60 uni0408 -8 uni0414 -21 uni0424 -4 uni042F -14 uni0431 3 uni0434 -22 uni044F -12 uni0492 7 uni0493 5 uni04AE -30 uni04AF -7 uni04B0 -30 uni04B1 -7 uni04D4 -19 zeroinferior 6 zerosuperior -15 public.kern1.uni0414 ampersand -6 at -12 copyright -9 eightinferior -4 eightsuperior -12 fiveinferior 3 fivesuperior -9 fourinferior 9 foursuperior -16 nineinferior -12 ninesuperior -10 onesuperior -6 parenright 9 public.kern2.asterisk -9 public.kern2.braceright 6 public.kern2.colon 3 public.kern2.comma 10 public.kern2.emdash -18 public.kern2.guillemotleft -18 public.kern2.guillemotright -12 public.kern2.quotedblleft -21 public.kern2.quotedblright -9 public.kern2.uni0402 -6 public.kern2.uni0404 -15 public.kern2.uni0409 11 public.kern2.uni040E -8 public.kern2.uni0410 6 public.kern2.uni0416 6 public.kern2.uni0417 -2 public.kern2.uni0425 3 public.kern2.uni0427 -6 public.kern2.uni042A -6 public.kern2.uni0430 -2 public.kern2.uni0430.alt01 -16 public.kern2.uni0435 -16 public.kern2.uni0436 10 public.kern2.uni0437 -6 public.kern2.uni043B 23 public.kern2.uni0442 -23 public.kern2.uni0445 8 public.kern2.uni0447 -45 registered -18 seveninferior -20 sixinferior -4 sixsuperior -15 slash 19 threeinferior 12 threesuperior -3 twoinferior 6 twosuperior -6 underscore 17 uni0408 6 uni0414 8 uni0424 -21 uni0431 -9 uni0434 8 uni0440 -6 uni0444 -12 uni044F 12 uni0458 72 uni04AE -9 uni04AF -21 uni04B0 -9 uni04B1 -19 uni04D4 5 zeroinferior -4 zerosuperior -15 public.kern1.uni041E ampersand -10 eightinferior 4 fiveinferior -2 fivesuperior -6 fourinferior -13 foursuperior 16 nineinferior 4 ninesuperior -12 oneinferior -9 onesuperior -10 public.kern2.asterisk -10 public.kern2.comma -35 public.kern2.emdash 20 public.kern2.guillemotleft 22 public.kern2.quotedblleft -14 public.kern2.quotedblright -15 public.kern2.uni0402 -11 public.kern2.uni0404 8 public.kern2.uni0409 -10 public.kern2.uni040E -27 public.kern2.uni0410 -26 public.kern2.uni0416 -30 public.kern2.uni0417 -6 public.kern2.uni0425 -18 public.kern2.uni0427 -12 public.kern2.uni042A -11 public.kern2.uni0436 -3 public.kern2.uni043B -11 public.kern2.uni0442 3 public.kern2.uni0443 10 public.kern2.uni0447 -6 question -14 seveninferior 18 sevensuperior -22 sixinferior -2 slash -10 threeinferior -6 threesuperior -5 trademark -17 twoinferior -9 underscore -60 uni0408 -16 uni0414 -39 uni0424 11 uni042F -13 uni0431 5 uni0434 -30 uni044F -1 uni0492 14 uni0493 3 uni04AE -32 uni04AF 4 uni04B0 -31 uni04B1 4 uni04D4 -23 public.kern1.uni0421 ampersand -8 at -11 eightinferior -3 fiveinferior 2 fourinferior 3 nineinferior -8 ninesuperior 10 oneinferior -16 onesuperior 6 public.kern2.asterisk 10 public.kern2.comma -37 public.kern2.emdash -20 public.kern2.quotedblleft 4 public.kern2.quotedblright 10 public.kern2.uni0404 -13 public.kern2.uni0409 -2 public.kern2.uni040E -5 public.kern2.uni0410 -15 public.kern2.uni0416 -4 public.kern2.uni0417 -3 public.kern2.uni0427 -3 public.kern2.uni0430 -10 public.kern2.uni0430.alt01 -10 public.kern2.uni0435 -10 public.kern2.uni0436 -5 public.kern2.uni0437 -3 public.kern2.uni043B -2 public.kern2.uni0442 -3 public.kern2.uni0447 -5 registered 9 seveninferior -12 sevensuperior 3 sixinferior 5 sixsuperior 3 slash -10 threeinferior 2 threesuperior 6 trademark 6 twoinferior 1 twosuperior 8 underscore -24 uni0414 -7 uni0424 -5 uni042F -9 uni0431 -2 uni0434 -12 uni0440 -5 uni0444 -10 uni044F -12 uni04AE -5 uni04B0 -5 uni04D4 -15 zeroinferior -4 zerosuperior 11 public.kern1.uni0430 eightsuperior -5 fivesuperior -12 foursuperior -6 nineinferior -5 ninesuperior -35 oneinferior -6 onesuperior -22 public.kern2.asterisk -53 public.kern2.comma 6 public.kern2.guillemotleft 6 public.kern2.guillemotright -12 public.kern2.quotedblleft -60 public.kern2.quotedblright -30 public.kern2.uni0402 -50 public.kern2.uni0409 16 public.kern2.uni040E -56 public.kern2.uni0410 8 public.kern2.uni0416 5 public.kern2.uni0417 -8 public.kern2.uni0427 -70 public.kern2.uni042A -50 public.kern2.uni043B 9 public.kern2.uni0442 -15 public.kern2.uni0443 -10 public.kern2.uni0447 -37 registered -10 seveninferior -10 sevensuperior -32 sixinferior -4 sixsuperior -10 slash 5 threeinferior 5 threesuperior -10 trademark -34 twoinferior 10 twosuperior -10 uni0414 13 uni0424 -9 uni0434 6 uni044F 2 uni04AE -64 uni04AF -16 uni04B0 -64 uni04B1 -16 uni04D4 8 zeroinferior 10 zerosuperior -10 public.kern1.uni0430.alt01 ninesuperior -13 public.kern2.asterisk -6 public.kern2.quotedblleft -15 public.kern2.quotedblright -10 public.kern2.uni0402 -13 public.kern2.uni040E -21 public.kern2.uni0427 -17 public.kern2.uni042A -13 public.kern2.uni043B 3 public.kern2.uni0442 -4 public.kern2.uni0443 -3 public.kern2.uni0447 -12 registered -6 sevensuperior -13 slash 2 uni0434 2 uni0440 -3 uni044F 2 uni04AE -25 uni04AF -18 uni04B0 -25 uni04B1 -3 public.kern1.uni0431 eightinferior 13 fiveinferior 12 fourinferior 13 foursuperior 13 nineinferior 23 ninesuperior -14 oneinferior 21 onesuperior -6 public.kern2.asterisk -20 public.kern2.comma -27 public.kern2.emdash 20 public.kern2.guillemotleft 35 public.kern2.guillemotright -4 public.kern2.quotedblleft -32 public.kern2.quotedblright -29 public.kern2.uni0402 -45 public.kern2.uni0404 10 public.kern2.uni040E -55 public.kern2.uni0410 -7 public.kern2.uni0416 -26 public.kern2.uni0417 -4 public.kern2.uni0425 -15 public.kern2.uni0427 -31 public.kern2.uni042A -45 public.kern2.uni0430 10 public.kern2.uni0430.alt01 8 public.kern2.uni0435 10 public.kern2.uni0436 -10 public.kern2.uni0437 -2 public.kern2.uni0442 -1 public.kern2.uni0443 -7 public.kern2.uni0445 -17 public.kern2.uni0447 -10 registered -5 seveninferior 20 sevensuperior -14 sixinferior 18 slash 4 threeinferior 13 trademark -15 twoinferior 8 twosuperior 10 underscore -50 uni0408 -6 uni0414 -13 uni0424 4 uni042F -18 uni0431 6 uni0434 -19 uni0444 10 uni0492 6 uni0493 9 uni04AE -74 uni04AF -13 uni04B0 -71 uni04B1 -13 uni04D4 -7 zeroinferior 36 public.kern1.uni0432 eightsuperior -6 fiveinferior -2 fivesuperior -6 fourinferior 4 ninesuperior -14 oneinferior -5 onesuperior -6 parenright -6 public.kern2.asterisk -21 public.kern2.braceright -6 public.kern2.colon -4 public.kern2.comma -9 public.kern2.guillemotleft 10 public.kern2.guillemotright -5 public.kern2.quotedblleft -24 public.kern2.quotedblright -22 public.kern2.uni0400 -6 public.kern2.uni0402 -40 public.kern2.uni0404 -3 public.kern2.uni0409 6 public.kern2.uni040E -50 public.kern2.uni0410 -10 public.kern2.uni0416 -7 public.kern2.uni0417 -10 public.kern2.uni0425 -12 public.kern2.uni0427 -41 public.kern2.uni042A -40 public.kern2.uni0430 4 public.kern2.uni0430.alt01 2 public.kern2.uni0435 5 public.kern2.uni0436 -3 public.kern2.uni043B 9 public.kern2.uni0442 -1 public.kern2.uni0443 -12 public.kern2.uni0445 -6 public.kern2.uni0447 -8 public.kern2.uni0452 -2 public.kern2.uni04BB -2 question -4 registered -13 seveninferior -3 sevensuperior -33 sixsuperior -6 slash -16 threeinferior 2 trademark -28 twoinferior 1 underscore -41 uni0414 -9 uni042F -9 uni0431 3 uni0434 -9 uni0444 2 uni044F -5 uni0492 6 uni0493 9 uni04AE -60 uni04AF -14 uni04B0 -60 uni04B1 -14 zerosuperior -12 public.kern1.uni0433 ampersand -31 copyright 2 eightinferior -33 eightsuperior 10 fiveinferior -20 fivesuperior 15 fourinferior -67 foursuperior 21 nineinferior -33 oneinferior -33 onesuperior 8 parenright -6 public.kern2.asterisk 6 public.kern2.braceright -6 public.kern2.comma -107 public.kern2.emdash -6 public.kern2.guillemotleft -6 public.kern2.guillemotright 4 public.kern2.quotedblleft 11 public.kern2.quotedblright 17 public.kern2.uni0402 -14 public.kern2.uni0404 3 public.kern2.uni0409 -57 public.kern2.uni040E -33 public.kern2.uni0410 -54 public.kern2.uni0416 -46 public.kern2.uni0425 -52 public.kern2.uni0427 -13 public.kern2.uni042A -14 public.kern2.uni0430.alt01 -1 public.kern2.uni0435 -1 public.kern2.uni0436 4 public.kern2.uni0437 2 public.kern2.uni043B -31 public.kern2.uni0442 10 public.kern2.uni0443 6 public.kern2.uni0445 8 public.kern2.uni0447 13 public.kern2.uni0452 -6 public.kern2.uni04BB -6 registered 15 seveninferior -6 sixinferior -56 sixsuperior 10 slash -55 threeinferior -23 threesuperior 21 trademark -2 twoinferior -26 twosuperior 18 underscore -100 uni0408 -67 uni0414 -47 uni0424 6 uni042F -6 uni0431 7 uni0434 -21 uni0440 5 uni0444 -1 uni044F -1 uni0455 2 uni0492 6 uni04AE -54 uni04AF 6 uni04B0 -54 uni04B1 6 uni04D4 -90 zeroinferior -33 zerosuperior 10 public.kern1.uni0434 ampersand -2 at -7 copyright -8 eightinferior 6 eightsuperior -3 fivesuperior -9 fourinferior 12 foursuperior 6 nineinferior -10 ninesuperior -3 onesuperior -12 parenright 17 public.kern2.asterisk -6 public.kern2.braceright 6 public.kern2.comma 11 public.kern2.emdash -10 public.kern2.guillemotleft -10 public.kern2.guillemotright -5 public.kern2.quotedblleft -6 public.kern2.quotedblright -6 public.kern2.uni0402 -19 public.kern2.uni0404 -6 public.kern2.uni0409 17 public.kern2.uni040E -40 public.kern2.uni0410 13 public.kern2.uni0416 8 public.kern2.uni0417 -5 public.kern2.uni0425 7 public.kern2.uni0427 -26 public.kern2.uni042A -19 public.kern2.uni0430 -2 public.kern2.uni0430.alt01 -12 public.kern2.uni0435 -12 public.kern2.uni0436 11 public.kern2.uni0437 -2 public.kern2.uni043B 22 public.kern2.uni0442 -7 public.kern2.uni0443 12 public.kern2.uni0445 9 public.kern2.uni0447 -6 public.kern2.uni04BB 3 seveninferior -15 sevensuperior -21 sixinferior 6 sixsuperior -3 slash 36 threeinferior 12 trademark -27 twoinferior 10 twosuperior -6 underscore 36 uni0408 12 uni0414 14 uni0424 -13 uni042F 6 uni0431 -7 uni0434 18 uni0440 5 uni0444 -9 uni044F 11 uni0455 -2 uni0458 74 uni04AE -48 uni04AF -4 uni04B0 -48 uni04B1 -4 uni04D4 14 zeroinferior 3 zerosuperior -3 public.kern1.uni0435 at 10 eightinferior 10 eightsuperior 8 fiveinferior 3 fivesuperior 13 fourinferior 5 foursuperior 13 nineinferior 10 ninesuperior -15 oneinferior 5 public.kern2.asterisk -20 public.kern2.comma -20 public.kern2.emdash 10 public.kern2.guillemotleft 40 public.kern2.guillemotright 10 public.kern2.quotedblleft -31 public.kern2.quotedblright -5 public.kern2.uni0400 -3 public.kern2.uni0402 -30 public.kern2.uni0404 10 public.kern2.uni040E -57 public.kern2.uni0410 -8 public.kern2.uni0416 -23 public.kern2.uni0417 -4 public.kern2.uni0425 -17 public.kern2.uni0427 -28 public.kern2.uni042A -30 public.kern2.uni0430 10 public.kern2.uni0436 -7 public.kern2.uni0442 2 public.kern2.uni0443 -6 public.kern2.uni0445 -11 public.kern2.uni0447 -6 seveninferior 20 sevensuperior -12 sixinferior 5 sixsuperior 8 threeinferior 6 threesuperior 10 trademark -15 twoinferior 5 twosuperior 18 underscore -34 uni0405 -10 uni0414 -13 uni0424 10 uni042F -16 uni0431 3 uni0434 -11 uni044F 7 uni0492 9 uni0493 10 uni04AE -68 uni04AF -8 uni04B0 -62 uni04B1 -8 uni04D4 -8 zeroinferior 20 zerosuperior 8 public.kern1.uni0436 ampersand -12 at -8 eightinferior -4 eightsuperior 2 fiveinferior 6 fivesuperior 3 fourinferior 6 foursuperior 16 nineinferior -14 ninesuperior -8 onesuperior -12 public.kern2.comma 17 public.kern2.emdash -18 public.kern2.guillemotleft -11 public.kern2.guillemotright -3 public.kern2.quotedblleft 6 public.kern2.quotedblright 9 public.kern2.uni0402 -18 public.kern2.uni0404 -3 public.kern2.uni0409 13 public.kern2.uni040E -39 public.kern2.uni0410 11 public.kern2.uni0416 14 public.kern2.uni0417 -9 public.kern2.uni0425 13 public.kern2.uni0427 -29 public.kern2.uni042A -18 public.kern2.uni0430 -2 public.kern2.uni0430.alt01 -10 public.kern2.uni0435 -10 public.kern2.uni0436 11 public.kern2.uni0437 -2 public.kern2.uni043B 18 public.kern2.uni0442 4 public.kern2.uni0443 8 public.kern2.uni0445 9 registered 5 seveninferior -14 sevensuperior -18 sixsuperior 2 slash 4 threeinferior 12 threesuperior 12 trademark -20 twoinferior 9 twosuperior 2 underscore 4 uni0405 -3 uni0414 16 uni0424 -4 uni042F 9 uni0431 -1 uni0434 17 uni0440 1 uni0444 -10 uni044F 12 uni0455 -3 uni0492 6 uni04AE -58 uni04AF 4 uni04B0 -58 uni04B1 4 uni04D4 6 zeroinferior -4 zerosuperior 2 public.kern1.uni0438 fiveinferior -3 fourinferior -3 nineinferior -6 oneinferior -9 public.kern2.guillemotleft 6 public.kern2.guillemotright -6 public.kern2.quotedblright 6 public.kern2.uni0402 -16 public.kern2.uni040E -31 public.kern2.uni0427 -28 public.kern2.uni042A -16 seveninferior -6 sixinferior -5 slash 8 trademark -14 twoinferior -6 uni0424 -5 uni044F 2 uni04AE -50 uni04B0 -50 zeroinferior -6 public.kern1.uni0441 ampersand -4 eightsuperior 15 fiveinferior 8 fivesuperior 15 fourinferior 10 foursuperior 25 oneinferior 10 public.kern2.asterisk -8 public.kern2.comma -16 public.kern2.emdash -10 public.kern2.guillemotleft 5 public.kern2.guillemotright -4 public.kern2.quotedblleft -15 public.kern2.uni0402 -24 public.kern2.uni0409 6 public.kern2.uni040E -39 public.kern2.uni0410 8 public.kern2.uni0416 -12 public.kern2.uni0425 -8 public.kern2.uni0427 -24 public.kern2.uni042A -24 public.kern2.uni0430 -3 public.kern2.uni0430.alt01 -7 public.kern2.uni0435 -9 public.kern2.uni0437 -2 public.kern2.uni043B -2 public.kern2.uni0445 -5 public.kern2.uni0447 -6 public.kern2.uni04BB -4 seveninferior 3 sevensuperior -6 sixinferior 5 sixsuperior 15 slash -10 threeinferior 10 threesuperior 15 twoinferior 8 twosuperior 15 underscore -10 uni0405 4 uni0408 10 uni0414 -6 uni042F -6 uni0431 -1 uni0434 -8 uni0444 -4 uni044F 4 uni0492 9 uni04AE -36 uni04B0 -36 uni04D4 6 zeroinferior 15 zerosuperior 15 public.kern1.uni0443 ampersand -18 at -10 eightinferior -29 eightsuperior 28 fiveinferior -29 fivesuperior 28 fourinferior -36 foursuperior 30 nineinferior -23 ninesuperior 33 oneinferior -26 parenright -10 public.kern2.asterisk 20 public.kern2.comma -66 public.kern2.emdash -10 public.kern2.guillemotleft -6 public.kern2.guillemotright -6 public.kern2.quotedblleft 40 public.kern2.quotedblright 40 public.kern2.uni0402 6 public.kern2.uni0404 10 public.kern2.uni0409 -53 public.kern2.uni040E -31 public.kern2.uni0410 -27 public.kern2.uni0416 -39 public.kern2.uni0425 -12 public.kern2.uni0427 -6 public.kern2.uni042A 6 public.kern2.uni0430 -14 public.kern2.uni0430.alt01 -17 public.kern2.uni0435 -13 public.kern2.uni0436 4 public.kern2.uni0437 -2 public.kern2.uni043B -46 public.kern2.uni0442 9 public.kern2.uni0443 23 public.kern2.uni0445 10 public.kern2.uni0447 10 public.kern2.uni0452 -5 public.kern2.uni04BB -5 registered 38 seveninferior -14 sevensuperior 9 sixinferior -44 sixsuperior 30 slash -15 threeinferior -24 threesuperior 16 trademark 20 twoinferior -24 twosuperior 16 underscore -80 uni0405 10 uni0408 -39 uni0414 -49 uni0424 -5 uni042F -15 uni0431 -3 uni0434 -39 uni0444 -12 uni044F -21 uni0455 -8 uni04AE -21 uni04AF 17 uni04B0 -20 uni04B1 17 uni04D4 -27 zeroinferior -32 zerosuperior 38 public.kern1.uni044A ampersand 13 eightinferior 13 eightsuperior -46 fiveinferior 12 fivesuperior -29 fourinferior 19 foursuperior -36 nineinferior 18 ninesuperior -44 oneinferior 6 onesuperior -28 parenright -6 public.kern2.asterisk -48 public.kern2.comma -4 public.kern2.emdash -4 public.kern2.guillemotleft 27 public.kern2.guillemotright 8 public.kern2.quotedblleft -64 public.kern2.quotedblright -50 public.kern2.uni0402 -90 public.kern2.uni0409 13 public.kern2.uni040E -50 public.kern2.uni0416 -6 public.kern2.uni0425 -12 public.kern2.uni0427 -70 public.kern2.uni042A -90 public.kern2.uni0430 5 public.kern2.uni0430.alt01 9 public.kern2.uni0435 9 public.kern2.uni0436 -8 public.kern2.uni043B 14 public.kern2.uni0442 -27 public.kern2.uni0443 -35 public.kern2.uni0445 -10 public.kern2.uni0447 -32 public.kern2.uni0452 -6 public.kern2.uni04BB -6 question -10 registered -52 seveninferior 10 sevensuperior -52 sixinferior 15 sixsuperior -46 threeinferior 12 threesuperior -18 trademark -66 twoinferior 14 twosuperior -17 underscore -24 uni0408 4 uni0414 -5 uni042F -7 uni0431 9 uni0434 -3 uni0440 -4 uni0444 9 uni044F 3 uni0455 2 uni0493 11 uni04AE -104 uni04AF -32 uni04B0 -57 uni04B1 -32 uni04D4 -6 zeroinferior 15 zerosuperior -46 public.kern1.uni0456 oneinferior -12 public.kern2.comma 10 public.kern2.guillemotleft -4 public.kern2.quotedblleft -20 public.kern2.quotedblright -10 public.kern2.uni0402 -4 public.kern2.uni0409 5 public.kern2.uni040E -20 public.kern2.uni0410 2 public.kern2.uni0427 -26 public.kern2.uni042A -4 public.kern2.uni043B 9 public.kern2.uni0442 -16 public.kern2.uni0443 -10 public.kern2.uni0447 -22 slash 4 uni0408 10 uni0414 5 uni0424 -13 uni0434 9 uni044F 2 uni04AE -24 uni04AF -10 uni04B0 -24 uni04B1 -10 uni04D4 2 public.kern1.uni045B eightsuperior -8 fiveinferior 4 fivesuperior -10 foursuperior -4 nineinferior -4 ninesuperior -22 oneinferior -6 onesuperior -20 public.kern2.asterisk -40 public.kern2.comma 10 public.kern2.guillemotleft 6 public.kern2.guillemotright -8 public.kern2.quotedblleft -50 public.kern2.quotedblright -30 public.kern2.uni0402 -51 public.kern2.uni0409 6 public.kern2.uni040E -46 public.kern2.uni0417 -17 public.kern2.uni0427 -59 public.kern2.uni042A -51 public.kern2.uni0437 -5 public.kern2.uni043B 6 public.kern2.uni0442 -13 public.kern2.uni0443 -13 public.kern2.uni0447 -34 registered -25 seveninferior -2 sevensuperior -27 sixsuperior -8 slash 4 threeinferior 6 threesuperior -8 trademark -35 twoinferior 6 twosuperior -4 uni0414 6 uni0424 -12 uni0431 -4 uni0434 6 uni044F 2 uni04AE -50 uni04AF -13 uni04B0 -50 uni04B1 -13 zeroinferior 6 zerosuperior -8 public.kern1.uni0496 ampersand -15 at -21 copyright -25 eightinferior 12 eightsuperior -26 fiveinferior 7 fivesuperior -14 fourinferior 12 foursuperior -41 nineinferior -6 ninesuperior -18 onesuperior -14 parenright 31 public.kern2.asterisk -22 public.kern2.braceright 9 public.kern2.colon 6 public.kern2.comma 21 public.kern2.emdash -67 public.kern2.guillemotleft -33 public.kern2.guillemotright -18 public.kern2.quotedblleft -25 public.kern2.quotedblright -22 public.kern2.uni0402 -18 public.kern2.uni0404 -32 public.kern2.uni0409 20 public.kern2.uni040E -20 public.kern2.uni0410 11 public.kern2.uni0416 9 public.kern2.uni0417 -14 public.kern2.uni0425 3 public.kern2.uni0427 -21 public.kern2.uni042A -18 public.kern2.uni0430 -3 public.kern2.uni0430.alt01 -29 public.kern2.uni0432 5 public.kern2.uni0435 -26 public.kern2.uni0436 15 public.kern2.uni0437 -4 public.kern2.uni043B 31 public.kern2.uni0442 -46 public.kern2.uni0443 17 public.kern2.uni0445 12 public.kern2.uni0447 -62 public.kern2.uni0452 5 public.kern2.uni0456 5 public.kern2.uni04BB 5 registered -24 seveninferior -24 sevensuperior -9 sixinferior 12 sixsuperior -36 slash 41 threeinferior 16 threesuperior -14 trademark -6 twoinferior 15 twosuperior -12 underscore 39 uni0405 -4 uni0408 14 uni0414 31 uni0424 -49 uni042F 7 uni0431 -22 uni0434 30 uni0440 2 uni0444 -25 uni044F 16 uni0455 -2 uni0458 79 uni0493 5 uni04AE -18 uni04AF -36 uni04B0 -18 uni04B1 -25 uni04D4 18 zeroinferior 12 zerosuperior -24 public.kern1.uni0497 ampersand -4 at -12 copyright -12 eightsuperior -10 fiveinferior 4 fivesuperior -9 fourinferior 9 foursuperior 6 nineinferior -12 ninesuperior -15 onesuperior -19 parenright 31 public.kern2.asterisk -20 public.kern2.braceright 11 public.kern2.colon 9 public.kern2.comma 19 public.kern2.emdash -24 public.kern2.guillemotleft -21 public.kern2.guillemotright -9 public.kern2.quotedblleft -14 public.kern2.quotedblright -10 public.kern2.uni0402 -36 public.kern2.uni0404 -15 public.kern2.uni0409 21 public.kern2.uni040E -43 public.kern2.uni0410 11 public.kern2.uni0416 17 public.kern2.uni0417 -10 public.kern2.uni0425 11 public.kern2.uni0427 -37 public.kern2.uni042A -36 public.kern2.uni0430.alt01 -12 public.kern2.uni0435 -12 public.kern2.uni0436 17 public.kern2.uni0437 -3 public.kern2.uni043B 28 public.kern2.uni0442 -8 public.kern2.uni0443 18 public.kern2.uni0445 16 public.kern2.uni0447 -12 question -6 registered -7 seveninferior -18 sevensuperior -28 sixsuperior -10 slash 52 threeinferior 13 trademark -21 twoinferior 12 twosuperior -11 underscore 49 uni0408 10 uni0414 29 uni0424 -14 uni042F 12 uni0431 -6 uni0434 34 uni0440 5 uni0444 -12 uni044F 19 uni0458 86 uni04AE -61 uni04AF -9 uni04B0 -61 uni04B1 -7 uni04D4 17 zerosuperior -10 public.kern1.w V -12 X -22 ampersand -14 eightinferior -29 eightsuperior 24 fiveinferior -24 fivesuperior 36 fourinferior -34 foursuperior 30 nineinferior -26 ninesuperior 36 oneinferior -16 onesuperior 6 parenright -10 public.kern2.A -22 public.kern2.C 10 public.kern2.J -24 public.kern2.S 10 public.kern2.U -1 public.kern2.W -5 public.kern2.Y -23 public.kern2.Z -4 public.kern2.a -9 public.kern2.a.alt01 -8 public.kern2.asterisk 18 public.kern2.c -10 public.kern2.comma -62 public.kern2.emdash -3 public.kern2.g -18 public.kern2.guillemotleft -2 public.kern2.guillemotright -4 public.kern2.quotedblleft 38 public.kern2.quotedblright 40 public.kern2.s -3 public.kern2.w 12 public.kern2.y 17 registered 38 seveninferior -12 sevensuperior 8 sixinferior -32 sixsuperior 33 slash -10 threeinferior -32 threesuperior 16 trademark 16 twoinferior -24 twosuperior 20 underscore -40 v 16 zeroinferior -22 zerosuperior 38 public.kern1.y V -12 X -12 ampersand -18 at -10 eightinferior -29 eightsuperior 28 fiveinferior -29 fivesuperior 28 fourinferior -36 foursuperior 30 nineinferior -23 ninesuperior 33 oneinferior -26 parenright -10 public.kern2.A -27 public.kern2.C 10 public.kern2.J -39 public.kern2.S 10 public.kern2.T 6 public.kern2.W -5 public.kern2.Y -21 public.kern2.a -14 public.kern2.a.alt01 -10 public.kern2.asterisk 20 public.kern2.c -13 public.kern2.comma -66 public.kern2.emdash -10 public.kern2.f 3 public.kern2.g -20 public.kern2.guillemotleft -2 public.kern2.guillemotright -2 public.kern2.quotedblleft 40 public.kern2.quotedblright 40 public.kern2.s -8 public.kern2.w 17 public.kern2.y 23 registered 38 seveninferior -14 sevensuperior 9 sixinferior -44 sixsuperior 30 slash -15 threeinferior -24 threesuperior 16 trademark 20 twoinferior -24 twosuperior 16 underscore -80 v 23 zeroinferior -32 zerosuperior 38 public.kern1.z V -30 X 6 ampersand -12 at -9 eightinferior 10 eightsuperior 20 fiveinferior 8 fivesuperior 18 fourinferior 18 foursuperior 40 nineinferior -10 oneinferior 8 public.kern2.A 6 public.kern2.J 3 public.kern2.T -24 public.kern2.W -24 public.kern2.Y -40 public.kern2.Z -8 public.kern2.a.alt01 -12 public.kern2.asterisk 2 public.kern2.c -11 public.kern2.comma 2 public.kern2.emdash -20 public.kern2.guillemotleft -2 public.kern2.quotedblright 20 public.kern2.s -10 registered 15 seveninferior -2 sixinferior 10 sixsuperior 20 threeinferior 10 threesuperior 10 trademark 10 twoinferior 16 twosuperior 10 underscore 10 zeroinferior 12 zerosuperior 20 q underscore 28 question V 15 public.kern2.A -20 public.kern2.T 16 public.kern2.W 15 public.kern2.Y 15 public.kern2.comma -144 public.kern2.quotedblleft 20 public.kern2.quotedblright 10 public.kern2.uni0410 -20 uni04AE 15 uni04D4 -16 questiondown V -60 b -40 public.kern2.A 10 public.kern2.C -30 public.kern2.J -18 public.kern2.T -60 public.kern2.U -30 public.kern2.W -24 public.kern2.Y -65 public.kern2.a -20 public.kern2.a.alt01 -30 public.kern2.c -30 public.kern2.dotlessj 48 public.kern2.g -10 public.kern2.i -2 public.kern2.s -10 public.kern2.t -20 public.kern2.u -10 public.kern2.uni0402 -60 public.kern2.uni0404 -30 public.kern2.uni0410 10 public.kern2.uni0430 -20 public.kern2.uni0435 -30 public.kern2.uni0443 -16 public.kern2.uni0456 -6 public.kern2.w -30 public.kern2.y -16 public.kern2.z -5 uni0408 -18 uni0455 -10 uni0458 48 uni04AE -65 uni04D4 8 v -30 quotedbl uni0457 4 quotedblbase dotlessj 12 j 12 jacute 12 jcircumflex 12 uni0443 -46 uni0458 35 uni045E -46 uni04EF -46 uni04F1 -46 uni04F3 -46 y -2 yacute -2 ycircumflex -2 ydieresis -2 ydotbelow -2 ygrave -2 yhook -2 ytilde -2 quotedblleft AE -124 AEacute -124 uni0457 14 quotedblright AE -129 AEacute -129 ibreve 28 icircumflex 30 idieresis 30 imacron 28 itilde 30 uni0457 13 quoteleft AE -124 AEacute -124 uni0457 14 quoteright AE -129 AEacute -129 ibreve 28 icircumflex 30 idieresis 30 imacron 28 itilde 30 uni0457 13 quotesinglbase dotlessj 12 j 12 jacute 12 jcircumflex 12 uni0443 -46 uni0458 35 uni045E -46 uni04EF -46 uni04F1 -46 uni04F3 -46 y -2 yacute -2 ycircumflex -2 ydieresis -2 ydotbelow -2 ygrave -2 yhook -2 ytilde -2 quotesingle uni0457 4 registered V 10 public.kern2.A -60 public.kern2.C -1 public.kern2.T 30 public.kern2.W 15 public.kern2.Y 5 public.kern2.Z -3 public.kern2.a.alt01 -5 public.kern2.c -5 public.kern2.u 10 public.kern2.uni0402 30 public.kern2.uni0404 -3 public.kern2.uni0410 -60 public.kern2.uni0425 -4 public.kern2.uni0435 -5 public.kern2.uni0443 38 public.kern2.uni0445 20 public.kern2.w 38 public.kern2.y 38 uni04AE 5 uni04D4 -48 v 56 x 20 seveninferior V -40 X -30 eightinferior -15 fiveinferior -7 fourinferior -15 nineinferior -1 oneinferior -2 public.kern2.A -2 public.kern2.C 13 public.kern2.J -20 public.kern2.S -12 public.kern2.T -52 public.kern2.U -5 public.kern2.W -25 public.kern2.Y -60 public.kern2.Z -7 public.kern2.a.alt01 32 public.kern2.c 18 public.kern2.comma -70 public.kern2.f -10 public.kern2.t -5 public.kern2.uni0402 -52 public.kern2.uni0404 13 public.kern2.uni0409 -12 public.kern2.uni040E -64 public.kern2.uni0410 -10 public.kern2.uni0416 -30 public.kern2.uni0417 -17 public.kern2.uni0425 -30 public.kern2.uni0427 -20 public.kern2.uni042A -52 public.kern2.uni0430 -4 public.kern2.uni0430.alt01 14 public.kern2.uni0435 18 public.kern2.uni0436 -21 public.kern2.uni043B -19 public.kern2.uni0442 -6 public.kern2.uni0443 -5 public.kern2.uni0445 -10 public.kern2.uni0447 -12 public.kern2.w -12 public.kern2.y -5 public.kern2.z -2 seveninferior 12 sixinferior -12 threeinferior -1 uni0405 -12 uni0408 -20 uni0414 -23 uni0424 8 uni042F -24 uni0431 14 uni0434 -28 uni0444 14 uni044F -2 uni0492 20 uni0493 6 uni04AE -60 uni04AF -14 uni04B0 -54 uni04B1 -14 uni04D4 -10 v -10 x -10 zeroinferior -6 sevensuperior V 20 X 24 b 22 eightsuperior -15 fivesuperior -7 foursuperior -15 fraction -27 germandbls.alt01 -2 icircumflex 2 jcircumflex 2 ninesuperior -1 onesuperior -2 parenright 20 public.kern2.A -84 public.kern2.C -12 public.kern2.J -37 public.kern2.S -12 public.kern2.T 30 public.kern2.W 30 public.kern2.Y 18 public.kern2.a -12 public.kern2.a.alt01 -24 public.kern2.c -19 public.kern2.comma -70 public.kern2.dotlessi 10 public.kern2.f -10 public.kern2.g -35 public.kern2.h 27 public.kern2.i 4 public.kern2.s -30 public.kern2.t -5 public.kern2.uni0402 30 public.kern2.uni0404 -12 public.kern2.uni0409 -89 public.kern2.uni040E 12 public.kern2.uni0410 -84 public.kern2.uni0416 -4 public.kern2.uni0417 -10 public.kern2.uni0425 24 public.kern2.uni0427 10 public.kern2.uni042A 30 public.kern2.uni0430 -12 public.kern2.uni0430.alt01 -33 public.kern2.uni0432 -6 public.kern2.uni0435 -19 public.kern2.uni0436 -21 public.kern2.uni0437 -18 public.kern2.uni043B -69 public.kern2.uni0442 -14 public.kern2.uni0443 10 public.kern2.uni0445 -10 public.kern2.uni0447 -10 public.kern2.uni04BB 27 public.kern2.w 5 public.kern2.y 10 public.kern2.z -10 sevensuperior 12 sixsuperior -12 thorn 20 threesuperior -1 twosuperior -5 uni0405 -12 uni0408 -37 uni0414 -58 uni0424 -31 uni042F -44 uni0431 -21 uni0434 -52 uni0444 -33 uni044F -34 uni0455 -30 uni0457 4 uni0493 -6 uni04AE 18 uni04AF 2 uni04B0 18 uni04B1 2 uni04D4 -84 x -10 zerosuperior -6 sixinferior V -62 eightinferior -4 fiveinferior -5 fourinferior 10 nineinferior -15 oneinferior -16 public.kern2.A 7 public.kern2.C -2 public.kern2.J 12 public.kern2.S 1 public.kern2.T -62 public.kern2.U -10 public.kern2.W -42 public.kern2.Y -70 public.kern2.Z -2 public.kern2.a 10 public.kern2.a.alt01 10 public.kern2.c 10 public.kern2.dotlessi -10 public.kern2.f -18 public.kern2.g -15 public.kern2.s 1 public.kern2.t -25 public.kern2.uni0402 -62 public.kern2.uni0404 -2 public.kern2.uni0409 22 public.kern2.uni040E -42 public.kern2.uni0410 7 public.kern2.uni0416 6 public.kern2.uni0427 -60 public.kern2.uni042A -62 public.kern2.uni0430 10 public.kern2.uni0430.alt01 6 public.kern2.uni0435 10 public.kern2.uni043B 27 public.kern2.uni0442 -31 public.kern2.uni0443 -29 public.kern2.uni0445 -8 public.kern2.uni0447 -39 public.kern2.w -32 public.kern2.y -29 public.kern2.z 8 seveninferior -15 threeinferior -4 uni0405 3 uni0408 12 uni0414 6 uni0424 -6 uni042F 3 uni0431 6 uni0434 9 uni0444 6 uni044F 4 uni0455 3 uni0492 10 uni0493 6 uni04AE -70 uni04AF -46 uni04B0 -70 uni04B1 -46 uni04D4 7 v -32 x -8 sixsuperior X -10 b 18 eightsuperior -4 fivesuperior -5 foursuperior 10 fraction 10 germandbls.alt01 2 ninesuperior -17 onesuperior -16 p 20 public.kern2.A -54 public.kern2.J -45 public.kern2.T 20 public.kern2.W 5 public.kern2.Z -18 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 18 public.kern2.g -5 public.kern2.h 9 public.kern2.i 4 public.kern2.t 14 public.kern2.u 20 public.kern2.uni0402 20 public.kern2.uni0409 -71 public.kern2.uni040E -8 public.kern2.uni0410 -54 public.kern2.uni0416 -23 public.kern2.uni0425 -10 public.kern2.uni0427 10 public.kern2.uni042A 20 public.kern2.uni0436 4 public.kern2.uni043B -44 public.kern2.uni0442 10 public.kern2.uni0443 30 public.kern2.uni0445 12 public.kern2.uni0447 12 public.kern2.uni04BB 9 public.kern2.w 37 public.kern2.y 30 public.kern2.z 20 sevensuperior -15 thorn 20 threesuperior -4 uni0408 -45 uni0414 -39 uni0424 6 uni042F -6 uni0431 3 uni0434 -27 uni0440 20 uni0444 -6 uni044F -4 uni0457 4 uni0492 15 uni04AF 30 uni04B1 30 uni04D4 -54 v 30 x 12 slash V 20 p -40 public.kern2.A -52 public.kern2.C -10 public.kern2.J -32 public.kern2.S -10 public.kern2.T 20 public.kern2.W 20 public.kern2.Y 20 public.kern2.a -45 public.kern2.a.alt01 -40 public.kern2.c -40 public.kern2.dotlessi -42 public.kern2.f -30 public.kern2.g -45 public.kern2.s -40 public.kern2.t -20 public.kern2.u -35 public.kern2.uni0402 20 public.kern2.uni0404 -10 public.kern2.uni0409 -62 public.kern2.uni040E 13 public.kern2.uni0410 -52 public.kern2.uni0416 -32 public.kern2.uni0417 -13 public.kern2.uni0425 4 public.kern2.uni0427 8 public.kern2.uni042A 20 public.kern2.uni0430 -45 public.kern2.uni0430.alt01 -40 public.kern2.uni0432 -39 public.kern2.uni0435 -40 public.kern2.uni0436 -49 public.kern2.uni0437 -35 public.kern2.uni043B -90 public.kern2.uni0442 -20 public.kern2.uni0443 -10 public.kern2.uni0445 -30 public.kern2.uni0447 -27 public.kern2.w -10 public.kern2.y -10 public.kern2.z -30 slash -120 uni0405 -10 uni0408 -32 uni0414 -59 uni0424 -20 uni042F -45 uni0431 -32 uni0434 -73 uni0440 -40 uni0444 -54 uni044F -49 uni0455 -40 uni0493 -39 uni04AE 20 uni04AF -10 uni04B0 8 uni04B1 -10 uni04D4 -52 v -10 x -30 tbar a.alt01 12 aacute.alt01 12 abreve.alt01 12 abreveacute.alt01 12 abrevedotbelow.alt01 12 abrevegrave.alt01 12 abrevehook.alt01 12 abrevetilde.alt01 12 acircumflex.alt01 12 acircumflexacute.alt01 12 acircumflexdotbelow.alt01 12 acircumflexgrave.alt01 12 acircumflexhook.alt01 12 acircumflextilde.alt01 12 adieresis.alt01 12 adotbelow.alt01 12 agrave.alt01 12 ahook.alt01 12 amacron.alt01 12 aogonek.alt01 12 aring.alt01 12 aringacute.alt01 12 atilde.alt01 12 c 12 cacute 12 ccaron 12 ccedilla 12 ccircumflex 12 cdotaccent 12 d 12 dcaron 12 dcroat 12 e 12 eacute 12 ebreve 12 ecaron 12 ecircumflex 12 ecircumflexacute 12 ecircumflexdotbelow 12 ecircumflexgrave 12 ecircumflexhook 12 ecircumflextilde 12 edieresis 12 edotaccent 12 edotbelow 12 egrave 12 ehook 12 emacron 12 emdash 20 endash 20 eogonek 12 eth 12 etilde 12 g.alt01 12 gbreve.alt01 12 gcircumflex.alt01 12 gcommaaccent.alt01 12 gdotaccent.alt01 12 guillemotleft 30 guilsinglleft 30 hyphen 20 o 12 oacute 12 obreve 12 ocircumflex 12 ocircumflexacute 12 ocircumflexdotbelow 12 ocircumflexgrave 12 ocircumflexhook 12 ocircumflextilde 12 odieresis 12 odotbelow 12 oe 12 ograve 12 ohook 12 ohorn 12 ohornacute 12 ohorndotbelow 12 ohorngrave 12 ohornhook 12 ohorntilde 12 ohungarumlaut 12 omacron 12 oslash 12 oslashacute 12 otilde 12 q 12 schwa 12 softhyphen 20 tcaron V 26 W 34 Wacute 34 Wcircumflex 34 Wdieresis 34 Wgrave 34 X 30 Y 24 Yacute 24 Ycircumflex 24 Ydieresis 24 Ydotbelow 24 Ygrave 24 Yhook 24 Ytilde 24 asterisk 40 b 28 braceright 36 bracketright 36 eightsuperior 6 exclam 2 fivesuperior 6 h 18 hcircumflex 18 k 18 kcommaaccent 18 l 18 lacute 18 lcaron 18 lcommaaccent 18 ldot 18 lslash 18 ninesuperior 8 onesuperior 4 parenright 50 quotedbl 40 quotedblright 8 quoteright 8 quotesingle 40 sevensuperior 10 threesuperior 6 trademark 38 twosuperior 5 tcedilla dotlessj 2 j 2 jacute 2 jcircumflex 2 tcommaaccent dotlessj 2 j 2 jacute 2 jcircumflex 2 threeinferior V -54 X 8 eightinferior -6 fiveinferior -4 fourinferior -2 nineinferior -1 oneinferior -12 public.kern2.A 10 public.kern2.C -2 public.kern2.T -62 public.kern2.W -47 public.kern2.Y -80 public.kern2.a.alt01 13 public.kern2.c 17 public.kern2.comma -2 public.kern2.dotlessi -10 public.kern2.f -10 public.kern2.g -7 public.kern2.t -10 public.kern2.uni0402 -62 public.kern2.uni0404 -2 public.kern2.uni0409 6 public.kern2.uni040E -55 public.kern2.uni0410 10 public.kern2.uni0416 -4 public.kern2.uni0427 -46 public.kern2.uni042A -62 public.kern2.uni0430.alt01 11 public.kern2.uni0435 17 public.kern2.uni043B 22 public.kern2.uni0442 -24 public.kern2.uni0443 -22 public.kern2.uni0447 -32 public.kern2.w -16 public.kern2.y -22 public.kern2.z 6 seveninferior -7 sixinferior -1 threeinferior -10 uni0424 4 uni042F -5 uni0431 11 uni0444 11 uni044F 6 uni0455 -4 uni0492 13 uni0493 4 uni04AE -80 uni04AF -30 uni04B0 -62 uni04B1 -30 uni04D4 10 v -22 threesuperior V 18 X 10 b 10 eightsuperior -6 fivesuperior -4 foursuperior -2 fraction 4 jcircumflex 4 ninesuperior -1 onesuperior -12 p 20 public.kern2.A -54 public.kern2.C -5 public.kern2.J -44 public.kern2.S -2 public.kern2.T 20 public.kern2.W 18 public.kern2.Z -2 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.dotlessj 4 public.kern2.f 10 public.kern2.g -10 public.kern2.h 2 public.kern2.i 3 public.kern2.t 10 public.kern2.u 2 public.kern2.uni0402 20 public.kern2.uni0404 -5 public.kern2.uni0409 -77 public.kern2.uni040E -8 public.kern2.uni0410 -54 public.kern2.uni0416 -19 public.kern2.uni0425 10 public.kern2.uni0427 4 public.kern2.uni042A 20 public.kern2.uni0436 6 public.kern2.uni043B -50 public.kern2.uni0442 12 public.kern2.uni0443 18 public.kern2.uni0445 12 public.kern2.uni0447 9 public.kern2.uni0456 3 public.kern2.uni04BB 7 public.kern2.w 18 public.kern2.y 18 public.kern2.z 10 sevensuperior -7 sixsuperior -1 thorn 10 threesuperior -10 uni0405 -10 uni0408 -44 uni0414 -46 uni0424 1 uni042F -18 uni0434 -33 uni0440 20 uni044F -8 uni0458 20 uni0492 14 uni04AF 26 uni04B1 14 uni04D4 -54 v 28 x 12 trademark V 18 public.kern2.A -65 public.kern2.uni0410 -65 uni04D4 -53 twoinferior V -54 X 18 public.kern2.A 20 public.kern2.C -4 public.kern2.J 26 public.kern2.T -62 public.kern2.W -49 public.kern2.Y -80 public.kern2.a 10 public.kern2.a.alt01 16 public.kern2.c 20 public.kern2.comma 8 public.kern2.f -10 public.kern2.g -10 public.kern2.t -1 public.kern2.uni0402 -62 public.kern2.uni0404 -7 public.kern2.uni0409 18 public.kern2.uni040E -47 public.kern2.uni0410 20 public.kern2.uni0416 10 public.kern2.uni0425 18 public.kern2.uni0427 -43 public.kern2.uni042A -62 public.kern2.uni0430 10 public.kern2.uni0430.alt01 11 public.kern2.uni0435 20 public.kern2.uni0436 4 public.kern2.uni0437 4 public.kern2.uni043B 15 public.kern2.uni0442 -32 public.kern2.uni0443 -20 public.kern2.uni0445 10 public.kern2.uni0447 -34 public.kern2.uni0456 -4 public.kern2.w -22 public.kern2.y -20 public.kern2.z 16 uni0408 26 uni0414 15 uni0424 -2 uni042F 10 uni0431 11 uni0434 10 uni0444 11 uni044F 4 uni0492 4 uni0493 4 uni04AE -80 uni04AF -30 uni04B0 -66 uni04B1 -30 uni04D4 20 v -22 x 10 twosuperior V 18 X 8 b 15 fraction 45 jcircumflex 4 p 20 public.kern2.A -36 public.kern2.C 8 public.kern2.J -44 public.kern2.S -2 public.kern2.T 20 public.kern2.W 18 public.kern2.Z -4 public.kern2.a 10 public.kern2.a.alt01 16 public.kern2.c 13 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 10 public.kern2.g 8 public.kern2.h 11 public.kern2.i 3 public.kern2.t 10 public.kern2.u 30 public.kern2.uni0402 20 public.kern2.uni0409 -77 public.kern2.uni040E -6 public.kern2.uni0410 -36 public.kern2.uni0416 -26 public.kern2.uni0417 -6 public.kern2.uni042A 20 public.kern2.uni0430 10 public.kern2.uni0430.alt01 7 public.kern2.uni0435 13 public.kern2.uni0436 2 public.kern2.uni0437 3 public.kern2.uni043B -47 public.kern2.uni0442 18 public.kern2.uni0443 26 public.kern2.uni0445 10 public.kern2.uni0447 9 public.kern2.uni0456 3 public.kern2.uni04BB 11 public.kern2.w 23 public.kern2.y 26 public.kern2.z 10 thorn 15 uni0405 -6 uni0408 -44 uni0414 -46 uni0424 4 uni042F -14 uni0431 12 uni0434 -32 uni0440 20 uni0444 7 uni044F 6 uni0492 17 uni04AF 26 uni04B1 18 uni04D4 -36 v 28 x 10 underscore V -70 X 20 b -20 p 10 public.kern2.A 12 public.kern2.C -60 public.kern2.J -18 public.kern2.S -42 public.kern2.T -60 public.kern2.U -50 public.kern2.W -50 public.kern2.Y -60 public.kern2.Z 15 public.kern2.a -30 public.kern2.a.alt01 -48 public.kern2.c -50 public.kern2.dotlessj 96 public.kern2.f -22 public.kern2.g 11 public.kern2.s -35 public.kern2.t -25 public.kern2.u -35 public.kern2.uni0402 -60 public.kern2.uni0404 -60 public.kern2.uni0409 -10 public.kern2.uni040E -77 public.kern2.uni0417 -44 public.kern2.uni0425 20 public.kern2.uni0427 -162 public.kern2.uni042A -60 public.kern2.uni0430 -30 public.kern2.uni0430.alt01 -50 public.kern2.uni0435 -50 public.kern2.uni0436 4 public.kern2.uni0437 -21 public.kern2.uni043B -2 public.kern2.uni0442 -74 public.kern2.uni0443 17 public.kern2.uni0445 20 public.kern2.uni0447 -143 public.kern2.w -40 public.kern2.y 17 public.kern2.z 10 thorn 30 uni0405 -42 uni0408 -18 uni0414 33 uni0424 -137 uni0431 -53 uni0434 40 uni0440 10 uni0444 -50 uni044F 4 uni0455 -35 uni0458 96 uni04AE -60 uni04AF -73 uni04B0 -60 uni04B1 -30 v -70 x 20 uni0402 ampersand 6 eightsuperior -36 fivesuperior -26 fourinferior 10 foursuperior -27 ninesuperior -46 onesuperior -24 public.kern2.asterisk -64 public.kern2.colon -4 public.kern2.comma -10 public.kern2.guillemotleft 22 public.kern2.quotedblleft -87 public.kern2.quotedblright -78 public.kern2.uni0402 -72 public.kern2.uni0404 -3 public.kern2.uni040E -49 public.kern2.uni0410 -10 public.kern2.uni0417 -8 public.kern2.uni0425 -5 public.kern2.uni0427 -60 public.kern2.uni042A -72 public.kern2.uni0430.alt01 6 public.kern2.uni0435 6 public.kern2.uni0436 -2 public.kern2.uni0437 -2 public.kern2.uni0442 -14 public.kern2.uni0443 -12 public.kern2.uni0447 -34 public.kern2.uni0452 -2 public.kern2.uni04BB -2 registered -34 sevensuperior -46 sixsuperior -36 threeinferior 6 threesuperior -20 trademark -50 twosuperior -20 uni0424 -3 uni042F -4 uni0431 6 uni0434 -2 uni0440 -4 uni0444 6 uni044F 4 uni0458 15 uni0492 8 uni0493 6 uni04AE -67 uni04AF -21 uni04B0 -61 uni04B1 -21 uni04D4 -6 zerosuperior -36 uni0403 uni0457 22 uni0404 ampersand -13 at -13 fiveinferior -6 foursuperior -9 nineinferior -16 oneinferior -18 public.kern2.asterisk -4 public.kern2.comma -24 public.kern2.emdash -20 public.kern2.quotedblleft -6 public.kern2.quotedblright 2 public.kern2.uni0402 -5 public.kern2.uni0404 -13 public.kern2.uni0409 -4 public.kern2.uni040E -12 public.kern2.uni0410 -25 public.kern2.uni0416 -6 public.kern2.uni0417 -6 public.kern2.uni0425 -2 public.kern2.uni0427 -10 public.kern2.uni042A -5 public.kern2.uni0430 -6 public.kern2.uni0430.alt01 -14 public.kern2.uni0432 -7 public.kern2.uni0435 -14 public.kern2.uni0436 -14 public.kern2.uni0437 -10 public.kern2.uni043B -4 public.kern2.uni0442 -14 public.kern2.uni0443 -6 public.kern2.uni0445 -6 public.kern2.uni0447 -16 public.kern2.uni0456 -6 registered -6 seveninferior -12 sixinferior -4 slash -12 twoinferior -6 twosuperior 2 underscore -51 uni0405 -2 uni0408 -2 uni0414 -10 uni0424 -10 uni042F -10 uni0431 -9 uni0434 -16 uni0440 -12 uni0444 -14 uni044F -9 uni0455 -6 uni0458 -6 uni0493 -6 uni04AE -12 uni04AF -6 uni04B0 -10 uni04B1 -6 uni04D4 -25 zeroinferior -6 zerosuperior 2 uni0405 ampersand -10 eightsuperior -6 fiveinferior -2 fivesuperior -6 foursuperior -10 ninesuperior -5 oneinferior -16 onesuperior -6 parenright -10 public.kern2.asterisk 4 public.kern2.comma -24 public.kern2.emdash 10 public.kern2.guillemotleft 20 public.kern2.quotedblleft -4 public.kern2.quotedblright -2 public.kern2.uni0402 -13 public.kern2.uni0409 -3 public.kern2.uni040E -11 public.kern2.uni0410 -12 public.kern2.uni0416 -8 public.kern2.uni0417 -5 public.kern2.uni0427 -6 public.kern2.uni042A -13 public.kern2.uni0436 -9 public.kern2.uni0437 -3 public.kern2.uni0442 -9 public.kern2.uni0443 -5 public.kern2.uni0445 -4 public.kern2.uni0447 -10 registered -3 sevensuperior -6 sixinferior 3 sixsuperior -10 slash -10 threeinferior -3 threesuperior -8 twoinferior -10 twosuperior -11 underscore -44 uni0405 -6 uni0408 -7 uni0414 -10 uni0424 -4 uni042F -6 uni0434 -21 uni0440 -5 uni044F -5 uni0492 2 uni04AE -11 uni04AF -5 uni04B0 -11 uni04B1 -5 uni04D4 -12 zeroinferior 10 uni0408 eightinferior -17 fiveinferior -14 fourinferior -21 nineinferior -22 oneinferior -24 parenright 10 public.kern2.comma -50 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.quotedblright 2 public.kern2.uni0409 -30 public.kern2.uni040E 3 public.kern2.uni0410 -26 public.kern2.uni0416 -5 public.kern2.uni0425 -15 public.kern2.uni0430 -5 public.kern2.uni0430.alt01 -10 public.kern2.uni0435 -10 public.kern2.uni0436 -2 public.kern2.uni0437 -7 public.kern2.uni043B -18 public.kern2.uni0442 -6 public.kern2.uni0447 -14 questiondown -40 seveninferior -14 sixinferior -19 slash -20 threeinferior -24 trademark 12 twoinferior -24 underscore -60 uni0408 -35 uni0414 -32 uni0424 -3 uni042F -8 uni0431 -4 uni0434 -30 uni0444 -10 uni044F -6 uni0455 -5 uni04D4 -28 zeroinferior -16 uni040C uni0457 2 uni040E uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uni0411 ampersand -6 eightinferior 3 eightsuperior -20 fiveinferior 8 fivesuperior -9 fourinferior 8 foursuperior -16 nineinferior 9 ninesuperior -16 onesuperior -9 public.kern2.asterisk -29 public.kern2.comma -17 public.kern2.emdash 6 public.kern2.guillemotleft 29 public.kern2.guillemotright 2 public.kern2.quotedblleft -27 public.kern2.quotedblright -23 public.kern2.uni0402 -17 public.kern2.uni040E -19 public.kern2.uni0410 -9 public.kern2.uni0416 -12 public.kern2.uni0417 -2 public.kern2.uni0425 -14 public.kern2.uni0427 -21 public.kern2.uni042A -17 public.kern2.uni0430.alt01 2 public.kern2.uni0435 5 public.kern2.uni0436 -8 public.kern2.uni043B 2 public.kern2.uni0442 -8 public.kern2.uni0443 -12 public.kern2.uni0445 -11 public.kern2.uni0447 -18 registered -11 seveninferior 4 sevensuperior -12 sixinferior 5 sixsuperior -23 slash -11 threeinferior 10 threesuperior -3 trademark -12 twoinferior 4 twosuperior -6 underscore -57 uni0408 -3 uni0414 -12 uni0424 -3 uni042F -9 uni0431 3 uni0434 -14 uni0444 3 uni044F 1 uni0492 9 uni0493 7 uni04AE -17 uni04AF -15 uni04B0 -17 uni04B1 -15 uni04D4 -9 zeroinferior 6 zerosuperior -20 uni0412 question -24 uni04D8 -3 uni0413 uni0457 22 uni0416 uni0457 2 uni0417 uni04D8 -3 uni041A uni0457 2 uni0420 ampersand -34 at -10 eightinferior -65 eightsuperior 10 fiveinferior -60 fivesuperior 10 fourinferior -102 foursuperior 10 nineinferior -60 ninesuperior 10 oneinferior -62 onesuperior 4 public.kern2.asterisk 9 public.kern2.comma -130 public.kern2.emdash -10 public.kern2.quotedblleft 12 public.kern2.quotedblright 12 public.kern2.uni0402 6 public.kern2.uni0409 -70 public.kern2.uni040E -9 public.kern2.uni0410 -48 public.kern2.uni0416 -17 public.kern2.uni0417 -5 public.kern2.uni0425 -15 public.kern2.uni042A 6 public.kern2.uni0430 -15 public.kern2.uni0430.alt01 -19 public.kern2.uni0435 -21 public.kern2.uni0436 -6 public.kern2.uni0437 -6 public.kern2.uni043B -52 public.kern2.uni0442 7 public.kern2.uni0443 14 public.kern2.uni0447 3 registered 8 seveninferior -22 sevensuperior 9 sixinferior -89 sixsuperior 10 slash -50 threeinferior -60 threesuperior 4 trademark 4 twoinferior -62 twosuperior 4 underscore -130 uni0408 -42 uni0414 -58 uni0424 3 uni042F -13 uni0434 -41 uni0444 -19 uni044F -33 uni0455 -20 uni0492 8 uni04AF 10 uni04B1 10 uni04D4 -84 zeroinferior -60 zerosuperior 10 uni0422 ampersand -28 at -38 eightinferior -62 eightsuperior 20 fiveinferior -62 fivesuperior 18 fourinferior -70 foursuperior 12 nineinferior -62 ninesuperior 22 oneinferior -62 onesuperior 25 parenright 20 public.kern2.asterisk 30 public.kern2.colon -10 public.kern2.comma -80 public.kern2.emdash -50 public.kern2.guillemotleft -42 public.kern2.guillemotright -30 public.kern2.quotedblleft 22 public.kern2.quotedblright 20 public.kern2.uni0402 22 public.kern2.uni0404 -11 public.kern2.uni0409 -56 public.kern2.uni040E 10 public.kern2.uni0410 -56 public.kern2.uni0416 -15 public.kern2.uni0417 -3 public.kern2.uni0425 16 public.kern2.uni0427 6 public.kern2.uni042A 22 public.kern2.uni0430 -40 public.kern2.uni0430.alt01 -41 public.kern2.uni0432 -16 public.kern2.uni0435 -45 public.kern2.uni0436 -18 public.kern2.uni0437 -29 public.kern2.uni043B -58 public.kern2.uni0442 -14 public.kern2.uni0443 6 public.kern2.uni0445 -16 public.kern2.uni0447 -6 public.kern2.uni04BB 6 question 22 questiondown -60 registered 30 seveninferior -52 sevensuperior 30 sixinferior -62 sixsuperior 20 slash -70 threeinferior -62 threesuperior 20 trademark 25 twoinferior -62 twosuperior 20 underscore -60 uni0405 -8 uni0408 -42 uni0414 -39 uni0424 -15 uni042F -22 uni0431 -14 uni0434 -49 uni0440 -21 uni0444 -41 uni044F -48 uni0455 -30 uni0457 8 uni0493 -16 uni04AE 14 uni04AF 4 uni04B0 14 uni04B1 4 uni04D4 -65 zeroinferior -62 zerosuperior 30 uni0423 uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uni0424 ampersand -6 at 7 copyright 4 eightsuperior 6 fiveinferior 3 fivesuperior 11 fourinferior -12 foursuperior 17 ninesuperior -6 oneinferior 6 onesuperior 6 parenright -12 public.kern2.asterisk -16 public.kern2.braceright -12 public.kern2.comma -70 public.kern2.emdash 20 public.kern2.guillemotleft 28 public.kern2.guillemotright -8 public.kern2.quotedblleft -18 public.kern2.quotedblright -9 public.kern2.uni0402 -15 public.kern2.uni0404 11 public.kern2.uni0409 -35 public.kern2.uni040E -54 public.kern2.uni0410 -42 public.kern2.uni0416 -44 public.kern2.uni0417 -7 public.kern2.uni0425 -56 public.kern2.uni0427 -15 public.kern2.uni042A -15 public.kern2.uni0430.alt01 4 public.kern2.uni0432 -5 public.kern2.uni0435 4 public.kern2.uni0436 -4 public.kern2.uni0437 -1 public.kern2.uni043B -27 public.kern2.uni0442 6 public.kern2.uni0443 -1 public.kern2.uni0447 -2 public.kern2.uni04BB -6 registered 4 seveninferior 8 sevensuperior -14 sixinferior -11 sixsuperior 6 slash -20 threeinferior 6 threesuperior 11 trademark -22 twoinferior 6 twosuperior 8 underscore -137 uni0408 -37 uni0414 -50 uni0424 16 uni042F -17 uni0431 7 uni0434 -37 uni0444 4 uni044F 3 uni0492 12 uni0493 5 uni04AE -58 uni04AF -1 uni04B0 -49 uni04B1 -1 uni04D4 -63 zerosuperior 6 uni0425 ampersand -15 at -30 eightinferior 10 fiveinferior 10 fivesuperior 8 fourinferior 10 foursuperior -30 nineinferior -20 ninesuperior 8 oneinferior -3 onesuperior 10 parenright 16 public.kern2.asterisk 16 public.kern2.comma 11 public.kern2.emdash -40 public.kern2.guillemotleft -42 public.kern2.guillemotright -20 public.kern2.quotedblright 16 public.kern2.uni0402 16 public.kern2.uni0404 -18 public.kern2.uni0409 18 public.kern2.uni0410 17 public.kern2.uni0417 -10 public.kern2.uni042A 16 public.kern2.uni0430 -10 public.kern2.uni0430.alt01 -25 public.kern2.uni0435 -17 public.kern2.uni0436 13 public.kern2.uni0437 -10 public.kern2.uni043B 25 public.kern2.uni0442 -52 public.kern2.uni0443 -12 public.kern2.uni0445 8 public.kern2.uni0447 -74 question 8 questiondown 30 registered -4 seveninferior -20 sevensuperior 24 sixsuperior -10 threeinferior 10 threesuperior 10 trademark 16 twoinferior 10 twosuperior 10 underscore 20 uni0408 18 uni0414 12 uni0424 -56 uni0431 -22 uni0434 18 uni0444 -16 uni044F 13 uni0455 -5 uni04AF -30 uni04B1 -30 uni04D4 17 zeroinferior 13 uni0431 ninesuperior -6 parenright 9 quotedblleft -27 quotedblright -2 quoteleft -27 quoteright -2 sevensuperior -14 uni0402 -20 uni040B -20 uni040E -26 uni0422 -20 uni0423 -26 uni042A -20 uni04A0 -20 uni04AE -47 uni04B0 -47 uni04EE -26 uni04F0 -26 uni04F2 -26 uni0432 uni043B 3 uni0459 3 uni0437 uni043B 5 uni0459 5 uni0440 eightinferior 10 fiveinferior 8 fivesuperior -6 fourinferior -6 foursuperior 3 nineinferior 10 ninesuperior -27 oneinferior 8 onesuperior -10 public.kern2.asterisk -28 public.kern2.comma -27 public.kern2.emdash 20 public.kern2.guillemotleft 35 public.kern2.guillemotright -4 public.kern2.quotedblleft -32 public.kern2.quotedblright -10 public.kern2.uni0402 -35 public.kern2.uni0404 10 public.kern2.uni040E -55 public.kern2.uni0410 -7 public.kern2.uni0416 -26 public.kern2.uni0417 -4 public.kern2.uni0425 -17 public.kern2.uni0427 -31 public.kern2.uni042A -35 public.kern2.uni0430 10 public.kern2.uni0430.alt01 5 public.kern2.uni0435 9 public.kern2.uni0436 -8 public.kern2.uni0437 -2 public.kern2.uni0442 -1 public.kern2.uni0443 -5 public.kern2.uni0445 -17 public.kern2.uni0447 -10 registered -5 seveninferior 28 sevensuperior -24 sixinferior 8 sixsuperior -10 slash 4 threeinferior 8 trademark -15 twoinferior 8 underscore -60 uni0408 -2 uni0414 -13 uni0424 4 uni042F -18 uni0431 5 uni0434 -18 uni0444 5 uni0455 2 uni0492 6 uni0493 9 uni04AE -59 uni04AF -13 uni04B0 -59 uni04B1 -13 uni04D4 -7 zeroinferior 10 zerosuperior -20 uni0442 ampersand -31 copyright 2 eightinferior -33 eightsuperior 10 fiveinferior -23 fivesuperior 15 fourinferior -52 foursuperior 21 nineinferior -33 oneinferior -33 onesuperior 8 parenright -6 public.kern2.asterisk 6 public.kern2.braceright -6 public.kern2.comma -87 public.kern2.emdash -6 public.kern2.guillemotleft -6 public.kern2.guillemotright 4 public.kern2.quotedblleft 11 public.kern2.quotedblright 17 public.kern2.uni0402 -14 public.kern2.uni0404 3 public.kern2.uni0409 -49 public.kern2.uni040E -39 public.kern2.uni0410 -54 public.kern2.uni0416 -46 public.kern2.uni0417 -3 public.kern2.uni0425 -52 public.kern2.uni0427 -9 public.kern2.uni042A -14 public.kern2.uni0430 2 public.kern2.uni0430.alt01 -1 public.kern2.uni0435 -1 public.kern2.uni0436 4 public.kern2.uni0437 2 public.kern2.uni043B -30 public.kern2.uni0442 10 public.kern2.uni0443 6 public.kern2.uni0445 8 public.kern2.uni0447 13 public.kern2.uni0452 -6 public.kern2.uni04BB -6 registered 15 seveninferior -6 sixinferior -50 sixsuperior 10 slash -55 threeinferior -20 threesuperior 21 trademark -2 twoinferior -20 twosuperior 18 underscore -74 uni0408 -53 uni0414 -39 uni0424 6 uni042F -6 uni0431 4 uni0434 -22 uni0440 5 uni0444 -1 uni044F 3 uni0455 2 uni0492 6 uni04AE -48 uni04AF 6 uni04B0 -48 uni04B1 6 uni04D4 -69 zeroinferior -33 zerosuperior 10 uni0444 eightinferior 10 fiveinferior 8 fivesuperior -6 fourinferior -6 foursuperior 1 nineinferior 10 ninesuperior -31 oneinferior 4 onesuperior -10 public.kern2.asterisk -24 public.kern2.comma -26 public.kern2.emdash 20 public.kern2.guillemotleft 35 public.kern2.guillemotright -4 public.kern2.quotedblleft -31 public.kern2.quotedblright -27 public.kern2.uni0402 -41 public.kern2.uni040E -51 public.kern2.uni0410 -12 public.kern2.uni0416 -25 public.kern2.uni0417 -4 public.kern2.uni0425 -24 public.kern2.uni0427 -31 public.kern2.uni042A -41 public.kern2.uni0430 7 public.kern2.uni0430.alt01 5 public.kern2.uni0435 10 public.kern2.uni0436 -10 public.kern2.uni0437 -2 public.kern2.uni0442 -1 public.kern2.uni0443 -6 public.kern2.uni0445 -15 public.kern2.uni0447 -10 registered -5 seveninferior 16 sevensuperior -32 sixinferior 4 sixsuperior -10 slash 4 threeinferior 4 trademark -15 twoinferior 4 twosuperior 2 underscore -50 uni0414 -10 uni0424 4 uni042F -18 uni0431 5 uni0434 -15 uni0444 5 uni0492 6 uni0493 9 uni04AE -90 uni04AF -13 uni04B0 -68 uni04B1 -13 uni04D4 -15 zeroinferior 10 zerosuperior -12 uni0445 ampersand -20 at -10 eightinferior -6 eightsuperior 12 fivesuperior 10 fourinferior -8 foursuperior 20 nineinferior -20 ninesuperior 16 public.kern2.asterisk 12 public.kern2.comma 12 public.kern2.emdash -35 public.kern2.guillemotleft -20 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.quotedblright 20 public.kern2.uni0402 -16 public.kern2.uni0409 16 public.kern2.uni040E -29 public.kern2.uni0410 6 public.kern2.uni0416 14 public.kern2.uni0425 8 public.kern2.uni0427 -21 public.kern2.uni042A -16 public.kern2.uni0430.alt01 -15 public.kern2.uni0435 -17 public.kern2.uni0436 9 public.kern2.uni0437 -2 public.kern2.uni043B 18 public.kern2.uni0442 4 public.kern2.uni0443 7 public.kern2.uni0447 3 registered 20 seveninferior -10 sixinferior -8 sixsuperior 12 slash 8 threeinferior 7 threesuperior 8 trademark 10 twoinferior 10 twosuperior 10 underscore 20 uni0408 6 uni0414 15 uni042F 10 uni0431 -5 uni0434 16 uni0444 -15 uni044F 11 uni0455 -4 uni04AE -29 uni04AF 7 uni04B0 -29 uni04B1 7 uni04D4 6 zerosuperior 22 uni0452 ampersand -6 eightinferior -6 eightsuperior -8 fivesuperior -10 fourinferior -2 foursuperior -4 nineinferior -2 ninesuperior -23 oneinferior -8 onesuperior -13 public.kern2.asterisk -26 public.kern2.comma -20 public.kern2.guillemotright -6 public.kern2.quotedblleft -30 public.kern2.quotedblright -21 public.kern2.uni0402 -20 public.kern2.uni0404 -12 public.kern2.uni0409 -4 public.kern2.uni040E -63 public.kern2.uni0410 -16 public.kern2.uni0416 -20 public.kern2.uni0417 -16 public.kern2.uni0425 -20 public.kern2.uni0427 -24 public.kern2.uni042A -20 public.kern2.uni0430 -9 public.kern2.uni0430.alt01 -9 public.kern2.uni0432 -10 public.kern2.uni0435 -9 public.kern2.uni0436 -11 public.kern2.uni0437 -8 public.kern2.uni043B -8 public.kern2.uni0442 -12 public.kern2.uni0443 -15 public.kern2.uni0445 -11 public.kern2.uni0447 -35 public.kern2.uni0452 -10 public.kern2.uni0456 -10 public.kern2.uni04BB -10 registered -22 seveninferior -2 sevensuperior -31 sixinferior -2 sixsuperior -8 slash -19 threesuperior -8 trademark -44 twosuperior -4 underscore -20 uni0405 -6 uni0408 -4 uni0424 -17 uni042F -20 uni0431 -9 uni0434 -9 uni0440 -4 uni0444 -9 uni044F -7 uni0455 -8 uni0493 -5 uni04AE -60 uni04AF -15 uni04B0 -60 uni04B1 -15 uni04D4 -4 zeroinferior -6 zerosuperior -14 uni0454 ampersand -3 eightinferior -2 fivesuperior 1 foursuperior 4 nineinferior -4 ninesuperior -3 public.kern2.asterisk -9 public.kern2.comma -13 public.kern2.emdash -9 public.kern2.guillemotleft -3 public.kern2.guillemotright -3 public.kern2.quotedblright 4 public.kern2.uni0402 -29 public.kern2.uni040E -38 public.kern2.uni0410 -3 public.kern2.uni0416 -13 public.kern2.uni0425 -10 public.kern2.uni0427 -18 public.kern2.uni042A -29 public.kern2.uni0430 -1 public.kern2.uni0430.alt01 -9 public.kern2.uni0435 -9 public.kern2.uni043B -2 public.kern2.uni0442 -3 public.kern2.uni0443 -2 public.kern2.uni0445 2 public.kern2.uni0447 -7 public.kern2.uni0452 -4 public.kern2.uni04BB -4 seveninferior -3 sevensuperior -10 sixinferior -2 slash -5 threesuperior 4 trademark -13 twosuperior 4 underscore -26 uni0414 -6 uni0424 -1 uni042F -6 uni0434 -10 uni0444 -9 uni044F 6 uni0455 -2 uni04AE -65 uni04AF -2 uni04B0 -65 uni04B1 -2 zeroinferior -2 uni0455 ampersand -5 eightinferior -4 eightsuperior 7 fiveinferior 1 fivesuperior 7 fourinferior 5 nineinferior -6 ninesuperior -14 oneinferior -10 onesuperior -12 public.kern2.asterisk -10 public.kern2.comma -16 public.kern2.emdash -10 public.kern2.quotedblleft -10 public.kern2.uni0402 -20 public.kern2.uni0404 10 public.kern2.uni0409 9 public.kern2.uni040E -47 public.kern2.uni0410 -5 public.kern2.uni0416 -10 public.kern2.uni0417 -4 public.kern2.uni0425 -23 public.kern2.uni0427 -26 public.kern2.uni042A -20 public.kern2.uni0430 -4 public.kern2.uni0436 -2 public.kern2.uni0437 -3 public.kern2.uni0442 -3 public.kern2.uni0443 -4 public.kern2.uni0447 -5 seveninferior -7 sevensuperior -12 sixinferior 5 sixsuperior 8 slash -10 threeinferior -4 threesuperior -5 trademark -6 twoinferior -14 twosuperior -10 underscore -24 uni0408 5 uni0414 -9 uni042F -10 uni0434 -9 uni044F 2 uni0455 -6 uni0492 6 uni04AE -42 uni04AF -3 uni04B0 -42 uni04B1 -3 uni04D4 -5 zeroinferior 6 zerosuperior -4 uni0457 asterisk 15 braceright 12 bracketright 12 eightsuperior 4 fivesuperior 4 ninesuperior 6 onesuperior 4 parenright 14 question 28 quotedbl 15 quotedblleft 2 quotedblright 25 quoteleft 2 quoteright 25 quotesingle 15 sevensuperior 8 threesuperior 6 trademark 36 twosuperior 6 uni0400 9 uni0401 9 uni0402 18 uni0403 9 uni0406 9 uni0407 9 uni040A 9 uni040B 18 uni040C 9 uni040D 9 uni040E 4 uni040F 9 uni0411 9 uni0412 9 uni0413 9 uni0415 9 uni0416 2 uni0418 9 uni0419 9 uni041A 9 uni041C 9 uni041D 9 uni041F 9 uni0420 9 uni0422 18 uni0423 4 uni0426 9 uni0427 18 uni0428 9 uni0429 9 uni042A 18 uni042B 9 uni042C 9 uni042E 9 uni0452 10 uni045B 10 uni0490 9 uni0492 9 uni0494 9 uni0496 2 uni049A 9 uni049C 9 uni04A0 18 uni04A2 9 uni04A4 9 uni04AE 24 uni04B0 24 uni04B6 18 uni04B8 18 uni04BA 9 uni04BB 10 uni04C0 9 uni04C1 2 uni04CF 10 uni04D6 9 uni04DC 2 uni04E2 9 uni04E4 9 uni04EE 4 uni04F0 4 uni04F2 4 uni04F4 18 uni04F8 9 zerosuperior 3 uni0458 ninesuperior -10 onesuperior 20 parenright 10 public.kern2.asterisk -20 public.kern2.comma -20 public.kern2.guillemotleft 6 public.kern2.guillemotright -6 public.kern2.quotedblleft -19 public.kern2.quotedblright -11 public.kern2.uni0402 -10 public.kern2.uni0409 -10 public.kern2.uni040E -17 public.kern2.uni0410 -4 public.kern2.uni0416 -8 public.kern2.uni0417 -8 public.kern2.uni0425 -14 public.kern2.uni0427 -19 public.kern2.uni042A -10 public.kern2.uni043B -3 public.kern2.uni0442 -5 public.kern2.uni0447 -9 sevensuperior -10 slash -15 underscore -4 uni0408 -4 uni0414 -6 uni0424 -9 uni042F -8 uni0434 -8 uni04AE -30 uni04AF -3 uni04B0 -30 uni04B1 -3 uni04D4 -8 uni0490 ampersand -27 at -72 colon -52 comma -136 copyright -11 eightinferior -133 eightsuperior -11 ellipsis -136 emdash -136 endash -136 fiveinferior -120 fourinferior -128 foursuperior -13 guillemotleft -93 guillemotright -73 guilsinglleft -93 guilsinglright -73 hyphen -136 nineinferior -128 ninesuperior -11 oneinferior -116 parenright 6 period -136 quotedblbase -136 quotedblleft 6 quoteleft 6 quotesinglbase -136 registered 6 semicolon -52 seveninferior -120 sixinferior -136 sixsuperior -11 slash -112 softhyphen -136 threeinferior -120 twoinferior -120 underscore -81 uni0404 -45 uni0405 -28 uni0408 -52 uni0409 -58 uni0410 -109 uni0414 -42 uni0416 -6 uni0417 -13 uni041B -58 uni041E -45 uni0421 -45 uni0424 -66 uni042D -13 uni042F -56 uni0430 -126 uni0430.alt01 -139 uni0431 -61 uni0432 -114 uni0433 -114 uni0434 -112 uni0435 -121 uni0436 -106 uni0437 -106 uni0438 -114 uni0439 -114 uni043A -114 uni043B -124 uni043C -114 uni043D -114 uni043E -121 uni043F -114 uni0440 -108 uni0441 -121 uni0442 -102 uni0443 -90 uni0444 -124 uni0445 -106 uni0446 -114 uni0447 -118 uni0448 -114 uni0449 -114 uni044A -102 uni044B -114 uni044C -114 uni044D -106 uni044E -114 uni044F -118 uni0450 -87 uni0451 -71 uni0453 -114 uni0454 -121 uni0455 -109 uni0456 -25 uni0457 22 uni0458 -25 uni0459 -124 uni045A -114 uni045C -114 uni045D -114 uni045E -90 uni045F -114 uni0472 -45 uni0473 -121 uni0491 -114 uni0493 -114 uni0495 -114 uni0496 -6 uni0497 -106 uni0498 -13 uni0499 -106 uni049B -114 uni049D -114 uni04A1 -102 uni04A3 -114 uni04A5 -114 uni04AA -45 uni04AB -121 uni04AF -96 uni04B1 -96 uni04B3 -106 uni04B7 -118 uni04B9 -118 uni04C1 -6 uni04C2 -106 uni04D0 -109 uni04D1 -60 uni04D2 -109 uni04D3 -60 uni04D4 -136 uni04D5 -126 uni04D7 -55 uni04D8 -45 uni04D9 -121 uni04DC -6 uni04DD -106 uni04DE -13 uni04DF -68 uni04E3 -114 uni04E5 -114 uni04E6 -45 uni04E7 -71 uni04E8 -45 uni04E9 -121 uni04EF -90 uni04F1 -90 uni04F3 -90 uni04F5 -118 uni04F9 -114 zeroinferior -133 zerosuperior -11 uni0491 ampersand -15 at -6 copyright -2 eightinferior -40 emdash -38 endash -38 fiveinferior -25 fourinferior -36 guillemotleft -8 guilsinglleft -8 hyphen -38 nineinferior -36 ninesuperior 6 oneinferior -25 question 8 quotedblleft 8 quotedblright 17 quoteleft 8 quoteright 17 seveninferior -21 sevensuperior 6 sixinferior -40 slash -56 softhyphen -38 threeinferior -25 twoinferior -25 uni0430 -12 uni0430.alt01 -31 uni0434 -9 uni0435 -31 uni0436 -5 uni0437 -2 uni043B -9 uni043E -31 uni0441 -31 uni0444 -29 uni044D -2 uni044F -16 uni0450 -31 uni0451 -31 uni0454 -31 uni0455 -19 uni0457 20 uni0459 -9 uni0473 -31 uni0497 -5 uni0499 -2 uni04AB -31 uni04AE -3 uni04B0 -3 uni04C2 -5 uni04D1 -12 uni04D1.alt01 -31 uni04D3 -12 uni04D3.alt01 -31 uni04D5 -12 uni04D7 -31 uni04D9 -31 uni04DD -5 uni04DF -2 uni04E7 -31 uni04E9 -31 zeroinferior -40 uni0492 ampersand -42 at -38 eightinferior -93 eightsuperior 16 fiveinferior -80 fivesuperior 18 fourinferior -83 foursuperior 12 nineinferior -84 ninesuperior 26 oneinferior -80 onesuperior 25 parenright 20 public.kern2.asterisk 30 public.kern2.colon -10 public.kern2.comma -100 public.kern2.emdash -54 public.kern2.guillemotleft -56 public.kern2.guillemotright -30 public.kern2.quotedblleft 22 public.kern2.quotedblright 20 public.kern2.uni0402 22 public.kern2.uni0404 -11 public.kern2.uni0409 -65 public.kern2.uni040E 11 public.kern2.uni0410 -69 public.kern2.uni0417 -3 public.kern2.uni0425 4 public.kern2.uni0427 6 public.kern2.uni042A 22 public.kern2.uni0430 -44 public.kern2.uni0430.alt01 -49 public.kern2.uni0432 -16 public.kern2.uni0435 -49 public.kern2.uni0436 -23 public.kern2.uni0437 -26 public.kern2.uni043B -71 public.kern2.uni0442 -16 public.kern2.uni0443 2 public.kern2.uni0445 -4 public.kern2.uni0447 -8 public.kern2.uni04BB 6 question 26 registered 30 seveninferior -66 sevensuperior 22 sixinferior -91 sixsuperior 20 slash -86 threeinferior -80 threesuperior 20 trademark 25 twoinferior -80 twosuperior 20 underscore -95 uni0405 -7 uni0408 -57 uni0414 -45 uni0424 -16 uni042F -24 uni0431 -14 uni0434 -62 uni0440 -13 uni0444 -48 uni044F -47 uni0455 -38 uni0457 16 uni0493 -16 uni04AE 10 uni04AF 2 uni04B0 10 uni04B1 2 uni04D4 -112 zeroinferior -88 zerosuperior 26 uni0493 ampersand -31 copyright 2 eightinferior -33 eightsuperior 10 fiveinferior -20 fivesuperior 15 fourinferior -67 foursuperior 21 nineinferior -33 oneinferior -33 onesuperior 8 parenright -6 public.kern2.asterisk 6 public.kern2.braceright -6 public.kern2.comma -107 public.kern2.emdash -6 public.kern2.guillemotleft -10 public.kern2.guillemotright 4 public.kern2.quotedblleft 11 public.kern2.quotedblright 22 public.kern2.uni0402 -14 public.kern2.uni0404 3 public.kern2.uni0409 -57 public.kern2.uni040E -41 public.kern2.uni0410 -54 public.kern2.uni0416 -46 public.kern2.uni0425 -52 public.kern2.uni0427 -13 public.kern2.uni042A -14 public.kern2.uni0430 2 public.kern2.uni0430.alt01 -2 public.kern2.uni0435 -2 public.kern2.uni0436 3 public.kern2.uni0437 2 public.kern2.uni043B -30 public.kern2.uni0442 10 public.kern2.uni0443 6 public.kern2.uni0445 8 public.kern2.uni0447 13 public.kern2.uni0452 -6 public.kern2.uni04BB -6 registered 15 seveninferior -6 sixinferior -56 sixsuperior 10 slash -55 threeinferior -23 threesuperior 21 trademark -4 twoinferior -26 twosuperior 18 underscore -100 uni0408 -67 uni0414 -47 uni0424 6 uni042F -6 uni0431 7 uni0434 -21 uni0440 5 uni0444 -2 uni044F -1 uni0455 2 uni0492 6 uni04AE -54 uni04AF 6 uni04B0 -54 uni04B1 6 uni04D4 -90 zeroinferior -33 zerosuperior 10 uni0494 ampersand 4 copyright -6 eightsuperior -47 fivesuperior -20 fourinferior 10 foursuperior -30 ninesuperior -47 onesuperior -21 public.kern2.asterisk -50 public.kern2.colon -4 public.kern2.comma -8 public.kern2.guillemotleft 25 public.kern2.quotedblleft -61 public.kern2.quotedblright -53 public.kern2.uni0402 -44 public.kern2.uni0404 -7 public.kern2.uni040E -37 public.kern2.uni0410 -10 public.kern2.uni0417 -9 public.kern2.uni0425 -5 public.kern2.uni0427 -54 public.kern2.uni042A -44 public.kern2.uni0430 4 public.kern2.uni0430.alt01 1 public.kern2.uni0435 1 public.kern2.uni0436 -2 public.kern2.uni0437 -3 public.kern2.uni043B 6 public.kern2.uni0442 -15 public.kern2.uni0443 -9 public.kern2.uni0445 -2 public.kern2.uni0447 -34 public.kern2.uni0452 -3 public.kern2.uni04BB -2 registered -34 seveninferior -4 sevensuperior -47 sixsuperior -50 threeinferior 6 threesuperior -14 trademark -29 twosuperior -14 uni0405 -2 uni0424 -8 uni042F -6 uni0431 1 uni0434 -2 uni0440 -6 uni0444 1 uni044F 2 uni0458 22 uni0492 5 uni0493 2 uni04AE -45 uni04AF -21 uni04B0 -41 uni04B1 -21 uni04D4 -6 zerosuperior -47 uni0495 ampersand 3 copyright -6 eightinferior 6 eightsuperior -37 fivesuperior -32 fourinferior 11 foursuperior -19 nineinferior 6 ninesuperior -40 onesuperior -23 parenright 10 public.kern2.asterisk -41 public.kern2.emdash -7 public.kern2.guillemotleft 4 public.kern2.guillemotright -6 public.kern2.quotedblleft -38 public.kern2.quotedblright -38 public.kern2.uni0402 -52 public.kern2.uni0409 13 public.kern2.uni040E -48 public.kern2.uni0427 -59 public.kern2.uni042A -52 public.kern2.uni043B 14 public.kern2.uni0442 -27 public.kern2.uni0443 -6 public.kern2.uni0447 -27 public.kern2.uni0452 -3 public.kern2.uni04BB -3 question -4 registered -29 sevensuperior -50 sixinferior 6 sixsuperior -33 slash 18 threeinferior 6 threesuperior -23 trademark -51 twoinferior 6 twosuperior -23 underscore 12 uni0408 4 uni0414 6 uni0424 -6 uni0431 -2 uni0434 4 uni044F 8 uni0458 46 uni0493 4 uni04AE -85 uni04AF -27 uni04B0 -62 uni04B1 -25 zeroinferior 6 zerosuperior -35 uni0496 uni0457 2 uni0498 uni04D8 -3 uni049A uni0457 2 uni049C uni0457 2 uni04A0 uni0457 2 uni04A4 uni0457 22 uni04AE ampersand -46 at -60 copyright -29 eightinferior -80 exclamdown -32 fiveinferior -80 fivesuperior 4 fourinferior -100 foursuperior -10 nineinferior -80 ninesuperior 6 oneinferior -80 parenright 18 public.kern2.asterisk 16 public.kern2.colon -32 public.kern2.comma -60 public.kern2.emdash -50 public.kern2.guillemotleft -52 public.kern2.guillemotright -42 public.kern2.quotedblleft 18 public.kern2.quotedblright 18 public.kern2.uni0402 14 public.kern2.uni0404 -32 public.kern2.uni0409 -62 public.kern2.uni040E 3 public.kern2.uni0410 -55 public.kern2.uni0416 -12 public.kern2.uni0417 -14 public.kern2.uni0427 2 public.kern2.uni042A 14 public.kern2.uni0430 -72 public.kern2.uni0430.alt01 -90 public.kern2.uni0432 -50 public.kern2.uni0435 -74 public.kern2.uni0436 -58 public.kern2.uni0437 -65 public.kern2.uni043B -84 public.kern2.uni0442 -48 public.kern2.uni0443 -21 public.kern2.uni0445 -29 public.kern2.uni0447 -57 public.kern2.uni0456 -24 question 9 questiondown -70 registered 5 seveninferior -60 sevensuperior 18 sixinferior -80 slash -60 threeinferior -80 threesuperior 10 trademark 26 twoinferior -90 twosuperior 10 underscore -60 uni0405 -22 uni0408 -44 uni0414 -44 uni0424 -58 uni042F -51 uni0431 -49 uni0434 -76 uni0440 -40 uni0444 -90 uni044F -68 uni0455 -73 uni0457 10 uni0458 -20 uni0493 -50 uni04AE 4 uni04AF -27 uni04B0 4 uni04B1 -27 uni04D4 -80 zeroinferior -80 zerosuperior 8 uni04AF ampersand -22 at -2 eightinferior -34 eightsuperior 30 fiveinferior -28 fivesuperior 28 fourinferior -54 foursuperior 30 nineinferior -24 ninesuperior 30 oneinferior -36 onesuperior 8 parenright -6 public.kern2.asterisk 20 public.kern2.comma -68 public.kern2.emdash -12 public.kern2.guillemotleft -6 public.kern2.guillemotright -6 public.kern2.quotedblleft 33 public.kern2.quotedblright 40 public.kern2.uni0402 4 public.kern2.uni0404 4 public.kern2.uni0409 -44 public.kern2.uni040E -31 public.kern2.uni0410 -41 public.kern2.uni0416 -36 public.kern2.uni0425 -30 public.kern2.uni0427 -10 public.kern2.uni042A 4 public.kern2.uni0430 -16 public.kern2.uni0430.alt01 -13 public.kern2.uni0435 -13 public.kern2.uni0436 4 public.kern2.uni0437 -2 public.kern2.uni043B -38 public.kern2.uni0442 9 public.kern2.uni0443 17 public.kern2.uni0445 7 public.kern2.uni0447 10 public.kern2.uni0452 -5 public.kern2.uni04BB -5 registered 40 seveninferior -18 sixinferior -48 sixsuperior 30 slash -16 threeinferior -28 threesuperior 18 trademark 20 twoinferior -22 twosuperior 20 underscore -73 uni0408 -40 uni0414 -39 uni0424 -1 uni042F -13 uni0431 -2 uni0434 -29 uni0444 -13 uni044F -16 uni0455 -8 uni04AE -27 uni04AF 17 uni04B0 -27 uni04B1 17 uni04D4 -39 zeroinferior -26 zerosuperior 30 uni04B0 ampersand -44 at -56 copyright -23 eightinferior -74 fiveinferior -62 fivesuperior 4 fourinferior -80 foursuperior -10 nineinferior -70 ninesuperior 6 oneinferior -57 parenright 18 public.kern2.asterisk 16 public.kern2.colon -32 public.kern2.comma -60 public.kern2.emdash -50 public.kern2.guillemotleft -44 public.kern2.guillemotright -42 public.kern2.quotedblleft 18 public.kern2.quotedblright 18 public.kern2.uni0402 14 public.kern2.uni0404 -31 public.kern2.uni0409 -62 public.kern2.uni040E 3 public.kern2.uni0410 -55 public.kern2.uni0416 -16 public.kern2.uni0417 -14 public.kern2.uni0427 2 public.kern2.uni042A 10 public.kern2.uni0430 -70 public.kern2.uni0430.alt01 -71 public.kern2.uni0432 -50 public.kern2.uni0435 -71 public.kern2.uni0436 -58 public.kern2.uni0437 -65 public.kern2.uni043B -84 public.kern2.uni0442 -48 public.kern2.uni0443 -21 public.kern2.uni0445 -29 public.kern2.uni0447 -57 public.kern2.uni0456 -20 question 6 registered 5 seveninferior -50 sevensuperior 18 sixinferior -74 slash -60 threeinferior -62 threesuperior 10 trademark 26 twoinferior -67 twosuperior 10 underscore -60 uni0405 -22 uni0408 -44 uni0414 -44 uni0424 -49 uni042F -51 uni0431 -45 uni0434 -76 uni0440 -40 uni0444 -68 uni044F -68 uni0455 -73 uni0457 10 uni0458 -20 uni0493 -42 uni04AE 4 uni04AF -27 uni04B0 4 uni04B1 -27 uni04D4 -80 zeroinferior -68 zerosuperior 8 uni04B1 ampersand -22 at -2 eightinferior -34 eightsuperior 30 fiveinferior -28 fivesuperior 24 fourinferior -54 foursuperior 30 nineinferior -24 ninesuperior 30 oneinferior -36 onesuperior 4 public.kern2.asterisk 20 public.kern2.comma -58 public.kern2.emdash -12 public.kern2.guillemotleft -6 public.kern2.guillemotright -6 public.kern2.quotedblleft 27 public.kern2.quotedblright 44 public.kern2.uni0402 4 public.kern2.uni0404 4 public.kern2.uni0409 -40 public.kern2.uni040E -31 public.kern2.uni0410 -35 public.kern2.uni0416 -36 public.kern2.uni0425 -30 public.kern2.uni0427 -10 public.kern2.uni042A 4 public.kern2.uni0430 -16 public.kern2.uni0430.alt01 -13 public.kern2.uni0435 -13 public.kern2.uni0436 4 public.kern2.uni0437 -2 public.kern2.uni043B -34 public.kern2.uni0442 9 public.kern2.uni0443 17 public.kern2.uni0445 7 public.kern2.uni0447 10 public.kern2.uni0452 -5 public.kern2.uni04BB -5 registered 40 seveninferior -18 sixinferior -48 sixsuperior 30 slash -16 threeinferior -28 threesuperior 14 trademark 20 twoinferior -22 twosuperior 20 underscore -30 uni0408 -40 uni0414 -20 uni0424 -1 uni042F -13 uni0431 -2 uni0434 -24 uni0444 -13 uni044F -16 uni0455 -8 uni0458 14 uni04AE -27 uni04AF 17 uni04B0 -27 uni04B1 21 uni04D4 -39 zeroinferior -26 zerosuperior 30 uni04B2 ampersand -8 at -21 copyright -14 eightinferior 16 eightsuperior -6 fiveinferior 7 fivesuperior -10 fourinferior 16 foursuperior -46 nineinferior -13 ninesuperior -1 onesuperior -2 parenright 31 public.kern2.asterisk -6 public.kern2.braceright 9 public.kern2.colon 6 public.kern2.comma 21 public.kern2.emdash -61 public.kern2.guillemotleft -37 public.kern2.guillemotright -14 public.kern2.quotedblleft -15 public.kern2.quotedblright -9 public.kern2.uni0402 -3 public.kern2.uni0404 -35 public.kern2.uni0409 29 public.kern2.uni040E -5 public.kern2.uni0410 13 public.kern2.uni0416 9 public.kern2.uni0417 -11 public.kern2.uni0425 3 public.kern2.uni0427 -6 public.kern2.uni042A -3 public.kern2.uni0430 -4 public.kern2.uni0430.alt01 -20 public.kern2.uni0432 5 public.kern2.uni0435 -22 public.kern2.uni0436 19 public.kern2.uni0437 -6 public.kern2.uni043B 32 public.kern2.uni0442 -42 public.kern2.uni0443 19 public.kern2.uni0445 16 public.kern2.uni0447 -58 public.kern2.uni0452 5 public.kern2.uni0456 5 public.kern2.uni04BB 5 registered -16 seveninferior -24 sevensuperior 8 sixinferior 12 sixsuperior -31 slash 41 threeinferior 16 threesuperior -9 trademark 8 twoinferior 13 twosuperior -7 underscore 40 uni0405 -2 uni0408 18 uni0414 31 uni0424 -60 uni042F 8 uni0431 -16 uni0434 30 uni0440 2 uni0444 -16 uni044F 19 uni0458 79 uni04AE -2 uni04AF -30 uni04B0 -2 uni04B1 -18 uni04D4 19 zeroinferior 12 zerosuperior -6 uni04B3 ampersand -8 at -15 copyright -10 eightinferior -4 eightsuperior 8 fivesuperior 9 foursuperior 18 nineinferior -16 ninesuperior 4 onesuperior -9 parenright 31 public.kern2.asterisk -4 public.kern2.braceright 11 public.kern2.colon 9 public.kern2.comma 19 public.kern2.emdash -40 public.kern2.guillemotleft -26 public.kern2.guillemotright -12 public.kern2.quotedblleft -2 public.kern2.quotedblright 8 public.kern2.uni0402 -13 public.kern2.uni0404 -12 public.kern2.uni0409 21 public.kern2.uni040E -38 public.kern2.uni0410 9 public.kern2.uni0416 13 public.kern2.uni0417 -3 public.kern2.uni0425 11 public.kern2.uni0427 -29 public.kern2.uni042A -13 public.kern2.uni0430 -2 public.kern2.uni0430.alt01 -18 public.kern2.uni0435 -18 public.kern2.uni0436 17 public.kern2.uni0437 -1 public.kern2.uni043B 28 public.kern2.uni0442 -5 public.kern2.uni0443 18 public.kern2.uni0445 16 public.kern2.uni0447 -8 registered 6 seveninferior -16 sevensuperior -9 sixinferior -4 sixsuperior 13 slash 52 threeinferior 11 threesuperior 6 trademark -7 twoinferior 10 twosuperior 1 underscore 49 uni0408 13 uni0414 29 uni0424 -12 uni042F 10 uni0431 -11 uni0434 34 uni0440 5 uni0444 -18 uni044F 19 uni0455 -2 uni0458 86 uni04AE -42 uni04AF 2 uni04B0 -42 uni04B1 2 uni04D4 17 zerosuperior 13 uni04C1 uni0457 2 uni04CF parenright 6 public.kern2.guillemotleft 6 public.kern2.quotedblleft -18 public.kern2.quotedblright -10 public.kern2.uni0402 6 public.kern2.uni0409 4 public.kern2.uni042A 6 public.kern2.uni043B 10 public.kern2.uni0442 -7 public.kern2.uni0443 -6 public.kern2.uni0447 -16 registered -9 uni0414 10 uni0424 -6 uni0434 8 uni044F 4 uni04AF -6 uni04B1 -6 uni04DC uni0457 2 uni04DE uni04D8 -3 uni04EE uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uni04F0 uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uni04F2 uni0451 -34 uni0457 4 uni04D1 -32 uni04D3 -32 uni04D7 -34 uni04E7 -34 uogonek dotlessj 2 j 2 jacute 2 jcircumflex 2 parenright 23 v V -12 X -12 ampersand -12 eightinferior -30 eightsuperior 30 fiveinferior -22 fivesuperior 28 fourinferior -42 foursuperior 30 nineinferior -20 ninesuperior 30 oneinferior -32 onesuperior 8 parenright -10 public.kern2.A -27 public.kern2.C 10 public.kern2.J -40 public.kern2.S 10 public.kern2.T 6 public.kern2.W -5 public.kern2.Y -25 public.kern2.a -14 public.kern2.a.alt01 -9 public.kern2.asterisk 20 public.kern2.c -11 public.kern2.comma -62 public.kern2.emdash -10 public.kern2.g -14 public.kern2.guillemotright -2 public.kern2.quotedblleft 35 public.kern2.quotedblright 40 public.kern2.s -2 public.kern2.u 1 public.kern2.w 16 public.kern2.y 23 registered 56 seveninferior -10 sixinferior -42 sixsuperior 30 slash -15 threeinferior -22 threesuperior 18 trademark 20 twoinferior -12 twosuperior 20 underscore -70 v 19 zeroinferior -20 zerosuperior 30 x V -20 ampersand -20 at -10 eightinferior -6 eightsuperior 12 fivesuperior 10 foursuperior 20 nineinferior -20 ninesuperior 4 public.kern2.A 2 public.kern2.J 2 public.kern2.T -16 public.kern2.U -8 public.kern2.W -10 public.kern2.Y -29 public.kern2.a.alt01 -15 public.kern2.asterisk 12 public.kern2.c -17 public.kern2.comma 12 public.kern2.emdash -35 public.kern2.guillemotleft -20 public.kern2.guillemotright -10 public.kern2.quotedblleft 10 public.kern2.quotedblright 20 public.kern2.s -4 registered 20 seveninferior -10 sixinferior -8 sixsuperior 12 threeinferior 7 trademark 10 twoinferior 10 twosuperior 2 underscore 20 zerosuperior 22 zeroinferior V -54 X 13 fiveinferior -1 oneinferior -2 public.kern2.A 20 public.kern2.J 12 public.kern2.S 10 public.kern2.T -62 public.kern2.U -2 public.kern2.W -40 public.kern2.Y -80 public.kern2.a 22 public.kern2.a.alt01 28 public.kern2.c 36 public.kern2.comma -2 public.kern2.f -10 public.kern2.g -10 public.kern2.s 1 public.kern2.t -10 public.kern2.uni0402 -62 public.kern2.uni0409 17 public.kern2.uni040E -43 public.kern2.uni0410 20 public.kern2.uni0416 4 public.kern2.uni0425 13 public.kern2.uni0427 -48 public.kern2.uni042A -62 public.kern2.uni0430 22 public.kern2.uni0430.alt01 20 public.kern2.uni0435 36 public.kern2.uni0436 -4 public.kern2.uni043B 16 public.kern2.uni0442 -33 public.kern2.uni0443 -27 public.kern2.uni0447 -28 public.kern2.w -22 public.kern2.y -27 public.kern2.z 10 uni0405 10 uni0408 12 uni0414 6 uni0431 17 uni0434 -2 uni0444 10 uni044F 6 uni0455 7 uni0492 18 uni0493 16 uni04AE -80 uni04AF -26 uni04B0 -68 uni04B1 -26 uni04D4 20 v -20 zerosuperior V 20 X 12 b 21 fivesuperior -1 germandbls.alt01 12 jcircumflex 6 onesuperior -2 p 20 public.kern2.A -54 public.kern2.J -52 public.kern2.T 30 public.kern2.W 24 public.kern2.Y 8 public.kern2.a 10 public.kern2.comma -50 public.kern2.dotlessi 20 public.kern2.f 12 public.kern2.g -6 public.kern2.h 11 public.kern2.i 4 public.kern2.t 14 public.kern2.u 20 public.kern2.uni0402 30 public.kern2.uni0409 -85 public.kern2.uni040E 2 public.kern2.uni0410 -54 public.kern2.uni0416 -18 public.kern2.uni0427 12 public.kern2.uni042A 30 public.kern2.uni0430 10 public.kern2.uni0436 2 public.kern2.uni043B -43 public.kern2.uni0442 10 public.kern2.uni0443 38 public.kern2.uni0445 22 public.kern2.uni0447 9 public.kern2.uni04BB 11 public.kern2.w 38 public.kern2.y 38 public.kern2.z 20 thorn 21 uni0408 -52 uni0414 -54 uni0424 6 uni042F -9 uni0434 -26 uni0440 20 uni0444 -12 uni044F -9 uni0457 4 uni0492 12 uni04AE 8 uni04AF 30 uni04B0 8 uni04B1 30 uni04D4 -54 v 30 x 22 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/layercontents.plist000066400000000000000000000004371416264461600317730ustar00rootroot00000000000000 public.default glyphs extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/lib.plist000066400000000000000000001273561416264461600276610ustar00rootroot00000000000000 public.glyphOrder .notdef .null nonmarkingreturn space a a.alt01 b c d e f g g.alt01 g.alt02 h i j k l m n o p q r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X Y Z zero zero.alt01 zero.alt02 one two three four five six seven eight nine ampersand at hyphen softhyphen endash emdash underscore period ellipsis colon comma semicolon quotesingle quotedbl quoteleft quoteright quotedblleft quotedblright quotesinglbase quotedblbase guilsinglleft guilsinglright guillemotleft guillemotright exclamdown exclam questiondown question parenleft parenright bracketleft bracketright braceleft braceright slash backslash fraction percent perthousand bar brokenbar section paragraph copyright registered trademark ordfeminine ordmasculine degree prime primedbl asterisk dagger daggerdbl numbersign asciicircum asciitilde plus minus plusminus multiply divide equal approxequal notequal less greater lessequal greaterequal periodcentered bullet lozenge logicalnot radical integral infinity estimated litre numerosign partialdiff currency cent Euro florin sterling dollar yen baht coloncurrency lira naira rupee won sheqel dong kip tugrik peso guarani hryvnia cedi tenge rupeeindian liraturkish ruble bitcoin fi fl aacute abreve acircumflex adieresis adotbelow agrave ahook amacron aogonek aring aringacute atilde abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde aacute.alt01 abreve.alt01 acircumflex.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 ae aeacute cacute ccaron ccedilla ccircumflex cdotaccent dcaron dcroat eth eacute ebreve ecaron ecircumflex edieresis edotaccent edotbelow egrave ehook emacron eogonek etilde ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook ecircumflextilde schwa gbreve gcircumflex gcommaaccent gdotaccent gbreve.alt01 gcircumflex.alt01 gcommaaccent.alt01 gdotaccent.alt01 hbar hcircumflex dotlessi iacute ibreve icircumflex idieresis idotbelow igrave ihook imacron iogonek itilde ij ijacute dotlessj jacute jcircumflex kcommaaccent kgreenlandic lacute lcaron lcommaaccent ldot lslash nacute ncaron ncommaaccent ntilde napostrophe eng oacute obreve ocircumflex odieresis odotbelow ograve ohook ohungarumlaut omacron oslash oslashacute otilde ohorn ohornacute ohorndotbelow ohorngrave ohornhook ohorntilde ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhook ocircumflextilde oe racute rcaron rcommaaccent sacute scaron scedilla scircumflex scommaaccent germandbls germandbls.alt01 tbar tcaron tcommaaccent tcedilla thorn uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhungarumlaut umacron uogonek uring utilde uhorn uhornacute uhorndotbelow uhorngrave uhornhook uhorntilde wacute wcircumflex wdieresis wgrave yacute ycircumflex ydieresis ydotbelow ygrave yhook ytilde zacute zcaron zdotaccent Aacute Abreve Acircumflex Adieresis Adotbelow Agrave Ahook Amacron Aogonek Aring Aringacute Atilde Abreveacute Abrevedotbelow Abrevegrave Abrevehook Abrevetilde Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhook Acircumflextilde AE AEacute Cacute Ccaron Ccedilla Ccircumflex Cdotaccent Dcaron Dcroat Eth Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Eogonek Etilde Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde Schwa Gbreve Gcircumflex Gcommaaccent Gdotaccent Hbar Hcircumflex Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihook Imacron Iogonek Itilde IJ IJacute Jacute Jcircumflex Kcommaaccent Lacute Lcaron Lcommaaccent Ldot Lslash Nacute Ncaron Ncommaaccent Ntilde Eng Oacute Obreve Ocircumflex Odieresis Odotbelow Ograve Ohook Ohungarumlaut Omacron Oslash Oslashacute Otilde Ohorn Ohornacute Ohorndotbelow Ohorngrave Ohornhook Ohorntilde Ocircumflexacute Ocircumflexdotbelow Ocircumflexgrave Ocircumflexhook Ocircumflextilde OE Racute Rcaron Rcommaaccent Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls Tbar Tcaron Tcommaaccent Tcedilla Thorn Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhook Uhungarumlaut Umacron Uogonek Uring Utilde Uhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhook Uhorntilde Wacute Wcircumflex Wdieresis Wgrave Yacute Ycircumflex Ydotbelow Ydieresis Ygrave Yhook Ytilde Zacute Zcaron Zdotaccent mu Delta product summation Omega pi uni0430 uni0430.alt01 uni0431 uni0432 uni0433 uni0434 uni0435 uni0436 uni0437 uni0438 uni0439 uni043A uni043B uni043C uni043D uni043E uni043F uni0440 uni0441 uni0442 uni0443 uni0444 uni0445 uni0446 uni0447 uni0448 uni0449 uni044A uni044B uni044C uni044D uni044E uni044F uni0410 uni0411 uni0412 uni0413 uni0414 uni0415 uni0416 uni0417 uni0418 uni0419 uni041A uni041B uni041C uni041D uni041E uni041F uni0420 uni0421 uni0422 uni0423 uni0424 uni0425 uni0426 uni0427 uni0428 uni0429 uni042A uni042B uni042C uni042D uni042E uni042F uni04D3 uni04D1 uni04D3.alt01 uni04D1.alt01 uni04D5 uni0453 uni0491 uni0493 uni0495 uni0450 uni0451 uni04D7 uni0454 uni04DD uni04C2 uni0497 uni04DF uni0499 uni04CF uni04E5 uni045D uni04E3 uni045C uni049B uni049D uni04A1 uni0459 uni04A3 uni045A uni04A5 uni04E7 uni0473 uni04E9 uni04AB uni04EF uni04F1 uni04F3 uni045E uni04AF uni04B1 uni04B3 uni04F5 uni04B7 uni04B9 uni04F9 uni0455 uni045F uni0456 uni0457 uni0458 uni0452 uni045B uni04BB uni04D9 uni04D2 uni04D0 uni04D4 uni0403 uni0490 uni0492 uni0494 uni0400 uni0401 uni04D6 uni0404 uni04DC uni04C1 uni0496 uni04DE uni0498 uni04C0 uni04E4 uni040D uni04E2 uni040C uni049A uni049C uni04A0 uni0409 uni04A2 uni040A uni04A4 uni04E6 uni0472 uni04E8 uni04AA uni04EE uni04F0 uni04F2 uni040E uni04AE uni04B0 uni04B2 uni04F4 uni04B6 uni04B8 uni04F8 uni0405 uni040F uni0406 uni0407 uni0408 uni0402 uni040B uni04BA uni04D8 zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior onehalf uni2153 uni2154 onequarter threequarters uni2155 uni2156 uni2157 uni2158 uni2159 uni215A uni2150 uni215B uni215C uni215D uni215E uni2151 checkmark crossmark arrowleft arrowup arrowdown arrowright arrowupleft arrowupright arrowdownleft arrowdownright arrowupleftcorner arrowdownleftcorner arrowleftupcorner arrowrightupcorner arrowleftdowncorner arrowrightdowncorner arrowuprightcorner arrowdownrightcorner arrowleftarrowright arrowrightarrowleft arrowleftright arrowupdown arrowdowncounterclockhalf arrowdownclockhalf arrowhookleft arrowhookright arrowupleftcounterclock arrowuprightclock tilde tilde.alt01 macron dotaccent dieresis hungarumlaut acute grave circumflex caron breve breve.cyrl ring ringacute commaturnedtop caronslovak cedilla ogonek tildecomb macroncomb dotaccentcomb dieresiscomb hungarumlautcomb acutecomb gravecomb circumflexcomb caroncomb brevecomb ringcomb hookcomb commaturnedtopcomb caronslovakcomb horncomb cedillacomb dotbelowcomb commabelowcomb ogonekcomb breveacute brevegrave brevehook brevetilde dieresisacute dieresiscaron dieresisgrave circumflexacute circumflexbreve circumflexgrave circumflexhook dieresismacron circumflextilde tilde.case tilde.alt01.case macron.case dotaccent.case dieresis.case hungarumlaut.case acute.case grave.case circumflex.case caron.case breve.case breve.cyrl_case ring.case ringacute.case hookcomb.case breveacute.case brevegrave.case brevehook.case brevetilde.case dieresisacute.case dieresiscaron.case dieresisgrave.case circumflexacute.case circumflexbreve.case circumflexgrave.case circumflexhook.case dieresismacron.case circumflextilde.case nonbreakingspace fcclogo celogo public.truetype.instructions controlValue id 0 value 20 id 1 value 52 id 2 value 40 id 3 value 68 id 4 value 46 id 5 value 72 id 6 value 56 id 7 value 108 id 8 value 75 id 9 value 80 id 10 value 87 id 11 value 95 id 12 value 53 id 13 value 150 id 14 value 160 id 15 value 103 id 16 value 81 id 17 value 116 id 18 value 0 id 19 value 12 id 20 value -200 id 21 value 12 id 22 value 330 id 23 value 6 id 24 value 368 id 25 value 6 id 26 value 518 id 27 value 12 id 28 value 698 id 29 value 12 id 30 value 740 id 31 value 12 id 32 value 748 id 33 value 12 controlValueProgram PUSHW[ ] /* 1 value pushed */ 0 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 1 14 2 CALL[ ] /* CallFunction */ SVTCA[1] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 15 3 2 CALL[ ] /* CallFunction */ SVTCA[1] /* SetFPVectorToAxis */ PUSHW[ ] /* 8 values pushed */ 15 54 44 34 25 15 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 16 68 56 44 31 19 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 17 48 39 31 22 13 0 8 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 8 values pushed */ 1 106 86 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 2 138 112 84 60 36 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 3 84 64 52 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 4 120 98 76 52 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 5 76 62 48 34 18 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 6 98 84 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 7 51 42 33 24 14 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 8 74 60 47 34 20 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 9 68 54 44 34 22 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 10 60 48 38 28 16 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 11 54 46 36 28 16 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 12 104 84 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 13 37 30 23 16 10 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 14 35 30 23 16 10 0 8 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 18 8 7 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 0 DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ RDTG[ ] /* RoundDownToGrid */ ROUND[01] /* Round */ RTG[ ] /* RoundToGrid */ WCVTP[ ] /* WriteCVTInPixels */ PUSHW[ ] /* 3 values pushed */ 63 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 64 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 111 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 160 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 96 24 1 DELTAC1[ ] /* DeltaExceptionC1 */ PUSHW[ ] /* 3 values pushed */ 16 24 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 112 24 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 64 24 1 DELTAC3[ ] /* DeltaExceptionC3 */ PUSHW[ ] /* 3 values pushed */ 48 26 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 80 26 1 DELTAC2[ ] /* DeltaExceptionC2 */ fontProgram PUSHW[ ] /* 1 value pushed */ 0 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ PUSHW[ ] /* 1 value pushed */ 9 LT[ ] /* LessThan */ IF[ ] /* If */ PUSHB[ ] /* 2 values pushed */ 1 1 INSTCTRL[ ] /* SetInstrExecControl */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 511 SCANCTRL[ ] /* ScanConversionControl */ PUSHW[ ] /* 1 value pushed */ 68 SCVTCI[ ] /* SetCVTCutIn */ PUSHW[ ] /* 2 values pushed */ 9 3 SDS[ ] /* SetDeltaShiftInGState */ SDB[ ] /* SetDeltaBaseInGState */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 1 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ ROUND[01] /* Round */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 2 FDEF[ ] /* FunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 1 LOOPCALL[ ] /* LoopAndCallFunction */ POP[ ] /* PopTopStack */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 3 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ ROLL[ ] /* RollTopThreeStack */ MD[0] /* MeasureDistance */ ABS[ ] /* Absolute */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[00] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[00] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ NEG[ ] /* Negate */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ MDAP[1] /* MoveDirectAbsPt */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ ROUND[01] /* Round */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 EQ[ ] /* Equal */ IF[ ] /* If */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 64 EIF[ ] /* EndIf */ ELSE[ ] /* Else */ ROUND[01] /* Round */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 EQ[ ] /* Equal */ IF[ ] /* If */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 64 NEG[ ] /* Negate */ EIF[ ] /* EndIf */ EIF[ ] /* EndIf */ MSIRP[0] /* MoveStackIndirRelPt */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 4 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[10] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[10] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ MDAP[1] /* MoveDirectAbsPt */ MIRP[11101] /* MoveIndirectRelPt */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 5 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ LT[ ] /* LessThan */ IF[ ] /* If */ LTEQ[ ] /* LessThenOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 128 WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 64 WCVTP[ ] /* WriteCVTInPixels */ EIF[ ] /* EndIf */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ POP[ ] /* PopTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ PUSHB[ ] /* 1 value pushed */ 192 LT[ ] /* LessThan */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 192 WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ EIF[ ] /* EndIf */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 6 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ ROUND[01] /* Round */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ RDTG[ ] /* RoundDownToGrid */ ROUND[01] /* Round */ RTG[ ] /* RoundToGrid */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 7 FDEF[ ] /* FunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 6 LOOPCALL[ ] /* LoopAndCallFunction */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 8 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 64 ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 0 EIF[ ] /* EndIf */ ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 128 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 192 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 256 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 320 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHW[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ RCVT[ ] /* ReadCVT */ PUSHW[ ] /* 1 value pushed */ 384 LT[ ] /* LessThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 384 SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ RCVT[ ] /* ReadCVT */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ WCVTP[ ] /* WriteCVTInPixels */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 9 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ RCVT[ ] /* ReadCVT */ WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ ENDF[ ] /* EndFunctionDefinition */ formatVersion 1 maxFunctionDefs 10 maxInstructionDefs 0 maxStackElements 512 maxStorage 0 maxTwilightPoints 0 maxZones 1 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo/metainfo.plist000066400000000000000000000004761416264461600307060ustar00rootroot00000000000000 creator com.github.fonttools.ufoLib formatVersion 3 extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.otf000066400000000000000000004002141416264461600246040ustar00rootroot00000000000000OTTO  CFF /GPOSMUbQOS/2 l`cmapx head6hhea v$hmtxxL}n| maxpDPnameb-pLpost0d K3_<BUvh $,CPDn00oP ;IBM @ $,  "--@ G-gyQ  3  2 D: Z: &  @ & $ ", N  f 2l $   4  2 t:Copyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextRegularIBM;IBMPlexSerif-Text;2.006;2020Version 2.006 2020IBMPlexSerif-TextIBM Plex is a trademark of IBM Corp, registered in many jurisdictions worldwide.Bold MondayMike Abbink, Paul van der Laan, Pieter van Rosmalenhttp://www.boldmonday.comhttp://www.ibm.comThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLIBM Plex SerifTextHow razorback-jumping frogs can level six piqued gymnasts!Copyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextRegularIBM;IBMPlexSerif-Text;2.006;2020Version 2.006 2020IBMPlexSerif-TextIBM Plex is a trademark of IBM Corp, registered in many jurisdictions worldwide.Bold MondayMike Abbink, Paul van der Laan, Pieter van Rosmalenhttp://www.boldmonday.comhttp://www.ibm.comThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLIBM Plex SerifTextHow razorback-jumping frogs can level six piqued gymnasts!N 09@Zgz~~7Y #(/0O_s?    " & 0 3 : D p y !!!"!&!.!Q!^!!!!!!!"""""""+"H"`"e%''L+ 1:A[h{7Y#&01Pr?    & 0 2 9 D p t !!!"!&!.!P!S!!!!!!!"""""""+"H"`"d%''L+ F5F_=8)=F"'BB<߁ReF77&#ޔvtf>'&یcv "<FHR\`tzNRVD<>Td\L`T}lGScdzQINi;PRbHejf~M gnhA_opru]Jswqv^aniktlrB  '"$-%+NIKL_Hapjq  !*#)9:<;=@?>GEDTQJSPR\`fhg.Us,AF     QRzMTuwxybd{^\mvgNOPWY_`aceinoprs|VZI~HLS}UX][fhjklqt^[]moz|}~{uwxyv  &(46785/1230MOVXYZWcbdeUVYWXZ{|0IBMPlexSerif-Text9ijk lmB  >rnS'1;@HS[dpw~ '-6;BIS^lw%1<IVaq}.DKQWblrx~ $.:K]mq| &/4AHSXboy+/5AIOX]jqx} %,3=HVakv '.4DWgv    % 1 5 ; A M P V _ d q x    & , 4 ? K U Y _ k s y    % + 1 ; @ G P U W ^ k r y    ! ( / 6 = D K R Y ` g n u |      $ + 2 ? L S Z a h o v }  %,3:AHOV]dkry !(/6=DKRY`gnu|$+29@GNU\cjqx&9M_s +5>LW`jw #-7AJTan{$.8GQ[js';Nau| ,.nullCRa.alt01g.alt01g.alt02zero.alt01zero.alt02softhyphenprimeprimedblapproxequalnotequallessequalgreaterequallozengeradicalintegralinfinityestimatedlitrenumerosignpartialdiffEurobahtcoloncurrencyliranairarupeewonsheqeldongkiptugrikpesoguaranihryvniaceditengerupeeindianliraturkishrublebitcoinabreveadotbelowahookamacronaogonekaringacuteabreveacuteabrevedotbelowabrevegraveabrevehookabrevetildeacircumflexacuteacircumflexdotbelowacircumflexgraveacircumflexhookacircumflextildeaacute.alt01abreve.alt01acircumflex.alt01adieresis.alt01adotbelow.alt01agrave.alt01ahook.alt01amacron.alt01aogonek.alt01aring.alt01aringacute.alt01atilde.alt01abreveacute.alt01abrevedotbelow.alt01abrevegrave.alt01abrevehook.alt01abrevetilde.alt01acircumflexacute.alt01acircumflexdotbelow.alt01acircumflexgrave.alt01acircumflexhook.alt01acircumflextilde.alt01aeacutecacuteccaronccircumflexcdotaccentdcarondcroatebreveecaronedotaccentedotbelowehookemacroneogoneketildeecircumflexacuteecircumflexdotbelowecircumflexgraveecircumflexhookecircumflextildeschwagbrevegcircumflexgcommaaccentgdotaccentgbreve.alt01gcircumflex.alt01gcommaaccent.alt01gdotaccent.alt01hbarhcircumflexibreveidotbelowihookimacroniogonekitildeijijacutedotlessjjacutejcircumflexkcommaaccentkgreenlandiclacutelcaronlcommaaccentldotnacutencaronncommaaccentnapostropheengobreveodotbelowohookohungarumlautomacronoslashacuteohornohornacuteohorndotbelowohorngraveohornhookohorntildeocircumflexacuteocircumflexdotbelowocircumflexgraveocircumflexhookocircumflextilderacutercaronrcommaaccentsacutescedillascircumflexscommaaccentgermandbls.alt01tbartcarontcommaaccenttcedillaubreveudotbelowuhookuhungarumlautumacronuogonekuringutildeuhornuhornacuteuhorndotbelowuhorngraveuhornhookuhorntildewacutewcircumflexwdieresiswgraveycircumflexydotbelowygraveyhookytildezacutezdotaccentAbreveAdotbelowAhookAmacronAogonekAringacuteAbreveacuteAbrevedotbelowAbrevegraveAbrevehookAbrevetildeAcircumflexacuteAcircumflexdotbelowAcircumflexgraveAcircumflexhookAcircumflextildeAEacuteCacuteCcaronCcircumflexCdotaccentDcaronDcroatEbreveEcaronEdotaccentEdotbelowEhookEmacronEogonekEtildeEcircumflexacuteEcircumflexdotbelowEcircumflexgraveEcircumflexhookEcircumflextildeSchwaGbreveGcircumflexGcommaaccentGdotaccentHbarHcircumflexIbreveIdotaccentIdotbelowIhookImacronIogonekItildeIJIJacuteJacuteJcircumflexKcommaaccentLacuteLcaronLcommaaccentLdotNacuteNcaronNcommaaccentEngObreveOdotbelowOhookOhungarumlautOmacronOslashacuteOhornOhornacuteOhorndotbelowOhorngraveOhornhookOhorntildeOcircumflexacuteOcircumflexdotbelowOcircumflexgraveOcircumflexhookOcircumflextildeRacuteRcaronRcommaaccentSacuteScedillaScircumflexScommaaccentGermandblsTbarTcaronTcommaaccentTcedillaUbreveUdotbelowUhookUhungarumlautUmacronUogonekUringUtildeUhornUhornacuteUhorndotbelowUhorngraveUhornhookUhorntildeWacuteWcircumflexWdieresisWgraveYcircumflexYdotbelowYgraveYhookYtildeZacuteZdotaccentDeltaproductsummationOmegapiuni0430uni0430.alt01uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi04D3uni04D1uni04D3.alt01uni04D1.alt01uni04D5uni0453uni0491uni0493uni0495uni0450uni0451uni04D7uni0454uni04DDuni04C2uni0497uni04DFuni0499uni04CFuni04E5uni045Duni04E3uni045Cuni049Buni049Duni04A1uni0459uni04A3uni045Auni04A5uni04E7uni0473uni04E9uni04ABuni04EFuni04F1uni04F3uni045Euni04AFuni04B1uni04B3uni04F5uni04B7uni04B9uni04F9uni0455uni045Funi0456uni0457uni0458uni0452uni045Buni04BBuni04D9uni04D2uni04D0uni04D4uni0403uni0490uni0492uni0494uni0400uni0401uni04D6uni0404uni04DCuni04C1uni0496uni04DEuni0498uni04C0uni04E4uni040Duni04E2uni040Cuni049Auni049Cuni04A0uni0409uni04A2uni040Auni04A4uni04E6uni0472uni04E8uni04AAuni04EEuni04F0uni04F2uni040Euni04AEuni04B0uni04B2uni04F4uni04B6uni04B8uni04F8uni0405uni040Funi0406uni0407uni0408uni0402uni040Buni04BAuni04D8uni2153uni2154uni2155uni2156uni2157uni2158uni2159uni215Auni2150uni215Buni215Cuni215Duni215Euni2151checkmarkcrossmarkarrowleftarrowuparrowdownarrowrightarrowupleftarrowuprightarrowdownleftarrowdownrightarrowupleftcornerarrowdownleftcornerarrowleftupcornerarrowrightupcornerarrowleftdowncornerarrowrightdowncornerarrowuprightcornerarrowdownrightcornerarrowleftarrowrightarrowrightarrowleftarrowleftrightarrowupdownarrowdowncounterclockhalfarrowdownclockhalfarrowhookleftarrowhookrightarrowupleftcounterclockarrowuprightclocktilde.alt01breve.cyrlringacutecommaturnedtopcaronslovaktildecombmacroncombdotaccentcombdieresiscombhungarumlautcombacutecombgravecombcircumflexcombcaroncombbrevecombringcombhookcombcommaturnedtopcombcaronslovakcombhorncombcedillacombdotbelowcombcommabelowcombogonekcombbreveacutebrevegravebrevehookbrevetildedieresisacutedieresiscarondieresisgravecircumflexacutecircumflexbrevecircumflexgravecircumflexhookdieresismacroncircumflextildetilde.casetilde.alt01.casemacron.casedotaccent.casedieresis.casehungarumlaut.caseacute.casegrave.casecircumflex.casecaron.casebreve.casebreve.cyrl_casering.caseringacute.casehookcomb.casebreveacute.casebrevegrave.casebrevehook.casebrevetilde.casedieresisacute.casedieresiscaron.casedieresisgrave.casecircumflexacute.casecircumflexbreve.casecircumflexgrave.casecircumflexhook.casedieresismacron.casecircumflextilde.casenbspacefcclogocelogo2.6IBM Plex ? is a trademark of IBM Corp, registered in many jurisdictions worldwide.Copyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextIBM Plex Serif';Obu 1BScs{}rps_ IPlS>gO EMM+x?6YD AA8;[aZv ҽtY УfVp^e;/P D7Ҽ  E- A ;MxR4< | U۠ ,ս C CuVI[ _3BB3Y `qyx սcY 3F'-0Y6D \[ 3E [d\g š 9je~ D  l wY6D bR7+ ~ :ZZ`{"8)AA) +H3GY~s` )P6J[}t` BCI"!o@y hAiwukjx`{ <>\^=cz]fs p?_ rtgaebdm    !$)*+;<ABCDGH RUY[]mnp } FGgi'}|~>D #&)GJSV  "?IR  ?BUX`fimps}Fk%JS(  .5CH\ai!m  4 q  = J _  e z 4 j T;C\h&Xs*9[!s+xCS).yq:<:*/6=ELS\c$+07?GNU^f      $ + L T [ i !! !!!!!/!8!@!!!!!!!!!!!!!"""""*"-"5"="D"L"["c"m"t""""###%#2#@#N#\#h#v######$$%$,$4$;$B$I$R$[$c$f$n$u$x$}$$$$$$$$$%'%/%7%=%B%I%%%&9&&&&&&&''''%'0'='K'W''''''''''''''(( ((($(,(4(<(D(L(V(`(j(t(|((((((()))))6)B)R)\)h)r)u){)))))))))))))** ***%*I*Q*[*i*q*{*********++ +++$+*+4+;+\+d+r+++++++++,, ,,,V,],d,l,s,z,,,,,,,,,,,,----%-/-7------....v.............//3/;/B/G/N/W/`/k/v/~/////////////0 0-0P000011t11222 2 222/2J222222223c3j3333344!4b44454575:5t5w5z5}5555555555556@6G6f6r666667<777778888"8A8888899 939;999999: :H:h:::;%;,;0;4;S;Z;b;l;t;;;;< >>>C>K>>>>>>??F???@@>@E@m@@@@@@@AACASAcAAAAAAABEBBBBBBBBBBBBBBCC CCC!C*C0C8CBCOCZCmCxCCCCCCCD DD"D0DRD_DDDDEEE*EDEkEEEEEFF+FFFbFtFFFFG$GKGwGH HHH"H)H0H9H@HGHNHUH\HcHkHrHzHHHHHHHHHHHHHHHHII II I'I1I8I?IMIVIhIIIIIIIIIIIJJ JJJ#J*J1J8J?JGJNJWJ^JeJsJ|JJJJJJJKK KKKCp@[$++# $ iМ K#V 8Zaj q ) 03ӧ˜ ?$EH%BDV3D383ܪsZTSk+Y>]'Fi̭ЭcJgJicFTAT Ss wx|slajr>k`O | { > v 9  7  O u ^> v > Zv 1 ê׭`/DYDê׮`/EYD[3]VZuwX3:[Z`{31 H l / uݜ V Dh D0c ۼy0 `  . 4 : (}Gh $ C 7  " %  b w A* -M?bL?M ?F ~ ,5 r q 3 @1e 5   - w  P T nqp_woZ2` ^0s0Tu ^ x < j_Y'??'Y  I  d  d?ex|}|&'h3"S&'ױ_? d {ff{wllw dF85e]E=dbJU,ۏO4  6 6OG,޽Z8sKK`qyxھe@hFYY+BU[7i3O^&\g Kd5&c,lJd0'-;Va\r rS,s+VT ^e Kd´ V?1UW[x<@}ln=0A"/dLded5jЬQF|FiQ6.]ܹO:v:]O.X, 97Ԗ11I2KӀ9~8R" =,d %l=0A5/).6忿~<@hȸ/Mǜȳmhh\yPn fjìǯdW}Se`ʦ~h}ٽSpniŸВٽaYORt_RfD?M*LW^z0[NV+ C'VHkЫˮiP&PhiKגuTZW *\\ H_jMKfxcjF{fO/AC((CʮWg y03y|,A*6xW$cc?4  ?   # *    6i6cRR7+ z ? ]tdQS`^>Mdl?z   ?  z* z*(I* |m HYncn   SY)Y $ aѶsddqogptwm_@[ҹ8P(BD$Z mr92QE,ֻ_<u2D] K*55*o C?ss? Cˣ. ?ss? oi8*5?5K*8c cccZ 'XOǖ&PoiXPanPSƵnPXiŨƧƵPaoP&ZIWǁOXWI'#K#KeNILvNKZ f f f 'LvNK,Z  f   f N%NNY5~GNlʫxznXLklZ9rZ֢S&KSkʵڢx|olsN'FO'N^n@tXWC4`nyzlWLam> ;9bx}xxej 003 3/HA4s4HA//ٟzӥLthsb"w@x6do_>odyok1_((_1ko ks-@0>0-nsk{DdsN`kxcp`Ǧhw[g]:6Yedp{oT]Z`gGRfwbK''KEELrƤʤ`P7Pr`LA}5J_ͷ̷VII_VJTB**B@((@$f$)$<qYz0Rgνl9sy(JH8V&0Yq;{Qs9Gl`34L4%ooT"64Mq񧋧%4ghvtqWjqWt=:L4%ooP4%ooTg"64q"jq"M񧋧%4񧋧%4gqjqJ1lF1"`1i`ȋ`F`Mi`1`Nh`SmFSdSёSѾc?cd6 d\__\M\_Q_dhhdhh_U__UMU_Q_d99999999b9999bb9999dhh~  dhhhhd6ǫpvlvhcid\j[Oktjpe|xt}^ d,4JQ%Q8,4Qdbb:Gd::Fbbd:::;;:XCd:::X:XM;;6 sdEغ\>>\VGGVd GGGiSkk@kd\XQddNM o[?[?6&Qghغ?ʠy}uovgF>\U,?Lvl`xlntrl[k9N`t夵į]F_Fg]RRgЯȶ].1ra^O~Sɸ+[F>M^(xoP+F==FȪl`UJ,"^2[?O :Nco"PP"oo"P"Q䫦mFk.]+7ۮaGla[LKi^06PY#v|ivoxds#Ex0M++MF""FPtâƢcSGStcP*cA-PF W8W޿V#.#WV8V%Q1!6 K+*l_R6'03&(>7eر߱R>1>eR7V'&sY('h_VV_}oh(YY&sf\TT\f&&Yo}FbܵϞ얿ɣgpXfe@:p{wphpN'T%{4&+,"~wݣc@nVR2G~ ~rzupfn>Jxo"B&FFT𔱬w{wsov`BEJ{E+W+p'giV~|xldsmgZjXdIU(Ϙ׿E vT$YAYwpcwӬquyBk:bpF[W?Ңr|sphoX3Y:}~~Y2j= T+ XXdIU(ǎ9;Tb ttu[Yhmh-YFgGRp;,<%UX\cATz,ֽ@ֽ@SսcYTZ,PYS@Y@YSAuϱ`H[He[GJ* aEldq˛x|spu\6'NY>?ef{v{d\gtP>^_:<֦@ YAYATk  ,0Drn/E ,>G%H!5SaY^TGO-LD^TYS5YY O=8 85 TIYESD҉kaϽpY^+սYϘ׿N#T$IT$KYAYKD3t3DYDt,<캝z|rosR,6:qDV3DD3޽߲DYDZ,xplW7B [DV3D# Q # 6 # J! # 2 # 2( # 2 # & + # < = 1Rhǭ-J[mN[B ̲CL  沷ZkCdkm\W #  # ҄ # , # d # w( # d # Z& p \ # h # \d@ L # JS ( # CdK # J? J # JG $ Q $ 6 $ ! $  $ 2( $ 2 $ & + $  = r jB ̲Ckc ۼ[kCdkm\W $  $ ҄ $ , $ d $ ( $ d $ Z& p \ $ h $ +d@ L $ S 7( $ dK $ ? J $ G  ^Q j Q j l0 Σg +~Jk j ! j  q t q 6+x?MYMDv[;9F8W޿W"."WW8V%RX: 4k4Mrnt4vhn6PaWIHl`P6&03&() Q ) 6 ) f0 ) ! )  ) ; ) 2( ) @K3`) & + ) ) = ((߱K.UB fVp^e;/P#9)77*LdbgXW ) , ) d@ L ) S 5( ) "dK ) ? J ) G ( { 6 { ! {  { ; | 6 | ! |  | ; > H 8> v g! 9 9 ' 9 6 9 ! 9 i 9  ( 9 2 9 & + 9 s= ; B DtO DYQJb`iXW 9 K, ~1    O u ~1 03@K O ' ࿍ O u ࿍ O ' ࿍ O z! ^> v D l1 V D> Zv t' > Zv nt > Zv D > Zv Z; ۰D㧋3o;je~5oXD1 H l ' 1 H l 0 1 H l D 1 H l , z zDH l  Z9YZ`{9je~ DYDƪد`/7u / ' /  / ! / / hm / 2 / & + / C M / #=  {' / , d d Q d 2m d 2 d & + d ] f / .@ L / S 1( / .K / ? J / G ߱K/ UʭӲCi%#9@BfDloD8%,!9:"% j' Q0 D ` sQ ` Z0 ( V#UVm׬pWh0G^aKGS.3Yt~~o`RbsB;jG/Ͽop~Ik ` '! ` X P [/qNxCӨĘ ;#EH%DY;e9Y[+g']^6qv{vkktsgKge^3 3VY9Fo t X X hϜ V D. 4 : Q . 4 : 6 . 4 : (! . 4 :  . 4 : 2( . 4 : 2 . 4 : & + . 4 : C M . 4 :  = |bB D4 Jݽ/H^^eVW . 4 :  . 4 : ] f . i . i Q . i 2( . i 2 . i & + . i , ' z! Y' 2 7 5' 7 ! 7 7 ( 7 A2 7 M& + 7 {, `' G0 f; " % E " % ^6 " % \^! " % ;t " % p( " % y " % L& + " % N= " vs|xp|Wu$uWY+ZDdYgXVt" % I " % = " % o, " % Љ " % ^ u:( " % Њ " % & p \ " % Sh " % e@ L " % \^S N( " % UK " % \L? J " % \LG  E b [ b g0 a Yc(d!;~Jk b ! b ; w Ab0   * E * ^6 * b0 * /^! * t * q; * p( * y * L& + * != bB  YAY{C_dlXW * o, * 8@ L * /^S 1N( * (K * /L? J * /LG ~ 6 ~ ! ~ X ~ ; ,wCA AR3սY'սY'3WRA,5 r q j^! 3 E 3 ^6 3 ^! 3 nt 3 q; 3 p( 3 y 3 "L& + 3 x= bB r AY^G`_iZW 3 Po, I5 q ^Me I5 q X03@Ke [ @1e [ @1e ! 5 D E ~t D ; dJ;++WսY1lUxA E b0 D /o, !hӿhսcYPYAYcA<Ktlc - ]' - c - c! - y - km - ]2 - Q& + - ]C M - #=  ' - t, P T g P T g [ P T g 2m P T g 2 P T g & + P T g ] f - @ L - cS 1N( - K - Q? J - QG F!!¸ppn^TR yolhXttX E |b0 D ^ }[ ^ d0 _  EY/dιeG]Y;TwZ>3A Nl~vgG<\Y"a;aǐfpτ~Jk ^ ! ^ X [ @EYAYC>Xh"a0T`Dnu|vfdrp`O^x '' (V(-x b0 x D x D w} lA06q < [ < 6 < ! < < 2( < 2 < & + < C M < = gbB ǼսcY Xf]fZW <  < , Z c Z c [ Z c 2( Z c 2 Z c & + Z c ] f  @'  !    L2 I 3E I ^! I "p( I t I ?y I KL& + I yo, U' r_0 n; }\bKjwھ/9D4 PKUu$u\AAYA߽(YAt\~dU s ?~Bн@I %"%(I;@k;4 &7/1``/17'2 ZV;{03VeeZDq# $ 64dM0$0dM4V 556.Sa;j򘽬쓪_dtjX\~ddQNo,Sd'DkCl`p`olX"Mèl[p[nlSVȺOLǗS&Y6D .w5خ5 0 _*+*_'4ҼQZ\?c N;C)     8 W1 P( Y6Dr4%3DYD7ҼVZI `D> LRY6D1 OO YFF / 1 22 Y6Duݜ V Dj $33 '-l- 337 #Vg¯ʵX$$aXLLapTTgpVDZftII?#VgvdvV SvgV#?1II1ZDC *_&3ҽY3x3 Y&D6ҽw 5*_&3ҽw 5Ypln V 'Ҽ-3DEkln oVD6 vY & 1kln V &  )@;3HergpH1ΨûJ{YVYtNI'dh HR Rĵ7h߮R++hR7U@@562+ F YDO 1/TTkXp> SG9>Zhv{tf@V" % wԴ^@U@b^BUC!p ?oF '1ZvG[j4z4j#սYUVD8?*     _8 5 2G Y  ,5 r q - ,5 CF w  b x } hp@['G'D["Y"DһBLAA--%AUսYEUA%8--8A;B %)4j"սY (r  !Aս F  YAY  )? Aw Ur AYΠ q w )F T w{ 83Xn_n;fƹ-bU\!C&!K`s HF,Q!"!/!"!Q/RJwwJ? a AlCZ&Dc̳&J.S @A NotxsbeH# 2 # 8 $  $ 8  .l' 3^8)Z7D OFF'-0ZJ:YOD>\ֻ7Z"Car`jF'-0Z7DY4֣nB)Dyoss-) @K3`)  ) 8 γsfdwqjpx}vj^&TYYιiSm1HZveK*!:<%/ w 8 U~*_4&:xvl Y   f*"`@ʘMDcqhrH1ΧúʫfXyXhjOIVӫeZtXdc7To OWDҽYD  2 "= W1 P( Y6D' n*_2%: Y6DYDP(r1 P!V(=xwj [`q+d[ pX!hH  DP( -3D H 8> v ( " % ;t " % _8 'E E-j44F E-?? 3UA8ۺ6; AYA^-Fwnss#* y * t * _8 -ζsdcrqdos|s_K C!]HSf;NoU;< |t T t |_8 /4j0'rwoA Y  p4+C7ۛ<3Wm`n;fŹ[DgCY]D%U߸^>k;QVRat NL3  Jt y ]= 5 E 4j32pxkA  YAeB0T1G)p{lA [=Fl/S/b ARJA`1G4svkGgqoXPakU/N*ս ? !Aţ I2=AYCսyY  9> Y A T XUAAYΠ սYq 5 AYAv ?uYq - y  \ i\P $[!B, \ i\P $[!B,4,ޣa Xd(a4x} = } { } lC M } 8 I H0M#$[ X W#M/4j5c_ƽ\Y3+ԽYahPY Q(r t Y Yh &-Yr pxc~\;S;4k5սY8,G4w Ur AYΠ q t ^ 44r 3 3 nt @1e I8ۺX;w ?#? ;AYA^OFwnss#dA^)AYA-:; ?? ;A5 ^3AYA7:q  O N   Z 7a MY  N_ GY O   / Z˙ 7a MY  Ne_ GBY N U &N N U T  (s T N U  T ~s  N U Ta  (s Ta a ~s Ta }ZMU?CUJk&s Ta N U +Y V s +Y N U N N U }_ v ~s }_  s }_ N"I/s }_ N U Y sjk:/lAK#6Mm X RbB  X X N& p \ h X@ A XR lm+p(pxA XR X?GLӿH- MV7    7 #see  $<hb_ ۛ \ ^}(?U\ov),;CJ_k+;KRX`jsw{q0j3Ux'2<DKS\`hO 9 v $ ] { _  4 V y  $ 6 G V b o x S@d ?^{&<Qey%4@NXdmys$u QRL|$Lu?d:Up/>TjA PR S ~ 1Rhǭ-J[mNdM沷XkīCL   r ZjƫCkc  S+Wu$uW xW 03@Km ((߱K.%#9)77*  YA p  p`tm_jt{~| B!T |ݽ/9D  .o)owD @K3`5 q ^;je~! A  )h׺Өg $Q~xXGrimhxjdwtd\h ƲvhjwvjozvlbdjvwjhvxdPU1 J  Z սcY  D %.M. .K X X' YA(+M+qF p`to_jt{~~ƪد`/EYDZ I0Z [{0 & FW?G3A Nl~vgG<\Y"a;aǐ`n _|uk{k|u_B\xrg{gxr\b迵`Z[77[gPZnZ`nVKa(V#UVm׬pWh0G^aKGS.3Yt~~o`RbsB;jG/Ͽjl ɻZC\nqpNo}`p\^rpVtz  ۦa Yc(o"H 7+Y  D U#:jR ;sqn%,!9:"%  tսY>ldMwy~uhcsndRa torvzsttvt`tn_jr{~~}R %X3 omjOt ˣlvehxu~SSuxvl{K? 07%Ane~!: ϣg 5, xwov~lpx~usxv9YZ`{3 ujjutlltǨjSeSnjO ggr: FW սYA AսY NI R0Swob V D :rlQ- X2 : 583ܪsZTSk+Y>]'Fi̭ЭcJgJicFTAT Ss ypȾ@ron R6WeL\LMeMu&<ocW<vX:8+==+ۼF _L^ptwcdrqbFa sԺmýdY+XGYy~j?kox^~uhcsndS` ſ)ȽY ..EV&= !!"bB[c;L{S"K}t E -͏-8aY---ᇋY -AePAYAսYsePսYA 0U !!hDY) <= <) ҽoY DHDYD6ҽYoHҽY6D Q] uppwwnrsrp`tn_jt|~}R>UFFU\II\guucocuug!cA-PYA Vp֦e@7@peV M''MFF bJ;q  0B=G \ =GBe \ - սYAY h  AY Ot w&ҳ\JZJc\D&CA xNmѽ[mp m?YA M0|{rlsdODf[_x3 /DZҾaZ\4GTecpy b½_GVprn~߹} ~,;/Ṣlvghxu|SSuxvl{J=xd_dfpS\lrös`bpmghobm]\cJ: ?   40H#z>$0j> MU?CUJ_/ Go J;M?bL?M ? MMhɱN(-(WN6 :ggggl: fxp\ tOOt C :lggM  Yyӽ DYD6ҽ AYAս tO nK ҽY6D '0 LY NOޫE.{aRhǭ$J[mNeMͰףOVУfVpkl:/P#@;O`Px[7 ر_:KB;KY 3Q L_|V?BwBAY YW 5##=5CUN || NY Wpad;/R泤rzwlhoF$##; DZҾaZ\4GTecpy @ V$=xvl   .G*rwoA  hOYrUG$ԽmY;0 BH W03TY?C^7]W+ṭlvghxu|SSuxvl{J= Swobzkkvrl\j ös`bpmghobm]\c D#:9*#%,!9:"% 838838 6WeLhLMeM ?nJU.?!^H /aJ00aJ/ 0yZa# uhhuskkss``snggn W<vX:8)AA) }pp{ypce &Ӳ[J\Jd[C&C wwdfsrc bŶk`~~ grqZ };}: w}}w \H<0BY "ILN44PY rcdsp` : ?? < DQPdu{| 0;D gggglr: !,! V#= ֳ]@M@c]@ H :ZZ`{ 4j#ս tV D w ?vY J^b Y3E3ǽ 7 S^h`d]T!A,>v!øxjjy gN`T8ZQGOt /LQ4 D^htzwus0`J.躬{ojm|#:uddTDd[S%,!9;K\Q? p4C7ۛ<3Wm`n;fŹ[DgCY]D%U߸^>k;QVRat IE( `@ʘMDcqhrH1ΧúʫfXyXhjOIVӫeZtXdc7To JP w$ҲaK_KdaD$U4׸\D_D^\?4CU 1CИDF  CA2 RJtp![,0,6pv۪'/F/սY/>F\^JZqiddlxm`Aowr`*G __CY6CXh`ozqcfqkjn" 7ɻZC\nqpNo}`p\^rpVtz @ M 1.ʣlvehxu~TTuxvl{LAǫpvlvhcid\j[Oktjpe|xt}cA AG  J\2W2SF Pf_ƽ\Y3+ԽYahPvX-o"[ĽLY"2 2ƽtY+m(]R]TGYG fuϽpYZk*q Z&&ZHHVyʝeL/LyeVe.G5pxkA   UGGUZGGZgutdgdutgtjY}N e5սY8,G5Ӻ- |Z&Z^qG?p ̼|Z]Ӻ^0 xfkrp\ndsd}bosWt{ r*df}|{|tfdsn^X_rNoo~~xjfvtd\gztdQS`^>Mdl  6J!BVp\amS^m~T~WhU@\< K/i/_e/_K/׶ﲰp~|vnhn:3; ŵs``snghmbj_\b wtj Ycq+`V =Hҽ h'&'3'&'h3[HaսY_=P ||X76[[76X zkkvrl\jw 3WA.UAYAU "PDYDP" ر_:BB;KV(3U _Y22Y Dd_e fKhKis4tbzX     "#$%&'()*+,-./0123456789[\]^_`abcdeijklmnopqrstuvwxyz{|}~6666666666666666666666666666666666666666666666666(((((6UUUU6<<<<<<<<<<<<<<<<<<RRRRXXXXXXX222G6>@0H4Z>@6Md i8 GHMbi st      !# ' */ 1 3 46789GIJKLMNOQSTU#V(W#X(YZ\^dis8tz"#$%&'()*+,-./0123456789=>?@AIJKLMNOPQRSTUVWXYZ[\]^_`abcdeijklmnopqrstuvwxyz{|}~                                        !*45679GHIJKLMN O Q S T U VW XY Z [\]^st z "#$%&'()*+,-./0123456789=>?@Aijklmnopqrstuvwxyz{|}~      !*46789:GMNOQSTUVWXYZ[\]^bistzBDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~5  !#'*/1GHIJKLM~NOQSTU VW XYZ[\]^bist z     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~68GH Mbist8Mad it6GHd i st 6GHMbst Mi   !*478:GHIJKLM~N~O~Q~S T U V W X Y~Z~iz !"#$%&'()*+,-./0123456789:;<=>?@A[\]^_`abcdefghijklmnopqrstuvwxyz{|}~        68GMbit6GHMbi st  6GMdis *68GHMabdist   MitCU  !#'*/1346 7 9 GHIJKLMNOPQRSTUVWXYZ[\]^_abdis tz     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~             (6 GHM_abdist C   !#'*/14GHIJKLMN O Q STUVWXY Z [\]^abdtz"#$%&'()*+,-./0123456789=>?@ADEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~          &6 GHM_ab dist   C  GHMst   # ' * / 1 45679:DEFG[\]^_`abcde                                       "%',./36 9 :;<?BEGHIJKLO QRSTUVWXYabfghijklmnoqrs}        !*346789:_`abcdeijklmnopqrstuvwxyz{|}~  "%'(,./3:;<=?BEGOUVWXYabjklmnop~68b  ' ,<GOnou y `  ! #'*/13456789: ```"#$%&'()*+,-./0123456789=>?@ABDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdef g h i j k l m n o p q r s t u v w x y z { | } ~     (  q"%',!/369:;?@ADEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghi j k l m n o p q r s t u v w x y z { | } ~    ( 69:HILQRSTfghijklmuwxy0}~  :!4679NpOpQpUV WX YpZpijklmnopqrstuvwxyz{|}~(~c   V   46789$ VVV      [\]^_ ` a b c d e    ",3:;<=?BGZ aj k l m nqrsxyV| NNNN  ", 3<GaqrsxyN    y)NNNNyN  !#'*/134679i!"#$%&'()*+,-./0123456789:;<=>?@ABDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'(,./369:; <=?BEGHIJKLMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuv}~     -STUVWXz  8&&!#'/146 79:"#$%&'()*+,-./0123456789I J K L M N O P Q R S T U V W X Y Z [&\&]&^&_&`&a&b&c&d&e&ijklmnopqrstuvwxyz{|}~ &(69:=QRSTfghij&k&l&m&p}~!6ijklmnopqrstuvwxyz{|}~(~ 68at  ',<Gnox6dist  6ist   6s68Mi   :!49IJKLMNOQSTUVWXYZ[]bzijklmnopqrstuvwxyz{|}~ 68 GHMdist    6 7 9            46t4679t64679646 79t69Md i69Mdi69Md i#4679MSTd itz68GHM i s  H6GM`b*dae s(t;u H(88:::&N7<8 8 VX$(0   6st6Md iMbd st  $    68Mst  $    68H Mst     68GMist(0,*&68GMit !#'* /14679:IJKLMSTUVWX[ \] ^a bistuvzDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~   c     !5"#$%&'()*,+,-./01234678$9:HIJKLMNOQSTVXYZ\^abdi.rtuvz "#$%&'()*+,-./0123456789= > ? @ A BDEFG[\]^_`abcdefghi5j5k5l5m5n5o5p5q5r5s5t5u5v5w5x5y5z5{5|5}5~555,,  ! r     8 GHIJKLM[]bi st    " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9     <67"89GHMS(T(VX`bd2f$h$i st&z(""""   8 GHMbi st    68Mst   6ds6s`bd s(t+(((((*(*68GMdis&t&$!$68GHMdis&t& !68GHM st   (    )68GHM _a(bd$fhist  "68GHM _a(bist  GHMis t  68GMbist   6Hi t  t5NNNNNNNNNNNDNTTTT@@@@@NNNNNN888 F F F F $Z$/7)-99-999?9/0>7997.t9.t??9@xMXDHLLK4ZxZxLZxZxZx^8Zx2NO"|XDZxZxXDM.ZxM.^8^8Zx$Z$Z$$)/$&T()))*~---4,(,(,999--4--.t7.t/???/0>0>0>0>035H97998,9: :R;?@A[\]^_ ` a b c d e ijklmnopqrstuvwxyz{|}~ MitC6GHMd,it"      (6 GHM_abdist C &6 GHM_ab dist   C  GHMst  0MUVWXd ist   ,:;<BGO no  $    !Mbdist  ',GO bno!Mbdist  ',GO bnoIJKLMNOQSTUVWXYZ[#\]#^istz      "%(,./6 9 :;<=?BEGH I JKL O Q R S T UVWXYaf g h i jklmnopqrsu} ~         GIJKLMNOQSTU VW XYZ[\]^dfhirstz     " %'(,./369:;<=?BEGHIJKLQRSTUVWXYZa bfghijklmnopq r s uz{|}~   {IJKLMNOQSTUVWXYZ[#\]#^istz     "%(,./:;<=?BEGHIJKLO Q R S T UVWXYaf g h i jklmnopqrs} ~   tGHIJKLMN O Q S T U VW XY Z [\]^ist z     "%' (,.3:;=?BG JKQRSTU V W XYabfghijklmnoqrsu}~     yGIJKLMNOQSTUVWXYZ[\]^istz   "'(,./:;<=?BEGJKOQRSTUVWabfghijklmnopqrs}~   $GMbist  ',<GOnoxGHIJKLM~N~O~Q~S T U V W X Y~Z~istz   "%'(,./3:;<=BEGHIJKLQRSTUVWXYabfghijklmn o qrsu}~       GHIJKLMNOPQRSTUVWXYZ[\]^abdistz      !"#$%&'(,./369:; <=?BEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvx|}~     GHIJKLMwNOQSTUVWXYZ[\]^dfhirstz      !"#$%&'(,./36 9 :;<=?BEGJKMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnoqrstv|}~         wGHIJKLMN O Q STVXY Z [\]^abdstz    "%' (, /369:<BEHIJKLQRSTU V W XYabfghijklmnopqrsu}~         ist ', <no   is 'noUGHIJKLMUVWX[]bdirst   %',<GHIJKLQRSTUVWXYbfghinoux}   GIJKLMNOQSTU VW XYZ[\]^dfhirstz     " %'(,.369:;<=?BGHIJKLQRSTUVWXYZa bfghijklmnopq r s uz{|}~   VGIJKLM STUVWX[\]^bd irstz  "',3 :;<?BOZabjklmnoqrsy.z{|  $H Mt  ',< GO no      jGIJKLMNOQSTVXYZ[\]^itz  "'(,.:;<=?BGHIJKLQRSTZabfghijklmnopqrsuz{|}~Mbdist  ',GO no#UVWX[]ds  "', 3:<Bab jklmnoqrs'GHM1bdi4rst  "',<G noyV    (GHMist  ' ,<G nou   )G Mbdst   ',GO nou    )GMdirst  ',<Gnou   GMi  ',G     )GHMdis&t  ',<Gnou & !GHIJKLMNOQSTU!V(W!X(YZ[\]^dis(tz     " %'(,.369:;<=?BGHIJKLQRSTUVWXYZa bfghijklmnopq r s uz{|}~GHIJKLMNOQSTUV,WX,YZ[\]^is(tz     " %'(,.369:;<=?BGHIJKLQRSTUVWXYZa bfghijklmnopq r s uyz{|}~GHIJKLM1NOP QR STUVWXYZ[\]^df h i4rstz  " "%'( ,. /369:;<= ?BEG HIJKLQRSTUVWXYabfghijklmnopqrsuyV}~            (GHM$di$rt  ' ,<GnouyJ    nGIJKLMNOQSTUWYZitz "%'(,./3 6 9 :;=?BEGHILUVWXYajklmnoqrsu~       it'< i ',<no ]STUVWXbdf h it$z ') * + ,- .0 1 2 4 5 7 8 :;<> ?@ A BC D F Z noz { |                        FMNOQSTUVWXYZ[\]^d iz "(,./3:;<=?BEGabnoqrs~GMNOQSTUVWXYZ\^istz      !"#$%&'(./369:;<=?BEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxz{|}~ist  ',<no!Mist   ,<GO no  $    *GH_a(bist  ',<G no   GHIxJxKxLxMNxOxPQxRUWYxZx[\]^bdirstu      !"#$%&'(,./369<EGHILMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwxy}~x  {x{GHIJKLMNOPQRSTUVWXYZ[\]^bdistz      !"#$%&'(,/369:; <=?BEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvx|}~       GNOPQRSTUVWXYZ[]rstz   "%'(/69:;<=?BEGHIJKLOQRSTUVWXYZabfghijklmnopqrsyz{|}~ GHi t  '<no GHIJKLMNOQSTUVWXYZisz      !"#$%&'(,./369:;<=?BEGHIJKLMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwxy}~$GMbist  ',<GOno.GHM'di)rst  ',<GOnouxyO    +GHi rs  ',<GOnouxy   )GHMirst   ',<GOno       /GHMbdist  ',<GOnouxy   "GHMis t  ',<G  5GHMYbd irs t$  ',<GHIORSfnouxyx    GHIJKLMNOPQRSTUVWXYZ[\]^_ab dirstz      !"#$%&'(,./369:;<?BEGHIJKLMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwx y}~  GHIJKLMNOPQRSTUVWXYZ[\]^bdirstz      !"#$%&'(,./369:;<?B EGHIJKLMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwx y}~   GHIJKLM(NOPQRSTUVWXYZ[\]^df h i)rstz       !"#$%&'( ,. /369:;<=?BEGHIJKLMNPQRSTUVWXYZ[\]^_`ab cdefghijklmnopqrstvwxyOz{|}~        'GHMd irs  ' ,<noyH  eGI J K L MNOQSTUVWXYZ[]disz "%'(,./3:;<?BEGUVWXYajklmnopqrs~ XMNOQU VW XYZ\^ad it    "%'(,.3;<=GHIJKLQRSTUVWXYabfghiqrsu}~tGNOPQRSTUVWXYZ[]stz   "%'(/69:;<=?BEGJKOQRSTUVWXYZafghijklmnoqrsyz{|}~ !GHbirst  ',<nouy"GMbit  ',< GOno     && !*4678 9NOQYZ             !:;<B C DEFGHIJKLMNOPQRSTUVWXYZ[&\&]&^&_&`&a&b&c&d&e&fghijklmnopqrstuvwxyz{|}~   & " '(,.3:;<? BGH I L UVWZ a bj&k&l&m&nopq r s x| ~           !*34679:NOQYZk-      ! "#$%&'()*+,-./0123456789: ; < BD E F G [\]^ijklmnopqrstuvwxyz{|}~   "%'(,./3:;<=?BEGJKQRSTUVWXYabfghinqrs}~{            !#'*/134678:NOQYZk-               !" # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 :;<B D E F G HIJKLMNOPQRSTUVWXYZ[\]^_`abcdef g h ijklmnopqrstuvwxyz{|}~        "%'(,./3:;<BEGH I JKL Q R S T UVWXYZ abf g h i jklmnop q r s wx| } ~     !#'*/134678 :NOQYZk      !:;<B D E F G H IJKLMNOPQRSTUVWXYZ[\]^_`abcdef g h ijklmnopqrstuvwxyz{|}~    " '(,.369:;<= ?BGUVWZa bjklmnop q r s wxy|~    !*34 678:NOQYZk     !:;<BCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ ` a b c d e fghijklmnopqrstuvwxyz{|}~             !"#$&'(,.3: ;<=?B GHILMNOPU V W Z[\]^_`abcdej k l m nop q r s tvwx|~         !#'*/1346 78:NOQYZk             !:;<B C DEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~   "'(,.369:;<=?BGUVWZ abjklmnop qrswx| ~     %  !*478:NOQYZk             !:;<BCDEFGHIJKLMNOPQRSTUVWXYZ[%\%]%^%_`abcdefghijklmnopqrstuvwxyz{|}~     " '(,.3:;<=? BGUVWZ a bjklmnop q r s x| ~         !#'*/1346789NOQYZdk           ! "#$%&'()*+,-./0123456789: ; < =>?@ABCDEFGH[\]^_ ` a b c d e fghijklmnopqrstuvwxyz{|}~       !"#$%&'(,./369:; <=? BEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij k l m nopqrstuvx|}~                !*46 7 :NOQYZk              !:;<BDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~          " '(,.3:;<? BGH I L UVWZ a bjklmnop q r s x| ~    U     $" !*46 78:NOQYZk            !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[$\$]$^$_"`"a"b"c"d"e"f g h ijklmnopqrstuvwxyz{|}~   " "'(,.3:;=?BGHIJKLQRSTZ abfghij"k"l"m"nopq r s ux| }~0$ $  $ !* 3 45678 9NOQYZ$$$$$$$$$$$$$$$$$$$$$$$"$#$$$%$&$'$($)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$=>?@ABDEFG[\]^_`abcdef g h ijklmnopqrstuvwxyz{|}~          $$$ "'(,.3:;= ?BHIJKLOQ$R$S$T$UVWabf$g$h$i$jklmnoqrsu}$~   ,  !!#'*/145678 9: "#$%&'()*+,-./0123456789BDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghi!j!k!l!m!n!o!p!q!r!s!t!u!v!w!x!y!z!{!|!}!~!!!       "%(!,/369:;<= ?BEJKQRSTXYab fghijklmnopqrs}~!!! F      !#'*/146789NOQYZ  "#$%&'()*+,-./0123456789BDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~       "%'(,. 369:;<=?BG H I J K L OQRSTUVWXYabfghijklmnop qrswx}~   *     ! #'/146789NOQYZ      !"#$%&'()*+,-./0123456789:;<BDEFG[\]^_`abcdefghi j k l m n o p q r s t u v w x y z { | } ~       "'( .369:;<?BGJ K OQRSTabfghijklmnoqrsu}~        ! * 4679  !:;<=>?@ABDEFG[\]^_`abcdefghi j k l m n o p q r s t u v w x y z { | } ~          "%' ( , .3"69:;=?BG H I JKL O QRSTUVWXYabfghijklmnop qrsu}~   "    #'* /14679:NOQYZ"#$%&'()*+,-./0123456789BDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcde    "'369:;<?BJKOQRSTabfghijklmnoqrs} m       !#'* /1345679:    !" # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 :;<=>?@ABDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~        "'(,.369:;<?BGH I JKL OQ R S T abf g h i jklmnopqrsu} ~   L     !# ' */ 1 3456789:NOQYZ      "#$%&'()*+,-./0123456789BDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                     "'(,./36 9 :;<=?BEGHIJKLOQRSTUVWabfghijklmnopqrs}~       *       !* 45678 9:    " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 BDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~         "'( , 369:;= ?BH I J K L O Q R S T UVWabf g h i jklmnopqrs} ~     B     !*456789:NOQYZ  "#$%&'()*+,-./0123456789=>?@ABDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     "'(,./369:;=?BEGH I JKL OQRSTUVWabfghijklmnopqrsu}~ #8$J(K<  (  #   (( #         -               (&    ((  (                                  # #             (( (#(&?>  :"Q  - !#%''*,./"15$77)9:*IL,N^0zzABxAD+Z^~(*/226699;;>>ABDFHNQSUY[mqtvx{;      : ;2% +!!##$$6%%''***)++J,,..//112253344(55 77'99::4IL3NO&PPIQQ&RRIST<UUEVVDWWEXXDYZ&[[G\\F]]G^^Fzz< H  :H !!"-.34899:<2=ADG%HH;UZ[^_e fh+i~6*)J5( '487    .  -  !  . A! !!!"",##$$,%& ''((9**/++1,,"--$..///226699B;;#>>"AA"BB0DD0EFHI8JK7LL MN-QS UVWW=XY.[]^^__=`abb,cc!dd,ee-fh iiAjmqqrr!stvvwx@{|?}} ~9$1$>/>0"01B#"C  $    &    !!""##$&''()**-+.//001122334455 7799::'IL%NOPP:QQRR:ST,UU7VV6WW7XX6YZ[[9\\8]]9^^8ff;hh;zz,$  &  !! "9:< =ABB$DGIZ [^_efhi- ' )    2  (1 !""(#$%%&&((*)+--..#//"0233545667899::+;;==4>>??!@ABB3CDEE"FFHI JK)LL MNPPQT UWXYZZ.[`aa(bb2cefi jmpp1qsttvvwx/z{0||.}} ~*#"354!+ %+f0],e0,^,''F0)'v"?03R"2"008,i&\008e'p 7.4244t424a44V4l4 42|424S:#,9X0X0X0XJX6X;X'X@X>XDX7X<1J??K  3 B*BL ) 3PP A +A+ ))2$26$6JJ)'H7H"9"NN||*/>>9~9~MG5 6&")*???#'0164X7X?XBXBXBX^XBXBX?XBXYXYXYXYD_TX/XBX #%c4K4z$ ,k2L6QF2k2L6 4m4ZV-/#42q1l2%`;` ~4~2{,,%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%%+%+f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0ff0f09+9+,,,,,e0e0:,,,,,,,,,,,,,,,,,*)')')')'F0F0F0F0vv?0?0?? ??0?)?0?L0?r0r0333R"`02"2"2"l"80000+}08,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,88,8,,00088888,R"k-e'e'e'\pppppppppppppppppp    ...222224&&4444444444444444422222&4a4aaaa4a4a2a4a!j4a 44444V4V4V4V4X& 4 4 4 4 4222222222222222222222222444S:S:S:S:S:4####|4,,,,,,,,,,,,,,,,,,999q~*4h92o%+f0*.800k,+,00K0f008,0i&, 170v p0|0!00%0,=0Hs44944 d9444l4424|42#S.4"44#4t484%+%+f0f09+00&20,,,,++@,,0!000K0b0f0!'0Z0$08,8,8,,Av  y 0080?0?3ovv"*94949&44442   d9d9a4444444=#$4442222"""4S:4a4a4##42v%f$\$[s^%l*R t)l$v%f$\$[s^%l*R t)l$$$w$s$?$v$Lhl$A%$$aj%9 $s\K\\\K\\\\\\\K\K\K\K\\\K\K\J\\ \!\I\J\f\eXXXXXXXXXXXXXXXX3XX]qkcckfkkk]gdgcccg]XXXXXXXXXXXXXXkkk]gdgcccg][extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.otf.ttx000066400000000000000000254322021416264461600254330ustar00rootroot00000000000000 Copyright 2020 IBM Corp. All rights reserved. IBM Plex Serif Text Regular IBM;IBMPlexSerif-Text;2.006;2020 IBM Plex Serif Text Version 2.006 2020 IBMPlexSerif-Text IBM Plex¨ is a trademark of IBM Corp, registered in many jurisdictions worldwide. Bold Monday Mike Abbink, Paul van der Laan, Pieter van Rosmalen http://www.boldmonday.com http://www.ibm.com This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL IBM Plex Serif Text How razorback-jumping frogs can level six piqued gymnasts! Copyright 2020 IBM Corp. All rights reserved. IBM Plex Serif Text Regular IBM;IBMPlexSerif-Text;2.006;2020 IBM Plex Serif Text Version 2.006 2020 IBMPlexSerif-Text IBM Plex® is a trademark of IBM Corp, registered in many jurisdictions worldwide. Bold Monday Mike Abbink, Paul van der Laan, Pieter van Rosmalen http://www.boldmonday.com http://www.ibm.com This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL IBM Plex Serif Text How razorback-jumping frogs can level six piqued gymnasts! rmoveto -74 callsubr -188 -57 callsubr -56 callsubr endchar 50 322 617 rmoveto 4 hlineto 115 -341 rlineto -234 hlineto return -90 238 50 rmoveto -57 -35 24 51 hvcurveto 20 vlineto 60 34 34 104 vhcurveto 63 -94 hlineto -65 -48 -30 -61 vhcurveto -39 -62 rmoveto 91 39 44 45 19 hvcurveto 4 -6 hlineto -51 29 -32 57 32 28 9 11 17 vhcurveto 39 -72 319 vlineto 104 -63 60 -117 -125 66 callsubr 117 callsubr hvcurveto return -25 29 callsubr 49 42 49 21 hvcurveto 6 -9 hlineto -49 28 -33 59 32 29 9 11 17 vhcurveto 39 -72 471 -40 vlineto 53 callsubr hvcurveto return -191 -276 rmoveto -96 callgsubr 246 50 -52 hlineto -225 648 -103 0 -225 -648 rlineto -52 hlineto return rmoveto 27 35 rlineto 31 40 18 34 29 vvcurveto 31 -19 24 -52 vhcurveto return rmoveto 132 156 -88 43 -75 -183 rlineto endchar rmoveto -30 callsubr -99 148 322 rmoveto 95 45 61 84 84 38 -64 -93 vhcurveto -11 -251 vlineto 134 -322 rmoveto -102 callgsubr 66 108 hvcurveto 29 350 25 vlineto 143 -82 101 -139 -135 -98 -108 -163 -163 88 -108 150 vhcurveto return 5 52 hmoveto 533 16 callsubr -524 -50 74 -598 -74 hlineto return -27 callsubr endchar rmoveto 43 23 30 130 callsubr 15 -27 hhcurveto -43 -23 -30 -44 -33 hvcurveto 22 -23 rlineto 27 27 8 7 20 hhcurveto 20 29 -16 -13 25 hvcurveto -12 24 25 -15 27 hhcurveto endchar 85 362 -12 rmoveto 4 callsubr 20 callsubr 28 callsubr 57 vmoveto -127 -73 95 141 hvcurveto -55 callsubr return -15 273 -12 rmoveto 82 50 49 43 16 hvcurveto 4 -92 hlineto 165 33 0 38 -71 13 return 45 callsubr 54 vmoveto 49 callsubr return rmoveto 62 hlineto 126 154 -28 20 -129 -98 -129 98 -28 -20 rlineto endchar 48 hmoveto 238 50 -71 return rmoveto 31 16 -75 183 -88 -43 rlineto endchar -286 -86 callsubr 598 -26 callsubr return 0 458 -167 -33 0 -38 71 -13 rlineto -106 callgsubr return 52 hmoveto 249 50 -74 return rmoveto 9 callsubr -98 123 -212 rmoveto 76 47 60 72 29 hvcurveto 211 548 32 callsubr -103 callgsubr 189 -490 -19 -51 rlineto -68 -25 -34 -30 -35 hhcurveto -7 -8 1 2 -8 hvcurveto 4 vlineto 12 5 12 15 21 vvcurveto 33 -19 22 -33 -39 -20 -23 -39 -47 32 -35 71 vhcurveto return rmoveto 113 52 54 59 39 -21 19 -35 -33 -20 -21 -33 -28 17 -17 20 -7 hvcurveto -3 vlineto -10 -21 -31 -5 -41 hhcurveto -39 -33 4 11 -21 hvcurveto 3 vlineto 20 7 17 17 28 vvcurveto 33 -20 21 -33 -35 -21 -19 -39 -59 52 -54 113 vhcurveto endchar -320 -90 callsubr 74 callsubr return -264 vlineto -129 49 -65 125 vhcurveto return rmoveto 51 callsubr -49 callsubr 369 74 50 -207 -50 74 111 callsubr vhcurveto return rmoveto 286 63 -286 hlineto endchar 34 hmoveto 238 50 -71 return rmoveto 129 102 129 -102 28 20 -126 154 -62 0 -126 -154 rlineto return rmoveto 124 154 -79 40 -76 -179 rlineto return 35 20 22 31 hvcurveto 4 vlineto 31 -20 22 -35 -35 -20 -22 -31 vhcurveto -4 vlineto -31 20 -22 35 vhcurveto return rmoveto 47 28 17 23 15 hvcurveto -24 23 rlineto -12 -9 -15 -10 -19 hhcurveto -28 -18 19 27 return rmoveto 130 157 -84 42 -77 -183 rlineto return -304 -51 callsubr 708 -100 callsubr -50 74 -598 -74 hlineto endchar rmoveto 129 99 129 -99 28 20 -126 151 -62 0 -126 -151 rlineto 221 178 rmoveto 43 23 28 130 callsubr 13 -27 hhcurveto -43 -23 -28 -44 -33 hvcurveto 22 -23 rlineto 27 27 8 7 20 hhcurveto 20 29 -16 -13 25 hvcurveto -12 24 25 -13 27 hhcurveto endchar 317 hlineto 66 59 31 56 77 36 -43 -92 vhcurveto -279 -70 -50 237 50 -71 286 vlineto 129 -49 65 -125 return 5 181 hmoveto 283 50 -91 239 hlineto 198 359 118 callsubr 199 -367 rlineto -231 -91 vlineto return 308 101 -101 callsubr -112 -69 127 hlineto -52 -108 rlineto endchar rmoveto 31 15 -76 179 -79 -40 rlineto 131 -285 -76 callsubr endchar -234 -146 -76 callsubr endchar -136 -16 -72 callsubr endchar 54 330 rmoveto 127 callsubr return vlineto -167 -33 0 -38 71 -13 rlineto return rmoveto -127 -73 95 141 hvcurveto return 596 -100 callsubr hmoveto -74 callsubr endchar rmoveto 129 98 129 -98 28 20 -126 154 -62 0 -126 -154 rlineto return 136 69 callsubr -136 vlineto -141 -73 -95 -127 vhcurveto return 140 -369 -24 callsubr return hlineto -167 -33 0 -38 71 -13 rlineto return vvcurveto -53 42 -23 55 vhcurveto endchar rmoveto 39 37 27 56 47 vvcurveto 7 vlineto 31 -21 25 -36 -36 -21 -23 -31 vhcurveto -4 vlineto -31 19 -23 39 vhcurveto -9 -28 -20 -36 -25 -27 rrcurveto endchar rmoveto -47 -17 31 43 hvcurveto 11 vlineto 43 17 31 47 47 17 -31 -43 vhcurveto -11 vlineto -43 -17 -31 -47 vhcurveto return 102 381 -12 rmoveto 180 63 92 199 hvcurveto return 770 -100 callsubr rmoveto -35 callsubr endchar rmoveto 43 23 29 44 33 hvcurveto return -44 299 -12 rmoveto 149 84 89 122 109 -70 62 -124 31 hvcurveto -50 12 rlineto -92 24 -39 35 69 vvcurveto 67 46 45 93 107 40 -38 -68 vhcurveto -46 80 197 -80 -55 -5 vlineto 39 -20 -49 28 -77 hhcurveto -135 -88 -74 -115 -117 74 -61 127 -31 hvcurveto 53 -13 rlineto 85 -21 36 -36 -68 vvcurveto -79 -47 -50 -112 -105 -42 46 68 vhcurveto 46 -80 -205 80 60 5 vlineto -43 20 53 -29 83 hhcurveto return rmoveto -44 -15 22 32 hvcurveto 16 vlineto 32 15 22 44 44 15 -22 -32 vhcurveto -16 vlineto -32 -15 -22 -44 vhcurveto -174 vmoveto -47 -19 25 36 hvcurveto 16 vlineto 36 19 25 47 47 19 -25 -36 vhcurveto -16 vlineto -36 -19 -25 -47 vhcurveto -41 vmoveto 93 52 42 64 53 -43 29 -49 8 hvcurveto 4 vlineto 43 7 36 29 49 vvcurveto 59 -48 36 -84 -84 -48 -36 -59 -49 36 -29 43 -7 vhcurveto -4 vlineto -49 -8 -43 -29 -53 vvcurveto -64 52 -42 93 vhcurveto endchar -148 254 -12 rmoveto 116 70 64 91 91 -53 45 -104 23 hvcurveto -54 11 rlineto -53 13 -30 29 45 vvcurveto 51 37 25 65 76 33 -27 -52 vhcurveto -35 68 156 -68 -45 -4 vlineto 33 -12 -42 24 -64 hhcurveto -108 -68 -56 -93 -88 52 -50 101 -23 hvcurveto 57 -13 rlineto 55 -13 27 -28 -43 vvcurveto -57 -41 -24 -73 -80 -33 37 56 vhcurveto 20 -68 -155 68 52 4 vlineto -33 15 47 -31 64 hhcurveto return rmoveto 85 62 48 73 79 -49 40 -72 -47 -29 -26 -27 -12 hvcurveto -5 hlineto 9 127 rlineto 186 60 -219 hlineto -14 -204 47 -9 rlineto 16 11 17 15 27 hhcurveto 47 24 -27 -47 hvcurveto -10 vlineto -45 -25 -27 -53 -23 -17 2 7 -11 54 callsubr endchar 12 346 -12 rmoveto 140 82 97 80 27 hvcurveto -42 22 rlineto 48 callsubr -50 80 207 -99 callgsubr -219 116 -142 180 hvcurveto return 381 30 vlineto 49 23 26 39 hvcurveto 83 -84 -110 -151 -50 74 111 callsubr vhcurveto return -71 284 42 rmoveto 49 callsubr -54 vmoveto 143 97 105 166 99 -33 75 -57 47 hvcurveto 21 78 callsubr -80 vlineto 8 -24 -26 4 -29 hhcurveto -145 -95 -106 -165 -166 95 -105 145 hvcurveto return rmoveto 125 68 63 117 hvcurveto 480 74 50 -269 -50 94 -497 vlineto -77 -31 -39 -62 -20 -18 3 4 -13 vhcurveto 3 vlineto 15 7 15 16 27 vvcurveto 35 -22 25 -35 -40 -24 -29 -39 -57 47 -42 96 vhcurveto return -23 25 rlineto -28 -25 -9 -7 -21 hhcurveto -17 -24 16 13 -23 hvcurveto 13 -23 -21 14 -23 hhcurveto -43 -23 -29 -44 -33 hvcurveto 23 -25 rlineto 28 25 9 7 21 hhcurveto 17 24 -16 -13 23 hvcurveto -13 23 21 -14 23 hhcurveto endchar -57 vmoveto 4 callsubr 145 -51 106 -88 60 hvcurveto 53 78 callsubr -123 vlineto 8 -28 -30 4 -33 hhcurveto -187 -125 -137 -224 28 callsubr return 101 24 76 64 24 hvcurveto -31 16 -21 -38 rlineto -35 -19 -22 -13 -56 hhcurveto -56 -22 13 35 -19 hvcurveto -21 38 -31 -16 rlineto -64 24 24 -76 101 hhcurveto return rlineto 412 18 vlineto 49 23 26 39 hvcurveto 79 -84 -102 vlineto -173 -29 0 -38 71 -13 rlineto -106 callgsubr -81 callsubr return -119 283 -12 rmoveto 112 63 70 68 24 hvcurveto -36 23 rlineto 36 callsubr -161 87 -110 152 vhcurveto return 27 -3 rlineto 51 -7 10 -19 -20 vvcurveto -28 -21 -13 -31 -27 -19 9 15 -13 vhcurveto -22 -24 rlineto -19 15 26 -21 51 hhcurveto endchar -82 -50 -49 -43 -16 vhcurveto -88 callgsubr return 33 22 23 31 hvcurveto 3 vlineto 31 -22 23 -33 -33 -22 -23 -31 vhcurveto -3 vlineto -31 22 -23 33 vhcurveto endchar vlineto 60 29 -33 -56 hvcurveto -38 vlineto -56 -29 -33 -60 vhcurveto return rmoveto 211 211 -25 31 -166 -116 return -113 -69 128 hlineto -52 -108 rlineto return 74 50 -249 -50 74 -598 -74 hlineto return 50 -74 598 74 50 -249 -50 74 return rmoveto 66 hlineto 493 698 rlineto -66 hlineto return rmoveto 33 hlineto 69 190 rlineto -91 hlineto endchar vlineto -56 -20 -28 -41 113 callsubr -53 callsubr -626 -71 vlineto return -166 116 -25 -31 rlineto endchar 26 189 hmoveto 289 50 -94 return 708 -89 callsubr rmoveto 31 25 -116 166 return -86 122 -83 rmoveto 36 15 28 39 19 vhcurveto 159 hlineto 81 31 -24 -49 -55 -56 -32 -96 hvcurveto -50 hlineto -77 -46 26 51 hvcurveto 147 319 rmoveto -69 -34 40 65 hvcurveto 36 vlineto 65 34 40 69 69 34 -40 -65 vhcurveto -36 vlineto -65 -34 -40 -69 vhcurveto -4 -448 rmoveto 173 88 64 101 88 -55 50 -123 hvcurveto -118 hlineto -56 -24 13 32 28 29 22 32 8 hvcurveto -4 18 19 -2 20 hhcurveto 117 87 65 106 45 -18 35 -27 27 hvcurveto 4 vlineto 34 -3 rlineto 61 51 -172 hlineto 8 -25 -28 4 -29 105 callsubr return -57 288 64 rmoveto -85 -52 61 99 hvcurveto 88 vlineto 95 52 59 85 62 62 -38 -63 vhcurveto -200 vlineto -63 -62 -38 -62 vhcurveto -22 -276 rmoveto 146 96 87 168 hvcurveto 475 -40 vlineto -52 -79 rlineto -4 hlineto 49 -21 -51 42 -81 hhcurveto -128 -83 -96 -169 -169 83 -96 128 80 49 39 47 20 hvcurveto 4 -69 hlineto -119 -44 -63 -108 -45 -27 7 11 -23 vhcurveto 3 vlineto 24 7 14 24 24 vvcurveto 31 -20 24 -40 -39 -25 -26 -41 -69 83 -42 104 vhcurveto return 18 223 -12 rmoveto 73 47 32 96 40 hvcurveto 217 532 rlineto 56 50 -208 -50 88 hlineto -96 -240 -51 -129 -4 0 -68 129 -133 240 rlineto 88 50 -257 -50 56 hlineto 270 -485 -13 -33 rlineto -76 -32 -28 -19 -45 hhcurveto -12 -12 2 5 -13 hvcurveto 3 vlineto 15 7 15 16 27 vvcurveto 35 -22 25 -35 -40 -24 -29 -39 -56 48 -43 80 vhcurveto return 93 345 -12 rmoveto 107 63 58 52 21 hvcurveto 4 hlineto 51 -98 rlineto 37 290 61 50 -281 -50 119 -93 hlineto -93 -70 -53 -101 -116 -78 88 140 vhcurveto 141 vlineto 141 66 92 142 107 61 -41 -73 vhcurveto -48 80 207 -80 -63 -6 vlineto 39 -16 -56 36 -105 hhcurveto -183 -122 -128 -233 -224 118 -137 177 hvcurveto return 340 238 hmoveto 97 hlineto 153 569 4 0 153 -569 97 0 164 648 rlineto 52 50 -205 -50 88 hlineto -127 -539 -4 0 -153 589 -94 0 -153 -589 -4 0 -127 539 rlineto 88 50 -245 -50 52 hlineto return 153 52 hmoveto 246 50 -74 24 hlineto 351 465 3 0 -10 -188 rlineto -301 -74 -50 246 50 -74 598 74 50 -246 -50 74 -24 vlineto -351 -465 -3 0 10 188 rlineto 301 74 50 -246 -50 74 -598 -74 vlineto return 156 193 hmoveto 86 hlineto 118 397 4 0 115 -397 86 0 131 468 rlineto 51 50 -176 -50 71 hlineto -98 -374 -4 0 -119 424 -78 0 -119 -424 -4 0 -98 374 rlineto 71 50 -219 -50 51 hlineto return 26 48 hmoveto 235 50 -71 28 hlineto 245 287 4 0 -8 -135 rlineto -180 -71 -50 235 50 -71 418 71 50 -235 -50 71 -28 vlineto -245 -287 -4 0 8 135 rlineto 180 71 50 -235 -50 71 -418 -71 vlineto return 64 189 -46 callsubr -22 23 rlineto -27 -27 -8 -6 -20 hhcurveto -20 -29 15 13 -25 hvcurveto 12 -24 -25 14 -27 hhcurveto -43 -23 -29 -44 -33 hvcurveto 22 -23 rlineto 27 27 8 6 20 hhcurveto 20 29 -15 -13 25 hvcurveto -12 24 25 -14 27 hhcurveto endchar rmoveto 109 98 -57 43 -77 -122 rlineto 26 -269 rmoveto 69 54 47 66 66 -54 47 -69 -69 -54 -47 -66 -66 54 -47 69 hvcurveto 37 vmoveto -36 -22 22 40 hvcurveto 28 vlineto 40 22 22 36 36 22 -22 -40 vhcurveto -28 vlineto -40 -22 -22 -36 vhcurveto endchar 141 52 hmoveto 207 50 -74 548 4 hlineto 391 -94 callgsubr -359 549 rlineto -188 -50 74 -598 -74 hlineto return -53 -27 38 75 hvcurveto 84 vlineto 75 27 38 53 53 27 -38 -75 vhcurveto -84 vlineto -75 -27 -38 -53 vhcurveto return 100 62 69 129 129 -62 69 -100 -100 -62 -69 -129 -129 62 -69 100 hvcurveto return -41 52 hmoveto 498 182 -80 -128 -243 594 -26 callsubr return rmoveto 120 156 -73 38 -78 -179 rlineto 34 -140 -47 callsubr rmoveto 31 15 -78 179 -73 -38 rlineto 117 -281 -47 callsubr 594 65 callsubr -594 -94 hlineto return 74 50 -249 -50 74 -598 -74 -50 return -212 rmoveto 101 58 54 117 hvcurveto return 280 337 -280 -74 -50 return 187 125 137 224 return 45 227 644 rmoveto 146 hlineto 71 40 -47 -65 hvcurveto -49 vlineto -65 -40 -47 -71 vhcurveto -146 hlineto -175 -371 rmoveto 249 50 -74 269 109 hlineto 121 -228 rlineto -61 32 29 -30 79 hhcurveto 70 50 -8 hlineto -48 -30 20 48 -27 hvcurveto -119 217 rlineto 99 19 56 65 96 vvcurveto 123 -76 60 -124 vhcurveto -338 -50 74 -598 -74 hlineto return -185 48 hmoveto 258 50 -91 317 hlineto 53 57 60 54 11 6 -1 -1 5 vhcurveto -3 vlineto -15 -3 -11 -16 -25 vvcurveto -31 23 -24 39 35 24 25 43 56 -39 30 -60 -71 -37 -48 -44 -19 vhcurveto -88 callgsubr return 155 324 rmoveto 88 60 38 71 51 -42 30 -49 8 hvcurveto 4 vlineto 44 7 40 32 47 vvcurveto 63 -47 29 -87 -68 -55 -38 -40 -27 16 -18 27 27 14 19 23 13 -8 14 -11 7 vhcurveto 2 vlineto 6 101 callsubr return -41 vmoveto 88 55 50 76 72 -44 45 -68 -53 -27 -25 -29 -13 hvcurveto -4 1 rlineto 11 84 46 52 96 23 -14 31 rcurveline -121 -13 -95 -80 -139 vvcurveto -92 52 -56 91 vhcurveto endchar 101 24 78 65 24 hvcurveto -31 16 -21 -36 rlineto -35 -19 -22 -15 -56 hhcurveto -56 -22 15 35 -19 hvcurveto -21 36 -31 -16 rlineto -65 24 24 -78 101 hhcurveto endchar 36 21 23 31 hvcurveto 4 vlineto 31 -19 23 -39 vhcurveto 9 28 20 36 25 27 rrcurveto -44 hlineto -39 -37 -27 -56 -47 vvcurveto -7 vlineto -31 21 -25 36 vhcurveto endchar 56 43 45 77 62 vvcurveto 10 vlineto 39 -24 31 -43 -41 -27 -30 -36 vhcurveto -6 vlineto -35 23 -28 39 vhcurveto 2 hlineto -11 -41 -30 -46 -47 -40 rrcurveto endchar 2 57 hmoveto 522 182 -81 -128 -325 hlineto 396 591 rlineto 53 -502 -171 81 117 305 vlineto -396 -591 rlineto return -131 46 hmoveto 416 156 -67 -104 -230 hlineto 289 426 rlineto 40 -400 -156 67 104 214 vlineto -289 -426 rlineto return rmoveto 4 -185 -138 hlineto 138 -126 rmoveto 69 72 54 54 -54 242 -76 hlineto -175 -242 rlineto -54 182 vlineto endchar -282 203 -6 rmoveto 51 54 10 12 23 hvcurveto 38 -130 411 129 callsubr -375 hlineto -68 25 -28 72 vhcurveto return 182 -80 -128 -278 280 185 -76 63 206 -63 -76 -185 256 269 -117 80 171 return 52 rmoveto -62 -62 38 63 hvcurveto 212 vlineto 63 62 38 62 85 52 -61 -99 vhcurveto -94 vlineto -99 -52 -61 -85 vhcurveto return 166 -116 25 31 -211 211 -211 -211 25 -31 166 116 return rlinecurve 3 hlineto -37 3 19 -19 34 hhcurveto 35 25 26 39 39 -27 31 -47 return 224 -125 137 -187 -187 -125 -137 -224 return hlineto 137 72 69 137 137 -72 69 -137 hvcurveto return 116 166 -31 25 -211 -211 rlineto endchar hlineto 108 62 58 103 103 -62 58 -108 hvcurveto return 54 rmoveto 304 127 71 callsubr return -50 72 -594 -229 594 72 50 return -71 -50 238 50 -71 418 71 50 return -74 -50 249 50 -74 598 74 50 return -224 125 -137 187 hvcurveto return 47 callsubr -29 -64 rmoveto 80 return 71 50 -238 -50 71 -418 -71 return -147 48 hmoveto 258 50 -91 return rlineto 51 50 -184 -50 71 hlineto return 186 443 321 rmoveto 93 42 64 84 83 32 -70 -93 vhcurveto -16 -241 vlineto -205 -249 rmoveto -57 -35 24 51 hvcurveto 28 vlineto 60 34 35 104 vhcurveto 63 -103 hlineto -65 -48 -30 -61 vhcurveto -38 -62 rmoveto 97 66 37 76 24 hvcurveto 6 hlineto -60 21 68 -53 96 hhcurveto 112 57 61 69 24 hvcurveto -37 24 rlineto -53 -27 -32 -31 -81 hhcurveto -92 -59 66 108 hvcurveto 18 340 30 vlineto 143 -75 107 -138 -80 -60 -43 -59 -19 vhcurveto -6 hlineto 53 -11 -48 49 -84 hhcurveto -124 66 callsubr hvcurveto 2 vlineto 11 19 28 5 33 hhcurveto 77 38 -44 -81 hvcurveto -64 -73 vlineto -167 -64 -50 -107 -88 56 -58 101 hvcurveto return 329 440 648 rmoveto 10 -372 -203 hlineto -232 -276 rmoveto 194 50 -76 hlineto 90 174 rlineto 227 -174 -74 -50 533 16 callsubr -598 -50 76 hlineto -311 -598 rlineto -52 hlineto return 111 hlineto 137 78 -86 -143 hvcurveto -132 vlineto -143 -78 -86 -137 vhcurveto -111 hlineto -175 -54 rmoveto 299 hlineto 186 128 117 232 232 -128 117 -186 hvcurveto -299 -50 74 return -52 -27 -42 -39 -80 hhcurveto -92 -57 68 105 hvcurveto 80 vlineto 97 63 70 91 40 25 -6 -8 16 vhcurveto -4 vlineto -25 -12 -17 -20 -31 vvcurveto -35 21 -28 43 40 25 28 43 72 -69 53 -109 -144 -104 -104 -167 return rmoveto 88 60 38 71 51 -42 30 -49 8 hvcurveto 4 vlineto 44 7 40 32 47 vvcurveto 63 -47 29 -87 -68 -55 -38 -40 -27 16 -18 27 27 14 19 23 13 -8 14 -11 7 vhcurveto 2 vlineto 6 101 callsubr endchar 172 15 hmoveto 116 callsubr 131 50 -53 hlineto -103 169 -19 33 -21 14 -31 4 rlinecurve 51 115 12 29 15 25 11 12 19 callsubr 86 callsubr hlineto return 364 13 hmoveto 115 callsubr 154 50 -68 hlineto -150 254 -25 43 -20 12 -28 4 rlinecurve 74 173 19 43 17 30 76 callsubr 87 callsubr hlineto return 125 hlineto 82 87 136 -212 rlineto -60 -50 222 50 -54 hlineto -179 274 139 144 rlineto 73 50 -217 -50 67 hlineto -125 -136 -80 -91 rlineto -4 return -73 -180 rmoveto 121 13 95 80 139 vvcurveto 92 -52 56 -91 -88 -55 -50 -76 -72 44 -45 68 53 27 25 29 13 vhcurveto 4 -1 -11 -84 -46 -52 -96 -23 rlinecurve endchar rmoveto 101 24 78 65 24 hvcurveto -31 16 -21 -36 rlineto -35 -19 -22 -15 -56 hhcurveto -56 -22 15 35 -19 hvcurveto -21 36 -31 -16 rlineto -65 24 24 -78 101 hhcurveto return -536 vlineto -56 -20 -28 -41 -9 -8 1 2 -7 vhcurveto 4 vlineto 13 4 9 17 20 vvcurveto 29 -17 21 -32 -32 -21 -25 -31 -47 34 -33 68 vhcurveto return rmoveto 56 43 45 77 62 vvcurveto 10 vlineto 39 -24 31 -43 -41 -27 -30 -36 vhcurveto -6 vlineto -35 23 -28 39 vhcurveto 2 hlineto -11 -41 -30 -46 -47 -40 rrcurveto return -71 284 -12 rmoveto 143 97 105 166 165 -97 106 -143 -145 -95 -106 -165 -166 95 -105 145 hvcurveto return rmoveto 164 88 126 235 235 -88 126 -164 -164 -88 -126 -235 -235 88 -126 164 hvcurveto return 288 52 rmoveto -85 -52 61 99 hvcurveto 94 vlineto 99 52 61 85 62 62 -38 -63 vhcurveto -212 vlineto -63 -62 -38 -62 vhcurveto return -76 -29 -65 -54 -93 hhcurveto -128 -76 87 141 hvcurveto 137 vlineto 130 59 101 131 93 61 -45 -67 vhcurveto return -92 -42 65 91 hvcurveto 122 vlineto 91 42 65 92 92 42 -65 -91 vhcurveto -122 vlineto -91 -42 -65 -92 vhcurveto return -291 -252 rmoveto 258 50 -91 229 4 hlineto -49 21 48 -42 80 hhcurveto -104 callgsubr return 35 22 24 32 hvcurveto 3 vlineto 32 -22 24 -35 -35 -22 -24 -32 vhcurveto -3 vlineto -32 22 -24 35 vhcurveto endchar 43 24 29 36 hvcurveto 6 vlineto 36 -24 29 -43 -43 -24 -29 -36 vhcurveto -6 vlineto -36 24 -29 43 vhcurveto return -52 -79 rlineto -4 hlineto 49 -21 -51 42 -81 hhcurveto -128 -83 -98 -173 -173 83 -98 128 return vhcurveto 2 vlineto 11 7 8 14 13 vvcurveto 23 -14 19 -27 -27 -16 -18 -27 -40 46 -38 80 vhcurveto return rmoveto 146 hlineto 72 39 -48 -65 hvcurveto -47 vlineto -65 -39 -48 -72 vhcurveto -146 hlineto -175 return 8 13 -20 vhcurveto 3 vlineto 24 11 12 19 27 vvcurveto 33 -20 26 -39 -37 -24 -25 -40 return -206 rmoveto 60 53 25 58 43 -32 22 -43 -11 -13 -2 -3 -13 hvcurveto -3 3 return 17 19 rlinecurve 3 hlineto -36 3 22 -25 37 hhcurveto 39 22 31 39 39 -26 34 -49 return -351 20 rlineto -233 -80 233 hlineto 351 20 -116 -166 rlineto return 351 -20 rlineto 233 80 -233 hlineto -351 -20 22 callsubr 200 50 -67 hlineto 168 243 4 0 156 -243 rlineto -73 -50 return 71 hlineto 142 313 rlineto 55 -274 -123 44 61 181 vlineto endchar 184 50 -61 hlineto 110 160 5 0 107 -160 rlineto -59 -50 return vhcurveto 4 vlineto 17 8 19 24 28 vvcurveto 39 -25 26 -40 -39 -24 -27 -43 return 166 -117 80 171 -595 -171 80 117 168 return -71 -58 -59 -39 23 -22 35 36 22 22 36 29 -16 15 -15 8 return 48 42 49 21 hvcurveto 4 -91 hlineto 167 33 0 38 -71 13 return 211 211 -211 211 -31 -25 116 -166 return vlineto 141 73 95 127 127 73 -95 -141 vhcurveto return 131 50 -53 hlineto -104 169 109 callsubr return vlineto 75 40 -46 -75 hvcurveto -62 vlineto -75 -40 -46 -75 vhcurveto return -67 callsubr -81 -49 -49 -43 -16 vhcurveto -4 return -160 rmoveto 87 214 -104 594 74 50 return 480 -53 callsubr -396 -71 vlineto return 227 -117 80 171 -482 -50 74 return 58 callsubr -65 -45 -41 -109 return -50 60 -415 -177 415 60 50 return hlineto 49 23 26 39 hvcurveto 83 -84 -110 return 85 362 45 rmoveto -56 -45 19 33 -35 hvcurveto 306 460 rlineto 21 -39 11 -46 -55 vvcurveto -136 vlineto -141 -74 -95 -128 vhcurveto -170 96 rmoveto -21 39 -11 46 55 vvcurveto 136 vlineto 141 74 95 128 56 45 -19 -33 35 vhcurveto -366 -645 rmoveto 55 83 rlineto -33 49 58 -18 68 hhcurveto 4 callsubr 121 -36 92 -61 63 hvcurveto 58 87 -43 30 -55 -83 rlineto 33 -49 -58 18 -68 hhcurveto -187 -125 -137 -224 -121 36 -92 61 -63 hvcurveto -58 -87 rlineto return -71 284 42 rmoveto -45 -35 15 29 -23 hvcurveto 230 300 rlineto 6 -20 3 -22 -24 vvcurveto -122 vlineto -91 -43 -65 -93 vhcurveto -127 90 rmoveto -6 20 -3 22 24 vvcurveto 122 vlineto 91 43 65 93 47 33 -16 -28 23 vhcurveto -301 -470 rmoveto 55 71 rlineto -30 39 48 -15 56 hhcurveto 143 97 105 166 80 -22 64 -39 47 hvcurveto 58 76 -39 30 -55 -71 rlineto 30 -39 -48 15 -56 hhcurveto -145 -95 -106 -165 -80 22 -64 39 -47 hvcurveto -58 -76 rlineto return -27 287 -12 rmoveto 160 103 81 123 107 -72 47 -84 13 hvcurveto 5 vlineto 80 16 61 59 93 vvcurveto 103 -79 75 -131 -88 -52 -30 -43 -29 vhcurveto -4 61 -80 -210 80 57 hlineto 65 58 46 88 87 42 -48 -71 vhcurveto -36 vlineto -72 -50 -46 -71 vhcurveto -102 -54 109 hlineto 84 45 -45 -77 hvcurveto -32 vlineto -80 -58 -53 -113 -57 -42 8 15 -23 64 callsubr -66 82 -70 148 vhcurveto return -131 242 -12 rmoveto 123 89 61 94 71 -43 42 -75 13 hvcurveto 5 vlineto 63 13 42 43 63 vvcurveto 84 -62 53 -113 -71 -40 -26 -35 -25 vhcurveto -3 49 -67 -157 67 28 hlineto 56 47 36 72 63 32 -37 -51 vhcurveto -18 vlineto -51 -35 -33 -60 vhcurveto -66 -53 70 hlineto 72 32 -38 -49 hvcurveto -23 vlineto -51 -39 -40 -84 -55 -28 56 callsubr -65 74 -59 124 vhcurveto return 227 644 rmoveto 144 hlineto 71 39 -42 -64 hvcurveto -44 vlineto -64 -39 -42 -71 vhcurveto -144 hlineto -54 vmoveto 160 hlineto 76 45 -47 -71 hvcurveto -44 vlineto -71 -45 -47 -76 vhcurveto -160 hlineto -175 -54 rmoveto 367 hlineto 117 78 75 119 108 -90 56 -72 5 hvcurveto 4 vlineto 69 13 66 54 99 vvcurveto 99 -71 66 -125 vhcurveto -339 -69 callsubr 348 45 rmoveto -118 -72 89 137 hvcurveto 10 384 -10 vlineto -137 -74 -89 -120 vhcurveto -57 vmoveto 182 124 137 224 220 -114 141 -199 -152 -91 -95 -85 -27 hvcurveto 41 -21 rlineto 80 31 74 53 104 hhcurveto 147 74 -92 -137 hvcurveto -79 -492 -42 vlineto -164 109 -140 189 vhcurveto endchar 263 40 rmoveto -84 -38 64 93 hvcurveto 11 251 -12 vlineto -95 -45 -61 -84 vhcurveto -52 vmoveto 135 98 108 163 163 -88 108 -150 -114 -68 -69 -68 -24 hvcurveto 37 -24 rlineto 53 27 45 38 80 hhcurveto 92 59 -66 -108 hvcurveto -29 -350 -25 vlineto -143 82 -101 139 vhcurveto endchar -47 -39 -29 -93 -41 hvcurveto -53 -120 rlineto -71 181 71 49 -235 -49 71 -181 -71 hlineto -53 120 rlineto 93 -41 -39 29 -47 hhcurveto -47 -27 -31 -39 -39 25 -26 35 34 19 19 37 3 hvcurveto 3 hlineto 11 -12 15 -25 12 -29 51 -115 rcurveline -31 -4 -21 -14 -19 -33 -103 -169 rcurveline -53 return -47 hvcurveto -77 -178 rlineto -92 266 74 50 -247 -50 74 -266 -92 hlineto -77 178 rlineto 109 -47 -45 41 -65 hhcurveto -49 -26 -34 -39 -39 22 -31 39 37 22 25 36 3 hvcurveto 3 hlineto 17 -19 17 -30 19 -43 74 -173 rcurveline -28 -4 -20 -12 -25 -43 -150 -254 rcurveline -68 return 277 102 -44 -44 -175 5 hlineto 105 68 rlineto 52 33 47 42 65 vvcurveto 67 -50 36 -85 -72 -51 -35 -43 -28 16 -17 27 27 14 18 24 13 -8 14 -11 7 vhcurveto 2 vlineto 6 11 15 3 19 hhcurveto 43 26 -26 -40 hvcurveto -11 vlineto -37 -26 -32 -33 -29 vhcurveto -124 -105 rlineto return 163 324 rmoveto 85 62 48 73 79 -49 40 -72 -47 -29 -26 -27 -12 hvcurveto -5 hlineto 9 127 rlineto 186 60 -219 hlineto -14 -204 47 -9 rlineto 16 11 17 15 27 hhcurveto 47 24 -27 -47 hvcurveto -10 vlineto -45 -25 -27 -53 -23 -17 2 7 -11 54 callsubr return rmoveto 134 75 134 -75 23 22 -126 121 -62 0 -126 -121 rlineto 157 154 rmoveto 99 25 74 63 24 hvcurveto -31 16 -21 -38 rlineto -35 -19 -22 -13 -55 hhcurveto -55 -22 13 35 -19 hvcurveto -21 38 -31 -16 rlineto -63 24 25 -74 99 hhcurveto endchar 60 32 23 33 27 hvcurveto -27 38 rlineto -21 -31 -21 -10 -35 hhcurveto -40 -34 15 19 -39 hvcurveto 23 -47 -33 14 -48 hhcurveto -60 -32 -23 -33 -27 hvcurveto 27 -38 rlineto 21 31 21 10 35 hhcurveto 40 34 -15 -19 39 hvcurveto -23 47 33 -14 48 hhcurveto endchar 52 hmoveto 207 50 -74 543 4 hlineto 52 -117 173 -361 179 361 52 117 rlineto 4 -543 27 callsubr -182 hlineto -200 -414 -4 0 -195 414 rlineto -191 -69 callsubr 252 50 -59 hlineto -210 317 203 281 rlineto 59 50 -200 -50 67 hlineto -159 -235 -4 0 -151 235 rlineto 73 50 -252 -50 59 hlineto 205 -309 -212 -289 rlineto -59 hlineto endchar 226 50 -51 hlineto -153 219 142 199 rlineto 57 50 -184 -50 61 hlineto -105 -158 -4 0 -107 158 rlineto 59 50 -224 -50 51 hlineto 151 -217 -148 -201 rlineto -57 hlineto endchar 201 hlineto 94 102 192 -303 rlineto -68 -50 253 50 -68 hlineto -240 373 210 225 rlineto 68 50 -220 -50 78 hlineto -198 -215 -97 -109 rlineto -4 324 -26 callsubr return rmoveto 101 49 67 123 123 -49 67 -101 -101 -49 -67 -123 -123 49 -67 101 hvcurveto 43 vmoveto -53 -18 38 63 hvcurveto 92 vlineto 63 18 38 53 53 18 -38 -63 vhcurveto -92 vlineto -63 -18 -38 -53 vhcurveto endchar 280 98 hlineto 209 -330 rlineto 154 50 -68 hlineto -161 254 -27 43 -19 12 -32 4 rlinecurve 85 173 21 44 20 29 58 callsubr 125 callsubr hlineto return 68 54 49 68 68 -54 49 -68 -68 -54 -49 -68 -68 54 -49 68 hvcurveto 37 vmoveto -36 -22 23 39 hvcurveto 36 vlineto 39 22 23 36 36 22 -23 -39 vhcurveto -36 vlineto -39 -22 -23 -36 vhcurveto endchar -294 hlineto -23 -33 -50 -14 -61 hhcurveto -107 -38 45 125 hvcurveto 161 74 50 -249 -50 74 -164 vlineto -152 61 -68 161 72 47 13 24 45 vhcurveto 4 -251 -94 return -232 -49 65 -146 hlineto -49 -45 -26 -68 -76 -27 27 75 vhcurveto 119 65 49 -232 -49 71 -127 vlineto -112 51 -46 107 72 47 25 43 31 vhcurveto 4 -202 -91 return 10 16 3 21 hhcurveto 39 27 -19 -37 hvcurveto -12 vlineto -32 -25 -27 -47 vhcurveto -29 -39 32 hlineto 51 24 -24 -39 hvcurveto -14 vlineto -41 -28 -24 -52 -23 -16 3 6 -10 54 callsubr return -347 -25 -97 -39 -37 vhcurveto -14 -15 -16 -7 -15 hhcurveto -5 -6 1 1 -5 hvcurveto 5 vlineto 15 5 15 21 25 vvcurveto 35 -23 25 -37 -39 -24 -29 -45 -51 37 -44 69 vhcurveto endchar -266 -25 -61 -28 -28 vhcurveto -12 -12 -13 -3 -13 hhcurveto -4 -3 0 1 -7 hvcurveto 3 vlineto 13 7 12 17 21 vvcurveto 31 -19 20 -33 -37 -21 -23 -39 -47 31 -36 63 vhcurveto endchar 132 486 rmoveto 41 27 30 36 hvcurveto 6 vlineto 35 -23 28 -39 vhcurveto -2 hlineto 11 41 30 46 47 40 rrcurveto -58 hlineto -56 -43 -45 -77 -62 vvcurveto -10 vlineto -39 24 -31 43 vhcurveto return hhcurveto -117 -85 -65 -106 -73 39 -53 64 -27 hvcurveto -4 vlineto -47 -12 -42 -30 -56 vvcurveto -45 23 -30 43 -13 vhcurveto -4 vlineto -55 -13 -52 -35 -54 vvcurveto -75 58 -47 168 vhcurveto return -136 298 rmoveto 34 vlineto 92 44 64 92 92 44 -64 -92 vhcurveto -34 vlineto -136 -244 rmoveto -92 -44 64 92 hvcurveto 38 272 -38 vlineto -92 -44 -64 -92 vhcurveto endchar vvcurveto 76 43 53 100 39 37 -6 -11 19 vhcurveto -4 vlineto -27 -13 -15 -21 -29 vvcurveto -35 21 -29 43 43 25 28 44 75 -81 56 -126 -131 -88 -80 -114 return -138 rmoveto 58 42 44 79 62 vvcurveto 10 vlineto 39 -24 30 -43 -43 -24 -29 -36 vhcurveto -6 vlineto -35 24 -30 39 vhcurveto 2 hlineto -11 -41 -33 -44 -47 -41 rrcurveto return -20 33 -23 14 -33 4 rlinecurve 51 115 13 29 19 24 12 13 19 callsubr -50 -40 -26 -96 -43 hvcurveto -53 -120 rlineto -78 180 71 50 return vmoveto -108 -35 88 147 hvcurveto 146 vlineto 147 35 88 108 108 35 -88 -147 vhcurveto -146 vlineto -147 -35 -88 -108 vhcurveto endchar -393 vlineto -139 -48 -67 -128 -128 -42 67 139 vhcurveto 393 74 50 -249 -50 74 -379 vlineto -203 75 -78 188 return 13 12 -1 -2 12 hvcurveto 107 vlineto 1 -8 -15 1 -15 hhcurveto -196 -163 -162 -199 -199 163 -162 196 hvcurveto return -9 -8 1 2 -7 vhcurveto 4 vlineto 13 4 9 17 20 vvcurveto 29 -17 21 -32 -32 -21 -25 -31 -47 34 -33 68 vhcurveto endchar 227 323 rmoveto 132 52 -132 269 35 callsubr -273 -88 -52 88 -273 -74 hlineto endchar 154 hlineto 193 330 rlineto 92 -280 -74 -50 247 50 -74 280 92 hlineto 193 -330 rlineto return 131 hlineto 142 238 rlineto 71 -188 -71 -50 235 50 -71 188 71 hlineto 142 -238 rlineto return vhcurveto 2 vlineto 11 19 28 5 33 hhcurveto 77 38 -44 -81 hvcurveto -73 -73 vlineto -167 -64 -53 -99 -88 56 -54 100 return rlineto 52 50 -203 -50 86 hlineto -158 -301 -4 0 -158 301 rlineto 86 50 -251 -50 52 hlineto return 0 688 -168 -33 0 -38 72 -13 rlineto -237 -4 vlineto 49 -21 -48 42 -80 -82 callgsubr return rmoveto -97 -36 65 92 hvcurveto 20 vlineto 92 36 65 97 97 36 -65 -92 vhcurveto -20 vlineto -92 -36 -65 -97 vhcurveto return -131 -386 -5 0 -131 386 rlineto 70 50 -224 -50 51 hlineto 168 -468 rlineto return 40 23 28 33 hvcurveto 6 vlineto 33 -23 28 -40 -40 -23 -28 -33 vhcurveto -6 vlineto -33 23 -28 40 vhcurveto return 39 21 26 33 hvcurveto 5 vlineto 33 -21 26 -39 -39 -21 -26 -33 vhcurveto -5 vlineto -33 21 -26 39 vhcurveto return 24 5 34 75 61 hvcurveto -8 21 -35 0 5 -18 rlineto -72 -47 -44 -33 -53 -52 callsubr -67 -42 -42 -108 -53 hvcurveto -88 -178 rlineto -98 266 74 50 -249 -50 74 -598 -74 return -371 rmoveto 269 50 -94 267 -91 callgsubr -337 -69 callsubr 270 39 -92 329 -55 hlineto -141 -65 15 -33 108 40 rlineto -271 -105 vlineto return 194 181 0 48 -194 181 -22 -30 121 -175 -121 -175 rlineto return 130 53 -130 136 -51 vlineto -26 -89 rlineto -32 -11 -9 -15 -53 hhcurveto -12 -53 67 return 44 33 hvcurveto -22 23 rlineto -27 -27 -8 -7 -20 hhcurveto -20 -29 16 13 -25 hvcurveto 12 -24 -25 return 8 12 -20 vhcurveto 4 vlineto 19 8 18 23 27 vvcurveto 37 -26 27 -39 -37 -26 -26 -43 -64 return -175 80 732 rmoveto 304 -684 -304 hlineto 352 -48 rmoveto 780 -400 -780 vlineto endchar -639 endchar -105 callsubr -102 callsubr endchar 34 callsubr endchar 34 callsubr 592 -70 callsubr -105 callsubr -102 callsubr 323 -70 callsubr -105 callsubr -102 callsubr 329 714 -85 callsubr -105 callsubr -102 callsubr 326 828 -2 callsubr -105 callsubr -102 callsubr 329 714 42 callsubr -22 -934 -99 callsubr -105 callsubr -102 callsubr 332 828 -1 callsubr -105 callsubr -102 callsubr 336 818 -101 callsubr -27 callsubr 25 -131 -47 callsubr -105 callsubr -102 callsubr 329 703 rmoveto -35 callsubr -8 callsubr -105 callsubr -102 callsubr 200 714 -106 callsubr -105 callsubr -102 callsubr 465 827 -75 callsubr -63 callsubr -105 callsubr -102 callsubr 200 714 -56 callsubr 135 -954 -99 callsubr -105 callsubr -102 callsubr 193 827 -64 callsubr -105 callsubr -102 callsubr 200 696 -76 callsubr -65 callsubr -105 callsubr -102 callsubr 200 696 -68 callsubr -105 callsubr -102 callsubr 423 736 -107 callsubr -105 callsubr -102 callsubr 307 -220 -99 callsubr -105 callsubr -102 callsubr 335 -18 callsubr -105 callsubr -102 callsubr 347 696 -101 callsubr -96 callsubr -105 callsubr -102 callsubr 186 759 -78 callsubr -105 callsubr 391 -482 rmoveto 47 28 17 23 15 hvcurveto -24 23 rlineto -12 -9 -15 -10 -19 hhcurveto -27 -15 19 27 24 11 26 83 69 hvcurveto 50 -52 vlineto -225 648 -103 0 -225 -648 rlineto -52 -50 -96 callgsubr 198 hlineto 1 -4 rlineto -71 -39 -50 -36 -51 vvcurveto -53 41 -23 52 vhcurveto endchar -105 callsubr -102 callsubr 329 693 rmoveto 98 callsubr -105 callsubr -102 callsubr 328 937 -7 callsubr -105 callsubr -102 callsubr 393 731 -95 callsubr 37 83 callsubr -41 callsubr endchar -407 endchar -41 callsubr -11 -48 callsubr -41 callsubr -36 780 -91 callsubr 12 356 57 callsubr 10 49 rlineto 129 8 77 89 25 79 -42 22 rcurveline 48 callsubr -50 80 207 -99 callgsubr -208 105 -141 167 -11 hvcurveto -13 -65 -32 callsubr -41 callsubr -134 776 -106 callsubr -41 callsubr -5 795 -80 callsubr 76 227 644 rmoveto 35 callsubr -598 -74 hlineto endchar 76 227 644 rmoveto 35 callsubr -598 -74 hlineto 238 718 -91 callsubr 76 114 callsubr -1 294 616 rmoveto 6 hlineto 188 -562 rlineto -382 hlineto -64 -54 rmoveto 553 51 hlineto -225 647 -103 0 -225 -647 rlineto endchar -97 callsubr endchar -97 callsubr 278 -70 callsubr -97 callsubr 284 714 -85 callsubr -97 callsubr 253 718 -91 callsubr -97 callsubr 155 714 -106 callsubr -97 callsubr 420 827 -75 callsubr -63 callsubr -97 callsubr 155 714 -56 callsubr 157 -954 -99 callsubr -97 callsubr 148 827 -64 callsubr -97 callsubr 155 696 -76 callsubr -65 callsubr -97 callsubr 155 696 -68 callsubr -97 callsubr 378 736 -107 callsubr -97 callsubr 284 733 -80 callsubr -97 callsubr 284 -220 -99 callsubr -97 callsubr 290 -18 callsubr -97 callsubr 302 696 -101 callsubr -96 callsubr -97 callsubr 141 759 -78 callsubr 141 538 -212 rmoveto 72 52 44 92 hvcurveto 724 74 50 -207 -50 74 -498 -5 vlineto -358 548 rlineto -188 -50 74 -598 -74 -50 207 50 -74 547 5 hlineto 390 -597 rlineto 23 -79 hlineto -64 -23 -31 -40 113 callsubr 5 526 -206 -73 callsubr 25 6 33 76 61 hvcurveto 16 callsubr -524 -50 74 -598 -74 -50 487 vlineto 1 -4 rlineto -72 -44 -39 -31 -51 -52 callsubr 76 114 callsubr -97 callsubr 348 731 -95 callsubr -20 329 -12 rmoveto 135 74 97 82 24 hvcurveto -40 20 rlineto -75 -29 -53 -57 -89 hhcurveto -108 -68 70 123 -13 hvcurveto 236 50 -238 100 238 50 -237 hlineto 119 5 58 88 128 hhcurveto 47 35 -7 -13 25 hvcurveto -4 vlineto -25 -12 -17 -22 -27 vvcurveto -37 21 -29 43 43 25 29 43 75 -77 59 -132 -182 -108 -133 -228 -219 105 -142 174 vhcurveto endchar -11 52 hmoveto 269 50 -94 270 185 -76 63 206 -63 -76 -185 270 269 -117 80 171 -524 -69 callsubr -13 callsubr endchar -13 callsubr 9 776 -85 callsubr -13 callsubr -120 776 -106 callsubr -13 callsubr -5 -242 -51 callsubr -13 callsubr 9 795 -80 callsubr 93 455 -12 rmoveto 139 94 66 140 137 -75 68 -136 hvcurveto 4 vlineto 177 249 rlineto 46 -602 -50 74 -598 -74 -50 175 644 314 vlineto -170 -242 rlineto -51 61 vlineto 101 48 -35 -105 hvcurveto -42 vlineto -91 -55 -43 -71 -29 -22 4 5 -15 vhcurveto 4 vlineto 17 8 16 18 29 vvcurveto 35 -21 25 -37 -39 -25 -27 -43 -60 51 -45 104 vhcurveto endchar 152 -86 callsubr 3 callsubr 249 -25 callsubr -264 -337 264 -26 callsubr endchar 152 227 496 rmoveto 337 -112 -337 hlineto -175 -384 rmoveto 249 50 -74 3 callsubr 249 50 -74 446 88 52 -88 100 74 50 -249 -50 74 -100 -337 100 74 50 -249 -50 74 -100 -88 -52 88 -446 -74 hlineto endchar 152 -86 callsubr 3 callsubr 249 -25 callsubr -264 -337 264 -26 callsubr 214 714 -106 callsubr -88 callsubr endchar 181 -86 callsubr 598 -26 callsubr 458 -62 -38 callsubr endchar 181 -86 callsubr 598 -26 callsubr 118 708 rmoveto 132 156 -88 43 -75 -183 rlineto 371 -786 -38 callsubr 128 -48 callsubr -88 callsubr 118 -70 callsubr -88 callsubr 124 714 -85 callsubr -88 callsubr -5 714 -106 callsubr -88 callsubr 218 736 -107 callsubr -88 callsubr 124 733 -80 callsubr -88 callsubr 124 -220 -99 callsubr -88 callsubr 130 -18 callsubr -88 callsubr 142 696 -101 callsubr -96 callsubr -88 callsubr -19 759 -78 callsubr -277 240 -206 -73 callsubr 24 9 36 75 59 hvcurveto -25 callsubr -598 -74 -50 202 vlineto 1 -4 rlineto -68 -43 -44 -34 -49 -52 callsubr -88 callsubr 188 731 -95 callsubr -172 157 -12 -38 callsubr endchar -172 157 -12 -38 callsubr 128 -48 callsubr -172 157 -12 -38 callsubr 5 776 -106 callsubr 78 -86 callsubr 95 callsubr endchar 78 -86 callsubr 95 callsubr 303 -71 callsubr -3 callsubr endchar -3 callsubr 118 -70 callsubr -3 callsubr 321 490 -23 callsubr -3 callsubr 249 -71 callsubr -3 callsubr 336 237 -80 callsubr -39 54 hmoveto 498 182 -80 -128 -243 258 hlineto 151 52 0 54 -151 -52 rlineto 282 74 50 -249 -50 74 -316 vlineto -90 -31 0 -54 90 31 rlineto -228 -74 vlineto endchar 237 92 callsubr -6 callsubr endchar -6 callsubr 341 -70 callsubr -6 callsubr 316 718 -91 callsubr -6 callsubr 331 -71 callsubr -6 callsubr 411 731 -95 callsubr -94 callsubr endchar 377 370 45 rmoveto -139 -69 95 141 hvcurveto 136 vlineto 141 69 95 139 55 45 -11 -27 29 vhcurveto -532 vlineto -27 -29 -45 -11 -55 hhcurveto -57 vmoveto 35 31 4 8 28 hvcurveto 494 16 callsubr -485 hlineto 8 -28 -31 4 -35 hhcurveto -196 -124 -137 -224 -224 124 -137 196 hvcurveto endchar -94 callsubr -6 713 -100 callsubr -94 callsubr 719 vmoveto 9 callsubr -94 callsubr -129 719 -106 callsubr -94 callsubr 136 832 -75 callsubr -63 callsubr -94 callsubr -129 719 -56 callsubr 157 -954 -99 callsubr -94 callsubr -136 832 -64 callsubr -94 callsubr -129 701 -76 callsubr -65 callsubr -94 callsubr -129 701 -68 callsubr -94 callsubr 94 741 -107 callsubr -94 callsubr -215 vmoveto -30 callsubr -94 callsubr 6 713 -89 callsubr -94 callsubr 18 701 -101 callsubr -96 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr endchar 85 362 45 -59 callsubr -55 callsubr -36 callsubr -6 -48 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr -158 vmoveto -30 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr 6 770 -89 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr 18 758 -101 callsubr -96 callsubr 85 362 45 -59 callsubr -55 callsubr -36 callsubr 55 793 -46 callsubr -37 callsubr -94 callsubr 79 713 -72 callsubr -62 callsubr -94 callsubr -143 764 -78 callsubr 69 50 hmoveto 254 133 hlineto -75 32 -66 80 99 vvcurveto 102 vlineto 105 71 102 120 120 71 -102 -105 vhcurveto -102 vlineto -99 -66 -80 -75 -32 vhcurveto -133 254 139 -80 -87 -123 53 vlineto 117 48 78 91 146 vvcurveto 163 -92 157 -204 -204 -92 -157 -163 -147 76 -89 119 -49 vhcurveto -53 -123 87 -80 vlineto endchar 79 callsubr endchar 79 callsubr 267 772 -100 callsubr -94 callsubr 64 736 -95 callsubr -3 227 644 55 callsubr 126 callsubr 85 362 45 -59 callsubr -55 callsubr 218 -221 rmoveto 50 -27 vlineto -44 -20 13 39 -28 hvcurveto -49 66 rlineto 158 21 104 132 204 vvcurveto 20 callsubr -202 100 -131 156 -24 vhcurveto 62 -91 rlineto -55 37 34 -22 77 hhcurveto endchar 5 callsubr endchar 5 callsubr 257 -70 callsubr 5 callsubr 232 718 -91 callsubr 5 callsubr 326 -71 callsubr -45 callsubr endchar -45 callsubr -14 -48 callsubr -45 callsubr -39 780 -91 callsubr -44 307 57 callsubr 10 48 rlineto 139 5 78 88 118 vvcurveto 109 -70 62 -124 31 vhcurveto -50 12 rlineto -92 24 -39 35 69 vvcurveto 67 46 45 93 107 40 -38 -68 vhcurveto -46 80 197 -80 -55 -5 vlineto 39 -20 -49 28 -77 hhcurveto -135 -88 -74 -115 -117 74 -61 127 -31 hvcurveto 53 -13 rlineto 85 -21 36 -36 -68 vvcurveto -79 -47 -50 -112 -105 -42 46 68 vhcurveto 46 -80 -205 80 60 5 vlineto 19 -37 43 -27 68 -7 rrcurveto -13 -65 -32 callsubr 65 84 callsubr -45 callsubr -137 776 -106 callsubr -45 callsubr -10 -242 -51 callsubr -19 callsubr 0 callsubr endchar -19 callsubr 280 147 53 -147 261 65 callsubr -261 -148 -53 148 -280 -94 hlineto endchar -19 callsubr 0 callsubr 113 718 -91 callsubr -19 callsubr 0 callsubr 135 -71 callsubr -19 callsubr 0 callsubr 135 -71 callsubr -3 227 489 55 callsubr -216 rmoveto 249 50 -74 112 -91 callgsubr -162 105 -26 callsubr endchar -79 callsubr endchar -79 callsubr 5 -48 callsubr -79 callsubr 11 776 -85 callsubr -79 callsubr -118 776 -106 callsubr -79 callsubr 105 798 -107 callsubr -79 callsubr -5 -158 -99 callsubr -79 callsubr 17 770 -89 callsubr -79 callsubr 29 758 -101 callsubr -96 callsubr -49 callsubr -40 callsubr endchar -49 callsubr -40 callsubr 5 -48 callsubr -49 callsubr -40 callsubr -5 -158 -99 callsubr -49 callsubr -40 callsubr 17 770 -89 callsubr -49 callsubr -40 callsubr 29 758 -101 callsubr -96 callsubr -49 callsubr -40 callsubr 66 793 -46 callsubr -37 callsubr -79 callsubr 90 770 -72 callsubr -62 callsubr -79 callsubr -132 821 -78 callsubr 102 467 -206 -73 callsubr 33 18 48 81 70 hvcurveto 60 49 21 75 123 vvcurveto 369 74 50 -207 -50 74 111 callsubr 31 29 3 6 25 vhcurveto 1 -4 rlineto -51 -37 -46 -37 -49 -52 callsubr -79 callsubr 11 755 rmoveto 98 callsubr -79 callsubr 75 793 -95 callsubr 31 287 hmoveto 96 hlineto 214 648 rlineto 52 50 -203 -50 88 hlineto -100 -306 -76 -249 -4 0 -76 248 -100 307 rlineto 88 50 -245 -50 52 hlineto endchar -12 callsubr endchar -12 callsubr 428 110 -100 callsubr -12 callsubr 305 116 -106 callsubr -12 callsubr 528 138 -107 callsubr -12 callsubr 440 110 -89 callsubr 41 19 hmoveto 61 callsubr 93 callsubr -66 callsubr endchar -66 callsubr 159 -70 callsubr -66 callsubr 36 714 -106 callsubr -66 callsubr 259 736 -107 callsubr -66 callsubr 142 -220 -99 callsubr -66 callsubr 171 -18 callsubr -66 callsubr 183 696 -101 callsubr -96 callsubr -66 callsubr 229 731 -95 callsubr 12 callsubr endchar 12 callsubr 247 705 -100 callsubr 12 callsubr 222 715 -91 callsubr 12 callsubr 253 730 -80 callsubr -104 callsubr endchar -103 callsubr endchar -104 callsubr 58 -58 callsubr -103 callsubr 9 -58 callsubr -104 callsubr 64 607 -85 callsubr -103 callsubr 15 607 -85 callsubr -104 callsubr 61 720 -2 callsubr -103 callsubr 12 720 -2 callsubr -104 callsubr 64 607 42 callsubr -20 -765 -99 callsubr -103 callsubr 15 607 42 callsubr 6 -765 -99 callsubr -104 callsubr 67 720 -1 callsubr -103 callsubr 18 720 -1 callsubr -104 callsubr 71 710 -101 callsubr -27 callsubr 25 -131 -47 callsubr -103 callsubr 22 710 -101 callsubr -27 callsubr 25 -131 -47 callsubr -104 callsubr 64 595 rmoveto -35 callsubr -8 callsubr -103 callsubr 15 595 rmoveto -35 callsubr -8 callsubr -104 callsubr -65 607 -106 callsubr -103 callsubr -114 607 -106 callsubr -104 callsubr 200 720 -75 callsubr -63 callsubr -103 callsubr 151 720 -75 callsubr -63 callsubr -104 callsubr -65 607 -56 callsubr 137 -785 -99 callsubr -103 callsubr -114 607 -56 callsubr 163 -785 -99 callsubr -104 callsubr -72 720 -64 callsubr -103 callsubr -121 720 -64 callsubr -104 callsubr -65 589 -76 callsubr -65 callsubr -103 callsubr -114 589 -76 callsubr -65 callsubr -104 callsubr -65 589 -68 callsubr -103 callsubr -114 589 -68 callsubr -39 294 584 -100 callsubr -39 294 758 -100 callsubr -639 -6 584 -100 callsubr -104 callsubr 158 627 -107 callsubr -103 callsubr 109 627 -107 callsubr -104 callsubr 44 -158 -99 callsubr -103 callsubr 21 -158 -99 callsubr 33 callsubr endchar 33 callsubr 202 -58 callsubr -104 callsubr 70 596 -89 callsubr -103 callsubr 21 596 -89 callsubr -104 callsubr 82 588 -101 callsubr -96 callsubr -103 callsubr 33 588 -101 callsubr -96 callsubr -104 callsubr -79 652 -78 callsubr -103 callsubr -128 652 -78 callsubr 78 308 45 rmoveto -92 -62 49 80 hvcurveto 19 vlineto 60 17 47 61 40 vhcurveto 217 -242 rlineto -35 -35 -47 -18 -59 hhcurveto -29 375 rmoveto -37 43 -33 39 47 vvcurveto 11 vlineto 56 33 43 63 60 36 -39 -52 vhcurveto -14 vlineto -56 -38 -43 -79 -41 vhcurveto 9 -426 rmoveto 76 63 27 47 49 hvcurveto 11 -13 rlineto -35 31 32 -14 51 hhcurveto 78 50 hlineto -56 -27 12 31 -29 hvcurveto -34 39 32 55 20 69 7 76 rlinecurve 78 50 -205 -50 72 hlineto -4 -60 -12 -57 -23 -44 -190 210 rcurveline 95 45 82 62 83 vvcurveto 84 -71 55 -111 -116 -76 -62 -97 -63 29 -52 41 -45 vhcurveto 15 -17 rlineto -91 -48 -61 -53 -96 vvcurveto -117 97 -72 147 vhcurveto endchar -90 238 50 rmoveto -57 -35 24 51 hvcurveto 20 vlineto 60 34 34 104 vhcurveto 63 -94 hlineto -65 -48 -30 -61 vhcurveto 199 -256 -73 callsubr 31 19 47 65 39 hvcurveto 17 10 rlineto 39 -72 319 vlineto 104 -63 60 -117 -125 66 callsubr 117 callsubr 91 39 44 45 19 hvcurveto 4 -6 hlineto -49 29 -32 57 vhcurveto 6 -4 hlineto -72 -39 -32 -30 -47 -52 callsubr -25 47 callsubr 214 -258 -73 callsubr 31 19 47 65 39 hvcurveto 15 8 1 1 1 1 rrcurveto 39 -72 471 -40 vlineto 53 callsubr 80 49 42 49 21 hvcurveto 6 -9 hlineto -48 28 -32 59 vhcurveto 7 -4 hlineto -72 -39 -32 -30 -47 -52 callsubr -39 418 341 rmoveto 60 32 23 33 27 hvcurveto -27 38 rlineto -21 -31 -21 -10 -35 hhcurveto -40 -34 15 19 -39 hvcurveto 23 -47 -33 14 -48 hhcurveto -60 -32 -23 -33 -27 hvcurveto 27 -38 rlineto 21 31 21 10 35 hhcurveto 40 34 -15 -19 39 hvcurveto -23 47 33 -14 48 hhcurveto -202 vmoveto 91 callsubr -104 callsubr 64 588 rmoveto 98 callsubr -103 callsubr 15 588 rmoveto 98 callsubr -104 callsubr 63 830 -7 callsubr -103 callsubr 14 830 -7 callsubr 221 430 -12 -28 callsubr 20 351 rlineto 233 -80 -233 vlineto 20 -351 -20 callsubr 221 617 45 -28 callsubr rlineto 9 84 10 72 47 vvcurveto 135 -105 155 -201 -203 -114 -154 -186 vhcurveto 82 hlineto 139 75 124 161 129 91 -85 -162 13 vhcurveto 13 -169 -20 callsubr 221 243 45 -28 callsubr 13 169 rlineto 162 11 95 85 127 hhcurveto 161 75 -124 -139 hvcurveto 82 hlineto 186 -114 154 -203 -201 -105 -155 -135 -47 10 -72 9 -84 vhcurveto -20 callsubr 221 187 98 rmoveto 299 hlineto 4 39 -200 36 263 234 165 165 -57 56 -165 -165 -234 -262 -35 199 -40 -4 rlineto endchar 221 367 -12 -17 callsubr 298 -19 rlineto 80 538 -80 -463 hlineto -298 -16 22 callsubr 221 374 98 rmoveto 299 298 hlineto -40 4 -35 -199 -234 262 -165 165 -57 -56 165 -165 263 -234 -200 -36 rlineto endchar 221 493 -12 rmoveto 68 callsubr -298 16 rlineto 463 -80 -538 80 vlineto 298 19 -116 -166 rlineto endchar 221 284 78 -17 callsubr 379 -20 rlineto 125 83 68 107 111 -87 63 -121 hvcurveto -80 vlineto 61 55 -29 -65 -67 -56 -28 -60 hvcurveto -379 -20 22 callsubr 221 576 78 rmoveto 68 callsubr -379 20 rlineto -60 -56 28 67 65 55 29 61 hvcurveto 80 vlineto -121 -87 -63 -111 -107 83 -68 125 hvcurveto 379 20 -116 -166 rlineto endchar 221 286 138 -17 callsubr 60 callsubr 221 574 -10 rmoveto 68 callsubr 59 callsubr -257 271 -17 callsubr 60 callsubr 221 286 96 -28 callsubr 16 298 rlineto 463 80 -538 -80 hlineto 19 -298 -20 callsubr 221 285 138 -17 callsubr 230 -21 230 21 -116 -166 31 -25 68 callsubr -230 21 -230 -21 22 callsubr 221 247 126 rmoveto 538 80 -463 hlineto -16 298 18 callsubr -19 -298 rlineto endchar 221 574 138 rmoveto 68 callsubr 59 callsubr endchar 221 574 286 rmoveto 68 callsubr 59 callsubr -257 -321 -17 callsubr 60 callsubr 221 574 96 -28 callsubr 19 298 rlineto 80 -538 -80 463 vlineto 16 -298 -20 callsubr 221 75 126 rmoveto 538 80 hlineto -19 298 18 callsubr -16 -298 rlineto -463 hlineto endchar 221 390 hmoveto 80 233 hlineto -20 351 18 callsubr -20 -351 rlineto endchar 221 430 -12 -28 callsubr 23 235 -23 235 18 callsubr -23 -235 23 -235 -20 callsubr 221 661 85 rmoveto 57 56 -165 165 -263 234 -92 callgsubr 234 -262 rlineto endchar 221 580 hmoveto 80 538 -80 hlineto -298 -19 116 166 -31 25 -211 -211 211 -211 31 25 -116 166 298 -16 rlineto endchar 221 432 -12 rmoveto 187 140 136 176 132 -95 82 -139 109 hvcurveto -92 callgsubr rlineto 125 -120 55 -60 -113 vvcurveto -140 -107 -96 -136 -136 -113 101 144 89 45 81 92 59 vhcurveto -45 64 rlineto -105 -64 -70 -106 -125 vvcurveto -185 147 -136 183 vhcurveto endchar 221 199 85 rmoveto 165 165 234 262 -90 callgsubr -263 -234 -165 -165 rlineto endchar 221 428 -12 rmoveto 183 147 136 185 125 -70 106 -105 64 hvcurveto -45 -64 rlineto 92 -59 45 -81 -89 vvcurveto -144 -113 -101 -136 -136 -107 96 140 113 55 60 125 120 vhcurveto -90 callgsubr rlineto -139 -109 -95 -82 -132 vvcurveto -176 140 -136 187 vhcurveto endchar 221 200 hmoveto 80 463 hlineto 298 16 -116 -166 31 -25 68 callsubr -298 19 rlineto -80 hlineto endchar -39 106 313 rmoveto 191 317 6 0 191 -317 51 28 -207 357 -76 0 -207 -357 rlineto endchar -39 418 240 rmoveto 91 callsubr -168 279 548 rmoveto 106 6 51 16 -26 80 -50 -17 -91 -57 rlineto 48 -211 rmoveto 67 50 -31 43 -82 68 -24 -18 39 -99 rlineto -65 180 rmoveto 29 hlineto 27 105 rlineto 53 -83 -53 vlineto -2 -146 rmoveto 10 28 -91 57 -50 17 -26 -80 51 -16 rlineto 68 -189 rmoveto 31 44 39 99 -24 18 -82 -68 -31 -43 rlineto endchar 279 450 123 rmoveto -67 -32 45 69 hvcurveto 104 vlineto 69 32 45 67 64 35 -34 -59 vhcurveto -146 vlineto -59 -35 -34 -64 vhcurveto 2 -244 rmoveto 83 76 7 11 67 hvcurveto 32 -225 vlineto -192 -122 138 198 hvcurveto 55 vlineto 195 119 150 200 200 119 -135 -180 vhcurveto -44 vlineto -133 -33 -62 -64 -37 -19 25 49 vhcurveto 315 -40 vlineto -33 -69 rlineto -4 hlineto 44 -16 -37 34 -60 hhcurveto -92 -74 -72 -148 -148 74 -72 92 63 35 36 52 23 hvcurveto 4 hlineto -52 7 39 -36 69 hhcurveto 121 48 114 139 229 -156 159 -229 -232 -152 -173 -248 -248 150 -162 228 hvcurveto endchar -104 callsubr 128 626 -95 callsubr -103 callsubr 79 626 -95 callsubr -34 316 17 callsubr 29 -64 rmoveto -104 callgsubr 321 -53 callsubr -676 40 vlineto 52 79 rlineto 4 hlineto -49 21 51 -42 81 hhcurveto endchar -259 308 -143 rmoveto 64 hlineto -266 891 rlineto -64 hlineto endchar 0 221 626 rmoveto 89 -241 -89 hlineto -50 vmoveto 89 -263 -89 hlineto 140 554 rmoveto 75 36 -43 -60 hvcurveto -35 vlineto -60 -36 -43 -75 vhcurveto -50 vmoveto 15 hlineto 71 43 -48 -67 hvcurveto -33 vlineto -67 -43 -48 -71 vhcurveto -15 hlineto -53 -154 rmoveto 55 103 41 hlineto 111 77 74 104 100 -85 53 -77 8 hvcurveto 4 vlineto 68 13 76 52 90 vvcurveto 91 -70 67 -120 vhcurveto -21 103 -55 -103 -258 -50 74 -556 -74 -50 258 hlineto endchar -326 126 -138 rmoveto 61 898 -61 hlineto endchar -1 221 626 rmoveto 147 hlineto 65 39 -43 -60 hvcurveto -35 vlineto -60 -39 -43 -65 vhcurveto -147 hlineto -50 vmoveto 154 hlineto 72 43 -47 -68 hvcurveto -33 vlineto -68 -43 -47 -72 vhcurveto -154 hlineto 12 -154 rmoveto 55 103 66 -103 55 103 hlineto 110 3 73 73 102 vvcurveto 100 -85 53 -77 8 vhcurveto 4 vlineto 68 13 76 52 90 vvcurveto 85 -61 63 -104 9 vhcurveto 104 -55 -103 -66 103 -55 -103 -183 -50 74 -556 -74 -50 183 vlineto endchar -305 304 -138 rmoveto 49 -100 266 vlineto 66 -51 51 -60 11 vhcurveto 12 vlineto 60 11 51 51 66 vvcurveto 266 100 49 -101 vlineto -59 -28 -34 -51 hvcurveto -248 vlineto -59 -42 -29 -59 vhcurveto -56 vlineto 59 42 -29 -59 hvcurveto -248 vlineto -51 28 -34 59 vhcurveto endchar -305 29 -138 rmoveto 101 hlineto 59 28 34 51 hvcurveto 248 vlineto 59 42 29 59 vhcurveto 56 vlineto -59 -42 29 59 hvcurveto 248 vlineto 51 -28 34 -59 vhcurveto -101 -49 100 -266 hlineto -66 51 -52 60 -10 vhcurveto -12 vlineto -60 -10 -51 -52 -66 vvcurveto -266 -100 vlineto endchar -349 57 -138 rmoveto 207 49 -119 800 119 49 -207 hlineto endchar -349 26 -138 rmoveto 207 898 -207 -49 119 -800 -119 hlineto endchar -39 300 595 -85 callsubr -39 300 764 -85 callsubr -39 300 594 -83 callsubr -39 300 765 -83 callsubr -639 -3 708 -2 callsubr -639 -3 878 -2 callsubr -639 595 vmoveto 9 callsubr -639 3 708 -1 callsubr -639 3 878 -1 callsubr -639 7 698 -101 callsubr -27 callsubr 25 -131 -47 callsubr -639 7 868 -101 callsubr -27 callsubr 25 -131 -47 callsubr -639 583 vmoveto -35 callsubr -8 callsubr -639 753 vmoveto -35 callsubr -8 callsubr -326 126 401 rmoveto 61 359 -61 hlineto -898 vmoveto 61 359 -61 hlineto endchar -223 208 177 rmoveto 77 47 53 68 hvcurveto 11 vlineto 68 -47 53 -77 -77 -47 -53 -68 vhcurveto -11 vlineto -68 47 -53 77 vhcurveto endchar -33 callsubr endchar -33 callsubr -6 -58 callsubr -39 269 599 -91 callsubr -39 269 768 -91 callsubr -639 -31 599 -91 callsubr -39 307 558 -23 callsubr -639 7 558 -23 callsubr -33 callsubr -31 611 -91 callsubr -119 292 57 callsubr 10 49 rlineto 103 5 55 67 24 65 -36 23 rcurveline 36 callsubr -151 77 -108 137 -11 vhcurveto -13 -65 -32 callsubr -33 callsubr -129 607 -106 callsubr -33 callsubr 625 vmoveto 51 callsubr -19 258 87 rmoveto -63 32 -35 70 96 vvcurveto 137 vlineto 122 50 98 139 3 vhcurveto -121 -727 rmoveto 55 hlineto 14 82 rlineto -1 9 15 -1 11 hhcurveto 133 78 97 81 24 hvcurveto -41 21 rlineto -75 -29 -55 -57 -90 hhcurveto -18 -16 1 3 -13 hvcurveto 95 574 30 -3 24 -6 18 -9 rlinecurve -4 vlineto -27 -12 -14 -22 -27 vvcurveto -35 22 -30 41 40 26 28 43 64 -54 50 -96 15 vhcurveto 14 85 -55 0 -13 -80 rlineto -9 hlineto -184 -113 -126 -225 -176 72 -125 121 -37 hvcurveto endchar -39 311 57 callsubr 16 80 -42 0 -19 -96 -32 callsubr -639 11 57 callsubr 16 80 -42 0 -19 -96 -32 callsubr 561 450 -12 rmoveto -84 callgsubr -140 -114 115 140 140 114 115 140 112 callsubr 620 hmoveto -84 callgsubr -120 -104 85 115 -24 hvcurveto 209 110 -209 hlineto 115 24 104 85 120 hhcurveto 112 callsubr endchar -116 258 62 rmoveto -69 19 -41 61 89 vvcurveto 79 vlineto 81 42 62 68 19 vhcurveto -2 -586 rmoveto 55 103 hlineto 97 11 52 62 24 64 rrcurveto -36 23 -27 -51 -37 -38 -75 -3 rlinecurve 422 vlineto 36 25 -6 -11 20 hvcurveto -4 vlineto -27 -11 -16 -20 -27 vvcurveto -35 21 -27 39 41 24 24 43 68 -61 51 -100 5 vhcurveto 100 -55 -102 vlineto -125 -16 -87 -101 -151 vvcurveto -152 76 -105 136 -13 vhcurveto endchar 273 375 hmoveto 68 hlineto 223 470 91 215 -81 34 -92 -216 -173 -439 -4 0 -104 260 -85 185 -79 -36 82 -185 rlineto endchar -39 171 595 -106 callsubr -39 171 764 -106 callsubr -639 136 708 -75 callsubr -63 callsubr -639 136 877 -75 callsubr -63 callsubr -639 -134 577 90 callsubr -639 -134 746 90 callsubr -639 -129 595 -106 callsubr -639 -136 708 -64 callsubr -639 -136 877 -64 callsubr -639 -129 577 -76 callsubr -65 callsubr -639 -129 746 -76 callsubr -65 callsubr -639 -129 577 -68 callsubr -639 -129 746 -68 callsubr -352 143 -12 rmoveto 52 callsubr 406 vmoveto 52 callsubr endchar -20 220 113 rmoveto -40 39 -20 57 76 vvcurveto 137 vlineto 93 29 78 72 33 vhcurveto 68 -560 rmoveto -26 3 -22 7 -18 9 46 556 rcurveline 3 16 19 1 13 hhcurveto 19 hlineto -174 -727 rmoveto 50 hlineto 7 89 rlineto -5 21 18 -3 24 hhcurveto -7 -81 50 0 7 84 111 16 62 85 22 73 rlinecurve -41 21 -27 -69 -48 -52 -76 -9 rlinecurve 47 574 23 -3 20 -6 15 -7 rlinecurve -4 vlineto -25 -11 -15 -24 -27 vvcurveto -35 20 -28 43 39 25 27 43 61 -51 48 -88 17 vhcurveto 7 88 -50 0 -7 -81 rlineto 1 -11 -14 0 -5 hhcurveto -7 -13 0 -1 -13 hvcurveto 7 81 -50 0 -7 -89 rlineto -137 -33 -78 -117 -192 vvcurveto -151 53 -121 108 -51 vhcurveto endchar -372 99 108 callsubr endchar -639 -9 -254 -51 callsubr -39 300 582 rmoveto 10 callsubr -639 582 vmoveto 10 callsubr 141 390 -12 rmoveto 192 144 139 222 222 -144 139 -192 -192 -144 -139 -222 -222 144 -139 192 hvcurveto 49 vmoveto -164 -116 121 160 hvcurveto 62 vlineto 160 116 121 164 164 116 -121 -160 vhcurveto -62 vlineto -160 -116 -121 -164 vhcurveto 8 114 rmoveto 83 47 50 51 19 hvcurveto -29 17 rlineto -36 -19 -29 -26 -59 hhcurveto -68 -45 46 76 hvcurveto 59 vlineto 69 47 49 68 31 18 -4 -7 13 vhcurveto -2 vlineto -21 -9 -11 -15 -20 vvcurveto -27 17 -21 28 31 19 20 31 55 -52 40 -81 -108 -77 -77 -122 -117 63 -80 115 vhcurveto endchar 273 178 11 rmoveto 121 120 155 178 155 -178 121 -120 63 62 -121 121 -177 155 177 155 121 121 -63 62 -121 -120 -155 -178 -155 178 -121 120 -63 -62 121 -121 177 -155 -177 -155 -121 -121 rlineto endchar -5 317 170 rmoveto -84 -38 57 77 hvcurveto 90 vlineto 77 38 57 84 84 38 -57 -77 vhcurveto -90 vlineto -77 -38 -57 -84 vhcurveto -53 vmoveto 53 44 14 28 35 hvcurveto 99 -100 50 50 -101 101 rlineto 24 37 12 47 55 vvcurveto 55 -12 47 -24 37 vhcurveto 101 101 -50 50 -99 -100 rlineto 28 -35 -44 14 -53 hhcurveto -53 -44 -14 -28 -35 hvcurveto -99 100 -50 -50 101 -101 rlineto -24 -37 -12 -47 -55 vvcurveto -55 12 -47 24 -37 vhcurveto -101 -101 50 -50 99 100 rlineto -28 35 44 -14 53 hhcurveto endchar -26 29 callsubr 67 callsubr 119 callsubr endchar -88 416 440 rmoveto 87 84 -87 hlineto -102 -28 rlineto -28 vlineto -55 51 rmoveto 33 hlineto 26 142 rlineto 87 -85 -87 vlineto -185 -221 rmoveto 87 hlineto 102 28 0 28 -102 28 rlineto -87 hlineto 211 -724 rmoveto 33 hlineto 26 226 0 224 -26 195 -33 0 -26 -195 rlineto -224 vlineto endchar -78 422 440 rmoveto 87 84 -87 hlineto -102 -28 rlineto -28 vlineto 102 -444 rmoveto 87 84 -87 hlineto -102 -28 rlineto -28 vlineto -55 467 rmoveto 33 hlineto 26 142 rlineto 87 -85 -87 vlineto -861 vmoveto 85 87 hlineto -26 142 -33 0 -26 -142 rlineto -185 553 rmoveto 87 hlineto 102 28 0 28 -102 28 rlineto -87 hlineto -500 vmoveto 87 hlineto 102 28 0 28 -102 28 rlineto -87 hlineto 211 -5 rmoveto 33 hlineto 26 113 0 116 -26 113 -33 0 -26 -113 rlineto -116 vlineto endchar -26 29 callsubr 67 callsubr 119 callsubr 299 570 -23 callsubr -26 29 callsubr 67 callsubr rlineto 543 85 50 -85 95 vlineto -96 -19 rlineto -76 -185 -50 185 -176 -4 vlineto 49 -21 -48 42 -80 -82 callgsubr endchar -173 233 417 rmoveto -65 -44 53 66 66 44 53 65 65 44 -53 -66 -66 -44 -53 -65 hvcurveto -55 vmoveto 97 73 75 99 99 -73 75 -97 -97 -73 -75 -99 -99 73 -75 97 hvcurveto endchar -39 394 615 -107 callsubr -39 394 786 -107 callsubr -639 5 708 -75 callsubr 124 -128 rmoveto -74 callsubr -196 -57 callsubr -639 5 880 -75 callsubr 124 -128 rmoveto -74 callsubr -196 -57 callsubr -639 -31 729 rmoveto 62 hlineto 125 151 -27 19 -129 -99 -129 99 -27 -19 rlineto 254 -285 rmoveto -74 callsubr -196 -57 callsubr -639 -31 901 rmoveto 62 hlineto 125 151 -27 19 -129 -99 -129 99 -27 -19 rlineto 254 -285 rmoveto -74 callsubr -196 -57 callsubr -639 94 615 -107 callsubr -639 -5 708 rmoveto 31 15 -76 179 -79 -40 rlineto 227 -267 rmoveto -74 callsubr -196 -57 callsubr -639 -5 880 rmoveto 31 15 -76 179 -79 -40 rlineto 227 -267 rmoveto -74 callsubr -196 -57 callsubr -639 -143 761 rmoveto 286 63 -286 hlineto 241 -229 rmoveto -74 callsubr -196 -57 callsubr -639 -143 933 rmoveto 286 63 -286 hlineto 241 -229 rmoveto -74 callsubr -196 -57 callsubr -39 66 276 rmoveto 468 58 -468 hlineto 234 91 rmoveto 122 callsubr -368 vmoveto 122 callsubr endchar -46 327 302 rmoveto 84 -19 40 -40 -69 vvcurveto -72 -40 -44 -84 -11 vhcurveto -51 370 rmoveto -84 23 -40 36 64 vvcurveto 60 43 44 81 8 vhcurveto -2 -734 rmoveto 55 78 hlineto 131 15 71 76 113 vvcurveto 108 -64 61 -140 35 vhcurveto 249 vlineto 45 -1 32 -8 19 -9 rrcurveto -3 vlineto -25 -13 -16 -21 -29 vvcurveto -35 21 -29 43 41 25 28 43 68 -66 52 -117 7 vhcurveto 77 -55 -78 vlineto -121 -11 -81 -65 -105 vvcurveto -113 71 -60 133 -33 vhcurveto -270 vlineto -55 1 -38 7 -24 11 rrcurveto 3 vlineto 25 13 16 21 29 vvcurveto 35 -21 29 -43 -41 -25 -28 -43 -71 75 -53 129 -4 vhcurveto endchar -41 49 hmoveto 475 54 -475 hlineto 217 125 rmoveto -80 -45 47 88 hvcurveto 48 vlineto 88 45 47 80 56 55 -32 -59 vhcurveto -136 vlineto -59 -55 -32 -56 vhcurveto -32 -64 rmoveto 77 52 47 40 13 hvcurveto 6 -79 hlineto 142 25 0 40 -55 9 rlineto 431 75 51 -75 81 vlineto -92 -17 rlineto -64 -148 -51 148 -149 -4 vlineto 42 -16 -46 40 -77 hhcurveto -111 -78 -83 -140 -140 78 -83 111 hvcurveto endchar -39 300 613 -80 callsubr -39 300 783 -80 callsubr -639 613 vmoveto 51 callsubr -639 -170 vmoveto -30 callsubr -82 callsubr endchar -332 52 2 callsubr 571 -60 callsubr -536 -22 callsubr -98 callsubr endchar -98 callsubr -12 -58 callsubr -98 callsubr -6 607 -85 callsubr -98 callsubr -37 611 -91 callsubr -98 callsubr -135 607 -106 callsubr -98 callsubr 130 720 -75 callsubr -63 callsubr -98 callsubr -135 607 -56 callsubr 161 -785 -99 callsubr -98 callsubr -142 720 -64 callsubr -98 callsubr -135 589 -76 callsubr -65 callsubr -98 callsubr -135 589 -68 callsubr -98 callsubr 88 627 -107 callsubr -98 callsubr -6 625 -80 callsubr -98 callsubr -2 -158 -99 callsubr -98 callsubr 596 vmoveto 31 16 -75 183 -88 -43 rlineto endchar -98 callsubr 12 588 -101 callsubr -96 callsubr -39 300 391 rmoveto -86 -33 58 69 hvcurveto 15 vlineto 69 33 58 86 85 34 -58 -69 vhcurveto -15 vlineto -69 -34 -58 -85 vhcurveto -352 vmoveto -93 -46 60 81 hvcurveto 21 vlineto 81 46 60 93 93 46 -60 -81 vhcurveto -21 vlineto -81 -46 -60 -93 vhcurveto -51 vmoveto 152 93 78 120 105 -82 57 -84 13 hvcurveto 7 vlineto 73 11 72 64 89 vvcurveto 112 -90 66 -134 -134 -90 -66 -112 -89 72 -64 72 -11 vhcurveto -7 vlineto -82 -13 -83 -57 -105 vvcurveto -120 93 -78 152 vhcurveto endchar -267 186 209 -44 callsubr -267 186 539 -44 callsubr 171 133 -12 rmoveto 52 callsubr 272 hmoveto 52 callsubr 272 hmoveto 52 callsubr endchar -98 callsubr -149 652 -78 callsubr 144 32 272 rmoveto 719 62 -719 hlineto endchar -52 32 272 rmoveto 523 62 -523 hlineto endchar -2 380 2 callsubr 377 vlineto 129 -49 65 -125 -82 -50 -49 -43 -16 vhcurveto -4 92 hlineto -165 -33 0 -38 71 -13 rlineto -396 -71 -50 238 50 -71 317 vlineto 66 59 31 56 77 36 -43 -92 vhcurveto -419 -22 callsubr -99 148 322 rmoveto 95 45 61 84 84 38 -64 -93 vhcurveto -11 -251 vlineto 193 -516 -73 callsubr 32 16 43 91 80 hvcurveto 28 25 23 32 12 32 -37 24 rcurveline -53 -27 -45 -38 -80 hhcurveto -92 -59 66 108 hvcurveto 29 350 25 vlineto 143 -82 101 -139 -135 -98 -108 -163 -163 88 -108 150 31 19 4 8 15 vhcurveto 1 -4 rlineto -63 -39 -41 -36 -51 -52 callsubr -39 66 381 rmoveto 468 58 -468 hlineto -268 vmoveto 468 58 -468 hlineto endchar 81 178 589 rmoveto 43 40 61 31 81 hhcurveto 83 59 -31 -43 39 hvcurveto -193 -363 vlineto 182 -408 rmoveto 142 94 74 100 53 hvcurveto -45 25 rlineto -89 -48 -76 -60 -120 hhcurveto -81 -61 32 43 -40 hvcurveto 236 507 vlineto 219 -137 142 -188 -188 -137 -142 -219 -219 137 -142 188 vhcurveto endchar -69 281 41 rmoveto -83 -52 52 105 hvcurveto 93 vlineto 105 52 52 83 83 52 -52 -105 vhcurveto -93 vlineto -105 -52 -52 -83 vhcurveto -53 vmoveto 145 92 91 190 196 -81 120 -87 79 hvcurveto 76 54 -32 42 -87 -62 -25 19 -29 20 -23 11 rlinecurve -87 hlineto 39 -21 43 -35 32 -29 rrcurveto -85 -59 32 -42 89 63 rlineto 47 -52 34 -66 23 -67 -5 -2 rcurveline 43 -31 -43 24 -59 hhcurveto -130 -85 -101 -156 -159 89 -101 148 hvcurveto endchar -98 callsubr 58 626 -95 callsubr -357 121 191 rmoveto 40 hlineto 29 310 rlineto 197 -98 -197 vlineto 49 -513 rmoveto 52 callsubr endchar -357 92 -180 rmoveto 98 197 hlineto -29 310 -40 0 -29 -310 rlineto 49 377 rmoveto 52 callsubr endchar -289 44 hmoveto 258 50 -91 415 109 53 -109 87 hlineto 72 28 42 55 13 13 -1 -3 8 -107 callgsubr -76 -103 -70 -67 -102 vhcurveto -73 -71 -53 71 -415 -71 vlineto endchar 561 737 143 rmoveto 69 60 33 55 39 hvcurveto -63 45 rlineto -35 -23 -39 -23 -45 hhcurveto -70 -57 56 75 75 57 56 70 45 39 -23 -35 23 hvcurveto 63 45 rlineto 55 -39 -60 33 -69 hhcurveto -115 -91 -91 -115 -115 91 -91 115 hvcurveto 1 -152 rmoveto 119 103 57 92 67 hvcurveto -63 46 rlineto -68 -47 -85 -52 -96 hhcurveto -144 -136 115 168 168 136 115 144 97 83 -53 -67 48 hvcurveto 63 46 rlineto 92 -67 -103 57 -119 hhcurveto -186 -152 -140 -180 -19 hvcurveto -136 235 170 hlineto 61 76 rlineto -303 -696 hlineto 72 52 rlineto 257 136 vlineto -180 19 153 -140 185 hhcurveto endchar -4 44 hmoveto 238 50 -71 415 224 -415 -71 -50 238 50 -71 480 hlineto -152 -12 rlineto -168 36 hlineto 100 50 64 97 47 18 -5 -7 19 vhcurveto -3 vlineto -17 -7 -12 -15 -25 vvcurveto -28 19 -24 35 33 24 25 35 57 -57 39 -115 -152 -85 -81 -135 vhcurveto -26 -71 -53 71 -415 -71 vlineto endchar -39 268 -12 rmoveto 156 103 89 132 147 -94 74 -125 -80 -53 -42 -47 -25 hvcurveto -4 1 19 261 rlineto 330 95 -375 hlineto -25 -385 57 -12 rlineto 35 21 41 29 60 hhcurveto 93 51 -56 -95 hvcurveto -24 vlineto -96 -53 -55 -107 -45 -38 131 callsubr 80 -64 124 vhcurveto endchar -289 163 -6 -42 callsubr -289 163 324 -42 callsubr 1 44 hmoveto 238 50 -71 415 109 53 -109 65 hlineto 83 50 44 84 39 29 -4 -12 27 vhcurveto -644 -71 -50 238 50 -71 710 vlineto -95 -19 rlineto 11 -27 -31 8 -52 hhcurveto -132 -84 -73 -121 hvcurveto -48 -71 -53 71 -415 -71 vlineto endchar -138 63 -146 rmoveto 113 68 65 125 13 hvcurveto 25 247 178 0 6 52 -178 0 18 192 rlineto 101 9 38 33 53 hhcurveto 13 15 -1 -3 7 hvcurveto -3 vlineto -20 -7 -16 -20 -24 vvcurveto -28 19 -21 31 39 24 30 36 49 -43 33 -73 -113 -70 -65 -125 -11 vhcurveto -16 -177 -151 0 -6 -52 151 0 -27 -262 rlineto -100 -11 -36 -34 -53 hhcurveto -13 -15 1 3 -7 hvcurveto 3 vlineto 20 7 16 20 24 vvcurveto 28 -19 21 -31 -39 -24 -30 -36 -49 43 -33 73 vhcurveto endchar -39 355 602 rmoveto 4 -367 -256 hlineto 256 -235 rmoveto 96 161 101 74 -101 463 -95 hlineto -321 -472 rlineto -65 320 vlineto endchar -268 198 311 14 callsubr -268 198 641 14 callsubr -500 -209 hmoveto 66 hlineto 493 698 rlineto -66 hlineto endchar -88 122 -83 rmoveto 36 15 28 39 19 vhcurveto 159 hlineto 81 31 -24 -49 -55 -56 -32 -96 hvcurveto -50 hlineto -77 -46 26 51 hvcurveto 147 319 rmoveto -69 -34 40 65 hvcurveto 36 vlineto 65 34 40 69 69 34 -40 -65 vhcurveto -36 vlineto -65 -34 -40 -69 vhcurveto -4 -448 rmoveto 173 88 64 101 88 -55 50 -123 hvcurveto -118 hlineto -56 -24 13 32 28 29 22 32 8 hvcurveto -4 18 19 -2 20 hhcurveto 117 87 65 106 51 -20 33 -19 21 hvcurveto 47 4 vlineto -15 9 17 -6 19 hhcurveto 35 19 20 31 31 -24 20 -31 -42 -33 -25 -77 -3 hvcurveto 23 -32 -43 17 -60 105 callsubr endchar -15 callsubr endchar -16 callsubr endchar -16 callsubr 3 807 -85 callsubr -15 callsubr 8 807 -85 callsubr -16 callsubr -126 807 -106 callsubr -15 callsubr -121 807 -106 callsubr -16 callsubr 3 794 rmoveto 10 callsubr -15 callsubr 8 794 rmoveto 10 callsubr -16 callsubr 3 825 -80 callsubr -15 callsubr 8 825 -80 callsubr 20 444 -12 rmoveto 120 68 70 91 81 -48 44 -92 25 hvcurveto -26 8 rlineto -61 19 -19 20 47 vvcurveto 51 42 32 93 vhcurveto 40 63 hlineto 124 -79 97 -141 -141 -85 -86 -132 vhcurveto -24 -71 -53 71 -415 -71 -50 167 556 vlineto 100 41 51 89 83 45 -52 -101 vhcurveto -34 vlineto -103 -5 -67 -54 -88 vvcurveto -81 39 -40 91 -27 vhcurveto 26 -8 rlineto 64 -19 25 -21 -53 vvcurveto -57 -40 -32 -73 -33 -22 4 8 -23 vhcurveto 3 vlineto 15 7 11 17 23 vvcurveto 29 -18 22 -31 -32 -21 -24 -35 -56 58 -45 109 vhcurveto endchar -45 367 -212 rmoveto 116 101 70 144 136 -77 60 -133 hvcurveto 175 271 rlineto 49 -348 87 vlineto 72 29 42 57 13 16 -1 -3 7 -107 callgsubr -80 -104 -70 -67 -102 vhcurveto -541 -71 -50 167 465 238 vlineto -165 -253 rlineto -50 63 vlineto 99 49 -48 -96 hvcurveto -36 vlineto -100 -46 -45 -85 -26 -21 3 6 -16 vhcurveto 3 vlineto 19 8 11 15 25 vvcurveto 28 -21 23 -32 -32 -23 -24 -36 -64 69 -36 85 vhcurveto endchar -39 306 584 -89 callsubr -39 306 758 -89 callsubr -639 6 584 -89 callsubr -39 89 -12 rmoveto 422 244 0 68 -422 244 0 -69 353 -206 0 -6 -353 -206 rlineto endchar -39 89 hmoveto 422 58 -422 hlineto 60 vmoveto 422 196 0 72 -422 196 0 -62 353 -167 0 -6 -353 -167 rlineto endchar 40 355 53 rmoveto -12 -13 0 3 -11 hvcurveto 31 227 rlineto 162 -85 hlineto -95 -65 -50 -92 vhcurveto -82 16 rmoveto -75 33 -38 80 108 vvcurveto 121 vlineto 125 60 99 132 8 vhcurveto -104 -725 rmoveto 55 hlineto 11 81 rlineto -1 7 7 0 5 hhcurveto 102 64 58 50 21 hvcurveto 4 hlineto 52 -106 rlineto 37 283 61 50 -317 hlineto 44 311 41 -4 31 -8 29 -15 rlinecurve -4 vlineto -25 -12 -16 -23 -28 vvcurveto -35 22 -29 41 43 25 28 44 72 -70 55 -111 12 vhcurveto 12 83 -55 0 -11 -80 rlineto -188 -3 -119 -120 -228 vvcurveto -191 79 -121 131 -31 vhcurveto endchar -123 230 78 rmoveto 22 30 -97 callgsubr 404 -181 rmoveto 22 30 -97 callgsubr endchar -123 76 78 rmoveto 128 callsubr 232 -30 rmoveto 128 callsubr endchar -333 230 78 rmoveto 22 30 -97 callgsubr endchar -333 76 78 rmoveto 128 callsubr endchar -9 -77 callsubr 72 callsubr 322 -21 callsubr endchar -9 -77 callsubr -67 callsubr -83 callgsubr -9 -77 callsubr 72 callsubr 322 -21 callsubr -10 723 -106 callsubr -639 18 576 -101 callsubr -96 callsubr -639 18 746 -101 callsubr -96 callsubr -639 -94 480 rmoveto 105 78 callsubr -93 vlineto endchar -14 312 -12 rmoveto 132 75 54 73 44 -26 28 -41 -43 -21 -30 -37 -27 16 -20 25 -12 hvcurveto -4 vlineto -11 -19 -36 -8 -39 hhcurveto -92 -41 51 69 33 11 31 25 27 hvcurveto 339 50 -276 hlineto 154 100 rlineto 122 50 -83 hlineto 15 23 11 35 37 vvcurveto 103 -83 63 -123 -132 -75 -54 -73 -44 26 -28 41 43 21 30 37 27 -16 20 -25 12 vhcurveto 4 vlineto 11 19 36 8 39 hhcurveto 92 41 -51 -69 -33 -11 -31 -25 -27 hvcurveto -339 -50 276 hlineto -154 -100 rlineto -122 -50 83 hlineto -15 -23 -11 -35 -37 vvcurveto -103 83 -63 123 vhcurveto endchar -39 379 584 -72 callsubr -62 callsubr -39 379 758 -72 callsubr -62 callsubr -639 79 584 -72 callsubr -62 callsubr -245 63 266 rmoveto 268 78 -268 hlineto endchar -82 callsubr 119 577 rmoveto 123 callsubr endchar -82 callsubr 113 534 -100 callsubr -82 callsubr 119 545 -85 callsubr -82 callsubr -10 545 -106 callsubr -82 callsubr 213 565 -107 callsubr -82 callsubr 119 577 rmoveto 123 callsubr 1 -797 -99 callsubr -82 callsubr 125 534 -89 callsubr -82 callsubr 137 526 -101 callsubr -96 callsubr -13 -90 callsubr 74 callsubr 119 577 rmoveto 123 callsubr 315 hmoveto 123 callsubr -111 -839 rmoveto 101 58 54 117 hvcurveto 571 -60 callsubr -536 -22 callsubr -13 -90 callsubr 74 callsubr 113 534 rmoveto 132 156 -88 43 -75 -183 rlineto 241 -812 rmoveto 101 58 54 117 hvcurveto 571 -60 callsubr 43 callsubr 106 796 -100 callsubr -82 callsubr -24 590 -78 callsubr 96 527 165 rmoveto -61 -43 46 93 -23 hvcurveto 90 25 42 45 60 hhcurveto 57 36 -46 -69 hvcurveto -44 vlineto -69 -36 -46 -57 vhcurveto -319 hmoveto -57 -36 46 69 hvcurveto 44 vlineto 69 36 46 57 61 43 -46 -93 23 vhcurveto -90 -25 -42 -45 -60 hhcurveto -13 -56 rmoveto 77 62 45 99 19 hvcurveto 4 hlineto -96 28 59 -48 96 hhcurveto 108 69 78 115 115 -69 78 -108 -77 -62 -45 -99 -19 hvcurveto -4 hlineto 96 -28 -59 48 -96 hhcurveto -108 -69 -78 -115 -115 69 -78 108 hvcurveto endchar -211 116 -212 rmoveto 77 47 54 95 hvcurveto 683 vlineto 63 21 31 43 10 9 -1 -2 7 vhcurveto -3 vlineto -18 -7 -9 -14 -22 vvcurveto -28 19 -21 31 29 23 25 31 48 -36 32 -69 -77 -47 -54 -95 vhcurveto -683 vlineto -63 -21 -31 -43 -11 -8 1 2 -7 vhcurveto 3 vlineto 18 7 9 14 22 vvcurveto 28 -19 21 -31 -29 -23 -25 -31 -48 36 -32 69 vhcurveto endchar -307 167 627 rmoveto 123 callsubr 60 -833 -73 callsubr 24 6 32 76 63 hvcurveto 50 -71 480 -60 callsubr -396 -71 -50 189 vlineto 1 -4 rlineto -65 -41 -43 -34 -51 -52 callsubr -82 callsubr 183 564 -95 callsubr -332 163 627 rmoveto 123 callsubr -111 -839 rmoveto 101 58 54 117 hvcurveto 571 -60 callsubr -536 -22 callsubr -332 52 2 callsubr 571 -60 callsubr 43 callsubr 106 796 -100 callsubr -332 52 2 callsubr 571 -60 callsubr 43 callsubr -17 807 -106 callsubr -45 -77 callsubr 40 callsubr 519 -21 callsubr endchar -45 -77 callsubr 40 callsubr 519 -21 callsubr 272 -71 callsubr -31 -90 callsubr 40 callsubr 289 -53 callsubr -396 -71 vlineto endchar 66 -86 callsubr 286 76 hlineto 192 -286 rlineto -66 -50 250 50 -70 hlineto -133 191 -71 97 71 -2 rlineto 125 51 -215 hlineto 205 261 rlineto 68 50 -220 -50 86 hlineto -202 -261 rlineto -96 261 74 50 -249 -50 74 -261 -79 -51 79 -286 -74 hlineto endchar -333 -77 callsubr 710 -21 callsubr endchar -333 -77 callsubr 710 -21 callsubr 113 736 -100 callsubr -333 -77 callsubr 710 -21 callsubr 218 508 -23 callsubr -333 -77 callsubr 710 -21 callsubr 111 -71 callsubr -275 -77 callsubr 710 -21 callsubr 307 198 -80 callsubr -39 511 -12 rmoveto 69 vlineto -353 206 0 6 353 206 0 69 -422 -244 rlineto -68 vlineto endchar -39 89 hmoveto 422 58 -422 hlineto 422 60 rmoveto 62 vlineto -353 167 0 6 353 167 0 62 -422 -196 rlineto -72 vlineto endchar -51 62 hmoveto 464 181 -54 -99 -338 5 hlineto 47 24 57 60 3 77 rrcurveto 165 50 -167 hlineto -5 35 -9 30 -11 35 rrcurveto 192 50 -206 hlineto -5 25 -4 24 29 107 callsubr -23 3 -23 6 -22 vhcurveto -48 -50 63 hlineto 11 -35 12 -30 8 -35 rrcurveto -94 -50 101 -4 hlineto -69 -36 -68 -57 -27 vhcurveto endchar -31 53 hmoveto 231 hlineto 188 111 127 140 64 -33 31 -47 -41 -28 -26 -43 -43 24 -20 31 19 13 6 12 7 hvcurveto 6 -2 rlineto -102 -8 -88 -90 -155 hhcurveto -55 241 hlineto 166 82 0 55 -166 -82 0 100 166 82 0 55 -166 -82 rlineto 143 74 50 -249 -50 74 -193 vlineto -95 -47 0 -55 95 47 0 -100 -95 -47 0 -55 95 47 rlineto -195 -74 vlineto endchar -142 189 590 rmoveto 89 32 27 45 39 26 -30 -69 vhcurveto -32 vlineto -93 -46 -108 -96 -84 vhcurveto 88 -302 rmoveto 96 58 65 80 35 hvcurveto -42 25 rlineto -68 -31 -42 -48 -63 hhcurveto -64 -34 40 97 hvcurveto 47 vlineto 137 116 73 115 133 vvcurveto 109 -45 61 -91 -85 -59 -50 -143 vhcurveto -325 vlineto -21 -15 -34 -21 -28 -19 rrcurveto 23 -39 23 11 23 16 16 11 rlinecurve -24 vlineto -104 54 -70 101 vhcurveto endchar -39 456 81 rmoveto 62 253 -452 -58 390 hlineto endchar -39 117 349 rmoveto 179 293 7 0 179 -293 -179 -293 rlineto -7 hlineto -34 -56 rmoveto 75 hlineto 215 349 -215 349 -75 0 -215 -349 rlineto endchar -327 37 hmoveto 238 50 -71 317 hlineto 88 28 0 51 -88 -28 0 342 -167 -33 0 -38 71 -13 0 -288 -86 -28 0 -51 86 28 rlineto -287 -71 vlineto endchar 319 -90 callsubr 316 hlineto 67 56 31 57 76 34 -43 -92 vhcurveto -279 -71 -50 238 50 -71 316 vlineto 67 56 31 56 76 35 -43 -92 vhcurveto -279 -70 -50 237 50 -71 285 vlineto 129 -48 66 -124 -88 -46 -53 -49 -22 vhcurveto -4 hlineto 68 -20 -51 34 -88 hhcurveto -81 -48 -49 -43 -16 hvcurveto -88 callgsubr endchar -39 157 640 -78 callsubr -39 157 809 -78 callsubr -639 -143 640 -78 callsubr -39 66 276 rmoveto 468 58 -468 hlineto endchar -14 99 -200 rmoveto 99 57 hlineto -41 183 4 1 rlineto -33 21 41 -20 52 hhcurveto 79 51 48 44 16 hvcurveto 4 -92 hlineto 165 33 0 38 -71 13 -87 callsubr endchar -39 135 98 rmoveto 165 165 165 -165 41 41 -165 165 165 165 -41 41 -165 -165 -165 165 -41 -41 165 -165 -165 -165 rlineto endchar 5 -90 callsubr -67 callsubr -31 callsubr endchar 5 -90 callsubr -67 callsubr -31 callsubr 283 534 -100 callsubr 138 423 408 rmoveto 168 -259 -4 hlineto -401 449 rmoveto 4 hlineto 196 -308 rlineto -200 hlineto -133 -290 rmoveto 207 50 -74 192 230 hlineto 152 -242 rlineto 82 241 75 50 -75 116 75 50 -75 191 74 50 -207 -50 74 -192 -198 hlineto -152 242 rlineto -188 -50 74 -191 -75 -50 75 -116 -75 -50 75 -191 -74 hlineto endchar 272 101 486 44 callsubr 272 -486 rmoveto 238 50 -71 -67 callsubr -31 callsubr endchar -407 endchar 5 -90 callsubr -67 callsubr -31 callsubr 258 549 -91 callsubr 5 -90 callsubr -67 callsubr -31 callsubr 273 -71 callsubr -39 298 323 120 callsubr -145 -335 rmoveto 216 29 169 156 259 vvcurveto 173 -86 105 -155 -139 -98 -93 -136 -135 76 -85 128 90 52 52 48 21 vhcurveto 6 -1 -13 -168 -109 -125 -172 -35 rlinecurve endchar -275 179 174 -50 callsubr 41 callsubr -275 179 504 -50 callsubr 41 callsubr -39 135 69 rmoveto 65 hlineto 58 102 rlineto 276 58 -243 hlineto 83 152 rlineto 160 58 -127 hlineto 58 102 -65 0 -58 -102 rlineto -276 -58 243 hlineto -83 -152 rlineto -160 -58 127 hlineto endchar 5 -90 callsubr -67 callsubr -31 callsubr 353 564 -95 callsubr 45 279 438 rmoveto 157 hlineto -31 -178 rlineto -157 hlineto -105 -260 rmoveto 62 hlineto 34 204 157 0 -34 -204 61 0 35 204 rlineto 134 56 -125 hlineto 30 178 rlineto 135 56 -125 hlineto 34 204 -62 0 -34 -204 -157 0 34 204 -61 0 -35 -204 rlineto -134 -56 125 hlineto -30 -178 rlineto -135 -56 125 hlineto endchar 484 765 247 rmoveto 312 58 -312 hlineto 156 57 rmoveto 96 62 69 105 105 -62 69 -96 -96 -62 -69 -105 -105 62 -69 96 hvcurveto 44 vmoveto -59 -23 40 56 hvcurveto 68 vlineto 56 23 40 59 59 23 -40 -56 vhcurveto -68 vlineto -56 -23 -40 -59 vhcurveto -869 -406 rmoveto 207 50 -74 548 4 hlineto 378 -94 callgsubr -346 549 rlineto -188 -69 callsubr -92 callsubr endchar -92 callsubr -6 542 -100 callsubr -92 callsubr 553 vmoveto 9 callsubr -92 callsubr -129 553 -106 callsubr -92 callsubr 136 666 -75 callsubr -63 callsubr -92 callsubr -129 553 -56 callsubr 157 -785 -99 callsubr -92 callsubr -136 666 -64 callsubr -92 callsubr -129 535 -76 callsubr -65 callsubr -92 callsubr -129 535 -68 callsubr -92 callsubr 94 573 -107 callsubr -92 callsubr -212 vmoveto -30 callsubr 275 522 322 rmoveto 95 45 61 84 84 38 -64 -92 vhcurveto -12 -251 vlineto -238 -268 rmoveto 49 callsubr -54 vmoveto 80 63 34 72 39 hvcurveto 6 hlineto -72 39 61 -34 84 hhcurveto -102 callgsubr 65 109 hvcurveto 29 350 26 vlineto 143 -82 100 -139 -75 -73 -37 -71 -31 vhcurveto -6 hlineto 72 -28 -71 36 -83 hhcurveto -145 -95 -106 -165 -166 95 -105 145 hvcurveto endchar -39 243 -206 -73 callsubr 124 callsubr -639 -57 -206 -73 callsubr 124 callsubr -92 callsubr 6 542 -89 callsubr -92 callsubr 18 534 -101 callsubr -96 callsubr -39 callsubr endchar -39 callsubr -6 -58 callsubr -39 callsubr -158 vmoveto -30 callsubr -39 callsubr 6 596 -89 callsubr -39 callsubr 18 588 -101 callsubr -96 callsubr -39 callsubr 55 626 -46 callsubr -37 callsubr -92 callsubr 79 542 -72 callsubr -62 callsubr -92 callsubr -143 598 -78 callsubr -39 99 hmoveto 434 49 -164 649 -86 hlineto -209 -110 17 -46 177 78 rlineto -571 -169 vlineto endchar 259 -61 callsubr -54 callsubr -101 -698 rmoveto 88 callsubr endchar -281 54 hmoveto 127 callsubr endchar 244 -61 callsubr -54 callsubr 23 -387 14 callsubr -281 -61 callsubr endchar -231 176 385 rmoveto -39 -24 15 35 hvcurveto 11 vlineto 41 23 21 69 vhcurveto 43 -61 hlineto -43 -32 -19 -40 vhcurveto -27 -43 rmoveto 60 27 27 31 15 hvcurveto 3 -3 hlineto -35 19 -20 40 23 20 7 7 11 vhcurveto 27 -48 211 vlineto 69 -46 41 -81 -85 -50 -38 -39 -27 18 -16 25 25 17 15 23 17 -11 14 -11 4 vhcurveto 3 vlineto 7 12 17 2 23 hhcurveto 51 25 -28 -55 hvcurveto -46 -49 vlineto -115 -43 -36 -68 -57 37 -37 71 hvcurveto endchar -227 206 342 rmoveto 100 64 70 111 111 -64 70 -100 -100 -64 -70 -111 -111 64 -70 100 hvcurveto 37 vmoveto -63 -25 43 59 hvcurveto 84 vlineto 59 25 43 63 63 25 -43 -59 vhcurveto -84 vlineto -59 -25 -43 -63 vhcurveto endchar 80 callsubr endchar 80 callsubr 231 592 -100 callsubr -92 callsubr 64 572 -95 callsubr -22 329 17 callsubr 50 callsubr 91 -53 callsubr -596 -71 vlineto endchar 0 355 648 rmoveto 86 -570 hlineto -96 -30 -57 -56 -24 vhcurveto -63 -56 rmoveto 128 74 79 155 hvcurveto 569 74 50 -267 vlineto -140 -108 -66 -132 -132 109 -67 140 hvcurveto -412 -11 vlineto -47 -30 9 15 -24 hvcurveto 3 vlineto 27 8 17 19 31 vvcurveto 35 -21 23 -36 -39 -24 -29 -40 -69 73 -49 105 vhcurveto endchar -311 332 -120 rmoveto -110 83 -64 150 161 vvcurveto 76 vlineto 161 64 150 110 83 vhcurveto -28 34 rlineto -118 -72 -131 -171 -223 vvcurveto -223 131 -171 118 -72 vhcurveto endchar -311 24 -154 rmoveto 118 72 131 171 223 vvcurveto 223 -131 171 -118 72 vhcurveto -28 -34 rlineto 110 -83 64 -150 -161 vvcurveto -76 vlineto -161 -64 -150 -110 -83 vhcurveto endchar -52 289 41 rmoveto -83 -52 53 104 hvcurveto 93 vlineto 104 52 53 83 83 52 -53 -104 vhcurveto -93 vlineto -104 -52 -53 -83 vhcurveto -53 vmoveto 145 92 91 189 253 -157 124 -106 53 hvcurveto -85 hlineto 119 -64 75 -96 32 -97 -4 -2 rcurveline 43 -31 -44 22 -57 hhcurveto -131 -85 -100 -156 -159 89 -101 148 hvcurveto endchar 275 184 hmoveto 64 hlineto 482 698 rlineto -64 hlineto 24 -710 rmoveto -4 callsubr -466 326 rmoveto -4 callsubr 466 -283 rmoveto -5 callsubr -466 326 rmoveto -5 callsubr endchar -373 133 -12 rmoveto 52 callsubr endchar -315 162 236 rmoveto 52 callsubr endchar 659 184 hmoveto 64 hlineto 482 698 rlineto -64 hlineto 408 -710 rmoveto -4 callsubr -384 hmoveto -4 callsubr -466 326 rmoveto -4 callsubr 850 -283 rmoveto -5 callsubr -384 hmoveto -5 callsubr -466 326 rmoveto -5 callsubr endchar 59 227 501 rmoveto 240 -109 -240 hlineto 254 vmoveto 115 hlineto 64 40 -40 -57 15 hvcurveto -234 hlineto -205 vmoveto 234 hlineto -57 -15 -40 -40 -64 hhcurveto -115 hlineto -175 -247 rmoveto 269 50 -94 145 128 hlineto 105 74 51 97 25 hvcurveto 86 50 -75 hlineto 2 18 1 19 21 vvcurveto 17 -1 17 -1 15 vhcurveto 74 50 -83 hlineto 100 -25 -72 48 -109 hhcurveto -304 -50 74 -98 -74 -50 74 -107 -74 -50 74 -293 -74 hlineto endchar -16 503 -10 rmoveto 39 30 10 11 20 hvcurveto 39 -91 415 91 53 -571 -53 91 -465 95 465 198 -378 vlineto -71 25 -26 73 vhcurveto endchar -39 269 76 rmoveto 62 200 203 58 -203 200 -62 -200 -203 -58 203 hlineto endchar -39 66 hmoveto 468 58 -468 hlineto 203 113 rmoveto 62 193 203 58 -203 193 -62 -193 -203 -58 203 hlineto endchar -392 63 372 rmoveto 38 hlineto 98 326 rlineto -103 hlineto endchar -210 63 372 rmoveto 38 hlineto 98 326 rlineto -103 hlineto 149 -326 rmoveto 38 hlineto 98 326 rlineto -103 hlineto endchar 125 62 -200 rmoveto 249 50 -74 794 290 -794 -74 -50 249 50 -74 798 84 50 -660 -50 84 -798 -74 hlineto endchar -35 47 callsubr 33 -252 rmoveto 258 50 -71 668 -40 hlineto 53 callsubr 80 49 42 49 21 hvcurveto 3 -229 -91 hlineto endchar -144 198 -12 rmoveto 52 callsubr -30 222 rmoveto 59 110 hlineto 128 11 99 73 122 vvcurveto 113 -82 71 -132 -112 -89 -58 -70 -95 callgsubr 20 30 9 44 hhcurveto 75 48 -44 -79 hvcurveto -22 vlineto -89 -71 -46 -108 -5 vhcurveto endchar -144 297 394 rmoveto 52 callsubr -42 -586 rmoveto 112 89 58 70 43 -24 26 -39 -39 -26 -28 -36 -27 18 -23 19 -8 hvcurveto -4 vlineto -11 -20 -30 -9 -44 hhcurveto -75 -48 44 79 hvcurveto 22 vlineto 89 71 46 108 5 vhcurveto 164 -59 -110 vlineto -128 -11 -99 -73 -122 vvcurveto -113 82 -71 132 vhcurveto endchar -213 -85 callgsubr 207 -190 rmoveto 34 hlineto 25 190 rlineto 96 -84 -96 vlineto endchar -171 99 -125 44 callsubr 259 hmoveto 11 callsubr -171 104 callsubr 201 hmoveto 41 27 30 36 hvcurveto 6 vlineto 35 -23 28 -39 vhcurveto -2 hlineto 11 41 30 46 47 40 rrcurveto -58 hlineto -56 -43 -45 -77 -62 vvcurveto -10 vlineto -39 24 -31 43 vhcurveto endchar -171 101 486 44 callsubr 259 hmoveto 11 callsubr -372 104 callsubr endchar -372 101 486 rmoveto 11 callsubr -372 99 -125 rmoveto 11 callsubr -395 -85 callgsubr endchar 6 callsubr endchar 6 callsubr 214 534 -100 callsubr -39 258 hmoveto 95 hlineto 208 698 -62 0 -140 -475 -48 -171 -7 0 -48 171 -85 295 rlineto -146 -58 98 hlineto endchar 6 callsubr 189 549 -91 callsubr 6 callsubr 111 -71 callsubr -165 206 586 rmoveto 38 hlineto 19 10 -11 -19 hvcurveto -14 vlineto -19 -10 -11 -19 vhcurveto -38 hlineto 31 -214 rmoveto 108 91 88 118 118 -91 88 -108 -108 -91 -88 -118 -118 91 -88 108 hvcurveto 33 vmoveto -92 -67 74 87 hvcurveto 24 vlineto 87 67 74 92 92 67 -74 -87 vhcurveto -24 vlineto -87 -67 -74 -92 vhcurveto -92 67 rmoveto 78 20 -17 72 26 hlineto 34 -63 rlineto -23 12 17 -6 27 hhcurveto 14 20 -2 hlineto -12 -9 6 11 -5 hvcurveto -35 62 rlineto 28 8 14 19 30 vvcurveto 37 -24 19 -41 vhcurveto -105 -20 19 -172 -19 hlineto endchar -39 300 576 rmoveto 98 callsubr -39 300 743 rmoveto 98 callsubr -39 299 818 -7 callsubr -39 299 987 -7 callsubr -639 576 vmoveto 98 callsubr -1 227 647 rmoveto 148 hlineto 72 39 -49 -65 hvcurveto -50 vlineto -65 -39 -49 -72 vhcurveto -148 hlineto -175 -369 rmoveto 269 50 -94 109 224 50 -224 110 161 hlineto 129 75 71 121 121 -70 66 -131 hvcurveto -339 -50 74 -279 -74 -50 74 -110 -74 -50 74 -109 -74 hlineto endchar 238 225 644 rmoveto 65 hlineto 68 38 -43 -67 hvcurveto -48 vlineto -67 -38 -48 -68 vhcurveto -65 hlineto 406 -383 rmoveto 119 64 58 80 71 -42 26 -70 38 hvcurveto -31 17 rlineto -39 19 -26 24 41 vvcurveto 44 25 31 64 16 14 -1 -4 11 vhcurveto -2 vlineto -19 -7 -9 -15 -24 vvcurveto -27 20 -22 31 32 22 23 35 55 -47 30 -85 -100 -61 -50 -77 -76 37 -38 71 -37 vhcurveto 30 -16 rlineto 39 -21 32 -16 -39 vvcurveto -47 -36 -23 -59 -77 -45 44 92 -44 vhcurveto -81 168 rlineto 75 27 39 61 85 vvcurveto 123 -75 60 -121 vhcurveto -253 -50 74 -598 -74 -50 247 50 -74 272 65 hlineto 95 -192 rlineto -110 56 70 -32 120 hhcurveto endchar -31 565 hmoveto 50 -9 vlineto -48 -29 21 47 -27 hvcurveto -120 208 88 19 52 55 11 80 rlinecurve 82 50 -81 hlineto -7 51 -24 46 -55 17 rrcurveto 4 167 50 -506 -50 210 vlineto 71 39 -50 -68 1 hvcurveto -321 -50 321 hlineto -68 -1 -39 -50 -71 hhcurveto -210 -50 173 hlineto 120 -217 rlineto -71 39 46 -24 80 hhcurveto endchar -43 callsubr endchar -43 callsubr -24 -58 callsubr -43 callsubr -49 611 -91 callsubr -148 262 57 callsubr 10 48 rlineto 105 7 65 61 87 vvcurveto 91 -53 45 -104 23 vhcurveto -54 11 rlineto -53 13 -30 29 45 vvcurveto 51 37 25 65 76 33 -27 -52 vhcurveto -35 68 156 -68 -45 -4 vlineto 33 -12 -42 24 -64 hhcurveto -108 -68 -56 -93 -88 52 -50 101 -23 hvcurveto 57 -13 rlineto 55 -13 27 -28 -43 vvcurveto -57 -41 -24 -73 -80 -33 37 56 vhcurveto 20 -68 -155 68 52 4 vlineto 12 -28 37 -27 51 -7 rrcurveto -13 -66 -32 callsubr -99 85 callsubr -43 callsubr -147 607 -106 callsubr -43 callsubr -11 -242 -51 callsubr -50 352 161 rmoveto -11 4 -13 5 -11 3 -68 19 rcurveline -61 17 -31 29 51 vvcurveto 63 32 31 49 11 vhcurveto 11 -4 13 -5 11 -3 68 -19 rcurveline 61 -17 31 -29 -51 vvcurveto -63 -32 -31 -49 -11 vhcurveto -82 -316 rmoveto 127 69 60 100 61 -25 45 -49 29 hvcurveto 4 vlineto 75 23 51 52 72 vvcurveto 87 -56 43 -101 29 vhcurveto -64 18 rlineto -56 17 -32 31 52 vvcurveto 63 42 30 79 23 21 -3 -7 20 vhcurveto -2 vlineto -19 -11 -15 -11 -28 vvcurveto -31 22 -24 35 37 26 25 41 61 -61 39 -100 -127 -69 -60 -100 -61 25 -45 49 -29 vhcurveto -4 vlineto -75 -23 -51 -52 -72 vvcurveto -87 54 -43 103 -29 vhcurveto 64 -18 rlineto 56 -17 32 -31 -52 vvcurveto -63 -42 -30 -79 -23 -21 3 7 -20 vhcurveto 2 vlineto 19 11 15 11 28 vvcurveto 31 -22 24 -35 -37 -26 -25 -41 -61 61 -39 100 vhcurveto endchar -351 109 108 callsubr 93 532 rmoveto 52 callsubr endchar -39 184 hmoveto 88 hlineto 260 626 rlineto 72 -464 -209 54 114 344 vlineto endchar -301 93 hmoveto 62 callsubr -301 93 330 rmoveto 62 callsubr 129 266 hmoveto 255 hlineto 112 45 48 123 hvcurveto 527 -60 -499 vlineto -79 -28 -25 -67 vhcurveto -197 423 -60 hlineto -176 -518 rmoveto 60 603 197 hlineto 67 28 -25 -79 hvcurveto -319 60 347 vlineto 123 -45 48 -112 vhcurveto -255 hlineto endchar -39 302 41 120 callsubr 1 -53 rmoveto 139 98 93 136 135 -76 85 -128 -90 -54 -52 -48 -19 hvcurveto -6 1 rlineto 13 168 109 126 172 34 -14 44 rcurveline -216 -29 -169 -156 -259 vvcurveto -173 86 -105 155 vhcurveto endchar -275 185 35 -50 callsubr 8 callsubr -275 185 365 -50 callsubr 8 callsubr -259 8 -143 rmoveto 64 hlineto 266 891 rlineto -64 hlineto endchar -245 63 266 rmoveto 268 78 -268 hlineto endchar -407 endchar -51 62 hmoveto 464 181 -54 -99 -338 5 hlineto 52 27 56 62 83 vvcurveto 17 -2 15 -3 15 vhcurveto 168 52 -179 hlineto -15 52 -20 49 67 107 callsubr -57 20 -50 17 -51 vhcurveto -76 -52 92 hlineto 5 -20 4 -19 -21 vvcurveto -72 -36 -67 -57 -27 vhcurveto endchar -23 57 -200 rmoveto 490 208 -54 -118 -356 hlineto 246 346 0 55 -223 353 rlineto 333 -117 54 171 -490 -73 hlineto 248 -395 0 -4 -248 -353 rlineto endchar 15 callsubr endchar -276 209 -6 rmoveto 51 54 10 12 23 hvcurveto 38 -130 202 116 50 -116 159 129 callsubr -159 -53 -50 53 -165 hlineto -69 25 -28 72 vhcurveto endchar 15 callsubr 54 572 -23 callsubr 15 callsubr 2 -248 -51 callsubr 15 callsubr 2 -248 -51 callsubr 15 37 647 rmoveto 580 51 -580 hlineto 145 -698 rmoveto 289 50 -94 476 160 -120 80 171 -580 -171 80 120 159 -476 -94 hlineto endchar -35 315 17 callsubr 50 callsubr 321 -53 callsubr -826 -71 vlineto endchar -39 269 -12 rmoveto 155 99 77 126 106 -87 54 -83 16 hvcurveto 4 vlineto 80 16 76 58 90 vvcurveto 117 -98 58 -131 -124 -77 -64 -64 -43 24 -26 39 39 26 28 36 27 -18 23 -19 8 vhcurveto 4 vlineto 12 20 35 8 45 hhcurveto 79 51 -38 -75 hvcurveto -35 vlineto -69 -50 -50 -96 vhcurveto -73 -54 77 hlineto 103 53 -48 -84 hvcurveto -34 vlineto -88 -60 -45 -101 -47 -36 131 callsubr 79 -64 131 vhcurveto endchar -292 155 -6 37 callsubr 192 7 callsubr -13 -324 -24 callsubr 23 -387 14 callsubr -292 7 callsubr endchar -39 364 614 -95 callsubr -39 355 614 -46 callsubr -37 callsubr -39 355 781 -46 callsubr -37 callsubr -39 364 781 -95 callsubr -639 64 614 -95 callsubr 81 94 418 rmoveto 134 28 -39 219 59 -44 40 77 -254 -77 40 44 59 -219 -39 hlineto 229 -28 rmoveto 99 28 -32 157 hlineto -3 44 3 0 18 -44 75 -148 76 148 18 44 3 0 -3 -44 rlineto -157 -32 -28 118 28 -32 223 32 29 -94 vlineto -75 -156 -77 156 rlineto -94 -29 32 -223 -32 hlineto endchar 25 189 hmoveto 289 50 -94 181 hlineto 121 59 0 55 -121 -59 0 98 121 59 0 55 -121 -60 rlineto 206 65 callsubr -255 vlineto -121 -59 0 -55 121 59 0 -98 -121 -59 0 -55 121 59 rlineto -131 -94 vlineto endchar -39 54 hmoveto 462 182 -54 -95 -327 4 hlineto 187 160 rlineto 91 75 76 75 118 vvcurveto 120 -85 71 -140 -117 -85 -60 -68 -95 callgsubr 19 32 9 43 hhcurveto 83 50 -49 -83 hvcurveto -24 vlineto -79 -40 -63 -65 -65 vhcurveto -221 -222 rlineto endchar -291 36 hmoveto 88 callsubr endchar -291 36 330 rmoveto 88 callsubr endchar -93 callsubr -87 callsubr -81 callsubr endchar -93 callsubr -87 callsubr -81 callsubr 24 -58 callsubr -93 callsubr -87 callsubr -81 callsubr 30 607 -85 callsubr -93 callsubr -87 callsubr -81 callsubr -99 607 -106 callsubr -93 callsubr -87 callsubr -81 callsubr 124 627 -107 callsubr -93 callsubr -87 callsubr -81 callsubr 34 -158 -99 callsubr -93 callsubr -87 callsubr -81 callsubr 36 596 -89 callsubr -93 callsubr -87 callsubr -81 callsubr 48 588 -101 callsubr -96 callsubr -93 callsubr -34 callsubr endchar -93 callsubr -34 callsubr 24 -58 callsubr -93 callsubr -34 callsubr 34 -158 -99 callsubr -93 callsubr -34 callsubr 36 596 -89 callsubr -93 callsubr -34 callsubr 48 588 -101 callsubr -96 callsubr -93 callsubr -34 callsubr 94 626 -95 callsubr -93 callsubr -87 callsubr -81 callsubr 109 596 -72 callsubr -62 callsubr -93 callsubr -87 callsubr -81 callsubr -113 652 -78 callsubr -76 25 -160 rmoveto 512 62 -512 hlineto endchar -97 callsubr 290 -18 callsubr -97 callsubr 378 736 -107 callsubr 181 515 -164 rmoveto 91 hlineto 78 80 47 124 hvcurveto 196 -80 callgsubr 260 227 -117 80 171 -655 -171 80 117 167 -594 -74 -50 249 50 -74 281 hlineto 23 39 40 14 59 hhcurveto 105 37 -45 -124 hvcurveto -187 vlineto -69 -20 -29 -24 -24 vhcurveto -104 hlineto endchar -100 callgsubr 255 -70 callsubr 15 360 -12 rmoveto 153 85 69 67 43 -24 27 -39 -40 -25 -26 -39 -28 19 -24 17 -8 hvcurveto -4 vlineto -15 -24 -44 -10 -64 hhcurveto -140 -72 101 141 hvcurveto 47 278 54 -278 41 vlineto 139 63 94 127 91 60 -46 -67 vhcurveto -56 80 210 -80 -61 -4 vlineto 44 -28 -54 29 -80 hhcurveto -168 -119 -129 -232 -224 118 -137 192 hvcurveto endchar -45 callsubr endchar -88 callsubr endchar -88 callsubr 218 736 -107 callsubr -172 157 -12 -38 callsubr endchar 310 561 24 callsubr -574 -66 -89 callgsubr 169 -594 -74 -50 314 vlineto 137 72 69 137 137 -72 69 -137 hvcurveto -139 236 74 50 -485 -50 77 -107 hlineto 102 callsubr 382 633 24 callsubr -708 -54 rmoveto 249 50 -74 280 305 -280 -74 -50 314 21 callsubr -139 236 74 50 -249 -50 74 -264 -305 264 -26 callsubr endchar 259 208 hmoveto 249 50 -74 281 hlineto 24 39 44 13 60 hhcurveto 101 46 -45 -124 hvcurveto -149 -74 -50 249 50 -74 153 -81 callgsubr 260 167 -117 80 171 -595 -171 80 117 167 -594 -74 hlineto endchar 62 -86 callsubr 97 callsubr 326 -70 callsubr -11 callsubr 350 -18 callsubr -14 callsubr 137 777 -83 callsubr 131 342 -160 rmoveto 87 160 289 -25 callsubr -595 -316 595 1 callsubr 290 hlineto endchar -105 callsubr -102 callsubr endchar -12 227 54 rmoveto 294 130 vlineto 73 41 -45 -75 hvcurveto -54 vlineto -75 -41 -45 -73 vhcurveto -305 -54 rmoveto 316 hlineto 137 72 73 131 131 -72 67 -137 hvcurveto -141 242 220 -117 80 171 -475 -69 callsubr 37 83 callsubr -100 callgsubr endchar 62 157 54 rmoveto 80 115 45 198 226 vvcurveto 51 179 -590 vlineto -455 -214 rmoveto 87 160 486 -160 87 214 -104 594 74 50 -495 -50 77 -54 hlineto -252 -53 -176 -83 -112 vhcurveto -76 hlineto endchar -97 callsubr endchar 39 callsubr endchar 81 callsubr endchar -11 callsubr endchar -11 callsubr 344 715 -83 callsubr 62 -86 callsubr 97 callsubr endchar 58 114 -12 -89 callgsubr 179 -594 27 callsubr -495 -50 77 -107 vlineto 102 callsubr 237 92 callsubr 152 -86 callsubr 3 callsubr 249 -25 callsubr -264 -337 264 -26 callsubr endchar -94 callsubr endchar 152 -86 callsubr 594 337 -594 27 callsubr -687 -69 callsubr -3 227 644 55 callsubr 126 callsubr -41 callsubr endchar -19 callsubr 0 callsubr endchar -14 callsubr endchar 212 476 172 rmoveto 364 48 vlineto 105 71 -48 -100 hvcurveto -68 vlineto -100 -71 -48 -105 vhcurveto -197 hmoveto -105 -71 48 100 hvcurveto 68 vlineto 100 71 48 105 vhcurveto 48 -364 hlineto -73 -184 rmoveto 248 50 -74 80 54 hlineto 173 102 83 153 153 -102 83 -173 hvcurveto -54 70 74 50 -248 -50 73 -70 -54 hlineto -173 -102 -83 -153 -153 102 -83 173 hvcurveto 54 -80 -73 hlineto endchar 41 19 hmoveto 61 callsubr 93 callsubr 145 661 -160 rmoveto 88 214 -105 594 74 50 -249 -50 74 -595 -316 595 1 callsubr 609 hlineto endchar 86 404 hmoveto 269 -25 callsubr 99 callsubr hlineto endchar 374 52 hmoveto 909 50 -74 598 74 50 -247 25 callsubr -245 25 callsubr -247 -69 callsubr 387 904 73 callsubr -247 25 callsubr -245 25 callsubr -247 -50 74 -598 -74 -50 852 hlineto endchar 118 356 54 rmoveto 304 140 71 callsubr -98 callgsubr -395 -171 80 117 140 -594 -74 hlineto endchar 284 227 24 callsubr 268 -54 rmoveto 249 -25 callsubr -598 -74 hlineto -570 -50 rmoveto 314 21 callsubr -139 236 -26 callsubr endchar -11 227 54 rmoveto 304 140 71 callsubr -98 callgsubr -249 -69 callsubr 15 293 -12 rmoveto 192 119 134 227 231 -117 130 -164 -88 -51 -29 -44 -29 hvcurveto -4 61 -80 -210 80 56 hlineto 67 59 46 92 127 63 -94 -139 vhcurveto -41 -278 -54 278 -47 vlineto -141 -72 -101 -141 -64 -43 10 15 -24 64 callsubr -67 85 -69 152 vhcurveto endchar 358 650 45 rmoveto -122 -58 92 141 hvcurveto 142 vlineto 141 58 92 122 122 58 -92 -141 vhcurveto -142 vlineto -141 -58 -92 -122 vhcurveto -57 vmoveto 182 110 134 227 227 -110 134 -182 -171 -109 -121 -205 -11 hvcurveto -132 264 1 callsubr 249 50 -74 280 131 hlineto -216 5 112 -126 175 hhcurveto endchar 42 454 371 rmoveto -146 hlineto -71 -40 47 65 hvcurveto 49 vlineto 65 40 47 71 vhcurveto 146 hlineto -438 -644 rmoveto 154 hlineto 191 319 rlineto 93 -269 27 callsubr -334 hlineto -129 -75 -74 -119 -107 55 -61 139 -9 hvcurveto -4 vlineto -28 -5 -23 -19 -24 -41 -127 -209 rcurveline -67 hlineto endchar -104 callsubr endchar -103 callsubr endchar -85 278 41 rmoveto -87 -39 62 91 hvcurveto 103 vlineto 91 39 62 87 87 39 -62 -91 vhcurveto -103 vlineto -91 -39 -62 -87 vhcurveto 1 -53 rmoveto 140 91 103 161 161 -85 91 -135 -93 -56 -42 -80 -33 hvcurveto -4 hlineto 8 103 13 50 33 31 30 27 32 3 95 8 97 8 31 10 21 21 rrcurveto 17 19 8 20 33 vvcurveto 18 -2 15 -4 12 vhcurveto -44 hlineto -5 -39 rlineto -23 -4 -33 -6 -51 -5 -109 -11 -47 -13 -39 -39 rrcurveto -58 -61 -28 -95 -191 vvcurveto -208 98 -100 135 vhcurveto endchar -71 215 290 rmoveto 175 105 vlineto 51 28 -31 -43 hvcurveto -27 vlineto -43 -28 -31 -51 vhcurveto -105 -237 rmoveto 185 115 vlineto 56 29 -31 -48 hvcurveto -27 vlineto -48 -29 -31 -56 vhcurveto -282 -53 rmoveto 296 hlineto 111 61 47 95 78 -60 40 -63 8 hvcurveto 5 vlineto 60 12 46 35 73 vvcurveto 76 -56 49 -101 vhcurveto -294 -50 71 -418 -71 hlineto endchar 31 callsubr -93 callgsubr endchar -20 161 53 rmoveto 55 77 35 130 161 vvcurveto 44 140 -412 vlineto -375 -203 rmoveto 82 150 407 -150 82 203 -100 416 71 49 -445 -49 76 -47 hlineto -171 -40 -118 -61 -80 vhcurveto -72 hlineto endchar -98 callsubr endchar 38 callsubr endchar 82 callsubr endchar -9 callsubr endchar -9 callsubr 285 544 -83 callsubr -52 -90 callsubr 188 78 hlineto 148 -238 rlineto 70 callsubr -238 -50 71 -418 -71 hlineto endchar -25 96 -12 -87 callgsubr 145 -415 -71 -50 238 50 -71 419 71 49 -450 -49 76 -66 vlineto 103 callsubr 113 48 hmoveto 204 50 -71 381 4 hlineto 36 -77 138 -276 138 276 36 77 rlineto 4 -381 26 callsubr -184 hlineto -139 -279 -4 0 -139 279 rlineto -190 -50 71 -418 -71 hlineto endchar 26 -90 callsubr 187 235 -187 26 callsubr -238 -50 71 -178 -235 178 30 callsubr hlineto endchar -92 callsubr endchar 27 -90 callsubr 414 236 -414 26 callsubr -570 -50 71 -418 -71 hlineto endchar -22 329 17 callsubr 50 callsubr 91 -53 callsubr -596 -71 vlineto endchar -33 callsubr endchar -103 132 hmoveto 272 50 -88 415 121 -100 67 153 -472 -153 67 100 121 -415 -88 hlineto endchar -84 callsubr endchar 143 527 42 rmoveto -53 -36 27 55 hvcurveto 269 vlineto 55 36 27 53 63 42 -51 -103 vhcurveto -125 vlineto -103 -42 -51 -63 vhcurveto -272 hmoveto -63 -42 51 103 hvcurveto 125 vlineto 103 42 51 63 53 36 -27 -55 vhcurveto -269 vlineto -55 -36 -27 -53 vhcurveto 17 -242 rmoveto 238 50 -71 198 4 hlineto -37 21 36 -23 53 hhcurveto 104 76 90 181 181 -76 90 -104 -53 -36 -21 -39 -21 hvcurveto -4 275 -53 callsubr -191 -4 vlineto 39 -21 -36 21 -53 hhcurveto -104 -76 -90 -181 -181 76 -90 104 53 36 23 37 21 hvcurveto 4 -198 -71 hlineto endchar -72 28 hmoveto 63 callsubr 94 callsubr 31 558 -150 rmoveto 82 203 -101 415 71 50 -238 -50 71 -415 -228 415 30 callsubr -50 510 hlineto endchar -101 callgsubr endchar 241 48 hmoveto 784 50 -71 418 71 50 -227 77 callsubr -86 callgsubr hlineto endchar 253 780 -150 rmoveto 82 203 -101 415 71 50 -227 77 callsubr -86 callgsubr -50 732 hlineto endchar 3 308 53 rmoveto 216 106 -29 callsubr -273 -53 rmoveto 294 23 callsubr -127 147 71 49 -346 -153 67 100 112 -415 -71 hlineto endchar 177 215 53 rmoveto 216 96 -29 callsubr 219 -53 rmoveto 238 50 -71 418 30 callsubr hlineto -482 -50 rmoveto 284 23 callsubr -117 146 30 callsubr hlineto endchar -90 215 53 rmoveto 216 106 -29 callsubr -273 -53 rmoveto 294 23 callsubr -127 146 30 callsubr hlineto endchar -107 238 -12 rmoveto 149 101 102 172 167 -88 101 -138 -67 -38 -25 -36 -27 hvcurveto -3 49 -67 -157 67 29 hlineto 56 48 35 72 89 47 -65 -109 vhcurveto -16 -197 -53 197 -23 vlineto -112 -61 -66 -100 -39 -35 56 callsubr -67 74 -57 120 vhcurveto endchar 190 560 42 rmoveto -84 -35 57 96 hvcurveto 128 vlineto 96 35 57 84 84 35 -57 -96 vhcurveto -128 vlineto -96 -35 -57 -84 vhcurveto -54 vmoveto 139 86 99 172 172 -86 99 -139 -128 -85 -89 -151 -11 hvcurveto -121 178 30 callsubr -50 238 50 -71 187 120 hlineto -157 9 83 -92 133 hhcurveto endchar -55 260 269 rmoveto -55 -32 33 52 hvcurveto 26 vlineto 44 23 41 64 vhcurveto 109 -196 hlineto -347 -269 rmoveto 131 hlineto 131 220 rlineto 85 -170 26 callsubr -297 hlineto -112 -56 -68 -82 -77 62 -49 96 -7 hvcurveto -4 vlineto -35 -5 -21 -16 -23 -37 -75 -123 rcurveline -53 hlineto endchar -98 callsubr 596 vmoveto 31 16 -75 183 -88 -43 rlineto endchar -98 callsubr 88 627 -107 callsubr -16 366 2 callsubr 377 vlineto 129 -49 65 -125 -81 -49 -49 -43 -16 vhcurveto -4 -105 callgsubr -50 238 50 -71 317 vlineto 66 59 31 56 77 36 -43 -92 vhcurveto -419 -22 callsubr 31 callsubr -93 callgsubr 216 534 -100 callsubr -107 292 -12 rmoveto 122 74 57 67 40 -24 25 -37 -39 -20 -26 -33 -27 12 -19 24 -11 hvcurveto -3 vlineto -14 -21 -33 -7 -45 hhcurveto -101 -55 70 108 hvcurveto 23 197 53 -197 16 vlineto 108 55 66 88 67 46 -34 -56 vhcurveto -30 67 157 -67 -49 -3 vlineto 36 -21 -38 25 -64 hhcurveto -138 -97 -106 -166 -168 93 -102 155 hvcurveto endchar -43 callsubr endchar -82 callsubr 119 577 rmoveto 123 callsubr endchar -82 callsubr 213 565 -107 callsubr -332 163 627 rmoveto 123 callsubr -111 -839 rmoveto 101 58 54 117 hvcurveto 571 -60 callsubr -536 -22 callsubr 168 485 53 rmoveto 216 94 -29 callsubr -483 -65 -87 callgsubr 135 -415 -71 -50 282 vlineto 108 62 58 103 103 -62 58 -108 hvcurveto -115 146 71 50 -440 -49 76 -66 hlineto 103 callsubr 219 536 53 rmoveto 216 94 -29 callsubr -582 -53 rmoveto 236 50 -69 187 225 -187 -69 -50 280 23 callsubr -115 146 71 50 -236 -50 69 -178 -225 178 69 50 -236 -50 71 -418 -71 hlineto endchar -9 -77 callsubr -67 callsubr -83 callgsubr -52 -90 callsubr 188 78 hlineto 148 -238 rlineto 70 callsubr -238 -50 71 -418 -71 hlineto 281 534 -100 callsubr -9 callsubr 291 534 -89 callsubr -84 callsubr 167 806 -83 callsubr 19 288 -150 rmoveto 82 150 240 50 -71 418 71 50 -238 -50 71 -415 -228 415 30 callsubr -50 240 hlineto endchar 85 362 -12 rmoveto 4 callsubr 20 callsubr 28 callsubr -200 395 rmoveto 34 69 callsubr -34 vlineto -200 -338 -59 callsubr 48 400 -48 vlineto -141 -73 -95 -127 vhcurveto endchar 45 callsubr 106 callsubr -70 52 hmoveto 269 50 -94 594 307 214 -87 -160 -395 -69 callsubr 31 callsubr 415 245 202 -83 -149 -329 -49 71 -419 -71 hlineto endchar -70 52 hmoveto 269 50 -94 280 171 54 -171 260 75 callsubr -264 -88 -54 88 -280 -74 hlineto endchar 31 callsubr 187 131 50 -131 178 178 -100 67 153 -412 -49 71 -182 -81 -50 81 -187 -71 hlineto endchar 15 359 -164 rmoveto 91 hlineto 78 80 47 124 hvcurveto 162 -80 callgsubr 294 75 callsubr -598 -74 -50 249 50 -74 247 hlineto 23 39 40 14 59 hhcurveto 105 37 -45 -124 hvcurveto -153 vlineto -69 -20 -29 -24 -24 vhcurveto -104 hlineto endchar -77 288 -200 rmoveto 82 hlineto 75 75 48 122 hvcurveto 163 vlineto 112 -49 46 -105 -72 -42 -25 -43 -33 vhcurveto -4 242 178 -100 67 153 -412 -49 71 -419 -71 -50 254 50 -87 102 hlineto 49 42 26 68 75 24 -29 -73 vhcurveto -149 vlineto -71 -18 -28 -24 -24 vhcurveto -94 hlineto endchar 375 923 -160 rmoveto 87 214 -91 hlineto -147 250 -25 43 -20 12 -28 4 rlinecurve 74 173 19 43 17 30 76 callsubr 87 callsubr -50 115 callsubr 87 hlineto endchar 193 746 -150 rmoveto 82 203 -87 hlineto -101 166 -19 33 -21 14 -31 4 rlinecurve 51 115 12 29 15 25 11 12 19 callsubr 86 callsubr -50 116 callsubr 81 hlineto endchar -27 252 -160 rmoveto 87 151 hlineto 128 16 83 77 108 vvcurveto 107 -72 47 -84 13 vhcurveto 5 vlineto 80 16 61 59 93 vvcurveto 103 -79 75 -131 -88 -52 -30 -43 -29 vhcurveto -4 61 -80 -210 80 57 hlineto 65 58 46 88 87 42 -48 -71 vhcurveto -36 vlineto -72 -50 -46 -71 vhcurveto -102 -54 109 hlineto 84 45 -45 -77 hvcurveto -32 vlineto -80 -58 -53 -113 -57 -42 8 15 -23 64 callsubr -61 69 -63 126 -11 vhcurveto endchar -131 210 -150 rmoveto 82 142 hlineto 96 15 66 55 81 vvcurveto 71 -43 42 -75 13 vhcurveto 5 vlineto 63 13 42 43 63 vvcurveto 84 -62 53 -113 -71 -40 -26 -35 -25 vhcurveto -3 49 -67 -157 67 28 hlineto 56 47 36 72 63 32 -37 -51 vhcurveto -18 vlineto -51 -35 -33 -60 vhcurveto -66 -53 70 hlineto 72 32 -38 -49 hvcurveto -23 vlineto -51 -39 -40 -84 -55 -28 56 callsubr -60 61 -52 105 -11 vhcurveto endchar 70 618 -160 rmoveto 87 214 -88 hlineto -158 250 -27 43 -19 12 -32 4 rlinecurve 85 173 21 44 20 29 58 callsubr 125 callsubr -50 249 50 -74 280 98 hlineto 209 -330 rlineto 84 hlineto endchar -29 523 -150 rmoveto 83 203 -89 hlineto -102 166 109 callsubr -238 -50 71 -418 -71 -50 238 50 -71 188 78 hlineto 148 -238 rlineto 82 hlineto endchar 76 268 174 rmoveto 56 156 29 hlineto 192 -330 rlineto 157 50 -68 hlineto -149 254 -27 44 -16 11 -31 4 rlinecurve 75 173 19 44 18 29 76 callsubr -48 hvcurveto -78 -178 rlineto -31 155 -56 -155 -41 266 1 callsubr 249 50 -74 280 41 hlineto endchar -25 -90 callsubr 188 35 -106 51 106 27 hlineto 137 -238 rlineto 134 50 -53 hlineto -99 169 -19 32 -20 15 -33 4 rlinecurve 45 115 12 29 17 24 12 13 19 callsubr -48 -43 -26 -96 -39 hvcurveto -48 -120 rlineto -27 106 -51 -106 -35 180 30 callsubr hlineto endchar 190 182 hmoveto 249 50 -74 280 98 hlineto 204 -330 rlineto 157 50 -68 hlineto -160 256 -24 40 -21 13 -32 4 rlinecurve 88 179 15 31 21 34 16 21 rlinecurve 4 hlineto -36 1 23 -26 37 hhcurveto 41 23 30 40 43 -28 31 -51 -59 -42 -32 -110 -54 hvcurveto -92 -186 rlineto -97 266 74 50 -396 -171 80 117 141 -594 -74 hlineto endchar 40 140 hmoveto 238 50 -71 188 78 hlineto 148 -238 rlineto 70 callsubr -345 -153 67 100 111 -415 -71 hlineto endchar 165 682 73 callsubr -249 -50 74 -264 -337 264 1 callsubr 249 50 -74 3 callsubr 192 hlineto endchar 37 564 -150 rmoveto 82 203 -100 415 71 50 -238 -50 71 -178 -235 178 30 callsubr -50 238 50 -71 187 235 -187 -71 -50 185 hlineto endchar 341 -86 callsubr 280 311 -280 -74 -50 249 50 -74 594 226 -117 80 171 -481 -50 74 -264 -311 264 -26 callsubr endchar 165 -90 callsubr 187 225 -187 -71 -50 258 50 -91 415 169 -100 67 153 -403 -50 71 -178 -225 178 30 callsubr hlineto endchar 12 309 -160 rmoveto 87 152 hlineto 110 19 65 83 24 71 -42 22 rcurveline 48 callsubr -51 80 208 -99 callgsubr -205 99 -135 160 -19 hvcurveto endchar -119 240 -150 rmoveto 82 141 hlineto 88 15 51 59 21 61 -36 23 rcurveline 36 callsubr -144 71 -105 125 -19 vhcurveto endchar -66 callsubr endchar -99 151 -200 rmoveto 239 50 -72 150 hlineto 168 468 32 callsubr 121 callsubr -150 -71 vlineto endchar 5 180 hmoveto 284 50 -91 185 143 52 -144 hlineto 199 361 118 callsubr 196 -361 rlineto -140 -52 143 -185 -92 hlineto endchar -99 151 -200 rmoveto 239 50 -72 100 109 50 -109 hlineto 168 468 32 callsubr 121 callsubr -109 -50 109 -100 -71 hlineto endchar 48 596 -160 rmoveto 87 214 -86 hlineto -207 313 203 281 rlineto 59 50 -200 -50 67 hlineto -159 -235 -4 0 -151 235 rlineto 73 50 -252 -50 59 hlineto 205 -309 -212 -289 rlineto -59 -50 61 callsubr 189 hlineto endchar -62 489 -150 rmoveto 82 203 -84 hlineto -151 216 142 199 rlineto 57 50 -184 -50 61 hlineto -105 -158 -4 0 -107 158 rlineto 59 50 -224 -50 51 hlineto 151 -217 -148 -201 rlineto -57 -50 63 callsubr 175 hlineto endchar 99 616 73 callsubr -249 -50 74 99 callsubr -50 212 hlineto endchar 3 530 -150 rmoveto 82 203 -101 416 71 49 100 callsubr -50 206 hlineto endchar 86 328 121 rmoveto 56 146 hlineto 44 5 33 12 33 17 rrcurveto 4 -251 -94 -50 269 -25 callsubr -294 hlineto -27 -19 -40 -13 -47 -4 rrcurveto 167 -56 -167 vlineto -87 7 -32 47 115 vvcurveto 161 74 50 -249 -50 74 -164 vlineto -152 60 -68 160 vhcurveto endchar -6 280 93 rmoveto 51 100 hlineto 36 12 28 20 19 27 rrcurveto 4 -202 -91 -50 258 50 -71 419 71 49 -232 -49 65 -146 hlineto -43 -34 -23 -53 -7 vhcurveto 105 -51 -106 vlineto -60 7 -21 27 67 vvcurveto 119 65 49 -232 -49 71 -127 vlineto -112 52 -46 108 vhcurveto 17 hlineto endchar 87 -86 callsubr 291 hlineto 24 39 44 13 60 hhcurveto 101 46 -45 -124 hvcurveto -159 -74 -50 249 50 -74 163 -81 callgsubr 254 -26 callsubr endchar -9 -77 callsubr 72 callsubr 322 -21 callsubr endchar -88 callsubr endchar 39 callsubr 488 715 -83 callsubr 38 callsubr 389 544 -83 callsubr -335 33 hmoveto 238 50 -71 648 71 50 -238 -50 71 -648 -71 hlineto endchar -105 callsubr -102 callsubr 329 715 -83 callsubr -104 callsubr 64 606 -83 callsubr -103 callsubr 15 606 -83 callsubr -105 callsubr -102 callsubr 423 736 -107 callsubr -104 callsubr 158 627 -107 callsubr -103 callsubr 109 627 -107 callsubr 34 callsubr endchar 33 callsubr endchar -97 callsubr 284 715 -83 callsubr -98 callsubr -6 606 -83 callsubr 65 84 callsubr -99 85 callsubr 39 callsubr 582 736 -107 callsubr 38 callsubr 483 565 -107 callsubr 81 callsubr 119 798 -107 callsubr 82 callsubr 117 627 -107 callsubr -11 callsubr 201 759 -78 callsubr -9 callsubr 142 590 -78 callsubr -11 callsubr 438 736 -107 callsubr -9 callsubr 379 565 -107 callsubr -94 callsubr 94 741 -107 callsubr -92 callsubr 94 573 -107 callsubr 85 362 -12 rmoveto 4 callsubr 20 callsubr 28 callsubr -200 395 rmoveto 34 69 callsubr -34 vlineto -200 -338 -59 callsubr 48 400 -48 vlineto -141 -73 -95 -127 vhcurveto endchar 45 callsubr 106 callsubr -14 callsubr -6 821 -78 callsubr -84 callsubr 24 852 -78 callsubr -14 callsubr 231 798 -107 callsubr -84 callsubr 261 827 -107 callsubr -14 callsubr 216 770 -72 callsubr -62 callsubr -84 callsubr 246 796 -72 callsubr -62 callsubr 86 404 hmoveto 269 -25 callsubr 99 callsubr hlineto 43 736 -107 callsubr -101 callgsubr 77 565 -107 callsubr 284 227 24 callsubr 268 -54 rmoveto 249 -25 callsubr -598 -74 hlineto -570 -50 rmoveto 314 21 callsubr -139 236 -26 callsubr 503 736 -107 callsubr 177 215 53 rmoveto 216 96 -29 callsubr 219 -53 rmoveto 238 50 -71 418 30 callsubr hlineto -482 -50 rmoveto 284 23 callsubr -117 146 30 callsubr hlineto 454 565 -107 callsubr 286 -61 callsubr -54 callsubr -7 -698 rmoveto 62 callsubr 271 -61 callsubr -54 callsubr 38 -524 -50 callsubr 41 callsubr 258 -61 callsubr -54 callsubr 18 -704 37 callsubr 248 36 330 rmoveto 88 callsubr 148 -388 -24 callsubr 18 -704 37 callsubr 257 -61 callsubr -54 callsubr 22 -704 -42 callsubr 247 36 330 rmoveto 88 callsubr 148 -388 -24 callsubr 22 -704 -42 callsubr 205 7 callsubr -13 -324 -24 callsubr 22 -704 -42 callsubr 233 198 641 rmoveto 4 -185 -138 hlineto 138 -126 rmoveto 69 72 54 54 -54 242 -76 hlineto -175 -242 rlineto -54 182 vlineto -32 -402 -24 callsubr 22 -704 -42 callsubr 237 -61 callsubr -54 callsubr 10 -663 -50 callsubr 8 callsubr 194 89 callsubr -12 -324 -24 callsubr 10 -663 -50 callsubr 8 callsubr 278 -61 callsubr -54 callsubr 44 -489 -44 callsubr 226 7 callsubr -13 -324 -24 callsubr 44 -489 -44 callsubr 235 89 callsubr -12 -324 -24 callsubr 44 -489 -44 callsubr 186 93 330 rmoveto 71 hlineto 142 313 rlineto 55 -274 -123 44 61 181 vlineto -155 -636 -24 callsubr 44 -489 -44 callsubr -15 523 -206 -73 callsubr 29 7 42 83 69 hvcurveto 38 vlineto -71 13 -87 callsubr -264 vlineto -129 49 -65 125 82 50 49 43 16 vhcurveto 4 -92 hlineto 112 22 1 -4 rlineto -67 -45 -45 -38 -53 -52 callsubr -93 callsubr -87 callsubr -81 callsubr 30 588 rmoveto 98 callsubr -93 callsubr -87 callsubr -81 callsubr 85 626 -46 callsubr -37 callsubr -99 233 hmoveto 74 hlineto 179 468 32 callsubr -103 callgsubr endchar -10 callsubr endchar -10 callsubr 353 116 -100 callsubr -10 callsubr 230 127 -106 callsubr -10 callsubr 453 147 -107 callsubr -10 callsubr 365 116 -89 callsubr 340 629 408 rmoveto 156 hlineto -71 -306 rlineto -4 hlineto -222 474 rmoveto 4 hlineto 75 -286 rlineto -155 hlineto -177 118 rmoveto 152 hlineto -77 -306 rlineto -4 hlineto -68 -102 rmoveto 97 hlineto 65 242 180 0 65 -242 97 0 61 241 rlineto 141 50 -129 hlineto 29 116 rlineto 100 50 -86 hlineto 48 191 rlineto 52 50 -205 -50 88 hlineto -45 -192 -179 0 -60 242 -94 0 -63 -242 -176 0 -45 192 rlineto 88 50 -245 -50 52 hlineto 48 -191 rlineto -86 -50 99 hlineto 29 -116 rlineto -128 -50 140 hlineto endchar -72 28 hmoveto 63 callsubr 94 callsubr -84 callsubr endchar -84 callsubr 161 796 -100 callsubr -84 callsubr 38 807 -106 callsubr -84 callsubr 261 827 -107 callsubr -84 callsubr 270 42 -99 callsubr 13 182 hmoveto 289 50 -94 101 171 50 -171 100 171 50 -149 hlineto 176 297 rlineto 55 50 -206 -50 86 hlineto -161 -282 -4 0 -155 282 rlineto 86 50 -253 -50 55 hlineto 169 -297 rlineto -142 -50 171 -100 -171 -50 171 -101 -94 hlineto endchar -84 callsubr 173 796 -89 callsubr -84 callsubr 185 788 -101 callsubr -96 callsubr -84 callsubr 231 826 -95 callsubr 13 callsubr endchar 13 callsubr 204 544 -100 callsubr 13 callsubr 179 559 -91 callsubr 13 callsubr 210 573 -80 callsubr -39 300 -12 46 callsubr 53 110 callsubr -39 300 41 rmoveto -76 -38 44 76 -19 hvcurveto 275 305 rlineto 1 -15 0 -14 -15 vvcurveto -146 vlineto -147 -35 -88 -108 vhcurveto -142 191 rmoveto -1 15 0 14 15 vvcurveto 146 vlineto 147 35 88 108 76 38 -44 -76 19 vhcurveto -133 -549 46 callsubr endchar -39 300 -12 46 callsubr 305 vmoveto 37 16 20 31 hvcurveto 10 vlineto 31 -16 20 -37 -37 -16 -20 -31 vhcurveto -10 vlineto -31 16 -20 37 vhcurveto -252 110 callsubr -265 187 -6 96 callsubr -265 187 324 96 callsubr vhcurveto -3 vlineto -16 -7 -11 -14 -25 vvcurveto -27 21 -24 31 33 22 25 35 52 -44 33 return -295 vlineto -66 -59 -31 -56 -77 -36 43 92 vhcurveto 341 -60 callsubr return 177 185 50 -185 95 hlineto -96 -19 rlineto -76 -85 -50 85 -565 -71 return 128 83 98 173 173 -83 98 -128 -80 -48 -42 -49 -21 hvcurveto -4 return -132 -369 -4 0 -132 369 rlineto 71 50 -224 -50 51 hlineto return 114 68 68 69 24 hvcurveto -37 24 rlineto -53 -27 -45 -38 -80 hhcurveto -92 -59 return -9 324 hmoveto 258 50 -71 419 71 49 100 callsubr hlineto return -70 52 hmoveto 269 50 -94 594 75 callsubr -598 -74 hlineto return -80 -62 -4 vlineto 40 -19 -57 34 -87 hhcurveto -168 -121 -129 -232 return -315 -54 rmoveto 327 21 callsubr -152 236 74 50 return -121 175 121 175 -22 30 -194 -181 rlineto -48 vlineto return 203 50 -88 hlineto 60 174 264 0 60 -174 rlineto -88 -50 return -43 24 -26 39 39 26 28 36 27 -18 23 -19 8 vhcurveto 4 vlineto 11 return -598 rlineto 82 648 74 50 -207 -50 74 -499 -4 hlineto return 415 178 -100 67 153 -412 -50 71 -418 -71 hlineto return 200 36 -4 39 rlineto -299 -298 hlineto 40 -4 35 199 return 159 hlineto 129 75 70 123 124 -70 64 -131 hvcurveto return 35 -199 40 4 rlineto 298 -299 vlineto -4 -39 200 -36 return rmoveto 35 35 10 27 27 hvcurveto 58 58 22 116 346 vvcurveto 99 return -4 92 hlineto -165 -33 0 -38 71 -13 rlineto -396 -71 vlineto return rmoveto 35 30 9 23 25 hvcurveto 46 43 22 77 267 vvcurveto 58 return -216 77 callsubr -227 -50 71 -418 -71 return 105 462 rmoveto 34 hlineto 25 190 rlineto 96 -84 -96 vlineto return 15 15 1 1 8 hvcurveto 107 vlineto -2 -12 -12 -1 -13 hhcurveto return -81 -49 -49 -43 -16 vhcurveto -4 -105 callgsubr vlineto endchar hhcurveto -128 -83 -98 -173 -173 83 -98 128 hvcurveto return vlineto 151 -67 67 -159 -68 -50 -13 -24 -43 vhcurveto -4 return vlineto 149 -59 69 -162 -65 -48 -14 -23 -43 vhcurveto -4 return extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttf000066400000000000000000006107401416264461600246200ustar00rootroot00000000000000pGPOSMUbQOS/2lx`cmapx cvt DfpgmY7sgasp glyfɦ xheadu6hhea?4$hmtxxL}n locamaxp_0X nameb-8Lpost{Uzprep U_< Bۼ_<h CD`x Vn00oP ;IBM @ $,   %+f0],e0,^,''F0)'v"?03R"2"008,i&\008e'p 7.4244t424a44V4l4 42|424S:#,9X0X0X0XJX6X;X'X@X>XDX7X<1J??K  3 B*BL ) 3PP A +A+ ))2$26$6JJ)'H7H"9"NN||*/>>9~9~MG5 6&")*???#'0164X7X?XBXBXBX^XBXBX?XBXYXYXYXYD_TX/XBX #%c4K4z$ ,k2L6QF2k2L6 4m4ZV-/#42q1l2%`;` ~4~2{,,%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%+%%+%+f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0ff0f09+9+,,,,,e0e0:,,,,,,,,,,,,,,,,,*)')')')'F0F0F0F0vv?0?0?? ??0?)?0?L0?r0r0333R"`02"2"2"l"80000+}08,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,88,8,,00088888,R"k-e'e'e'\pppppppppppppppppp    ...222224&&4444444444444444422222&4a4aaaa4a4a2a4a!j4a 44444V4V4V4V4X& 4 4 4 4 4222222222222222222222222444S:S:S:S:S:4####|4,,,,,,,,,,,,,,,,,,999q~*4h92o%+f0*.800k,+,00K0f008,0i&, 170v p0|0!00%0,=0Hs44944 d9444l4424|42#S.4"44#4t484%+%+f0f09+00&20,,,,++@,,0!000K0b0f0!'0Z0$08,8,8,,Av  y 0080?0?3ovv"*94949&44442   d9d9a4444444=#$4442222"""4S:4a4a4##42v%f$\$[s^%l*R t)l$v%f$\$[s^%l*R t)l$$$w$s$?$v$Lhl$A%$$aj%9 $s\K\\\K\\\\\\\K\K\K\K\\\K\K\J\\ \!\I\J\f\eXXXXXXXXXXXXXXXX3XX]qkcckfkkk]gdgcccg]XXXXXXXXXXXXXXkkk]gdgcccg][N 09@Zgz~~7Y #(/0O_s?    " & 0 3 : D p y !!!"!&!.!Q!^!!!!!!!"""""""+"H"`"e%''L+ 1:A[h{7Y#&01Pr?    & 0 2 9 D p t !!!"!&!.!P!S!!!!!!!"""""""+"H"`"d%''L+ F5F_=8)=F"'BB<߁ReF77&#ޔvtf>'&یcv "<FHR\`tzNRVD<>Td\L`T}lGScdzQINi;PRbHejf~M gnhA_opru]Jswqv^aniktlrB  '"$-%+NIKL_Hapjq  !*#)9:<;=@?>GEDTQJSPR\`fhg.Us,AF     QRzMTuwxybd{^\mvgNOPWY_`aceinoprs|VZI~HLS}UX][fhjklqt^[]moz|}~{uwxyv  &(46785/1230MOVXYZWcbdeUVYWXZ{|,K PXYD _^-, EiD`-,*!-, F%FRX#Y Id F had%F hadRX#eY/ SXi TX!@Yi TX!@eYY:-, F%FRX#Y F jad%F jadRX#Y/-,K &PXQXD@DY!! EPXD!YY-, EiD` E}iD`-,*-,K &SX@Y &SX#!#Y &SX#!#Y &SX#!#Y &SX#!@#Y &SX%EPX#!#!%E#!#!Y!YD- ,KSXED!!Y-+++6,"+D8,+0' +jV@.+pT<$+T@4.+xbL4+L>0"+bT@.+3*!+J</"+ D6,"+ <0&+ 6.$+ hT@.+ % +# ++ E}iD?t@tott`stpt@u0tPt4(D.H8lKPW_5gQt 8 Jp    ((((G9;:o' ` E < " d jz-p%r$W3S9%|(4oNM`h|   : F v !!#!/!;!m!" "u"""##l###$$%W%p%&U&'h(!()A))))*7**+q++,,',d,,,,-B-a----..E.]../n/0K01N12M234#456\7 789`:0:;);>?l?@=AABOBCjCuCCCCCCCDDDDDDDDDEEEE)E5E@EKEVEaEmExEEFTF_FjFuFFFFFFFFFFHH H+H6HHHHIJ.J9JDJOJZJeJpJ|JJJKOKZKfKuKKKKLLLL(L3L>LILTLLM5MAMMMYMeMqM}MMN.N:NFNZNNNNO_OrO}OOPPPP*P5PAPPPPQQQQ+Q6QAQQQRVRaRmRxRRRRRRRSSSSSSTTTUQUVfVqV}VWW&W1WiIiUi`iliwiiiiiiiiiiijj jjjkCkl'lxllmmmnn"nopppq!qrr&r{rrrrssttuu{uv]vw?wxExMxxyypyxzNz{k{v||z||||||}}|~g~o~@'h󂕃'2=HP[9DO+6 +6A҈v)ƋGRČ;FQ\gˍI̍׎g%T\dlwՑAؑy,4?JU`򕜖3͗Qny!)4<ΝXӝ۞Q:yCsKNޤWŤդ%5EUeuť;f˦!UΧH{%_ת,˫3_ȫ.V7ӭ$yʮӮܯ=FcB T.ODfϴ $Ly`ʶ7}͸:ֹ"bF[  (EX/>Yܸܸ013!%!! 0 0+/;EX/>YEX/>YEX&/&>Y009/ ܸ&!#!&9|#/+09401"&5463354&#"#"&54>323#"&55#72655#"KQj}I9:)  2I/X\H (++#2.??N<1 LBJNI=@ *!VN' -& >.1^1-&%0D/EX / >YEX/>YEX/>YEX/>Y ) )99|/ 901".54>323733#"&55#'2>554.#"0N77N0=L4(H ),+J-##-@II $EeAAeE$6%O)' -% %6@%%VJ^JV,*EX/>YEX / >YEX/>YEX/>Y9  9 /  901"&'##'5736632'26554&#"Y=L4(GI<0N77NM@II@-##- 6%O &!%6$EeAAeE$@VJ^JV%%,-ZEX / >YEX/>Y %%9|/A0@Pq01".54>32#"&54675&&#"32679Y= %B[6)B.#  '"9(PE$PO^4'1'0C,EX / >YEX/ >YEX/>YEX/>Y & &99/9}/ 901".54>3235'575#'2>554.#"0N77N0YEX/>Y ##9/A/?]901".54>32!3267354&#"8Y= #>U34R9REYEX / >YEX&/&>Y 9|/и"и#0173#5354>32#"&54675&&#"3#3!,GGG.?'9?  )*mm[25I&?,.'"<6W5a2',PCQ_"/EX/>YEX/>YVDV9D/A`DqADD]ADDqApD]5\V59\/A0\qAp\q> A p>>>>>] \>95D9"(ܺ,("9K-KD901".54>75&&54675&&54>32>32#"&'##"'33226554&#"332654&## ?V6& "6#076J,-B  6K,%&*v\V~4334433_A:2HP3= -" ,"*/ N7(?,'  /3&(?,HBLY81$1881$18&'.)%$*0,/AEX$/$>YEX)/)>YEX/>YEX/>Yܸ00$9$;';901".5463232655##".54>323732>554.#" 'D3#,"QGJ<0N77N0=L4(#?Y!-##-@II)$   ]YE#3#Dc??cD#6%O%?_A %%SGXJV',7ESEX/>YEX/>YEX/>YJ8J98/A88]A`8qA88q)P)J9P/ApPqA0Pq2 A p22222] 2P98)9? ?8901".54>75&&54675&&54>323#'#"'33226554&#"332654&## ?V6& "6#076J,,&="6K,%&*v\V~4334433_A:2HP3= -" ,"*/ N7(?, 35"(?,HBLY81$1881$18&'.)%$*"T"EX / >YEX/ >YEX"/">YEX/>Y"9/ "9и0173'573>323#534&#"3#"GG%1^PGF7:)!G2r &!!aa22EB $20 aEX/>YEX/>Yܸܸ9/01"&5546323'573#GGGs"""" &! 2,&EX/>YEX/>Y9/A  0]A]9/ܸ 01"&54632325'57"&554632433 =GS#-#!T &!XSG"""""EEX / >YEX/ >YEX/>YEX/>Y9/ 9  иии0173'57377#53#3#53'3#"GGP}CI6YEX / >Y9/0173'573#"GGG2r &!:20:EX/>YEX / >YEX/>YEX:/:>YEX+/+>YEX/>Y:9/ 11+9""9и+,(и70173'573>323>323#534&#"3#534&#"3#0GG$1BN&3!]OGF69( GG59) G2 &!\!33%ba22EB %22EB %20b"EX/>YEX / >YEX"/">YEX/>Y"9/ 9и0173'573>323#534&#"3#0GG%1^PGF7:)!G2 &!\!aa22EB $2, )5EX / >YEX/>Y  01%2>554.#"".54>32"3!!3"#2!!2#6Y?""?Y66X?##?X**9"z"9**9"z"9*6&Fe>>dG&&Gd>>eF&&89.EX/>YEX / >YEX/>YEX/>Y9/ $$9 9013'5736632#"&'#3!%26554&#"&GGI<0N77N0YEX/>YEX/>YEX/>Y9&&90135##".54>323733!'2>554.#"A[J<0N77N0=L4(G!-##-@II%6$EeAAeE$6%Od2%%VJ^JV0%EX/>YEX / >YEX%/%>Y9/ %9"к "9|/ 0173'573>32#"&54675&&#"3!0GG)-6!!  ( [2 &!\!,* $ !(280EX/>YEX/>YEX/>YEX/>Y $$9 9/ 9* 9 $*9 /$ 901"&'##5332654''&&54632353#54&#"0C DD5<7;R9LM_Q0= DD4915+(6NOc '4*3&+@ NBFO -#'(&&"+ JDDW'K_EX/>YEX/>Y ܸии9/01"&5#532>7733#36+C  3I-3w5  Y5e& NEX/>YEX/>YEX/>YEX/>Y9/ и/и/и/9/ 901"&5'5732>5'575#^PG7:)!GG%1 aa &!EB $' &!6 &!\!ZEX/>YEX / >YEX/>Yии   01#53#3#53##63GG3J22q22, EX/>YEX/>YEX/>YEX/>YEX/>Yии и и01#53#333#53####>3GbwNwbG3VsvV22Xv22,sEX/>YEX / >YEX/>YEX/>Y9к 9 и  иии01737'#53#37#53#3#53'#3#93;ki=93;kn=22222222,&EX/>YEX/>YEX/>Y9/A  0]A]9ии!01"&5463232677#53#3#53#{52 13GG3 &//#!/3322q220$. QEX/>YEX / >Yиܸи  017##5!353!.!CC`(h(VhrEX/>YEX/>YEX/>Yк9/  и017333#53'!3#3#4g4X<YEX/>Y-#-9#/$ $#90173#5!2#!7326554&##5326554&##4JJS^f%1903H,9@@959952V2[J%9**=)-G36A5,5A6:0,0:2S'\EX / >YEX/>YEX/>Y  901".54>32353#54&#"3267ZDmM*+Mj?ATPPTF1H.l`F_* )>T 3_RW[0,>22>$>T1jzI9?3!4IEX/>YEX/>Y0173#5!2#!7326554&##4JJ+FsS..SsFկogppgo2V2,WWWW,6zkkz4IyEX/>YEX/>Yܸ  9/  ܸܸ0173#5!#5!353#5#!53!4JJ P??P2V2uLL耶4@oEX/>YEX/>Yܸ  9 / ܸ ܸ0173#5!#5!353#5#3!4JJ P??^2V2uLL222EX / >YEX/>YEX/>YEX,/,>Y ! !9ܺ'!9'/&*к.&!901".54>32353#54&#"32655#5!##'#YBmN*,PpEOV PPXP5O33G,L_w=%30@ 2]TW\/.?07;!=V55T; LF]22b'4EX/>YEX / >YEX/>YEX/>Yк9/A]A/?]  ии0173#53#!#53#3#53!3#4JJJQJJJJJ2V22222224- AEX/>YEX / >Yи0173#53#3#4JJJJ2V222GEX/>YEX/>Y9/01"&54632325#5!#HG" ]^ Jc 8+'"t22 X\4EX/>YEX / >YEX/>YEX/>Yк 9  ии и0173#53#377#53#3#533#4JJJaNDDD^J2V22m2222/f24& KEX/>YEX / >Yи   0173#53#353!4JJJP2V2248EX/>YEX / >YEX/>YEX/>Y9/и   и ии0173#5333#3#53#'#3#4JJȶJJJ44J2V2b222uiu24EX / >YEX/>YEX/>YEX/>Yи   ии0173#533#53###3#4JJgJJRyJ2V222xV22)5EX / >YEX/>Y  01%2>554.#"".54>32j0J33J00J33J0FsR--RsFFsR--Rs-">W55W>"">W55W>"92]TT]22]TT]24NEX/>YEX/>Y 9 /A ]A 0 ]AP ` ] и 0173#5!2##3!326554&##4JJQbgka^69962V2_]\e2s@1/1@2P 6K/EX/>YEX/>Yи!,01".''.54>3233'2>554.#"+">:_C$-RsFFsR-%Ea;1&!0J33J00J33J [ 9\{LT]22]TM|\8B2">W55W>"">W55W>"4'EX/>YEX/>YEX/>Y9/A]A 0]AP`] 9и'0173#5!233#".''#3#326554&##4JJR]kQJw1$F* ymJ5::52V2[\H^$ 2 "2s?111?:5EX/>YEX / >YEX/>YEX/>Y ''9 9ܺ- 9'-9 #01"&'##5332654&''&&54>32353#54&#"+>OPPDOTK9@5_j :R3:IPPCPFE>E2]e;W ( <.3?F;3: bX+F1&7.37>24: aR.M8 #vQEX/>YEX/>Yܸ и и 0173##5!#5#3!^PSP^2Ruu2,\EX/>YEX/>YEX/>Y и01".5#53#3265#53#}Gc@JJJ``PJJ:] CkL{22whffh22KmH#ZEX/>YEX / >YEX/>Yии  01#53#37#53##I4XdLLdX4`22222xEX/>YEX/>YEX/>YEX/>YEX/>Yии и и01#53#333#53####J4X^X4aa22M22x9EX/>YEX / >YEX/>YEX/>Y9к 9 и  иии0173#53#37#53#3#53'#3#;;IC;;IC2!52222222ozEX/>YEX / >YEX/>Y9и и  ии01735#53#3#53#3![4VV4[2o22-2229C QEX/>YEX / >Yиܸи  017!#5!!53!9QtEQ5Ou50(!5EX/>YEX/>Y 01%2>554.#""&54632,(7""7()6""6){{{) =W77W= =W77W= 50( %]EX/>YEX/>Y 99"9#901"&54632&&#"2>5544',{{{ >9)6"(7"> %9? =W7  =W7  9?0(#/kEX*/*>YEX$/$>Y* *9/A]A]AqAq01%2>554.#"7"&554632"&54632,(7""7()6""6){{{) =W77W= =W77W=   ϹJ ;EX/>YEX / >Yи0173'733!cVN1;N.nw16)OEX/>YEX)/)>Y$ и)9/$&017766554&#"#"&54>32!53!618G> 0$"6J,ix-="G62J1c;>F  %% .#eZ,J@:_; IEX5/5>YEX/>Y5##9/A0@qA`pq9/-#9-/?901".54632326554&##5326554&#"#"&54>32 1N6#$5#LUOMMIHJG;"3$"4J/1T=#,8=0$B^ $. %$  CB"?E6C4#89  %% .$+B,"7),<(/L4', `EX/>YEX / >Y  9 /A ]ܸ и ии01%!533##%!#gA_ee`A1Jo@/hEX/>YEX/>Y! &!9&/9/A]01".54632326554&#"'!!6632 /K5#$6"PPJF-=9wO3WEX / >YEX/>Y   9/))901".54>7>32'2>554.#"/:Z= YEX/>Y ܸ01!#5!#6X[rH7!)7MEX/>YEX/>Y191/A`1p1qA01@1qA11q8 819819*C01".54>75.54>32'26554&#"2>554.#",9[?"/;4( ;S22S; (5YEX/>Y) )9 /9017>7'#"&54>322>554.#"@iK-)5"`l#?W4:Z= YEX/>YEX-/->YC4C9;G;9 4G94G9C9 9 /! $к0;9'09-+F0901".54>7'&&54>32667#53#3#"&''66554&#"267'%7Z@#(8"'3F,Sc0@$HN"0*N&5 %^B;:3-/1*,G. U 1F,$9/'"O/$;*L?7/(!S-229f)'2 #'C*'49* #> H-Y7B7B9/A]AqA]иG%7B9%/NGN9(NG9%*и.01".54>32#"&'##".54>32373326554.#"33'26554&#"Vc67dWVe8(A-4:9/"=--="-8 !(801+SvKKvS+,RtH2r@0330211y:l]]o>9fV4\E(1''17R87S7-!EJ_d,DsT05]~I7J|Y1  1,,1>4h4>? KX /01!!? XN? KXI +N /01!!  N> N /01!! 1N>` /01!!b>B| EX/>Y01"&554632 ## ## &&&&B|&N'NN L&N N )v|EX/>Y ܸ01667#"&554632#)#0"# #%:@'&( 21,3v&Q N PEX/>Y0153#PT"``PZ&SSAEX / >Yܸ 01"&554>7332 #%:#-!%) 30,B%'+ EX / >Yܸ 01667#"&554632#+#-!% #%:B%') 30,A&UU+&VV) /ܸ 01667#"&554632#)#-!% #%:}B%') 30,)&YY$N/0157$yy06N/0177'76yyl0$N&[[6N&\\JL  /EX/>Yܸ01"&5546323# ## ##Q(b&&&&6J -EX/>YEX/>Yܸ01"&55463253# ## ##Qb( &&&&)@#1@/EX+/+>Y$ܸ ܸܸ ܸ 9/01"&54>75332675&&54632"&554632cs#=S0;QbC8!.$"7I ## ##cU.H5nEC;@  %% /#J&&&&'#1MEX/>YEX$/$>Y+ܸ#ܸ!ܸܸ9/0166554&#"#"&54>32#"&554632QbC8!.$"7I*cs#=S0; ## ##vEC;@  %% /#cU.H5n&&&&7fL  //01.54>70,YG--GY,)A--A)ZwTTwZ"Vfs554.'7)A--A),YG--GY,xVfsY013#3#9ww11v,/EX/ >Y013#53#wwY 1~v0"J"/EX/ >Y"9/901"&554�#3#,+9,,9+,ed))de/&,,8,,&/1," ",1v>!J!/EX/ >Y!9/90134>75.5#5323"##d((de,+9,,9+,eY ," ", 1/&,,8,,&/qR/EX/>Y013#@@*qt/EX/>Y013#*@ @/^%EX/>YEX/>Y013#BBF>T +/EX,/,>YEX/>YEX///>YEX / >Y/9/  & ,9&/012554#"2554#""&54632"&546323#PPP"PPP~KWWKKWWKWWKKWWc@@eqTqqTqqTqqTqeaaeeaaeeaaeeaaeF> )5AEEXB/B>YEX$/$>YEXE/E>YEX*/*>YEX6/6>Y$E9/$* 0B*90/60<й012554#"2554#"!2554#""&54632"&54632!"&546323#PPP"PPPPPPKWWKKWWKWWKKWW5KWWKKWW@@eqTqqTqqTqqTqqTqqTqeaaeeaaeeaaeeaaeeaaeeaaeF~v/EX/ >Y013#~==~~v(/EX/ >Yܸ0173#3#~====GeEY/EX#/#>Y3399}/P399P9:#9):39|)/F#9AF901"&5463232654&''&&54675&54632#"&54675&&#"6654&''&&'KV# ;>.*@MPF8Je_KV# ;>.*@LQF8Je %,..D%,..D6.# ./'0 HA6L,[KU6.# ./'0 HA6L,[KU<2/&. 2/&. 5e8$*b/EX/>Y**9/9}/и*!и%01".5463233".54>3!#'665#$'B/"0# 5ZD&&C[4 Jj!*,V +'  1J21K12tv8WH:6&<PoEXG/G>YEX=/=>Y'G2'29/2'9/9/01%"&54>32#"&5475&&#"32672>554.#"".54>32V\2C)=H 3@>3,1%1'=gK))Kg=>fK))Kf>H{Z33Z{HH{Z33Z{mX.I46)B4;9A#$r+Kg<>Y%0%N90/A0]A0q%9/%9/D9D/ D9й иM0135#53233#"&''#3#2>554.#"".54>32'326554&##i"*# "N\#:**:##:**:#)H6 6H))H6 6HH&&- > ?HC,:!!:,,:!!:,!7L,,L77L,,L7"-EX$/$>YEX/>YEX/>Y-$.9-/и  и-иииии-и$!$#и'и!)и*0135#5373#3#5357#''#3#'35##53#5#3#C ^MK^ v LK c';((;',,,,,MM,)Vo,8pEX/>Y  99/9/ 9/%й -*-9101"&5463354#"#"&54>323#"&55#'2655#"57HV1L #2 =B0 .*+4("V3+35.S  :4 #+ = *Vr .EX/>Y9/0126554&#""&54632/))//))/KYYKKYY{:,T,::,T,:%bSSbbSSb?j'.EX / >Y(9/01".54>32'2>54.#"$?--?$$?--?$))))j.@%%@..@%%@.7 ++  ++ ?tEX/>Y013#`gb&?t}&xx#m EX / >Y0177''7753#'7'77WR'D32[ SA'RC0[23j+Dc,P955icD+29P08 =EX/>YEX/>Y +и 017573#3#753#573#!!WffWU!7fWWWW3T68 %+UEX/>YEX/>Y+ +"и $и(и+017573#'3#3#73#53#573#573#!!WffWWffW!UU!7fWWffWWtqqtq׎W]WW-TT4xEX/>YEX/>Y9/9/A] и ииииииии017#537#53733733#3##7##37#}}#="">"}}#="">i888879!.EX/>Y9/и013#7L3Ue=?v?+ܺ 9} /  9|/01%"&'&&#"'66323267$9#6&6-$9#6&6&&BL -/ܸи и 01#53533## >>::BN /01!!B,N:Bg D /EX/>Y ܹܸи и 01#53533##!! >>,l::q:^b /0177'77'^))))))B9) !/ܸܸܸ01%"&554632"&554632!!,!!!!!!!!,9$$$$p$$$$[:B)/A]A]017!!!!B,,: :?&eBEY/A]A]ܸ и иии017#537#5!733#3!#S:A:S:A::ff::fY /EX/>Y0175%YaDEEY /EX/>Y017%5%5YaZ9EDYF "/EX / >Y015%!!YaZZ:H>><:YF "/EX / >Y017%5%5!!YaZZ>H<:_t /017"&554632 ## ##&&&&TL /017"&554632:BB::BBF3 3FF3 3F/( 1EX/>YEX/>Yи 013#73#/KK"]]8%%BQN//01!5!#z>:1 HEX/>YEX/>YEX / >Y 01#53373#{bU00>_:٫F ,'UEX/>YEX/>Y""9/"9/01"&546323254632#"&5475&#"t45 @B:45 @B,$!! ^GN,$!! ^UGNm!,7K"+& + 9 ик 9"-и&4017".54>3236632#"&'#'27&#"!26554&#")A..A)HZV:)A..A)HZV-Z%#\+22j+22+Z%#m3G++G3HHJF3G++G3HHJF8?4,4??4,4?#%SEX / >YEX/>Y 9/9 "01".54>32!3267!5&&#"hGwV11VwGFxV1[=Zv$-7HYkZ>=[ 3_RR_33_R +RC&?/ ** %#0eEX/ >YEX/>Y 9 и ии $и+01"&55'6674>32326766554&#"LO !.&5 DDkg20/B* #/:|HF$ `N' E6I.XRdW/I@A35'.?F 4/ -!47#/3EX/>YEX / >YEX*/*>YEX/>YEX/>Yи   ии*$9$/$0ܹ30173#533#53###3#26554&#""&54632!!4JJZJJRJe,&&,,&&,HVVHHVV82V222xV26*D*66*D*6,_OO__OO_9:4&I} /EX/>YEX/>Y   901".54>327&&'3'26554&#"!8W> 8P1V.qYU(\O4m>II>>II %C`<:_C$AI0Dh^5ON]NOON]NO$;V+q/,9/%%9и 9  к9к%901%"''7&&547'76327''26554&#"=P4c2e$e2c4PO5c2e$e2c5O?;;??;;u*d2eF)S8e2d**d2e8S)Fe2d*5L:Z:LL:Z:L,u+3sEX / >YEX/>Y  и ܸ 9/)и+ܸ,и301.54>753#"&54675&&#>7#3O68N/7KV"'+! $ *9$73;:4 +F_99]E+fdE3 #$ Z!.%gJW=OCX224EX / >YEX/>Y * *9 /A ]A ]A ]A q 9|/ #$*9$/A$]A$$]A$q'/'*901".54>32#"&54675&#"3#3#32>7IAhH&'KlD1N6$ %F0F/ bQ!6* ( %:N 3_RU\1$1 (& 8K-2d2\e$0?4!n5//EX/>Y++9/Ap]A]A]Aq!+9|!//и201"&546323267#7376632#"&54675&&#"3#?7=" (4eU7=" (5 c-%';K4^`-%':L4^`6<EX/>YEXY7 и% %79 /A ]A q %79/A] +и .и79017>54&'#53&&54>32#"&54675&&#"3#!53!># \L  9Q1/M6$ 4KD 'R60P ",34&M++G3#0!'&  H92O'4  6,! cF 5<CEX/>YEX/>Y,6к699/иܸ=к-=9",-9"/3и5ܺ<9C,3901&&54632&&54>753#"&54675&&'#6654&'ak# :)dh5K-7X_# 0"ichb7=?=?3?==?H5 '&  `U'@.NMG3 '&  aQUl N=-0:A64>v#EX / >YEX/>YEX#/#>Y   9/A]A/qA] 9/A/?]A ]AqA] иииииии 01735#535#53#53#3#53#3#3#3!^7VV7^2e2d2)22222d2e22P #-59=//ApqA]A_]A]A/]AqA@qAqܸ и=69=699/A`9p9qA09@9q::99!и#ܸ6$и9,и:.и=501%!53#5!5332###7326554&##526554&#3#535#4JJ7-G0)3:.1E*)755==58778YYYY2,2gg*:""5'):%'A0gA2!2A2:-#-:227 3;BEX / >YEX./.>Yи и ܸи и 5!и.;"к!"9/.+и.3ܸ-и5<и;B017&&5467736232273#"&54675&'667#7"&'##"QPpg2 2BI# #/9J) 0B)22  .'D6/<&qYQQX C. &%" G491#TQY0mFr:6@ EX/>YEX@/@>Y; и&&;9/AqA]Aq &;9 /A ]AO ]A ]A ]A qA ] &;9/A /?O] ,и /и2и5и;=0176655#53&&'#53&54>32#"&54675&&#"3#3#!53!>+2e^?0 9Q1/M6$ 4KD %R60P\4202!#+G3#0!'&  H9%2023) c4%)-EX / >YEX/>YEX%/%>YEX/>Y% %9/A] %9/  ииииии!и"и&и )и*и-01735#535#535#5335#53#3#3##'#3#3#3#5JKKKKJJJKKKKRJυ22t22222t22"4?4.GQ*/EX/>YEX / >YEX/>YH 9H/  иH9*9$99?*909?90/Q01".''#3#53#53232654.''&&54632#"&5475&&#"326554&##w-H<0_AJJJ[i:8Q!K:,3 57VK@D 0)$*^A3773A !7)22V2[\@YEC##B9:E,) $ *!'&YEX/>YEX/>YEX'/'>YEX#/#>Y '9/A] '9/   иииииии!и%и'(и+и,и/и#0и3017#53'#53'#53#37337#53#3#3##'##73#3#3#cV04X-?^<-X40Vd=aAAaDMKG2t222222t2f2v&2Z cEX/>YEX/>YEX/>YEX / >Y ܸ 0132#4&###332653##ZTI<-2<<2-YEX:/:>Y7ܸܹ ܹ009иий9/% % 9017".54>3235#53573#5#72>554.#"!!*E22E*.#\KK7$0((YEX/>YEX%/%>YEX/>Y%%9/A]A/?] и ии и!иии"0173#53#53#3#53#3#'3#53#3#4JOOJJ`VD}GGFBLJ2322223a222#vEX/>YEX/>Y  9/A] 9|/A]99A]9 9 ܸи к999901735575575##5!#5#773!^yyyyPSPyyyy^2;7;b;7;uu<7;b;7;24#)/3VEX / >YEX#/#>Y   9/A?OqA]Aq9/A]A/qA/?]A@]ииик$ 9$/A/$?$]A$]A?$O$qA$]A$qAP$q и)и*и /и0и30173#535#535#5!23#3###3!73267#53&&##35#4JJJJJJ0RiSJKVjO^s0< <0s2%2k2b2IK2  2IK26++6m2 -7@EX/>YEX+/+>YEX!/!>Y+и ܸ и.+>.>9/.9/.и=к#>=9+-ܸ>701%&&54>773#"&54675&&'!##'##""'#2655#bp+PqG 7 Sb$  0,==%40>&  7h2H/98REXUX.PS L6!'&!  2j&Q&>R/yQsJGU1AIEX%/%>YEX/>Y%: :9 /A ]A ] A ]:9/A/?]Aoq ܸ-и 0и 1и 4и D01".5467#537!5!6654&#"#"&546323#!!32675&&546328.L6 SzS@E3 $lc.L6 Sz@E3 $l +='22d2.4D  ''!7H+='22d2.4D  ''!7H27 .8sEX / >YEX,/,>Yи  ܸ  и /,/9//и,.ܸ8017&&54>3373#"&54675&'32>7#"&'#[f)MnE 7HN$ -_"6+ ) &;O27y4H-3/ TZ.PU F0 ''  $0@3!R#=P.Hf%iYEX/>YEX/>Yܸ и и 0173##5!#5#3!!!^PDP^ߑD2xx$23;5&EX/>YEX&/&>Y AO ]A ] AO]A]и и к9&$01!"&''#53267!5!&&##5!#3#33#YEX0/0>Y   09}/A]0 9/A]99A]9 9 к9999' 9'/01735575575#53#7732>7'#"&54632##5J____JJ7;Z?$  &#-)LpF2/7/d/7/22R7RdR7R5F& %/04aJ,4P&EX / >YEX/>Y   9/A /?]9/иииии &01735#535#53#5!2##3#3!326554&##4JJJJJJSbgka^69962m2n22`[[en2m2qA121A2P '1;//ApqA]A_]A]A/]AqA@qAqܸ и и к292/A_2qA/2?2]1219%и!и'ܸ#и(;017#53#5353353#5##'326554&##5326554&##JJ7B7NW)3:.0D)7B7 6==617712,2ggghV@"5'):%&A/ggg@3!3@2:-#-:,Z+EX/>YEX/>YEX / >YEX/>YEX+/+>YEX#/#>Y+ܸ #$ и'(0173#5354632#"&54675&&#"373#53#3#,GGG{rVV  ##IJGGG25es5+"YK$ 22a2,_"EX / >YEX/>YEX/>YEX / >YEX"/">YEX/>Y"  9и0173#535463273#53&&#"3#3#,GGGuc'3_GG.?GmmG250[g :22 A>A5a2+&+&+&+&+V&+&+&+&+2BNEX///>YEX/>YEX/>YEX/>YA 0@P`p ]C C/9/C9//'ܸ35395/<ܸ?ܸG01"&54675#"&55##"&5463354&#"#"&54>32332672655#")826++#2"KQj}I9:)  2I/X\H1# ,.??N<1$(#4,% LBJNI=@ *!VN' A .1^1-&%+*&+&+&+&+V&&+&+{&+y&+ &+V&&&!+{&"+z&$0D&0D&0D&0D&0VD&0D&0D&0D&02P2DEX/>YEX/>YEX/>YEX/>YEX/>YA 0@P`p ]3 39>>9!#!9#/,ܸ/01"&54675#"&55##".54>32373332672>554.#")826,+J<0N77N0=L4(H 1# ,-##-@II$(#4,$ %6$EeAAeE$6%O)'A %%VJ^JV0D*&0D&0D&0D&0VD&&0D&0D{&0Dy&0D&0VD&&D&!0D{&"0Dz&$+DP[QEX/>YEX&/&>YEX/>YEXYEE9/A 0]A]A qA]A`p]A@qAq ܺ" 9<1&XQ1X9Q/A/Q?Q]AQQqAOQ_QqAoQQ]AQQq-6-19BE9I01"&5463354&#"#"&54>3236632!32>7#".'#'2655#"7354.#"LQj}I9:)  2H/2$U<4O6RE,! % /@*$=/!`#.??N<1 ,?? PBPM@=@ *!%,:&C[6Q] /$ (98>.1g2-&%#<+WF+&l,&,&,2HrEX/>YEX/>YAܸ ܸܸܸ+4!+49|!/A0!@!P!q=01"&'732654&''7.54>32#"&54675&&#"3267632$&+  & 3P7%B[6)B.#  '"9(PE$PO^4'0&1!  ,&,&0&0Q 2EX / >YEX/ >YEX/>YEX/>YA  ] , ,9 9/ии9}/!! 901".54>3235#53573#5#'2>554.#"0N77N0YEX/ >YEX/>Y / /9 ܺ9999(01".54>327&&''7&&'37'26554&#"8W> 8O1,B4#Y U=W)W L!X6>II>>II %C`<:_D$# 2`'?*;/>*6KaxIGjF"5NO]ONNO]ON,& ,& ,& ,& ,& ,& ,V& ,& ,& ,& ,24=EX/>YEX / >YEX/>YA 0@P`p ]: 5:95/A/5?5]"9& 9.ܸ101"&5467'#".54>32!32673267354&#"U)89/ 8Y= #>U34R9REYEX/>Y " 9"/A "0"]01".55!54&#"'>32'2655#4R9^REU3?B; $AY6Q]3(2&'Gd==dG'4UG FW',& ',& ',& ',& 0,& 0,& 0,& 0,& T(EX/>YEX/ >YEX(/(>YEX/>Y(A ]9/и и 9и%0173#53573#3>323#534&#"3#"GUU`%1^PGF7:)!G252L_2!aa22EB $2T&mEX/ >Y)010 QEX/>YEX / >Y9/0173'573#0GGG2 &! 20%&{<&{ D&{<&{0V&)&{0&6&{02=-EX/>YEX/>YEX/>YA 0@P`p ]    9 /  ииܸܸ ܸ'01"&5467'#53'5733267"&554632)8;1GGG  ,_$(&92 &! 2$  A""""J&{0,&?0,a&'{'?,}EX/>YEX/>Y9/A  0]A]9/01"&54632325'57433 =GS-#!T &!XS,"&x,A&x"E&;0SEX / >YEX/>YEX/>YEX/>Y9/ 9  иии0173'57377#53#3#53'3#0GGP}CI6YEX/>Y 9}/ 9| /  9 9  9/  9  9017357'5773#%GVVGXXG23 &!320b&%0b&%0b&J0b&%+m&V 0,1EX$/$>YEX+/+>YEX/>YEX/>YA/qA]+и$!#$!9#/"%901"&546323254&#"3#53'573>32|33 =7:)!GGG%1^PS-#!TEB $22 &!\!aaXS, &, &, &, &,V &, &, &, &, &, ,%0EX / >YEX/>Y&% &9 9%9 &9.9 .9 .9/%9017&&54>327#"'&&#"2>554'/: "?Y6T;7': #?X6T;7-3##3" #3" #L#`<>dG&-GL#`<>eF&-G*9"z$Z*9"z$,, &+, &,t1\EX / >YEX / >YEX/>Y ܸ  '01".54>32353##'2>554.#"6Y?""?Y6+$PT#%+/#?X6"3!!3"#2!!2 &Fe>>dG& nS$#pJ>eF&6*9"z"9**9"z"9*,&.,Vt&.,&.,&.,&., &,V && &!, {&", z&$,h+AJEX / >YEX/>YEX/>YEX%/%>Y 7 79G%BG9B/A/B?B],), 901".54>3236632!3267#"&'#'2>554.#"354&#"6Y?""?Y6>cd84R9RE>dG&6657$@Y6R\3(1&46646*9"z"9**9"z"9* EWUG0&0&0&8&8&82KEX'/'>YEX,/,>YEX@/@>YEX/>Y@Dܸ ܸܸܸ@и@'3!3@9!9/9939/399//*3/901"&'732654&''7&&'##5332654''&&54632353#54&#"632&+  & &5 DD5<7;R9LM_Q0= DD4915+(6NO[O  + ) B$4*3&+@ NBFO -#'(&&"+ JDAU0!  8&8&,xGEX2/2 >YEX+/+>YEX/>YEX&/&>YEX/>Y9999}/2!&'+*@901"&5463232654&''&&546754&#"#53#5354>32#"RU $7:)0D>]MB>C?GGG:T55R8(FA".EG0F ;*!.+('C=BM"LMLK251Q9"YEX%/% >YEX/>YEX/>Yܸ99/9+ܸ%5<901".54632326554##57##534>32#"&54675&&#"!2o 8*'@C?G.@'<@  ++\dn#YEX/>Y   9/ ܸ и иик9/01"&55#535#532>7733#3#36+55C  3ttI-425  Y52& 'g&'K&'K&8+.EX/ >YEX / >YEX/>YEX/>Y9/ $$9 9013'5736632#"&'#3!%26554&#"GGI<0N77N0YEX%/%>YEX/>YEX / >YEX/>YA 0@P`p ] 99"и"/#и#/$и$/ &( &9(/'0ܸ301"&54>7'5##"&5'5732>5'573267 )8)p%1^PG7:)!GG$ ,$(# \!aa &!EB $' &!6 &*"  N*&N&at%EX/>YEX/>YEX/>YEX/>Y9/ и/и/и/ܸ9/! 901"&5'5732>5'5753##5#^PG7:)!GT#%G%1 aa &!EB $' &fO$d &!\!a&UVat&U3a&Ua&U/a&U &y &y &y &y,&,&,&,&,&,&",&.& .& .& &!+-&!/-&!--&!)-V&!C&!,-&!3Yh&!'-2%)EX/>YEX/>YEX/>YEX/>YA 0@P`p ] &9&/  и ииܸ"ܸ)01"&5467'#53'!3#533332673#V'6D5X<Y#&!@Y#EX/>YEX/>YEX/>Yܸ  9/  ܸܸܸ 9 /и#0173#5!#5!353#5#!53!535#3#3#47LVP??PJZL 2V2uLL耶22t&+92S&#+)2S&#.)22SBtEX/>YEX/>YEX/>Y;ܸ ܸܸܸ%.%.9!ܸ701"&'732654&''7.54>32353#54&#"3267632d&+  & ?dG&+Mj?ATPPTF1H.l`F_* '9N0  + ) A7^NW[0,>22>$>T1jzI9=2!1!  2S&#-)2S&#()4&$.&"mEX/>YEX/>Y9/и"0173#53#5!2#!7326554&##3#4JXXJ+FsS..SsFկogppgo242,WWWW,6zkkz4&4I&%+$4I&%/$4I&%.$4I&%-$4I&%)$4I&%($4VI&%P4I&%,$4I&%3P4Ih&%'$42h-EX / >YEX/>YEX/>YA 0@P`p ]    ܸ 9/ܸܸܸи'ܸ*01"&5467'!53#5!#5!353#5#!533267)896JJ P??P  ,$(&7!2V2uLL耶$  4I&%%$4T/&%;P4VI&%&-$P4I/&%=P4I$&%>P4I#&%@P2,MEX/>YEX/>Y   9/&01".55!54.#"'>32'2>55!\GoL(7S7Nl) ,D[9KtP*,QqD-H21G 1Sn>*O3UYEX/>YEX#/#>YEX/>Y#$#9$/A$$]$9/A?O_q и иииии$ и'0173#535#53#!5#53#3#3#53!3#!5!4JXXJJQJJXXJJJQ24d22dd22d4B222p4&(-_4.&)+E&)/M&)-E&))4-&)(4V-&)2-&),4-&)3!?h&)'42J!EX / >YEX/>YEX/>YA 0@P`p ]   и ииܸ01"&5467'#53#53#33267)8=3JJJJ! ,$(%9 2V222$   S&)%4 &)*a4 &)&+'*a+X&*+&*-4&+l4&&,+4&&,B4&&,64&&,X&(EX/>YEX/>Y9}/ 9| /9 9 к  990173557#53#7353!6JZZJJP26<224644&.+c4&..c4&.4&.%c4,+EX/>YEX%/%>YEX/>YEX/>YEX/>YA]ии!и%$(01"&5463232655##3#53#533#53#33 !zJJJfJJF-#!/0OU22V222,EC2&/+>2&//>2&/->2&/)>2V&/j2&/,>2&/3j2&/*>2h&/'>2'3EX / >YEX/>Y(' (9 9'9 (909 09 091'9017&&54>327#"&'&&#"2>554'Y:.3-RsF3W%7+:.3-RsF3W%7nD*0K4 0K4 DW/[T]2SW/[T]2S">W5R:`">W5R:42&+>2&/%>2(1\EX / >YEX / >YEX/>Y ܸ  '01".54>32353##'2>554.#"jFsR--RsF1*{T#%5BI-RsF0J33J00J33J 2]TT]2 nS$-mT]29">W55W>"">W55W>"2&+>2V(&j2&,>2&3j2&&>2/&/;j2V&/&->j2/&/=j2$&/>j2#&/@j2 2EX / >YEX / >YEX/>YEX/>Y ܸ 9/ܸܸܸ! (01".54>32!#5!353#5#!53!'267&&#"rJvS--SvJ4*P??P*4)BB)4N44N 2]TT]2 uLL耶 9">W55W>"4&2+4&2.4&2:&3+:&3.:2PEX*/*>YEX///>YEXE/E>YEX/>YEIܸ ܸܸܸEиE*6"6E9"9ܺ<*9-6<9/201"&'732654&''7&&'##5332654&''&&54>32353#54&#"6323&+  & 3APPDOTK9@5_j :R3:IPPCPFE>E2]e7Q4  + ) A&<.3?F;3: bX+F1&7.37>24: aR,L7"0!  :&3-:&3*4-EX"/">YEX/>YEX/>Y"9/9/"!&901"&54632326554&##57!#53#5!2NM# !5IIL=ƯJJZfm"=V <- &"BD*O=3|2V2.fg5M3#v{EX / >YEX/>Y  ܺ 9}/   ииии0173#53##5!#5#3#3!^PSP^25uu52#v&4.!#v&4M#v&4M4NEX/>YEX/>YA]A]иA?OqAo]A0@qA]A P`p]Apqи0173#53#32##3#7326554&##4JJJbgkaJ69962V22i_]\ep2@1/1@,&5+\,&5/\,&5-\,&5)\,V&5x,&5,\,&53,&5*\,h&5'\,25EX/>YEX / >YEX / >YEX/>YA 0@P`p ]и  #к' 9/ܸ201"&54>7'#".5#53#3265#53#3267)8#&/Gc@JJJ``PJJ$-' ,$(! CkL{22whffh22\v%,&  ,&51\,&5%\,("hEX/>YEX/>YEX/>Y иܸ01".5#53#3265#5353##}Gc@JJJ``PJT#%:] CkL{22whffh2nS$KmH#,&+\,V(&x,&,\,&3,&&\&7+&7-&7)&7,o&9+.o&9-.Vo&9Co&9).o&9,.o&93Zo&9%.9C&:+ 9C&:. 9C&:( 8N"EX/>YEX/>YEX"/">YEX/>YEX/>Y9/ и /и/и/9/9901'5732>5'575##"&'#cG7:)!GG%0';)c &!EB $' &!6 &!\ 9*S ?EX/>YEX/>Yии 0173!7!#*g@~3y36248nEX/>YEX/>YEX / >Yи  и013#5!#3#53!3#>JTTJJJ2222298#MEX/>YEX/>Y и иܸ0155!#5!!53!96d6aIu7v25EX / >YEX5/5>YEX/>Y5A]A q5ܸииܸ (3017335&&54>32353#5>554.#"#2P{Yj#IoMLpI#3H,{P3'1G--G1'3W5%n=sZ66Zs=7YF55W )7B%f'K:##:K'f%B7) PdEX / >YEX/>YEX/>Y  и  и9/01"&5###5!#37+_[;[[- ,5z/55a' +0D.1?aEX/ >YEX/>Yܸй 2 *29}*/9 &9901".54>7>76677336632'26554&#"3U>#  "-<)&4, "2$$1$ WFew!yYEX/>Y9/A/q) )9 ( 0173#5!2#!%26554&##726554&##0GG&LQ=-,"YS*++*si&))&i22D978 -GG5+$$+*  *0 KEX/>YEX / >Y ܸ 0173#5!#5#3!0GGC[22da2jK]EX/>YEX/>Y  ии и и 01736655#5!#3#5!#%#H.7LGdRiRw1)5YEX/>YEX#/#>YEXC/C>YEX=/=>YEX7/7>YCA=9A/A9 ܺ  9ии )к,#)908974A9и=>01737667'&&'##"&5463235#53#376632#"'#3#'#3#535##5g"3 3"'##=5GGGG5=##'"3 3"g5GGGG2s# 8$)4Fx11xF4)$8 #s222,<EX./.>YEX(/(>YEX/>Y.9/A/q9}/ ."('A'']*"901".54632326554&##5326554&#"#5336632/I3!$/)?<26FB-20/6ACC@5UZ:/8> 8N #-#") 5&%25.&&22*1#J?/>  ?5#:(0iEX/>YEX/>YEX/>YEX/>Yк9 к 9 ии и0173#53#35#53#3#5357#3#0GGGGGGGG22222^2220i&!0<)EX/>YEX/>YEX)/)>YEX#/#>Y)к%)9%/ܺ9%9# &0173#53#37>32#"'#3#'#3#0GGGN5!##'"3  3$h5NG222x$/ )$8 "s226.xEX/>YEX"/">YEX/>Y9/и"#и& 01"&5463223267>55#5!#3#53#`//    LGGG- 0#! 'NdB11]22:dW20EX/>YEX/>YEX/>YEX/>YEX/>Y9}/и  иии0173#5333#3#53#'#3#0GGGGG$$G222^22}MM20iEX/>YEX / >YEX/>YEX/>Yк9/A]A/q  ии0173#53#35#53#3#535#3#0GGGGGGGG22222^222, 0jnEX/>YEX/>YEX / >Yи  и 0173#5!#3#53#3#0GG:GGGG222^22b2&89, MEX/>YEX/>Y ܸ и и 0173##5!#5#3!XyCCyX2dda2,18/=KEX/>YEX/>YEX/>YEX///>YEX/>YEX'/'>Y/0097799/EE'9'>+>9,0135##".54>3235'5736632#"&'#3#'2654&#"!26554&#"G6('B00B'(6G6('B00B'(6G(11(/::?/::/(11 "CfDDfC" &!"CfDDfC" 2)) ))MM}MMMM}MM))))0jtEX/>YEX/>YEX/>Y и  и и 01!!53#53#3#53#3#.GGGGGeR222a22a F EX / >YEX/>YEX / >Y 9|/A]A/qA 0]A@Pq9  ии01%35##"&55#53#32655#53#3!D[I6PNGA.93>AGG2 $JT11w8.&%11]20@EX/>YEX / >YEX/>YEX/>Yи  иии0173#53#3#53#3#53#3!0GG<<<YEX/>YEX/>YEX/>Y и  и иии 01!!53#53#3#53#3#53#3# $GG<<<YEX/>Y ܸ  9 /  0173##5!#32#!%26554&##GpCZGQYYQ-,,-j2d1TMMT5/*&*/0&EX/>YEX/>YEX/>YEX/>Yк9/ии% & 0173#53#32#!%3#53#3#'26554&##0GGGuQYYQGGGG-,,-`222TMMT222^25/*&*/0WEX/>YEX/>Yк9/  0173#53#32#!%26554&##0GGGQYYQ-,,-j222TMMT5/*&*/,1EX(/(>YEX"/">YEX/>Y(9/A/q9}/ ("!A !!]$901".5463232655#5354&#"#5336632-H2!$2KVEC6BCC>24S; $B\ "-#") ^T5R\1*1"%Ec?AeG%0*EX / >YEX/>YEX/>YEX/>Y 9/A/qA] и  и $01"&'#3#53#53#3>32'26554&#"0dvxGGGGy#:O0hyyh?88??88 v22229Y=!6QHHQQHHQ%EX/>YEX/>YEX/>Y9/A]%%9и 017376675&&54>3!#3#535##5#"35K$HV*?*)GGGU[m0'.)2{F:6)2^22 4!'.!4AEX/>YEX/>YA] 9/A_qA]AO]A]A]AqA] 0173#5!#5#32#!%26554&##4JJP܍gjjg17;;72V2udbbj6@868@4f"4 OEX/>YEX / >Yܸ  0173#5!#5#3!4JJP^2V2u2`YEX/>YEX/>Yи ии0173655#5!#3#5!#%#L>JMJhWWdz/6T 622֠N3Ut+4I% CEX/>YEX/>YEX#/#>YEX=/=>YEX7/7>YEXC/C>YA=9AA9 ܺ  9ии )к-#)9A9к09974=>:01737667'&'##"&546323#53#376632#"&'#3##3#53## D!J  &%1I#M\JJ\M#I1%&  J!D\JJ\2 @"),DR 22RD,)"@ 2J229&AEX///>YEX)/)>YEX/>Y/9/9//#)(ܺ+#97901".54632326554&##5326554&#"#53366328U;"# >+UVB?mf5D@ABPPPQB1N6Q<9+%Ea '0 &$! I< :@6@6$5B>19= )/A'FV ):(.K64EX/>YEX/>YEX/>YEX/>Yк9 к 9 ии и0173#53#35#53#3#537#3#4JJJ _JJJJ J2V22Ӽ2222-/24&00`4(EX/>YEX / >YEX(/(>YEX"/">Y(к$(9$/ ܺ 9$9"%0173#53#376632#"&'#3##3#4JJJbX(H2%&   U"DbJ2V22QE,)"-! 2J2,xEX/>YEX / >YEX/>Y9/и !и$01"&54632327>55#5!#3#53#r46"   MJJJ 3 9&"("8lk2222RcxF48-4(2/4nEX/>YEX/>YEX / >Yи  и0173#5!#3#53!3#4JJJJJJ2V2222R24N02S##v4(EX/>YEX"/">YEX/>Y9/9ии"!%01"&5463232>77#5!#377#53#YEX/>YEX/>Y и  и и01!!53#53#!#53#3#JJJYEX/>YEX$/$>Y$9/AO]9 и и!01%35##".55#53#3267#53#3!^"L6YEX / >YEX/>YEX/>Yи  иии0173#53#3#53#3#53#3!4JJHHHHJJs2V22R22R2224`EX/>YEX/>YEX/>YEX/>Y и  и иии01!!53#53#3#53#3#53#3#JJHHHHJhW2V22R22R22#lEX/>YEX/>Yܸ ܺ9/A] 0173##5!#32#!%26554&##JPJgjjg;8;;82Ru2gggg6A8>8A4g&EX/>YEX/>YEX/>YEX/>Yк%9%/A%]ии&0173#53#32#!%3#53#3#%26554&##4JJJgjjg:JJJJ8;;82V22gggg2V2226A8>8A4L`EX/>YEX/>Yк9/A]0173#53#32#!%26554&##4JJJgjjg;8;;82V22gggg6A8>8A8\6EX'/'>YEX-/->YEX/>Y-9/9/-!'&ܺ)!901".5463232>55!5!54.#"#5336632%9X="# A05P5/G0ERPPPB=hJ*+Qs &1 &$! $@Y5/6)4V="?28=!(0\WU]14"8EX/>YEX/>YEX/>YEX / >Y 9/A/?]A]A_]  ии#.01".'#3#53#53#3>32'2>554.#"BjK+JJJJ,Kh@DmK((KmD.C--C..C--C .XQ22V22MyT,1]UU]19!=V55V=!!=V55V=!u#EX / >YEX/>YEX/>Y 9/A]A 0]AP`]""9 и 017376675&&5463!#3#53###"33C$hZkaNJJJ]5::52ZPYh222 ?111?+&+&0D&0D&+0& 0 OEX/>YEX / >Yܸ  0173#5!53#3!0GGIS[21a2&EX/>YEX/>Y9/A]A/qA 0]  ܸии01735#535#5!#5#3#3!0GQQGC[221d2208*EX/>YEX*/*>YEX/>Y* 9 /Ap ] и A]A ] 9013>554&#"3#53#5!#5#36632## ^  +83;WGGCD6OK*6R &7/&%f221d $JT.@),& ,& ,& ,0EX / >YEX/>YEX/>Y  9A/] 9/A/q !)!9})/01".54>32353#54&#"3#3275&54632$:\@"#>V40;CC?2BMPLC $!3H %Fd?>eG&"1*0]Q5Qa)"#-"&h&hj<EEX(/(>YEX1/1>YEX / >YEX/>YEX/>YEX / >Y (9 /ии  $$ 9 ܺ 9('+и$,и17ܺ:179>,9B E 01!#'#3#535##537667'&&'##"&5463235#53#376632#"'#3#QGGGG5g"3 3"'##=5GGGG5=##'"3 3"eWR222s# 8$)4Fx11xF4)$8 #s,&,j;EX&/&>YEX,/,>YEX/>Y,9/A/q9}/ , &%A%%](&%92999; 01&&54632326554&##5326554&#"#5336632#OW!$/)?<26FB-20/6ACC@5UZ:/8>ZHR F-#") 5&%25.&&22*1#J?/>  ?5=O ! AEX/ >YEX / >Yи0173#53#3#!GGGG222x20i&!0i&!0i&!0<&#0j^+EX / >YEX/>YEX/>YEX/>Y 9/и  иܺ 9$9( + 01!#'#3#53#53#37>32#"'#3# RNGGGGN5!##'"3  3$fYS2222x$/ )$8 "s0W/EX/>YEX/>YEX%/%>YEX///>Yк+/9+/ 9 / иܺ9+'к '9%")+9)/,0173#53#353376632#"'#3#'##5#3#0GGG#30A$#'"3  -!c53#G222jjxH2)$8 "s2jj2!+EX/>YEX/>YEX%/%>YEX+/+>Y ܸ '+9'/ ܺ9 '9%"(0173##5!#37>32#"'#3#'#3#GoCYGN5!##'"3  3$h5NG2d2x$/ )$8 "s223=EX/>YEX'/'>YEX/>Y9/к'9/'(+ < '= 01"&5463223267>55#5!#32#!53#%26554&##`//    LGsQYYQG--,,-^ 0#! 'NdB12TMMT2:dW2A/*&*/0jEX/>YEX/>YEX/>YEX / >Y 9/A]A/q  и и и  01!#535#3#53#53#35#53#3#4GGGGGGGdR2222222a05 *EX/>YEX / >YEX / >YEX/>Y к 9/A]A/q  к 9/и) * 0173#53#35#53#32#!535#3#%26554&##0GGEEGsQYYQEEF-,,-^22222TMMT225/*&*/0EX/>YEX / >YEX/>YEX/>Yк9/A]A/q    ܸи0173#53#35#5!#5#3!535#3#0GGGGC[GG2222da222, &, %cEX/>YEX/>Y9/A]A/q 01%2655!754&#"".54>32ECCCEEC6Y?""?Y66X?##?X*WE&&EW"EWWE"&Fe>>dG&&Gd>>eF&, g,j.lEX / >YEX/>Y %%9|/A0@Pq,и. 01.54>32#"&54675&&#"3267#/I2%B[6)B.#  '"9(PE$PO^4'.N ,&,&,&,&8EX/>YEX / >YEX/>YEX/>Yи и  ии0135#53#3#53#3#G3FG3H22~22,28EX/>YEX/>YEX/>YEX/>YA /?] и ииии0135#53#53#3#53#3#3#Gmm3FG3mmHd222~22,2d2j;EX/>YEX/>YEX / >YEX/>Y  9 и  ик9ии  01!#53'#3#537'#53#37#53#3#;kn=93;ki=9TR2222222 F& jd"EX/>YEX/>YEX/>Y9|/A]A/qA 0]A@Pq9 ии " 01!#535##"&55#53#32655#53#3#[I6PNGA.93>AGeR2 $JT11w8.&%11` I&EX/>YEX/>YEX/>Y9|/A"2]A/qA]A@Pq и9/иик"9$к&9|&/A &0&]01%#"&55#53#536655#53#3!535##QOGA$-3(/AGG[63JT11w2.ji$ 11]22)d0&#l80jb|EX/>YEX/>YEX/>Y и  иии 01!#53#53#3#53#3## GGGGGGR222a22^20<&{,, 7EX1/1>YEX&/& >YEX/>YEX/>YA11 1]19/A  0]A]1к"&19"/#'и"*к+901"&546323254&#"3#53#53573#3>32n33 =7:)!GGUU`%1^PS-#!TEB $2252L_2!aaXST"T*&!)-&!0-4&++ 4Z OEX/>YEX / >Yܸ  0173#5!53!3!4JJW^2V22&EX/>YEX/>Y9/A]A 0]AP`]  ܸ ии0173#53#5!#5#3#3!4JXXJP㫫^262u624\`../EX/>YEX/>Y."9"/A/"?"O"]A"]A"]A"]A"q иܸ" 9013>554.#"3#53#5!#5#36632##gh  !7',AJJJP K1=T4-9[n &.A(22V2u6R8/A(4I&%,$4I&%)$4I&%0$2V6~EX / >YEX/>YEX/>Y  9ܺ 9/%/%9//01".54>32353#54&#"!!32675&&54632hHsP+*Mi?YEX / >YEX1/1>YEX/>YEX / >YEX/>Y (9 /ии  $$ 9 ܺ 9('+и$,и7к;179>,9BE01!##3#53##537667'&'##"&546323#53#376632#"&'#3#W\JJ\D!J  &%1I#M\JJ\M#I1%&  J![WJ222 @"),DR 22RD,)"@ 9&&/) 9`&DEX///>YEX)/)>YEX/>Y/9/9//#)(ܺ+#979BиD01.54632326554&##5326554&#"#5336632#/I2"# >+UVB?mf5D@ABPPPQB1N6Q<9+7N0W %- &$! I< :@6@6$5B>19= )/A'FV ):()D4"4-)4&0)`4&0,`4h&0'`4&2+T4`*EX / >YEX/>YEX/>YEX/>Y 9/и  иܺ9#9'*01!##3#53#53#376632#"&'#3#jTbJJJJbX(H2%&   U"XWJ22V22QE,)"-! 40EX / >YEX/>YEX/>YEX,/,>Y 9/и   и 9/иܺ!9%9,).к090/01#3#53#53#353376632#"&'#3### )JJJJ)8N$I1%&   KD8J22V22RD,)"-!!2J#0,EX/>YEX/>YEX,/,>YEX&/&>Y,ܸ (,9(/ ܺ9 (9&#)0173##5!#37>32#"&'#3##3#JPJa\%%'&)!   X#DbJ2Ru2)7! * (#/2J21;EX/>YEX%/%>YEX/>Y9/к:%9:/A:]%&)%;01"&54632327>55#5!#32#!53#%26554&##r46"   MJgjjgJ 3$8;;8 9&"("8lk22gggg2RcxFBA8>8A4`EX/>YEX/>YEX / >YEX/>Y 9/A]A/?]  и ии01!#53!3#53#53#!#53#3#JJJJJQJJhW222V22224 *EX/>YEX / >YEX / >YEX/>Y к 9/A]A/?]  к) 9)/A)]и*0173#53#!#53#32#!53!3#%26554&##4JJJ1JJgjjgJJ8;;82V2222gggg226A8>8A4EX/>YEX / >YEX/>YEX/>Yк9/A/?]A]   ܸ и0173#53#!#5!#5#3#53!3#4JJJ7JPJJJ2V222u2222&/)>2 -MEX$/$>YEX/>Y$9/$01%2>55!54.#"".54>32j0J3p3J3J00J3FsR--RsFFsR--Rs-">W5005W>"R"5W>"">W5"u2]TT]22]TT]222`S*nEX / >YEX/>YEX/>Y  9ܸ(и*01.54>32353#54&#"3267#5<`C$+Mj?ATPPTF1H.l`F_* !2B)W 8]~MW[0,>32>$>T1jzI970$h&;'<&;)<&;*<&;0<o9oEX/>YEX/>YEX/>Y9/ и ииии01735#53#53#3#53#3#3!\4VV4ǐ[24i22-2242`EX/>YEX/>YEX / >YEX/>Y  9 и  ик9ии01!#53'#3#53#53#37#53#3#TIC;;IC;VW222!52222"&?)5"`&EX/>YEX/>YEX/>Y9/AO]9и"и#&01!#535##".55#53#3267#53#3#h^"L6YEX/>YEX/>Y9/AO] и9/ии и&к(9(/01".55#53#53667#53#3!535##HYEX/>YEX/>Y и  иии01!!53#53#!#53#3!#VJJJYEX/>Y0$9$/A$]AO$]A$]AP$q иܸик $ 9013>554.#"3#53##5!#5#36632##h  !7',AJJPP K1=T4-9[n &.A(22Ruu6R8/A(#P$EX/>YEX$/$>YEX/>Y$ܸ и к$9/APqAO]A]A]и!0173##5!#5#366323#5354&#"3#JPSP N3wkJJGL-EJ2Ruuiq22]L24 EX/>YEX / >YEX/>Y к  9 /A ]A ]A ] 9и0173#53#366323#5354&#"3#4JJJ N3wkJJGL-EJ2V22iq22]L22%DQ 5EX/>YEX/>Y0126554&#""&54632((((LJJLLJJo6/\/66/\/6+b\\bb\\b$JD ;EX/>YEX / >Yи013'733!6il7\q(!A'$J9&MEX/>YEX&/&>Y&!ܺ!9/!#01766554&#"#"&54632353!$|"%  E6@G$i,i0 $   .52)" D,fD/=sEX1/1>YEX/>Y1  9/9/) 9)/7901"&54632326554&##5326554&#"#"&54>32YEX / >Y 9/ ܸии01#5733##'35#ʶL66E66H~%D6)[EX/>YEX/>Yܸ$9$/9}/01"&54632326554&#"'73#36632YEX/>Y ܸ9/ 901"&54>76632'26554&#"DK!;O-HI +(3=MB###DOE4R:#O? ?69E)* ** * J29EX/>YEX/>Yܸܸ01##5!#,G|={7)DK'5]EX / >YEX/>Y( 9(/!(!9(!9 /01"&54675&&54632'26554&#"726554&#"FK7% /E??E/ %7KF####!!!D:0(,+%,33,%+,(0:)""""$DB#QEX / >YEX/>Yܸ 9/ 901667'#"&54632726554&#"\HI +(3=MBDK!;O-I###cO? ?69EOE4R:#* ** *%Qv 5EX/>YEX/>Y01726554&#""&54632((((LJJLLJJ%6/\/66/\/6+b\\bb\\b$Dp ;EX/>YEX / >Yи0173'733!6il7\'(!A'$9v&MEX/>YEX&/&>Y&!ܺ!9/!#017766554&#"#"&54632353!$|"%  E6@G$i,:i0 $   .52)" D,f/v=sEX1/1>YEX/>Y1  9/9/) 9)/7901"&54632326554&##5326554&#"#"&54>32YEX / >Y 9 ܸии017#5733##'35#ʶL66EH66H~%6p)[EX/>YEX/>Yܸ$9$/9}/01"&54632326554&#"'73#36632YEX/>Y ܺ9/ 901"&54>76632'26554&#"DK!;O-HI +(3=MB###OE4R:#O? ?69E)* ** * 2p9EX/>YEX/>Yܸܸ01##5!#,G2={7)Kv'5]EX / >YEX/>Y( 9(/!(!9(!9 /01"&54675&&54632'26554&#"726554&#"FK7% /E??E/ %7KF####!!!:0(,+%,33,%+,(0:)""""$Bv#QEX / >YEX/>Yܸ 9/ 9017667'#"&54632726554&#"\HI +(3=MBDK!;O-I###O? ?69EOE4R:#* ** *$_&'k&$U&'k&$K&'k$E&'k&'k_$X&'k"$N&'k$&'k_@&'k{ $H&'k%&'kh$}&'kK$l&'k!8&'k_%A&'kh &'k7$d&'k" //EX / >Y01'737#ROUh\Q[D $"*s  ////01?''777''syy?yy?yy?yyIyy>xx>yy>xxK0 / 017%3#%Kt_t]P %EX/>YEX / >Y01%'7'#P_tt %EX/>YEX / >Y0177537Pt_tK0 / 01%7#53'7t_tӣPUg /01%'!#(+9*'$8Ug /0177%'7!'+(#ꥍ$'bt /0177!(#98$'bt /01%7%'77!r9#(Չ$8 3/EX/>YEX / >Y 01%'7%3#Dtt*PP 3/EX/>YEX / >Y 0177%3#%t*PPtK~v / / 017'7'!!*ttPK~v  //  017!'7'!K*ttPK`X  // 0175!!7K13t*PPtK`X / / 017!5!7k13t*PPt 3/EX/>YEX / >Y 013'7'7#P*ttP1 3/EX/>YEX / >Y 01%7#3'7tPP*t 1K'lK'lJ0 / 0177'7'7'Jtttt]%EX/>YEX/>Y0177'7'7'7tttt -;/ / 017&&54>32#4.#"7  'MsKLvQ*R;Y<0Q>& t?i#3gS56]{F4_I+ >\=t!-<// 017'.#"#4>327 %>Q0 +I_4F{]65Sg3#i?tINV//  017%2>54.#52#%It{*! *-M76M/t! $$ P-@*(A-JNV/ /  01%7".54>3"3'7!t/M67M-* !){tg-A(*@-P $$ f*+EX/>YEX/>Y 01".546732>54.''!ExY4`O-ED(C[33YA&,D/#(+4V>"2Wx 0VvE^0@,vC6ZA$"?V5*EBG-*'$)JLS1BrT0e*+EX / >YEX/>Y 01".54>7'7!'32>54&'7FxW2">V4+(#/D,&AY33[C(DE-O`4Yx 0TrB1SLJ)$'-GBE*5V?"$AZ6Cv,@0^EvV0f=/AP]Ap]ܺ 9 ܸܺ 901"&'&&#"'66323267l&(* &(*f !) !)f=/AP]Ap]ܺ 9 ܸܺ 901"&'&&#"'66323267c!" * !" *f !( !(!/A0]AP`]01!!?ee &/AP]Ap]A@]01"&554632,e   g -/AP]Ap]ܸи01"&5546323"&554632gH)/A]A/]ܸи01777MTMTX**H/A]A/]017KXX+HQ/A]A/]017XK+S6/A]Ap]ܸиA]0173'~>~gbbW-/A]Ap]ܸܸ0177#~>bbS-/A]Ap]ܸ ܸ01".'732677,&1! )**) !2S*3$$3*R";/A]A]ܸܺ9и01".546323275&&54632,*?(0= (?R))@* !H//A/]AO]A]A]A]0126554&#"".54>32,,!!,,!!,e!$!!$!% *+  +* 8 !%b//AO]AOqA/qA/]A]A]A/]ܸ%ܸ#0126554&#"".54>327,-!!--!!-4M9m]   %)))) z+bFe%/A]A/]ܸ 01"&5546732,%,F!#M23.EX/ >Y013#>[E!2/ܸ ܸܸ01"&'732654&''736327&+  &* + ) `P!  2M^EX/>YEX / >YA 0@P`p ]иܸ01"&5467'33267)8>6#  ,$((:#$  ]fqe9kgHH~H%cScWkS@z*@^ * /A ]AO ]A/ ]ܸ017#5324q' PlE 3#F9.mSt"EX/>Yܸ01353##^]T#%inS$2|V7 /01"&5546329G /A ]A O_o] A ]A@]01667"&554632#5%,2!#Mf2!kGA/A]A/]ܸ ܸк 9|/01".'732677'7&1! )**) !2GNIxG(2&&2(&kGA/A]A/]ܸ ܸк 9|/01".'7326777&1! )**) !2ING(2&&2(&kG{E/A]A/]ܸ ܸк 9|/ܸ01".'732677'7#532&1! )**) !2>4q' G(2&&2(lE 3#]Gy-U/A]A/] ܸܸܺ 9 ܸܺ 9$ܸ (01"&'&&#"'66323267".'732677@&(* &(*`&1! )**) !2  !(  !((2&&2(gS 6/|/A]ܸии01"&5546323"&554632'7bLO|S(dS "@/A]ܸии"ܸܸ"ܸ01"&5546323"&55463277#b}>SccgS 6/|/A]ܸии01"&5546323"&5546327bOLS (cA A/A]A/]ܸиܺ 9| /0173'77~>~LO|Uff(cAN/A/]A]ܸܸܸ ܸииA]01".'73267773'%1! )))) !1~>~(0&&0(yyKKA J/A]AO]A/]ܸиܺ 9| /0173'7~>~OLUff(cA{ J/A]AO]A/] ܸܺ 9| /ܸܸ017#53273'w4p' ~>~lE 3#effgS8 0/A]ܸииܸ01"&5546323"&554632%!!bS?]Az ^ /A ]AO ]A/ ]ܸܸܺ 9 ܸܺ 9 и01"&'&&#"'6632326773'@&(* &(*~>~ !' !'cc 8/A`p]ܺ 9 ܸܺ 901"&'&&#"'66323267l&(* &(*  !) !) 8/A`p]ܺ 9 ܸܺ 901"&'&&#"'66323267c!" * !" *  !( !()h)/A0]A `p]01!!h?e /A`]A]01"&554632,    1/A`p]A]ܸи01"&5546323"&554632 /A/]ܸи01777MTMT**/A/]017KX+Q/A/]017XK+-/A/]A]ܸи0173'~>~bb6/A/]A`]A]ܸܸ0177#~>bb6/A/]A]A] ܸ01".'732677,&1! )**) !2*3$$3*";/A/]A]ܸܺ9и01".546323275&&54632,*?(0= (?)) !K//A/]A]A_]A/]0126554&#"".54>32,,!!,,!!, !$!!$!% *+  +* h !%a//A]A]A_]A]A.]A/]ܸ%ܸ#0126554&#"".54>327,-!!--!!-4M9m   %)))) z+b^ #| /A` ]A]017#5324q' lE 3#k08/A/]ܸ ܸк 9|/01".'732677'7&1! )**) !2GNIx(2&&2(&k08/A/]ܸ ܸк 9|/01".'7326777&1! )**) !2IN(2&&2(&k%</A/]ܸ ܸк 9|/ܸ01".'732677'7#532&1! )**) !2>4q' (2&&2(lE 3#]#-L/A/] ܸܸܺ 9 ܸܺ 9$ܸ (01"&'&&#"'66323267".'732677@&(* &(*`&1! )**) !2  !(  !((2&&2(g2 6/|/A/]ܸии01"&5546323"&554632'7bLO|(d/ "8/A/]ܸии"ܸܸ"01"&5546323"&55463277#b}>ccg2 6/|/A/]ܸии01"&5546323"&5546327bOL (c/ N/A/]A]A_]ܸиܺ 9| /0173'77~>~LO|ff(c3[/A_]A/]A]ܸܸܸ ܸииA]01".'73267773'%1! )))) !1~>~(0&&0(yyKK/ N/A/]A]A_]ܸиܺ 9| /0173'7~>~OLff(c$ N/A/]A]A_] ܸܺ 9| /ܸܸ017#53273'w4p' ~>~slE 3#effg 0/A/]ܸииܸ01"&5546323"&554632%!!b?]# b /A / ]A ]A_ ]ܸܸܺ 9 ܸܺ 9 и01"&'&&#"'6632326773'@&(* &(*~>~ !' !'cc.PEX / >YEX/>YEX/>YEX/>Y& &9 /  &/9@/J=@J9M@J901".'#!#3>32.#"32>7'".54>32&&#"3267F{`=H/==`{FY2?0;C$6eN//Ne6$C;0?2Z+K8 8K+4W?8"/""/"8?W 1WtD4LCuW1PE.,!)Kh??hK)!+.EP 8K++K8 /)- #00# -)/[T"BEX-/->YEX / >YEX#/#>YEX/>Y  9/-3#=01".54>32&#"3#327!".54>32&#"327.Jb99bJ -RB. .BR-Jb99bJ 4]E((E]4 9bKKb9k6I+n+I6k9bKKb9k(F]45\F(k"--@ G-gyQ  3  2 D: Z: &  @ & $ ", N  f 2l $   4  2 t:Copyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextRegularIBM;IBMPlexSerif-Text;2.006;2020Version 2.006 2020IBMPlexSerif-TextIBM Plex is a trademark of IBM Corp, registered in many jurisdictions worldwide.Bold MondayMike Abbink, Paul van der Laan, Pieter van Rosmalenhttp://www.boldmonday.comhttp://www.ibm.comThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLIBM Plex SerifTextHow razorback-jumping frogs can level six piqued gymnasts!Copyright 2020 IBM Corp. All rights reserved.IBM Plex Serif TextRegularIBM;IBMPlexSerif-Text;2.006;2020Version 2.006 2020IBMPlexSerif-TextIBM Plex is a trademark of IBM Corp, registered in many jurisdictions worldwide.Bold MondayMike Abbink, Paul van der Laan, Pieter van Rosmalenhttp://www.boldmonday.comhttp://www.ibm.comThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFLIBM Plex SerifTextHow razorback-jumping frogs can level six piqued gymnasts!0DDEFGHIJKLMNOPQRSTUVWXYZ[\]$%&'()*+,-./0123456789:;<= #B " >@^`?_ Aa !     i!kl"j#$%n&m'()*+,-./0123456789:;<=>?@ABCDEFGoHIJpKLrsMNqOPQRSTUVWXYZ[\]^_`atbvwcudefghijklmnopqrstuxvwyx{|yzz{|}}~~bcdefgh      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~C      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEa.alt01g.alt01g.alt02 zero.alt01 zero.alt02 softhyphenprimeprimedbl estimatedlitre numerosignEurobaht coloncurrencyliranairarupeewonsheqeldongkiptugrikpesoguaranihryvniaceditenge rupeeindian liraturkishrublebitcoinabreve adotbelowahookamacronaogonek aringacute abreveacuteabrevedotbelow abrevegrave abrevehook abrevetildeacircumflexacuteacircumflexdotbelowacircumflexgraveacircumflexhookacircumflextilde aacute.alt01 abreve.alt01acircumflex.alt01adieresis.alt01adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01aringacute.alt01 atilde.alt01abreveacute.alt01abrevedotbelow.alt01abrevegrave.alt01abrevehook.alt01abrevetilde.alt01acircumflexacute.alt01acircumflexdotbelow.alt01acircumflexgrave.alt01acircumflexhook.alt01acircumflextilde.alt01aeacute ccircumflex cdotaccentdcaronebreveecaron edotaccent edotbelowehookemacroneogoneketildeecircumflexacuteecircumflexdotbelowecircumflexgraveecircumflexhookecircumflextildeschwa gcircumflex gcommaaccent gdotaccent gbreve.alt01gcircumflex.alt01gcommaaccent.alt01gdotaccent.alt01hbar hcircumflexibreve idotbelowihookimacroniogonekitildeijijacutedotlessjjacute jcircumflex kcommaaccent kgreenlandiclacutelcaron lcommaaccentldotnacutencaron ncommaaccent napostropheengobreve odotbelowohook ohungarumlautomacron oslashacuteohorn ohornacute ohorndotbelow ohorngrave ohornhook ohorntildeocircumflexacuteocircumflexdotbelowocircumflexgraveocircumflexhookocircumflextilderacutercaron rcommaaccentsacute scircumflex scommaaccentgermandbls.alt01tbartcaron tcommaaccenttcedillaubreve udotbelowuhook uhungarumlautumacronuogonekuringutildeuhorn uhornacute uhorndotbelow uhorngrave uhornhook uhorntildewacute wcircumflex wdieresiswgrave ycircumflex ydotbelowygraveyhookytildezacute zdotaccentAbreve AdotbelowAhookAmacronAogonek Aringacute AbreveacuteAbrevedotbelow Abrevegrave Abrevehook AbrevetildeAcircumflexacuteAcircumflexdotbelowAcircumflexgraveAcircumflexhookAcircumflextildeAEacute Ccircumflex CdotaccentDcaronDcroatEbreveEcaron Edotaccent EdotbelowEhookEmacronEogonekEtildeEcircumflexacuteEcircumflexdotbelowEcircumflexgraveEcircumflexhookEcircumflextildeSchwa Gcircumflex Gcommaaccent GdotaccentHbar HcircumflexIbreve IdotbelowIhookImacronIogonekItildeIJIJacuteJacute Jcircumflex KcommaaccentLacuteLcaron LcommaaccentLdotNacuteNcaron NcommaaccentEngObreve OdotbelowOhook OhungarumlautOmacron OslashacuteOhorn Ohornacute Ohorndotbelow Ohorngrave Ohornhook OhorntildeOcircumflexacuteOcircumflexdotbelowOcircumflexgraveOcircumflexhookOcircumflextildeRacuteRcaron RcommaaccentSacute Scircumflex Scommaaccent GermandblsTbarTcaron TcommaaccentTcedillaUbreve UdotbelowUhook UhungarumlautUmacronUogonekUringUtildeUhorn Uhornacute Uhorndotbelow Uhorngrave Uhornhook UhorntildeWacute Wcircumflex WdieresisWgrave Ycircumflex YdotbelowYgraveYhookYtildeZacute Zdotaccentuni0430 uni0430.alt01uni0431uni0432uni0433uni0434uni0435uni0436uni0437uni0438uni0439uni043Auni043Buni043Cuni043Duni043Euni043Funi0440uni0441uni0442uni0443uni0444uni0445uni0446uni0447uni0448uni0449uni044Auni044Buni044Cuni044Duni044Euni044Funi0410uni0411uni0412uni0413uni0414uni0415uni0416uni0417uni0418uni0419uni041Auni041Buni041Cuni041Duni041Euni041Funi0420uni0421uni0422uni0423uni0424uni0425uni0426uni0427uni0428uni0429uni042Auni042Buni042Cuni042Duni042Euni042Funi04D3uni04D1 uni04D3.alt01 uni04D1.alt01uni04D5uni0453uni0491uni0493uni0495uni0450uni0451uni04D7uni0454uni04DDuni04C2uni0497uni04DFuni0499uni04CFuni04E5uni045Duni04E3uni045Cuni049Buni049Duni04A1uni0459uni04A3uni045Auni04A5uni04E7uni0473uni04E9uni04ABuni04EFuni04F1uni04F3uni045Euni04AFuni04B1uni04B3uni04F5uni04B7uni04B9uni04F9uni0455uni045Funi0456uni0457uni0458uni0452uni045Buni04BBuni04D9uni04D2uni04D0uni04D4uni0403uni0490uni0492uni0494uni0400uni0401uni04D6uni0404uni04DCuni04C1uni0496uni04DEuni0498uni04C0uni04E4uni040Duni04E2uni040Cuni049Auni049Cuni04A0uni0409uni04A2uni040Auni04A4uni04E6uni0472uni04E8uni04AAuni04EEuni04F0uni04F2uni040Euni04AEuni04B0uni04B2uni04F4uni04B6uni04B8uni04F8uni0405uni040Funi0406uni0407uni0408uni0402uni040Buni04BAuni04D8 zerosuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferioruni2153uni2154uni2155uni2156uni2157uni2158uni2159uni215Auni2150uni215Buni215Cuni215Duni215Euni2151 checkmark crossmark arrowleftarrowup arrowdown arrowright arrowupleft arrowupright arrowdownleftarrowdownrightarrowupleftcornerarrowdownleftcornerarrowleftupcornerarrowrightupcornerarrowleftdowncornerarrowrightdowncornerarrowuprightcornerarrowdownrightcornerarrowleftarrowrightarrowrightarrowleftarrowleftright arrowupdownarrowdowncounterclockhalfarrowdownclockhalf arrowhookleftarrowhookrightarrowupleftcounterclockarrowuprightclock tilde.alt01 breve.cyrl ringacutecommaturnedtop caronslovak tildecomb macroncomb dotaccentcomb dieresiscombhungarumlautcomb acutecomb gravecombcircumflexcomb caroncomb brevecombringcombhookcombcommaturnedtopcombcaronslovakcombhorncomb cedillacomb dotbelowcombcommabelowcomb ogonekcomb breveacute brevegrave brevehook brevetilde dieresisacute dieresiscaron dieresisgravecircumflexacutecircumflexbrevecircumflexgravecircumflexhookdieresismacroncircumflextilde tilde.casetilde.alt01.case macron.casedotaccent.case dieresis.casehungarumlaut.case acute.case grave.casecircumflex.case caron.case breve.casebreve.cyrl_case ring.caseringacute.case hookcomb.casebreveacute.casebrevegrave.casebrevehook.casebrevetilde.casedieresisacute.casedieresiscaron.casedieresisgrave.casecircumflexacute.casecircumflexbreve.casecircumflexgrave.casecircumflexhook.casedieresismacron.casecircumflextilde.casefcclogocelogo ,DFLTkern  h$t5Od crOUVPUPUR.UTRUUUVLcrWWd dv debfjfgNg<<\<BPP$$f%)b)*F-////0(66767NFNF7878889999:2;|@ACC`CvCIIIJ MNFR.UOOOOOOOONOOOOOOOOOOOOOd d d d d d d d Odd d d d d d d d d d d d d VVOOOOOTOVVVVVVVVVVVVVVVVVVLPPPPUUUUUUUR.QLQQR.R.R.R8RRS SHUSSTRTRUTUUd_e fKhKis4tbzX     "#$%&'()*+,-./0123456789[\]^_`abcdeijklmnopqrstuvwxyz{|}~6666666666666666666666666666666666666666666666666(((((6UUUU6<<<<<<<<<<<<<<<<<<RRRRXXXXXXX222G6>@0H4Z>@6Md i8 GHMbi st      !# ' */ 1 3 46789GIJKLMNOQSTU#V(W#X(YZ\^dis8tz"#$%&'()*+,-./0123456789=>?@AIJKLMNOPQRSTUVWXYZ[\]^_`abcdeijklmnopqrstuvwxyz{|}~                                        !*45679GHIJKLMN O Q S T U VW XY Z [\]^st z "#$%&'()*+,-./0123456789=>?@Aijklmnopqrstuvwxyz{|}~      !*46789:GMNOQSTUVWXYZ[\]^bistzBDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~5  !#'*/1GHIJKLM~NOQSTU VW XYZ[\]^bist z     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~68GH Mbist8Mad it6GHd i st 6GHMbst Mi   !*478:GHIJKLM~N~O~Q~S T U V W X Y~Z~iz !"#$%&'()*+,-./0123456789:;<=>?@A[\]^_`abcdefghijklmnopqrstuvwxyz{|}~        68GMbit6GHMbi st  6GMdis *68GHMabdist   MitCU  !#'*/1346 7 9 GHIJKLMNOPQRSTUVWXYZ[\]^_abdis tz     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~             (6 GHM_abdist C   !#'*/14GHIJKLMN O Q STUVWXY Z [\]^abdtz"#$%&'()*+,-./0123456789=>?@ADEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~          &6 GHM_ab dist   C  GHMst   # ' * / 1 45679:DEFG[\]^_`abcde                                       "%',./36 9 :;<?BEGHIJKLO QRSTUVWXYabfghijklmnoqrs}        !*346789:_`abcdeijklmnopqrstuvwxyz{|}~  "%'(,./3:;<=?BEGOUVWXYabjklmnop~68b  ' ,<GOnou y `  ! #'*/13456789: ```"#$%&'()*+,-./0123456789=>?@ABDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdef g h i j k l m n o p q r s t u v w x y z { | } ~     (  q"%',!/369:;?@ADEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghi j k l m n o p q r s t u v w x y z { | } ~    ( 69:HILQRSTfghijklmuwxy0}~  :!4679NpOpQpUV WX YpZpijklmnopqrstuvwxyz{|}~(~c   V   46789$ VVV      [\]^_ ` a b c d e    ",3:;<=?BGZ aj k l m nqrsxyV| NNNN  ", 3<GaqrsxyN    y)NNNNyN  !#'*/134679i!"#$%&'()*+,-./0123456789:;<=>?@ABDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'(,./369:; <=?BEGHIJKLMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuv}~     -STUVWXz  8&&!#'/146 79:"#$%&'()*+,-./0123456789I J K L M N O P Q R S T U V W X Y Z [&\&]&^&_&`&a&b&c&d&e&ijklmnopqrstuvwxyz{|}~ &(69:=QRSTfghij&k&l&m&p}~!6ijklmnopqrstuvwxyz{|}~(~ 68at  ',<Gnox6dist  6ist   6s68Mi   :!49IJKLMNOQSTUVWXYZ[]bzijklmnopqrstuvwxyz{|}~ 68 GHMdist    6 7 9            46t4679t64679646 79t69Md i69Mdi69Md i#4679MSTd itz68GHM i s  H6GM`b*dae s(t;u H(88:::&N7<8 8 VX$(0   6st6Md iMbd st  $    68Mst  $    68H Mst     68GMist(0,*&68GMit !#'* /14679:IJKLMSTUVWX[ \] ^a bistuvzDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~   c     !5"#$%&'()*,+,-./01234678$9:HIJKLMNOQSTVXYZ\^abdi.rtuvz "#$%&'()*+,-./0123456789= > ? @ A BDEFG[\]^_`abcdefghi5j5k5l5m5n5o5p5q5r5s5t5u5v5w5x5y5z5{5|5}5~555,,  ! r     8 GHIJKLM[]bi st    " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9     <67"89GHMS(T(VX`bd2f$h$i st&z(""""   8 GHMbi st    68Mst   6ds6s`bd s(t+(((((*(*68GMdis&t&$!$68GHMdis&t& !68GHM st   (    )68GHM _a(bd$fhist  "68GHM _a(bist  GHMis t  68GMbist   6Hi t  t5NNNNNNNNNNNDNTTTT@@@@@NNNNNN888 F F F F $Z$/7)-99-999?9/0>7997.t9.t??9@xMXDHLLK4ZxZxLZxZxZx^8Zx2NO"|XDZxZxXDM.ZxM.^8^8Zx$Z$Z$$)/$&T()))*~---4,(,(,999--4--.t7.t/???/0>0>0>0>035H97998,9: :R;?@A[\]^_ ` a b c d e ijklmnopqrstuvwxyz{|}~ MitC6GHMd,it"      (6 GHM_abdist C &6 GHM_ab dist   C  GHMst  0MUVWXd ist   ,:;<BGO no  $    !Mbdist  ',GO bno!Mbdist  ',GO bnoIJKLMNOQSTUVWXYZ[#\]#^istz      "%(,./6 9 :;<=?BEGH I JKL O Q R S T UVWXYaf g h i jklmnopqrsu} ~         GIJKLMNOQSTU VW XYZ[\]^dfhirstz     " %'(,./369:;<=?BEGHIJKLQRSTUVWXYZa bfghijklmnopq r s uz{|}~   {IJKLMNOQSTUVWXYZ[#\]#^istz     "%(,./:;<=?BEGHIJKLO Q R S T UVWXYaf g h i jklmnopqrs} ~   tGHIJKLMN O Q S T U VW XY Z [\]^ist z     "%' (,.3:;=?BG JKQRSTU V W XYabfghijklmnoqrsu}~     yGIJKLMNOQSTUVWXYZ[\]^istz   "'(,./:;<=?BEGJKOQRSTUVWabfghijklmnopqrs}~   $GMbist  ',<GOnoxGHIJKLM~N~O~Q~S T U V W X Y~Z~istz   "%'(,./3:;<=BEGHIJKLQRSTUVWXYabfghijklmn o qrsu}~       GHIJKLMNOPQRSTUVWXYZ[\]^abdistz      !"#$%&'(,./369:; <=?BEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvx|}~     GHIJKLMwNOQSTUVWXYZ[\]^dfhirstz      !"#$%&'(,./36 9 :;<=?BEGJKMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnoqrstv|}~         wGHIJKLMN O Q STVXY Z [\]^abdstz    "%' (, /369:<BEHIJKLQRSTU V W XYabfghijklmnopqrsu}~         ist ', <no   is 'noUGHIJKLMUVWX[]bdirst   %',<GHIJKLQRSTUVWXYbfghinoux}   GIJKLMNOQSTU VW XYZ[\]^dfhirstz     " %'(,.369:;<=?BGHIJKLQRSTUVWXYZa bfghijklmnopq r s uz{|}~   VGIJKLM STUVWX[\]^bd irstz  "',3 :;<?BOZabjklmnoqrsy.z{|  $H Mt  ',< GO no      jGIJKLMNOQSTVXYZ[\]^itz  "'(,.:;<=?BGHIJKLQRSTZabfghijklmnopqrsuz{|}~Mbdist  ',GO no#UVWX[]ds  "', 3:<Bab jklmnoqrs'GHM1bdi4rst  "',<G noyV    (GHMist  ' ,<G nou   )G Mbdst   ',GO nou    )GMdirst  ',<Gnou   GMi  ',G     )GHMdis&t  ',<Gnou & !GHIJKLMNOQSTU!V(W!X(YZ[\]^dis(tz     " %'(,.369:;<=?BGHIJKLQRSTUVWXYZa bfghijklmnopq r s uz{|}~GHIJKLMNOQSTUV,WX,YZ[\]^is(tz     " %'(,.369:;<=?BGHIJKLQRSTUVWXYZa bfghijklmnopq r s uyz{|}~GHIJKLM1NOP QR STUVWXYZ[\]^df h i4rstz  " "%'( ,. /369:;<= ?BEG HIJKLQRSTUVWXYabfghijklmnopqrsuyV}~            (GHM$di$rt  ' ,<GnouyJ    nGIJKLMNOQSTUWYZitz "%'(,./3 6 9 :;=?BEGHILUVWXYajklmnoqrsu~       it'< i ',<no ]STUVWXbdf h it$z ') * + ,- .0 1 2 4 5 7 8 :;<> ?@ A BC D F Z noz { |                        FMNOQSTUVWXYZ[\]^d iz "(,./3:;<=?BEGabnoqrs~GMNOQSTUVWXYZ\^istz      !"#$%&'(./369:;<=?BEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxz{|}~ist  ',<no!Mist   ,<GO no  $    *GH_a(bist  ',<G no   GHIxJxKxLxMNxOxPQxRUWYxZx[\]^bdirstu      !"#$%&'(,./369<EGHILMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwxy}~x  {x{GHIJKLMNOPQRSTUVWXYZ[\]^bdistz      !"#$%&'(,/369:; <=?BEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvx|}~       GNOPQRSTUVWXYZ[]rstz   "%'(/69:;<=?BEGHIJKLOQRSTUVWXYZabfghijklmnopqrsyz{|}~ GHi t  '<no GHIJKLMNOQSTUVWXYZisz      !"#$%&'(,./369:;<=?BEGHIJKLMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwxy}~$GMbist  ',<GOno.GHM'di)rst  ',<GOnouxyO    +GHi rs  ',<GOnouxy   )GHMirst   ',<GOno       /GHMbdist  ',<GOnouxy   "GHMis t  ',<G  5GHMYbd irs t$  ',<GHIORSfnouxyx    GHIJKLMNOPQRSTUVWXYZ[\]^_ab dirstz      !"#$%&'(,./369:;<?BEGHIJKLMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwx y}~  GHIJKLMNOPQRSTUVWXYZ[\]^bdirstz      !"#$%&'(,./369:;<?B EGHIJKLMNOPQRSTUVWXY[\]^_`abcdefghijklmnopqrstuvwx y}~   GHIJKLM(NOPQRSTUVWXYZ[\]^df h i)rstz       !"#$%&'( ,. /369:;<=?BEGHIJKLMNPQRSTUVWXYZ[\]^_`ab cdefghijklmnopqrstvwxyOz{|}~        'GHMd irs  ' ,<noyH  eGI J K L MNOQSTUVWXYZ[]disz "%'(,./3:;<?BEGUVWXYajklmnopqrs~ XMNOQU VW XYZ\^ad it    "%'(,.3;<=GHIJKLQRSTUVWXYabfghiqrsu}~tGNOPQRSTUVWXYZ[]stz   "%'(/69:;<=?BEGJKOQRSTUVWXYZafghijklmnoqrsyz{|}~ !GHbirst  ',<nouy"GMbit  ',< GOno     && !*4678 9NOQYZ             !:;<B C DEFGHIJKLMNOPQRSTUVWXYZ[&\&]&^&_&`&a&b&c&d&e&fghijklmnopqrstuvwxyz{|}~   & " '(,.3:;<? BGH I L UVWZ a bj&k&l&m&nopq r s x| ~           !*34679:NOQYZk-      ! "#$%&'()*+,-./0123456789: ; < BD E F G [\]^ijklmnopqrstuvwxyz{|}~   "%'(,./3:;<=?BEGJKQRSTUVWXYabfghinqrs}~{            !#'*/134678:NOQYZk-               !" # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 :;<B D E F G HIJKLMNOPQRSTUVWXYZ[\]^_`abcdef g h ijklmnopqrstuvwxyz{|}~        "%'(,./3:;<BEGH I JKL Q R S T UVWXYZ abf g h i jklmnop q r s wx| } ~     !#'*/134678 :NOQYZk      !:;<B D E F G H IJKLMNOPQRSTUVWXYZ[\]^_`abcdef g h ijklmnopqrstuvwxyz{|}~    " '(,.369:;<= ?BGUVWZa bjklmnop q r s wxy|~    !*34 678:NOQYZk     !:;<BCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ ` a b c d e fghijklmnopqrstuvwxyz{|}~             !"#$&'(,.3: ;<=?B GHILMNOPU V W Z[\]^_`abcdej k l m nop q r s tvwx|~         !#'*/1346 78:NOQYZk             !:;<B C DEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~   "'(,.369:;<=?BGUVWZ abjklmnop qrswx| ~     %  !*478:NOQYZk             !:;<BCDEFGHIJKLMNOPQRSTUVWXYZ[%\%]%^%_`abcdefghijklmnopqrstuvwxyz{|}~     " '(,.3:;<=? BGUVWZ a bjklmnop q r s x| ~         !#'*/1346789NOQYZdk           ! "#$%&'()*+,-./0123456789: ; < =>?@ABCDEFGH[\]^_ ` a b c d e fghijklmnopqrstuvwxyz{|}~       !"#$%&'(,./369:; <=? BEGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghij k l m nopqrstuvx|}~                !*46 7 :NOQYZk              !:;<BDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~          " '(,.3:;<? BGH I L UVWZ a bjklmnop q r s x| ~    U     $" !*46 78:NOQYZk            !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[$\$]$^$_"`"a"b"c"d"e"f g h ijklmnopqrstuvwxyz{|}~   " "'(,.3:;=?BGHIJKLQRSTZ abfghij"k"l"m"nopq r s ux| }~0$ $  $ !* 3 45678 9NOQYZ$$$$$$$$$$$$$$$$$$$$$$$"$#$$$%$&$'$($)$*$+$,$-$.$/$0$1$2$3$4$5$6$7$8$9$=>?@ABDEFG[\]^_`abcdef g h ijklmnopqrstuvwxyz{|}~          $$$ "'(,.3:;= ?BHIJKLOQ$R$S$T$UVWabf$g$h$i$jklmnoqrsu}$~   ,  !!#'*/145678 9: "#$%&'()*+,-./0123456789BDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghi!j!k!l!m!n!o!p!q!r!s!t!u!v!w!x!y!z!{!|!}!~!!!       "%(!,/369:;<= ?BEJKQRSTXYab fghijklmnopqrs}~!!! F      !#'*/146789NOQYZ  "#$%&'()*+,-./0123456789BDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~       "%'(,. 369:;<=?BG H I J K L OQRSTUVWXYabfghijklmnop qrswx}~   *     ! #'/146789NOQYZ      !"#$%&'()*+,-./0123456789:;<BDEFG[\]^_`abcdefghi j k l m n o p q r s t u v w x y z { | } ~       "'( .369:;<?BGJ K OQRSTabfghijklmnoqrsu}~        ! * 4679  !:;<=>?@ABDEFG[\]^_`abcdefghi j k l m n o p q r s t u v w x y z { | } ~          "%' ( , .3"69:;=?BG H I JKL O QRSTUVWXYabfghijklmnop qrsu}~   "    #'* /14679:NOQYZ"#$%&'()*+,-./0123456789BDEFGIJKLMNOPQRSTUVWXYZ[\]^_`abcde    "'369:;<?BJKOQRSTabfghijklmnoqrs} m       !#'* /1345679:    !" # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 :;<=>?@ABDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~        "'(,.369:;<?BGH I JKL OQ R S T abf g h i jklmnopqrsu} ~   L     !# ' */ 1 3456789:NOQYZ      "#$%&'()*+,-./0123456789BDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                                     "'(,./36 9 :;<=?BEGHIJKLOQRSTUVWabfghijklmnopqrs}~       *       !* 45678 9:    " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 BDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~         "'( , 369:;= ?BH I J K L O Q R S T UVWabf g h i jklmnopqrs} ~     B     !*456789:NOQYZ  "#$%&'()*+,-./0123456789=>?@ABDEFG[\]^_`abcdefghijklmnopqrstuvwxyz{|}~     "'(,./369:;=?BEGH I JKL OQRSTUVWabfghijklmnopqrsu}~ #8$J(K<  (  #   (( #         -               (&    ((  (                                  # #             (( (#(&?>  :"Q  - !#%''*,./"15$77)9:*IL,N^0zzABxAD+Z^~(*/226699;;>>ABDFHNQSUY[mqtvx{;      : ;2% +!!##$$6%%''***)++J,,..//112253344(55 77'99::4IL3NO&PPIQQ&RRIST<UUEVVDWWEXXDYZ&[[G\\F]]G^^Fzz< H  :H !!"-.34899:<2=ADG%HH;UZ[^_e fh+i~6*)J5( '487    .  -  !  . A! !!!"",##$$,%& ''((9**/++1,,"--$..///226699B;;#>>"AA"BB0DD0EFHI8JK7LL MN-QS UVWW=XY.[]^^__=`abb,cc!dd,ee-fh iiAjmqqrr!stvvwx@{|?}} ~9$1$>/>0"01B#"C  $    &    !!""##$&''()**-+.//001122334455 7799::'IL%NOPP:QQRR:ST,UU7VV6WW7XX6YZ[[9\\8]]9^^8ff;hh;zz,$  &  !! "9:< =ABB$DGIZ [^_efhi- ' )    2  (1 !""(#$%%&&((*)+--..#//"0233545667899::+;;==4>>??!@ABB3CDEE"FFHI JK)LL MNPPQT UWXYZZ.[`aa(bb2cefi jmpp1qsttvvwx/z{0||.}} ~*#"354!+extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttx000066400000000000000000327517241416264461600246570ustar00rootroot00000000000000 PUSHW[ ] /* 1 value pushed */ 0 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ PUSHW[ ] /* 1 value pushed */ 9 LT[ ] /* LessThan */ IF[ ] /* If */ PUSHB[ ] /* 2 values pushed */ 1 1 INSTCTRL[ ] /* SetInstrExecControl */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 511 SCANCTRL[ ] /* ScanConversionControl */ PUSHW[ ] /* 1 value pushed */ 68 SCVTCI[ ] /* SetCVTCutIn */ PUSHW[ ] /* 2 values pushed */ 9 3 SDS[ ] /* SetDeltaShiftInGState */ SDB[ ] /* SetDeltaBaseInGState */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 1 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ ROUND[01] /* Round */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 2 FDEF[ ] /* FunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 1 LOOPCALL[ ] /* LoopAndCallFunction */ POP[ ] /* PopTopStack */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 3 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ ROLL[ ] /* RollTopThreeStack */ MD[0] /* MeasureDistance */ ABS[ ] /* Absolute */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[00] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[00] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ NEG[ ] /* Negate */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ MDAP[1] /* MoveDirectAbsPt */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ ROUND[01] /* Round */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 EQ[ ] /* Equal */ IF[ ] /* If */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 64 EIF[ ] /* EndIf */ ELSE[ ] /* Else */ ROUND[01] /* Round */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 0 EQ[ ] /* Equal */ IF[ ] /* If */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 64 NEG[ ] /* Negate */ EIF[ ] /* EndIf */ EIF[ ] /* EndIf */ MSIRP[0] /* MoveStackIndirRelPt */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 4 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[10] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ PUSHB[ ] /* 1 value pushed */ 4 CINDEX[ ] /* CopyXToTopStack */ GC[0] /* GetCoordOnPVector */ DUP[ ] /* DuplicateTopStack */ ROUND[10] /* Round */ SUB[ ] /* Subtract */ ABS[ ] /* Absolute */ GT[ ] /* GreaterThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ ROLL[ ] /* RollTopThreeStack */ EIF[ ] /* EndIf */ MDAP[1] /* MoveDirectAbsPt */ MIRP[11101] /* MoveIndirectRelPt */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 5 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ LT[ ] /* LessThan */ IF[ ] /* If */ LTEQ[ ] /* LessThenOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 128 WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 64 WCVTP[ ] /* WriteCVTInPixels */ EIF[ ] /* EndIf */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ POP[ ] /* PopTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ PUSHB[ ] /* 1 value pushed */ 192 LT[ ] /* LessThan */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 192 WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ EIF[ ] /* EndIf */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 6 FDEF[ ] /* FunctionDefinition */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ ROUND[01] /* Round */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ DUP[ ] /* DuplicateTopStack */ DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ RDTG[ ] /* RoundDownToGrid */ ROUND[01] /* Round */ RTG[ ] /* RoundToGrid */ WCVTP[ ] /* WriteCVTInPixels */ PUSHB[ ] /* 1 value pushed */ 1 ADD[ ] /* Add */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 7 FDEF[ ] /* FunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 6 LOOPCALL[ ] /* LoopAndCallFunction */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 8 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 64 ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 0 EIF[ ] /* EndIf */ ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHB[ ] /* 1 value pushed */ 128 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 192 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 256 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHB[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 320 ROLL[ ] /* RollTopThreeStack */ ROLL[ ] /* RollTopThreeStack */ ELSE[ ] /* Else */ ROLL[ ] /* RollTopThreeStack */ SWAP[ ] /* SwapTopStack */ EIF[ ] /* EndIf */ DUP[ ] /* DuplicateTopStack */ PUSHW[ ] /* 1 value pushed */ 3 MINDEX[ ] /* MoveXToTopStack */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ RCVT[ ] /* ReadCVT */ PUSHW[ ] /* 1 value pushed */ 384 LT[ ] /* LessThan */ IF[ ] /* If */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ PUSHW[ ] /* 1 value pushed */ 384 SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ ELSE[ ] /* Else */ PUSHB[ ] /* 1 value pushed */ 3 CINDEX[ ] /* CopyXToTopStack */ RCVT[ ] /* ReadCVT */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ SWAP[ ] /* SwapTopStack */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ WCVTP[ ] /* WriteCVTInPixels */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 9 FDEF[ ] /* FunctionDefinition */ MPPEM[ ] /* MeasurePixelPerEm */ GTEQ[ ] /* GreaterThanOrEqual */ IF[ ] /* If */ RCVT[ ] /* ReadCVT */ WCVTP[ ] /* WriteCVTInPixels */ ELSE[ ] /* Else */ POP[ ] /* PopTopStack */ POP[ ] /* PopTopStack */ EIF[ ] /* EndIf */ ENDF[ ] /* EndFunctionDefinition */ PUSHW[ ] /* 1 value pushed */ 0 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 1 14 2 CALL[ ] /* CallFunction */ SVTCA[1] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 15 3 2 CALL[ ] /* CallFunction */ SVTCA[1] /* SetFPVectorToAxis */ PUSHW[ ] /* 8 values pushed */ 15 54 44 34 25 15 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 16 68 56 44 31 19 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 17 48 39 31 22 13 0 8 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 8 values pushed */ 1 106 86 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 2 138 112 84 60 36 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 3 84 64 52 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 4 120 98 76 52 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 5 76 62 48 34 18 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 6 98 84 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 7 51 42 33 24 14 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 8 74 60 47 34 20 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 9 68 54 44 34 22 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 10 60 48 38 28 16 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 11 54 46 36 28 16 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 12 104 84 64 46 28 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 13 37 30 23 16 10 0 8 CALL[ ] /* CallFunction */ PUSHW[ ] /* 8 values pushed */ 14 35 30 23 16 10 0 8 CALL[ ] /* CallFunction */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 18 8 7 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 0 DUP[ ] /* DuplicateTopStack */ RCVT[ ] /* ReadCVT */ RDTG[ ] /* RoundDownToGrid */ ROUND[01] /* Round */ RTG[ ] /* RoundToGrid */ WCVTP[ ] /* WriteCVTInPixels */ PUSHW[ ] /* 3 values pushed */ 63 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 64 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 111 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 160 22 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 96 24 1 DELTAC1[ ] /* DeltaExceptionC1 */ PUSHW[ ] /* 3 values pushed */ 16 24 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 112 24 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 64 24 1 DELTAC3[ ] /* DeltaExceptionC3 */ PUSHW[ ] /* 3 values pushed */ 48 26 1 DELTAC2[ ] /* DeltaExceptionC2 */ PUSHW[ ] /* 3 values pushed */ 80 26 1 DELTAC2[ ] /* DeltaExceptionC2 */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 2 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 23 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 4 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 19 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 45 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 45 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 36 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 36 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 59 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 37 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 30 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 9 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 144 6 160 6 176 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 18 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 27 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 192 32 208 32 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 32 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 18 27 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 27 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 159 36 175 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 47 39 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 9 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 22 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 46 38 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 24 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 25 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 8 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 0 36 16 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 4 7 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 63 4 79 4 95 4 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 13 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 14 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 15 3 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 4 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 17 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 53 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 15 values pushed */ 144 0 160 0 176 0 192 0 208 0 224 0 240 0 7 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 0 0 16 0 32 0 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 9 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 31 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 1 39 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 12 9 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 31 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 15 12 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 12 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 49 39 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 12 48 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 12 96 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 25 48 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 25 96 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 25 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 39 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 4 12 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 27 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 39 45 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 69 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 69 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 73 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 69 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 54 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 54 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 27 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 42 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 45 54 60 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 13 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 9 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 63 8 79 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 111 8 127 8 143 8 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 48 16 64 16 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 224 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 80 16 96 16 112 16 128 16 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 16 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 26 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 33 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 43 48 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 41 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 17 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 30 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 60 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 60 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 32 7 48 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 160 7 176 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 32 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 224 7 240 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 96 7 112 7 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 128 7 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 60 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 88 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 81 49 88 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 81 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 81 63 81 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 127 81 143 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 79 81 95 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 111 81 127 81 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 15 81 31 81 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 45 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 54 45 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 66 69 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 73 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 52 19 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 71 59 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 10 52 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 52 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 19 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 32 28 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 59 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 39 28 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 70 28 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 67 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 25 47 67 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 53 51 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 63 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 51 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 62 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 33 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 21 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 14 9 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 9 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 17 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 9 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 7 1 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 4 values pushed */ 0 6 19 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 19 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 55 66 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 255 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 159 27 175 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 55 66 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 78 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 71 78 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 40 78 71 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 25 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 10 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 32 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 207 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 64 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 6 16 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 54 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 57 61 54 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 57 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 57 112 57 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 48 57 64 57 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 58 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 58 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 58 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 207 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 64 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 6 16 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 50 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 50 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 50 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 47 50 63 50 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 49 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 50 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 15 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 8 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 16 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 24 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 207 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 8 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 8 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 28 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 18 64 18 80 18 3 DELTAP2[ ] /* DeltaExceptionP2 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 96 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 65 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 43 52 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 33 64 33 80 33 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 47 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 56 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 10 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 24 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 7 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 7 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 29 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 175 5 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 6 47 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 192 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 31 26 47 26 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 192 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 6 47 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 1 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 13 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 18 47 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 13 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 32 47 32 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 46 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 53 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 33 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 59 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 66 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 3 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 9 values pushed */ 79 3 95 3 111 3 127 3 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 16 18 32 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 71 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 71 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 39 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 71 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 50 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 39 50 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 8 50 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 23 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 0 15 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 0 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 15 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 15 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 0 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 38 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 18 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 22 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 13 8 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 19 14 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 3 values pushed */ 13 8 3 CALL[ ] /* CallFunction */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 7 values pushed */ 0 10 16 10 32 10 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 44 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 16 20 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 28 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 33 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 30 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 20 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 31 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 54 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 17 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 28 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 34 44 45 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 25 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 67 44 51 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 18 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 48 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 30 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 28 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 37 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 64 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 96 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 21 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 35 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 30 63 30 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 17 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 49 21 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 49 112 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 48 49 64 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 144 49 160 49 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 56 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 56 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 56 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 67 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 13 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 13 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 40 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 6 223 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 36 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 21 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 58 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 53 58 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 53 63 53 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 27 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 27 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 38 31 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 20 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 10 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 16 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 18 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 28 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 20 27 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 27 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 27 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 6 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 47 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 64 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 74 8 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 61 64 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 77 64 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 33 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 0 8 16 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 31 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 31 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 9 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 16 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 160 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 22 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 43 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 3 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 86 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 68 26 86 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 68 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 96 68 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 15 68 31 68 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 0 68 16 68 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 112 68 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 53 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 92 86 53 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 92 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 92 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 112 92 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 62 10 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 11 values pushed */ 112 62 128 62 144 62 160 62 176 62 5 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 11 92 62 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 18 53 68 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 44 40 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 75 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 75 68 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 48 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 59 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 74 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 56 26 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 56 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 15 56 31 56 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 96 56 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 0 56 16 56 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 80 41 74 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 80 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 80 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 48 80 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 50 10 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 11 values pushed */ 112 50 128 50 144 50 160 50 176 50 5 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 11 50 80 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 18 56 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 63 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 63 56 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 50 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 50 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 22 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 50 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 64 29 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 57 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 57 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 27 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 57 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 53 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 60 25 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 33 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 33 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 46 62 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 17 46 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 35 62 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 62 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 0 18 16 18 32 18 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 3 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 31 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 3 values pushed */ 96 11 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 144 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 58 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 21 58 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 143 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 207 10 223 10 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 9 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 14 21 58 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 31 14 47 14 63 14 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 111 14 127 14 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 52 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 68 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 19 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 4 values pushed */ 34 3 0 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 4 values pushed */ 38 3 10 4 CALL[ ] /* CallFunction */ PUSHW[ ] /* 3 values pushed */ 13 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 52 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 34 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 26 34 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 14 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 21 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 21 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 8 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 4 63 4 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 3 values pushed */ 13 5 3 CALL[ ] /* CallFunction */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 64 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 64 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 59 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 208 6 224 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 192 6 208 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 12 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 192 12 208 12 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 38 59 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 31 28 47 28 63 28 79 28 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 50 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 53 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 59 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 61 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 48 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 11 48 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 0 3 16 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 22 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 2 3 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 9 8 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 19 7 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 20 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 23 3 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 39 24 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 17 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 0 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 11 9 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 12 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 9 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 4 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 13 3 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 58 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 49 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 34 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 3 96 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 48 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 96 3 112 3 128 3 144 3 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 3 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 3 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 20 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 7 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 7 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 45 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 41 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 30 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 22 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 22 13 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 2 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 2 27 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 8 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 128 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 29 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 51 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 55 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 55 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 71 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 66 71 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 66 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 66 63 66 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 24 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 44 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 44 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 0 10 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 7 28 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 20 10 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 45 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 42 45 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 49 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 14 7 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 1 37 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 11 9 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 46 29 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 14 11 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 26 11 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 47 37 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 36 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 42 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 8 18 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 32 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 20 47 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 32 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 66 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 66 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 69 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 69 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 54 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 54 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 30 36 69 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 66 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 54 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 60 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 25 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 63 8 79 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 240 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 3 8 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 159 3 175 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 31 3 47 3 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 31 3 47 3 63 3 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 64 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 36 63 36 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 63 36 79 36 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 240 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 80 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 14 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 2 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 27 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 38 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 11 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 12 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 12 34 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 58 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 37 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 37 78 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 255 48 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 48 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 26 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 37 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 37 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 68 3 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 68 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 21 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 68 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 13 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 77 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 176 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 31 14 47 14 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 7 31 7 47 7 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 14 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 47 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 207 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 159 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 46 14 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 7 31 7 47 7 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 11 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 15 7 31 7 47 7 63 7 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 4 7 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 72 16 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 72 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 72 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 57 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 63 42 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 57 63 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 81 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 79 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 192 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 192 6 208 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 6 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 36 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 8 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 4 12 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 42 24 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 32 36 42 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 27 36 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 64 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 64 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 68 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 64 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 51 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 51 64 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 22 33 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 19 27 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 57 51 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 47 51 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 42 51 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 30 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 32 34 48 34 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 4 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 51 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 51 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 80 51 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 57 80 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 58 35 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 41 58 51 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 3 values pushed */ 70 35 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 65 70 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 1 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 10 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 41 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 8 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 29 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 60 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 60 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 55 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 37 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 10 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 16 10 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 37 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 31 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 12 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 19 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 9 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 27 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 5 2 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 36 20 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 29 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 53 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 53 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 53 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 35 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 48 26 64 26 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 96 26 112 26 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 27 35 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 63 27 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 41 32 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 55 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 23 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 41 32 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 55 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 112 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 96 0 112 0 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 6 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 22 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 45 36 46 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 30 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 31 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 21 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 26 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 2 3 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 4 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 9 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 20 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 23 7 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 24 4 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 3 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 36 10 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 8 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 8 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 8 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 33 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 21 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 11 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 7 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 31 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 11 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 3 3 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 48 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 26 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 224 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 36 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 80 36 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 36 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 47 31 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 25 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 58 25 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 58 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 58 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 29 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 41 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 16 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 6 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 80 16 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 79 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 224 16 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 7 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 4 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 95 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 127 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 79 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 159 27 175 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 255 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 27 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 27 223 27 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 14 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 55 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 55 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 67 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 67 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 65 26 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 22 65 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 9 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 45 35 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 30 57 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 58 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 26 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 35 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 55 27 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 4 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 36 4 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 13 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 27 8 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 24 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 3 values pushed */ 21 24 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 208 29 224 29 240 29 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 33 values pushed */ 0 29 16 29 32 29 48 29 64 29 80 29 96 29 112 29 128 29 144 29 160 29 176 29 192 29 208 29 224 29 240 29 16 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 0 29 1 DELTAP3[ ] /* DeltaExceptionP3 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 160 3 176 3 192 3 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 255 13 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 15 13 1 DELTAP3[ ] /* DeltaExceptionP3 */ NPUSHW[ ] /* 5 values pushed */ 239 13 255 13 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 95 13 111 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 143 13 159 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 7 values pushed */ 31 13 47 13 63 13 3 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 207 13 223 13 2 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 96 13 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 48 13 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 15 9 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 49 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 14 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 6 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 23 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 6 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 27 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 37 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 16 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 8 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 45 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 45 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 25 45 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 45 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 33 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 19 15 10 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 19 63 19 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 15 19 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 95 19 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 6 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 12 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 23 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 23 48 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 23 96 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 34 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 34 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 2 values pushed */ 30 11 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 50 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 42 30 50 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 2 values pushed */ 57 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 57 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 4 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 30 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 41 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 13 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 67 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 67 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 61 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 61 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 55 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 55 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 67 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 65 26 61 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 65 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 22 65 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 18 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 44 35 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 48 31 56 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 55 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 52 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 65 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 57 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 61 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 46 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 25 46 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 25 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 25 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 15 39 31 39 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 42 34 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 31 4 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 11 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 37 4 41 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 15 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 28 8 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 26 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 21 4 28 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 4 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 23 255 23 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 23 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 30 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 48 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 48 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 55 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 55 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 24 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 69 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 62 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 62 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 25 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 12 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 128 6 144 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 6 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 6 48 6 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 6 80 6 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 19 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 19 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 6 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 27 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 25 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 34 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 22 40 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 22 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 22 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 13 33 29 33 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 36 28 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 4 13 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 4 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 239 4 255 4 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 14 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 239 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 37 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 37 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 7 values pushed */ 0 49 16 49 32 49 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 49 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 38 49 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 35 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 42 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 21 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 7 values pushed */ 15 18 31 18 47 18 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 29 10 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 33 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 29 33 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 4 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 26 16 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 27 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 60 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 61 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 28 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 28 255 28 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 28 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 12 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 12 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 21 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 26 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 7 26 36 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 18 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 28 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 5 255 5 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 5 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 1 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 7 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 3 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 32 3 48 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 80 3 96 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 8 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 3 255 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 3 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 3 48 3 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 4 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 46 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 46 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 24 19 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 7 values pushed */ 47 34 63 34 79 34 3 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 175 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 207 34 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 143 34 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 34 12 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 22 17 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 112 32 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 10 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 3 values pushed */ 31 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 12 25 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 28 32 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 40 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 36 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 32 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 59 49 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 62 44 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 40 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 49 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 49 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 11 40 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 3 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 36 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 19 36 11 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 32 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 49 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 55 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 58 49 55 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 62 44 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 66 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 69 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 41 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 26 47 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 26 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 26 18 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 27 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 47 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 41 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 35 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 55 28 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 66 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 68 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 23 44 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 47 23 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 23 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RDTG[ ] /* RoundDownToGrid */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 24 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[11100] /* MoveDirectRelPt */ NPUSHW[ ] /* 5 values pushed */ 15 37 31 37 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 40 38 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 50 24 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 57 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 59 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 3 12 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 31 21 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 35 16 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 39 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 3 12 7 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 16 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 32 23 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 36 16 3 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 40 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 43 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 10 5 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 9 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 33 23 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 37 14 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 41 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 46 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 48 1 6 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 48 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 47 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 47 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 43 4 47 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 10 3 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 43 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 39 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 30 12 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 41 43 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 41 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 44 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 44 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 38 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 44 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 6 44 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 31 10 40 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 38 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 41 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 43 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 43 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 39 6 43 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 26 17 23 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 30 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 37 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 14 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 15 18 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 47 18 63 18 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 5 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 14 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 5 255 5 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 5 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 18 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 14 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 25 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 25 4 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 25 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 239 25 255 25 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 25 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 2 values pushed */ 8 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 17 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 13 22 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 42 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 37 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 18 28 37 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 18 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 7 values pushed */ 48 18 64 18 80 18 3 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 46 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 9 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 3 8 27 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 3 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 4 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ NPUSHW[ ] /* 9 values pushed */ 15 5 31 5 47 5 63 5 4 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 12 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 15 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 23 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 9 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 9 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 15 9 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 9 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 10 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 27 23 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 16 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 8 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 5 25 8 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 30 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 35 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 14 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 27 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 27 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 1 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 14 1 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 128 8 144 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 32 8 48 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 8 80 8 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 27 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 26 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 8 26 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 12 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 34 13 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 31 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 31 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 0 8 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 79 0 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 16 7 15 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 23 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 31 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 32 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 38 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 0 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 7 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 7 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 1 7 30 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 1 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 34 1 50 1 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 1 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 128 1 144 1 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 5 values pushed */ 64 1 80 1 2 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 6 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 14 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 15 6 14 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 31 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 34 1 22 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 38 1 31 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ RUTG[ ] /* RoundUpToGrid */ PUSHW[ ] /* 1 value pushed */ 38 MDAP[1] /* MoveDirectAbsPt */ RTG[ ] /* RoundToGrid */ NPUSHW[ ] /* 5 values pushed */ 32 38 48 38 2 DELTAP1[ ] /* DeltaExceptionP1 */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 32 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 32 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 32 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 4 32 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 176 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 224 12 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 12 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 20 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 4 32 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 11 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 11 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 24 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 24 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 37 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 37 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 17 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 17 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ NPUSHW[ ] /* 19 values pushed */ 0 0 16 0 32 0 48 0 64 0 80 0 96 0 112 0 128 0 9 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 28 3 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 28 24 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 24 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 23 24 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 34 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 34 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 35 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 36 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 38 5 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 40 10 38 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 40 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 39 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 15 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 15 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 15 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 2 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 8 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 23 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 23 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 19 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 19 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 6 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 14 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 13 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 17 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 20 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 10 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 10 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 16 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 16 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 39 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 39 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 3 values pushed */ 2 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 2 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 0 2 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 1 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 10 39 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ PUSHW[ ] /* 2 values pushed */ 5 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 10 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 9 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 14 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 29 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 30 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 1 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 37 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 39 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 40 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 43 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 44 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 47 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 35 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 48 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 51 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 29 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 21 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 21 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 29 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 2 5 29 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 4 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 3 values pushed */ 17 13 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 17 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 12 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 22 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 18 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 30 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 30 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 20 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 15 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 22 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 21 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 6 15 21 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 9 values pushed */ 0 6 16 6 32 6 48 6 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 7 values pushed */ 128 6 144 6 160 6 3 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 3 values pushed */ 19 22 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 21 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 25 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 19 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 26 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 30 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 29 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 33 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 12 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 12 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 35 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 35 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 12 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 4 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 4 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 127 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 47 4 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 15 4 1 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 3 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 8 11 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 8 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 5 values pushed */ 47 8 63 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 9 values pushed */ 192 8 208 8 224 8 240 8 4 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 0 8 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 5 values pushed */ 144 8 160 8 2 DELTAP1[ ] /* DeltaExceptionP1 */ PUSHW[ ] /* 2 values pushed */ 7 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 11 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 15 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 16 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 19 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 23 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 8 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 24 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 7 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 27 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 4 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 28 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 3 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 31 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 32 MDRP[10000] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 5 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 5 26 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 13 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 13 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 8 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 0 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 2 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 5 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 4 MDRP[11100] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 2 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 7 MDRP[10000] /* MoveDirectRelPt */ PUSHW[ ] /* 1 value pushed */ 13 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 1 value pushed */ 10 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 28 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 28 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 22 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 22 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 28 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 6 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 6 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 0 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 0 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 25 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 12 6 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 6 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 15 1 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 24 6 25 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 34 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 3 values pushed */ 35 15 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 42 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 42 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 36 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 36 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 42 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 11 6 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 3 values pushed */ 29 42 0 SRP1[ ] /* SetRefPoint1 */ SRP2[ ] /* SetRefPoint2 */ IP[ ] /* InterpolatePts */ PUSHW[ ] /* 1 value pushed */ 29 MDAP[1] /* MoveDirectAbsPt */ NPUSHW[ ] /* 3 values pushed */ 239 29 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 127 29 1 DELTAP1[ ] /* DeltaExceptionP1 */ NPUSHW[ ] /* 3 values pushed */ 31 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ NPUSHW[ ] /* 3 values pushed */ 143 29 1 DELTAP2[ ] /* DeltaExceptionP2 */ PUSHW[ ] /* 1 value pushed */ 22 MDRP[11100] /* MoveDirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 24 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 18 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ SVTCA[0] /* SetFPVectorToAxis */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 20 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 20 28 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 1 value pushed */ 0 RCVT[ ] /* ReadCVT */ IF[ ] /* If */ PUSHW[ ] /* 1 value pushed */ 14 MDAP[1] /* MoveDirectAbsPt */ ELSE[ ] /* Else */ PUSHW[ ] /* 2 values pushed */ 14 22 MIAP[0] /* MoveIndirectAbsPt */ EIF[ ] /* EndIf */ PUSHW[ ] /* 2 values pushed */ 0 2 MIRP[10100] /* MoveIndirectRelPt */ PUSHW[ ] /* 1 value pushed */ 20 SRP0[ ] /* SetRefPoint0 */ PUSHW[ ] /* 2 values pushed */ 7 2 MIRP[10100] /* MoveIndirectRelPt */ IUP[0] /* InterpolateUntPts */ IUP[1] /* InterpolateUntPts */ Copyright 2020 IBM Corp. All rights reserved. IBM Plex Serif Text Regular IBM;IBMPlexSerif-Text;2.006;2020 IBM Plex Serif Text Version 2.006 2020 IBMPlexSerif-Text IBM Plex¨ is a trademark of IBM Corp, registered in many jurisdictions worldwide. Bold Monday Mike Abbink, Paul van der Laan, Pieter van Rosmalen http://www.boldmonday.com http://www.ibm.com This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL IBM Plex Serif Text How razorback-jumping frogs can level six piqued gymnasts! Copyright 2020 IBM Corp. All rights reserved. IBM Plex Serif Text Regular IBM;IBMPlexSerif-Text;2.006;2020 IBM Plex Serif Text Version 2.006 2020 IBMPlexSerif-Text IBM Plex® is a trademark of IBM Corp, registered in many jurisdictions worldwide. Bold Monday Mike Abbink, Paul van der Laan, Pieter van Rosmalen http://www.boldmonday.com http://www.ibm.com This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL IBM Plex Serif Text How razorback-jumping frogs can level six piqued gymnasts! extractor-0.5.0/tests/data/ibm_plex/IBM Plex Serif-Text.vfb000066400000000000000000025526141416264461600234040ustar00rootroot00000000000000WLF10,  .notdef.nullCRspacea a.alt01bcd e f g g.alt01 g.alt02hijklmnopqrstuvwxy z!A"B#C$D%E&F'G(H)I*J+K,L-M.N/O0P1Q2R3S4T5U6V7W8X9Y:Z;zero <zero.alt01 =zero.alt02>one?two@threeAfourBfiveCsixDsevenEeightFnine GampersandHatIhyphen JsofthyphenKendashLemdash MunderscoreNperiod OellipsisPcolonQcomma Rsemicolon Squotesingle Tquotedbl Uquoteleft VquoterightWquotedblleftXquotedblrightYquotesinglbaseZquotedblbase[guilsinglleft\guilsinglright]guillemotleft^guillemotright _exclamdown`exclamaquestiondown bquestion cparenleft dparenright ebracketleftfbracketright gbraceleft hbracerightislash jbackslash kfraction lpercent mperthousandnbar obrokenbar psection qparagraph rcopyright sregistered ttrademark uordfemininevordmasculinewdegreexprime yprimedbl zasterisk{dagger |daggerdbl }numbersign ~asciicircum asciitildeplusminus plusminus multiplydivideequal approxequal notequalless greater lessequalgreaterequalperiodcenteredbullet lozenge logicalnot radical integral infinity estimatedlitre numerosign partialdiff currencycentEuroflorin sterlingdollaryenbahtcoloncurrencyliranairarupeewonsheqeldongkiptugrikpeso guarani hryvniaceditenge rupeeindian liraturkishruble bitcoinfiflaacuteabreve acircumflex adieresis adotbelowagraveahook amacron aogonekaring aringacuteatilde abreveacuteabrevedotbelow abrevegrave abrevehook abrevetildeacircumflexacuteacircumflexdotbelowacircumflexgraveacircumflexhookacircumflextildeaacute.alt01abreve.alt01acircumflex.alt01adieresis.alt01adotbelow.alt01agrave.alt01 ahook.alt01amacron.alt01aogonek.alt01 aring.alt01aringacute.alt01atilde.alt01abreveacute.alt01abrevedotbelow.alt01abrevegrave.alt01abrevehook.alt01abrevetilde.alt01acircumflexacute.alt01acircumflexdotbelow.alt01acircumflexgrave.alt01acircumflexhook.alt01acircumflextilde.alt01ae aeacutecacuteccaron ccedilla ccircumflex cdotaccentdcarondcroatetheacuteebreveecaron ecircumflex edieresis edotaccent edotbelowegraveehook emacron eogoneketildeecircumflexacuteecircumflexdotbelowecircumflexgraveecircumflexhookecircumflextildeschwagbreve gcircumflexgcommaaccent gdotaccentgbreve.alt01gcircumflex.alt01gcommaaccent.alt01gdotaccent.alt01hbar hcircumflex dotlessiiacuteibreve icircumflex idieresis idotbelow igrave ihook imacron iogonekitildeij ijacute dotlessjjacute jcircumflexkcommaaccentkgreenlandiclacutelcaronlcommaaccentldotlslashnacutencaronncommaaccentntilde napostrophe!eng"oacute#obreve $ocircumflex %odieresis &odotbelow'ograve(ohook)ohungarumlaut *omacron+oslash ,oslashacute-otilde.ohorn /ohornacute0ohorndotbelow 1ohorngrave 2ohornhook 3ohorntilde4ocircumflexacute5ocircumflexdotbelow6ocircumflexgrave7ocircumflexhook8ocircumflextilde9oe:racute;rcaron<rcommaaccent=sacute>scaron ?scedilla @scircumflexAscommaaccent BgermandblsCgermandbls.alt01DtbarEtcaronFtcommaaccent GtcedillaHthornIuacuteJubreve Kucircumflex Ludieresis MudotbelowNugraveOuhookPuhungarumlaut Qumacron RuogonekSuringTutildeUuhorn VuhornacuteWuhorndotbelow Xuhorngrave Yuhornhook Zuhorntilde[wacute \wcircumflex ]wdieresis^wgrave_yacute `ycircumflex aydieresis bydotbelowcygravedyhookeytildefzacutegzcaron hzdotaccentiAacutejAbreve kAcircumflex lAdieresis mAdotbelownAgraveoAhook pAmacron qAogonekrAring sAringacutetAtilde uAbreveacutevAbrevedotbelow wAbrevegrave xAbrevehook yAbrevetildezAcircumflexacute{Acircumflexdotbelow|Acircumflexgrave}Acircumflexhook~AcircumflextildeAE AEacuteCacuteCcaron Ccedilla Ccircumflex CdotaccentDcaronDcroatEthEacuteEbreveEcaron Ecircumflex Edieresis Edotaccent EdotbelowEgraveEhook Emacron EogonekEtildeEcircumflexacuteEcircumflexdotbelowEcircumflexgraveEcircumflexhookEcircumflextildeSchwaGbreve GcircumflexGcommaaccent GdotaccentHbar HcircumflexIacuteIbreve Icircumflex Idieresis Idotaccent IdotbelowIgraveIhook Imacron IogonekItildeIJ IJacuteJacute JcircumflexKcommaaccentLacuteLcaronLcommaaccentLdotLslashNacuteNcaronNcommaaccentNtildeEngOacuteObreve Ocircumflex Odieresis OdotbelowOgraveOhookOhungarumlaut OmacronOslash OslashacuteOtildeOhorn OhornacuteOhorndotbelow Ohorngrave Ohornhook OhorntildeOcircumflexacuteOcircumflexdotbelowOcircumflexgraveOcircumflexhookOcircumflextildeOERacuteRcaronRcommaaccentSacuteScaron Scedilla ScircumflexScommaaccent GermandblsTbarTcaronTcommaaccent TcedillaThornUacuteUbreve Ucircumflex Udieresis UdotbelowUgraveUhookUhungarumlaut Umacron UogonekUringUtildeUhorn UhornacuteUhorndotbelow Uhorngrave Uhornhook UhorntildeWacute Wcircumflex WdieresisWgraveYacute Ycircumflex Ydotbelow YdieresisYgraveYhookYtildeZacuteZcaron ZdotaccentmuDelta product summationOmegapi uni0430uni0430.alt01 uni0431 uni0432 uni0433 uni0434 uni0435 uni0436 uni0437 uni0438 uni0439 uni043A uni043B uni043C uni043D uni043E uni043F uni0440 uni0441 uni0442 uni0443 uni0444 uni0445 uni0446 uni0447 uni0448 !uni0449 "uni044A #uni044B $uni044C %uni044D &uni044E 'uni044F (uni0410 )uni0411 *uni0412 +uni0413 ,uni0414 -uni0415 .uni0416 /uni0417 0uni0418 1uni0419 2uni041A 3uni041B 4uni041C 5uni041D 6uni041E 7uni041F 8uni0420 9uni0421 :uni0422 ;uni0423 <uni0424 =uni0425 >uni0426 ?uni0427 @uni0428 Auni0429 Buni042A Cuni042B Duni042C Euni042D Funi042E Guni042F Huni04D3 Iuni04D1Juni04D3.alt01Kuni04D1.alt01 Luni04D5 Muni0453 Nuni0491 Ouni0493 Puni0495 Quni0450 Runi0451 Suni04D7 Tuni0454 Uuni04DD Vuni04C2 Wuni0497 Xuni04DF Yuni0499 Zuni04CF [uni04E5 \uni045D ]uni04E3 ^uni045C _uni049B `uni049D auni04A1 buni0459 cuni04A3 duni045A euni04A5 funi04E7 guni0473 huni04E9 iuni04AB juni04EF kuni04F1 luni04F3 muni045E nuni04AF ouni04B1 puni04B3 quni04F5 runi04B7 suni04B9 tuni04F9 uuni0455 vuni045F wuni0456 xuni0457 yuni0458 zuni0452 {uni045B |uni04BB }uni04D9 ~uni04D2 uni04D0 uni04D4 uni0403 uni0490 uni0492 uni0494 uni0400 uni0401 uni04D6 uni0404 uni04DC uni04C1 uni0496 uni04DE uni0498 uni04C0 uni04E4 uni040D uni04E2 uni040C uni049A uni049C uni04A0 uni0409 uni04A2 uni040A uni04A4 uni04E6 uni0472 uni04E8 uni04AA uni04EE uni04F0 uni04F2 uni040E uni04AE uni04B0 uni04B2 uni04F4 uni04B6 uni04B8 uni04F8 uni0405 uni040F uni0406 uni0407 uni0408 uni0402 uni040B uni04BA uni04D8zerosuperior onesuperior twosuperiorthreesuperiorfoursuperiorfivesuperior sixsuperiorsevensuperioreightsuperiorninesuperiorzeroinferior oneinferior twoinferiorthreeinferiorfourinferiorfiveinferior sixinferiorseveninferioreightinferiornineinferior onehalf uni2153 uni2154 onequarterthreequarters uni2155 uni2156 uni2157 uni2158 uni2159 uni215A uni2150 uni215B uni215C uni215D uni215E uni2151 checkmark crossmark arrowleft arrowup arrowdown arrowright arrowupleftarrowuprightarrowdownleftarrowdownrightarrowupleftcornerarrowdownleftcornerarrowleftupcornerarrowrightupcornerarrowleftdowncornerarrowrightdowncornerarrowuprightcornerarrowdownrightcornerarrowleftarrowrightarrowrightarrowleftarrowleftright arrowupdownarrowdowncounterclockhalfarrowdownclockhalfarrowhookleftarrowhookrightarrowupleftcounterclockarrowuprightclocktilde tilde.alt01macron dotaccent dieresishungarumlautacutegrave circumflexcaronbreve breve.cyrlring ringacutecommaturnedtop caronslovak cedillaogonek tildecomb macroncombdotaccentcombdieresiscomb hungarumlautcomb acutecomb gravecomb circumflexcomb caroncomb brevecomb ringcomb hookcombcommaturnedtopcombcaronslovakcomb horncomb cedillacombdotbelowcombcommabelowcomb ogonekcomb breveacute brevegrave brevehook brevetildedieresisacutedieresiscarondieresisgravecircumflexacute circumflexbreve!circumflexgrave"circumflexhook#dieresismacron$circumflextilde %tilde.case&tilde.alt01.case 'macron.case(dotaccent.case)dieresis.case*hungarumlaut.case +acute.case ,grave.case-circumflex.case .caron.case /breve.case0breve.cyrl_case 1ring.case2ringacute.case3hookcomb.case4breveacute.case5brevegrave.case6brevehook.case7brevetilde.case8dieresisacute.case9dieresiscaron.case:dieresisgrave.case;circumflexacute.case<circumflexbreve.case=circumflexgrave.case>circumflexhook.case?dieresismacron.case@circumflextilde.case Anbspace Bibmlogo07 CfcclogoDcelogoIBMPlexSerif-Text?2.6IBM Plex Serif TextIBM Plex SerifIBM Plex Serif IBM Plex Serif TextDIBMPlexSerif TextMedium)Medium (normal)-This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL.http://scripts.sil.org/OFL -Copyright 2020 IBM Corp. All rights reserved.%RIBM Plex® is a trademark of IBM Corp, registered in many jurisdictions worldwide.&3Mike Abbink, Paul van der Laan, Pieter van Rosmalen'http://www.ibm.com(http://www.boldmonday.com Bold Monday 0^ hVersion 2.006 2020i IBM;IBMPlexSerif-Text;2.006;2020gTextqTextstaIBMmPnljkoBE, @$# 9U 3456789:|;$?@APBCD EPFGHqIJKLMNpOPQR\S  !%*.26:CKX  !%*.26:CKT 2G˧흭ɧߙǡߕØ stem_seriflc_thinlc_thick߹lc_mid triangleuc_stemlogo_celogo_fccarrowsuc_thick uc_thickestlc_cyrl*spur4uc_SpurX: 103X: 81X: 116_inf_topxheightNcapheightxslashesascenderbaseline\descenderޑsup_boto; PD0Dr ث ﹋ ث ﹌ث  ث      ƽƽ  ƽƽث  ث      ث <ث   𹒎ث Bث   𹓌      ź  ź  ź ź $  ׫ ܫūźט$  ׫ ܫūźיźיźכث 񛎌ث 񜌋            up(:How razorback-jumping frogs can level six piqued gymnasts! com.type-invaders.fontnaming.macfam IBM Plex Serif com.type-invaders.fontnaming.macstyle Text com.type-invaders.fontnaming.winfam IBM Plex Serif Text com.type-invaders.fontnaming.winstyle Regular # ---------------- # LANGUAGE SYSTEMS # ---------------- languagesystem DFLT dflt; # Default languagesystem latn dflt; # Latin default languagesystem cyrl dflt; # Cyrillic default # -------------- # GLOBAL CLASSES # -------------- @lca_dflt = [a aacute abreve acircumflex adieresis adotbelow agrave ahook amacron aogonek aring aringacute atilde abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde]; # 23 items @lca_alt1 = [a.alt01 aacute.alt01 abreve.alt01 acircumflex.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aogonek.alt01 aring.alt01 aringacute.alt01 atilde.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01]; # 23 items @lca_cyrl_dflt = [uni0430 uni04D3 uni04D1]; # 3 items @lca_cyrl_alt1 = [uni0430.alt01 uni04D3.alt01 uni04D1.alt01]; # 3 items @lcg_dflt = [g gbreve gcircumflex gcommaaccent gdotaccent]; # 5 items @lcg_alt1 = [g.alt01 gbreve.alt01 gcircumflex.alt01 gcommaaccent.alt01 gdotaccent.alt01]; # 5 items @numbers_dflt = [zero one two three four five six seven eight nine]; # 10 items @numbers_sups = [zerosuperior onesuperior twosuperior threesuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior]; # 10 items @numbers_sinf = [zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior]; # 10 items feature aalt { sub a from [a.alt01]; # 1 glyph(s) sub g from [g.alt01 g.alt02]; # 2 glyph(s) sub zero from [zero.alt01 zero.alt02]; # 2 glyph(s) sub aacute from [aacute.alt01]; # 1 glyph(s) sub abreve from [abreve.alt01]; # 1 glyph(s) sub acircumflex from [acircumflex.alt01]; # 1 glyph(s) sub adieresis from [adieresis.alt01]; # 1 glyph(s) sub adotbelow from [adotbelow.alt01]; # 1 glyph(s) sub agrave from [agrave.alt01]; # 1 glyph(s) sub ahook from [ahook.alt01]; # 1 glyph(s) sub amacron from [amacron.alt01]; # 1 glyph(s) sub aogonek from [aogonek.alt01]; # 1 glyph(s) sub aring from [aring.alt01]; # 1 glyph(s) sub aringacute from [aringacute.alt01]; # 1 glyph(s) sub atilde from [atilde.alt01]; # 1 glyph(s) sub abreveacute from [abreveacute.alt01]; # 1 glyph(s) sub abrevedotbelow from [abrevedotbelow.alt01]; # 1 glyph(s) sub abrevegrave from [abrevegrave.alt01]; # 1 glyph(s) sub abrevehook from [abrevehook.alt01]; # 1 glyph(s) sub abrevetilde from [abrevetilde.alt01]; # 1 glyph(s) sub acircumflexacute from [acircumflexacute.alt01]; # 1 glyph(s) sub acircumflexdotbelow from [acircumflexdotbelow.alt01]; # 1 glyph(s) sub acircumflexgrave from [acircumflexgrave.alt01]; # 1 glyph(s) sub acircumflexhook from [acircumflexhook.alt01]; # 1 glyph(s) sub acircumflextilde from [acircumflextilde.alt01]; # 1 glyph(s) sub gbreve from [gbreve.alt01]; # 1 glyph(s) sub gcircumflex from [gcircumflex.alt01]; # 1 glyph(s) sub gcommaaccent from [gcommaaccent.alt01]; # 1 glyph(s) sub gdotaccent from [gdotaccent.alt01]; # 1 glyph(s) sub germandbls from [germandbls.alt01]; # 1 glyph(s) sub uni0430 from [uni0430.alt01]; # 1 glyph(s) sub uni04D3 from [uni04D3.alt01]; # 1 glyph(s) sub uni04D1 from [uni04D1.alt01]; # 1 glyph(s) sub tilde from [tilde.alt01 tilde.case tilde.alt01.case]; # 3 glyph(s) sub macron from [macron.case]; # 1 glyph(s) sub dotaccent from [dotaccent.case]; # 1 glyph(s) sub dieresis from [dieresis.case]; # 1 glyph(s) sub hungarumlaut from [hungarumlaut.case]; # 1 glyph(s) sub acute from [acute.case]; # 1 glyph(s) sub grave from [grave.case]; # 1 glyph(s) sub circumflex from [circumflex.case]; # 1 glyph(s) sub caron from [caron.case]; # 1 glyph(s) sub breve from [breve.cyrl breve.case breve.cyrl_case]; # 3 glyph(s) sub ring from [ring.case]; # 1 glyph(s) sub ringacute from [ringacute.case]; # 1 glyph(s) sub hookcomb from [hookcomb.case]; # 1 glyph(s) sub breveacute from [breveacute.case]; # 1 glyph(s) sub brevegrave from [brevegrave.case]; # 1 glyph(s) sub brevehook from [brevehook.case]; # 1 glyph(s) sub brevetilde from [brevetilde.case]; # 1 glyph(s) sub dieresisacute from [dieresisacute.case]; # 1 glyph(s) sub dieresiscaron from [dieresiscaron.case]; # 1 glyph(s) sub dieresisgrave from [dieresisgrave.case]; # 1 glyph(s) sub circumflexacute from [circumflexacute.case]; # 1 glyph(s) sub circumflexbreve from [circumflexbreve.case]; # 1 glyph(s) sub circumflexgrave from [circumflexgrave.case]; # 1 glyph(s) sub circumflexhook from [circumflexhook.case]; # 1 glyph(s) sub dieresismacron from [dieresismacron.case]; # 1 glyph(s) sub circumflextilde from [circumflextilde.case]; # 1 glyph(s) } aalt; feature ordn { # ordinals sub [a o] by [ordfeminine ordmasculine]; } ordn; feature frac { # fractions sub @numbers_dflt by @numbers_sups; sub [slash] by fraction; sub fraction @numbers_sups' by @numbers_sinf; sub @numbers_sinf @numbers_sups' by @numbers_sinf; } frac; feature numr { # numerators sub @numbers_dflt by @numbers_sups; } numr; feature dnom { # denominators sub @numbers_dflt by @numbers_sinf; } dnom; feature sups { # superiors sub @numbers_dflt by @numbers_sups; } sups; feature sinf { # inferiors sub @numbers_dflt by @numbers_sinf; } sinf; feature zero { # slashed zero sub zero by zero.alt01; } zero; feature ss01 { featureNames { name 3 1 0x0409 "simple lowercase a"; # Win / Unicode / English US name 1 0 0 "simple lowercase a"; # Mac / Roman / English }; # stylistic set 1 - single storey a sub @lca_dflt by @lca_alt1; sub @lca_cyrl_dflt by @lca_cyrl_alt1; } ss01; feature ss02 { featureNames { name 3 1 0x0409 "simple lowercase g"; # Win / Unicode / English US name 1 0 0 "simple lowercase g"; # Mac / Roman / English }; # stylistic set 2 - single storey g sub @lcg_dflt by @lcg_alt1; } ss02; feature ss03 { featureNames { name 3 1 0x0409 "slashed number zero"; # Win / Unicode / English US name 1 0 0 "slashed number zero"; # Mac / Roman / English }; # slashed zero sub zero by zero.alt01; } ss03; feature ss04 { featureNames { name 3 1 0x0409 "dotted number zero"; # Win / Unicode / English US name 1 0 0 "dotted number zero"; # Mac / Roman / English }; # plain zero sub zero by zero.alt02; } ss04; feature ss05 { featureNames { name 3 1 0x0409 "alternate lowercase eszett"; # Win / Unicode / English US name 1 0 0 "alternate lowercase eszett"; # Mac / Roman / English }; # alternative german eszett sub germandbls by germandbls.alt01; } ss05; feature salt { # stylistic alternates - all stylistic sets combined sub @lca_dflt by @lca_alt1; sub @lca_cyrl_dflt by @lca_cyrl_alt1; sub @lcg_dflt by @lcg_alt1; sub zero by zero.alt02; sub germandbls by germandbls.alt01; } salt; feature liga { sub f i by fi; sub f l by fl; } liga; feature ccmp { # glyph composition/decomposition @uc_basic = [A AE Aogonek B C Ccedilla D E Eogonek F G H I Iogonek J K L M N O OE Ohorn Oslash P Q R S Schwa T U Uhorn Uogonek V W X Y Z]; # 37 glyphs @acc_comb_top = [acutecomb breveacute brevecomb brevegrave brevehook brevetilde caroncomb caronslovakcomb circumflexacute circumflexbreve circumflexcomb circumflexgrave circumflexhook circumflextilde commaturnedtopcomb dieresisacute dieresiscaron dieresiscomb dieresisgrave dieresismacron dotaccentcomb gravecomb hookcomb horncomb hungarumlautcomb macroncomb ringcomb tildecomb]; # 28 glyphs @acc_comb_dflt = [breveacute brevegrave brevehook brevetilde circumflexacute circumflexbreve circumflexgrave circumflexhook circumflextilde dieresisacute dieresiscaron dieresisgrave dieresismacron hookcomb]; # 14 glyphs @acc_comb_case = [breveacute.case brevegrave.case brevehook.case brevetilde.case circumflexacute.case circumflexbreve.case circumflexgrave.case circumflexhook.case circumflextilde.case dieresisacute.case dieresiscaron.case dieresisgrave.case dieresismacron.case hookcomb.case]; # 14 glyphs lookup nonContextSubs { sub brevecomb acutecomb by breveacute; sub brevecomb gravecomb by brevegrave; sub brevecomb hookcomb by brevehook; sub brevecomb tildecomb by brevetilde; sub circumflexcomb acutecomb by circumflexacute; sub circumflexcomb gravecomb by circumflexgrave; sub circumflexcomb hookcomb by circumflexhook; sub circumflexcomb tildecomb by circumflextilde; sub circumflexcomb brevecomb by circumflexbreve; sub dieresiscomb acutecomb by dieresisacute; sub dieresiscomb caroncomb by dieresiscaron; sub dieresiscomb gravecomb by dieresisgrave; sub dieresiscomb macroncomb by dieresismacron; } nonContextSubs; lookup contextSubs { sub [L d l t] caroncomb' by caronslovakcomb; # /Lcaron /dcaron /lcaron /tcaron sub g commabelowcomb' by commaturnedtopcomb; # /gcommaaccent sub i' @acc_comb_top by dotlessi; sub j' @acc_comb_top by dotlessj; sub @uc_basic @acc_comb_dflt' by @acc_comb_case; # case accents } contextSubs; } ccmp; feature kern { # Created: Thu Dec 21 18:25:48 2017 # PS Name: IBMPlexSerif-Text # MM Inst: IBM Plex Serif Text # MinKern: +/- 1 inclusive # exported from Robofont @MMK_L_cyr_lc_acyrillic = [uni0430 uni04D1 uni04D3]; @MMK_L_cyr_lc_acyrillic.alt01 = [uni0430.alt01 uni04D1.alt01 uni04D3.alt01]; @MMK_L_cyr_lc_decyrillic = [uni0434 uni0446 uni0449 uni04A3 uni04B7]; @MMK_L_cyr_lc_encyrillic = [uni0438 uni0439 uni043B uni043C uni043D uni043F uni0447 uni0448 uni044B uni044F uni045D uni045F uni04B9 uni04E3 uni04E5 uni04F5 uni04F9]; @MMK_L_cyr_lc_escyrillic = [uni0441 uni04AB]; @MMK_L_cyr_lc_gecyrillic = [uni0433 uni0453 uni0491 uni04A5]; @MMK_L_cyr_lc_icyrillic = [uni0456 uni0457]; @MMK_L_cyr_lc_jecyrillic = [uni0435 uni0450 uni0451 uni04D5 uni04D7]; @MMK_L_cyr_lc_kacyrillic = [uni0436 uni043A uni045C uni049D uni04A1 uni04C2 uni04DD]; @MMK_L_cyr_lc_kadescendercyrillic = [uni0497 uni049B]; @MMK_L_cyr_lc_ocyrillic = [uni0431 uni043E uni044D uni044E uni0473 uni04D9 uni04E7 uni04E9]; @MMK_L_cyr_lc_shhacyrillic = [uni045B uni04BB]; @MMK_L_cyr_lc_softsigncyrillic = [uni044A uni044C uni0459 uni045A]; @MMK_L_cyr_lc_ucyrillic = [uni0443 uni045E uni04EF uni04F1 uni04F3]; @MMK_L_cyr_lc_vecyrillic = [uni0432 uni0437 uni0499 uni04DF]; @MMK_L_cyr_uc_Acyrillic = [uni0410 uni04D0 uni04D2]; @MMK_L_cyr_uc_Decyrillic = [uni0414 uni0426 uni0429 uni04A2 uni04B6]; @MMK_L_cyr_uc_Encyrillic = [uni0406 uni0407 uni040D uni040F uni0418 uni0419 uni041B uni041C uni041D uni041F uni0427 uni0428 uni042B uni042F uni04B8 uni04C0 uni04E2 uni04E4 uni04F4 uni04F8]; @MMK_L_cyr_uc_Escyrillic = [uni0421 uni04AA]; @MMK_L_cyr_uc_Gecyrillic = [uni0403 uni0413 uni0490 uni04A4]; @MMK_L_cyr_uc_Jecyrillic = [uni0400 uni0401 uni0415 uni04D4 uni04D6]; @MMK_L_cyr_uc_Kacyrillic = [uni040C uni0416 uni041A uni049C uni04A0 uni04C1 uni04DC]; @MMK_L_cyr_uc_Kadescendercyrillic = [uni0496 uni049A]; @MMK_L_cyr_uc_Ocyrillic = [uni041E uni042D uni042E uni0472 uni04D8 uni04E6 uni04E8]; @MMK_L_cyr_uc_Softsigncyrillic = [uni0409 uni040A uni042A uni042C]; @MMK_L_cyr_uc_Tshecyrillic = [uni040B uni04BA]; @MMK_L_cyr_uc_Ucyrillic = [uni040E uni0423 uni04EE uni04F0 uni04F2]; @MMK_L_cyr_uc_Zecyrillic = [uni0412 uni0417 uni0498 uni04DE]; @MMK_L_inp_colon = [colon semicolon]; @MMK_L_inp_foot = [quotedbl quotesingle asterisk]; @MMK_L_inp_guill = [guilsinglleft guillemotleft]; @MMK_L_inp_guilr = [guillemotright guilsinglright]; @MMK_L_inp_hyph = [hyphen endash emdash softhyphen]; @MMK_L_inp_period = [ellipsis comma period quotesinglbase quotedblbase]; @MMK_L_inp_quotel = [quotedblleft quoteleft]; @MMK_L_inp_quoter = [quoteright quotedblright]; @MMK_L_lc_a = [acircumflexgrave aring abreveacute abrevetilde agrave acircumflextilde abreve atilde adotbelow adieresis aacute acircumflexacute abrevegrave acircumflexhook abrevehook acircumflex a ahook acircumflexdotbelow aringacute amacron abrevedotbelow aogonek]; @MMK_L_lc_b = [p thorn b]; @MMK_L_lc_c = [c cdotaccent cacute ccaron ccircumflex ccedilla]; @MMK_L_lc_dcaron = [lcaron dcaron]; @MMK_L_lc_e = [ecaron edieresis egrave eogonek e etilde ecircumflexacute oe ebreve aeacute ecircumflexhook ehook ecircumflex edotbelow edotaccent eacute ae ecircumflextilde ecircumflexdotbelow ecircumflexgrave emacron]; @MMK_L_lc_f = [f]; @MMK_L_lc_g = [gdotaccent gbreve g.alt02 g gcircumflex gcommaaccent]; @MMK_L_lc_i = [idotbelow iacute iogonek i ihook igrave itilde icircumflex imacron ibreve fi idieresis]; @MMK_L_lc_j = [gdotaccent.alt01 g.alt01 gcircumflex.alt01 eng jacute gcommaaccent.alt01 j gbreve.alt01 q ij jcircumflex dotlessj dotlessi ijacute]; @MMK_L_lc_k = [k kgreenlandic kcommaaccent]; @MMK_L_lc_l = [d lcommaaccent l lacute lslash fl]; @MMK_L_lc_n = [napostrophe nacute h m n ntilde ncommaaccent hcircumflex ncaron hbar]; @MMK_L_lc_o = [ocircumflexgrave ocircumflextilde ocircumflexdotbelow ohook odotbelow odieresis ohungarumlaut ograve ocircumflex ocircumflexhook omacron o otilde schwa oslash oslashacute obreve ocircumflexacute oacute]; @MMK_L_lc_ohorn = [ohornhook ohornacute ohorngrave ohorntilde ohorndotbelow ohorn]; @MMK_L_lc_r = [racute rcommaaccent r rcaron]; @MMK_L_lc_s = [scircumflex scommaaccent scedilla s sacute scaron]; @MMK_L_lc_t = [tcommaaccent tcaron t tcedilla tbar]; @MMK_L_lc_u = [udieresis uhungarumlaut abrevedotbelow.alt01 acircumflex.alt01 uring ugrave abrevegrave.alt01 aogonek.alt01 adotbelow.alt01 aacute.alt01 atilde.alt01 abreveacute.alt01 acircumflexacute.alt01 abrevetilde.alt01 utilde aringacute.alt01 uogonek ucircumflex a.alt01 abreve.alt01 uhook umacron uacute aring.alt01 adieresis.alt01 acircumflexgrave.alt01 acircumflextilde.alt01 acircumflexdotbelow.alt01 amacron.alt01 ahook.alt01 abrevehook.alt01 ubreve udotbelow u acircumflexhook.alt01 agrave.alt01]; @MMK_L_lc_uhorn = [uhornacute uhorndotbelow uhorn uhorntilde uhorngrave uhornhook]; @MMK_L_lc_w = [wgrave wcircumflex wdieresis w wacute]; @MMK_L_lc_y = [ycircumflex ydieresis ydotbelow yacute y yhook ygrave ytilde]; @MMK_L_lc_z = [zacute z zcaron zdotaccent]; @MMK_L_uc_a = [Atilde Adotbelow Adieresis Aacute Abrevegrave Acircumflexhook Abrevehook Acircumflex A Ahook Acircumflexdotbelow Aringacute Aring Amacron Abreveacute Abrevedotbelow Aogonek Acircumflexgrave Acircumflexacute Abrevetilde Agrave Acircumflextilde Abreve]; @MMK_L_uc_c = [C Cdotaccent Cacute Ccaron Ccircumflex Ccedilla]; @MMK_L_uc_d = [Eth Dcroat D Dcaron]; @MMK_L_uc_e = [Ecaron Egrave Eogonek E Ecircumflexhook Ecircumflex Ecircumflexacute OE Ebreve AEacute Ehook Edieresis Etilde Emacron Edotbelow Edotaccent Eacute AE Ecircumflextilde Ecircumflexdotbelow Ecircumflexgrave]; @MMK_L_uc_g = [Gdotaccent Gbreve Gcircumflex Gcommaaccent G]; @MMK_L_uc_j = [Jacute J IJ IJacute Jcircumflex]; @MMK_L_uc_k = [K Kcommaaccent]; @MMK_L_uc_l = [Lcaron Lcommaaccent L Lacute Lslash Ldot]; @MMK_L_uc_n = [Nacute Eng N Ntilde Ncommaaccent Ncaron]; @MMK_L_uc_o = [Ocircumflexgrave Ocircumflextilde Ocircumflexdotbelow Ohook Odotbelow Odieresis Ohungarumlaut Ograve Ocircumflex Ocircumflexhook Oslash Omacron O Otilde Q Oslashacute Obreve Ocircumflexacute Schwa Oacute]; @MMK_L_uc_ohorn = [Ohornhook Ohornacute Ohorngrave Ohorntilde Ohorndotbelow Ohorn]; @MMK_L_uc_r = [Racute Rcommaaccent R Rcaron]; @MMK_L_uc_s = [Scircumflex Scommaaccent Scedilla S Sacute Scaron]; @MMK_L_uc_t = [Tcommaaccent Tcaron T Tcedilla Tbar]; @MMK_L_uc_u = [Udieresis Uhungarumlaut Udotbelow Uacute Uogonek Utilde Uring Ugrave Umacron Ucircumflex U Ubreve Uhook]; @MMK_L_uc_uhorn = [Uhornacute Uhorndotbelow Uhorn Uhorntilde Uhorngrave Uhornhook]; @MMK_L_uc_w = [Wgrave Wcircumflex Wdieresis W Wacute]; @MMK_L_uc_y = [Ycircumflex Ydieresis Ydotbelow Yacute Y Yhook Ygrave Ytilde]; @MMK_L_uc_z = [Zacute Z Zcaron Zdotaccent]; @MMK_R_cyr_lc_acyrillic = [uni0430 uni04D1 uni04D3 uni04D5]; @MMK_R_cyr_lc_acyrillic.alt01 = [uni0430.alt01 uni04D1.alt01 uni04D3.alt01]; @MMK_R_cyr_lc_checyrillic = [uni0447 uni04B7 uni04B9 uni04F5]; @MMK_R_cyr_lc_djecyrillic = [uni0452 uni045B]; @MMK_R_cyr_lc_elcyrillic = [uni043B uni0459]; @MMK_R_cyr_lc_encyrillic = [uni0432 uni0433 uni0438 uni0439 uni043A uni043C uni043D uni043F uni0446 uni0448 uni0449 uni044B uni044C uni044E uni0453 uni045A uni045C uni045D uni045F uni0491 uni0495 uni049B uni049D uni04A3 uni04A5 uni04E3 uni04E5 uni04F9]; @MMK_R_cyr_lc_icyrillic = [uni0456 uni0457]; @MMK_R_cyr_lc_khacyrillic = [uni0445 uni04B3]; @MMK_R_cyr_lc_ocyrillic = [uni0435 uni043E uni0441 uni0450 uni0451 uni0454 uni0473 uni04AB uni04D7 uni04D9 uni04E7 uni04E9]; @MMK_R_cyr_lc_shhacyrillic = [uni04BB uni04CF]; @MMK_R_cyr_lc_tecyrillic = [uni0442 uni044A uni04A1]; @MMK_R_cyr_lc_ucyrillic = [uni0443 uni045E uni04EF uni04F1 uni04F3]; @MMK_R_cyr_lc_zecyrilic = [uni0437 uni044D uni0499 uni04DF]; @MMK_R_cyr_lc_zhecyrillic = [uni0436 uni0497 uni04C2 uni04DD]; @MMK_R_cyr_uc_Acyrillic = [uni0410 uni04D0 uni04D2]; @MMK_R_cyr_uc_Checyrillic = [uni0427 uni04B6 uni04B8 uni04F4]; @MMK_R_cyr_uc_Elcyrillic = [uni0409 uni041B]; @MMK_R_cyr_uc_Encyrillic = [uni0400 uni0401 uni0403 uni0406 uni0407 uni040A uni040C uni040D uni040F uni0411 uni0412 uni0413 uni0415 uni0418 uni0419 uni041A uni041C uni041D uni041F uni0420 uni0426 uni0428 uni0429 uni042B uni042C uni042E uni0490 uni0494 uni049A uni049C uni04A2 uni04A4 uni04BA uni04C0 uni04D6 uni04E2 uni04E4 uni04F8]; @MMK_R_cyr_uc_Hardsigncyrillic = [uni042A uni04A0]; @MMK_R_cyr_uc_Khacyrillic = [uni0425 uni04B2]; @MMK_R_cyr_uc_Ocyrillic = [uni0404 uni041E uni0421 uni0472 uni04AA uni04D8 uni04E6 uni04E8]; @MMK_R_cyr_uc_Tecyrillic = [uni0402 uni040B uni0422]; @MMK_R_cyr_uc_Ucyrillic = [uni040E uni0423 uni04EE uni04F0 uni04F2]; @MMK_R_cyr_uc_Zecyrillic = [uni0417 uni042D uni0498 uni04DE]; @MMK_R_cyr_uc_Zhecyrillic = [uni0416 uni0496 uni04C1 uni04DC]; @MMK_R_inp_colon = [colon semicolon]; @MMK_R_inp_foot = [quotedbl quotesingle asterisk]; @MMK_R_inp_guill = [guilsinglleft guillemotleft]; @MMK_R_inp_guilr = [guillemotright guilsinglright]; @MMK_R_inp_hyph = [hyphen endash emdash softhyphen]; @MMK_R_inp_parenth = [bracketright braceright]; @MMK_R_inp_period = [ellipsis comma period quotesinglbase quotedblbase]; @MMK_R_inp_quotel = [quotedblleft quoteleft]; @MMK_R_inp_quoter = [quoteright quotedblright]; @MMK_R_lc_a = [acircumflexgrave ae acircumflexacute abreveacute abrevetilde agrave acircumflextilde abreve atilde adotbelow aring adieresis aacute aeacute abrevegrave acircumflexhook abrevehook acircumflex a ahook acircumflexdotbelow aringacute amacron abrevedotbelow aogonek]; @MMK_R_lc_d = [abrevedotbelow.alt01 acircumflex.alt01 gbreve.alt01 abrevegrave.alt01 g.alt01 aogonek.alt01 adotbelow.alt01 aacute.alt01 atilde.alt01 abreveacute.alt01 acircumflexacute.alt01 abrevetilde.alt01 aringacute.alt01 a.alt01 abreve.alt01 gdotaccent.alt01 gcircumflex.alt01 aring.alt01 adieresis.alt01 acircumflexgrave.alt01 dcaron acircumflextilde.alt01 acircumflexdotbelow.alt01 amacron.alt01 ahook.alt01 abrevehook.alt01 dcroat d gcommaaccent.alt01 q acircumflexhook.alt01 agrave.alt01 eth]; @MMK_R_lc_f = [fi fl germandbls f]; @MMK_R_lc_g = [gdotaccent gbreve g.alt02 g gcircumflex gcommaaccent]; @MMK_R_lc_h = [kcommaaccent lcaron h k lcommaaccent l lacute hcircumflex lslash ldot]; @MMK_R_lc_i = [idotbelow iacute iogonek i ihook ijacute igrave itilde icircumflex imacron ij ibreve idieresis]; @MMK_R_lc_j = [dotlessj jacute j jcircumflex]; @MMK_R_lc_n = [racute nacute eng rcommaaccent kgreenlandic m rcaron n ntilde r ncommaaccent ncaron dotlessi]; @MMK_R_lc_o = [cdotaccent ohornacute ograve ocircumflex ocircumflexhook edieresis obreve ohornhook ecircumflextilde ecircumflexdotbelow edotaccent ocircumflexgrave egrave ccedilla odotbelow ohorngrave otilde ccaron ohorntilde schwa ecircumflexhook oslash ohorn ocircumflextilde ocircumflexdotbelow cacute ecircumflex odieresis ohungarumlaut ecircumflexacute ebreve omacron eogonek edotbelow ccircumflex ohorndotbelow eacute etilde ecaron oslashacute c ohook e oe ehook o emacron ocircumflexacute ecircumflexgrave oacute]; @MMK_R_lc_s = [scircumflex scommaaccent scedilla s sacute scaron]; @MMK_R_lc_t = [tcommaaccent tcaron t tcedilla tbar]; @MMK_R_lc_u = [udieresis uhungarumlaut uhorngrave utilde udotbelow uacute uhorndotbelow umacron uhorntilde uring uhorn ugrave uogonek ucircumflex uhornacute u uhornhook ubreve uhook]; @MMK_R_lc_w = [wgrave wcircumflex wdieresis w wacute]; @MMK_R_lc_y = [ycircumflex ydieresis ydotbelow yacute y yhook ygrave ytilde]; @MMK_R_lc_z = [zacute z zcaron zdotaccent]; @MMK_R_uc_a = [Aring Atilde Adotbelow Adieresis Aacute Abrevegrave Acircumflexhook Abrevehook Acircumflex A Ahook AE Acircumflexdotbelow Aringacute AEacute Amacron Abreveacute Abrevedotbelow Aogonek Acircumflexgrave Acircumflexacute Abrevetilde Agrave Acircumflextilde Abreve]; @MMK_R_uc_h = [B D Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Eng Eogonek Eth Etilde F Germandbls H Hbar Hcircumflex I IJ IJacute Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihook Imacron Iogonek Itilde K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde P R Racute Rcaron Rcommaaccent Thorn]; @MMK_R_uc_j = [Jacute J Jcircumflex]; @MMK_R_uc_o = [Ocircumflexgrave Schwa Odotbelow Ohorngrave Omacron Ccaron Ohorntilde Gcircumflex Ohorn Gcommaaccent Gdotaccent Gbreve Ocircumflexdotbelow Odieresis Ohungarumlaut Cacute Ccircumflex Oslash Oslashacute C Ohook G Ocircumflextilde O Otilde Q Ohorndotbelow Ocircumflexacute Oacute Cdotaccent Ohornacute Ograve Ohornhook OE Ocircumflexhook Obreve Ccedilla Ocircumflex]; @MMK_R_uc_s = [Scircumflex Scommaaccent Scedilla S Sacute Scaron]; @MMK_R_uc_t = [Tcommaaccent Tcaron T Tcedilla Tbar]; @MMK_R_uc_u = [Udieresis Uhungarumlaut Utilde Udotbelow Uacute Uogonek Uhorndotbelow Uhorntilde Uhornacute Uring Uhorn Ugrave Umacron Ucircumflex Uhorngrave U Uhornhook Ubreve Uhook]; @MMK_R_uc_w = [Wgrave Wcircumflex Wdieresis W Wacute]; @MMK_R_uc_y = [Ycircumflex Ydieresis Ydotbelow Yacute Y Yhook Ygrave Ytilde]; @MMK_R_uc_z = [Zacute Z Zcaron Zdotaccent]; # glyph, glyph: # pos uni0424 uni0455 0; # pos uni0440 uni044F 0; # pos uni0444 uni044F 0; # pos uni04B3 fourinferior 0; pos Aogonek parenright 36; pos B V -30; pos B X -20; pos B ampersand -10; pos B eightsuperior -11; pos B fiveinferior -2; pos B fivesuperior -12; pos B foursuperior -10; pos B ninesuperior -15; pos B oneinferior -2; pos B onesuperior -12; pos B question -28; pos B registered -13; pos B sevensuperior -20; pos B sixsuperior -10; pos B slash -17; pos B threeinferior -2; pos B threesuperior -12; pos B trademark -20; pos B twoinferior -4; pos B twosuperior -13; pos B underscore -60; pos B v -10; pos B x -10; pos B zeroinferior 2; pos B zerosuperior -15; pos Eogonek parenright 12; pos F ampersand -38; pos F at -30; pos F eightinferior -62; pos F fiveinferior -54; pos F fourinferior -77; pos F germandbls.alt01 -28; pos F nineinferior -61; pos F ninesuperior 4; pos F oneinferior -60; pos F onesuperior 5; pos F p -25; pos F question 15; pos F registered 2; pos F seveninferior -46; pos F sevensuperior 2; pos F sixinferior -65; pos F sixsuperior 4; pos F slash -50; pos F threeinferior -53; pos F threesuperior 2; pos F trademark 10; pos F twoinferior -62; pos F twosuperior 2; pos F underscore -130; pos F v -10; pos F x -28; pos F zeroinferior -67; pos F zerosuperior 4; pos Germandbls V -20; pos Germandbls X -7; pos Germandbls ampersand -8; pos Germandbls copyright -2; pos Germandbls eightinferior 10; pos Germandbls eightsuperior -30; pos Germandbls fiveinferior 8; pos Germandbls fivesuperior -22; pos Germandbls fourinferior 10; pos Germandbls foursuperior -32; pos Germandbls nineinferior 20; pos Germandbls ninesuperior -20; pos Germandbls onesuperior -12; pos Germandbls ordfeminine -22; pos Germandbls ordmasculine -22; pos Germandbls question -14; pos Germandbls questiondown -6; pos Germandbls registered -27; pos Germandbls sevensuperior -12; pos Germandbls sixinferior 10; pos Germandbls sixsuperior -32; pos Germandbls slash -16; pos Germandbls threesuperior -12; pos Germandbls trademark -12; pos Germandbls twosuperior -17; pos Germandbls underscore -60; pos Germandbls v -12; pos Germandbls x -15; pos Germandbls zeroinferior 20; pos Germandbls zerosuperior -20; pos H foursuperior -2; pos Hbar foursuperior -2; pos Hcircumflex foursuperior -2; pos I foursuperior -2; pos Iacute foursuperior -2; pos Ibreve foursuperior -2; pos Icircumflex foursuperior -2; pos Idieresis foursuperior -2; pos Idotaccent foursuperior -2; pos Idotbelow foursuperior -2; pos Igrave foursuperior -2; pos Ihook foursuperior -2; pos Imacron foursuperior -2; pos Iogonek foursuperior -2; pos Iogonek parenright 15; pos Itilde foursuperior -2; pos Lcaron trademark -6; pos M foursuperior -2; pos P X -15; pos P ampersand -34; pos P at -10; pos P eightinferior -65; pos P eightsuperior 10; pos P fiveinferior -60; pos P fivesuperior 10; pos P fourinferior -102; pos P foursuperior 10; pos P nineinferior -60; pos P ninesuperior 10; pos P oneinferior -62; pos P seveninferior -22; pos P sevensuperior 9; pos P sixinferior -89; pos P sixsuperior 10; pos P slash -50; pos P threeinferior -60; pos P twoinferior -62; pos P underscore -130; pos P v 10; pos P x -12; pos P zeroinferior -60; pos P zerosuperior 10; pos Thorn V -23; pos Thorn X -36; pos Thorn ampersand -4; pos Thorn at 10; pos Thorn eightsuperior 5; pos Thorn fiveinferior -2; pos Thorn fourinferior -15; pos Thorn foursuperior 10; pos Thorn ninesuperior -15; pos Thorn onesuperior -2; pos Thorn seveninferior 8; pos Thorn sevensuperior -22; pos Thorn sixinferior -10; pos Thorn slash -40; pos Thorn trademark -16; pos Thorn twosuperior 8; pos Thorn underscore -130; pos Thorn v 10; pos Thorn x -14; pos Thorn zerosuperior 8; pos V V 10; pos V ampersand -44; pos V at -40; pos V b 2; pos V eightinferior -62; pos V eightsuperior 10; pos V exclamdown -20; pos V fiveinferior -57; pos V fivesuperior 19; pos V fourinferior -72; pos V germandbls.alt01 -36; pos V nineinferior -62; pos V ninesuperior 11; pos V oneinferior -62; pos V onesuperior 20; pos V p -37; pos V parenright 28; pos V question 14; pos V questiondown -60; pos V registered 10; pos V seveninferior -60; pos V sevensuperior 28; pos V sixinferior -62; pos V slash -50; pos V threeinferior -62; pos V threesuperior 20; pos V trademark 28; pos V twoinferior -54; pos V twosuperior 20; pos V underscore -70; pos V v -12; pos V x -20; pos V zeroinferior -54; pos V zerosuperior 20; pos X ampersand -15; pos X at -30; pos X eightinferior 10; pos X fiveinferior 10; pos X fivesuperior 8; pos X fourinferior 10; pos X foursuperior -30; pos X nineinferior -20; pos X ninesuperior 8; pos X oneinferior -1; pos X onesuperior 10; pos X parenright 16; pos X question 8; pos X questiondown 30; pos X seveninferior -20; pos X sevensuperior 24; pos X sixsuperior -2; pos X threeinferior 10; pos X threesuperior 10; pos X trademark 16; pos X twoinferior 10; pos X twosuperior 10; pos X underscore 20; pos X v -12; pos X zeroinferior 13; pos X zerosuperior 12; pos ampersand V -38; pos ampersand uni0408 10; pos ampersand uni0414 15; pos ampersand uni0424 -6; pos ampersand uni042F 6; pos ampersand uni0431 -4; pos ampersand uni0434 11; pos ampersand uni0444 -4; pos ampersand uni044F 3; pos ampersand uni0492 9; pos ampersand uni0493 9; pos ampersand uni04AE -54; pos ampersand uni04AF -18; pos ampersand uni04B0 -54; pos ampersand uni04B1 -18; pos ampersand v -10; pos aogonek parenright 20; pos at V -40; pos at X -30; pos at uni0405 -11; pos at uni0408 -22; pos at uni0414 -27; pos at uni0424 7; pos at uni042F -19; pos at uni0431 3; pos at uni0434 -24; pos at uni044F -2; pos at uni0492 14; pos at uni0493 2; pos at uni04AE -60; pos at uni04AF -4; pos at uni04B0 -56; pos at uni04B1 -4; pos at uni04D4 -20; pos at x -10; pos braceleft uni0458 78; pos bracketleft uni0414 12; pos bracketleft uni0424 -12; pos bracketleft uni042F -6; pos bracketleft uni0431 -6; pos bracketleft uni0434 6; pos bracketleft uni0457 6; pos bracketleft uni0458 78; pos bracketright uni0458 41; pos comma uni0458 35; pos eightinferior V -62; pos eightinferior X 10; pos eightinferior eightinferior -10; pos eightinferior fiveinferior -2; pos eightinferior oneinferior -15; pos eightinferior threeinferior -4; pos eightinferior uni0408 10; pos eightinferior uni0414 9; pos eightinferior uni0431 9; pos eightinferior uni0434 12; pos eightinferior uni0444 7; pos eightinferior uni044F 2; pos eightinferior uni0492 18; pos eightinferior uni0493 13; pos eightinferior uni04AE -80; pos eightinferior uni04AF -34; pos eightinferior uni04B0 -74; pos eightinferior uni04B1 -34; pos eightinferior uni04D4 12; pos eightinferior v -30; pos eightinferior x -6; pos eightsuperior V 10; pos eightsuperior b 20; pos eightsuperior eightsuperior -10; pos eightsuperior fivesuperior -2; pos eightsuperior fraction 12; pos eightsuperior jcircumflex 6; pos eightsuperior onesuperior -15; pos eightsuperior p 20; pos eightsuperior thorn 20; pos eightsuperior threesuperior -4; pos eightsuperior uni0408 -52; pos eightsuperior uni0414 -42; pos eightsuperior uni0424 6; pos eightsuperior uni042F -13; pos eightsuperior uni0431 4; pos eightsuperior uni0434 -32; pos eightsuperior uni0440 20; pos eightsuperior uni044F 1; pos eightsuperior uni0457 4; pos eightsuperior uni0492 10; pos eightsuperior uni04AF 30; pos eightsuperior uni04B1 30; pos eightsuperior uni04D4 -64; pos eightsuperior v 30; pos eightsuperior x 12; pos eth question -4; pos eth underscore -54; pos exclamdown V -20; pos exclamdown uni0458 30; pos exclamdown uni04AE -32; pos fiveinferior V -60; pos fiveinferior eightinferior -5; pos fiveinferior fiveinferior -6; pos fiveinferior fourinferior 8; pos fiveinferior nineinferior -9; pos fiveinferior oneinferior -12; pos fiveinferior seveninferior -10; pos fiveinferior threeinferior -1; pos fiveinferior uni0408 10; pos fiveinferior uni0424 -2; pos fiveinferior uni0431 4; pos fiveinferior uni0444 4; pos fiveinferior uni044F 6; pos fiveinferior uni0492 15; pos fiveinferior uni0493 4; pos fiveinferior uni04AE -80; pos fiveinferior uni04AF -30; pos fiveinferior uni04B0 -74; pos fiveinferior uni04B1 -30; pos fiveinferior v -22; pos fivesuperior V 10; pos fivesuperior X 6; pos fivesuperior b 20; pos fivesuperior eightsuperior -5; pos fivesuperior fivesuperior -6; pos fivesuperior foursuperior 8; pos fivesuperior fraction 10; pos fivesuperior germandbls.alt01 9; pos fivesuperior ninesuperior -9; pos fivesuperior onesuperior -12; pos fivesuperior p 18; pos fivesuperior sevensuperior -10; pos fivesuperior thorn 20; pos fivesuperior threesuperior -1; pos fivesuperior uni0405 -6; pos fivesuperior uni0408 -47; pos fivesuperior uni0414 -50; pos fivesuperior uni0424 4; pos fivesuperior uni042F -13; pos fivesuperior uni0431 4; pos fivesuperior uni0434 -30; pos fivesuperior uni0440 18; pos fivesuperior uni044F -2; pos fivesuperior uni0492 15; pos fivesuperior uni04AF 28; pos fivesuperior uni04B1 22; pos fivesuperior uni04D4 -54; pos fivesuperior v 28; pos fivesuperior x 12; pos fourinferior V -50; pos fourinferior eightinferior -8; pos fourinferior fiveinferior -8; pos fourinferior nineinferior -24; pos fourinferior oneinferior -21; pos fourinferior seveninferior -16; pos fourinferior sixinferior -8; pos fourinferior threeinferior -16; pos fourinferior uni0405 4; pos fourinferior uni0408 12; pos fourinferior uni0414 12; pos fourinferior uni042F 10; pos fourinferior uni0431 8; pos fourinferior uni0434 10; pos fourinferior uni0444 8; pos fourinferior uni044F 12; pos fourinferior uni0455 5; pos fourinferior uni0492 6; pos fourinferior uni0493 10; pos fourinferior uni04AE -70; pos fourinferior uni04AF -27; pos fourinferior uni04B0 -64; pos fourinferior uni04B1 -27; pos fourinferior uni04D4 10; pos fourinferior v -30; pos fourinferior x 2; pos fourinferior zeroinferior -8; pos foursuperior V 5; pos foursuperior X -5; pos foursuperior b 4; pos foursuperior eightsuperior -8; pos foursuperior fivesuperior -8; pos foursuperior fraction 8; pos foursuperior germandbls.alt01 2; pos foursuperior jcircumflex 4; pos foursuperior ninesuperior -24; pos foursuperior onesuperior -21; pos foursuperior p 2; pos foursuperior sevensuperior -16; pos foursuperior sixsuperior -8; pos foursuperior thorn 4; pos foursuperior threesuperior -16; pos foursuperior uni0405 -8; pos foursuperior uni0408 -55; pos foursuperior uni0414 -48; pos foursuperior uni0424 8; pos foursuperior uni042F -6; pos foursuperior uni0431 6; pos foursuperior uni0434 -26; pos foursuperior uni0440 6; pos foursuperior uni044F -4; pos foursuperior uni0492 15; pos foursuperior uni0493 6; pos foursuperior uni04AF 24; pos foursuperior uni04B1 16; pos foursuperior uni04D4 -46; pos foursuperior v 25; pos foursuperior x 12; pos foursuperior zerosuperior -8; pos fraction eightinferior 3; pos fraction fiveinferior 4; pos fraction fourinferior -30; pos fraction nineinferior 4; pos fraction oneinferior 4; pos fraction seveninferior 45; pos fraction sixinferior -30; pos fraction threeinferior 8; pos fraction twoinferior 8; pos germandbls V -36; pos germandbls eightinferior 18; pos germandbls eightsuperior -26; pos germandbls fiveinferior 16; pos germandbls fivesuperior -26; pos germandbls fourinferior 28; pos germandbls foursuperior -16; pos germandbls nineinferior 10; pos germandbls ninesuperior -24; pos germandbls oneinferior 6; pos germandbls onesuperior -26; pos germandbls ordfeminine -10; pos germandbls ordmasculine -10; pos germandbls question -26; pos germandbls questiondown 10; pos germandbls registered -32; pos germandbls sevensuperior -26; pos germandbls sixinferior 20; pos germandbls sixsuperior -24; pos germandbls slash -5; pos germandbls threeinferior 8; pos germandbls threesuperior -26; pos germandbls trademark -32; pos germandbls twoinferior 16; pos germandbls twosuperior -28; pos germandbls underscore -50; pos germandbls v -17; pos germandbls x -10; pos germandbls zeroinferior 20; pos germandbls zerosuperior -16; pos germandbls.alt01 V -22; pos germandbls.alt01 X 36; pos germandbls.alt01 at -4; pos germandbls.alt01 copyright -4; pos germandbls.alt01 eightinferior 23; pos germandbls.alt01 eightsuperior 18; pos germandbls.alt01 fiveinferior 26; pos germandbls.alt01 fivesuperior 16; pos germandbls.alt01 fourinferior 30; pos germandbls.alt01 foursuperior 18; pos germandbls.alt01 nineinferior -2; pos germandbls.alt01 ninesuperior 10; pos germandbls.alt01 oneinferior 23; pos germandbls.alt01 onesuperior -4; pos germandbls.alt01 ordfeminine 4; pos germandbls.alt01 ordmasculine 8; pos germandbls.alt01 parenright 18; pos germandbls.alt01 question -2; pos germandbls.alt01 questiondown 20; pos germandbls.alt01 seveninferior -1; pos germandbls.alt01 sevensuperior -2; pos germandbls.alt01 sixinferior 11; pos germandbls.alt01 sixsuperior 18; pos germandbls.alt01 slash 46; pos germandbls.alt01 threeinferior 33; pos germandbls.alt01 trademark -8; pos germandbls.alt01 twoinferior 32; pos germandbls.alt01 underscore 24; pos germandbls.alt01 v -1; pos germandbls.alt01 x 14; pos germandbls.alt01 zeroinferior 28; pos germandbls.alt01 zerosuperior 18; pos icircumflex eightsuperior 4; pos icircumflex ninesuperior 6; pos icircumflex sevensuperior 6; pos icircumflex threesuperior 4; pos icircumflex trademark 6; pos icircumflex twosuperior 4; pos icircumflex zerosuperior 4; pos idieresis eightsuperior 4; pos idieresis ninesuperior 6; pos idieresis sevensuperior 8; pos idieresis threesuperior 6; pos idieresis trademark 6; pos idieresis twosuperior 6; pos ijacute parenright -2; pos itilde ninesuperior 2; pos itilde sevensuperior 6; pos itilde threesuperior 4; pos itilde trademark 5; pos itilde twosuperior 4; pos jcircumflex eightsuperior 6; pos jcircumflex fivesuperior 4; pos jcircumflex ninesuperior 8; pos jcircumflex onesuperior 4; pos jcircumflex sevensuperior 8; pos jcircumflex sixsuperior 4; pos jcircumflex threesuperior 6; pos jcircumflex trademark 6; pos jcircumflex twosuperior 6; pos jcircumflex zerosuperior 6; pos lslash eightsuperior 30; pos lslash fivesuperior 30; pos lslash foursuperior 48; pos lslash ninesuperior 10; pos lslash onesuperior 28; pos lslash sevensuperior 10; pos lslash sixsuperior 30; pos lslash threesuperior 40; pos lslash twosuperior 30; pos lslash zerosuperior 36; pos nineinferior V -62; pos nineinferior X -10; pos nineinferior eightinferior -4; pos nineinferior fiveinferior -1; pos nineinferior fourinferior -5; pos nineinferior oneinferior -5; pos nineinferior seveninferior -4; pos nineinferior sixinferior -6; pos nineinferior threeinferior -1; pos nineinferior uni0408 15; pos nineinferior uni0414 -10; pos nineinferior uni042F -13; pos nineinferior uni0431 14; pos nineinferior uni0434 -13; pos nineinferior uni0444 12; pos nineinferior uni044F -4; pos nineinferior uni0455 -5; pos nineinferior uni0492 13; pos nineinferior uni0493 16; pos nineinferior uni04AE -80; pos nineinferior uni04AF -24; pos nineinferior uni04B0 -64; pos nineinferior uni04B1 -24; pos nineinferior uni04D4 -5; pos nineinferior v -20; pos nineinferior x -28; pos ninesuperior V 10; pos ninesuperior X 8; pos ninesuperior b 20; pos ninesuperior eightsuperior -4; pos ninesuperior fivesuperior -1; pos ninesuperior foursuperior -5; pos ninesuperior fraction -22; pos ninesuperior germandbls.alt01 8; pos ninesuperior jcircumflex 4; pos ninesuperior onesuperior -5; pos ninesuperior p 20; pos ninesuperior sevensuperior -4; pos ninesuperior sixsuperior -6; pos ninesuperior thorn 20; pos ninesuperior threesuperior -1; pos ninesuperior uni0408 -47; pos ninesuperior uni0414 -56; pos ninesuperior uni042F -13; pos ninesuperior uni0431 -6; pos ninesuperior uni0434 -28; pos ninesuperior uni0440 20; pos ninesuperior uni0444 -16; pos ninesuperior uni044F -23; pos ninesuperior uni0455 -15; pos ninesuperior uni0457 5; pos ninesuperior uni0492 6; pos ninesuperior uni04AF 30; pos ninesuperior uni04B1 30; pos ninesuperior uni04D4 -72; pos ninesuperior v 30; pos ninesuperior x 4; pos oneinferior V -80; pos oneinferior X 11; pos oneinferior eightinferior -12; pos oneinferior fiveinferior -12; pos oneinferior fourinferior -10; pos oneinferior nineinferior -25; pos oneinferior oneinferior -20; pos oneinferior seveninferior -27; pos oneinferior sixinferior -16; pos oneinferior threeinferior -10; pos oneinferior uni0408 6; pos oneinferior uni0414 6; pos oneinferior uni0424 -18; pos oneinferior uni0431 -6; pos oneinferior uni0434 4; pos oneinferior uni0444 -6; pos oneinferior uni04AE -100; pos oneinferior uni04AF -46; pos oneinferior uni04B0 -94; pos oneinferior uni04B1 -46; pos oneinferior uni04D4 33; pos oneinferior v -40; pos oneinferior x 2; pos oneinferior zeroinferior -15; pos onesuperior V -2; pos onesuperior eightsuperior -12; pos onesuperior fivesuperior -12; pos onesuperior foursuperior -10; pos onesuperior fraction 45; pos onesuperior ninesuperior -25; pos onesuperior onesuperior -20; pos onesuperior sevensuperior -27; pos onesuperior sixsuperior -16; pos onesuperior threesuperior -10; pos onesuperior uni0405 -10; pos onesuperior uni0408 -70; pos onesuperior uni0414 -64; pos onesuperior uni0424 6; pos onesuperior uni042F -23; pos onesuperior uni0431 3; pos onesuperior uni0434 -34; pos onesuperior uni044F 8; pos onesuperior uni0492 20; pos onesuperior uni04AE -28; pos onesuperior uni04AF 8; pos onesuperior uni04B0 -28; pos onesuperior uni04D4 -46; pos onesuperior v 8; pos onesuperior zerosuperior -15; pos parenleft V 20; pos parenleft X 8; pos parenleft b 20; pos parenleft ibreve 4; pos parenleft idieresis 4; pos parenleft uni0414 21; pos parenleft uni0424 -12; pos parenleft uni042F -6; pos parenleft uni0431 -5; pos parenleft uni0434 25; pos parenleft uni0457 4; pos parenleft uni0458 86; pos parenleft uni04AE 18; pos parenleft uni04AF -6; pos parenleft uni04B0 18; pos parenleft v -10; pos q underscore 28; pos question V 15; pos question uni04AE 15; pos question uni04D4 -16; pos questiondown V -60; pos questiondown b -40; pos questiondown uni0408 -18; pos questiondown uni0455 -10; pos questiondown uni0458 48; pos questiondown uni04AE -65; pos questiondown uni04D4 8; pos questiondown v -30; pos quotedblbase uni0458 35; pos quotesinglbase uni0458 35; pos registered V 10; pos registered uni04AE 5; pos registered uni04D4 -48; pos registered v 56; pos registered x 20; pos seveninferior V -40; pos seveninferior X -30; pos seveninferior eightinferior -15; pos seveninferior fiveinferior -7; pos seveninferior fourinferior -15; pos seveninferior nineinferior -1; pos seveninferior oneinferior -2; pos seveninferior seveninferior 12; pos seveninferior sixinferior -12; pos seveninferior threeinferior -1; pos seveninferior uni0405 -12; pos seveninferior uni0408 -20; pos seveninferior uni0414 -23; pos seveninferior uni0424 8; pos seveninferior uni042F -24; pos seveninferior uni0431 14; pos seveninferior uni0434 -28; pos seveninferior uni0444 14; pos seveninferior uni044F -2; pos seveninferior uni0492 20; pos seveninferior uni0493 6; pos seveninferior uni04AE -60; pos seveninferior uni04AF -14; pos seveninferior uni04B0 -54; pos seveninferior uni04B1 -14; pos seveninferior uni04D4 -10; pos seveninferior v -10; pos seveninferior x -10; pos seveninferior zeroinferior -6; pos sevensuperior V 20; pos sevensuperior X 24; pos sevensuperior b 22; pos sevensuperior eightsuperior -15; pos sevensuperior fivesuperior -7; pos sevensuperior foursuperior -15; pos sevensuperior fraction -27; pos sevensuperior germandbls.alt01 -2; pos sevensuperior jcircumflex 2; pos sevensuperior ninesuperior -1; pos sevensuperior onesuperior -2; pos sevensuperior parenright 20; pos sevensuperior sevensuperior 12; pos sevensuperior sixsuperior -12; pos sevensuperior thorn 20; pos sevensuperior threesuperior -1; pos sevensuperior twosuperior -5; pos sevensuperior uni0405 -12; pos sevensuperior uni0408 -37; pos sevensuperior uni0414 -58; pos sevensuperior uni0424 -31; pos sevensuperior uni042F -44; pos sevensuperior uni0431 -21; pos sevensuperior uni0434 -52; pos sevensuperior uni0444 -33; pos sevensuperior uni044F -34; pos sevensuperior uni0455 -30; pos sevensuperior uni0457 4; pos sevensuperior uni0493 -6; pos sevensuperior uni04AE 18; pos sevensuperior uni04AF 2; pos sevensuperior uni04B0 18; pos sevensuperior uni04B1 2; pos sevensuperior uni04D4 -84; pos sevensuperior x -10; pos sevensuperior zerosuperior -6; pos sixinferior V -62; pos sixinferior eightinferior -4; pos sixinferior fiveinferior -5; pos sixinferior fourinferior 10; pos sixinferior nineinferior -15; pos sixinferior oneinferior -16; pos sixinferior seveninferior -15; pos sixinferior threeinferior -4; pos sixinferior uni0405 3; pos sixinferior uni0408 12; pos sixinferior uni0414 6; pos sixinferior uni0424 -6; pos sixinferior uni042F 3; pos sixinferior uni0431 6; pos sixinferior uni0434 9; pos sixinferior uni0444 6; pos sixinferior uni044F 4; pos sixinferior uni0455 3; pos sixinferior uni0492 10; pos sixinferior uni0493 6; pos sixinferior uni04AE -70; pos sixinferior uni04AF -46; pos sixinferior uni04B0 -70; pos sixinferior uni04B1 -46; pos sixinferior uni04D4 7; pos sixinferior v -32; pos sixinferior x -8; pos sixsuperior X -10; pos sixsuperior b 18; pos sixsuperior eightsuperior -4; pos sixsuperior fivesuperior -5; pos sixsuperior foursuperior 10; pos sixsuperior fraction 10; pos sixsuperior germandbls.alt01 2; pos sixsuperior ninesuperior -17; pos sixsuperior onesuperior -16; pos sixsuperior p 20; pos sixsuperior sevensuperior -15; pos sixsuperior thorn 20; pos sixsuperior threesuperior -4; pos sixsuperior uni0408 -45; pos sixsuperior uni0414 -39; pos sixsuperior uni0424 6; pos sixsuperior uni042F -6; pos sixsuperior uni0431 3; pos sixsuperior uni0434 -27; pos sixsuperior uni0440 20; pos sixsuperior uni0444 -6; pos sixsuperior uni044F -4; pos sixsuperior uni0457 4; pos sixsuperior uni0492 15; pos sixsuperior uni04AF 30; pos sixsuperior uni04B1 30; pos sixsuperior uni04D4 -54; pos sixsuperior v 30; pos sixsuperior x 12; pos slash V 20; pos slash p -40; pos slash slash -120; pos slash uni0405 -10; pos slash uni0408 -32; pos slash uni0414 -59; pos slash uni0424 -20; pos slash uni042F -45; pos slash uni0431 -32; pos slash uni0434 -73; pos slash uni0440 -40; pos slash uni0444 -54; pos slash uni044F -49; pos slash uni0455 -40; pos slash uni0493 -39; pos slash uni04AE 20; pos slash uni04AF -10; pos slash uni04B0 8; pos slash uni04B1 -10; pos slash uni04D4 -52; pos slash v -10; pos slash x -30; pos tcaron V 26; pos tcaron b 28; pos tcaron eightsuperior 6; pos tcaron exclam 2; pos tcaron fivesuperior 6; pos tcaron ninesuperior 8; pos tcaron onesuperior 4; pos tcaron parenright 50; pos tcaron sevensuperior 10; pos tcaron threesuperior 6; pos tcaron trademark 38; pos tcaron twosuperior 5; pos threeinferior V -54; pos threeinferior X 8; pos threeinferior eightinferior -6; pos threeinferior fiveinferior -4; pos threeinferior fourinferior -2; pos threeinferior nineinferior -1; pos threeinferior oneinferior -12; pos threeinferior seveninferior -7; pos threeinferior sixinferior -1; pos threeinferior threeinferior -10; pos threeinferior uni0424 4; pos threeinferior uni042F -5; pos threeinferior uni0431 11; pos threeinferior uni0444 11; pos threeinferior uni044F 6; pos threeinferior uni0455 -4; pos threeinferior uni0492 13; pos threeinferior uni0493 4; pos threeinferior uni04AE -80; pos threeinferior uni04AF -30; pos threeinferior uni04B0 -62; pos threeinferior uni04B1 -30; pos threeinferior uni04D4 10; pos threeinferior v -22; pos threesuperior V 18; pos threesuperior X 10; pos threesuperior b 10; pos threesuperior eightsuperior -6; pos threesuperior fivesuperior -4; pos threesuperior foursuperior -2; pos threesuperior fraction 4; pos threesuperior ninesuperior -1; pos threesuperior onesuperior -12; pos threesuperior p 20; pos threesuperior sevensuperior -7; pos threesuperior sixsuperior -1; pos threesuperior thorn 10; pos threesuperior threesuperior -10; pos threesuperior uni0405 -10; pos threesuperior uni0408 -44; pos threesuperior uni0414 -46; pos threesuperior uni0424 1; pos threesuperior uni042F -18; pos threesuperior uni0434 -33; pos threesuperior uni0440 20; pos threesuperior uni044F -8; pos threesuperior uni0458 20; pos threesuperior uni0492 14; pos threesuperior uni04AF 26; pos threesuperior uni04B1 14; pos threesuperior uni04D4 -54; pos threesuperior v 28; pos threesuperior x 12; pos trademark V 18; pos trademark uni04D4 -53; pos twoinferior V -54; pos twoinferior X 18; pos twoinferior uni0408 26; pos twoinferior uni0414 15; pos twoinferior uni0424 -2; pos twoinferior uni042F 10; pos twoinferior uni0431 11; pos twoinferior uni0434 10; pos twoinferior uni0444 11; pos twoinferior uni044F 4; pos twoinferior uni0492 4; pos twoinferior uni0493 4; pos twoinferior uni04AE -80; pos twoinferior uni04AF -30; pos twoinferior uni04B0 -66; pos twoinferior uni04B1 -30; pos twoinferior uni04D4 20; pos twoinferior v -22; pos twoinferior x 10; pos twosuperior V 18; pos twosuperior X 8; pos twosuperior b 15; pos twosuperior fraction 45; pos twosuperior jcircumflex 4; pos twosuperior p 20; pos twosuperior thorn 15; pos twosuperior uni0405 -6; pos twosuperior uni0408 -44; pos twosuperior uni0414 -46; pos twosuperior uni0424 4; pos twosuperior uni042F -14; pos twosuperior uni0431 12; pos twosuperior uni0434 -32; pos twosuperior uni0440 20; pos twosuperior uni0444 7; pos twosuperior uni044F 6; pos twosuperior uni0492 17; pos twosuperior uni04AF 26; pos twosuperior uni04B1 18; pos twosuperior uni04D4 -36; pos twosuperior v 28; pos twosuperior x 10; pos underscore V -70; pos underscore X 20; pos underscore b -20; pos underscore p 10; pos underscore thorn 30; pos underscore uni0405 -42; pos underscore uni0408 -18; pos underscore uni0414 33; pos underscore uni0424 -137; pos underscore uni0431 -53; pos underscore uni0434 40; pos underscore uni0440 10; pos underscore uni0444 -50; pos underscore uni044F 4; pos underscore uni0455 -35; pos underscore uni0458 96; pos underscore uni04AE -60; pos underscore uni04AF -73; pos underscore uni04B0 -60; pos underscore uni04B1 -30; pos underscore v -70; pos underscore x 20; pos uni0402 ampersand 6; pos uni0402 eightsuperior -36; pos uni0402 fivesuperior -26; pos uni0402 fourinferior 10; pos uni0402 foursuperior -27; pos uni0402 ninesuperior -46; pos uni0402 onesuperior -24; pos uni0402 registered -34; pos uni0402 sevensuperior -46; pos uni0402 sixsuperior -36; pos uni0402 threeinferior 6; pos uni0402 threesuperior -20; pos uni0402 trademark -50; pos uni0402 twosuperior -20; pos uni0402 uni0424 -3; pos uni0402 uni042F -4; pos uni0402 uni0431 6; pos uni0402 uni0434 -2; pos uni0402 uni0440 -4; pos uni0402 uni0444 6; pos uni0402 uni044F 4; pos uni0402 uni0458 15; pos uni0402 uni0492 8; pos uni0402 uni0493 6; pos uni0402 uni04AE -67; pos uni0402 uni04AF -21; pos uni0402 uni04B0 -61; pos uni0402 uni04B1 -21; pos uni0402 uni04D4 -6; pos uni0402 zerosuperior -36; pos uni0404 ampersand -13; pos uni0404 at -13; pos uni0404 fiveinferior -6; pos uni0404 foursuperior -9; pos uni0404 nineinferior -16; pos uni0404 oneinferior -18; pos uni0404 registered -6; pos uni0404 seveninferior -12; pos uni0404 sixinferior -4; pos uni0404 slash -12; pos uni0404 twoinferior -6; pos uni0404 twosuperior 2; pos uni0404 underscore -51; pos uni0404 uni0405 -2; pos uni0404 uni0408 -2; pos uni0404 uni0414 -10; pos uni0404 uni0424 -10; pos uni0404 uni042F -10; pos uni0404 uni0431 -9; pos uni0404 uni0434 -16; pos uni0404 uni0440 -12; pos uni0404 uni0444 -14; pos uni0404 uni044F -9; pos uni0404 uni0455 -6; pos uni0404 uni0458 -6; pos uni0404 uni0493 -6; pos uni0404 uni04AE -12; pos uni0404 uni04AF -6; pos uni0404 uni04B0 -10; pos uni0404 uni04B1 -6; pos uni0404 uni04D4 -25; pos uni0404 zeroinferior -6; pos uni0404 zerosuperior 2; pos uni0405 ampersand -10; pos uni0405 eightsuperior -6; pos uni0405 fiveinferior -2; pos uni0405 fivesuperior -6; pos uni0405 foursuperior -10; pos uni0405 ninesuperior -5; pos uni0405 oneinferior -16; pos uni0405 onesuperior -6; pos uni0405 parenright -10; pos uni0405 registered -3; pos uni0405 sevensuperior -6; pos uni0405 sixinferior 3; pos uni0405 sixsuperior -10; pos uni0405 slash -10; pos uni0405 threeinferior -3; pos uni0405 threesuperior -8; pos uni0405 twoinferior -10; pos uni0405 twosuperior -11; pos uni0405 underscore -44; pos uni0405 uni0405 -6; pos uni0405 uni0408 -7; pos uni0405 uni0414 -10; pos uni0405 uni0424 -4; pos uni0405 uni042F -6; pos uni0405 uni0434 -21; pos uni0405 uni0440 -5; pos uni0405 uni044F -5; pos uni0405 uni0492 2; pos uni0405 uni04AE -11; pos uni0405 uni04AF -5; pos uni0405 uni04B0 -11; pos uni0405 uni04B1 -5; pos uni0405 uni04D4 -12; pos uni0405 zeroinferior 10; pos uni0408 eightinferior -17; pos uni0408 fiveinferior -14; pos uni0408 fourinferior -21; pos uni0408 nineinferior -22; pos uni0408 oneinferior -24; pos uni0408 parenright 10; pos uni0408 questiondown -40; pos uni0408 seveninferior -14; pos uni0408 sixinferior -19; pos uni0408 slash -20; pos uni0408 threeinferior -24; pos uni0408 trademark 12; pos uni0408 twoinferior -24; pos uni0408 underscore -60; pos uni0408 uni0408 -35; pos uni0408 uni0414 -32; pos uni0408 uni0424 -3; pos uni0408 uni042F -8; pos uni0408 uni0431 -4; pos uni0408 uni0434 -30; pos uni0408 uni0444 -10; pos uni0408 uni044F -6; pos uni0408 uni0455 -5; pos uni0408 uni04D4 -28; pos uni0408 zeroinferior -16; pos uni0411 ampersand -6; pos uni0411 eightinferior 3; pos uni0411 eightsuperior -20; pos uni0411 fiveinferior 8; pos uni0411 fivesuperior -9; pos uni0411 fourinferior 8; pos uni0411 foursuperior -16; pos uni0411 nineinferior 9; pos uni0411 ninesuperior -16; pos uni0411 onesuperior -9; pos uni0411 registered -11; pos uni0411 seveninferior 4; pos uni0411 sevensuperior -12; pos uni0411 sixinferior 5; pos uni0411 sixsuperior -23; pos uni0411 slash -11; pos uni0411 threeinferior 10; pos uni0411 threesuperior -3; pos uni0411 trademark -12; pos uni0411 twoinferior 4; pos uni0411 twosuperior -6; pos uni0411 underscore -57; pos uni0411 uni0408 -3; pos uni0411 uni0414 -12; pos uni0411 uni0424 -3; pos uni0411 uni042F -9; pos uni0411 uni0431 3; pos uni0411 uni0434 -14; pos uni0411 uni0444 3; pos uni0411 uni044F 1; pos uni0411 uni0492 9; pos uni0411 uni0493 7; pos uni0411 uni04AE -17; pos uni0411 uni04AF -15; pos uni0411 uni04B0 -17; pos uni0411 uni04B1 -15; pos uni0411 uni04D4 -9; pos uni0411 zeroinferior 6; pos uni0411 zerosuperior -20; pos uni0412 question -24; pos uni0420 ampersand -34; pos uni0420 at -10; pos uni0420 eightinferior -65; pos uni0420 eightsuperior 10; pos uni0420 fiveinferior -60; pos uni0420 fivesuperior 10; pos uni0420 fourinferior -102; pos uni0420 foursuperior 10; pos uni0420 nineinferior -60; pos uni0420 ninesuperior 10; pos uni0420 oneinferior -62; pos uni0420 onesuperior 4; pos uni0420 registered 8; pos uni0420 seveninferior -22; pos uni0420 sevensuperior 9; pos uni0420 sixinferior -89; pos uni0420 sixsuperior 10; pos uni0420 slash -50; pos uni0420 threeinferior -60; pos uni0420 threesuperior 4; pos uni0420 trademark 4; pos uni0420 twoinferior -62; pos uni0420 twosuperior 4; pos uni0420 underscore -130; pos uni0420 uni0408 -42; pos uni0420 uni0414 -58; pos uni0420 uni0424 3; pos uni0420 uni042F -13; pos uni0420 uni0434 -41; pos uni0420 uni0444 -19; pos uni0420 uni044F -33; pos uni0420 uni0455 -20; pos uni0420 uni0492 8; pos uni0420 uni04AF 10; pos uni0420 uni04B1 10; pos uni0420 uni04D4 -84; pos uni0420 zeroinferior -60; pos uni0420 zerosuperior 10; pos uni0422 ampersand -28; pos uni0422 at -38; pos uni0422 eightinferior -62; pos uni0422 eightsuperior 20; pos uni0422 fiveinferior -62; pos uni0422 fivesuperior 18; pos uni0422 fourinferior -70; pos uni0422 foursuperior 12; pos uni0422 nineinferior -62; pos uni0422 ninesuperior 22; pos uni0422 oneinferior -62; pos uni0422 onesuperior 25; pos uni0422 parenright 20; pos uni0422 question 22; pos uni0422 questiondown -60; pos uni0422 registered 30; pos uni0422 seveninferior -52; pos uni0422 sevensuperior 30; pos uni0422 sixinferior -62; pos uni0422 sixsuperior 20; pos uni0422 slash -70; pos uni0422 threeinferior -62; pos uni0422 threesuperior 20; pos uni0422 trademark 25; pos uni0422 twoinferior -62; pos uni0422 twosuperior 20; pos uni0422 underscore -60; pos uni0422 uni0405 -8; pos uni0422 uni0408 -42; pos uni0422 uni0414 -39; pos uni0422 uni0424 -15; pos uni0422 uni042F -22; pos uni0422 uni0431 -14; pos uni0422 uni0434 -49; pos uni0422 uni0440 -21; pos uni0422 uni0444 -41; pos uni0422 uni044F -48; pos uni0422 uni0455 -30; pos uni0422 uni0457 8; pos uni0422 uni0493 -16; pos uni0422 uni04AE 14; pos uni0422 uni04AF 4; pos uni0422 uni04B0 14; pos uni0422 uni04B1 4; pos uni0422 uni04D4 -65; pos uni0422 zeroinferior -62; pos uni0422 zerosuperior 30; pos uni0424 ampersand -6; pos uni0424 at 7; pos uni0424 copyright 4; pos uni0424 eightsuperior 6; pos uni0424 fiveinferior 3; pos uni0424 fivesuperior 11; pos uni0424 fourinferior -12; pos uni0424 foursuperior 17; pos uni0424 ninesuperior -6; pos uni0424 oneinferior 6; pos uni0424 onesuperior 6; pos uni0424 parenright -12; pos uni0424 registered 4; pos uni0424 seveninferior 8; pos uni0424 sevensuperior -14; pos uni0424 sixinferior -11; pos uni0424 sixsuperior 6; pos uni0424 slash -20; pos uni0424 threeinferior 6; pos uni0424 threesuperior 11; pos uni0424 trademark -22; pos uni0424 twoinferior 6; pos uni0424 twosuperior 8; pos uni0424 underscore -137; pos uni0424 uni0408 -37; pos uni0424 uni0414 -50; pos uni0424 uni0424 16; pos uni0424 uni042F -17; pos uni0424 uni0431 7; pos uni0424 uni0434 -37; pos uni0424 uni0444 4; pos uni0424 uni044F 3; pos uni0424 uni0492 12; pos uni0424 uni0493 5; pos uni0424 uni04AE -58; pos uni0424 uni04AF -1; pos uni0424 uni04B0 -49; pos uni0424 uni04B1 -1; pos uni0424 uni04D4 -63; pos uni0424 zerosuperior 6; pos uni0425 ampersand -15; pos uni0425 at -30; pos uni0425 eightinferior 10; pos uni0425 fiveinferior 10; pos uni0425 fivesuperior 8; pos uni0425 fourinferior 10; pos uni0425 foursuperior -30; pos uni0425 nineinferior -20; pos uni0425 ninesuperior 8; pos uni0425 oneinferior -3; pos uni0425 onesuperior 10; pos uni0425 parenright 16; pos uni0425 question 8; pos uni0425 questiondown 30; pos uni0425 registered -4; pos uni0425 seveninferior -20; pos uni0425 sevensuperior 24; pos uni0425 sixsuperior -10; pos uni0425 threeinferior 10; pos uni0425 threesuperior 10; pos uni0425 trademark 16; pos uni0425 twoinferior 10; pos uni0425 twosuperior 10; pos uni0425 underscore 20; pos uni0425 uni0408 18; pos uni0425 uni0414 12; pos uni0425 uni0424 -56; pos uni0425 uni0431 -22; pos uni0425 uni0434 18; pos uni0425 uni0444 -16; pos uni0425 uni044F 13; pos uni0425 uni0455 -5; pos uni0425 uni04AF -30; pos uni0425 uni04B1 -30; pos uni0425 uni04D4 17; pos uni0425 zeroinferior 13; pos uni0431 ninesuperior -6; pos uni0431 parenright 9; pos uni0431 sevensuperior -14; pos uni0431 uni04AE -47; pos uni0431 uni04B0 -47; pos uni0440 eightinferior 10; pos uni0440 fiveinferior 8; pos uni0440 fivesuperior -6; pos uni0440 fourinferior -6; pos uni0440 foursuperior 3; pos uni0440 nineinferior 10; pos uni0440 ninesuperior -27; pos uni0440 oneinferior 8; pos uni0440 onesuperior -10; pos uni0440 registered -5; pos uni0440 seveninferior 28; pos uni0440 sevensuperior -24; pos uni0440 sixinferior 8; pos uni0440 sixsuperior -10; pos uni0440 slash 4; pos uni0440 threeinferior 8; pos uni0440 trademark -15; pos uni0440 twoinferior 8; pos uni0440 underscore -60; pos uni0440 uni0408 -2; pos uni0440 uni0414 -13; pos uni0440 uni0424 4; pos uni0440 uni042F -18; pos uni0440 uni0431 5; pos uni0440 uni0434 -18; pos uni0440 uni0444 5; pos uni0440 uni0455 2; pos uni0440 uni0492 6; pos uni0440 uni0493 9; pos uni0440 uni04AE -59; pos uni0440 uni04AF -13; pos uni0440 uni04B0 -59; pos uni0440 uni04B1 -13; pos uni0440 uni04D4 -7; pos uni0440 zeroinferior 10; pos uni0440 zerosuperior -20; pos uni0442 ampersand -31; pos uni0442 copyright 2; pos uni0442 eightinferior -33; pos uni0442 eightsuperior 10; pos uni0442 fiveinferior -23; pos uni0442 fivesuperior 15; pos uni0442 fourinferior -52; pos uni0442 foursuperior 21; pos uni0442 nineinferior -33; pos uni0442 oneinferior -33; pos uni0442 onesuperior 8; pos uni0442 parenright -6; pos uni0442 registered 15; pos uni0442 seveninferior -6; pos uni0442 sixinferior -50; pos uni0442 sixsuperior 10; pos uni0442 slash -55; pos uni0442 threeinferior -20; pos uni0442 threesuperior 21; pos uni0442 trademark -2; pos uni0442 twoinferior -20; pos uni0442 twosuperior 18; pos uni0442 underscore -74; pos uni0442 uni0408 -53; pos uni0442 uni0414 -39; pos uni0442 uni0424 6; pos uni0442 uni042F -6; pos uni0442 uni0431 4; pos uni0442 uni0434 -22; pos uni0442 uni0440 5; pos uni0442 uni0444 -1; pos uni0442 uni044F 3; pos uni0442 uni0455 2; pos uni0442 uni0492 6; pos uni0442 uni04AE -48; pos uni0442 uni04AF 6; pos uni0442 uni04B0 -48; pos uni0442 uni04B1 6; pos uni0442 uni04D4 -69; pos uni0442 zeroinferior -33; pos uni0442 zerosuperior 10; pos uni0444 eightinferior 10; pos uni0444 fiveinferior 8; pos uni0444 fivesuperior -6; pos uni0444 fourinferior -6; pos uni0444 foursuperior 1; pos uni0444 nineinferior 10; pos uni0444 ninesuperior -31; pos uni0444 oneinferior 4; pos uni0444 onesuperior -10; pos uni0444 registered -5; pos uni0444 seveninferior 16; pos uni0444 sevensuperior -32; pos uni0444 sixinferior 4; pos uni0444 sixsuperior -10; pos uni0444 slash 4; pos uni0444 threeinferior 4; pos uni0444 trademark -15; pos uni0444 twoinferior 4; pos uni0444 twosuperior 2; pos uni0444 underscore -50; pos uni0444 uni0414 -10; pos uni0444 uni0424 4; pos uni0444 uni042F -18; pos uni0444 uni0431 5; pos uni0444 uni0434 -15; pos uni0444 uni0444 5; pos uni0444 uni0492 6; pos uni0444 uni0493 9; pos uni0444 uni04AE -90; pos uni0444 uni04AF -13; pos uni0444 uni04B0 -68; pos uni0444 uni04B1 -13; pos uni0444 uni04D4 -15; pos uni0444 zeroinferior 10; pos uni0444 zerosuperior -12; pos uni0445 ampersand -20; pos uni0445 at -10; pos uni0445 eightinferior -6; pos uni0445 eightsuperior 12; pos uni0445 fivesuperior 10; pos uni0445 fourinferior -8; pos uni0445 foursuperior 20; pos uni0445 nineinferior -20; pos uni0445 ninesuperior 16; pos uni0445 registered 20; pos uni0445 seveninferior -10; pos uni0445 sixinferior -8; pos uni0445 sixsuperior 12; pos uni0445 slash 8; pos uni0445 threeinferior 7; pos uni0445 threesuperior 8; pos uni0445 trademark 10; pos uni0445 twoinferior 10; pos uni0445 twosuperior 10; pos uni0445 underscore 20; pos uni0445 uni0408 6; pos uni0445 uni0414 15; pos uni0445 uni042F 10; pos uni0445 uni0431 -5; pos uni0445 uni0434 16; pos uni0445 uni0444 -15; pos uni0445 uni044F 11; pos uni0445 uni0455 -4; pos uni0445 uni04AE -29; pos uni0445 uni04AF 7; pos uni0445 uni04B0 -29; pos uni0445 uni04B1 7; pos uni0445 uni04D4 6; pos uni0445 zerosuperior 22; pos uni0452 ampersand -6; pos uni0452 eightinferior -6; pos uni0452 eightsuperior -8; pos uni0452 fivesuperior -10; pos uni0452 fourinferior -2; pos uni0452 foursuperior -4; pos uni0452 nineinferior -2; pos uni0452 ninesuperior -23; pos uni0452 oneinferior -8; pos uni0452 onesuperior -13; pos uni0452 registered -22; pos uni0452 seveninferior -2; pos uni0452 sevensuperior -31; pos uni0452 sixinferior -2; pos uni0452 sixsuperior -8; pos uni0452 slash -19; pos uni0452 threesuperior -8; pos uni0452 trademark -44; pos uni0452 twosuperior -4; pos uni0452 underscore -20; pos uni0452 uni0405 -6; pos uni0452 uni0408 -4; pos uni0452 uni0424 -17; pos uni0452 uni042F -20; pos uni0452 uni0431 -9; pos uni0452 uni0434 -9; pos uni0452 uni0440 -4; pos uni0452 uni0444 -9; pos uni0452 uni044F -7; pos uni0452 uni0455 -8; pos uni0452 uni0493 -5; pos uni0452 uni04AE -60; pos uni0452 uni04AF -15; pos uni0452 uni04B0 -60; pos uni0452 uni04B1 -15; pos uni0452 uni04D4 -4; pos uni0452 zeroinferior -6; pos uni0452 zerosuperior -14; pos uni0454 ampersand -3; pos uni0454 eightinferior -2; pos uni0454 fivesuperior 1; pos uni0454 foursuperior 4; pos uni0454 nineinferior -4; pos uni0454 ninesuperior -3; pos uni0454 seveninferior -3; pos uni0454 sevensuperior -10; pos uni0454 sixinferior -2; pos uni0454 slash -5; pos uni0454 threesuperior 4; pos uni0454 trademark -13; pos uni0454 twosuperior 4; pos uni0454 underscore -26; pos uni0454 uni0414 -6; pos uni0454 uni0424 -1; pos uni0454 uni042F -6; pos uni0454 uni0434 -10; pos uni0454 uni0444 -9; pos uni0454 uni044F 6; pos uni0454 uni0455 -2; pos uni0454 uni04AE -65; pos uni0454 uni04AF -2; pos uni0454 uni04B0 -65; pos uni0454 uni04B1 -2; pos uni0454 zeroinferior -2; pos uni0455 ampersand -5; pos uni0455 eightinferior -4; pos uni0455 eightsuperior 7; pos uni0455 fiveinferior 1; pos uni0455 fivesuperior 7; pos uni0455 fourinferior 5; pos uni0455 nineinferior -6; pos uni0455 ninesuperior -14; pos uni0455 oneinferior -10; pos uni0455 onesuperior -12; pos uni0455 seveninferior -7; pos uni0455 sevensuperior -12; pos uni0455 sixinferior 5; pos uni0455 sixsuperior 8; pos uni0455 slash -10; pos uni0455 threeinferior -4; pos uni0455 threesuperior -5; pos uni0455 trademark -6; pos uni0455 twoinferior -14; pos uni0455 twosuperior -10; pos uni0455 underscore -24; pos uni0455 uni0408 5; pos uni0455 uni0414 -9; pos uni0455 uni042F -10; pos uni0455 uni0434 -9; pos uni0455 uni044F 2; pos uni0455 uni0455 -6; pos uni0455 uni0492 6; pos uni0455 uni04AE -42; pos uni0455 uni04AF -3; pos uni0455 uni04B0 -42; pos uni0455 uni04B1 -3; pos uni0455 uni04D4 -5; pos uni0455 zeroinferior 6; pos uni0455 zerosuperior -4; pos uni0457 eightsuperior 4; pos uni0457 fivesuperior 4; pos uni0457 ninesuperior 6; pos uni0457 onesuperior 4; pos uni0457 parenright 14; pos uni0457 question 28; pos uni0457 sevensuperior 8; pos uni0457 threesuperior 6; pos uni0457 trademark 36; pos uni0457 twosuperior 6; pos uni0457 uni0492 9; pos uni0457 uni04AE 24; pos uni0457 uni04B0 24; pos uni0457 zerosuperior 3; pos uni0458 ninesuperior -10; pos uni0458 onesuperior 20; pos uni0458 parenright 10; pos uni0458 sevensuperior -10; pos uni0458 slash -15; pos uni0458 underscore -4; pos uni0458 uni0408 -4; pos uni0458 uni0414 -6; pos uni0458 uni0424 -9; pos uni0458 uni042F -8; pos uni0458 uni0434 -8; pos uni0458 uni04AE -30; pos uni0458 uni04AF -3; pos uni0458 uni04B0 -30; pos uni0458 uni04B1 -3; pos uni0458 uni04D4 -8; pos uni0490 ampersand -27; pos uni0490 at -72; pos uni0490 copyright -11; pos uni0490 eightinferior -133; pos uni0490 eightsuperior -11; pos uni0490 fiveinferior -120; pos uni0490 fourinferior -128; pos uni0490 foursuperior -13; pos uni0490 nineinferior -128; pos uni0490 ninesuperior -11; pos uni0490 oneinferior -116; pos uni0490 parenright 6; pos uni0490 registered 6; pos uni0490 seveninferior -120; pos uni0490 sixinferior -136; pos uni0490 sixsuperior -11; pos uni0490 slash -112; pos uni0490 threeinferior -120; pos uni0490 twoinferior -120; pos uni0490 underscore -81; pos uni0490 uni0405 -28; pos uni0490 uni0408 -52; pos uni0490 uni0414 -42; pos uni0490 uni0424 -66; pos uni0490 uni042F -56; pos uni0490 uni0431 -61; pos uni0490 uni0434 -112; pos uni0490 uni0440 -108; pos uni0490 uni0444 -124; pos uni0490 uni044F -118; pos uni0490 uni0455 -109; pos uni0490 uni0458 -25; pos uni0490 uni0493 -114; pos uni0490 uni04AF -96; pos uni0490 uni04B1 -96; pos uni0490 uni04D4 -136; pos uni0490 zeroinferior -133; pos uni0490 zerosuperior -11; pos uni0491 ampersand -15; pos uni0491 at -6; pos uni0491 copyright -2; pos uni0491 eightinferior -40; pos uni0491 fiveinferior -25; pos uni0491 fourinferior -36; pos uni0491 nineinferior -36; pos uni0491 ninesuperior 6; pos uni0491 oneinferior -25; pos uni0491 question 8; pos uni0491 seveninferior -21; pos uni0491 sevensuperior 6; pos uni0491 sixinferior -40; pos uni0491 slash -56; pos uni0491 threeinferior -25; pos uni0491 twoinferior -25; pos uni0491 uni0434 -9; pos uni0491 uni0444 -29; pos uni0491 uni044F -16; pos uni0491 uni0455 -19; pos uni0491 uni0457 20; pos uni0491 uni04AE -3; pos uni0491 uni04B0 -3; pos uni0491 zeroinferior -40; pos uni0492 ampersand -42; pos uni0492 at -38; pos uni0492 eightinferior -93; pos uni0492 eightsuperior 16; pos uni0492 fiveinferior -80; pos uni0492 fivesuperior 18; pos uni0492 fourinferior -83; pos uni0492 foursuperior 12; pos uni0492 nineinferior -84; pos uni0492 ninesuperior 26; pos uni0492 oneinferior -80; pos uni0492 onesuperior 25; pos uni0492 parenright 20; pos uni0492 question 26; pos uni0492 registered 30; pos uni0492 seveninferior -66; pos uni0492 sevensuperior 22; pos uni0492 sixinferior -91; pos uni0492 sixsuperior 20; pos uni0492 slash -86; pos uni0492 threeinferior -80; pos uni0492 threesuperior 20; pos uni0492 trademark 25; pos uni0492 twoinferior -80; pos uni0492 twosuperior 20; pos uni0492 underscore -95; pos uni0492 uni0405 -7; pos uni0492 uni0408 -57; pos uni0492 uni0414 -45; pos uni0492 uni0424 -16; pos uni0492 uni042F -24; pos uni0492 uni0431 -14; pos uni0492 uni0434 -62; pos uni0492 uni0440 -13; pos uni0492 uni0444 -48; pos uni0492 uni044F -47; pos uni0492 uni0455 -38; pos uni0492 uni0457 16; pos uni0492 uni0493 -16; pos uni0492 uni04AE 10; pos uni0492 uni04AF 2; pos uni0492 uni04B0 10; pos uni0492 uni04B1 2; pos uni0492 uni04D4 -112; pos uni0492 zeroinferior -88; pos uni0492 zerosuperior 26; pos uni0493 ampersand -31; pos uni0493 copyright 2; pos uni0493 eightinferior -33; pos uni0493 eightsuperior 10; pos uni0493 fiveinferior -20; pos uni0493 fivesuperior 15; pos uni0493 fourinferior -67; pos uni0493 foursuperior 21; pos uni0493 nineinferior -33; pos uni0493 oneinferior -33; pos uni0493 onesuperior 8; pos uni0493 parenright -6; pos uni0493 registered 15; pos uni0493 seveninferior -6; pos uni0493 sixinferior -56; pos uni0493 sixsuperior 10; pos uni0493 slash -55; pos uni0493 threeinferior -23; pos uni0493 threesuperior 21; pos uni0493 trademark -4; pos uni0493 twoinferior -26; pos uni0493 twosuperior 18; pos uni0493 underscore -100; pos uni0493 uni0408 -67; pos uni0493 uni0414 -47; pos uni0493 uni0424 6; pos uni0493 uni042F -6; pos uni0493 uni0431 7; pos uni0493 uni0434 -21; pos uni0493 uni0440 5; pos uni0493 uni0444 -2; pos uni0493 uni044F -1; pos uni0493 uni0455 2; pos uni0493 uni0492 6; pos uni0493 uni04AE -54; pos uni0493 uni04AF 6; pos uni0493 uni04B0 -54; pos uni0493 uni04B1 6; pos uni0493 uni04D4 -90; pos uni0493 zeroinferior -33; pos uni0493 zerosuperior 10; pos uni0494 ampersand 4; pos uni0494 copyright -6; pos uni0494 eightsuperior -47; pos uni0494 fivesuperior -20; pos uni0494 fourinferior 10; pos uni0494 foursuperior -30; pos uni0494 ninesuperior -47; pos uni0494 onesuperior -21; pos uni0494 registered -34; pos uni0494 seveninferior -4; pos uni0494 sevensuperior -47; pos uni0494 sixsuperior -50; pos uni0494 threeinferior 6; pos uni0494 threesuperior -14; pos uni0494 trademark -29; pos uni0494 twosuperior -14; pos uni0494 uni0405 -2; pos uni0494 uni0424 -8; pos uni0494 uni042F -6; pos uni0494 uni0431 1; pos uni0494 uni0434 -2; pos uni0494 uni0440 -6; pos uni0494 uni0444 1; pos uni0494 uni044F 2; pos uni0494 uni0458 22; pos uni0494 uni0492 5; pos uni0494 uni0493 2; pos uni0494 uni04AE -45; pos uni0494 uni04AF -21; pos uni0494 uni04B0 -41; pos uni0494 uni04B1 -21; pos uni0494 uni04D4 -6; pos uni0494 zerosuperior -47; pos uni0495 ampersand 3; pos uni0495 copyright -6; pos uni0495 eightinferior 6; pos uni0495 eightsuperior -37; pos uni0495 fivesuperior -32; pos uni0495 fourinferior 11; pos uni0495 foursuperior -19; pos uni0495 nineinferior 6; pos uni0495 ninesuperior -40; pos uni0495 onesuperior -23; pos uni0495 parenright 10; pos uni0495 question -4; pos uni0495 registered -29; pos uni0495 sevensuperior -50; pos uni0495 sixinferior 6; pos uni0495 sixsuperior -33; pos uni0495 slash 18; pos uni0495 threeinferior 6; pos uni0495 threesuperior -23; pos uni0495 trademark -51; pos uni0495 twoinferior 6; pos uni0495 twosuperior -23; pos uni0495 underscore 12; pos uni0495 uni0408 4; pos uni0495 uni0414 6; pos uni0495 uni0424 -6; pos uni0495 uni0431 -2; pos uni0495 uni0434 4; pos uni0495 uni044F 8; pos uni0495 uni0458 46; pos uni0495 uni0493 4; pos uni0495 uni04AE -85; pos uni0495 uni04AF -27; pos uni0495 uni04B0 -62; pos uni0495 uni04B1 -25; pos uni0495 zeroinferior 6; pos uni0495 zerosuperior -35; pos uni04AE ampersand -46; pos uni04AE at -60; pos uni04AE copyright -29; pos uni04AE eightinferior -80; pos uni04AE exclamdown -32; pos uni04AE fiveinferior -80; pos uni04AE fivesuperior 4; pos uni04AE fourinferior -100; pos uni04AE foursuperior -10; pos uni04AE nineinferior -80; pos uni04AE ninesuperior 6; pos uni04AE oneinferior -80; pos uni04AE parenright 18; pos uni04AE question 9; pos uni04AE questiondown -70; pos uni04AE registered 5; pos uni04AE seveninferior -60; pos uni04AE sevensuperior 18; pos uni04AE sixinferior -80; pos uni04AE slash -60; pos uni04AE threeinferior -80; pos uni04AE threesuperior 10; pos uni04AE trademark 26; pos uni04AE twoinferior -90; pos uni04AE twosuperior 10; pos uni04AE underscore -60; pos uni04AE uni0405 -22; pos uni04AE uni0408 -44; pos uni04AE uni0414 -44; pos uni04AE uni0424 -58; pos uni04AE uni042F -51; pos uni04AE uni0431 -49; pos uni04AE uni0434 -76; pos uni04AE uni0440 -40; pos uni04AE uni0444 -90; pos uni04AE uni044F -68; pos uni04AE uni0455 -73; pos uni04AE uni0458 -20; pos uni04AE uni0493 -50; pos uni04AE uni04AE 4; pos uni04AE uni04AF -27; pos uni04AE uni04B0 4; pos uni04AE uni04B1 -27; pos uni04AE uni04D4 -80; pos uni04AE zeroinferior -80; pos uni04AE zerosuperior 8; pos uni04AF ampersand -22; pos uni04AF at -2; pos uni04AF eightinferior -34; pos uni04AF eightsuperior 30; pos uni04AF fiveinferior -28; pos uni04AF fivesuperior 28; pos uni04AF fourinferior -54; pos uni04AF foursuperior 30; pos uni04AF nineinferior -24; pos uni04AF ninesuperior 30; pos uni04AF oneinferior -36; pos uni04AF onesuperior 8; pos uni04AF parenright -6; pos uni04AF registered 40; pos uni04AF seveninferior -18; pos uni04AF sixinferior -48; pos uni04AF sixsuperior 30; pos uni04AF slash -16; pos uni04AF threeinferior -28; pos uni04AF threesuperior 18; pos uni04AF trademark 20; pos uni04AF twoinferior -22; pos uni04AF twosuperior 20; pos uni04AF underscore -73; pos uni04AF uni0408 -40; pos uni04AF uni0414 -39; pos uni04AF uni0424 -1; pos uni04AF uni042F -13; pos uni04AF uni0431 -2; pos uni04AF uni0434 -29; pos uni04AF uni0444 -13; pos uni04AF uni044F -16; pos uni04AF uni0455 -8; pos uni04AF uni04AE -27; pos uni04AF uni04AF 17; pos uni04AF uni04B0 -27; pos uni04AF uni04B1 17; pos uni04AF uni04D4 -39; pos uni04AF zeroinferior -26; pos uni04AF zerosuperior 30; pos uni04B0 ampersand -44; pos uni04B0 at -56; pos uni04B0 copyright -23; pos uni04B0 eightinferior -74; pos uni04B0 fiveinferior -62; pos uni04B0 fivesuperior 4; pos uni04B0 fourinferior -80; pos uni04B0 foursuperior -10; pos uni04B0 nineinferior -70; pos uni04B0 ninesuperior 6; pos uni04B0 oneinferior -57; pos uni04B0 parenright 18; pos uni04B0 question 6; pos uni04B0 registered 5; pos uni04B0 seveninferior -50; pos uni04B0 sevensuperior 18; pos uni04B0 sixinferior -74; pos uni04B0 slash -60; pos uni04B0 threeinferior -62; pos uni04B0 threesuperior 10; pos uni04B0 trademark 26; pos uni04B0 twoinferior -67; pos uni04B0 twosuperior 10; pos uni04B0 underscore -60; pos uni04B0 uni0405 -22; pos uni04B0 uni0408 -44; pos uni04B0 uni0414 -44; pos uni04B0 uni0424 -49; pos uni04B0 uni042F -51; pos uni04B0 uni0431 -45; pos uni04B0 uni0434 -76; pos uni04B0 uni0440 -40; pos uni04B0 uni0444 -68; pos uni04B0 uni044F -68; pos uni04B0 uni0455 -73; pos uni04B0 uni0458 -20; pos uni04B0 uni0493 -42; pos uni04B0 uni04AE 4; pos uni04B0 uni04AF -27; pos uni04B0 uni04B0 4; pos uni04B0 uni04B1 -27; pos uni04B0 uni04D4 -80; pos uni04B0 zeroinferior -68; pos uni04B0 zerosuperior 8; pos uni04B1 ampersand -22; pos uni04B1 at -2; pos uni04B1 eightinferior -34; pos uni04B1 eightsuperior 30; pos uni04B1 fiveinferior -28; pos uni04B1 fivesuperior 24; pos uni04B1 fourinferior -54; pos uni04B1 foursuperior 30; pos uni04B1 nineinferior -24; pos uni04B1 ninesuperior 30; pos uni04B1 oneinferior -36; pos uni04B1 onesuperior 4; pos uni04B1 registered 40; pos uni04B1 seveninferior -18; pos uni04B1 sixinferior -48; pos uni04B1 sixsuperior 30; pos uni04B1 slash -16; pos uni04B1 threeinferior -28; pos uni04B1 threesuperior 14; pos uni04B1 trademark 20; pos uni04B1 twoinferior -22; pos uni04B1 twosuperior 20; pos uni04B1 underscore -30; pos uni04B1 uni0408 -40; pos uni04B1 uni0414 -20; pos uni04B1 uni0424 -1; pos uni04B1 uni042F -13; pos uni04B1 uni0431 -2; pos uni04B1 uni0434 -24; pos uni04B1 uni0444 -13; pos uni04B1 uni044F -16; pos uni04B1 uni0455 -8; pos uni04B1 uni0458 14; pos uni04B1 uni04AE -27; pos uni04B1 uni04AF 17; pos uni04B1 uni04B0 -27; pos uni04B1 uni04B1 21; pos uni04B1 uni04D4 -39; pos uni04B1 zeroinferior -26; pos uni04B1 zerosuperior 30; pos uni04B2 ampersand -8; pos uni04B2 at -21; pos uni04B2 copyright -14; pos uni04B2 eightinferior 16; pos uni04B2 eightsuperior -6; pos uni04B2 fiveinferior 7; pos uni04B2 fivesuperior -10; pos uni04B2 fourinferior 16; pos uni04B2 foursuperior -46; pos uni04B2 nineinferior -13; pos uni04B2 ninesuperior -1; pos uni04B2 onesuperior -2; pos uni04B2 parenright 31; pos uni04B2 registered -16; pos uni04B2 seveninferior -24; pos uni04B2 sevensuperior 8; pos uni04B2 sixinferior 12; pos uni04B2 sixsuperior -31; pos uni04B2 slash 41; pos uni04B2 threeinferior 16; pos uni04B2 threesuperior -9; pos uni04B2 trademark 8; pos uni04B2 twoinferior 13; pos uni04B2 twosuperior -7; pos uni04B2 underscore 40; pos uni04B2 uni0405 -2; pos uni04B2 uni0408 18; pos uni04B2 uni0414 31; pos uni04B2 uni0424 -60; pos uni04B2 uni042F 8; pos uni04B2 uni0431 -16; pos uni04B2 uni0434 30; pos uni04B2 uni0440 2; pos uni04B2 uni0444 -16; pos uni04B2 uni044F 19; pos uni04B2 uni0458 79; pos uni04B2 uni04AE -2; pos uni04B2 uni04AF -30; pos uni04B2 uni04B0 -2; pos uni04B2 uni04B1 -18; pos uni04B2 uni04D4 19; pos uni04B2 zeroinferior 12; pos uni04B2 zerosuperior -6; pos uni04B3 ampersand -8; pos uni04B3 at -15; pos uni04B3 copyright -10; pos uni04B3 eightinferior -4; pos uni04B3 eightsuperior 8; pos uni04B3 fivesuperior 9; pos uni04B3 foursuperior 18; pos uni04B3 nineinferior -16; pos uni04B3 ninesuperior 4; pos uni04B3 onesuperior -9; pos uni04B3 parenright 31; pos uni04B3 registered 6; pos uni04B3 seveninferior -16; pos uni04B3 sevensuperior -9; pos uni04B3 sixinferior -4; pos uni04B3 sixsuperior 13; pos uni04B3 slash 52; pos uni04B3 threeinferior 11; pos uni04B3 threesuperior 6; pos uni04B3 trademark -7; pos uni04B3 twoinferior 10; pos uni04B3 twosuperior 1; pos uni04B3 underscore 49; pos uni04B3 uni0408 13; pos uni04B3 uni0414 29; pos uni04B3 uni0424 -12; pos uni04B3 uni042F 10; pos uni04B3 uni0431 -11; pos uni04B3 uni0434 34; pos uni04B3 uni0440 5; pos uni04B3 uni0444 -18; pos uni04B3 uni044F 19; pos uni04B3 uni0455 -2; pos uni04B3 uni0458 86; pos uni04B3 uni04AE -42; pos uni04B3 uni04AF 2; pos uni04B3 uni04B0 -42; pos uni04B3 uni04B1 2; pos uni04B3 uni04D4 17; pos uni04B3 zerosuperior 13; pos uni04CF parenright 6; pos uni04CF registered -9; pos uni04CF uni0414 10; pos uni04CF uni0424 -6; pos uni04CF uni0434 8; pos uni04CF uni044F 4; pos uni04CF uni04AF -6; pos uni04CF uni04B1 -6; pos uogonek parenright 23; pos v V -12; pos v X -12; pos v ampersand -12; pos v eightinferior -30; pos v eightsuperior 30; pos v fiveinferior -22; pos v fivesuperior 28; pos v fourinferior -42; pos v foursuperior 30; pos v nineinferior -20; pos v ninesuperior 30; pos v oneinferior -32; pos v onesuperior 8; pos v parenright -10; pos v registered 56; pos v seveninferior -10; pos v sixinferior -42; pos v sixsuperior 30; pos v slash -15; pos v threeinferior -22; pos v threesuperior 18; pos v trademark 20; pos v twoinferior -12; pos v twosuperior 20; pos v underscore -70; pos v v 19; pos v zeroinferior -20; pos v zerosuperior 30; pos x V -20; pos x ampersand -20; pos x at -10; pos x eightinferior -6; pos x eightsuperior 12; pos x fivesuperior 10; pos x foursuperior 20; pos x nineinferior -20; pos x ninesuperior 4; pos x registered 20; pos x seveninferior -10; pos x sixinferior -8; pos x sixsuperior 12; pos x threeinferior 7; pos x trademark 10; pos x twoinferior 10; pos x twosuperior 2; pos x underscore 20; pos x zerosuperior 22; pos zeroinferior V -54; pos zeroinferior X 13; pos zeroinferior fiveinferior -1; pos zeroinferior oneinferior -2; pos zeroinferior uni0405 10; pos zeroinferior uni0408 12; pos zeroinferior uni0414 6; pos zeroinferior uni0431 17; pos zeroinferior uni0434 -2; pos zeroinferior uni0444 10; pos zeroinferior uni044F 6; pos zeroinferior uni0455 7; pos zeroinferior uni0492 18; pos zeroinferior uni0493 16; pos zeroinferior uni04AE -80; pos zeroinferior uni04AF -26; pos zeroinferior uni04B0 -68; pos zeroinferior uni04B1 -26; pos zeroinferior uni04D4 20; pos zeroinferior v -20; pos zerosuperior V 20; pos zerosuperior X 12; pos zerosuperior b 21; pos zerosuperior fivesuperior -1; pos zerosuperior germandbls.alt01 12; pos zerosuperior jcircumflex 6; pos zerosuperior onesuperior -2; pos zerosuperior p 20; pos zerosuperior thorn 21; pos zerosuperior uni0408 -52; pos zerosuperior uni0414 -54; pos zerosuperior uni0424 6; pos zerosuperior uni042F -9; pos zerosuperior uni0434 -26; pos zerosuperior uni0440 20; pos zerosuperior uni0444 -12; pos zerosuperior uni044F -9; pos zerosuperior uni0457 4; pos zerosuperior uni0492 12; pos zerosuperior uni04AE 8; pos zerosuperior uni04AF 30; pos zerosuperior uni04B0 8; pos zerosuperior uni04B1 30; pos zerosuperior uni04D4 -54; pos zerosuperior v 30; pos zerosuperior x 22; # glyph, glyph exceptions: pos F AE -78; pos F AEacute -78; pos F ibreve -8; pos F icircumflex -8; pos F idieresis -8; pos F imacron -8; pos F itilde -8; pos F jcircumflex -8; pos Lcaron V -7; pos P AE -84; pos P AEacute -84; pos Thorn AE -40; pos Thorn AEacute -40; pos V AE -75; pos V AEacute -75; pos V idieresis 11; pos V imacron 10; pos V itilde 3; pos ibreve V 10; pos icircumflex V 16; pos idieresis V 20; pos imacron V 20; pos itilde V 12; pos jcircumflex V 15; pos parenleft hcircumflex 36; pos sevensuperior icircumflex 2; pos tcaron X 30; pos threesuperior jcircumflex 4; pos uni0490 uni0430 -126; pos uni0490 uni0430.alt01 -139; pos uni0490 uni0435 -121; pos uni0490 uni0437 -106; pos uni0490 uni043E -121; pos uni0490 uni0441 -121; pos uni0490 uni0447 -118; pos uni0490 uni044D -106; pos uni0490 uni0450 -87; pos uni0490 uni0451 -71; pos uni0490 uni0454 -121; pos uni0490 uni0456 -25; pos uni0490 uni0473 -121; pos uni0490 uni0499 -106; pos uni0490 uni04AB -121; pos uni0490 uni04B7 -118; pos uni0490 uni04B9 -118; pos uni0490 uni04D1 -60; pos uni0490 uni04D3 -60; pos uni0490 uni04D5 -126; pos uni0490 uni04D7 -55; pos uni0490 uni04D9 -121; pos uni0490 uni04DF -68; pos uni0490 uni04E7 -71; pos uni0490 uni04E9 -121; pos uni0490 uni04F5 -118; pos uni04AE uni0457 10; pos uni04B0 uni0457 10; # glyph, group exceptions: enum pos Aogonek @MMK_R_inp_parenth 16; enum pos Aogonek @MMK_R_lc_j 4; enum pos Eogonek @MMK_R_lc_j -6; enum pos Lcaron @MMK_R_inp_quotel -12; enum pos Lcaron @MMK_R_inp_quoter -10; enum pos Lcaron @MMK_R_uc_t -11; enum pos Lcaron @MMK_R_uc_w -7; enum pos Lcaron @MMK_R_uc_y -9; enum pos aogonek @MMK_R_lc_j -1; enum pos aogonek.alt01 @MMK_R_lc_j -1; enum pos comma @MMK_R_cyr_lc_ucyrillic -46; enum pos comma @MMK_R_lc_j 10; enum pos comma @MMK_R_lc_y -2; enum pos ibreve @MMK_R_uc_w 10; enum pos ibreve @MMK_R_uc_y 10; enum pos icircumflex @MMK_R_uc_t 16; enum pos idieresis @MMK_R_uc_t 16; enum pos idieresis @MMK_R_uc_w 20; enum pos idieresis @MMK_R_uc_y 25; enum pos ij @MMK_R_uc_y -20; enum pos ijacute @MMK_R_uc_y -12; enum pos imacron @MMK_R_uc_t 16; enum pos imacron @MMK_R_uc_w 15; enum pos imacron @MMK_R_uc_y 20; enum pos iogonek @MMK_R_lc_j -1; enum pos itilde @MMK_R_uc_t 16; enum pos itilde @MMK_R_uc_w 20; enum pos itilde @MMK_R_uc_y 20; enum pos jacute @MMK_R_uc_y -5; enum pos jcircumflex @MMK_R_inp_foot 6; enum pos jcircumflex @MMK_R_uc_t 8; enum pos jcircumflex @MMK_R_uc_w 20; enum pos jcircumflex @MMK_R_uc_y 15; enum pos lslash @MMK_R_inp_quoter 4; enum pos quotedblbase @MMK_R_cyr_lc_ucyrillic -46; enum pos quotedblbase @MMK_R_lc_j 12; enum pos quotedblbase @MMK_R_lc_y -2; enum pos quotesinglbase @MMK_R_cyr_lc_ucyrillic -46; enum pos quotesinglbase @MMK_R_lc_j 12; enum pos quotesinglbase @MMK_R_lc_y -2; enum pos tbar @MMK_R_inp_guill 30; enum pos tbar @MMK_R_inp_hyph 20; enum pos tbar @MMK_R_lc_d 12; enum pos tbar @MMK_R_lc_o 12; enum pos tcaron @MMK_R_inp_foot 40; enum pos tcaron @MMK_R_inp_parenth 36; enum pos tcaron @MMK_R_inp_quoter 8; enum pos tcaron @MMK_R_lc_h 18; enum pos tcaron @MMK_R_uc_w 34; enum pos tcaron @MMK_R_uc_y 24; enum pos tcedilla @MMK_R_lc_j 2; enum pos tcommaaccent @MMK_R_lc_j 2; enum pos uni0431 @MMK_R_cyr_uc_Hardsigncyrillic -20; enum pos uni0431 @MMK_R_cyr_uc_Tecyrillic -20; enum pos uni0431 @MMK_R_cyr_uc_Ucyrillic -26; enum pos uni0431 @MMK_R_inp_quotel -27; enum pos uni0431 @MMK_R_inp_quoter -2; enum pos uni0432 @MMK_R_cyr_lc_elcyrillic 3; enum pos uni0437 @MMK_R_cyr_lc_elcyrillic 5; enum pos uni0457 @MMK_R_cyr_lc_djecyrillic 10; enum pos uni0457 @MMK_R_cyr_lc_shhacyrillic 10; enum pos uni0457 @MMK_R_cyr_uc_Checyrillic 18; enum pos uni0457 @MMK_R_cyr_uc_Encyrillic 9; enum pos uni0457 @MMK_R_cyr_uc_Hardsigncyrillic 18; enum pos uni0457 @MMK_R_cyr_uc_Tecyrillic 18; enum pos uni0457 @MMK_R_cyr_uc_Ucyrillic 4; enum pos uni0457 @MMK_R_cyr_uc_Zhecyrillic 2; enum pos uni0457 @MMK_R_inp_foot 15; enum pos uni0457 @MMK_R_inp_parenth 12; enum pos uni0457 @MMK_R_inp_quotel 2; enum pos uni0457 @MMK_R_inp_quoter 25; enum pos uni0490 @MMK_R_cyr_lc_elcyrillic -124; enum pos uni0490 @MMK_R_cyr_lc_encyrillic -114; enum pos uni0490 @MMK_R_cyr_lc_khacyrillic -106; enum pos uni0490 @MMK_R_cyr_lc_tecyrillic -102; enum pos uni0490 @MMK_R_cyr_lc_ucyrillic -90; enum pos uni0490 @MMK_R_cyr_lc_zhecyrillic -106; enum pos uni0490 @MMK_R_cyr_uc_Acyrillic -109; enum pos uni0490 @MMK_R_cyr_uc_Elcyrillic -58; enum pos uni0490 @MMK_R_cyr_uc_Ocyrillic -45; enum pos uni0490 @MMK_R_cyr_uc_Zecyrillic -13; enum pos uni0490 @MMK_R_cyr_uc_Zhecyrillic -6; enum pos uni0490 @MMK_R_inp_colon -52; enum pos uni0490 @MMK_R_inp_guill -93; enum pos uni0490 @MMK_R_inp_guilr -73; enum pos uni0490 @MMK_R_inp_hyph -136; enum pos uni0490 @MMK_R_inp_period -136; enum pos uni0490 @MMK_R_inp_quotel 6; enum pos uni0491 @MMK_R_cyr_lc_acyrillic -12; enum pos uni0491 @MMK_R_cyr_lc_acyrillic.alt01 -31; enum pos uni0491 @MMK_R_cyr_lc_elcyrillic -9; enum pos uni0491 @MMK_R_cyr_lc_ocyrillic -31; enum pos uni0491 @MMK_R_cyr_lc_zecyrilic -2; enum pos uni0491 @MMK_R_cyr_lc_zhecyrillic -5; enum pos uni0491 @MMK_R_inp_guill -8; enum pos uni0491 @MMK_R_inp_hyph -38; enum pos uni0491 @MMK_R_inp_quotel 8; enum pos uni0491 @MMK_R_inp_quoter 17; enum pos uogonek @MMK_R_lc_j 2; # group, glyph exceptions: enum pos @MMK_L_cyr_uc_Gecyrillic uni0457 22; enum pos @MMK_L_cyr_uc_Kacyrillic uni0457 2; enum pos @MMK_L_cyr_uc_Kadescendercyrillic uni0457 2; enum pos @MMK_L_cyr_uc_Ucyrillic uni0451 -34; enum pos @MMK_L_cyr_uc_Ucyrillic uni0457 4; enum pos @MMK_L_cyr_uc_Ucyrillic uni04D1 -32; enum pos @MMK_L_cyr_uc_Ucyrillic uni04D3 -32; enum pos @MMK_L_cyr_uc_Ucyrillic uni04D7 -34; enum pos @MMK_L_cyr_uc_Ucyrillic uni04E7 -34; enum pos @MMK_L_cyr_uc_Zecyrillic uni04D8 -3; enum pos @MMK_L_inp_foot uni0457 4; enum pos @MMK_L_inp_guilr AE -4; enum pos @MMK_L_inp_guilr AEacute -4; enum pos @MMK_L_inp_quotel AE -124; enum pos @MMK_L_inp_quotel AEacute -124; enum pos @MMK_L_inp_quotel uni0457 14; enum pos @MMK_L_inp_quoter AE -129; enum pos @MMK_L_inp_quoter AEacute -129; enum pos @MMK_L_inp_quoter ibreve 28; enum pos @MMK_L_inp_quoter icircumflex 30; enum pos @MMK_L_inp_quoter idieresis 30; enum pos @MMK_L_inp_quoter imacron 28; enum pos @MMK_L_inp_quoter itilde 30; enum pos @MMK_L_inp_quoter uni0457 13; enum pos @MMK_L_lc_f ibreve 3; enum pos @MMK_L_lc_f icircumflex 16; enum pos @MMK_L_lc_f idieresis 16; enum pos @MMK_L_lc_f igrave 15; enum pos @MMK_L_lc_f imacron 11; enum pos @MMK_L_lc_f itilde 5; enum pos @MMK_L_lc_f jcircumflex 16; enum pos @MMK_L_lc_f lslash -4; enum pos @MMK_L_uc_d AE -35; enum pos @MMK_L_uc_d AEacute -35; enum pos @MMK_L_uc_j AE -28; enum pos @MMK_L_uc_j AEacute -28; enum pos @MMK_L_uc_o AE -23; enum pos @MMK_L_uc_o AEacute -23; enum pos @MMK_L_uc_t AE -65; enum pos @MMK_L_uc_t AEacute -65; enum pos @MMK_L_uc_t icircumflex 8; enum pos @MMK_L_uc_t idieresis 8; enum pos @MMK_L_uc_t imacron 8; enum pos @MMK_L_uc_t itilde 8; enum pos @MMK_L_uc_t jcircumflex 3; enum pos @MMK_L_uc_u AE -35; enum pos @MMK_L_uc_u AEacute -35; enum pos @MMK_L_uc_uhorn AE -40; enum pos @MMK_L_uc_uhorn AEacute -40; enum pos @MMK_L_uc_w AE -55; enum pos @MMK_L_uc_w AEacute -55; enum pos @MMK_L_uc_w icircumflex -1; enum pos @MMK_L_uc_w idieresis 2; enum pos @MMK_L_uc_y AE -80; enum pos @MMK_L_uc_y AEacute -80; enum pos @MMK_L_uc_y idieresis 10; enum pos @MMK_L_uc_y imacron 6; enum pos @MMK_L_uc_y itilde 10; enum pos @MMK_L_uc_y jcircumflex -15; # glyph, group: pos B @MMK_R_inp_foot -20; pos B @MMK_R_inp_guill 20; pos B @MMK_R_inp_guilr -10; pos B @MMK_R_inp_period -31; pos B @MMK_R_inp_quotel -20; pos B @MMK_R_inp_quoter -20; pos B @MMK_R_lc_f -5; pos B @MMK_R_lc_g -10; pos B @MMK_R_lc_t -5; pos B @MMK_R_lc_u -10; pos B @MMK_R_lc_w -10; pos B @MMK_R_lc_y -5; pos B @MMK_R_lc_z -16; pos B @MMK_R_uc_a -19; pos B @MMK_R_uc_j -8; pos B @MMK_R_uc_t -20; pos B @MMK_R_uc_w -25; pos B @MMK_R_uc_y -30; pos B @MMK_R_uc_z -21; pos F @MMK_R_inp_foot 6; pos F @MMK_R_inp_guill -32; pos F @MMK_R_inp_guilr -20; pos F @MMK_R_inp_hyph -20; pos F @MMK_R_inp_period -100; pos F @MMK_R_inp_quotel 12; pos F @MMK_R_inp_quoter 8; pos F @MMK_R_lc_a -40; pos F @MMK_R_lc_d -37; pos F @MMK_R_lc_f -5; pos F @MMK_R_lc_g -42; pos F @MMK_R_lc_i -25; pos F @MMK_R_lc_j -25; pos F @MMK_R_lc_n -25; pos F @MMK_R_lc_o -42; pos F @MMK_R_lc_s -32; pos F @MMK_R_lc_t -5; pos F @MMK_R_lc_u -25; pos F @MMK_R_lc_w -10; pos F @MMK_R_lc_y -8; pos F @MMK_R_lc_z -26; pos F @MMK_R_uc_a -56; pos F @MMK_R_uc_j -59; pos F @MMK_R_uc_o -17; pos Germandbls @MMK_R_inp_foot -13; pos Germandbls @MMK_R_inp_guill 40; pos Germandbls @MMK_R_inp_hyph 12; pos Germandbls @MMK_R_inp_period -10; pos Germandbls @MMK_R_inp_quotel -30; pos Germandbls @MMK_R_inp_quoter -20; pos Germandbls @MMK_R_lc_g -2; pos Germandbls @MMK_R_lc_t -2; pos Germandbls @MMK_R_lc_w -12; pos Germandbls @MMK_R_lc_y -12; pos Germandbls @MMK_R_lc_z -12; pos Germandbls @MMK_R_uc_a -13; pos Germandbls @MMK_R_uc_o -3; pos Germandbls @MMK_R_uc_t -16; pos Germandbls @MMK_R_uc_u -12; pos Germandbls @MMK_R_uc_w -20; pos Germandbls @MMK_R_uc_y -18; pos Germandbls @MMK_R_uc_z -20; pos P @MMK_R_inp_foot 9; pos P @MMK_R_inp_hyph -10; pos P @MMK_R_inp_period -130; pos P @MMK_R_inp_quotel 12; pos P @MMK_R_inp_quoter 12; pos P @MMK_R_lc_a -15; pos P @MMK_R_lc_d -21; pos P @MMK_R_lc_g -25; pos P @MMK_R_lc_n -10; pos P @MMK_R_lc_o -21; pos P @MMK_R_lc_s -20; pos P @MMK_R_lc_w 8; pos P @MMK_R_lc_y 14; pos P @MMK_R_lc_z -8; pos P @MMK_R_uc_a -48; pos P @MMK_R_uc_j -42; pos P @MMK_R_uc_t 2; pos P @MMK_R_uc_w 5; pos P @MMK_R_uc_z -2; pos Thorn @MMK_R_inp_foot -20; pos Thorn @MMK_R_inp_guill 30; pos Thorn @MMK_R_inp_guilr 5; pos Thorn @MMK_R_inp_hyph 30; pos Thorn @MMK_R_inp_period -60; pos Thorn @MMK_R_inp_quotel -20; pos Thorn @MMK_R_inp_quoter -2; pos Thorn @MMK_R_lc_a -5; pos Thorn @MMK_R_lc_g -10; pos Thorn @MMK_R_lc_s 8; pos Thorn @MMK_R_lc_w 8; pos Thorn @MMK_R_lc_y 10; pos Thorn @MMK_R_uc_a -20; pos Thorn @MMK_R_uc_j -25; pos Thorn @MMK_R_uc_w -3; pos Thorn @MMK_R_uc_y -37; pos V @MMK_R_inp_colon -20; pos V @MMK_R_inp_foot 20; pos V @MMK_R_inp_guill -41; pos V @MMK_R_inp_guilr -22; pos V @MMK_R_inp_hyph -25; pos V @MMK_R_inp_period -70; pos V @MMK_R_inp_quotel 20; pos V @MMK_R_inp_quoter 24; pos V @MMK_R_lc_a -67; pos V @MMK_R_lc_d -57; pos V @MMK_R_lc_f -20; pos V @MMK_R_lc_g -60; pos V @MMK_R_lc_i -20; pos V @MMK_R_lc_j -20; pos V @MMK_R_lc_n -55; pos V @MMK_R_lc_o -58; pos V @MMK_R_lc_s -55; pos V @MMK_R_lc_t -20; pos V @MMK_R_lc_u -20; pos V @MMK_R_lc_w -12; pos V @MMK_R_lc_y -12; pos V @MMK_R_lc_z -30; pos V @MMK_R_uc_a -52; pos V @MMK_R_uc_j -49; pos V @MMK_R_uc_o -23; pos V @MMK_R_uc_s -10; pos V @MMK_R_uc_t 19; pos V @MMK_R_uc_w 10; pos V @MMK_R_uc_y 9; pos X @MMK_R_inp_foot 16; pos X @MMK_R_inp_guill -42; pos X @MMK_R_inp_guilr -20; pos X @MMK_R_inp_hyph -40; pos X @MMK_R_inp_period 11; pos X @MMK_R_inp_quotel 16; pos X @MMK_R_inp_quoter 16; pos X @MMK_R_lc_a -10; pos X @MMK_R_lc_d -17; pos X @MMK_R_lc_g -10; pos X @MMK_R_lc_o -17; pos X @MMK_R_lc_s -5; pos X @MMK_R_lc_t -10; pos X @MMK_R_lc_u -20; pos X @MMK_R_lc_w -22; pos X @MMK_R_lc_y -12; pos X @MMK_R_lc_z 6; pos X @MMK_R_uc_a 17; pos X @MMK_R_uc_j 18; pos X @MMK_R_uc_o -18; pos X @MMK_R_uc_t 16; pos ampersand @MMK_R_cyr_lc_acyrillic -6; pos ampersand @MMK_R_cyr_lc_acyrillic.alt01 -4; pos ampersand @MMK_R_cyr_lc_checyrillic -30; pos ampersand @MMK_R_cyr_lc_elcyrillic 14; pos ampersand @MMK_R_cyr_lc_ocyrillic -4; pos ampersand @MMK_R_cyr_lc_tecyrillic -14; pos ampersand @MMK_R_cyr_lc_ucyrillic -10; pos ampersand @MMK_R_cyr_lc_zecyrilic -4; pos ampersand @MMK_R_cyr_lc_zhecyrillic 3; pos ampersand @MMK_R_cyr_uc_Checyrillic -48; pos ampersand @MMK_R_cyr_uc_Elcyrillic 18; pos ampersand @MMK_R_cyr_uc_Hardsigncyrillic -52; pos ampersand @MMK_R_cyr_uc_Ocyrillic 12; pos ampersand @MMK_R_cyr_uc_Tecyrillic -52; pos ampersand @MMK_R_cyr_uc_Ucyrillic -50; pos ampersand @MMK_R_cyr_uc_Zecyrillic -14; pos ampersand @MMK_R_cyr_uc_Zhecyrillic 6; pos ampersand @MMK_R_lc_d 6; pos ampersand @MMK_R_lc_t -5; pos ampersand @MMK_R_lc_w -10; pos ampersand @MMK_R_lc_y -10; pos ampersand @MMK_R_uc_j 10; pos ampersand @MMK_R_uc_o 12; pos ampersand @MMK_R_uc_t -52; pos ampersand @MMK_R_uc_u -2; pos ampersand @MMK_R_uc_w -14; pos ampersand @MMK_R_uc_y -54; pos ampersand @MMK_R_uc_z -2; pos at @MMK_R_cyr_lc_elcyrillic -10; pos at @MMK_R_cyr_lc_khacyrillic -10; pos at @MMK_R_cyr_lc_tecyrillic 4; pos at @MMK_R_cyr_lc_ucyrillic -10; pos at @MMK_R_cyr_lc_zecyrilic -3; pos at @MMK_R_cyr_lc_zhecyrillic -9; pos at @MMK_R_cyr_uc_Acyrillic -20; pos at @MMK_R_cyr_uc_Checyrillic -26; pos at @MMK_R_cyr_uc_Elcyrillic -16; pos at @MMK_R_cyr_uc_Hardsigncyrillic -38; pos at @MMK_R_cyr_uc_Khacyrillic -30; pos at @MMK_R_cyr_uc_Tecyrillic -38; pos at @MMK_R_cyr_uc_Ucyrillic -42; pos at @MMK_R_cyr_uc_Zecyrillic -12; pos at @MMK_R_cyr_uc_Zhecyrillic -47; pos at @MMK_R_lc_y -2; pos at @MMK_R_uc_a -20; pos at @MMK_R_uc_j -22; pos at @MMK_R_uc_s -11; pos at @MMK_R_uc_t -38; pos at @MMK_R_uc_w -30; pos at @MMK_R_uc_y -60; pos at @MMK_R_uc_z -30; pos braceleft @MMK_R_lc_j 78; pos bracketleft @MMK_R_cyr_lc_checyrillic -18; pos bracketleft @MMK_R_cyr_lc_tecyrillic -6; pos bracketleft @MMK_R_cyr_uc_Elcyrillic -6; pos bracketleft @MMK_R_lc_j 78; pos bracketright @MMK_R_lc_j 13; pos eightinferior @MMK_R_cyr_lc_acyrillic 10; pos eightinferior @MMK_R_cyr_lc_acyrillic.alt01 9; pos eightinferior @MMK_R_cyr_lc_checyrillic -22; pos eightinferior @MMK_R_cyr_lc_elcyrillic 22; pos eightinferior @MMK_R_cyr_lc_khacyrillic -6; pos eightinferior @MMK_R_cyr_lc_ocyrillic 13; pos eightinferior @MMK_R_cyr_lc_tecyrillic -33; pos eightinferior @MMK_R_cyr_lc_ucyrillic -27; pos eightinferior @MMK_R_cyr_lc_zhecyrillic -4; pos eightinferior @MMK_R_cyr_uc_Acyrillic 12; pos eightinferior @MMK_R_cyr_uc_Checyrillic -39; pos eightinferior @MMK_R_cyr_uc_Elcyrillic 16; pos eightinferior @MMK_R_cyr_uc_Hardsigncyrillic -62; pos eightinferior @MMK_R_cyr_uc_Khacyrillic 10; pos eightinferior @MMK_R_cyr_uc_Ocyrillic 4; pos eightinferior @MMK_R_cyr_uc_Tecyrillic -62; pos eightinferior @MMK_R_cyr_uc_Ucyrillic -42; pos eightinferior @MMK_R_lc_a 10; pos eightinferior @MMK_R_lc_d 10; pos eightinferior @MMK_R_lc_f -10; pos eightinferior @MMK_R_lc_g -5; pos eightinferior @MMK_R_lc_o 13; pos eightinferior @MMK_R_lc_t -10; pos eightinferior @MMK_R_lc_w -29; pos eightinferior @MMK_R_lc_y -27; pos eightinferior @MMK_R_lc_z 8; pos eightinferior @MMK_R_uc_a 4; pos eightinferior @MMK_R_uc_j 10; pos eightinferior @MMK_R_uc_t -62; pos eightinferior @MMK_R_uc_u -6; pos eightinferior @MMK_R_uc_w -42; pos eightinferior @MMK_R_uc_y -80; pos eightinferior @MMK_R_uc_z -2; pos eightsuperior @MMK_R_cyr_lc_acyrillic 10; pos eightsuperior @MMK_R_cyr_lc_checyrillic 9; pos eightsuperior @MMK_R_cyr_lc_elcyrillic -49; pos eightsuperior @MMK_R_cyr_lc_khacyrillic 12; pos eightsuperior @MMK_R_cyr_lc_shhacyrillic 11; pos eightsuperior @MMK_R_cyr_lc_tecyrillic 10; pos eightsuperior @MMK_R_cyr_lc_ucyrillic 28; pos eightsuperior @MMK_R_cyr_lc_zhecyrillic 2; pos eightsuperior @MMK_R_cyr_uc_Acyrillic -64; pos eightsuperior @MMK_R_cyr_uc_Checyrillic 10; pos eightsuperior @MMK_R_cyr_uc_Elcyrillic -74; pos eightsuperior @MMK_R_cyr_uc_Hardsigncyrillic 20; pos eightsuperior @MMK_R_cyr_uc_Tecyrillic 20; pos eightsuperior @MMK_R_cyr_uc_Ucyrillic -6; pos eightsuperior @MMK_R_cyr_uc_Zhecyrillic -17; pos eightsuperior @MMK_R_inp_period -50; pos eightsuperior @MMK_R_lc_a 10; pos eightsuperior @MMK_R_lc_f 8; pos eightsuperior @MMK_R_lc_g -5; pos eightsuperior @MMK_R_lc_h 11; pos eightsuperior @MMK_R_lc_i 4; pos eightsuperior @MMK_R_lc_n 20; pos eightsuperior @MMK_R_lc_t 20; pos eightsuperior @MMK_R_lc_u 20; pos eightsuperior @MMK_R_lc_w 24; pos eightsuperior @MMK_R_lc_y 28; pos eightsuperior @MMK_R_lc_z 20; pos eightsuperior @MMK_R_uc_a -64; pos eightsuperior @MMK_R_uc_j -52; pos eightsuperior @MMK_R_uc_t 20; pos eightsuperior @MMK_R_uc_w 10; pos eightsuperior @MMK_R_uc_z -10; pos eth @MMK_R_inp_foot -20; pos eth @MMK_R_inp_guill 20; pos eth @MMK_R_inp_hyph 20; pos eth @MMK_R_inp_period -3; pos eth @MMK_R_inp_quotel -46; pos eth @MMK_R_inp_quoter -46; pos eth @MMK_R_uc_a -16; pos eth @MMK_R_uc_t -50; pos eth @MMK_R_uc_y -30; pos exclamdown @MMK_R_cyr_lc_acyrillic -3; pos exclamdown @MMK_R_cyr_uc_Acyrillic 28; pos exclamdown @MMK_R_lc_a -1; pos exclamdown @MMK_R_lc_j 30; pos exclamdown @MMK_R_lc_w -2; pos exclamdown @MMK_R_uc_a 28; pos exclamdown @MMK_R_uc_w -16; pos exclamdown @MMK_R_uc_y -32; pos fiveinferior @MMK_R_cyr_lc_acyrillic.alt01 4; pos fiveinferior @MMK_R_cyr_lc_checyrillic -24; pos fiveinferior @MMK_R_cyr_lc_elcyrillic 22; pos fiveinferior @MMK_R_cyr_lc_ocyrillic 4; pos fiveinferior @MMK_R_cyr_lc_tecyrillic -23; pos fiveinferior @MMK_R_cyr_lc_ucyrillic -17; pos fiveinferior @MMK_R_cyr_uc_Checyrillic -41; pos fiveinferior @MMK_R_cyr_uc_Elcyrillic 16; pos fiveinferior @MMK_R_cyr_uc_Hardsigncyrillic -52; pos fiveinferior @MMK_R_cyr_uc_Ocyrillic -2; pos fiveinferior @MMK_R_cyr_uc_Tecyrillic -52; pos fiveinferior @MMK_R_cyr_uc_Ucyrillic -44; pos fiveinferior @MMK_R_inp_period -2; pos fiveinferior @MMK_R_lc_d 14; pos fiveinferior @MMK_R_lc_f -10; pos fiveinferior @MMK_R_lc_g -10; pos fiveinferior @MMK_R_lc_o 4; pos fiveinferior @MMK_R_lc_t -10; pos fiveinferior @MMK_R_lc_u -2; pos fiveinferior @MMK_R_lc_w -14; pos fiveinferior @MMK_R_lc_y -17; pos fiveinferior @MMK_R_uc_j 10; pos fiveinferior @MMK_R_uc_o -2; pos fiveinferior @MMK_R_uc_t -52; pos fiveinferior @MMK_R_uc_w -32; pos fiveinferior @MMK_R_uc_y -80; pos fiveinferior @MMK_R_uc_z -3; pos fivesuperior @MMK_R_cyr_lc_checyrillic 6; pos fivesuperior @MMK_R_cyr_lc_elcyrillic -47; pos fivesuperior @MMK_R_cyr_lc_icyrillic 4; pos fivesuperior @MMK_R_cyr_lc_khacyrillic 12; pos fivesuperior @MMK_R_cyr_lc_shhacyrillic 11; pos fivesuperior @MMK_R_cyr_lc_tecyrillic 14; pos fivesuperior @MMK_R_cyr_lc_ucyrillic 28; pos fivesuperior @MMK_R_cyr_lc_zhecyrillic 7; pos fivesuperior @MMK_R_cyr_uc_Acyrillic -54; pos fivesuperior @MMK_R_cyr_uc_Checyrillic 4; pos fivesuperior @MMK_R_cyr_uc_Elcyrillic -82; pos fivesuperior @MMK_R_cyr_uc_Hardsigncyrillic 5; pos fivesuperior @MMK_R_cyr_uc_Khacyrillic 6; pos fivesuperior @MMK_R_cyr_uc_Ocyrillic -5; pos fivesuperior @MMK_R_cyr_uc_Tecyrillic 5; pos fivesuperior @MMK_R_cyr_uc_Ucyrillic -6; pos fivesuperior @MMK_R_cyr_uc_Zhecyrillic -15; pos fivesuperior @MMK_R_inp_period -50; pos fivesuperior @MMK_R_lc_f 10; pos fivesuperior @MMK_R_lc_g -2; pos fivesuperior @MMK_R_lc_h 11; pos fivesuperior @MMK_R_lc_i 4; pos fivesuperior @MMK_R_lc_n 20; pos fivesuperior @MMK_R_lc_t 20; pos fivesuperior @MMK_R_lc_u 20; pos fivesuperior @MMK_R_lc_w 20; pos fivesuperior @MMK_R_lc_y 28; pos fivesuperior @MMK_R_lc_z 20; pos fivesuperior @MMK_R_uc_a -54; pos fivesuperior @MMK_R_uc_j -47; pos fivesuperior @MMK_R_uc_o -5; pos fivesuperior @MMK_R_uc_s -2; pos fivesuperior @MMK_R_uc_t 5; pos fivesuperior @MMK_R_uc_w 15; pos fivesuperior @MMK_R_uc_z -2; pos fourinferior @MMK_R_cyr_lc_acyrillic 10; pos fourinferior @MMK_R_cyr_lc_acyrillic.alt01 8; pos fourinferior @MMK_R_cyr_lc_checyrillic -36; pos fourinferior @MMK_R_cyr_lc_elcyrillic 26; pos fourinferior @MMK_R_cyr_lc_khacyrillic 10; pos fourinferior @MMK_R_cyr_lc_ocyrillic 8; pos fourinferior @MMK_R_cyr_lc_tecyrillic -14; pos fourinferior @MMK_R_cyr_lc_ucyrillic -17; pos fourinferior @MMK_R_cyr_lc_zecyrilic 4; pos fourinferior @MMK_R_cyr_lc_zhecyrillic 6; pos fourinferior @MMK_R_cyr_uc_Acyrillic 10; pos fourinferior @MMK_R_cyr_uc_Checyrillic -44; pos fourinferior @MMK_R_cyr_uc_Elcyrillic 34; pos fourinferior @MMK_R_cyr_uc_Hardsigncyrillic -55; pos fourinferior @MMK_R_cyr_uc_Khacyrillic 4; pos fourinferior @MMK_R_cyr_uc_Ocyrillic 8; pos fourinferior @MMK_R_cyr_uc_Tecyrillic -55; pos fourinferior @MMK_R_cyr_uc_Ucyrillic -41; pos fourinferior @MMK_R_cyr_uc_Zhecyrillic 6; pos fourinferior @MMK_R_lc_a 10; pos fourinferior @MMK_R_lc_d 2; pos fourinferior @MMK_R_lc_f -10; pos fourinferior @MMK_R_lc_g -14; pos fourinferior @MMK_R_lc_n -10; pos fourinferior @MMK_R_lc_s 5; pos fourinferior @MMK_R_lc_t -10; pos fourinferior @MMK_R_lc_w -27; pos fourinferior @MMK_R_lc_y -17; pos fourinferior @MMK_R_lc_z 2; pos fourinferior @MMK_R_uc_a 10; pos fourinferior @MMK_R_uc_j 12; pos fourinferior @MMK_R_uc_t -55; pos fourinferior @MMK_R_uc_w -40; pos fourinferior @MMK_R_uc_y -70; pos foursuperior @MMK_R_cyr_lc_acyrillic 6; pos foursuperior @MMK_R_cyr_lc_checyrillic 9; pos foursuperior @MMK_R_cyr_lc_elcyrillic -43; pos foursuperior @MMK_R_cyr_lc_encyrillic 6; pos foursuperior @MMK_R_cyr_lc_icyrillic 4; pos foursuperior @MMK_R_cyr_lc_khacyrillic 12; pos foursuperior @MMK_R_cyr_lc_shhacyrillic 7; pos foursuperior @MMK_R_cyr_lc_tecyrillic 21; pos foursuperior @MMK_R_cyr_lc_ucyrillic 12; pos foursuperior @MMK_R_cyr_lc_zhecyrillic 11; pos foursuperior @MMK_R_cyr_uc_Acyrillic -46; pos foursuperior @MMK_R_cyr_uc_Checyrillic 6; pos foursuperior @MMK_R_cyr_uc_Elcyrillic -79; pos foursuperior @MMK_R_cyr_uc_Hardsigncyrillic 10; pos foursuperior @MMK_R_cyr_uc_Khacyrillic -5; pos foursuperior @MMK_R_cyr_uc_Tecyrillic 10; pos foursuperior @MMK_R_cyr_uc_Ucyrillic -4; pos foursuperior @MMK_R_cyr_uc_Zhecyrillic -12; pos foursuperior @MMK_R_inp_period -60; pos foursuperior @MMK_R_lc_a 2; pos foursuperior @MMK_R_lc_f 2; pos foursuperior @MMK_R_lc_h 2; pos foursuperior @MMK_R_lc_i 4; pos foursuperior @MMK_R_lc_n 2; pos foursuperior @MMK_R_lc_t 20; pos foursuperior @MMK_R_lc_u 4; pos foursuperior @MMK_R_lc_w 30; pos foursuperior @MMK_R_lc_y 12; pos foursuperior @MMK_R_lc_z 20; pos foursuperior @MMK_R_uc_a -46; pos foursuperior @MMK_R_uc_j -55; pos foursuperior @MMK_R_uc_s -8; pos foursuperior @MMK_R_uc_t 10; pos foursuperior @MMK_R_uc_w 20; pos foursuperior @MMK_R_uc_z -10; pos germandbls @MMK_R_inp_foot -34; pos germandbls @MMK_R_inp_guill 10; pos germandbls @MMK_R_inp_guilr -2; pos germandbls @MMK_R_inp_hyph -20; pos germandbls @MMK_R_inp_quotel -40; pos germandbls @MMK_R_inp_quoter -40; pos germandbls @MMK_R_lc_a 6; pos germandbls @MMK_R_lc_t -10; pos germandbls @MMK_R_lc_w -17; pos germandbls @MMK_R_lc_y -16; pos germandbls @MMK_R_lc_z -10; pos germandbls @MMK_R_uc_a 6; pos germandbls @MMK_R_uc_j 10; pos germandbls @MMK_R_uc_o -4; pos germandbls @MMK_R_uc_t -36; pos germandbls @MMK_R_uc_w -32; pos germandbls @MMK_R_uc_y -44; pos germandbls @MMK_R_uc_z -12; pos germandbls.alt01 @MMK_R_inp_foot -2; pos germandbls.alt01 @MMK_R_inp_guilr -2; pos germandbls.alt01 @MMK_R_inp_hyph -20; pos germandbls.alt01 @MMK_R_inp_period 28; pos germandbls.alt01 @MMK_R_inp_quoter 16; pos germandbls.alt01 @MMK_R_lc_a 10; pos germandbls.alt01 @MMK_R_lc_d -3; pos germandbls.alt01 @MMK_R_lc_f 17; pos germandbls.alt01 @MMK_R_lc_g 10; pos germandbls.alt01 @MMK_R_lc_j 22; pos germandbls.alt01 @MMK_R_lc_o -2; pos germandbls.alt01 @MMK_R_lc_s 10; pos germandbls.alt01 @MMK_R_lc_t -6; pos germandbls.alt01 @MMK_R_lc_w -2; pos germandbls.alt01 @MMK_R_lc_y 16; pos germandbls.alt01 @MMK_R_lc_z 6; pos germandbls.alt01 @MMK_R_uc_a 53; pos germandbls.alt01 @MMK_R_uc_h 24; pos germandbls.alt01 @MMK_R_uc_j 44; pos germandbls.alt01 @MMK_R_uc_o 14; pos germandbls.alt01 @MMK_R_uc_s 16; pos germandbls.alt01 @MMK_R_uc_t -10; pos germandbls.alt01 @MMK_R_uc_w -12; pos germandbls.alt01 @MMK_R_uc_y -26; pos germandbls.alt01 @MMK_R_uc_z 8; pos nineinferior @MMK_R_cyr_lc_acyrillic 10; pos nineinferior @MMK_R_cyr_lc_acyrillic.alt01 14; pos nineinferior @MMK_R_cyr_lc_checyrillic -20; pos nineinferior @MMK_R_cyr_lc_elcyrillic 4; pos nineinferior @MMK_R_cyr_lc_khacyrillic -28; pos nineinferior @MMK_R_cyr_lc_ocyrillic 18; pos nineinferior @MMK_R_cyr_lc_tecyrillic -27; pos nineinferior @MMK_R_cyr_lc_ucyrillic -21; pos nineinferior @MMK_R_cyr_lc_zhecyrillic -13; pos nineinferior @MMK_R_cyr_uc_Acyrillic -5; pos nineinferior @MMK_R_cyr_uc_Checyrillic -36; pos nineinferior @MMK_R_cyr_uc_Elcyrillic 23; pos nineinferior @MMK_R_cyr_uc_Hardsigncyrillic -62; pos nineinferior @MMK_R_cyr_uc_Khacyrillic -10; pos nineinferior @MMK_R_cyr_uc_Ocyrillic 8; pos nineinferior @MMK_R_cyr_uc_Tecyrillic -62; pos nineinferior @MMK_R_cyr_uc_Ucyrillic -49; pos nineinferior @MMK_R_cyr_uc_Zecyrillic -4; pos nineinferior @MMK_R_cyr_uc_Zhecyrillic -14; pos nineinferior @MMK_R_inp_period -20; pos nineinferior @MMK_R_lc_a 10; pos nineinferior @MMK_R_lc_d 15; pos nineinferior @MMK_R_lc_f -10; pos nineinferior @MMK_R_lc_g -5; pos nineinferior @MMK_R_lc_o 18; pos nineinferior @MMK_R_lc_s -5; pos nineinferior @MMK_R_lc_t -17; pos nineinferior @MMK_R_lc_w -22; pos nineinferior @MMK_R_lc_y -21; pos nineinferior @MMK_R_lc_z -4; pos nineinferior @MMK_R_uc_a -5; pos nineinferior @MMK_R_uc_j 15; pos nineinferior @MMK_R_uc_t -62; pos nineinferior @MMK_R_uc_u -5; pos nineinferior @MMK_R_uc_w -37; pos nineinferior @MMK_R_uc_y -80; pos nineinferior @MMK_R_uc_z -4; pos ninesuperior @MMK_R_cyr_lc_acyrillic -5; pos ninesuperior @MMK_R_cyr_lc_acyrillic.alt01 -16; pos ninesuperior @MMK_R_cyr_lc_checyrillic 9; pos ninesuperior @MMK_R_cyr_lc_elcyrillic -45; pos ninesuperior @MMK_R_cyr_lc_khacyrillic 24; pos ninesuperior @MMK_R_cyr_lc_ocyrillic -16; pos ninesuperior @MMK_R_cyr_lc_shhacyrillic 11; pos ninesuperior @MMK_R_cyr_lc_tecyrillic 8; pos ninesuperior @MMK_R_cyr_lc_ucyrillic 34; pos ninesuperior @MMK_R_cyr_uc_Acyrillic -72; pos ninesuperior @MMK_R_cyr_uc_Checyrillic 6; pos ninesuperior @MMK_R_cyr_uc_Elcyrillic -83; pos ninesuperior @MMK_R_cyr_uc_Hardsigncyrillic 22; pos ninesuperior @MMK_R_cyr_uc_Khacyrillic 8; pos ninesuperior @MMK_R_cyr_uc_Tecyrillic 22; pos ninesuperior @MMK_R_cyr_uc_Ucyrillic -4; pos ninesuperior @MMK_R_cyr_uc_Zhecyrillic -6; pos ninesuperior @MMK_R_inp_period -60; pos ninesuperior @MMK_R_lc_a -5; pos ninesuperior @MMK_R_lc_d -10; pos ninesuperior @MMK_R_lc_f 2; pos ninesuperior @MMK_R_lc_g -20; pos ninesuperior @MMK_R_lc_h 11; pos ninesuperior @MMK_R_lc_i 5; pos ninesuperior @MMK_R_lc_n 20; pos ninesuperior @MMK_R_lc_o -4; pos ninesuperior @MMK_R_lc_s -15; pos ninesuperior @MMK_R_lc_t 22; pos ninesuperior @MMK_R_lc_u 15; pos ninesuperior @MMK_R_lc_w 36; pos ninesuperior @MMK_R_lc_y 34; pos ninesuperior @MMK_R_lc_z 10; pos ninesuperior @MMK_R_uc_a -72; pos ninesuperior @MMK_R_uc_j -47; pos ninesuperior @MMK_R_uc_t 22; pos ninesuperior @MMK_R_uc_w 20; pos ninesuperior @MMK_R_uc_z -8; pos oneinferior @MMK_R_cyr_lc_acyrillic.alt01 -6; pos oneinferior @MMK_R_cyr_lc_checyrillic -64; pos oneinferior @MMK_R_cyr_lc_elcyrillic 9; pos oneinferior @MMK_R_cyr_lc_khacyrillic 6; pos oneinferior @MMK_R_cyr_lc_ocyrillic -6; pos oneinferior @MMK_R_cyr_lc_tecyrillic -36; pos oneinferior @MMK_R_cyr_lc_ucyrillic -30; pos oneinferior @MMK_R_cyr_lc_zecyrilic -6; pos oneinferior @MMK_R_cyr_uc_Acyrillic 33; pos oneinferior @MMK_R_cyr_uc_Checyrillic -83; pos oneinferior @MMK_R_cyr_uc_Elcyrillic 6; pos oneinferior @MMK_R_cyr_uc_Hardsigncyrillic -62; pos oneinferior @MMK_R_cyr_uc_Khacyrillic 11; pos oneinferior @MMK_R_cyr_uc_Ocyrillic -10; pos oneinferior @MMK_R_cyr_uc_Tecyrillic -62; pos oneinferior @MMK_R_cyr_uc_Ucyrillic -51; pos oneinferior @MMK_R_cyr_uc_Zecyrillic -10; pos oneinferior @MMK_R_lc_f -20; pos oneinferior @MMK_R_lc_g -10; pos oneinferior @MMK_R_lc_o -2; pos oneinferior @MMK_R_lc_t -20; pos oneinferior @MMK_R_lc_u -10; pos oneinferior @MMK_R_lc_w -34; pos oneinferior @MMK_R_lc_y -30; pos oneinferior @MMK_R_lc_z 18; pos oneinferior @MMK_R_uc_a 33; pos oneinferior @MMK_R_uc_j 2; pos oneinferior @MMK_R_uc_o -10; pos oneinferior @MMK_R_uc_t -62; pos oneinferior @MMK_R_uc_u -20; pos oneinferior @MMK_R_uc_w -60; pos oneinferior @MMK_R_uc_y -100; pos oneinferior @MMK_R_uc_z 13; pos onesuperior @MMK_R_cyr_lc_acyrillic.alt01 3; pos onesuperior @MMK_R_cyr_lc_checyrillic 6; pos onesuperior @MMK_R_cyr_lc_elcyrillic -49; pos onesuperior @MMK_R_cyr_lc_ocyrillic 3; pos onesuperior @MMK_R_cyr_lc_tecyrillic 14; pos onesuperior @MMK_R_cyr_lc_zecyrilic 4; pos onesuperior @MMK_R_cyr_lc_zhecyrillic -6; pos onesuperior @MMK_R_cyr_uc_Acyrillic -46; pos onesuperior @MMK_R_cyr_uc_Checyrillic -10; pos onesuperior @MMK_R_cyr_uc_Elcyrillic -90; pos onesuperior @MMK_R_cyr_uc_Hardsigncyrillic -10; pos onesuperior @MMK_R_cyr_uc_Khacyrillic -4; pos onesuperior @MMK_R_cyr_uc_Tecyrillic -10; pos onesuperior @MMK_R_cyr_uc_Ucyrillic -21; pos onesuperior @MMK_R_cyr_uc_Zecyrillic -6; pos onesuperior @MMK_R_cyr_uc_Zhecyrillic -34; pos onesuperior @MMK_R_inp_period -50; pos onesuperior @MMK_R_lc_d 26; pos onesuperior @MMK_R_lc_f 3; pos onesuperior @MMK_R_lc_n 10; pos onesuperior @MMK_R_lc_o 1; pos onesuperior @MMK_R_lc_t 10; pos onesuperior @MMK_R_lc_w 8; pos onesuperior @MMK_R_uc_a -46; pos onesuperior @MMK_R_uc_j -70; pos onesuperior @MMK_R_uc_s -10; pos onesuperior @MMK_R_uc_t -10; pos onesuperior @MMK_R_uc_w 3; pos onesuperior @MMK_R_uc_y -28; pos onesuperior @MMK_R_uc_z -20; pos parenleft @MMK_R_cyr_lc_checyrillic -22; pos parenleft @MMK_R_cyr_lc_shhacyrillic 10; pos parenleft @MMK_R_cyr_lc_tecyrillic -6; pos parenleft @MMK_R_cyr_lc_ucyrillic 10; pos parenleft @MMK_R_cyr_uc_Checyrillic 6; pos parenleft @MMK_R_cyr_uc_Elcyrillic -13; pos parenleft @MMK_R_cyr_uc_Hardsigncyrillic 20; pos parenleft @MMK_R_cyr_uc_Khacyrillic 8; pos parenleft @MMK_R_cyr_uc_Tecyrillic 20; pos parenleft @MMK_R_cyr_uc_Ucyrillic 6; pos parenleft @MMK_R_lc_g 20; pos parenleft @MMK_R_lc_h 10; pos parenleft @MMK_R_lc_j 86; pos parenleft @MMK_R_lc_w -10; pos parenleft @MMK_R_lc_y 10; pos parenleft @MMK_R_uc_t 20; pos parenleft @MMK_R_uc_w 20; pos parenleft @MMK_R_uc_y 18; pos percent @MMK_R_inp_foot -60; pos percent @MMK_R_inp_quotel -60; pos percent @MMK_R_inp_quoter -60; pos perthousand @MMK_R_inp_foot -60; pos perthousand @MMK_R_inp_quotel -60; pos perthousand @MMK_R_inp_quoter -60; pos question @MMK_R_cyr_uc_Acyrillic -20; pos question @MMK_R_inp_period -144; pos question @MMK_R_inp_quotel 20; pos question @MMK_R_inp_quoter 10; pos question @MMK_R_uc_a -20; pos question @MMK_R_uc_t 16; pos question @MMK_R_uc_w 15; pos question @MMK_R_uc_y 15; pos questiondown @MMK_R_cyr_lc_acyrillic -20; pos questiondown @MMK_R_cyr_lc_icyrillic -6; pos questiondown @MMK_R_cyr_lc_ocyrillic -30; pos questiondown @MMK_R_cyr_lc_ucyrillic -16; pos questiondown @MMK_R_cyr_uc_Acyrillic 10; pos questiondown @MMK_R_cyr_uc_Ocyrillic -30; pos questiondown @MMK_R_cyr_uc_Tecyrillic -60; pos questiondown @MMK_R_lc_a -20; pos questiondown @MMK_R_lc_d -30; pos questiondown @MMK_R_lc_g -10; pos questiondown @MMK_R_lc_i -2; pos questiondown @MMK_R_lc_j 48; pos questiondown @MMK_R_lc_o -30; pos questiondown @MMK_R_lc_s -10; pos questiondown @MMK_R_lc_t -20; pos questiondown @MMK_R_lc_u -10; pos questiondown @MMK_R_lc_w -30; pos questiondown @MMK_R_lc_y -16; pos questiondown @MMK_R_lc_z -5; pos questiondown @MMK_R_uc_a 10; pos questiondown @MMK_R_uc_j -18; pos questiondown @MMK_R_uc_o -30; pos questiondown @MMK_R_uc_t -60; pos questiondown @MMK_R_uc_u -30; pos questiondown @MMK_R_uc_w -24; pos questiondown @MMK_R_uc_y -65; pos registered @MMK_R_cyr_lc_khacyrillic 20; pos registered @MMK_R_cyr_lc_ocyrillic -5; pos registered @MMK_R_cyr_lc_ucyrillic 38; pos registered @MMK_R_cyr_uc_Acyrillic -60; pos registered @MMK_R_cyr_uc_Khacyrillic -4; pos registered @MMK_R_cyr_uc_Ocyrillic -3; pos registered @MMK_R_cyr_uc_Tecyrillic 30; pos registered @MMK_R_lc_d -5; pos registered @MMK_R_lc_o -5; pos registered @MMK_R_lc_u 10; pos registered @MMK_R_lc_w 38; pos registered @MMK_R_lc_y 38; pos registered @MMK_R_uc_a -60; pos registered @MMK_R_uc_o -1; pos registered @MMK_R_uc_t 30; pos registered @MMK_R_uc_w 15; pos registered @MMK_R_uc_y 5; pos registered @MMK_R_uc_z -3; pos seveninferior @MMK_R_cyr_lc_acyrillic -4; pos seveninferior @MMK_R_cyr_lc_acyrillic.alt01 14; pos seveninferior @MMK_R_cyr_lc_checyrillic -12; pos seveninferior @MMK_R_cyr_lc_elcyrillic -19; pos seveninferior @MMK_R_cyr_lc_khacyrillic -10; pos seveninferior @MMK_R_cyr_lc_ocyrillic 18; pos seveninferior @MMK_R_cyr_lc_tecyrillic -6; pos seveninferior @MMK_R_cyr_lc_ucyrillic -5; pos seveninferior @MMK_R_cyr_lc_zhecyrillic -21; pos seveninferior @MMK_R_cyr_uc_Acyrillic -10; pos seveninferior @MMK_R_cyr_uc_Checyrillic -20; pos seveninferior @MMK_R_cyr_uc_Elcyrillic -12; pos seveninferior @MMK_R_cyr_uc_Hardsigncyrillic -52; pos seveninferior @MMK_R_cyr_uc_Khacyrillic -30; pos seveninferior @MMK_R_cyr_uc_Ocyrillic 13; pos seveninferior @MMK_R_cyr_uc_Tecyrillic -52; pos seveninferior @MMK_R_cyr_uc_Ucyrillic -64; pos seveninferior @MMK_R_cyr_uc_Zecyrillic -17; pos seveninferior @MMK_R_cyr_uc_Zhecyrillic -30; pos seveninferior @MMK_R_inp_period -70; pos seveninferior @MMK_R_lc_d 32; pos seveninferior @MMK_R_lc_f -10; pos seveninferior @MMK_R_lc_o 18; pos seveninferior @MMK_R_lc_t -5; pos seveninferior @MMK_R_lc_w -12; pos seveninferior @MMK_R_lc_y -5; pos seveninferior @MMK_R_lc_z -2; pos seveninferior @MMK_R_uc_a -2; pos seveninferior @MMK_R_uc_j -20; pos seveninferior @MMK_R_uc_o 13; pos seveninferior @MMK_R_uc_s -12; pos seveninferior @MMK_R_uc_t -52; pos seveninferior @MMK_R_uc_u -5; pos seveninferior @MMK_R_uc_w -25; pos seveninferior @MMK_R_uc_y -60; pos seveninferior @MMK_R_uc_z -7; pos sevensuperior @MMK_R_cyr_lc_acyrillic -12; pos sevensuperior @MMK_R_cyr_lc_acyrillic.alt01 -33; pos sevensuperior @MMK_R_cyr_lc_checyrillic -10; pos sevensuperior @MMK_R_cyr_lc_elcyrillic -69; pos sevensuperior @MMK_R_cyr_lc_encyrillic -6; pos sevensuperior @MMK_R_cyr_lc_khacyrillic -10; pos sevensuperior @MMK_R_cyr_lc_ocyrillic -19; pos sevensuperior @MMK_R_cyr_lc_shhacyrillic 27; pos sevensuperior @MMK_R_cyr_lc_tecyrillic -14; pos sevensuperior @MMK_R_cyr_lc_ucyrillic 10; pos sevensuperior @MMK_R_cyr_lc_zecyrilic -18; pos sevensuperior @MMK_R_cyr_lc_zhecyrillic -21; pos sevensuperior @MMK_R_cyr_uc_Acyrillic -84; pos sevensuperior @MMK_R_cyr_uc_Checyrillic 10; pos sevensuperior @MMK_R_cyr_uc_Elcyrillic -89; pos sevensuperior @MMK_R_cyr_uc_Hardsigncyrillic 30; pos sevensuperior @MMK_R_cyr_uc_Khacyrillic 24; pos sevensuperior @MMK_R_cyr_uc_Ocyrillic -12; pos sevensuperior @MMK_R_cyr_uc_Tecyrillic 30; pos sevensuperior @MMK_R_cyr_uc_Ucyrillic 12; pos sevensuperior @MMK_R_cyr_uc_Zecyrillic -10; pos sevensuperior @MMK_R_cyr_uc_Zhecyrillic -4; pos sevensuperior @MMK_R_inp_period -70; pos sevensuperior @MMK_R_lc_a -12; pos sevensuperior @MMK_R_lc_d -24; pos sevensuperior @MMK_R_lc_f -10; pos sevensuperior @MMK_R_lc_g -35; pos sevensuperior @MMK_R_lc_h 27; pos sevensuperior @MMK_R_lc_i 4; pos sevensuperior @MMK_R_lc_n 10; pos sevensuperior @MMK_R_lc_o -19; pos sevensuperior @MMK_R_lc_s -30; pos sevensuperior @MMK_R_lc_t -5; pos sevensuperior @MMK_R_lc_w 5; pos sevensuperior @MMK_R_lc_y 10; pos sevensuperior @MMK_R_lc_z -10; pos sevensuperior @MMK_R_uc_a -84; pos sevensuperior @MMK_R_uc_j -37; pos sevensuperior @MMK_R_uc_o -12; pos sevensuperior @MMK_R_uc_s -12; pos sevensuperior @MMK_R_uc_t 30; pos sevensuperior @MMK_R_uc_w 30; pos sevensuperior @MMK_R_uc_y 18; pos sixinferior @MMK_R_cyr_lc_acyrillic 10; pos sixinferior @MMK_R_cyr_lc_acyrillic.alt01 6; pos sixinferior @MMK_R_cyr_lc_checyrillic -39; pos sixinferior @MMK_R_cyr_lc_elcyrillic 27; pos sixinferior @MMK_R_cyr_lc_khacyrillic -8; pos sixinferior @MMK_R_cyr_lc_ocyrillic 10; pos sixinferior @MMK_R_cyr_lc_tecyrillic -31; pos sixinferior @MMK_R_cyr_lc_ucyrillic -29; pos sixinferior @MMK_R_cyr_uc_Acyrillic 7; pos sixinferior @MMK_R_cyr_uc_Checyrillic -60; pos sixinferior @MMK_R_cyr_uc_Elcyrillic 22; pos sixinferior @MMK_R_cyr_uc_Hardsigncyrillic -62; pos sixinferior @MMK_R_cyr_uc_Ocyrillic -2; pos sixinferior @MMK_R_cyr_uc_Tecyrillic -62; pos sixinferior @MMK_R_cyr_uc_Ucyrillic -42; pos sixinferior @MMK_R_cyr_uc_Zhecyrillic 6; pos sixinferior @MMK_R_lc_a 10; pos sixinferior @MMK_R_lc_d 10; pos sixinferior @MMK_R_lc_f -18; pos sixinferior @MMK_R_lc_g -15; pos sixinferior @MMK_R_lc_n -10; pos sixinferior @MMK_R_lc_o 10; pos sixinferior @MMK_R_lc_s 1; pos sixinferior @MMK_R_lc_t -25; pos sixinferior @MMK_R_lc_w -32; pos sixinferior @MMK_R_lc_y -29; pos sixinferior @MMK_R_lc_z 8; pos sixinferior @MMK_R_uc_a 7; pos sixinferior @MMK_R_uc_j 12; pos sixinferior @MMK_R_uc_o -2; pos sixinferior @MMK_R_uc_s 1; pos sixinferior @MMK_R_uc_t -62; pos sixinferior @MMK_R_uc_u -10; pos sixinferior @MMK_R_uc_w -42; pos sixinferior @MMK_R_uc_y -70; pos sixinferior @MMK_R_uc_z -2; pos sixsuperior @MMK_R_cyr_lc_checyrillic 12; pos sixsuperior @MMK_R_cyr_lc_elcyrillic -44; pos sixsuperior @MMK_R_cyr_lc_khacyrillic 12; pos sixsuperior @MMK_R_cyr_lc_shhacyrillic 9; pos sixsuperior @MMK_R_cyr_lc_tecyrillic 10; pos sixsuperior @MMK_R_cyr_lc_ucyrillic 30; pos sixsuperior @MMK_R_cyr_lc_zhecyrillic 4; pos sixsuperior @MMK_R_cyr_uc_Acyrillic -54; pos sixsuperior @MMK_R_cyr_uc_Checyrillic 10; pos sixsuperior @MMK_R_cyr_uc_Elcyrillic -71; pos sixsuperior @MMK_R_cyr_uc_Hardsigncyrillic 20; pos sixsuperior @MMK_R_cyr_uc_Khacyrillic -10; pos sixsuperior @MMK_R_cyr_uc_Tecyrillic 20; pos sixsuperior @MMK_R_cyr_uc_Ucyrillic -8; pos sixsuperior @MMK_R_cyr_uc_Zhecyrillic -23; pos sixsuperior @MMK_R_inp_period -50; pos sixsuperior @MMK_R_lc_f 18; pos sixsuperior @MMK_R_lc_g -5; pos sixsuperior @MMK_R_lc_h 9; pos sixsuperior @MMK_R_lc_i 4; pos sixsuperior @MMK_R_lc_n 20; pos sixsuperior @MMK_R_lc_t 14; pos sixsuperior @MMK_R_lc_u 20; pos sixsuperior @MMK_R_lc_w 37; pos sixsuperior @MMK_R_lc_y 30; pos sixsuperior @MMK_R_lc_z 20; pos sixsuperior @MMK_R_uc_a -54; pos sixsuperior @MMK_R_uc_j -45; pos sixsuperior @MMK_R_uc_t 20; pos sixsuperior @MMK_R_uc_w 5; pos sixsuperior @MMK_R_uc_z -18; pos slash @MMK_R_cyr_lc_acyrillic -45; pos slash @MMK_R_cyr_lc_acyrillic.alt01 -40; pos slash @MMK_R_cyr_lc_checyrillic -27; pos slash @MMK_R_cyr_lc_elcyrillic -90; pos slash @MMK_R_cyr_lc_encyrillic -39; pos slash @MMK_R_cyr_lc_khacyrillic -30; pos slash @MMK_R_cyr_lc_ocyrillic -40; pos slash @MMK_R_cyr_lc_tecyrillic -20; pos slash @MMK_R_cyr_lc_ucyrillic -10; pos slash @MMK_R_cyr_lc_zecyrilic -35; pos slash @MMK_R_cyr_lc_zhecyrillic -49; pos slash @MMK_R_cyr_uc_Acyrillic -52; pos slash @MMK_R_cyr_uc_Checyrillic 8; pos slash @MMK_R_cyr_uc_Elcyrillic -62; pos slash @MMK_R_cyr_uc_Hardsigncyrillic 20; pos slash @MMK_R_cyr_uc_Khacyrillic 4; pos slash @MMK_R_cyr_uc_Ocyrillic -10; pos slash @MMK_R_cyr_uc_Tecyrillic 20; pos slash @MMK_R_cyr_uc_Ucyrillic 13; pos slash @MMK_R_cyr_uc_Zecyrillic -13; pos slash @MMK_R_cyr_uc_Zhecyrillic -32; pos slash @MMK_R_lc_a -45; pos slash @MMK_R_lc_d -40; pos slash @MMK_R_lc_f -30; pos slash @MMK_R_lc_g -45; pos slash @MMK_R_lc_n -42; pos slash @MMK_R_lc_o -40; pos slash @MMK_R_lc_s -40; pos slash @MMK_R_lc_t -20; pos slash @MMK_R_lc_u -35; pos slash @MMK_R_lc_w -10; pos slash @MMK_R_lc_y -10; pos slash @MMK_R_lc_z -30; pos slash @MMK_R_uc_a -52; pos slash @MMK_R_uc_j -32; pos slash @MMK_R_uc_o -10; pos slash @MMK_R_uc_s -10; pos slash @MMK_R_uc_t 20; pos slash @MMK_R_uc_w 20; pos slash @MMK_R_uc_y 20; pos threeinferior @MMK_R_cyr_lc_acyrillic.alt01 11; pos threeinferior @MMK_R_cyr_lc_checyrillic -32; pos threeinferior @MMK_R_cyr_lc_elcyrillic 22; pos threeinferior @MMK_R_cyr_lc_ocyrillic 17; pos threeinferior @MMK_R_cyr_lc_tecyrillic -24; pos threeinferior @MMK_R_cyr_lc_ucyrillic -22; pos threeinferior @MMK_R_cyr_uc_Acyrillic 10; pos threeinferior @MMK_R_cyr_uc_Checyrillic -46; pos threeinferior @MMK_R_cyr_uc_Elcyrillic 6; pos threeinferior @MMK_R_cyr_uc_Hardsigncyrillic -62; pos threeinferior @MMK_R_cyr_uc_Ocyrillic -2; pos threeinferior @MMK_R_cyr_uc_Tecyrillic -62; pos threeinferior @MMK_R_cyr_uc_Ucyrillic -55; pos threeinferior @MMK_R_cyr_uc_Zhecyrillic -4; pos threeinferior @MMK_R_inp_period -2; pos threeinferior @MMK_R_lc_d 13; pos threeinferior @MMK_R_lc_f -10; pos threeinferior @MMK_R_lc_g -7; pos threeinferior @MMK_R_lc_n -10; pos threeinferior @MMK_R_lc_o 17; pos threeinferior @MMK_R_lc_t -10; pos threeinferior @MMK_R_lc_w -16; pos threeinferior @MMK_R_lc_y -22; pos threeinferior @MMK_R_lc_z 6; pos threeinferior @MMK_R_uc_a 10; pos threeinferior @MMK_R_uc_o -2; pos threeinferior @MMK_R_uc_t -62; pos threeinferior @MMK_R_uc_w -47; pos threeinferior @MMK_R_uc_y -80; pos threesuperior @MMK_R_cyr_lc_checyrillic 9; pos threesuperior @MMK_R_cyr_lc_elcyrillic -50; pos threesuperior @MMK_R_cyr_lc_icyrillic 3; pos threesuperior @MMK_R_cyr_lc_khacyrillic 12; pos threesuperior @MMK_R_cyr_lc_shhacyrillic 7; pos threesuperior @MMK_R_cyr_lc_tecyrillic 12; pos threesuperior @MMK_R_cyr_lc_ucyrillic 18; pos threesuperior @MMK_R_cyr_lc_zhecyrillic 6; pos threesuperior @MMK_R_cyr_uc_Acyrillic -54; pos threesuperior @MMK_R_cyr_uc_Checyrillic 4; pos threesuperior @MMK_R_cyr_uc_Elcyrillic -77; pos threesuperior @MMK_R_cyr_uc_Hardsigncyrillic 20; pos threesuperior @MMK_R_cyr_uc_Khacyrillic 10; pos threesuperior @MMK_R_cyr_uc_Ocyrillic -5; pos threesuperior @MMK_R_cyr_uc_Tecyrillic 20; pos threesuperior @MMK_R_cyr_uc_Ucyrillic -8; pos threesuperior @MMK_R_cyr_uc_Zhecyrillic -19; pos threesuperior @MMK_R_inp_period -50; pos threesuperior @MMK_R_lc_f 10; pos threesuperior @MMK_R_lc_g -10; pos threesuperior @MMK_R_lc_h 2; pos threesuperior @MMK_R_lc_i 3; pos threesuperior @MMK_R_lc_j 4; pos threesuperior @MMK_R_lc_n 20; pos threesuperior @MMK_R_lc_t 10; pos threesuperior @MMK_R_lc_u 2; pos threesuperior @MMK_R_lc_w 18; pos threesuperior @MMK_R_lc_y 18; pos threesuperior @MMK_R_lc_z 10; pos threesuperior @MMK_R_uc_a -54; pos threesuperior @MMK_R_uc_j -44; pos threesuperior @MMK_R_uc_o -5; pos threesuperior @MMK_R_uc_s -2; pos threesuperior @MMK_R_uc_t 20; pos threesuperior @MMK_R_uc_w 18; pos threesuperior @MMK_R_uc_z -2; pos trademark @MMK_R_cyr_uc_Acyrillic -65; pos trademark @MMK_R_uc_a -65; pos twoinferior @MMK_R_cyr_lc_acyrillic 10; pos twoinferior @MMK_R_cyr_lc_acyrillic.alt01 11; pos twoinferior @MMK_R_cyr_lc_checyrillic -34; pos twoinferior @MMK_R_cyr_lc_elcyrillic 15; pos twoinferior @MMK_R_cyr_lc_icyrillic -4; pos twoinferior @MMK_R_cyr_lc_khacyrillic 10; pos twoinferior @MMK_R_cyr_lc_ocyrillic 20; pos twoinferior @MMK_R_cyr_lc_tecyrillic -32; pos twoinferior @MMK_R_cyr_lc_ucyrillic -20; pos twoinferior @MMK_R_cyr_lc_zecyrilic 4; pos twoinferior @MMK_R_cyr_lc_zhecyrillic 4; pos twoinferior @MMK_R_cyr_uc_Acyrillic 20; pos twoinferior @MMK_R_cyr_uc_Checyrillic -43; pos twoinferior @MMK_R_cyr_uc_Elcyrillic 18; pos twoinferior @MMK_R_cyr_uc_Hardsigncyrillic -62; pos twoinferior @MMK_R_cyr_uc_Khacyrillic 18; pos twoinferior @MMK_R_cyr_uc_Ocyrillic -7; pos twoinferior @MMK_R_cyr_uc_Tecyrillic -62; pos twoinferior @MMK_R_cyr_uc_Ucyrillic -47; pos twoinferior @MMK_R_cyr_uc_Zhecyrillic 10; pos twoinferior @MMK_R_inp_period 8; pos twoinferior @MMK_R_lc_a 10; pos twoinferior @MMK_R_lc_d 16; pos twoinferior @MMK_R_lc_f -10; pos twoinferior @MMK_R_lc_g -10; pos twoinferior @MMK_R_lc_o 20; pos twoinferior @MMK_R_lc_t -1; pos twoinferior @MMK_R_lc_w -22; pos twoinferior @MMK_R_lc_y -20; pos twoinferior @MMK_R_lc_z 16; pos twoinferior @MMK_R_uc_a 20; pos twoinferior @MMK_R_uc_j 26; pos twoinferior @MMK_R_uc_o -4; pos twoinferior @MMK_R_uc_t -62; pos twoinferior @MMK_R_uc_w -49; pos twoinferior @MMK_R_uc_y -80; pos twosuperior @MMK_R_cyr_lc_acyrillic 10; pos twosuperior @MMK_R_cyr_lc_acyrillic.alt01 7; pos twosuperior @MMK_R_cyr_lc_checyrillic 9; pos twosuperior @MMK_R_cyr_lc_elcyrillic -47; pos twosuperior @MMK_R_cyr_lc_icyrillic 3; pos twosuperior @MMK_R_cyr_lc_khacyrillic 10; pos twosuperior @MMK_R_cyr_lc_ocyrillic 13; pos twosuperior @MMK_R_cyr_lc_shhacyrillic 11; pos twosuperior @MMK_R_cyr_lc_tecyrillic 18; pos twosuperior @MMK_R_cyr_lc_ucyrillic 26; pos twosuperior @MMK_R_cyr_lc_zecyrilic 3; pos twosuperior @MMK_R_cyr_lc_zhecyrillic 2; pos twosuperior @MMK_R_cyr_uc_Acyrillic -36; pos twosuperior @MMK_R_cyr_uc_Elcyrillic -77; pos twosuperior @MMK_R_cyr_uc_Hardsigncyrillic 20; pos twosuperior @MMK_R_cyr_uc_Tecyrillic 20; pos twosuperior @MMK_R_cyr_uc_Ucyrillic -6; pos twosuperior @MMK_R_cyr_uc_Zecyrillic -6; pos twosuperior @MMK_R_cyr_uc_Zhecyrillic -26; pos twosuperior @MMK_R_inp_period -50; pos twosuperior @MMK_R_lc_a 10; pos twosuperior @MMK_R_lc_d 16; pos twosuperior @MMK_R_lc_f 10; pos twosuperior @MMK_R_lc_g 8; pos twosuperior @MMK_R_lc_h 11; pos twosuperior @MMK_R_lc_i 3; pos twosuperior @MMK_R_lc_n 20; pos twosuperior @MMK_R_lc_o 13; pos twosuperior @MMK_R_lc_t 10; pos twosuperior @MMK_R_lc_u 30; pos twosuperior @MMK_R_lc_w 23; pos twosuperior @MMK_R_lc_y 26; pos twosuperior @MMK_R_lc_z 10; pos twosuperior @MMK_R_uc_a -36; pos twosuperior @MMK_R_uc_j -44; pos twosuperior @MMK_R_uc_o 8; pos twosuperior @MMK_R_uc_s -2; pos twosuperior @MMK_R_uc_t 20; pos twosuperior @MMK_R_uc_w 18; pos twosuperior @MMK_R_uc_z -4; pos underscore @MMK_R_cyr_lc_acyrillic -30; pos underscore @MMK_R_cyr_lc_acyrillic.alt01 -50; pos underscore @MMK_R_cyr_lc_checyrillic -143; pos underscore @MMK_R_cyr_lc_elcyrillic -2; pos underscore @MMK_R_cyr_lc_khacyrillic 20; pos underscore @MMK_R_cyr_lc_ocyrillic -50; pos underscore @MMK_R_cyr_lc_tecyrillic -74; pos underscore @MMK_R_cyr_lc_ucyrillic 17; pos underscore @MMK_R_cyr_lc_zecyrilic -21; pos underscore @MMK_R_cyr_lc_zhecyrillic 4; pos underscore @MMK_R_cyr_uc_Checyrillic -162; pos underscore @MMK_R_cyr_uc_Elcyrillic -10; pos underscore @MMK_R_cyr_uc_Hardsigncyrillic -60; pos underscore @MMK_R_cyr_uc_Khacyrillic 20; pos underscore @MMK_R_cyr_uc_Ocyrillic -60; pos underscore @MMK_R_cyr_uc_Tecyrillic -60; pos underscore @MMK_R_cyr_uc_Ucyrillic -77; pos underscore @MMK_R_cyr_uc_Zecyrillic -44; pos underscore @MMK_R_lc_a -30; pos underscore @MMK_R_lc_d -48; pos underscore @MMK_R_lc_f -22; pos underscore @MMK_R_lc_g 11; pos underscore @MMK_R_lc_j 96; pos underscore @MMK_R_lc_o -50; pos underscore @MMK_R_lc_s -35; pos underscore @MMK_R_lc_t -25; pos underscore @MMK_R_lc_u -35; pos underscore @MMK_R_lc_w -40; pos underscore @MMK_R_lc_y 17; pos underscore @MMK_R_lc_z 10; pos underscore @MMK_R_uc_a 12; pos underscore @MMK_R_uc_j -18; pos underscore @MMK_R_uc_o -60; pos underscore @MMK_R_uc_s -42; pos underscore @MMK_R_uc_t -60; pos underscore @MMK_R_uc_u -50; pos underscore @MMK_R_uc_w -50; pos underscore @MMK_R_uc_y -60; pos underscore @MMK_R_uc_z 15; pos uni0402 @MMK_R_cyr_lc_acyrillic.alt01 6; pos uni0402 @MMK_R_cyr_lc_checyrillic -34; pos uni0402 @MMK_R_cyr_lc_djecyrillic -2; pos uni0402 @MMK_R_cyr_lc_ocyrillic 6; pos uni0402 @MMK_R_cyr_lc_shhacyrillic -2; pos uni0402 @MMK_R_cyr_lc_tecyrillic -14; pos uni0402 @MMK_R_cyr_lc_ucyrillic -12; pos uni0402 @MMK_R_cyr_lc_zecyrilic -2; pos uni0402 @MMK_R_cyr_lc_zhecyrillic -2; pos uni0402 @MMK_R_cyr_uc_Acyrillic -10; pos uni0402 @MMK_R_cyr_uc_Checyrillic -60; pos uni0402 @MMK_R_cyr_uc_Hardsigncyrillic -72; pos uni0402 @MMK_R_cyr_uc_Khacyrillic -5; pos uni0402 @MMK_R_cyr_uc_Ocyrillic -3; pos uni0402 @MMK_R_cyr_uc_Tecyrillic -72; pos uni0402 @MMK_R_cyr_uc_Ucyrillic -49; pos uni0402 @MMK_R_cyr_uc_Zecyrillic -8; pos uni0402 @MMK_R_inp_colon -4; pos uni0402 @MMK_R_inp_foot -64; pos uni0402 @MMK_R_inp_guill 22; pos uni0402 @MMK_R_inp_period -10; pos uni0402 @MMK_R_inp_quotel -87; pos uni0402 @MMK_R_inp_quoter -78; pos uni0404 @MMK_R_cyr_lc_acyrillic -6; pos uni0404 @MMK_R_cyr_lc_acyrillic.alt01 -14; pos uni0404 @MMK_R_cyr_lc_checyrillic -16; pos uni0404 @MMK_R_cyr_lc_elcyrillic -4; pos uni0404 @MMK_R_cyr_lc_encyrillic -7; pos uni0404 @MMK_R_cyr_lc_icyrillic -6; pos uni0404 @MMK_R_cyr_lc_khacyrillic -6; pos uni0404 @MMK_R_cyr_lc_ocyrillic -14; pos uni0404 @MMK_R_cyr_lc_tecyrillic -14; pos uni0404 @MMK_R_cyr_lc_ucyrillic -6; pos uni0404 @MMK_R_cyr_lc_zecyrilic -10; pos uni0404 @MMK_R_cyr_lc_zhecyrillic -14; pos uni0404 @MMK_R_cyr_uc_Acyrillic -25; pos uni0404 @MMK_R_cyr_uc_Checyrillic -10; pos uni0404 @MMK_R_cyr_uc_Elcyrillic -4; pos uni0404 @MMK_R_cyr_uc_Hardsigncyrillic -5; pos uni0404 @MMK_R_cyr_uc_Khacyrillic -2; pos uni0404 @MMK_R_cyr_uc_Ocyrillic -13; pos uni0404 @MMK_R_cyr_uc_Tecyrillic -5; pos uni0404 @MMK_R_cyr_uc_Ucyrillic -12; pos uni0404 @MMK_R_cyr_uc_Zecyrillic -6; pos uni0404 @MMK_R_cyr_uc_Zhecyrillic -6; pos uni0404 @MMK_R_inp_foot -4; pos uni0404 @MMK_R_inp_hyph -20; pos uni0404 @MMK_R_inp_period -24; pos uni0404 @MMK_R_inp_quotel -6; pos uni0404 @MMK_R_inp_quoter 2; pos uni0405 @MMK_R_cyr_lc_checyrillic -10; pos uni0405 @MMK_R_cyr_lc_khacyrillic -4; pos uni0405 @MMK_R_cyr_lc_tecyrillic -9; pos uni0405 @MMK_R_cyr_lc_ucyrillic -5; pos uni0405 @MMK_R_cyr_lc_zecyrilic -3; pos uni0405 @MMK_R_cyr_lc_zhecyrillic -9; pos uni0405 @MMK_R_cyr_uc_Acyrillic -12; pos uni0405 @MMK_R_cyr_uc_Checyrillic -6; pos uni0405 @MMK_R_cyr_uc_Elcyrillic -3; pos uni0405 @MMK_R_cyr_uc_Hardsigncyrillic -13; pos uni0405 @MMK_R_cyr_uc_Tecyrillic -13; pos uni0405 @MMK_R_cyr_uc_Ucyrillic -11; pos uni0405 @MMK_R_cyr_uc_Zecyrillic -5; pos uni0405 @MMK_R_cyr_uc_Zhecyrillic -8; pos uni0405 @MMK_R_inp_foot 4; pos uni0405 @MMK_R_inp_guill 20; pos uni0405 @MMK_R_inp_hyph 10; pos uni0405 @MMK_R_inp_period -24; pos uni0405 @MMK_R_inp_quotel -4; pos uni0405 @MMK_R_inp_quoter -2; pos uni0408 @MMK_R_cyr_lc_acyrillic -5; pos uni0408 @MMK_R_cyr_lc_acyrillic.alt01 -10; pos uni0408 @MMK_R_cyr_lc_checyrillic -14; pos uni0408 @MMK_R_cyr_lc_elcyrillic -18; pos uni0408 @MMK_R_cyr_lc_ocyrillic -10; pos uni0408 @MMK_R_cyr_lc_tecyrillic -6; pos uni0408 @MMK_R_cyr_lc_zecyrilic -7; pos uni0408 @MMK_R_cyr_lc_zhecyrillic -2; pos uni0408 @MMK_R_cyr_uc_Acyrillic -26; pos uni0408 @MMK_R_cyr_uc_Elcyrillic -30; pos uni0408 @MMK_R_cyr_uc_Khacyrillic -15; pos uni0408 @MMK_R_cyr_uc_Ucyrillic 3; pos uni0408 @MMK_R_cyr_uc_Zhecyrillic -5; pos uni0408 @MMK_R_inp_guilr -10; pos uni0408 @MMK_R_inp_period -50; pos uni0408 @MMK_R_inp_quotel 10; pos uni0408 @MMK_R_inp_quoter 2; pos uni0411 @MMK_R_cyr_lc_acyrillic.alt01 2; pos uni0411 @MMK_R_cyr_lc_checyrillic -18; pos uni0411 @MMK_R_cyr_lc_elcyrillic 2; pos uni0411 @MMK_R_cyr_lc_khacyrillic -11; pos uni0411 @MMK_R_cyr_lc_ocyrillic 5; pos uni0411 @MMK_R_cyr_lc_tecyrillic -8; pos uni0411 @MMK_R_cyr_lc_ucyrillic -12; pos uni0411 @MMK_R_cyr_lc_zhecyrillic -8; pos uni0411 @MMK_R_cyr_uc_Acyrillic -9; pos uni0411 @MMK_R_cyr_uc_Checyrillic -21; pos uni0411 @MMK_R_cyr_uc_Hardsigncyrillic -17; pos uni0411 @MMK_R_cyr_uc_Khacyrillic -14; pos uni0411 @MMK_R_cyr_uc_Tecyrillic -17; pos uni0411 @MMK_R_cyr_uc_Ucyrillic -19; pos uni0411 @MMK_R_cyr_uc_Zecyrillic -2; pos uni0411 @MMK_R_cyr_uc_Zhecyrillic -12; pos uni0411 @MMK_R_inp_foot -29; pos uni0411 @MMK_R_inp_guill 29; pos uni0411 @MMK_R_inp_guilr 2; pos uni0411 @MMK_R_inp_hyph 6; pos uni0411 @MMK_R_inp_period -17; pos uni0411 @MMK_R_inp_quotel -27; pos uni0411 @MMK_R_inp_quoter -23; pos uni0420 @MMK_R_cyr_lc_acyrillic -15; pos uni0420 @MMK_R_cyr_lc_acyrillic.alt01 -19; pos uni0420 @MMK_R_cyr_lc_checyrillic 3; pos uni0420 @MMK_R_cyr_lc_elcyrillic -52; pos uni0420 @MMK_R_cyr_lc_ocyrillic -21; pos uni0420 @MMK_R_cyr_lc_tecyrillic 7; pos uni0420 @MMK_R_cyr_lc_ucyrillic 14; pos uni0420 @MMK_R_cyr_lc_zecyrilic -6; pos uni0420 @MMK_R_cyr_lc_zhecyrillic -6; pos uni0420 @MMK_R_cyr_uc_Acyrillic -48; pos uni0420 @MMK_R_cyr_uc_Elcyrillic -70; pos uni0420 @MMK_R_cyr_uc_Hardsigncyrillic 6; pos uni0420 @MMK_R_cyr_uc_Khacyrillic -15; pos uni0420 @MMK_R_cyr_uc_Tecyrillic 6; pos uni0420 @MMK_R_cyr_uc_Ucyrillic -9; pos uni0420 @MMK_R_cyr_uc_Zecyrillic -5; pos uni0420 @MMK_R_cyr_uc_Zhecyrillic -17; pos uni0420 @MMK_R_inp_foot 9; pos uni0420 @MMK_R_inp_hyph -10; pos uni0420 @MMK_R_inp_period -130; pos uni0420 @MMK_R_inp_quotel 12; pos uni0420 @MMK_R_inp_quoter 12; pos uni0422 @MMK_R_cyr_lc_acyrillic -40; pos uni0422 @MMK_R_cyr_lc_acyrillic.alt01 -41; pos uni0422 @MMK_R_cyr_lc_checyrillic -6; pos uni0422 @MMK_R_cyr_lc_elcyrillic -58; pos uni0422 @MMK_R_cyr_lc_encyrillic -16; pos uni0422 @MMK_R_cyr_lc_khacyrillic -16; pos uni0422 @MMK_R_cyr_lc_ocyrillic -45; pos uni0422 @MMK_R_cyr_lc_shhacyrillic 6; pos uni0422 @MMK_R_cyr_lc_tecyrillic -14; pos uni0422 @MMK_R_cyr_lc_ucyrillic 6; pos uni0422 @MMK_R_cyr_lc_zecyrilic -29; pos uni0422 @MMK_R_cyr_lc_zhecyrillic -18; pos uni0422 @MMK_R_cyr_uc_Acyrillic -56; pos uni0422 @MMK_R_cyr_uc_Checyrillic 6; pos uni0422 @MMK_R_cyr_uc_Elcyrillic -56; pos uni0422 @MMK_R_cyr_uc_Hardsigncyrillic 22; pos uni0422 @MMK_R_cyr_uc_Khacyrillic 16; pos uni0422 @MMK_R_cyr_uc_Ocyrillic -11; pos uni0422 @MMK_R_cyr_uc_Tecyrillic 22; pos uni0422 @MMK_R_cyr_uc_Ucyrillic 10; pos uni0422 @MMK_R_cyr_uc_Zecyrillic -3; pos uni0422 @MMK_R_cyr_uc_Zhecyrillic -15; pos uni0422 @MMK_R_inp_colon -10; pos uni0422 @MMK_R_inp_foot 30; pos uni0422 @MMK_R_inp_guill -42; pos uni0422 @MMK_R_inp_guilr -30; pos uni0422 @MMK_R_inp_hyph -50; pos uni0422 @MMK_R_inp_period -80; pos uni0422 @MMK_R_inp_quotel 22; pos uni0422 @MMK_R_inp_quoter 20; pos uni0424 @MMK_R_cyr_lc_acyrillic.alt01 4; pos uni0424 @MMK_R_cyr_lc_checyrillic -2; pos uni0424 @MMK_R_cyr_lc_elcyrillic -27; pos uni0424 @MMK_R_cyr_lc_encyrillic -5; pos uni0424 @MMK_R_cyr_lc_ocyrillic 4; pos uni0424 @MMK_R_cyr_lc_shhacyrillic -6; pos uni0424 @MMK_R_cyr_lc_tecyrillic 6; pos uni0424 @MMK_R_cyr_lc_ucyrillic -1; pos uni0424 @MMK_R_cyr_lc_zecyrilic -1; pos uni0424 @MMK_R_cyr_lc_zhecyrillic -4; pos uni0424 @MMK_R_cyr_uc_Acyrillic -42; pos uni0424 @MMK_R_cyr_uc_Checyrillic -15; pos uni0424 @MMK_R_cyr_uc_Elcyrillic -35; pos uni0424 @MMK_R_cyr_uc_Hardsigncyrillic -15; pos uni0424 @MMK_R_cyr_uc_Khacyrillic -56; pos uni0424 @MMK_R_cyr_uc_Ocyrillic 11; pos uni0424 @MMK_R_cyr_uc_Tecyrillic -15; pos uni0424 @MMK_R_cyr_uc_Ucyrillic -54; pos uni0424 @MMK_R_cyr_uc_Zecyrillic -7; pos uni0424 @MMK_R_cyr_uc_Zhecyrillic -44; pos uni0424 @MMK_R_inp_foot -16; pos uni0424 @MMK_R_inp_guill 28; pos uni0424 @MMK_R_inp_guilr -8; pos uni0424 @MMK_R_inp_hyph 20; pos uni0424 @MMK_R_inp_parenth -12; pos uni0424 @MMK_R_inp_period -70; pos uni0424 @MMK_R_inp_quotel -18; pos uni0424 @MMK_R_inp_quoter -9; pos uni0425 @MMK_R_cyr_lc_acyrillic -10; pos uni0425 @MMK_R_cyr_lc_acyrillic.alt01 -25; pos uni0425 @MMK_R_cyr_lc_checyrillic -74; pos uni0425 @MMK_R_cyr_lc_elcyrillic 25; pos uni0425 @MMK_R_cyr_lc_khacyrillic 8; pos uni0425 @MMK_R_cyr_lc_ocyrillic -17; pos uni0425 @MMK_R_cyr_lc_tecyrillic -52; pos uni0425 @MMK_R_cyr_lc_ucyrillic -12; pos uni0425 @MMK_R_cyr_lc_zecyrilic -10; pos uni0425 @MMK_R_cyr_lc_zhecyrillic 13; pos uni0425 @MMK_R_cyr_uc_Acyrillic 17; pos uni0425 @MMK_R_cyr_uc_Elcyrillic 18; pos uni0425 @MMK_R_cyr_uc_Hardsigncyrillic 16; pos uni0425 @MMK_R_cyr_uc_Ocyrillic -18; pos uni0425 @MMK_R_cyr_uc_Tecyrillic 16; pos uni0425 @MMK_R_cyr_uc_Zecyrillic -10; pos uni0425 @MMK_R_inp_foot 16; pos uni0425 @MMK_R_inp_guill -42; pos uni0425 @MMK_R_inp_guilr -20; pos uni0425 @MMK_R_inp_hyph -40; pos uni0425 @MMK_R_inp_period 11; pos uni0425 @MMK_R_inp_quoter 16; pos uni0440 @MMK_R_cyr_lc_acyrillic 10; pos uni0440 @MMK_R_cyr_lc_acyrillic.alt01 5; pos uni0440 @MMK_R_cyr_lc_checyrillic -10; pos uni0440 @MMK_R_cyr_lc_khacyrillic -17; pos uni0440 @MMK_R_cyr_lc_ocyrillic 9; pos uni0440 @MMK_R_cyr_lc_tecyrillic -1; pos uni0440 @MMK_R_cyr_lc_ucyrillic -5; pos uni0440 @MMK_R_cyr_lc_zecyrilic -2; pos uni0440 @MMK_R_cyr_lc_zhecyrillic -8; pos uni0440 @MMK_R_cyr_uc_Acyrillic -7; pos uni0440 @MMK_R_cyr_uc_Checyrillic -31; pos uni0440 @MMK_R_cyr_uc_Hardsigncyrillic -35; pos uni0440 @MMK_R_cyr_uc_Khacyrillic -17; pos uni0440 @MMK_R_cyr_uc_Ocyrillic 10; pos uni0440 @MMK_R_cyr_uc_Tecyrillic -35; pos uni0440 @MMK_R_cyr_uc_Ucyrillic -55; pos uni0440 @MMK_R_cyr_uc_Zecyrillic -4; pos uni0440 @MMK_R_cyr_uc_Zhecyrillic -26; pos uni0440 @MMK_R_inp_foot -28; pos uni0440 @MMK_R_inp_guill 35; pos uni0440 @MMK_R_inp_guilr -4; pos uni0440 @MMK_R_inp_hyph 20; pos uni0440 @MMK_R_inp_period -27; pos uni0440 @MMK_R_inp_quotel -32; pos uni0440 @MMK_R_inp_quoter -10; pos uni0442 @MMK_R_cyr_lc_acyrillic 2; pos uni0442 @MMK_R_cyr_lc_acyrillic.alt01 -1; pos uni0442 @MMK_R_cyr_lc_checyrillic 13; pos uni0442 @MMK_R_cyr_lc_djecyrillic -6; pos uni0442 @MMK_R_cyr_lc_elcyrillic -30; pos uni0442 @MMK_R_cyr_lc_khacyrillic 8; pos uni0442 @MMK_R_cyr_lc_ocyrillic -1; pos uni0442 @MMK_R_cyr_lc_shhacyrillic -6; pos uni0442 @MMK_R_cyr_lc_tecyrillic 10; pos uni0442 @MMK_R_cyr_lc_ucyrillic 6; pos uni0442 @MMK_R_cyr_lc_zecyrilic 2; pos uni0442 @MMK_R_cyr_lc_zhecyrillic 4; pos uni0442 @MMK_R_cyr_uc_Acyrillic -54; pos uni0442 @MMK_R_cyr_uc_Checyrillic -9; pos uni0442 @MMK_R_cyr_uc_Elcyrillic -49; pos uni0442 @MMK_R_cyr_uc_Hardsigncyrillic -14; pos uni0442 @MMK_R_cyr_uc_Khacyrillic -52; pos uni0442 @MMK_R_cyr_uc_Ocyrillic 3; pos uni0442 @MMK_R_cyr_uc_Tecyrillic -14; pos uni0442 @MMK_R_cyr_uc_Ucyrillic -39; pos uni0442 @MMK_R_cyr_uc_Zecyrillic -3; pos uni0442 @MMK_R_cyr_uc_Zhecyrillic -46; pos uni0442 @MMK_R_inp_foot 6; pos uni0442 @MMK_R_inp_guill -6; pos uni0442 @MMK_R_inp_guilr 4; pos uni0442 @MMK_R_inp_hyph -6; pos uni0442 @MMK_R_inp_parenth -6; pos uni0442 @MMK_R_inp_period -87; pos uni0442 @MMK_R_inp_quotel 11; pos uni0442 @MMK_R_inp_quoter 17; pos uni0444 @MMK_R_cyr_lc_acyrillic 7; pos uni0444 @MMK_R_cyr_lc_acyrillic.alt01 5; pos uni0444 @MMK_R_cyr_lc_checyrillic -10; pos uni0444 @MMK_R_cyr_lc_khacyrillic -15; pos uni0444 @MMK_R_cyr_lc_ocyrillic 10; pos uni0444 @MMK_R_cyr_lc_tecyrillic -1; pos uni0444 @MMK_R_cyr_lc_ucyrillic -6; pos uni0444 @MMK_R_cyr_lc_zecyrilic -2; pos uni0444 @MMK_R_cyr_lc_zhecyrillic -10; pos uni0444 @MMK_R_cyr_uc_Acyrillic -12; pos uni0444 @MMK_R_cyr_uc_Checyrillic -31; pos uni0444 @MMK_R_cyr_uc_Hardsigncyrillic -41; pos uni0444 @MMK_R_cyr_uc_Khacyrillic -24; pos uni0444 @MMK_R_cyr_uc_Tecyrillic -41; pos uni0444 @MMK_R_cyr_uc_Ucyrillic -51; pos uni0444 @MMK_R_cyr_uc_Zecyrillic -4; pos uni0444 @MMK_R_cyr_uc_Zhecyrillic -25; pos uni0444 @MMK_R_inp_foot -24; pos uni0444 @MMK_R_inp_guill 35; pos uni0444 @MMK_R_inp_guilr -4; pos uni0444 @MMK_R_inp_hyph 20; pos uni0444 @MMK_R_inp_period -26; pos uni0444 @MMK_R_inp_quotel -31; pos uni0444 @MMK_R_inp_quoter -27; pos uni0445 @MMK_R_cyr_lc_acyrillic.alt01 -15; pos uni0445 @MMK_R_cyr_lc_checyrillic 3; pos uni0445 @MMK_R_cyr_lc_elcyrillic 18; pos uni0445 @MMK_R_cyr_lc_ocyrillic -17; pos uni0445 @MMK_R_cyr_lc_tecyrillic 4; pos uni0445 @MMK_R_cyr_lc_ucyrillic 7; pos uni0445 @MMK_R_cyr_lc_zecyrilic -2; pos uni0445 @MMK_R_cyr_lc_zhecyrillic 9; pos uni0445 @MMK_R_cyr_uc_Acyrillic 6; pos uni0445 @MMK_R_cyr_uc_Checyrillic -21; pos uni0445 @MMK_R_cyr_uc_Elcyrillic 16; pos uni0445 @MMK_R_cyr_uc_Hardsigncyrillic -16; pos uni0445 @MMK_R_cyr_uc_Khacyrillic 8; pos uni0445 @MMK_R_cyr_uc_Tecyrillic -16; pos uni0445 @MMK_R_cyr_uc_Ucyrillic -29; pos uni0445 @MMK_R_cyr_uc_Zhecyrillic 14; pos uni0445 @MMK_R_inp_foot 12; pos uni0445 @MMK_R_inp_guill -20; pos uni0445 @MMK_R_inp_guilr -10; pos uni0445 @MMK_R_inp_hyph -35; pos uni0445 @MMK_R_inp_period 12; pos uni0445 @MMK_R_inp_quotel 10; pos uni0445 @MMK_R_inp_quoter 20; pos uni0452 @MMK_R_cyr_lc_acyrillic -9; pos uni0452 @MMK_R_cyr_lc_acyrillic.alt01 -9; pos uni0452 @MMK_R_cyr_lc_checyrillic -35; pos uni0452 @MMK_R_cyr_lc_djecyrillic -10; pos uni0452 @MMK_R_cyr_lc_elcyrillic -8; pos uni0452 @MMK_R_cyr_lc_encyrillic -10; pos uni0452 @MMK_R_cyr_lc_icyrillic -10; pos uni0452 @MMK_R_cyr_lc_khacyrillic -11; pos uni0452 @MMK_R_cyr_lc_ocyrillic -9; pos uni0452 @MMK_R_cyr_lc_shhacyrillic -10; pos uni0452 @MMK_R_cyr_lc_tecyrillic -12; pos uni0452 @MMK_R_cyr_lc_ucyrillic -15; pos uni0452 @MMK_R_cyr_lc_zecyrilic -8; pos uni0452 @MMK_R_cyr_lc_zhecyrillic -11; pos uni0452 @MMK_R_cyr_uc_Acyrillic -16; pos uni0452 @MMK_R_cyr_uc_Checyrillic -24; pos uni0452 @MMK_R_cyr_uc_Elcyrillic -4; pos uni0452 @MMK_R_cyr_uc_Hardsigncyrillic -20; pos uni0452 @MMK_R_cyr_uc_Khacyrillic -20; pos uni0452 @MMK_R_cyr_uc_Ocyrillic -12; pos uni0452 @MMK_R_cyr_uc_Tecyrillic -20; pos uni0452 @MMK_R_cyr_uc_Ucyrillic -63; pos uni0452 @MMK_R_cyr_uc_Zecyrillic -16; pos uni0452 @MMK_R_cyr_uc_Zhecyrillic -20; pos uni0452 @MMK_R_inp_foot -26; pos uni0452 @MMK_R_inp_guilr -6; pos uni0452 @MMK_R_inp_period -20; pos uni0452 @MMK_R_inp_quotel -30; pos uni0452 @MMK_R_inp_quoter -21; pos uni0454 @MMK_R_cyr_lc_acyrillic -1; pos uni0454 @MMK_R_cyr_lc_acyrillic.alt01 -9; pos uni0454 @MMK_R_cyr_lc_checyrillic -7; pos uni0454 @MMK_R_cyr_lc_djecyrillic -4; pos uni0454 @MMK_R_cyr_lc_elcyrillic -2; pos uni0454 @MMK_R_cyr_lc_khacyrillic 2; pos uni0454 @MMK_R_cyr_lc_ocyrillic -9; pos uni0454 @MMK_R_cyr_lc_shhacyrillic -4; pos uni0454 @MMK_R_cyr_lc_tecyrillic -3; pos uni0454 @MMK_R_cyr_lc_ucyrillic -2; pos uni0454 @MMK_R_cyr_uc_Acyrillic -3; pos uni0454 @MMK_R_cyr_uc_Checyrillic -18; pos uni0454 @MMK_R_cyr_uc_Hardsigncyrillic -29; pos uni0454 @MMK_R_cyr_uc_Khacyrillic -10; pos uni0454 @MMK_R_cyr_uc_Tecyrillic -29; pos uni0454 @MMK_R_cyr_uc_Ucyrillic -38; pos uni0454 @MMK_R_cyr_uc_Zhecyrillic -13; pos uni0454 @MMK_R_inp_foot -9; pos uni0454 @MMK_R_inp_guill -3; pos uni0454 @MMK_R_inp_guilr -3; pos uni0454 @MMK_R_inp_hyph -9; pos uni0454 @MMK_R_inp_period -13; pos uni0454 @MMK_R_inp_quoter 4; pos uni0455 @MMK_R_cyr_lc_acyrillic -4; pos uni0455 @MMK_R_cyr_lc_checyrillic -5; pos uni0455 @MMK_R_cyr_lc_tecyrillic -3; pos uni0455 @MMK_R_cyr_lc_ucyrillic -4; pos uni0455 @MMK_R_cyr_lc_zecyrilic -3; pos uni0455 @MMK_R_cyr_lc_zhecyrillic -2; pos uni0455 @MMK_R_cyr_uc_Acyrillic -5; pos uni0455 @MMK_R_cyr_uc_Checyrillic -26; pos uni0455 @MMK_R_cyr_uc_Elcyrillic 9; pos uni0455 @MMK_R_cyr_uc_Hardsigncyrillic -20; pos uni0455 @MMK_R_cyr_uc_Khacyrillic -23; pos uni0455 @MMK_R_cyr_uc_Ocyrillic 10; pos uni0455 @MMK_R_cyr_uc_Tecyrillic -20; pos uni0455 @MMK_R_cyr_uc_Ucyrillic -47; pos uni0455 @MMK_R_cyr_uc_Zecyrillic -4; pos uni0455 @MMK_R_cyr_uc_Zhecyrillic -10; pos uni0455 @MMK_R_inp_foot -10; pos uni0455 @MMK_R_inp_hyph -10; pos uni0455 @MMK_R_inp_period -16; pos uni0455 @MMK_R_inp_quotel -10; pos uni0458 @MMK_R_cyr_lc_checyrillic -9; pos uni0458 @MMK_R_cyr_lc_elcyrillic -3; pos uni0458 @MMK_R_cyr_lc_tecyrillic -5; pos uni0458 @MMK_R_cyr_uc_Acyrillic -4; pos uni0458 @MMK_R_cyr_uc_Checyrillic -19; pos uni0458 @MMK_R_cyr_uc_Elcyrillic -10; pos uni0458 @MMK_R_cyr_uc_Hardsigncyrillic -10; pos uni0458 @MMK_R_cyr_uc_Khacyrillic -14; pos uni0458 @MMK_R_cyr_uc_Tecyrillic -10; pos uni0458 @MMK_R_cyr_uc_Ucyrillic -17; pos uni0458 @MMK_R_cyr_uc_Zecyrillic -8; pos uni0458 @MMK_R_cyr_uc_Zhecyrillic -8; pos uni0458 @MMK_R_inp_foot -20; pos uni0458 @MMK_R_inp_guill 6; pos uni0458 @MMK_R_inp_guilr -6; pos uni0458 @MMK_R_inp_period -20; pos uni0458 @MMK_R_inp_quotel -19; pos uni0458 @MMK_R_inp_quoter -11; pos uni0492 @MMK_R_cyr_lc_acyrillic -44; pos uni0492 @MMK_R_cyr_lc_acyrillic.alt01 -49; pos uni0492 @MMK_R_cyr_lc_checyrillic -8; pos uni0492 @MMK_R_cyr_lc_elcyrillic -71; pos uni0492 @MMK_R_cyr_lc_encyrillic -16; pos uni0492 @MMK_R_cyr_lc_khacyrillic -4; pos uni0492 @MMK_R_cyr_lc_ocyrillic -49; pos uni0492 @MMK_R_cyr_lc_shhacyrillic 6; pos uni0492 @MMK_R_cyr_lc_tecyrillic -16; pos uni0492 @MMK_R_cyr_lc_ucyrillic 2; pos uni0492 @MMK_R_cyr_lc_zecyrilic -26; pos uni0492 @MMK_R_cyr_lc_zhecyrillic -23; pos uni0492 @MMK_R_cyr_uc_Acyrillic -69; pos uni0492 @MMK_R_cyr_uc_Checyrillic 6; pos uni0492 @MMK_R_cyr_uc_Elcyrillic -65; pos uni0492 @MMK_R_cyr_uc_Hardsigncyrillic 22; pos uni0492 @MMK_R_cyr_uc_Khacyrillic 4; pos uni0492 @MMK_R_cyr_uc_Ocyrillic -11; pos uni0492 @MMK_R_cyr_uc_Tecyrillic 22; pos uni0492 @MMK_R_cyr_uc_Ucyrillic 11; pos uni0492 @MMK_R_cyr_uc_Zecyrillic -3; pos uni0492 @MMK_R_inp_colon -10; pos uni0492 @MMK_R_inp_foot 30; pos uni0492 @MMK_R_inp_guill -56; pos uni0492 @MMK_R_inp_guilr -30; pos uni0492 @MMK_R_inp_hyph -54; pos uni0492 @MMK_R_inp_period -100; pos uni0492 @MMK_R_inp_quotel 22; pos uni0492 @MMK_R_inp_quoter 20; pos uni0493 @MMK_R_cyr_lc_acyrillic 2; pos uni0493 @MMK_R_cyr_lc_acyrillic.alt01 -2; pos uni0493 @MMK_R_cyr_lc_checyrillic 13; pos uni0493 @MMK_R_cyr_lc_djecyrillic -6; pos uni0493 @MMK_R_cyr_lc_elcyrillic -30; pos uni0493 @MMK_R_cyr_lc_khacyrillic 8; pos uni0493 @MMK_R_cyr_lc_ocyrillic -2; pos uni0493 @MMK_R_cyr_lc_shhacyrillic -6; pos uni0493 @MMK_R_cyr_lc_tecyrillic 10; pos uni0493 @MMK_R_cyr_lc_ucyrillic 6; pos uni0493 @MMK_R_cyr_lc_zecyrilic 2; pos uni0493 @MMK_R_cyr_lc_zhecyrillic 3; pos uni0493 @MMK_R_cyr_uc_Acyrillic -54; pos uni0493 @MMK_R_cyr_uc_Checyrillic -13; pos uni0493 @MMK_R_cyr_uc_Elcyrillic -57; pos uni0493 @MMK_R_cyr_uc_Hardsigncyrillic -14; pos uni0493 @MMK_R_cyr_uc_Khacyrillic -52; pos uni0493 @MMK_R_cyr_uc_Ocyrillic 3; pos uni0493 @MMK_R_cyr_uc_Tecyrillic -14; pos uni0493 @MMK_R_cyr_uc_Ucyrillic -41; pos uni0493 @MMK_R_cyr_uc_Zhecyrillic -46; pos uni0493 @MMK_R_inp_foot 6; pos uni0493 @MMK_R_inp_guill -10; pos uni0493 @MMK_R_inp_guilr 4; pos uni0493 @MMK_R_inp_hyph -6; pos uni0493 @MMK_R_inp_parenth -6; pos uni0493 @MMK_R_inp_period -107; pos uni0493 @MMK_R_inp_quotel 11; pos uni0493 @MMK_R_inp_quoter 22; pos uni0494 @MMK_R_cyr_lc_acyrillic 4; pos uni0494 @MMK_R_cyr_lc_acyrillic.alt01 1; pos uni0494 @MMK_R_cyr_lc_checyrillic -34; pos uni0494 @MMK_R_cyr_lc_djecyrillic -3; pos uni0494 @MMK_R_cyr_lc_elcyrillic 6; pos uni0494 @MMK_R_cyr_lc_khacyrillic -2; pos uni0494 @MMK_R_cyr_lc_ocyrillic 1; pos uni0494 @MMK_R_cyr_lc_shhacyrillic -2; pos uni0494 @MMK_R_cyr_lc_tecyrillic -15; pos uni0494 @MMK_R_cyr_lc_ucyrillic -9; pos uni0494 @MMK_R_cyr_lc_zecyrilic -3; pos uni0494 @MMK_R_cyr_lc_zhecyrillic -2; pos uni0494 @MMK_R_cyr_uc_Acyrillic -10; pos uni0494 @MMK_R_cyr_uc_Checyrillic -54; pos uni0494 @MMK_R_cyr_uc_Hardsigncyrillic -44; pos uni0494 @MMK_R_cyr_uc_Khacyrillic -5; pos uni0494 @MMK_R_cyr_uc_Ocyrillic -7; pos uni0494 @MMK_R_cyr_uc_Tecyrillic -44; pos uni0494 @MMK_R_cyr_uc_Ucyrillic -37; pos uni0494 @MMK_R_cyr_uc_Zecyrillic -9; pos uni0494 @MMK_R_inp_colon -4; pos uni0494 @MMK_R_inp_foot -50; pos uni0494 @MMK_R_inp_guill 25; pos uni0494 @MMK_R_inp_period -8; pos uni0494 @MMK_R_inp_quotel -61; pos uni0494 @MMK_R_inp_quoter -53; pos uni0495 @MMK_R_cyr_lc_checyrillic -27; pos uni0495 @MMK_R_cyr_lc_djecyrillic -3; pos uni0495 @MMK_R_cyr_lc_elcyrillic 14; pos uni0495 @MMK_R_cyr_lc_shhacyrillic -3; pos uni0495 @MMK_R_cyr_lc_tecyrillic -27; pos uni0495 @MMK_R_cyr_lc_ucyrillic -6; pos uni0495 @MMK_R_cyr_uc_Checyrillic -59; pos uni0495 @MMK_R_cyr_uc_Elcyrillic 13; pos uni0495 @MMK_R_cyr_uc_Hardsigncyrillic -52; pos uni0495 @MMK_R_cyr_uc_Tecyrillic -52; pos uni0495 @MMK_R_cyr_uc_Ucyrillic -48; pos uni0495 @MMK_R_inp_foot -41; pos uni0495 @MMK_R_inp_guill 4; pos uni0495 @MMK_R_inp_guilr -6; pos uni0495 @MMK_R_inp_hyph -7; pos uni0495 @MMK_R_inp_quotel -38; pos uni0495 @MMK_R_inp_quoter -38; pos uni04AE @MMK_R_cyr_lc_acyrillic -72; pos uni04AE @MMK_R_cyr_lc_acyrillic.alt01 -90; pos uni04AE @MMK_R_cyr_lc_checyrillic -57; pos uni04AE @MMK_R_cyr_lc_elcyrillic -84; pos uni04AE @MMK_R_cyr_lc_encyrillic -50; pos uni04AE @MMK_R_cyr_lc_icyrillic -24; pos uni04AE @MMK_R_cyr_lc_khacyrillic -29; pos uni04AE @MMK_R_cyr_lc_ocyrillic -74; pos uni04AE @MMK_R_cyr_lc_tecyrillic -48; pos uni04AE @MMK_R_cyr_lc_ucyrillic -21; pos uni04AE @MMK_R_cyr_lc_zecyrilic -65; pos uni04AE @MMK_R_cyr_lc_zhecyrillic -58; pos uni04AE @MMK_R_cyr_uc_Acyrillic -55; pos uni04AE @MMK_R_cyr_uc_Checyrillic 2; pos uni04AE @MMK_R_cyr_uc_Elcyrillic -62; pos uni04AE @MMK_R_cyr_uc_Hardsigncyrillic 14; pos uni04AE @MMK_R_cyr_uc_Ocyrillic -32; pos uni04AE @MMK_R_cyr_uc_Tecyrillic 14; pos uni04AE @MMK_R_cyr_uc_Ucyrillic 3; pos uni04AE @MMK_R_cyr_uc_Zecyrillic -14; pos uni04AE @MMK_R_cyr_uc_Zhecyrillic -12; pos uni04AE @MMK_R_inp_colon -32; pos uni04AE @MMK_R_inp_foot 16; pos uni04AE @MMK_R_inp_guill -52; pos uni04AE @MMK_R_inp_guilr -42; pos uni04AE @MMK_R_inp_hyph -50; pos uni04AE @MMK_R_inp_period -60; pos uni04AE @MMK_R_inp_quotel 18; pos uni04AE @MMK_R_inp_quoter 18; pos uni04AF @MMK_R_cyr_lc_acyrillic -16; pos uni04AF @MMK_R_cyr_lc_acyrillic.alt01 -13; pos uni04AF @MMK_R_cyr_lc_checyrillic 10; pos uni04AF @MMK_R_cyr_lc_djecyrillic -5; pos uni04AF @MMK_R_cyr_lc_elcyrillic -38; pos uni04AF @MMK_R_cyr_lc_khacyrillic 7; pos uni04AF @MMK_R_cyr_lc_ocyrillic -13; pos uni04AF @MMK_R_cyr_lc_shhacyrillic -5; pos uni04AF @MMK_R_cyr_lc_tecyrillic 9; pos uni04AF @MMK_R_cyr_lc_ucyrillic 17; pos uni04AF @MMK_R_cyr_lc_zecyrilic -2; pos uni04AF @MMK_R_cyr_lc_zhecyrillic 4; pos uni04AF @MMK_R_cyr_uc_Acyrillic -41; pos uni04AF @MMK_R_cyr_uc_Checyrillic -10; pos uni04AF @MMK_R_cyr_uc_Elcyrillic -44; pos uni04AF @MMK_R_cyr_uc_Hardsigncyrillic 4; pos uni04AF @MMK_R_cyr_uc_Khacyrillic -30; pos uni04AF @MMK_R_cyr_uc_Ocyrillic 4; pos uni04AF @MMK_R_cyr_uc_Tecyrillic 4; pos uni04AF @MMK_R_cyr_uc_Ucyrillic -31; pos uni04AF @MMK_R_cyr_uc_Zhecyrillic -36; pos uni04AF @MMK_R_inp_foot 20; pos uni04AF @MMK_R_inp_guill -6; pos uni04AF @MMK_R_inp_guilr -6; pos uni04AF @MMK_R_inp_hyph -12; pos uni04AF @MMK_R_inp_period -68; pos uni04AF @MMK_R_inp_quotel 33; pos uni04AF @MMK_R_inp_quoter 40; pos uni04B0 @MMK_R_cyr_lc_acyrillic -70; pos uni04B0 @MMK_R_cyr_lc_acyrillic.alt01 -71; pos uni04B0 @MMK_R_cyr_lc_checyrillic -57; pos uni04B0 @MMK_R_cyr_lc_elcyrillic -84; pos uni04B0 @MMK_R_cyr_lc_encyrillic -50; pos uni04B0 @MMK_R_cyr_lc_icyrillic -20; pos uni04B0 @MMK_R_cyr_lc_khacyrillic -29; pos uni04B0 @MMK_R_cyr_lc_ocyrillic -71; pos uni04B0 @MMK_R_cyr_lc_tecyrillic -48; pos uni04B0 @MMK_R_cyr_lc_ucyrillic -21; pos uni04B0 @MMK_R_cyr_lc_zecyrilic -65; pos uni04B0 @MMK_R_cyr_lc_zhecyrillic -58; pos uni04B0 @MMK_R_cyr_uc_Acyrillic -55; pos uni04B0 @MMK_R_cyr_uc_Checyrillic 2; pos uni04B0 @MMK_R_cyr_uc_Elcyrillic -62; pos uni04B0 @MMK_R_cyr_uc_Hardsigncyrillic 10; pos uni04B0 @MMK_R_cyr_uc_Ocyrillic -31; pos uni04B0 @MMK_R_cyr_uc_Tecyrillic 14; pos uni04B0 @MMK_R_cyr_uc_Ucyrillic 3; pos uni04B0 @MMK_R_cyr_uc_Zecyrillic -14; pos uni04B0 @MMK_R_cyr_uc_Zhecyrillic -16; pos uni04B0 @MMK_R_inp_colon -32; pos uni04B0 @MMK_R_inp_foot 16; pos uni04B0 @MMK_R_inp_guill -44; pos uni04B0 @MMK_R_inp_guilr -42; pos uni04B0 @MMK_R_inp_hyph -50; pos uni04B0 @MMK_R_inp_period -60; pos uni04B0 @MMK_R_inp_quotel 18; pos uni04B0 @MMK_R_inp_quoter 18; pos uni04B1 @MMK_R_cyr_lc_acyrillic -16; pos uni04B1 @MMK_R_cyr_lc_acyrillic.alt01 -13; pos uni04B1 @MMK_R_cyr_lc_checyrillic 10; pos uni04B1 @MMK_R_cyr_lc_djecyrillic -5; pos uni04B1 @MMK_R_cyr_lc_elcyrillic -34; pos uni04B1 @MMK_R_cyr_lc_khacyrillic 7; pos uni04B1 @MMK_R_cyr_lc_ocyrillic -13; pos uni04B1 @MMK_R_cyr_lc_shhacyrillic -5; pos uni04B1 @MMK_R_cyr_lc_tecyrillic 9; pos uni04B1 @MMK_R_cyr_lc_ucyrillic 17; pos uni04B1 @MMK_R_cyr_lc_zecyrilic -2; pos uni04B1 @MMK_R_cyr_lc_zhecyrillic 4; pos uni04B1 @MMK_R_cyr_uc_Acyrillic -35; pos uni04B1 @MMK_R_cyr_uc_Checyrillic -10; pos uni04B1 @MMK_R_cyr_uc_Elcyrillic -40; pos uni04B1 @MMK_R_cyr_uc_Hardsigncyrillic 4; pos uni04B1 @MMK_R_cyr_uc_Khacyrillic -30; pos uni04B1 @MMK_R_cyr_uc_Ocyrillic 4; pos uni04B1 @MMK_R_cyr_uc_Tecyrillic 4; pos uni04B1 @MMK_R_cyr_uc_Ucyrillic -31; pos uni04B1 @MMK_R_cyr_uc_Zhecyrillic -36; pos uni04B1 @MMK_R_inp_foot 20; pos uni04B1 @MMK_R_inp_guill -6; pos uni04B1 @MMK_R_inp_guilr -6; pos uni04B1 @MMK_R_inp_hyph -12; pos uni04B1 @MMK_R_inp_period -58; pos uni04B1 @MMK_R_inp_quotel 27; pos uni04B1 @MMK_R_inp_quoter 44; pos uni04B2 @MMK_R_cyr_lc_acyrillic -4; pos uni04B2 @MMK_R_cyr_lc_acyrillic.alt01 -20; pos uni04B2 @MMK_R_cyr_lc_checyrillic -58; pos uni04B2 @MMK_R_cyr_lc_djecyrillic 5; pos uni04B2 @MMK_R_cyr_lc_elcyrillic 32; pos uni04B2 @MMK_R_cyr_lc_encyrillic 5; pos uni04B2 @MMK_R_cyr_lc_icyrillic 5; pos uni04B2 @MMK_R_cyr_lc_khacyrillic 16; pos uni04B2 @MMK_R_cyr_lc_ocyrillic -22; pos uni04B2 @MMK_R_cyr_lc_shhacyrillic 5; pos uni04B2 @MMK_R_cyr_lc_tecyrillic -42; pos uni04B2 @MMK_R_cyr_lc_ucyrillic 19; pos uni04B2 @MMK_R_cyr_lc_zecyrilic -6; pos uni04B2 @MMK_R_cyr_lc_zhecyrillic 19; pos uni04B2 @MMK_R_cyr_uc_Acyrillic 13; pos uni04B2 @MMK_R_cyr_uc_Checyrillic -6; pos uni04B2 @MMK_R_cyr_uc_Elcyrillic 29; pos uni04B2 @MMK_R_cyr_uc_Hardsigncyrillic -3; pos uni04B2 @MMK_R_cyr_uc_Khacyrillic 3; pos uni04B2 @MMK_R_cyr_uc_Ocyrillic -35; pos uni04B2 @MMK_R_cyr_uc_Tecyrillic -3; pos uni04B2 @MMK_R_cyr_uc_Ucyrillic -5; pos uni04B2 @MMK_R_cyr_uc_Zecyrillic -11; pos uni04B2 @MMK_R_cyr_uc_Zhecyrillic 9; pos uni04B2 @MMK_R_inp_colon 6; pos uni04B2 @MMK_R_inp_foot -6; pos uni04B2 @MMK_R_inp_guill -37; pos uni04B2 @MMK_R_inp_guilr -14; pos uni04B2 @MMK_R_inp_hyph -61; pos uni04B2 @MMK_R_inp_parenth 9; pos uni04B2 @MMK_R_inp_period 21; pos uni04B2 @MMK_R_inp_quotel -15; pos uni04B2 @MMK_R_inp_quoter -9; pos uni04B3 @MMK_R_cyr_lc_acyrillic -2; pos uni04B3 @MMK_R_cyr_lc_acyrillic.alt01 -18; pos uni04B3 @MMK_R_cyr_lc_checyrillic -8; pos uni04B3 @MMK_R_cyr_lc_elcyrillic 28; pos uni04B3 @MMK_R_cyr_lc_khacyrillic 16; pos uni04B3 @MMK_R_cyr_lc_ocyrillic -18; pos uni04B3 @MMK_R_cyr_lc_tecyrillic -5; pos uni04B3 @MMK_R_cyr_lc_ucyrillic 18; pos uni04B3 @MMK_R_cyr_lc_zecyrilic -1; pos uni04B3 @MMK_R_cyr_lc_zhecyrillic 17; pos uni04B3 @MMK_R_cyr_uc_Acyrillic 9; pos uni04B3 @MMK_R_cyr_uc_Checyrillic -29; pos uni04B3 @MMK_R_cyr_uc_Elcyrillic 21; pos uni04B3 @MMK_R_cyr_uc_Hardsigncyrillic -13; pos uni04B3 @MMK_R_cyr_uc_Khacyrillic 11; pos uni04B3 @MMK_R_cyr_uc_Ocyrillic -12; pos uni04B3 @MMK_R_cyr_uc_Tecyrillic -13; pos uni04B3 @MMK_R_cyr_uc_Ucyrillic -38; pos uni04B3 @MMK_R_cyr_uc_Zecyrillic -3; pos uni04B3 @MMK_R_cyr_uc_Zhecyrillic 13; pos uni04B3 @MMK_R_inp_colon 9; pos uni04B3 @MMK_R_inp_foot -4; pos uni04B3 @MMK_R_inp_guill -26; pos uni04B3 @MMK_R_inp_guilr -12; pos uni04B3 @MMK_R_inp_hyph -40; pos uni04B3 @MMK_R_inp_parenth 11; pos uni04B3 @MMK_R_inp_period 19; pos uni04B3 @MMK_R_inp_quotel -2; pos uni04B3 @MMK_R_inp_quoter 8; pos uni04CF @MMK_R_cyr_lc_checyrillic -16; pos uni04CF @MMK_R_cyr_lc_elcyrillic 10; pos uni04CF @MMK_R_cyr_lc_tecyrillic -7; pos uni04CF @MMK_R_cyr_lc_ucyrillic -6; pos uni04CF @MMK_R_cyr_uc_Elcyrillic 4; pos uni04CF @MMK_R_cyr_uc_Hardsigncyrillic 6; pos uni04CF @MMK_R_cyr_uc_Tecyrillic 6; pos uni04CF @MMK_R_inp_guill 6; pos uni04CF @MMK_R_inp_quotel -18; pos uni04CF @MMK_R_inp_quoter -10; pos v @MMK_R_inp_foot 20; pos v @MMK_R_inp_guilr -2; pos v @MMK_R_inp_hyph -10; pos v @MMK_R_inp_period -62; pos v @MMK_R_inp_quotel 35; pos v @MMK_R_inp_quoter 40; pos v @MMK_R_lc_a -14; pos v @MMK_R_lc_d -9; pos v @MMK_R_lc_g -14; pos v @MMK_R_lc_o -11; pos v @MMK_R_lc_s -2; pos v @MMK_R_lc_u 1; pos v @MMK_R_lc_w 16; pos v @MMK_R_lc_y 23; pos v @MMK_R_uc_a -27; pos v @MMK_R_uc_j -40; pos v @MMK_R_uc_o 10; pos v @MMK_R_uc_s 10; pos v @MMK_R_uc_t 6; pos v @MMK_R_uc_w -5; pos v @MMK_R_uc_y -25; pos x @MMK_R_inp_foot 12; pos x @MMK_R_inp_guill -20; pos x @MMK_R_inp_guilr -10; pos x @MMK_R_inp_hyph -35; pos x @MMK_R_inp_period 12; pos x @MMK_R_inp_quotel 10; pos x @MMK_R_inp_quoter 20; pos x @MMK_R_lc_d -15; pos x @MMK_R_lc_o -17; pos x @MMK_R_lc_s -4; pos x @MMK_R_uc_a 2; pos x @MMK_R_uc_j 2; pos x @MMK_R_uc_t -16; pos x @MMK_R_uc_u -8; pos x @MMK_R_uc_w -10; pos x @MMK_R_uc_y -29; pos zeroinferior @MMK_R_cyr_lc_acyrillic 22; pos zeroinferior @MMK_R_cyr_lc_acyrillic.alt01 20; pos zeroinferior @MMK_R_cyr_lc_checyrillic -28; pos zeroinferior @MMK_R_cyr_lc_elcyrillic 16; pos zeroinferior @MMK_R_cyr_lc_ocyrillic 36; pos zeroinferior @MMK_R_cyr_lc_tecyrillic -33; pos zeroinferior @MMK_R_cyr_lc_ucyrillic -27; pos zeroinferior @MMK_R_cyr_lc_zhecyrillic -4; pos zeroinferior @MMK_R_cyr_uc_Acyrillic 20; pos zeroinferior @MMK_R_cyr_uc_Checyrillic -48; pos zeroinferior @MMK_R_cyr_uc_Elcyrillic 17; pos zeroinferior @MMK_R_cyr_uc_Hardsigncyrillic -62; pos zeroinferior @MMK_R_cyr_uc_Khacyrillic 13; pos zeroinferior @MMK_R_cyr_uc_Tecyrillic -62; pos zeroinferior @MMK_R_cyr_uc_Ucyrillic -43; pos zeroinferior @MMK_R_cyr_uc_Zhecyrillic 4; pos zeroinferior @MMK_R_inp_period -2; pos zeroinferior @MMK_R_lc_a 22; pos zeroinferior @MMK_R_lc_d 28; pos zeroinferior @MMK_R_lc_f -10; pos zeroinferior @MMK_R_lc_g -10; pos zeroinferior @MMK_R_lc_o 36; pos zeroinferior @MMK_R_lc_s 1; pos zeroinferior @MMK_R_lc_t -10; pos zeroinferior @MMK_R_lc_w -22; pos zeroinferior @MMK_R_lc_y -27; pos zeroinferior @MMK_R_lc_z 10; pos zeroinferior @MMK_R_uc_a 20; pos zeroinferior @MMK_R_uc_j 12; pos zeroinferior @MMK_R_uc_s 10; pos zeroinferior @MMK_R_uc_t -62; pos zeroinferior @MMK_R_uc_u -2; pos zeroinferior @MMK_R_uc_w -40; pos zeroinferior @MMK_R_uc_y -80; pos zerosuperior @MMK_R_cyr_lc_acyrillic 10; pos zerosuperior @MMK_R_cyr_lc_checyrillic 9; pos zerosuperior @MMK_R_cyr_lc_elcyrillic -43; pos zerosuperior @MMK_R_cyr_lc_khacyrillic 22; pos zerosuperior @MMK_R_cyr_lc_shhacyrillic 11; pos zerosuperior @MMK_R_cyr_lc_tecyrillic 10; pos zerosuperior @MMK_R_cyr_lc_ucyrillic 38; pos zerosuperior @MMK_R_cyr_lc_zhecyrillic 2; pos zerosuperior @MMK_R_cyr_uc_Acyrillic -54; pos zerosuperior @MMK_R_cyr_uc_Checyrillic 12; pos zerosuperior @MMK_R_cyr_uc_Elcyrillic -85; pos zerosuperior @MMK_R_cyr_uc_Hardsigncyrillic 30; pos zerosuperior @MMK_R_cyr_uc_Tecyrillic 30; pos zerosuperior @MMK_R_cyr_uc_Ucyrillic 2; pos zerosuperior @MMK_R_cyr_uc_Zhecyrillic -18; pos zerosuperior @MMK_R_inp_period -50; pos zerosuperior @MMK_R_lc_a 10; pos zerosuperior @MMK_R_lc_f 12; pos zerosuperior @MMK_R_lc_g -6; pos zerosuperior @MMK_R_lc_h 11; pos zerosuperior @MMK_R_lc_i 4; pos zerosuperior @MMK_R_lc_n 20; pos zerosuperior @MMK_R_lc_t 14; pos zerosuperior @MMK_R_lc_u 20; pos zerosuperior @MMK_R_lc_w 38; pos zerosuperior @MMK_R_lc_y 38; pos zerosuperior @MMK_R_lc_z 20; pos zerosuperior @MMK_R_uc_a -54; pos zerosuperior @MMK_R_uc_j -52; pos zerosuperior @MMK_R_uc_t 30; pos zerosuperior @MMK_R_uc_w 24; pos zerosuperior @MMK_R_uc_y 8; # group, glyph and group, group: subtable; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_lc_checyrillic -37; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_lc_elcyrillic 9; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_lc_tecyrillic -15; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_lc_ucyrillic -10; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_uc_Acyrillic 8; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_uc_Checyrillic -70; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_uc_Elcyrillic 16; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_uc_Hardsigncyrillic -50; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_uc_Tecyrillic -50; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_uc_Ucyrillic -56; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_uc_Zecyrillic -8; pos @MMK_L_cyr_lc_acyrillic @MMK_R_cyr_uc_Zhecyrillic 5; pos @MMK_L_cyr_lc_acyrillic @MMK_R_inp_foot -53; pos @MMK_L_cyr_lc_acyrillic @MMK_R_inp_guill 6; pos @MMK_L_cyr_lc_acyrillic @MMK_R_inp_guilr -12; pos @MMK_L_cyr_lc_acyrillic @MMK_R_inp_period 6; pos @MMK_L_cyr_lc_acyrillic @MMK_R_inp_quotel -60; pos @MMK_L_cyr_lc_acyrillic @MMK_R_inp_quoter -30; pos @MMK_L_cyr_lc_acyrillic eightsuperior -5; pos @MMK_L_cyr_lc_acyrillic fivesuperior -12; pos @MMK_L_cyr_lc_acyrillic foursuperior -6; pos @MMK_L_cyr_lc_acyrillic nineinferior -5; pos @MMK_L_cyr_lc_acyrillic ninesuperior -35; pos @MMK_L_cyr_lc_acyrillic oneinferior -6; pos @MMK_L_cyr_lc_acyrillic onesuperior -22; pos @MMK_L_cyr_lc_acyrillic registered -10; pos @MMK_L_cyr_lc_acyrillic seveninferior -10; pos @MMK_L_cyr_lc_acyrillic sevensuperior -32; pos @MMK_L_cyr_lc_acyrillic sixinferior -4; pos @MMK_L_cyr_lc_acyrillic sixsuperior -10; pos @MMK_L_cyr_lc_acyrillic slash 5; pos @MMK_L_cyr_lc_acyrillic threeinferior 5; pos @MMK_L_cyr_lc_acyrillic threesuperior -10; pos @MMK_L_cyr_lc_acyrillic trademark -34; pos @MMK_L_cyr_lc_acyrillic twoinferior 10; pos @MMK_L_cyr_lc_acyrillic twosuperior -10; pos @MMK_L_cyr_lc_acyrillic uni0414 13; pos @MMK_L_cyr_lc_acyrillic uni0424 -9; pos @MMK_L_cyr_lc_acyrillic uni0434 6; pos @MMK_L_cyr_lc_acyrillic uni044F 2; pos @MMK_L_cyr_lc_acyrillic uni04AE -64; pos @MMK_L_cyr_lc_acyrillic uni04AF -16; pos @MMK_L_cyr_lc_acyrillic uni04B0 -64; pos @MMK_L_cyr_lc_acyrillic uni04B1 -16; pos @MMK_L_cyr_lc_acyrillic uni04D4 8; pos @MMK_L_cyr_lc_acyrillic zeroinferior 10; pos @MMK_L_cyr_lc_acyrillic zerosuperior -10; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_lc_checyrillic -12; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_lc_elcyrillic 3; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_lc_tecyrillic -4; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_lc_ucyrillic -3; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Checyrillic -17; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Hardsigncyrillic -13; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Tecyrillic -13; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_cyr_uc_Ucyrillic -21; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_inp_foot -6; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_inp_quotel -15; pos @MMK_L_cyr_lc_acyrillic.alt01 @MMK_R_inp_quoter -10; pos @MMK_L_cyr_lc_acyrillic.alt01 ninesuperior -13; pos @MMK_L_cyr_lc_acyrillic.alt01 registered -6; pos @MMK_L_cyr_lc_acyrillic.alt01 sevensuperior -13; pos @MMK_L_cyr_lc_acyrillic.alt01 slash 2; pos @MMK_L_cyr_lc_acyrillic.alt01 uni0434 2; pos @MMK_L_cyr_lc_acyrillic.alt01 uni0440 -3; pos @MMK_L_cyr_lc_acyrillic.alt01 uni044F 2; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04AE -25; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04AF -18; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04B0 -25; pos @MMK_L_cyr_lc_acyrillic.alt01 uni04B1 -3; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_acyrillic -2; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_acyrillic.alt01 -12; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_checyrillic -6; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_elcyrillic 22; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_khacyrillic 9; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_ocyrillic -12; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_shhacyrillic 3; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_tecyrillic -7; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_ucyrillic 12; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_zecyrilic -2; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_lc_zhecyrillic 11; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Acyrillic 13; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Checyrillic -26; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Elcyrillic 17; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Hardsigncyrillic -19; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Khacyrillic 7; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Ocyrillic -6; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Tecyrillic -19; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Ucyrillic -40; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Zecyrillic -5; pos @MMK_L_cyr_lc_decyrillic @MMK_R_cyr_uc_Zhecyrillic 8; pos @MMK_L_cyr_lc_decyrillic @MMK_R_inp_foot -6; pos @MMK_L_cyr_lc_decyrillic @MMK_R_inp_guill -10; pos @MMK_L_cyr_lc_decyrillic @MMK_R_inp_guilr -5; pos @MMK_L_cyr_lc_decyrillic @MMK_R_inp_hyph -10; pos @MMK_L_cyr_lc_decyrillic @MMK_R_inp_parenth 6; pos @MMK_L_cyr_lc_decyrillic @MMK_R_inp_period 11; pos @MMK_L_cyr_lc_decyrillic @MMK_R_inp_quotel -6; pos @MMK_L_cyr_lc_decyrillic @MMK_R_inp_quoter -6; pos @MMK_L_cyr_lc_decyrillic ampersand -2; pos @MMK_L_cyr_lc_decyrillic at -7; pos @MMK_L_cyr_lc_decyrillic copyright -8; pos @MMK_L_cyr_lc_decyrillic eightinferior 6; pos @MMK_L_cyr_lc_decyrillic eightsuperior -3; pos @MMK_L_cyr_lc_decyrillic fivesuperior -9; pos @MMK_L_cyr_lc_decyrillic fourinferior 12; pos @MMK_L_cyr_lc_decyrillic foursuperior 6; pos @MMK_L_cyr_lc_decyrillic nineinferior -10; pos @MMK_L_cyr_lc_decyrillic ninesuperior -3; pos @MMK_L_cyr_lc_decyrillic onesuperior -12; pos @MMK_L_cyr_lc_decyrillic parenright 17; pos @MMK_L_cyr_lc_decyrillic seveninferior -15; pos @MMK_L_cyr_lc_decyrillic sevensuperior -21; pos @MMK_L_cyr_lc_decyrillic sixinferior 6; pos @MMK_L_cyr_lc_decyrillic sixsuperior -3; pos @MMK_L_cyr_lc_decyrillic slash 36; pos @MMK_L_cyr_lc_decyrillic threeinferior 12; pos @MMK_L_cyr_lc_decyrillic trademark -27; pos @MMK_L_cyr_lc_decyrillic twoinferior 10; pos @MMK_L_cyr_lc_decyrillic twosuperior -6; pos @MMK_L_cyr_lc_decyrillic underscore 36; pos @MMK_L_cyr_lc_decyrillic uni0408 12; pos @MMK_L_cyr_lc_decyrillic uni0414 14; pos @MMK_L_cyr_lc_decyrillic uni0424 -13; pos @MMK_L_cyr_lc_decyrillic uni042F 6; pos @MMK_L_cyr_lc_decyrillic uni0431 -7; pos @MMK_L_cyr_lc_decyrillic uni0434 18; pos @MMK_L_cyr_lc_decyrillic uni0440 5; pos @MMK_L_cyr_lc_decyrillic uni0444 -9; pos @MMK_L_cyr_lc_decyrillic uni044F 11; pos @MMK_L_cyr_lc_decyrillic uni0455 -2; pos @MMK_L_cyr_lc_decyrillic uni0458 74; pos @MMK_L_cyr_lc_decyrillic uni04AE -48; pos @MMK_L_cyr_lc_decyrillic uni04AF -4; pos @MMK_L_cyr_lc_decyrillic uni04B0 -48; pos @MMK_L_cyr_lc_decyrillic uni04B1 -4; pos @MMK_L_cyr_lc_decyrillic uni04D4 14; pos @MMK_L_cyr_lc_decyrillic zeroinferior 3; pos @MMK_L_cyr_lc_decyrillic zerosuperior -3; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Checyrillic -28; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Hardsigncyrillic -16; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Tecyrillic -16; pos @MMK_L_cyr_lc_encyrillic @MMK_R_cyr_uc_Ucyrillic -31; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_guill 6; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_guilr -6; pos @MMK_L_cyr_lc_encyrillic @MMK_R_inp_quoter 6; pos @MMK_L_cyr_lc_encyrillic fiveinferior -3; pos @MMK_L_cyr_lc_encyrillic fourinferior -3; pos @MMK_L_cyr_lc_encyrillic nineinferior -6; pos @MMK_L_cyr_lc_encyrillic oneinferior -9; pos @MMK_L_cyr_lc_encyrillic seveninferior -6; pos @MMK_L_cyr_lc_encyrillic sixinferior -5; pos @MMK_L_cyr_lc_encyrillic slash 8; pos @MMK_L_cyr_lc_encyrillic trademark -14; pos @MMK_L_cyr_lc_encyrillic twoinferior -6; pos @MMK_L_cyr_lc_encyrillic uni0424 -5; pos @MMK_L_cyr_lc_encyrillic uni044F 2; pos @MMK_L_cyr_lc_encyrillic uni04AE -50; pos @MMK_L_cyr_lc_encyrillic uni04B0 -50; pos @MMK_L_cyr_lc_encyrillic zeroinferior -6; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_acyrillic -3; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_acyrillic.alt01 -7; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_checyrillic -6; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_elcyrillic -2; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_khacyrillic -5; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_ocyrillic -9; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_shhacyrillic -4; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_lc_zecyrilic -2; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Acyrillic 8; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Checyrillic -24; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Elcyrillic 6; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Hardsigncyrillic -24; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Khacyrillic -8; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Tecyrillic -24; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Ucyrillic -39; pos @MMK_L_cyr_lc_escyrillic @MMK_R_cyr_uc_Zhecyrillic -12; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_foot -8; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_guill 5; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_guilr -4; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_hyph -10; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_period -16; pos @MMK_L_cyr_lc_escyrillic @MMK_R_inp_quotel -15; pos @MMK_L_cyr_lc_escyrillic ampersand -4; pos @MMK_L_cyr_lc_escyrillic eightsuperior 15; pos @MMK_L_cyr_lc_escyrillic fiveinferior 8; pos @MMK_L_cyr_lc_escyrillic fivesuperior 15; pos @MMK_L_cyr_lc_escyrillic fourinferior 10; pos @MMK_L_cyr_lc_escyrillic foursuperior 25; pos @MMK_L_cyr_lc_escyrillic oneinferior 10; pos @MMK_L_cyr_lc_escyrillic seveninferior 3; pos @MMK_L_cyr_lc_escyrillic sevensuperior -6; pos @MMK_L_cyr_lc_escyrillic sixinferior 5; pos @MMK_L_cyr_lc_escyrillic sixsuperior 15; pos @MMK_L_cyr_lc_escyrillic slash -10; pos @MMK_L_cyr_lc_escyrillic threeinferior 10; pos @MMK_L_cyr_lc_escyrillic threesuperior 15; pos @MMK_L_cyr_lc_escyrillic twoinferior 8; pos @MMK_L_cyr_lc_escyrillic twosuperior 15; pos @MMK_L_cyr_lc_escyrillic underscore -10; pos @MMK_L_cyr_lc_escyrillic uni0405 4; pos @MMK_L_cyr_lc_escyrillic uni0408 10; pos @MMK_L_cyr_lc_escyrillic uni0414 -6; pos @MMK_L_cyr_lc_escyrillic uni042F -6; pos @MMK_L_cyr_lc_escyrillic uni0431 -1; pos @MMK_L_cyr_lc_escyrillic uni0434 -8; pos @MMK_L_cyr_lc_escyrillic uni0444 -4; pos @MMK_L_cyr_lc_escyrillic uni044F 4; pos @MMK_L_cyr_lc_escyrillic uni0492 9; pos @MMK_L_cyr_lc_escyrillic uni04AE -36; pos @MMK_L_cyr_lc_escyrillic uni04B0 -36; pos @MMK_L_cyr_lc_escyrillic uni04D4 6; pos @MMK_L_cyr_lc_escyrillic zeroinferior 15; pos @MMK_L_cyr_lc_escyrillic zerosuperior 15; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -1; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_checyrillic 13; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_djecyrillic -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_elcyrillic -31; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_khacyrillic 8; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_ocyrillic -1; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_shhacyrillic -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_tecyrillic 10; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_ucyrillic 6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_zecyrilic 2; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_lc_zhecyrillic 4; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Acyrillic -54; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Checyrillic -13; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Elcyrillic -57; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -14; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Khacyrillic -52; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Ocyrillic 3; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Tecyrillic -14; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Ucyrillic -33; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_cyr_uc_Zhecyrillic -46; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_foot 6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_guill -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_guilr 4; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_hyph -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_parenth -6; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_period -107; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_quotel 11; pos @MMK_L_cyr_lc_gecyrillic @MMK_R_inp_quoter 17; pos @MMK_L_cyr_lc_gecyrillic ampersand -31; pos @MMK_L_cyr_lc_gecyrillic copyright 2; pos @MMK_L_cyr_lc_gecyrillic eightinferior -33; pos @MMK_L_cyr_lc_gecyrillic eightsuperior 10; pos @MMK_L_cyr_lc_gecyrillic fiveinferior -20; pos @MMK_L_cyr_lc_gecyrillic fivesuperior 15; pos @MMK_L_cyr_lc_gecyrillic fourinferior -67; pos @MMK_L_cyr_lc_gecyrillic foursuperior 21; pos @MMK_L_cyr_lc_gecyrillic nineinferior -33; pos @MMK_L_cyr_lc_gecyrillic oneinferior -33; pos @MMK_L_cyr_lc_gecyrillic onesuperior 8; pos @MMK_L_cyr_lc_gecyrillic parenright -6; pos @MMK_L_cyr_lc_gecyrillic registered 15; pos @MMK_L_cyr_lc_gecyrillic seveninferior -6; pos @MMK_L_cyr_lc_gecyrillic sixinferior -56; pos @MMK_L_cyr_lc_gecyrillic sixsuperior 10; pos @MMK_L_cyr_lc_gecyrillic slash -55; pos @MMK_L_cyr_lc_gecyrillic threeinferior -23; pos @MMK_L_cyr_lc_gecyrillic threesuperior 21; pos @MMK_L_cyr_lc_gecyrillic trademark -2; pos @MMK_L_cyr_lc_gecyrillic twoinferior -26; pos @MMK_L_cyr_lc_gecyrillic twosuperior 18; pos @MMK_L_cyr_lc_gecyrillic underscore -100; pos @MMK_L_cyr_lc_gecyrillic uni0408 -67; pos @MMK_L_cyr_lc_gecyrillic uni0414 -47; pos @MMK_L_cyr_lc_gecyrillic uni0424 6; pos @MMK_L_cyr_lc_gecyrillic uni042F -6; pos @MMK_L_cyr_lc_gecyrillic uni0431 7; pos @MMK_L_cyr_lc_gecyrillic uni0434 -21; pos @MMK_L_cyr_lc_gecyrillic uni0440 5; pos @MMK_L_cyr_lc_gecyrillic uni0444 -1; pos @MMK_L_cyr_lc_gecyrillic uni044F -1; pos @MMK_L_cyr_lc_gecyrillic uni0455 2; pos @MMK_L_cyr_lc_gecyrillic uni0492 6; pos @MMK_L_cyr_lc_gecyrillic uni04AE -54; pos @MMK_L_cyr_lc_gecyrillic uni04AF 6; pos @MMK_L_cyr_lc_gecyrillic uni04B0 -54; pos @MMK_L_cyr_lc_gecyrillic uni04B1 6; pos @MMK_L_cyr_lc_gecyrillic uni04D4 -90; pos @MMK_L_cyr_lc_gecyrillic zeroinferior -33; pos @MMK_L_cyr_lc_gecyrillic zerosuperior 10; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_lc_checyrillic -22; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_lc_elcyrillic 9; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_lc_tecyrillic -16; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_lc_ucyrillic -10; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_uc_Acyrillic 2; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_uc_Checyrillic -26; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_uc_Elcyrillic 5; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_uc_Hardsigncyrillic -4; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_uc_Tecyrillic -4; pos @MMK_L_cyr_lc_icyrillic @MMK_R_cyr_uc_Ucyrillic -20; pos @MMK_L_cyr_lc_icyrillic @MMK_R_inp_guill -4; pos @MMK_L_cyr_lc_icyrillic @MMK_R_inp_period 10; pos @MMK_L_cyr_lc_icyrillic @MMK_R_inp_quotel -20; pos @MMK_L_cyr_lc_icyrillic @MMK_R_inp_quoter -10; pos @MMK_L_cyr_lc_icyrillic oneinferior -12; pos @MMK_L_cyr_lc_icyrillic slash 4; pos @MMK_L_cyr_lc_icyrillic uni0408 10; pos @MMK_L_cyr_lc_icyrillic uni0414 5; pos @MMK_L_cyr_lc_icyrillic uni0424 -13; pos @MMK_L_cyr_lc_icyrillic uni0434 9; pos @MMK_L_cyr_lc_icyrillic uni044F 2; pos @MMK_L_cyr_lc_icyrillic uni04AE -24; pos @MMK_L_cyr_lc_icyrillic uni04AF -10; pos @MMK_L_cyr_lc_icyrillic uni04B0 -24; pos @MMK_L_cyr_lc_icyrillic uni04B1 -10; pos @MMK_L_cyr_lc_icyrillic uni04D4 2; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_acyrillic 10; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_checyrillic -6; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_khacyrillic -11; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_tecyrillic 2; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_ucyrillic -6; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_lc_zhecyrillic -7; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Acyrillic -8; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Checyrillic -28; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Encyrillic -3; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -30; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Khacyrillic -17; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Ocyrillic 10; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Tecyrillic -30; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Ucyrillic -57; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Zecyrillic -4; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_cyr_uc_Zhecyrillic -23; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_foot -20; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_guill 40; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_guilr 10; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_hyph 10; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_period -20; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_quotel -31; pos @MMK_L_cyr_lc_jecyrillic @MMK_R_inp_quoter -5; pos @MMK_L_cyr_lc_jecyrillic at 10; pos @MMK_L_cyr_lc_jecyrillic eightinferior 10; pos @MMK_L_cyr_lc_jecyrillic eightsuperior 8; pos @MMK_L_cyr_lc_jecyrillic fiveinferior 3; pos @MMK_L_cyr_lc_jecyrillic fivesuperior 13; pos @MMK_L_cyr_lc_jecyrillic fourinferior 5; pos @MMK_L_cyr_lc_jecyrillic foursuperior 13; pos @MMK_L_cyr_lc_jecyrillic nineinferior 10; pos @MMK_L_cyr_lc_jecyrillic ninesuperior -15; pos @MMK_L_cyr_lc_jecyrillic oneinferior 5; pos @MMK_L_cyr_lc_jecyrillic seveninferior 20; pos @MMK_L_cyr_lc_jecyrillic sevensuperior -12; pos @MMK_L_cyr_lc_jecyrillic sixinferior 5; pos @MMK_L_cyr_lc_jecyrillic sixsuperior 8; pos @MMK_L_cyr_lc_jecyrillic threeinferior 6; pos @MMK_L_cyr_lc_jecyrillic threesuperior 10; pos @MMK_L_cyr_lc_jecyrillic trademark -15; pos @MMK_L_cyr_lc_jecyrillic twoinferior 5; pos @MMK_L_cyr_lc_jecyrillic twosuperior 18; pos @MMK_L_cyr_lc_jecyrillic underscore -34; pos @MMK_L_cyr_lc_jecyrillic uni0405 -10; pos @MMK_L_cyr_lc_jecyrillic uni0414 -13; pos @MMK_L_cyr_lc_jecyrillic uni0424 10; pos @MMK_L_cyr_lc_jecyrillic uni042F -16; pos @MMK_L_cyr_lc_jecyrillic uni0431 3; pos @MMK_L_cyr_lc_jecyrillic uni0434 -11; pos @MMK_L_cyr_lc_jecyrillic uni044F 7; pos @MMK_L_cyr_lc_jecyrillic uni0492 9; pos @MMK_L_cyr_lc_jecyrillic uni0493 10; pos @MMK_L_cyr_lc_jecyrillic uni04AE -68; pos @MMK_L_cyr_lc_jecyrillic uni04AF -8; pos @MMK_L_cyr_lc_jecyrillic uni04B0 -62; pos @MMK_L_cyr_lc_jecyrillic uni04B1 -8; pos @MMK_L_cyr_lc_jecyrillic uni04D4 -8; pos @MMK_L_cyr_lc_jecyrillic zeroinferior 20; pos @MMK_L_cyr_lc_jecyrillic zerosuperior 8; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_acyrillic -2; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_acyrillic.alt01 -10; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_elcyrillic 18; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_khacyrillic 9; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_ocyrillic -10; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_tecyrillic 4; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_ucyrillic 8; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_zecyrilic -2; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_lc_zhecyrillic 11; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Acyrillic 11; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Checyrillic -29; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Elcyrillic 13; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Hardsigncyrillic -18; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Khacyrillic 13; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Ocyrillic -3; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Tecyrillic -18; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Ucyrillic -39; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Zecyrillic -9; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_cyr_uc_Zhecyrillic 14; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_guill -11; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_guilr -3; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_hyph -18; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_period 17; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_quotel 6; pos @MMK_L_cyr_lc_kacyrillic @MMK_R_inp_quoter 9; pos @MMK_L_cyr_lc_kacyrillic ampersand -12; pos @MMK_L_cyr_lc_kacyrillic at -8; pos @MMK_L_cyr_lc_kacyrillic eightinferior -4; pos @MMK_L_cyr_lc_kacyrillic eightsuperior 2; pos @MMK_L_cyr_lc_kacyrillic fiveinferior 6; pos @MMK_L_cyr_lc_kacyrillic fivesuperior 3; pos @MMK_L_cyr_lc_kacyrillic fourinferior 6; pos @MMK_L_cyr_lc_kacyrillic foursuperior 16; pos @MMK_L_cyr_lc_kacyrillic nineinferior -14; pos @MMK_L_cyr_lc_kacyrillic ninesuperior -8; pos @MMK_L_cyr_lc_kacyrillic onesuperior -12; pos @MMK_L_cyr_lc_kacyrillic registered 5; pos @MMK_L_cyr_lc_kacyrillic seveninferior -14; pos @MMK_L_cyr_lc_kacyrillic sevensuperior -18; pos @MMK_L_cyr_lc_kacyrillic sixsuperior 2; pos @MMK_L_cyr_lc_kacyrillic slash 4; pos @MMK_L_cyr_lc_kacyrillic threeinferior 12; pos @MMK_L_cyr_lc_kacyrillic threesuperior 12; pos @MMK_L_cyr_lc_kacyrillic trademark -20; pos @MMK_L_cyr_lc_kacyrillic twoinferior 9; pos @MMK_L_cyr_lc_kacyrillic twosuperior 2; pos @MMK_L_cyr_lc_kacyrillic underscore 4; pos @MMK_L_cyr_lc_kacyrillic uni0405 -3; pos @MMK_L_cyr_lc_kacyrillic uni0414 16; pos @MMK_L_cyr_lc_kacyrillic uni0424 -4; pos @MMK_L_cyr_lc_kacyrillic uni042F 9; pos @MMK_L_cyr_lc_kacyrillic uni0431 -1; pos @MMK_L_cyr_lc_kacyrillic uni0434 17; pos @MMK_L_cyr_lc_kacyrillic uni0440 1; pos @MMK_L_cyr_lc_kacyrillic uni0444 -10; pos @MMK_L_cyr_lc_kacyrillic uni044F 12; pos @MMK_L_cyr_lc_kacyrillic uni0455 -3; pos @MMK_L_cyr_lc_kacyrillic uni0492 6; pos @MMK_L_cyr_lc_kacyrillic uni04AE -58; pos @MMK_L_cyr_lc_kacyrillic uni04AF 4; pos @MMK_L_cyr_lc_kacyrillic uni04B0 -58; pos @MMK_L_cyr_lc_kacyrillic uni04B1 4; pos @MMK_L_cyr_lc_kacyrillic uni04D4 6; pos @MMK_L_cyr_lc_kacyrillic zeroinferior -4; pos @MMK_L_cyr_lc_kacyrillic zerosuperior 2; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_acyrillic.alt01 -12; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_checyrillic -12; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_elcyrillic 28; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_khacyrillic 16; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_ocyrillic -12; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_tecyrillic -8; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_ucyrillic 18; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_zecyrilic -3; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_lc_zhecyrillic 17; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Acyrillic 11; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Checyrillic -37; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Elcyrillic 21; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Hardsigncyrillic -36; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Khacyrillic 11; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Ocyrillic -15; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Tecyrillic -36; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Ucyrillic -43; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Zecyrillic -10; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_cyr_uc_Zhecyrillic 17; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_colon 9; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_foot -20; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_guill -21; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_guilr -9; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_hyph -24; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_parenth 11; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_period 19; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_quotel -14; pos @MMK_L_cyr_lc_kadescendercyrillic @MMK_R_inp_quoter -10; pos @MMK_L_cyr_lc_kadescendercyrillic ampersand -4; pos @MMK_L_cyr_lc_kadescendercyrillic at -12; pos @MMK_L_cyr_lc_kadescendercyrillic copyright -12; pos @MMK_L_cyr_lc_kadescendercyrillic eightsuperior -10; pos @MMK_L_cyr_lc_kadescendercyrillic fiveinferior 4; pos @MMK_L_cyr_lc_kadescendercyrillic fivesuperior -9; pos @MMK_L_cyr_lc_kadescendercyrillic fourinferior 9; pos @MMK_L_cyr_lc_kadescendercyrillic foursuperior 6; pos @MMK_L_cyr_lc_kadescendercyrillic nineinferior -12; pos @MMK_L_cyr_lc_kadescendercyrillic ninesuperior -15; pos @MMK_L_cyr_lc_kadescendercyrillic onesuperior -19; pos @MMK_L_cyr_lc_kadescendercyrillic parenright 31; pos @MMK_L_cyr_lc_kadescendercyrillic question -6; pos @MMK_L_cyr_lc_kadescendercyrillic registered -7; pos @MMK_L_cyr_lc_kadescendercyrillic seveninferior -18; pos @MMK_L_cyr_lc_kadescendercyrillic sevensuperior -28; pos @MMK_L_cyr_lc_kadescendercyrillic sixsuperior -10; pos @MMK_L_cyr_lc_kadescendercyrillic slash 52; pos @MMK_L_cyr_lc_kadescendercyrillic threeinferior 13; pos @MMK_L_cyr_lc_kadescendercyrillic trademark -21; pos @MMK_L_cyr_lc_kadescendercyrillic twoinferior 12; pos @MMK_L_cyr_lc_kadescendercyrillic twosuperior -11; pos @MMK_L_cyr_lc_kadescendercyrillic underscore 49; pos @MMK_L_cyr_lc_kadescendercyrillic uni0408 10; pos @MMK_L_cyr_lc_kadescendercyrillic uni0414 29; pos @MMK_L_cyr_lc_kadescendercyrillic uni0424 -14; pos @MMK_L_cyr_lc_kadescendercyrillic uni042F 12; pos @MMK_L_cyr_lc_kadescendercyrillic uni0431 -6; pos @MMK_L_cyr_lc_kadescendercyrillic uni0434 34; pos @MMK_L_cyr_lc_kadescendercyrillic uni0440 5; pos @MMK_L_cyr_lc_kadescendercyrillic uni0444 -12; pos @MMK_L_cyr_lc_kadescendercyrillic uni044F 19; pos @MMK_L_cyr_lc_kadescendercyrillic uni0458 86; pos @MMK_L_cyr_lc_kadescendercyrillic uni04AE -61; pos @MMK_L_cyr_lc_kadescendercyrillic uni04AF -9; pos @MMK_L_cyr_lc_kadescendercyrillic uni04B0 -61; pos @MMK_L_cyr_lc_kadescendercyrillic uni04B1 -7; pos @MMK_L_cyr_lc_kadescendercyrillic uni04D4 17; pos @MMK_L_cyr_lc_kadescendercyrillic zerosuperior -10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_acyrillic 10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_acyrillic.alt01 8; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_checyrillic -10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_khacyrillic -17; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_ocyrillic 10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_tecyrillic -1; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_ucyrillic -7; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_zecyrilic -2; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_lc_zhecyrillic -10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Acyrillic -7; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Checyrillic -31; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Hardsigncyrillic -45; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Khacyrillic -15; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Ocyrillic 10; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Tecyrillic -45; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Ucyrillic -55; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Zecyrillic -4; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_cyr_uc_Zhecyrillic -26; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_foot -20; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_guill 35; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_guilr -4; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_hyph 20; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_period -27; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_quotel -32; pos @MMK_L_cyr_lc_ocyrillic @MMK_R_inp_quoter -29; pos @MMK_L_cyr_lc_ocyrillic eightinferior 13; pos @MMK_L_cyr_lc_ocyrillic fiveinferior 12; pos @MMK_L_cyr_lc_ocyrillic fourinferior 13; pos @MMK_L_cyr_lc_ocyrillic foursuperior 13; pos @MMK_L_cyr_lc_ocyrillic nineinferior 23; pos @MMK_L_cyr_lc_ocyrillic ninesuperior -14; pos @MMK_L_cyr_lc_ocyrillic oneinferior 21; pos @MMK_L_cyr_lc_ocyrillic onesuperior -6; pos @MMK_L_cyr_lc_ocyrillic registered -5; pos @MMK_L_cyr_lc_ocyrillic seveninferior 20; pos @MMK_L_cyr_lc_ocyrillic sevensuperior -14; pos @MMK_L_cyr_lc_ocyrillic sixinferior 18; pos @MMK_L_cyr_lc_ocyrillic slash 4; pos @MMK_L_cyr_lc_ocyrillic threeinferior 13; pos @MMK_L_cyr_lc_ocyrillic trademark -15; pos @MMK_L_cyr_lc_ocyrillic twoinferior 8; pos @MMK_L_cyr_lc_ocyrillic twosuperior 10; pos @MMK_L_cyr_lc_ocyrillic underscore -50; pos @MMK_L_cyr_lc_ocyrillic uni0408 -6; pos @MMK_L_cyr_lc_ocyrillic uni0414 -13; pos @MMK_L_cyr_lc_ocyrillic uni0424 4; pos @MMK_L_cyr_lc_ocyrillic uni042F -18; pos @MMK_L_cyr_lc_ocyrillic uni0431 6; pos @MMK_L_cyr_lc_ocyrillic uni0434 -19; pos @MMK_L_cyr_lc_ocyrillic uni0444 10; pos @MMK_L_cyr_lc_ocyrillic uni0492 6; pos @MMK_L_cyr_lc_ocyrillic uni0493 9; pos @MMK_L_cyr_lc_ocyrillic uni04AE -74; pos @MMK_L_cyr_lc_ocyrillic uni04AF -13; pos @MMK_L_cyr_lc_ocyrillic uni04B0 -71; pos @MMK_L_cyr_lc_ocyrillic uni04B1 -13; pos @MMK_L_cyr_lc_ocyrillic uni04D4 -7; pos @MMK_L_cyr_lc_ocyrillic zeroinferior 36; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_checyrillic -34; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_elcyrillic 6; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_tecyrillic -13; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_ucyrillic -13; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_lc_zecyrilic -5; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Checyrillic -59; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Elcyrillic 6; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Hardsigncyrillic -51; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Tecyrillic -51; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Ucyrillic -46; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_cyr_uc_Zecyrillic -17; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_foot -40; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_guill 6; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_guilr -8; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_period 10; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_quotel -50; pos @MMK_L_cyr_lc_shhacyrillic @MMK_R_inp_quoter -30; pos @MMK_L_cyr_lc_shhacyrillic eightsuperior -8; pos @MMK_L_cyr_lc_shhacyrillic fiveinferior 4; pos @MMK_L_cyr_lc_shhacyrillic fivesuperior -10; pos @MMK_L_cyr_lc_shhacyrillic foursuperior -4; pos @MMK_L_cyr_lc_shhacyrillic nineinferior -4; pos @MMK_L_cyr_lc_shhacyrillic ninesuperior -22; pos @MMK_L_cyr_lc_shhacyrillic oneinferior -6; pos @MMK_L_cyr_lc_shhacyrillic onesuperior -20; pos @MMK_L_cyr_lc_shhacyrillic registered -25; pos @MMK_L_cyr_lc_shhacyrillic seveninferior -2; pos @MMK_L_cyr_lc_shhacyrillic sevensuperior -27; pos @MMK_L_cyr_lc_shhacyrillic sixsuperior -8; pos @MMK_L_cyr_lc_shhacyrillic slash 4; pos @MMK_L_cyr_lc_shhacyrillic threeinferior 6; pos @MMK_L_cyr_lc_shhacyrillic threesuperior -8; pos @MMK_L_cyr_lc_shhacyrillic trademark -35; pos @MMK_L_cyr_lc_shhacyrillic twoinferior 6; pos @MMK_L_cyr_lc_shhacyrillic twosuperior -4; pos @MMK_L_cyr_lc_shhacyrillic uni0414 6; pos @MMK_L_cyr_lc_shhacyrillic uni0424 -12; pos @MMK_L_cyr_lc_shhacyrillic uni0431 -4; pos @MMK_L_cyr_lc_shhacyrillic uni0434 6; pos @MMK_L_cyr_lc_shhacyrillic uni044F 2; pos @MMK_L_cyr_lc_shhacyrillic uni04AE -50; pos @MMK_L_cyr_lc_shhacyrillic uni04AF -13; pos @MMK_L_cyr_lc_shhacyrillic uni04B0 -50; pos @MMK_L_cyr_lc_shhacyrillic uni04B1 -13; pos @MMK_L_cyr_lc_shhacyrillic zeroinferior 6; pos @MMK_L_cyr_lc_shhacyrillic zerosuperior -8; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_acyrillic 5; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_acyrillic.alt01 9; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_checyrillic -32; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_djecyrillic -6; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_elcyrillic 14; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_khacyrillic -10; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_ocyrillic 9; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_shhacyrillic -6; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_tecyrillic -27; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_ucyrillic -35; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_lc_zhecyrillic -8; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Checyrillic -70; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Elcyrillic 13; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Hardsigncyrillic -90; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Khacyrillic -12; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Tecyrillic -90; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Ucyrillic -50; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_cyr_uc_Zhecyrillic -6; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_foot -48; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_guill 27; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_guilr 8; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_hyph -4; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_period -4; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_quotel -64; pos @MMK_L_cyr_lc_softsigncyrillic @MMK_R_inp_quoter -50; pos @MMK_L_cyr_lc_softsigncyrillic ampersand 13; pos @MMK_L_cyr_lc_softsigncyrillic eightinferior 13; pos @MMK_L_cyr_lc_softsigncyrillic eightsuperior -46; pos @MMK_L_cyr_lc_softsigncyrillic fiveinferior 12; pos @MMK_L_cyr_lc_softsigncyrillic fivesuperior -29; pos @MMK_L_cyr_lc_softsigncyrillic fourinferior 19; pos @MMK_L_cyr_lc_softsigncyrillic foursuperior -36; pos @MMK_L_cyr_lc_softsigncyrillic nineinferior 18; pos @MMK_L_cyr_lc_softsigncyrillic ninesuperior -44; pos @MMK_L_cyr_lc_softsigncyrillic oneinferior 6; pos @MMK_L_cyr_lc_softsigncyrillic onesuperior -28; pos @MMK_L_cyr_lc_softsigncyrillic parenright -6; pos @MMK_L_cyr_lc_softsigncyrillic question -10; pos @MMK_L_cyr_lc_softsigncyrillic registered -52; pos @MMK_L_cyr_lc_softsigncyrillic seveninferior 10; pos @MMK_L_cyr_lc_softsigncyrillic sevensuperior -52; pos @MMK_L_cyr_lc_softsigncyrillic sixinferior 15; pos @MMK_L_cyr_lc_softsigncyrillic sixsuperior -46; pos @MMK_L_cyr_lc_softsigncyrillic threeinferior 12; pos @MMK_L_cyr_lc_softsigncyrillic threesuperior -18; pos @MMK_L_cyr_lc_softsigncyrillic trademark -66; pos @MMK_L_cyr_lc_softsigncyrillic twoinferior 14; pos @MMK_L_cyr_lc_softsigncyrillic twosuperior -17; pos @MMK_L_cyr_lc_softsigncyrillic underscore -24; pos @MMK_L_cyr_lc_softsigncyrillic uni0408 4; pos @MMK_L_cyr_lc_softsigncyrillic uni0414 -5; pos @MMK_L_cyr_lc_softsigncyrillic uni042F -7; pos @MMK_L_cyr_lc_softsigncyrillic uni0431 9; pos @MMK_L_cyr_lc_softsigncyrillic uni0434 -3; pos @MMK_L_cyr_lc_softsigncyrillic uni0440 -4; pos @MMK_L_cyr_lc_softsigncyrillic uni0444 9; pos @MMK_L_cyr_lc_softsigncyrillic uni044F 3; pos @MMK_L_cyr_lc_softsigncyrillic uni0455 2; pos @MMK_L_cyr_lc_softsigncyrillic uni0493 11; pos @MMK_L_cyr_lc_softsigncyrillic uni04AE -104; pos @MMK_L_cyr_lc_softsigncyrillic uni04AF -32; pos @MMK_L_cyr_lc_softsigncyrillic uni04B0 -57; pos @MMK_L_cyr_lc_softsigncyrillic uni04B1 -32; pos @MMK_L_cyr_lc_softsigncyrillic uni04D4 -6; pos @MMK_L_cyr_lc_softsigncyrillic zeroinferior 15; pos @MMK_L_cyr_lc_softsigncyrillic zerosuperior -46; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_acyrillic -14; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_acyrillic.alt01 -17; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_checyrillic 10; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_djecyrillic -5; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_elcyrillic -46; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_khacyrillic 10; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_ocyrillic -13; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_shhacyrillic -5; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_tecyrillic 9; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_ucyrillic 23; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_zecyrilic -2; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_lc_zhecyrillic 4; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Acyrillic -27; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Checyrillic -6; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Elcyrillic -53; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Hardsigncyrillic 6; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Khacyrillic -12; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Ocyrillic 10; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Tecyrillic 6; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Ucyrillic -31; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_cyr_uc_Zhecyrillic -39; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_foot 20; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_guill -6; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_guilr -6; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_hyph -10; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_period -66; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_quotel 40; pos @MMK_L_cyr_lc_ucyrillic @MMK_R_inp_quoter 40; pos @MMK_L_cyr_lc_ucyrillic ampersand -18; pos @MMK_L_cyr_lc_ucyrillic at -10; pos @MMK_L_cyr_lc_ucyrillic eightinferior -29; pos @MMK_L_cyr_lc_ucyrillic eightsuperior 28; pos @MMK_L_cyr_lc_ucyrillic fiveinferior -29; pos @MMK_L_cyr_lc_ucyrillic fivesuperior 28; pos @MMK_L_cyr_lc_ucyrillic fourinferior -36; pos @MMK_L_cyr_lc_ucyrillic foursuperior 30; pos @MMK_L_cyr_lc_ucyrillic nineinferior -23; pos @MMK_L_cyr_lc_ucyrillic ninesuperior 33; pos @MMK_L_cyr_lc_ucyrillic oneinferior -26; pos @MMK_L_cyr_lc_ucyrillic parenright -10; pos @MMK_L_cyr_lc_ucyrillic registered 38; pos @MMK_L_cyr_lc_ucyrillic seveninferior -14; pos @MMK_L_cyr_lc_ucyrillic sevensuperior 9; pos @MMK_L_cyr_lc_ucyrillic sixinferior -44; pos @MMK_L_cyr_lc_ucyrillic sixsuperior 30; pos @MMK_L_cyr_lc_ucyrillic slash -15; pos @MMK_L_cyr_lc_ucyrillic threeinferior -24; pos @MMK_L_cyr_lc_ucyrillic threesuperior 16; pos @MMK_L_cyr_lc_ucyrillic trademark 20; pos @MMK_L_cyr_lc_ucyrillic twoinferior -24; pos @MMK_L_cyr_lc_ucyrillic twosuperior 16; pos @MMK_L_cyr_lc_ucyrillic underscore -80; pos @MMK_L_cyr_lc_ucyrillic uni0405 10; pos @MMK_L_cyr_lc_ucyrillic uni0408 -39; pos @MMK_L_cyr_lc_ucyrillic uni0414 -49; pos @MMK_L_cyr_lc_ucyrillic uni0424 -5; pos @MMK_L_cyr_lc_ucyrillic uni042F -15; pos @MMK_L_cyr_lc_ucyrillic uni0431 -3; pos @MMK_L_cyr_lc_ucyrillic uni0434 -39; pos @MMK_L_cyr_lc_ucyrillic uni0444 -12; pos @MMK_L_cyr_lc_ucyrillic uni044F -21; pos @MMK_L_cyr_lc_ucyrillic uni0455 -8; pos @MMK_L_cyr_lc_ucyrillic uni04AE -21; pos @MMK_L_cyr_lc_ucyrillic uni04AF 17; pos @MMK_L_cyr_lc_ucyrillic uni04B0 -20; pos @MMK_L_cyr_lc_ucyrillic uni04B1 17; pos @MMK_L_cyr_lc_ucyrillic uni04D4 -27; pos @MMK_L_cyr_lc_ucyrillic zeroinferior -32; pos @MMK_L_cyr_lc_ucyrillic zerosuperior 38; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_acyrillic 4; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_acyrillic.alt01 2; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_checyrillic -8; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_djecyrillic -2; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_elcyrillic 9; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_khacyrillic -6; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_ocyrillic 5; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_shhacyrillic -2; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_tecyrillic -1; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_ucyrillic -12; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_lc_zhecyrillic -3; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Acyrillic -10; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Checyrillic -41; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Elcyrillic 6; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Encyrillic -6; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -40; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Khacyrillic -12; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Ocyrillic -3; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Tecyrillic -40; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Ucyrillic -50; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Zecyrillic -10; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_cyr_uc_Zhecyrillic -7; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_colon -4; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_foot -21; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_guill 10; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_guilr -5; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_parenth -6; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_period -9; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_quotel -24; pos @MMK_L_cyr_lc_vecyrillic @MMK_R_inp_quoter -22; pos @MMK_L_cyr_lc_vecyrillic eightsuperior -6; pos @MMK_L_cyr_lc_vecyrillic fiveinferior -2; pos @MMK_L_cyr_lc_vecyrillic fivesuperior -6; pos @MMK_L_cyr_lc_vecyrillic fourinferior 4; pos @MMK_L_cyr_lc_vecyrillic ninesuperior -14; pos @MMK_L_cyr_lc_vecyrillic oneinferior -5; pos @MMK_L_cyr_lc_vecyrillic onesuperior -6; pos @MMK_L_cyr_lc_vecyrillic parenright -6; pos @MMK_L_cyr_lc_vecyrillic question -4; pos @MMK_L_cyr_lc_vecyrillic registered -13; pos @MMK_L_cyr_lc_vecyrillic seveninferior -3; pos @MMK_L_cyr_lc_vecyrillic sevensuperior -33; pos @MMK_L_cyr_lc_vecyrillic sixsuperior -6; pos @MMK_L_cyr_lc_vecyrillic slash -16; pos @MMK_L_cyr_lc_vecyrillic threeinferior 2; pos @MMK_L_cyr_lc_vecyrillic trademark -28; pos @MMK_L_cyr_lc_vecyrillic twoinferior 1; pos @MMK_L_cyr_lc_vecyrillic underscore -41; pos @MMK_L_cyr_lc_vecyrillic uni0414 -9; pos @MMK_L_cyr_lc_vecyrillic uni042F -9; pos @MMK_L_cyr_lc_vecyrillic uni0431 3; pos @MMK_L_cyr_lc_vecyrillic uni0434 -9; pos @MMK_L_cyr_lc_vecyrillic uni0444 2; pos @MMK_L_cyr_lc_vecyrillic uni044F -5; pos @MMK_L_cyr_lc_vecyrillic uni0492 6; pos @MMK_L_cyr_lc_vecyrillic uni0493 9; pos @MMK_L_cyr_lc_vecyrillic uni04AE -60; pos @MMK_L_cyr_lc_vecyrillic uni04AF -14; pos @MMK_L_cyr_lc_vecyrillic uni04B0 -60; pos @MMK_L_cyr_lc_vecyrillic uni04B1 -14; pos @MMK_L_cyr_lc_vecyrillic zerosuperior -12; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_acyrillic -6; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_acyrillic.alt01 -12; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_checyrillic -76; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_djecyrillic -4; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_elcyrillic 16; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_ocyrillic -7; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_shhacyrillic -8; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_tecyrillic -54; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_ucyrillic -17; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_zecyrilic -3; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_lc_zhecyrillic 11; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Acyrillic 15; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Checyrillic -81; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Elcyrillic 18; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Hardsigncyrillic -56; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Khacyrillic 17; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Ocyrillic -26; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Tecyrillic -56; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Ucyrillic -48; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Zecyrillic -13; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_cyr_uc_Zhecyrillic 10; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_foot -90; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_guill -14; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_guilr -10; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_hyph -25; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_period 17; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_quotel -100; pos @MMK_L_cyr_uc_Acyrillic @MMK_R_inp_quoter -100; pos @MMK_L_cyr_uc_Acyrillic ampersand -10; pos @MMK_L_cyr_uc_Acyrillic at -20; pos @MMK_L_cyr_uc_Acyrillic eightinferior 12; pos @MMK_L_cyr_uc_Acyrillic eightsuperior -64; pos @MMK_L_cyr_uc_Acyrillic exclamdown 28; pos @MMK_L_cyr_uc_Acyrillic fiveinferior 10; pos @MMK_L_cyr_uc_Acyrillic fivesuperior -54; pos @MMK_L_cyr_uc_Acyrillic fourinferior 10; pos @MMK_L_cyr_uc_Acyrillic foursuperior -46; pos @MMK_L_cyr_uc_Acyrillic nineinferior -5; pos @MMK_L_cyr_uc_Acyrillic ninesuperior -72; pos @MMK_L_cyr_uc_Acyrillic oneinferior 14; pos @MMK_L_cyr_uc_Acyrillic onesuperior -46; pos @MMK_L_cyr_uc_Acyrillic question -20; pos @MMK_L_cyr_uc_Acyrillic questiondown 40; pos @MMK_L_cyr_uc_Acyrillic registered -60; pos @MMK_L_cyr_uc_Acyrillic seveninferior -12; pos @MMK_L_cyr_uc_Acyrillic sevensuperior -84; pos @MMK_L_cyr_uc_Acyrillic sixinferior 7; pos @MMK_L_cyr_uc_Acyrillic sixsuperior -54; pos @MMK_L_cyr_uc_Acyrillic slash 20; pos @MMK_L_cyr_uc_Acyrillic threeinferior 20; pos @MMK_L_cyr_uc_Acyrillic threesuperior -46; pos @MMK_L_cyr_uc_Acyrillic trademark -85; pos @MMK_L_cyr_uc_Acyrillic twoinferior 20; pos @MMK_L_cyr_uc_Acyrillic twosuperior -36; pos @MMK_L_cyr_uc_Acyrillic uni0408 14; pos @MMK_L_cyr_uc_Acyrillic uni0414 18; pos @MMK_L_cyr_uc_Acyrillic uni0424 -38; pos @MMK_L_cyr_uc_Acyrillic uni042F 9; pos @MMK_L_cyr_uc_Acyrillic uni0431 -11; pos @MMK_L_cyr_uc_Acyrillic uni0434 14; pos @MMK_L_cyr_uc_Acyrillic uni0440 -10; pos @MMK_L_cyr_uc_Acyrillic uni0444 -6; pos @MMK_L_cyr_uc_Acyrillic uni044F 2; pos @MMK_L_cyr_uc_Acyrillic uni04AE -55; pos @MMK_L_cyr_uc_Acyrillic uni04AF -41; pos @MMK_L_cyr_uc_Acyrillic uni04B0 -55; pos @MMK_L_cyr_uc_Acyrillic uni04B1 -35; pos @MMK_L_cyr_uc_Acyrillic uni04D4 15; pos @MMK_L_cyr_uc_Acyrillic zeroinferior 20; pos @MMK_L_cyr_uc_Acyrillic zerosuperior -54; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_acyrillic -2; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_acyrillic.alt01 -16; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_checyrillic -45; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_elcyrillic 23; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_khacyrillic 8; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_ocyrillic -16; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_tecyrillic -23; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_zecyrilic -6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_lc_zhecyrillic 10; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Acyrillic 6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Checyrillic -6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Elcyrillic 11; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Hardsigncyrillic -6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Khacyrillic 3; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Ocyrillic -15; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Tecyrillic -6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Ucyrillic -8; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Zecyrillic -2; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_cyr_uc_Zhecyrillic 6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_colon 3; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_foot -9; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_guill -18; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_guilr -12; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_hyph -18; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_parenth 6; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_period 10; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_quotel -21; pos @MMK_L_cyr_uc_Decyrillic @MMK_R_inp_quoter -9; pos @MMK_L_cyr_uc_Decyrillic ampersand -6; pos @MMK_L_cyr_uc_Decyrillic at -12; pos @MMK_L_cyr_uc_Decyrillic copyright -9; pos @MMK_L_cyr_uc_Decyrillic eightinferior -4; pos @MMK_L_cyr_uc_Decyrillic eightsuperior -12; pos @MMK_L_cyr_uc_Decyrillic fiveinferior 3; pos @MMK_L_cyr_uc_Decyrillic fivesuperior -9; pos @MMK_L_cyr_uc_Decyrillic fourinferior 9; pos @MMK_L_cyr_uc_Decyrillic foursuperior -16; pos @MMK_L_cyr_uc_Decyrillic nineinferior -12; pos @MMK_L_cyr_uc_Decyrillic ninesuperior -10; pos @MMK_L_cyr_uc_Decyrillic onesuperior -6; pos @MMK_L_cyr_uc_Decyrillic parenright 9; pos @MMK_L_cyr_uc_Decyrillic registered -18; pos @MMK_L_cyr_uc_Decyrillic seveninferior -20; pos @MMK_L_cyr_uc_Decyrillic sixinferior -4; pos @MMK_L_cyr_uc_Decyrillic sixsuperior -15; pos @MMK_L_cyr_uc_Decyrillic slash 19; pos @MMK_L_cyr_uc_Decyrillic threeinferior 12; pos @MMK_L_cyr_uc_Decyrillic threesuperior -3; pos @MMK_L_cyr_uc_Decyrillic twoinferior 6; pos @MMK_L_cyr_uc_Decyrillic twosuperior -6; pos @MMK_L_cyr_uc_Decyrillic underscore 17; pos @MMK_L_cyr_uc_Decyrillic uni0408 6; pos @MMK_L_cyr_uc_Decyrillic uni0414 8; pos @MMK_L_cyr_uc_Decyrillic uni0424 -21; pos @MMK_L_cyr_uc_Decyrillic uni0431 -9; pos @MMK_L_cyr_uc_Decyrillic uni0434 8; pos @MMK_L_cyr_uc_Decyrillic uni0440 -6; pos @MMK_L_cyr_uc_Decyrillic uni0444 -12; pos @MMK_L_cyr_uc_Decyrillic uni044F 12; pos @MMK_L_cyr_uc_Decyrillic uni0458 72; pos @MMK_L_cyr_uc_Decyrillic uni04AE -9; pos @MMK_L_cyr_uc_Decyrillic uni04AF -21; pos @MMK_L_cyr_uc_Decyrillic uni04B0 -9; pos @MMK_L_cyr_uc_Decyrillic uni04B1 -19; pos @MMK_L_cyr_uc_Decyrillic uni04D4 5; pos @MMK_L_cyr_uc_Decyrillic zeroinferior -4; pos @MMK_L_cyr_uc_Decyrillic zerosuperior -15; pos @MMK_L_cyr_uc_Encyrillic foursuperior -6; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_acyrillic -10; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_acyrillic.alt01 -10; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_checyrillic -5; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_elcyrillic -2; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_ocyrillic -10; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_tecyrillic -3; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_zecyrilic -3; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_lc_zhecyrillic -5; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Acyrillic -15; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Checyrillic -3; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Elcyrillic -2; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Ocyrillic -13; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Ucyrillic -5; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Zecyrillic -3; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_cyr_uc_Zhecyrillic -4; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_foot 10; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_hyph -20; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_period -37; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_quotel 4; pos @MMK_L_cyr_uc_Escyrillic @MMK_R_inp_quoter 10; pos @MMK_L_cyr_uc_Escyrillic ampersand -8; pos @MMK_L_cyr_uc_Escyrillic at -11; pos @MMK_L_cyr_uc_Escyrillic eightinferior -3; pos @MMK_L_cyr_uc_Escyrillic fiveinferior 2; pos @MMK_L_cyr_uc_Escyrillic fourinferior 3; pos @MMK_L_cyr_uc_Escyrillic nineinferior -8; pos @MMK_L_cyr_uc_Escyrillic ninesuperior 10; pos @MMK_L_cyr_uc_Escyrillic oneinferior -16; pos @MMK_L_cyr_uc_Escyrillic onesuperior 6; pos @MMK_L_cyr_uc_Escyrillic registered 9; pos @MMK_L_cyr_uc_Escyrillic seveninferior -12; pos @MMK_L_cyr_uc_Escyrillic sevensuperior 3; pos @MMK_L_cyr_uc_Escyrillic sixinferior 5; pos @MMK_L_cyr_uc_Escyrillic sixsuperior 3; pos @MMK_L_cyr_uc_Escyrillic slash -10; pos @MMK_L_cyr_uc_Escyrillic threeinferior 2; pos @MMK_L_cyr_uc_Escyrillic threesuperior 6; pos @MMK_L_cyr_uc_Escyrillic trademark 6; pos @MMK_L_cyr_uc_Escyrillic twoinferior 1; pos @MMK_L_cyr_uc_Escyrillic twosuperior 8; pos @MMK_L_cyr_uc_Escyrillic underscore -24; pos @MMK_L_cyr_uc_Escyrillic uni0414 -7; pos @MMK_L_cyr_uc_Escyrillic uni0424 -5; pos @MMK_L_cyr_uc_Escyrillic uni042F -9; pos @MMK_L_cyr_uc_Escyrillic uni0431 -2; pos @MMK_L_cyr_uc_Escyrillic uni0434 -12; pos @MMK_L_cyr_uc_Escyrillic uni0440 -5; pos @MMK_L_cyr_uc_Escyrillic uni0444 -10; pos @MMK_L_cyr_uc_Escyrillic uni044F -12; pos @MMK_L_cyr_uc_Escyrillic uni04AE -5; pos @MMK_L_cyr_uc_Escyrillic uni04B0 -5; pos @MMK_L_cyr_uc_Escyrillic uni04D4 -15; pos @MMK_L_cyr_uc_Escyrillic zeroinferior -4; pos @MMK_L_cyr_uc_Escyrillic zerosuperior 11; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_acyrillic -44; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -49; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_checyrillic -8; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_djecyrillic 6; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_elcyrillic -71; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_encyrillic -16; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_icyrillic -6; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_khacyrillic -4; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_ocyrillic -49; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_shhacyrillic 6; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_tecyrillic -16; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_ucyrillic 2; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_zecyrilic -26; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_lc_zhecyrillic -23; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Acyrillic -69; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Checyrillic 6; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Elcyrillic -65; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Hardsigncyrillic 22; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Khacyrillic 4; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Ocyrillic -11; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Tecyrillic 22; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Ucyrillic 11; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Zecyrillic -3; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_cyr_uc_Zhecyrillic -6; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_colon -10; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_foot 30; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_guill -56; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_guilr -30; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_hyph -54; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_period -100; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_quotel 22; pos @MMK_L_cyr_uc_Gecyrillic @MMK_R_inp_quoter 20; pos @MMK_L_cyr_uc_Gecyrillic ampersand -42; pos @MMK_L_cyr_uc_Gecyrillic at -38; pos @MMK_L_cyr_uc_Gecyrillic eightinferior -101; pos @MMK_L_cyr_uc_Gecyrillic eightsuperior 16; pos @MMK_L_cyr_uc_Gecyrillic fiveinferior -88; pos @MMK_L_cyr_uc_Gecyrillic fivesuperior 18; pos @MMK_L_cyr_uc_Gecyrillic fourinferior -91; pos @MMK_L_cyr_uc_Gecyrillic foursuperior 12; pos @MMK_L_cyr_uc_Gecyrillic nineinferior -97; pos @MMK_L_cyr_uc_Gecyrillic ninesuperior 26; pos @MMK_L_cyr_uc_Gecyrillic oneinferior -84; pos @MMK_L_cyr_uc_Gecyrillic onesuperior 25; pos @MMK_L_cyr_uc_Gecyrillic parenright 20; pos @MMK_L_cyr_uc_Gecyrillic question 26; pos @MMK_L_cyr_uc_Gecyrillic registered 30; pos @MMK_L_cyr_uc_Gecyrillic seveninferior -83; pos @MMK_L_cyr_uc_Gecyrillic sevensuperior 22; pos @MMK_L_cyr_uc_Gecyrillic sixinferior -104; pos @MMK_L_cyr_uc_Gecyrillic sixsuperior 20; pos @MMK_L_cyr_uc_Gecyrillic slash -86; pos @MMK_L_cyr_uc_Gecyrillic threeinferior -88; pos @MMK_L_cyr_uc_Gecyrillic threesuperior 20; pos @MMK_L_cyr_uc_Gecyrillic trademark 25; pos @MMK_L_cyr_uc_Gecyrillic twoinferior -88; pos @MMK_L_cyr_uc_Gecyrillic twosuperior 20; pos @MMK_L_cyr_uc_Gecyrillic underscore -95; pos @MMK_L_cyr_uc_Gecyrillic uni0405 -7; pos @MMK_L_cyr_uc_Gecyrillic uni0408 -57; pos @MMK_L_cyr_uc_Gecyrillic uni0414 -45; pos @MMK_L_cyr_uc_Gecyrillic uni0424 -16; pos @MMK_L_cyr_uc_Gecyrillic uni042F -24; pos @MMK_L_cyr_uc_Gecyrillic uni0431 -14; pos @MMK_L_cyr_uc_Gecyrillic uni0434 -62; pos @MMK_L_cyr_uc_Gecyrillic uni0440 -13; pos @MMK_L_cyr_uc_Gecyrillic uni0444 -49; pos @MMK_L_cyr_uc_Gecyrillic uni044F -47; pos @MMK_L_cyr_uc_Gecyrillic uni0455 -38; pos @MMK_L_cyr_uc_Gecyrillic uni0458 -6; pos @MMK_L_cyr_uc_Gecyrillic uni0493 -16; pos @MMK_L_cyr_uc_Gecyrillic uni04AE 10; pos @MMK_L_cyr_uc_Gecyrillic uni04AF 2; pos @MMK_L_cyr_uc_Gecyrillic uni04B0 10; pos @MMK_L_cyr_uc_Gecyrillic uni04B1 2; pos @MMK_L_cyr_uc_Gecyrillic uni04D4 -112; pos @MMK_L_cyr_uc_Gecyrillic zeroinferior -101; pos @MMK_L_cyr_uc_Gecyrillic zerosuperior 26; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -5; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_lc_checyrillic -15; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_lc_ocyrillic -10; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_lc_tecyrillic -7; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_lc_zecyrilic -3; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Checyrillic -5; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Elcyrillic 3; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_cyr_uc_Ucyrillic -13; pos @MMK_L_cyr_uc_Jecyrillic @MMK_R_inp_hyph -20; pos @MMK_L_cyr_uc_Jecyrillic ampersand -4; pos @MMK_L_cyr_uc_Jecyrillic at -10; pos @MMK_L_cyr_uc_Jecyrillic eightsuperior -5; pos @MMK_L_cyr_uc_Jecyrillic fivesuperior -10; pos @MMK_L_cyr_uc_Jecyrillic fourinferior 10; pos @MMK_L_cyr_uc_Jecyrillic foursuperior -5; pos @MMK_L_cyr_uc_Jecyrillic nineinferior -13; pos @MMK_L_cyr_uc_Jecyrillic ninesuperior -5; pos @MMK_L_cyr_uc_Jecyrillic oneinferior -5; pos @MMK_L_cyr_uc_Jecyrillic onesuperior -5; pos @MMK_L_cyr_uc_Jecyrillic seveninferior -6; pos @MMK_L_cyr_uc_Jecyrillic sevensuperior -6; pos @MMK_L_cyr_uc_Jecyrillic sixsuperior -10; pos @MMK_L_cyr_uc_Jecyrillic slash 10; pos @MMK_L_cyr_uc_Jecyrillic threesuperior 8; pos @MMK_L_cyr_uc_Jecyrillic trademark 10; pos @MMK_L_cyr_uc_Jecyrillic twosuperior 6; pos @MMK_L_cyr_uc_Jecyrillic uni0424 -8; pos @MMK_L_cyr_uc_Jecyrillic uni0431 -3; pos @MMK_L_cyr_uc_Jecyrillic uni0444 -5; pos @MMK_L_cyr_uc_Jecyrillic uni044F 2; pos @MMK_L_cyr_uc_Jecyrillic uni04AE -19; pos @MMK_L_cyr_uc_Jecyrillic uni04AF -3; pos @MMK_L_cyr_uc_Jecyrillic uni04B0 -19; pos @MMK_L_cyr_uc_Jecyrillic uni04B1 -3; pos @MMK_L_cyr_uc_Jecyrillic zerosuperior -5; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_acyrillic -13; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_acyrillic.alt01 -26; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_checyrillic -59; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_elcyrillic 22; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_encyrillic -2; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_icyrillic -2; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_khacyrillic 14; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_ocyrillic -26; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_tecyrillic -46; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_ucyrillic -33; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_zecyrilic -13; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_lc_zhecyrillic 14; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Acyrillic 10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Checyrillic -18; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Elcyrillic 10; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Hardsigncyrillic -15; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Ocyrillic -30; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Tecyrillic -15; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Ucyrillic -12; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Zecyrillic -14; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_cyr_uc_Zhecyrillic 4; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_foot -16; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_guill -33; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_guilr -21; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_hyph -67; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_period 11; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_quotel -21; pos @MMK_L_cyr_uc_Kacyrillic @MMK_R_inp_quoter -16; pos @MMK_L_cyr_uc_Kacyrillic ampersand -21; pos @MMK_L_cyr_uc_Kacyrillic at -34; pos @MMK_L_cyr_uc_Kacyrillic copyright -28; pos @MMK_L_cyr_uc_Kacyrillic eightinferior 6; pos @MMK_L_cyr_uc_Kacyrillic eightsuperior -17; pos @MMK_L_cyr_uc_Kacyrillic fiveinferior 4; pos @MMK_L_cyr_uc_Kacyrillic fivesuperior -14; pos @MMK_L_cyr_uc_Kacyrillic fourinferior 6; pos @MMK_L_cyr_uc_Kacyrillic foursuperior -32; pos @MMK_L_cyr_uc_Kacyrillic nineinferior -6; pos @MMK_L_cyr_uc_Kacyrillic ninesuperior -13; pos @MMK_L_cyr_uc_Kacyrillic onesuperior -14; pos @MMK_L_cyr_uc_Kacyrillic registered -21; pos @MMK_L_cyr_uc_Kacyrillic seveninferior -24; pos @MMK_L_cyr_uc_Kacyrillic sevensuperior -3; pos @MMK_L_cyr_uc_Kacyrillic sixinferior 6; pos @MMK_L_cyr_uc_Kacyrillic sixsuperior -33; pos @MMK_L_cyr_uc_Kacyrillic slash 10; pos @MMK_L_cyr_uc_Kacyrillic threeinferior 13; pos @MMK_L_cyr_uc_Kacyrillic threesuperior -8; pos @MMK_L_cyr_uc_Kacyrillic twoinferior 12; pos @MMK_L_cyr_uc_Kacyrillic twosuperior -12; pos @MMK_L_cyr_uc_Kacyrillic uni0405 -4; pos @MMK_L_cyr_uc_Kacyrillic uni0408 3; pos @MMK_L_cyr_uc_Kacyrillic uni0414 16; pos @MMK_L_cyr_uc_Kacyrillic uni0424 -44; pos @MMK_L_cyr_uc_Kacyrillic uni042F 3; pos @MMK_L_cyr_uc_Kacyrillic uni0431 -24; pos @MMK_L_cyr_uc_Kacyrillic uni0434 18; pos @MMK_L_cyr_uc_Kacyrillic uni0440 -14; pos @MMK_L_cyr_uc_Kacyrillic uni0444 -25; pos @MMK_L_cyr_uc_Kacyrillic uni044F 14; pos @MMK_L_cyr_uc_Kacyrillic uni0455 -4; pos @MMK_L_cyr_uc_Kacyrillic uni0458 -5; pos @MMK_L_cyr_uc_Kacyrillic uni0493 -2; pos @MMK_L_cyr_uc_Kacyrillic uni04AE -12; pos @MMK_L_cyr_uc_Kacyrillic uni04AF -36; pos @MMK_L_cyr_uc_Kacyrillic uni04B0 -12; pos @MMK_L_cyr_uc_Kacyrillic uni04B1 -36; pos @MMK_L_cyr_uc_Kacyrillic uni04D4 13; pos @MMK_L_cyr_uc_Kacyrillic zeroinferior 4; pos @MMK_L_cyr_uc_Kacyrillic zerosuperior -18; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_acyrillic -3; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_acyrillic.alt01 -29; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_checyrillic -62; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_djecyrillic 5; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_elcyrillic 31; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_encyrillic 5; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_icyrillic 5; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_khacyrillic 12; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_ocyrillic -26; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_shhacyrillic 5; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_tecyrillic -46; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_ucyrillic 17; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_zecyrilic -4; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_lc_zhecyrillic 15; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Acyrillic 11; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Checyrillic -21; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Elcyrillic 20; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Hardsigncyrillic -18; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Khacyrillic 3; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Ocyrillic -32; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Tecyrillic -18; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Ucyrillic -20; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Zecyrillic -14; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_cyr_uc_Zhecyrillic 9; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_colon 6; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_foot -22; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_guill -33; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_guilr -18; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_hyph -67; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_parenth 9; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_period 21; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_quotel -25; pos @MMK_L_cyr_uc_Kadescendercyrillic @MMK_R_inp_quoter -22; pos @MMK_L_cyr_uc_Kadescendercyrillic ampersand -15; pos @MMK_L_cyr_uc_Kadescendercyrillic at -21; pos @MMK_L_cyr_uc_Kadescendercyrillic copyright -25; pos @MMK_L_cyr_uc_Kadescendercyrillic eightinferior 12; pos @MMK_L_cyr_uc_Kadescendercyrillic eightsuperior -26; pos @MMK_L_cyr_uc_Kadescendercyrillic fiveinferior 7; pos @MMK_L_cyr_uc_Kadescendercyrillic fivesuperior -14; pos @MMK_L_cyr_uc_Kadescendercyrillic fourinferior 12; pos @MMK_L_cyr_uc_Kadescendercyrillic foursuperior -41; pos @MMK_L_cyr_uc_Kadescendercyrillic nineinferior -6; pos @MMK_L_cyr_uc_Kadescendercyrillic ninesuperior -18; pos @MMK_L_cyr_uc_Kadescendercyrillic onesuperior -14; pos @MMK_L_cyr_uc_Kadescendercyrillic parenright 31; pos @MMK_L_cyr_uc_Kadescendercyrillic registered -24; pos @MMK_L_cyr_uc_Kadescendercyrillic seveninferior -24; pos @MMK_L_cyr_uc_Kadescendercyrillic sevensuperior -9; pos @MMK_L_cyr_uc_Kadescendercyrillic sixinferior 12; pos @MMK_L_cyr_uc_Kadescendercyrillic sixsuperior -36; pos @MMK_L_cyr_uc_Kadescendercyrillic slash 41; pos @MMK_L_cyr_uc_Kadescendercyrillic threeinferior 16; pos @MMK_L_cyr_uc_Kadescendercyrillic threesuperior -14; pos @MMK_L_cyr_uc_Kadescendercyrillic trademark -6; pos @MMK_L_cyr_uc_Kadescendercyrillic twoinferior 15; pos @MMK_L_cyr_uc_Kadescendercyrillic twosuperior -12; pos @MMK_L_cyr_uc_Kadescendercyrillic underscore 39; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0405 -4; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0408 14; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0414 31; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0424 -49; pos @MMK_L_cyr_uc_Kadescendercyrillic uni042F 7; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0431 -22; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0434 30; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0440 2; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0444 -25; pos @MMK_L_cyr_uc_Kadescendercyrillic uni044F 16; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0455 -2; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0458 79; pos @MMK_L_cyr_uc_Kadescendercyrillic uni0493 5; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04AE -18; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04AF -36; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04B0 -18; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04B1 -25; pos @MMK_L_cyr_uc_Kadescendercyrillic uni04D4 18; pos @MMK_L_cyr_uc_Kadescendercyrillic zeroinferior 12; pos @MMK_L_cyr_uc_Kadescendercyrillic zerosuperior -24; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_checyrillic -6; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_elcyrillic -11; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_tecyrillic 3; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_ucyrillic 10; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_lc_zhecyrillic -3; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Acyrillic -26; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Checyrillic -12; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Elcyrillic -10; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Hardsigncyrillic -11; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Khacyrillic -18; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Ocyrillic 8; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Tecyrillic -11; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Ucyrillic -27; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Zecyrillic -6; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_cyr_uc_Zhecyrillic -30; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_foot -10; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_guill 22; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_hyph 20; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_period -35; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_quotel -14; pos @MMK_L_cyr_uc_Ocyrillic @MMK_R_inp_quoter -15; pos @MMK_L_cyr_uc_Ocyrillic ampersand -10; pos @MMK_L_cyr_uc_Ocyrillic eightinferior 4; pos @MMK_L_cyr_uc_Ocyrillic fiveinferior -2; pos @MMK_L_cyr_uc_Ocyrillic fivesuperior -6; pos @MMK_L_cyr_uc_Ocyrillic fourinferior -13; pos @MMK_L_cyr_uc_Ocyrillic foursuperior 16; pos @MMK_L_cyr_uc_Ocyrillic nineinferior 4; pos @MMK_L_cyr_uc_Ocyrillic ninesuperior -12; pos @MMK_L_cyr_uc_Ocyrillic oneinferior -9; pos @MMK_L_cyr_uc_Ocyrillic onesuperior -10; pos @MMK_L_cyr_uc_Ocyrillic question -14; pos @MMK_L_cyr_uc_Ocyrillic seveninferior 18; pos @MMK_L_cyr_uc_Ocyrillic sevensuperior -22; pos @MMK_L_cyr_uc_Ocyrillic sixinferior -2; pos @MMK_L_cyr_uc_Ocyrillic slash -10; pos @MMK_L_cyr_uc_Ocyrillic threeinferior -6; pos @MMK_L_cyr_uc_Ocyrillic threesuperior -5; pos @MMK_L_cyr_uc_Ocyrillic trademark -17; pos @MMK_L_cyr_uc_Ocyrillic twoinferior -9; pos @MMK_L_cyr_uc_Ocyrillic underscore -60; pos @MMK_L_cyr_uc_Ocyrillic uni0408 -16; pos @MMK_L_cyr_uc_Ocyrillic uni0414 -39; pos @MMK_L_cyr_uc_Ocyrillic uni0424 11; pos @MMK_L_cyr_uc_Ocyrillic uni042F -13; pos @MMK_L_cyr_uc_Ocyrillic uni0431 5; pos @MMK_L_cyr_uc_Ocyrillic uni0434 -30; pos @MMK_L_cyr_uc_Ocyrillic uni044F -1; pos @MMK_L_cyr_uc_Ocyrillic uni0492 14; pos @MMK_L_cyr_uc_Ocyrillic uni0493 3; pos @MMK_L_cyr_uc_Ocyrillic uni04AE -32; pos @MMK_L_cyr_uc_Ocyrillic uni04AF 4; pos @MMK_L_cyr_uc_Ocyrillic uni04B0 -31; pos @MMK_L_cyr_uc_Ocyrillic uni04B1 4; pos @MMK_L_cyr_uc_Ocyrillic uni04D4 -23; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_acyrillic 9; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_acyrillic.alt01 13; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_checyrillic -10; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_elcyrillic 5; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_khacyrillic -8; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_ocyrillic 13; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_tecyrillic -5; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_ucyrillic -8; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_lc_zhecyrillic -3; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Acyrillic -2; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Checyrillic -49; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Elcyrillic 6; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Hardsigncyrillic -62; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Khacyrillic -7; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Ocyrillic 2; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Tecyrillic -62; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Ucyrillic -42; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Zecyrillic -6; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_cyr_uc_Zhecyrillic -6; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_foot -56; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_guill 31; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_guilr 6; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_hyph 17; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_period -11; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_quotel -70; pos @MMK_L_cyr_uc_Softsigncyrillic @MMK_R_inp_quoter -57; pos @MMK_L_cyr_uc_Softsigncyrillic ampersand 6; pos @MMK_L_cyr_uc_Softsigncyrillic at 6; pos @MMK_L_cyr_uc_Softsigncyrillic copyright 6; pos @MMK_L_cyr_uc_Softsigncyrillic eightinferior 13; pos @MMK_L_cyr_uc_Softsigncyrillic eightsuperior -13; pos @MMK_L_cyr_uc_Softsigncyrillic fiveinferior 10; pos @MMK_L_cyr_uc_Softsigncyrillic fivesuperior -4; pos @MMK_L_cyr_uc_Softsigncyrillic fourinferior 13; pos @MMK_L_cyr_uc_Softsigncyrillic foursuperior -8; pos @MMK_L_cyr_uc_Softsigncyrillic nineinferior 16; pos @MMK_L_cyr_uc_Softsigncyrillic ninesuperior -23; pos @MMK_L_cyr_uc_Softsigncyrillic oneinferior 10; pos @MMK_L_cyr_uc_Softsigncyrillic onesuperior -4; pos @MMK_L_cyr_uc_Softsigncyrillic registered -14; pos @MMK_L_cyr_uc_Softsigncyrillic seveninferior 13; pos @MMK_L_cyr_uc_Softsigncyrillic sevensuperior -30; pos @MMK_L_cyr_uc_Softsigncyrillic sixinferior 13; pos @MMK_L_cyr_uc_Softsigncyrillic sixsuperior -16; pos @MMK_L_cyr_uc_Softsigncyrillic slash -4; pos @MMK_L_cyr_uc_Softsigncyrillic threeinferior 15; pos @MMK_L_cyr_uc_Softsigncyrillic threesuperior -6; pos @MMK_L_cyr_uc_Softsigncyrillic trademark -51; pos @MMK_L_cyr_uc_Softsigncyrillic twoinferior 11; pos @MMK_L_cyr_uc_Softsigncyrillic twosuperior -2; pos @MMK_L_cyr_uc_Softsigncyrillic underscore -49; pos @MMK_L_cyr_uc_Softsigncyrillic uni0414 -3; pos @MMK_L_cyr_uc_Softsigncyrillic uni0424 2; pos @MMK_L_cyr_uc_Softsigncyrillic uni042F -2; pos @MMK_L_cyr_uc_Softsigncyrillic uni0431 16; pos @MMK_L_cyr_uc_Softsigncyrillic uni0434 -10; pos @MMK_L_cyr_uc_Softsigncyrillic uni0444 13; pos @MMK_L_cyr_uc_Softsigncyrillic uni044F 6; pos @MMK_L_cyr_uc_Softsigncyrillic uni0492 16; pos @MMK_L_cyr_uc_Softsigncyrillic uni0493 14; pos @MMK_L_cyr_uc_Softsigncyrillic uni04AE -62; pos @MMK_L_cyr_uc_Softsigncyrillic uni04AF -9; pos @MMK_L_cyr_uc_Softsigncyrillic uni04B0 -42; pos @MMK_L_cyr_uc_Softsigncyrillic uni04B1 -9; pos @MMK_L_cyr_uc_Softsigncyrillic uni04D4 -5; pos @MMK_L_cyr_uc_Softsigncyrillic zeroinferior 16; pos @MMK_L_cyr_uc_Softsigncyrillic zerosuperior -16; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_acyrillic -5; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_acyrillic.alt01 -11; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_checyrillic -67; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_elcyrillic 7; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_ocyrillic -14; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_tecyrillic -43; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_ucyrillic -52; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_lc_zecyrilic -8; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Checyrillic -95; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Elcyrillic 4; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -89; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Ocyrillic -21; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Tecyrillic -89; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Ucyrillic -68; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_cyr_uc_Zecyrillic -16; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_foot -90; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_guill -6; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_guilr -9; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_hyph -17; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_quotel -97; pos @MMK_L_cyr_uc_Tshecyrillic @MMK_R_inp_quoter -81; pos @MMK_L_cyr_uc_Tshecyrillic ampersand -6; pos @MMK_L_cyr_uc_Tshecyrillic at -12; pos @MMK_L_cyr_uc_Tshecyrillic copyright -10; pos @MMK_L_cyr_uc_Tshecyrillic eightsuperior -62; pos @MMK_L_cyr_uc_Tshecyrillic fivesuperior -62; pos @MMK_L_cyr_uc_Tshecyrillic foursuperior -60; pos @MMK_L_cyr_uc_Tshecyrillic ninesuperior -80; pos @MMK_L_cyr_uc_Tshecyrillic onesuperior -60; pos @MMK_L_cyr_uc_Tshecyrillic question -8; pos @MMK_L_cyr_uc_Tshecyrillic registered -68; pos @MMK_L_cyr_uc_Tshecyrillic seveninferior -15; pos @MMK_L_cyr_uc_Tshecyrillic sevensuperior -83; pos @MMK_L_cyr_uc_Tshecyrillic sixsuperior -62; pos @MMK_L_cyr_uc_Tshecyrillic slash 8; pos @MMK_L_cyr_uc_Tshecyrillic threesuperior -56; pos @MMK_L_cyr_uc_Tshecyrillic trademark -92; pos @MMK_L_cyr_uc_Tshecyrillic twoinferior 4; pos @MMK_L_cyr_uc_Tshecyrillic twosuperior -56; pos @MMK_L_cyr_uc_Tshecyrillic uni0405 -3; pos @MMK_L_cyr_uc_Tshecyrillic uni0414 6; pos @MMK_L_cyr_uc_Tshecyrillic uni0424 -25; pos @MMK_L_cyr_uc_Tshecyrillic uni0431 -10; pos @MMK_L_cyr_uc_Tshecyrillic uni0434 6; pos @MMK_L_cyr_uc_Tshecyrillic uni0440 -16; pos @MMK_L_cyr_uc_Tshecyrillic uni0444 -10; pos @MMK_L_cyr_uc_Tshecyrillic uni044F 4; pos @MMK_L_cyr_uc_Tshecyrillic uni0455 -3; pos @MMK_L_cyr_uc_Tshecyrillic uni0458 -4; pos @MMK_L_cyr_uc_Tshecyrillic uni04AE -92; pos @MMK_L_cyr_uc_Tshecyrillic uni04AF -52; pos @MMK_L_cyr_uc_Tshecyrillic uni04B0 -86; pos @MMK_L_cyr_uc_Tshecyrillic uni04B1 -52; pos @MMK_L_cyr_uc_Tshecyrillic zerosuperior -62; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_acyrillic -77; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_acyrillic.alt01 -85; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_checyrillic -46; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_djecyrillic 6; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_elcyrillic -98; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_encyrillic -52; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_icyrillic -27; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_khacyrillic -42; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_ocyrillic -82; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_tecyrillic -41; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_ucyrillic -45; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_zecyrilic -60; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_lc_zhecyrillic -58; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Acyrillic -111; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Checyrillic 8; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Elcyrillic -84; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Hardsigncyrillic 12; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Khacyrillic 3; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Ocyrillic -34; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Tecyrillic 12; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Ucyrillic 12; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Zecyrillic -11; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_cyr_uc_Zhecyrillic -9; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_colon -39; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_foot 14; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_guill -76; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_guilr -63; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_hyph -69; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_period -122; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_quotel 6; pos @MMK_L_cyr_uc_Ucyrillic @MMK_R_inp_quoter 20; pos @MMK_L_cyr_uc_Ucyrillic ampersand -63; pos @MMK_L_cyr_uc_Ucyrillic at -56; pos @MMK_L_cyr_uc_Ucyrillic copyright -42; pos @MMK_L_cyr_uc_Ucyrillic eightinferior -103; pos @MMK_L_cyr_uc_Ucyrillic eightsuperior 7; pos @MMK_L_cyr_uc_Ucyrillic fiveinferior -96; pos @MMK_L_cyr_uc_Ucyrillic fivesuperior 6; pos @MMK_L_cyr_uc_Ucyrillic fourinferior -110; pos @MMK_L_cyr_uc_Ucyrillic foursuperior -11; pos @MMK_L_cyr_uc_Ucyrillic nineinferior -96; pos @MMK_L_cyr_uc_Ucyrillic ninesuperior 12; pos @MMK_L_cyr_uc_Ucyrillic oneinferior -94; pos @MMK_L_cyr_uc_Ucyrillic onesuperior 10; pos @MMK_L_cyr_uc_Ucyrillic parenright 12; pos @MMK_L_cyr_uc_Ucyrillic question 14; pos @MMK_L_cyr_uc_Ucyrillic registered 12; pos @MMK_L_cyr_uc_Ucyrillic seveninferior -84; pos @MMK_L_cyr_uc_Ucyrillic sevensuperior 24; pos @MMK_L_cyr_uc_Ucyrillic sixinferior -108; pos @MMK_L_cyr_uc_Ucyrillic sixsuperior -14; pos @MMK_L_cyr_uc_Ucyrillic slash -82; pos @MMK_L_cyr_uc_Ucyrillic threeinferior -90; pos @MMK_L_cyr_uc_Ucyrillic threesuperior 14; pos @MMK_L_cyr_uc_Ucyrillic trademark 36; pos @MMK_L_cyr_uc_Ucyrillic twoinferior -90; pos @MMK_L_cyr_uc_Ucyrillic twosuperior 16; pos @MMK_L_cyr_uc_Ucyrillic underscore -167; pos @MMK_L_cyr_uc_Ucyrillic uni0405 -20; pos @MMK_L_cyr_uc_Ucyrillic uni0408 -73; pos @MMK_L_cyr_uc_Ucyrillic uni0414 -59; pos @MMK_L_cyr_uc_Ucyrillic uni0424 -55; pos @MMK_L_cyr_uc_Ucyrillic uni042F -46; pos @MMK_L_cyr_uc_Ucyrillic uni0431 -33; pos @MMK_L_cyr_uc_Ucyrillic uni0434 -95; pos @MMK_L_cyr_uc_Ucyrillic uni0440 -49; pos @MMK_L_cyr_uc_Ucyrillic uni0444 -78; pos @MMK_L_cyr_uc_Ucyrillic uni044F -75; pos @MMK_L_cyr_uc_Ucyrillic uni0455 -70; pos @MMK_L_cyr_uc_Ucyrillic uni0458 -24; pos @MMK_L_cyr_uc_Ucyrillic uni0493 -52; pos @MMK_L_cyr_uc_Ucyrillic uni04AE 14; pos @MMK_L_cyr_uc_Ucyrillic uni04AF -45; pos @MMK_L_cyr_uc_Ucyrillic uni04B0 11; pos @MMK_L_cyr_uc_Ucyrillic uni04B1 -45; pos @MMK_L_cyr_uc_Ucyrillic uni04D4 -136; pos @MMK_L_cyr_uc_Ucyrillic zeroinferior -108; pos @MMK_L_cyr_uc_Ucyrillic zerosuperior 12; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_checyrillic -14; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_elcyrillic -4; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_khacyrillic -10; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_tecyrillic -10; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_ucyrillic -5; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_zecyrilic -2; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_lc_zhecyrillic -12; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Acyrillic -19; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Checyrillic -27; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Elcyrillic -3; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Hardsigncyrillic -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Khacyrillic -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Tecyrillic -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Ucyrillic -24; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Zecyrillic -5; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_cyr_uc_Zhecyrillic -14; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_foot -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_guill 20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_guilr -10; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_period -31; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_quotel -20; pos @MMK_L_cyr_uc_Zecyrillic @MMK_R_inp_quoter -19; pos @MMK_L_cyr_uc_Zecyrillic ampersand -10; pos @MMK_L_cyr_uc_Zecyrillic eightsuperior -11; pos @MMK_L_cyr_uc_Zecyrillic fiveinferior -6; pos @MMK_L_cyr_uc_Zecyrillic fivesuperior -12; pos @MMK_L_cyr_uc_Zecyrillic foursuperior -10; pos @MMK_L_cyr_uc_Zecyrillic ninesuperior -15; pos @MMK_L_cyr_uc_Zecyrillic oneinferior -6; pos @MMK_L_cyr_uc_Zecyrillic onesuperior -12; pos @MMK_L_cyr_uc_Zecyrillic question -18; pos @MMK_L_cyr_uc_Zecyrillic registered -13; pos @MMK_L_cyr_uc_Zecyrillic sevensuperior -20; pos @MMK_L_cyr_uc_Zecyrillic sixsuperior -10; pos @MMK_L_cyr_uc_Zecyrillic slash -17; pos @MMK_L_cyr_uc_Zecyrillic threeinferior -6; pos @MMK_L_cyr_uc_Zecyrillic threesuperior -12; pos @MMK_L_cyr_uc_Zecyrillic trademark -20; pos @MMK_L_cyr_uc_Zecyrillic twoinferior -12; pos @MMK_L_cyr_uc_Zecyrillic twosuperior -13; pos @MMK_L_cyr_uc_Zecyrillic underscore -60; pos @MMK_L_cyr_uc_Zecyrillic uni0408 -8; pos @MMK_L_cyr_uc_Zecyrillic uni0414 -21; pos @MMK_L_cyr_uc_Zecyrillic uni0424 -4; pos @MMK_L_cyr_uc_Zecyrillic uni042F -14; pos @MMK_L_cyr_uc_Zecyrillic uni0431 3; pos @MMK_L_cyr_uc_Zecyrillic uni0434 -22; pos @MMK_L_cyr_uc_Zecyrillic uni044F -12; pos @MMK_L_cyr_uc_Zecyrillic uni0492 7; pos @MMK_L_cyr_uc_Zecyrillic uni0493 5; pos @MMK_L_cyr_uc_Zecyrillic uni04AE -30; pos @MMK_L_cyr_uc_Zecyrillic uni04AF -7; pos @MMK_L_cyr_uc_Zecyrillic uni04B0 -30; pos @MMK_L_cyr_uc_Zecyrillic uni04B1 -7; pos @MMK_L_cyr_uc_Zecyrillic uni04D4 -19; pos @MMK_L_cyr_uc_Zecyrillic zeroinferior 6; pos @MMK_L_cyr_uc_Zecyrillic zerosuperior -15; subtable; pos @MMK_L_inp_colon @MMK_R_cyr_lc_elcyrillic 12; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Checyrillic -14; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Elcyrillic 6; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Hardsigncyrillic -10; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Tecyrillic -10; pos @MMK_L_inp_colon @MMK_R_cyr_uc_Ucyrillic -30; pos @MMK_L_inp_colon @MMK_R_uc_t -10; pos @MMK_L_inp_colon @MMK_R_uc_w -10; pos @MMK_L_inp_colon @MMK_R_uc_y -32; pos @MMK_L_inp_colon V -20; pos @MMK_L_inp_colon uni0414 6; pos @MMK_L_inp_colon uni04AE -32; pos @MMK_L_inp_colon uni04B0 -32; pos @MMK_L_inp_foot @MMK_R_cyr_lc_acyrillic -8; pos @MMK_L_inp_foot @MMK_R_cyr_lc_acyrillic.alt01 -24; pos @MMK_L_inp_foot @MMK_R_cyr_lc_checyrillic -3; pos @MMK_L_inp_foot @MMK_R_cyr_lc_elcyrillic -65; pos @MMK_L_inp_foot @MMK_R_cyr_lc_khacyrillic 12; pos @MMK_L_inp_foot @MMK_R_cyr_lc_ocyrillic -20; pos @MMK_L_inp_foot @MMK_R_cyr_lc_tecyrillic 6; pos @MMK_L_inp_foot @MMK_R_cyr_lc_ucyrillic 20; pos @MMK_L_inp_foot @MMK_R_cyr_lc_zecyrilic -13; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Acyrillic -90; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Checyrillic 9; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Elcyrillic -72; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Hardsigncyrillic 30; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Khacyrillic 16; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Ocyrillic -10; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Tecyrillic 30; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Ucyrillic 8; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Zecyrillic -6; pos @MMK_L_inp_foot @MMK_R_cyr_uc_Zhecyrillic -16; pos @MMK_L_inp_foot @MMK_R_inp_period -90; pos @MMK_L_inp_foot @MMK_R_lc_d -20; pos @MMK_L_inp_foot @MMK_R_lc_o -20; pos @MMK_L_inp_foot @MMK_R_lc_w 18; pos @MMK_L_inp_foot @MMK_R_lc_y 20; pos @MMK_L_inp_foot @MMK_R_lc_z 2; pos @MMK_L_inp_foot @MMK_R_uc_a -90; pos @MMK_L_inp_foot @MMK_R_uc_j -30; pos @MMK_L_inp_foot @MMK_R_uc_o -10; pos @MMK_L_inp_foot @MMK_R_uc_t 30; pos @MMK_L_inp_foot @MMK_R_uc_u 8; pos @MMK_L_inp_foot @MMK_R_uc_w 20; pos @MMK_L_inp_foot @MMK_R_uc_y 16; pos @MMK_L_inp_foot V 20; pos @MMK_L_inp_foot X 16; pos @MMK_L_inp_foot questiondown -140; pos @MMK_L_inp_foot uni0408 -30; pos @MMK_L_inp_foot uni0414 -40; pos @MMK_L_inp_foot uni0424 -16; pos @MMK_L_inp_foot uni042F -32; pos @MMK_L_inp_foot uni0431 -15; pos @MMK_L_inp_foot uni0434 -47; pos @MMK_L_inp_foot uni0444 -24; pos @MMK_L_inp_foot uni044F -22; pos @MMK_L_inp_foot uni04AE 16; pos @MMK_L_inp_foot uni04AF 20; pos @MMK_L_inp_foot uni04B0 16; pos @MMK_L_inp_foot uni04B1 20; pos @MMK_L_inp_foot uni04D4 -90; pos @MMK_L_inp_foot v 20; pos @MMK_L_inp_foot x 12; pos @MMK_L_inp_guill @MMK_R_cyr_lc_acyrillic.alt01 -10; pos @MMK_L_inp_guill @MMK_R_cyr_lc_checyrillic -8; pos @MMK_L_inp_guill @MMK_R_cyr_lc_elcyrillic 3; pos @MMK_L_inp_guill @MMK_R_cyr_lc_encyrillic -6; pos @MMK_L_inp_guill @MMK_R_cyr_lc_khacyrillic -10; pos @MMK_L_inp_guill @MMK_R_cyr_lc_ocyrillic -10; pos @MMK_L_inp_guill @MMK_R_cyr_lc_tecyrillic 4; pos @MMK_L_inp_guill @MMK_R_cyr_lc_zecyrilic -3; pos @MMK_L_inp_guill @MMK_R_cyr_lc_zhecyrillic -3; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Acyrillic -10; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Checyrillic -26; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Hardsigncyrillic -30; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Khacyrillic -20; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Tecyrillic -30; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Ucyrillic -50; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Zecyrillic -13; pos @MMK_L_inp_guill @MMK_R_cyr_uc_Zhecyrillic -21; pos @MMK_L_inp_guill @MMK_R_lc_d -2; pos @MMK_L_inp_guill @MMK_R_lc_f -4; pos @MMK_L_inp_guill @MMK_R_lc_g -12; pos @MMK_L_inp_guill @MMK_R_lc_n -2; pos @MMK_L_inp_guill @MMK_R_lc_o -2; pos @MMK_L_inp_guill @MMK_R_lc_t 5; pos @MMK_L_inp_guill @MMK_R_lc_w -2; pos @MMK_L_inp_guill @MMK_R_lc_z -1; pos @MMK_L_inp_guill @MMK_R_uc_a -10; pos @MMK_L_inp_guill @MMK_R_uc_t -30; pos @MMK_L_inp_guill @MMK_R_uc_u -10; pos @MMK_L_inp_guill @MMK_R_uc_w -22; pos @MMK_L_inp_guill @MMK_R_uc_y -42; pos @MMK_L_inp_guill @MMK_R_uc_z -20; pos @MMK_L_inp_guill V -22; pos @MMK_L_inp_guill X -20; pos @MMK_L_inp_guill uni0405 -4; pos @MMK_L_inp_guill uni0414 -16; pos @MMK_L_inp_guill uni0424 -8; pos @MMK_L_inp_guill uni042F -17; pos @MMK_L_inp_guill uni0431 -6; pos @MMK_L_inp_guill uni0434 -17; pos @MMK_L_inp_guill uni0444 -10; pos @MMK_L_inp_guill uni044F -6; pos @MMK_L_inp_guill uni04AE -42; pos @MMK_L_inp_guill uni04AF -6; pos @MMK_L_inp_guill uni04B0 -42; pos @MMK_L_inp_guill uni04B1 -6; pos @MMK_L_inp_guill uni04D4 -10; pos @MMK_L_inp_guill x -10; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_acyrillic 19; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_acyrillic.alt01 38; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_checyrillic -2; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_elcyrillic -17; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_encyrillic 6; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_khacyrillic -20; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_ocyrillic 40; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_shhacyrillic 6; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_tecyrillic -6; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_ucyrillic -6; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_zecyrilic -5; pos @MMK_L_inp_guilr @MMK_R_cyr_lc_zhecyrillic -11; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Acyrillic -14; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Checyrillic -24; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Elcyrillic -23; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Hardsigncyrillic -42; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Khacyrillic -42; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Ocyrillic 22; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Tecyrillic -42; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Ucyrillic -60; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Zecyrillic -14; pos @MMK_L_inp_guilr @MMK_R_cyr_uc_Zhecyrillic -33; pos @MMK_L_inp_guilr @MMK_R_lc_a 5; pos @MMK_L_inp_guilr @MMK_R_lc_d 35; pos @MMK_L_inp_guilr @MMK_R_lc_g 2; pos @MMK_L_inp_guilr @MMK_R_lc_h 4; pos @MMK_L_inp_guilr @MMK_R_lc_n 4; pos @MMK_L_inp_guilr @MMK_R_lc_o 40; pos @MMK_L_inp_guilr @MMK_R_lc_s 3; pos @MMK_L_inp_guilr @MMK_R_lc_u 2; pos @MMK_L_inp_guilr @MMK_R_lc_w -2; pos @MMK_L_inp_guilr @MMK_R_lc_y -2; pos @MMK_L_inp_guilr @MMK_R_lc_z -2; pos @MMK_L_inp_guilr @MMK_R_uc_a -2; pos @MMK_L_inp_guilr @MMK_R_uc_j -10; pos @MMK_L_inp_guilr @MMK_R_uc_o 22; pos @MMK_L_inp_guilr @MMK_R_uc_t -42; pos @MMK_L_inp_guilr @MMK_R_uc_w -20; pos @MMK_L_inp_guilr @MMK_R_uc_y -52; pos @MMK_L_inp_guilr @MMK_R_uc_z -32; pos @MMK_L_inp_guilr V -41; pos @MMK_L_inp_guilr X -42; pos @MMK_L_inp_guilr b 12; pos @MMK_L_inp_guilr uni0408 -10; pos @MMK_L_inp_guilr uni0414 -36; pos @MMK_L_inp_guilr uni0424 28; pos @MMK_L_inp_guilr uni042F -21; pos @MMK_L_inp_guilr uni0431 37; pos @MMK_L_inp_guilr uni0434 -38; pos @MMK_L_inp_guilr uni0444 38; pos @MMK_L_inp_guilr uni044F 8; pos @MMK_L_inp_guilr uni0455 11; pos @MMK_L_inp_guilr uni0492 20; pos @MMK_L_inp_guilr uni0493 12; pos @MMK_L_inp_guilr uni04AE -52; pos @MMK_L_inp_guilr uni04AF -6; pos @MMK_L_inp_guilr uni04B0 -44; pos @MMK_L_inp_guilr uni04B1 -6; pos @MMK_L_inp_guilr uni04D4 -20; pos @MMK_L_inp_guilr x -20; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_acyrillic.alt01 20; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_checyrillic -2; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_elcyrillic -22; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_khacyrillic -35; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_ocyrillic 20; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_tecyrillic -6; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_ucyrillic -10; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_zecyrilic 6; pos @MMK_L_inp_hyph @MMK_R_cyr_lc_zhecyrillic -18; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Acyrillic -25; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Checyrillic -12; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Elcyrillic -38; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Hardsigncyrillic -50; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Khacyrillic -40; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Ocyrillic 20; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Tecyrillic -50; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Ucyrillic -56; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Zecyrillic -20; pos @MMK_L_inp_hyph @MMK_R_cyr_uc_Zhecyrillic -67; pos @MMK_L_inp_hyph @MMK_R_lc_d 20; pos @MMK_L_inp_hyph @MMK_R_lc_f -5; pos @MMK_L_inp_hyph @MMK_R_lc_g 9; pos @MMK_L_inp_hyph @MMK_R_lc_o 20; pos @MMK_L_inp_hyph @MMK_R_lc_w -3; pos @MMK_L_inp_hyph @MMK_R_lc_y -10; pos @MMK_L_inp_hyph @MMK_R_lc_z -15; pos @MMK_L_inp_hyph @MMK_R_uc_a -25; pos @MMK_L_inp_hyph @MMK_R_uc_j -40; pos @MMK_L_inp_hyph @MMK_R_uc_o 20; pos @MMK_L_inp_hyph @MMK_R_uc_s -20; pos @MMK_L_inp_hyph @MMK_R_uc_t -50; pos @MMK_L_inp_hyph @MMK_R_uc_u -8; pos @MMK_L_inp_hyph @MMK_R_uc_w -25; pos @MMK_L_inp_hyph @MMK_R_uc_y -50; pos @MMK_L_inp_hyph @MMK_R_uc_z -50; pos @MMK_L_inp_hyph V -25; pos @MMK_L_inp_hyph X -40; pos @MMK_L_inp_hyph question -22; pos @MMK_L_inp_hyph uni0405 -20; pos @MMK_L_inp_hyph uni0408 -40; pos @MMK_L_inp_hyph uni0414 -39; pos @MMK_L_inp_hyph uni0424 20; pos @MMK_L_inp_hyph uni042F -26; pos @MMK_L_inp_hyph uni0431 23; pos @MMK_L_inp_hyph uni0434 -31; pos @MMK_L_inp_hyph uni0444 20; pos @MMK_L_inp_hyph uni044F 12; pos @MMK_L_inp_hyph uni0455 9; pos @MMK_L_inp_hyph uni0492 18; pos @MMK_L_inp_hyph uni0493 19; pos @MMK_L_inp_hyph uni04AE -50; pos @MMK_L_inp_hyph uni04AF -12; pos @MMK_L_inp_hyph uni04B0 -50; pos @MMK_L_inp_hyph uni04B1 -12; pos @MMK_L_inp_hyph uni04D4 -25; pos @MMK_L_inp_hyph v -10; pos @MMK_L_inp_hyph x -35; pos @MMK_L_inp_period @MMK_R_cyr_lc_acyrillic -13; pos @MMK_L_inp_period @MMK_R_cyr_lc_acyrillic.alt01 -26; pos @MMK_L_inp_period @MMK_R_cyr_lc_checyrillic -48; pos @MMK_L_inp_period @MMK_R_cyr_lc_elcyrillic 22; pos @MMK_L_inp_period @MMK_R_cyr_lc_khacyrillic 12; pos @MMK_L_inp_period @MMK_R_cyr_lc_ocyrillic -27; pos @MMK_L_inp_period @MMK_R_cyr_lc_shhacyrillic 6; pos @MMK_L_inp_period @MMK_R_cyr_lc_tecyrillic -87; pos @MMK_L_inp_period @MMK_R_cyr_lc_ucyrillic -54; pos @MMK_L_inp_period @MMK_R_cyr_lc_zecyrilic -4; pos @MMK_L_inp_period @MMK_R_cyr_lc_zhecyrillic 17; pos @MMK_L_inp_period @MMK_R_cyr_uc_Acyrillic 17; pos @MMK_L_inp_period @MMK_R_cyr_uc_Checyrillic -73; pos @MMK_L_inp_period @MMK_R_cyr_uc_Elcyrillic 12; pos @MMK_L_inp_period @MMK_R_cyr_uc_Hardsigncyrillic -80; pos @MMK_L_inp_period @MMK_R_cyr_uc_Khacyrillic 11; pos @MMK_L_inp_period @MMK_R_cyr_uc_Ocyrillic -35; pos @MMK_L_inp_period @MMK_R_cyr_uc_Tecyrillic -80; pos @MMK_L_inp_period @MMK_R_cyr_uc_Ucyrillic -52; pos @MMK_L_inp_period @MMK_R_cyr_uc_Zecyrillic -18; pos @MMK_L_inp_period @MMK_R_cyr_uc_Zhecyrillic 11; pos @MMK_L_inp_period @MMK_R_inp_foot -90; pos @MMK_L_inp_period @MMK_R_inp_quotel -70; pos @MMK_L_inp_period @MMK_R_inp_quoter -70; pos @MMK_L_inp_period @MMK_R_lc_d -19; pos @MMK_L_inp_period @MMK_R_lc_g -15; pos @MMK_L_inp_period @MMK_R_lc_h 2; pos @MMK_L_inp_period @MMK_R_lc_o -27; pos @MMK_L_inp_period @MMK_R_lc_s 2; pos @MMK_L_inp_period @MMK_R_lc_t -40; pos @MMK_L_inp_period @MMK_R_lc_u -40; pos @MMK_L_inp_period @MMK_R_lc_w -62; pos @MMK_L_inp_period @MMK_R_lc_y -54; pos @MMK_L_inp_period @MMK_R_uc_a 17; pos @MMK_L_inp_period @MMK_R_uc_j 11; pos @MMK_L_inp_period @MMK_R_uc_o -35; pos @MMK_L_inp_period @MMK_R_uc_t -80; pos @MMK_L_inp_period @MMK_R_uc_u -50; pos @MMK_L_inp_period @MMK_R_uc_w -52; pos @MMK_L_inp_period @MMK_R_uc_y -60; pos @MMK_L_inp_period V -70; pos @MMK_L_inp_period X 11; pos @MMK_L_inp_period b -28; pos @MMK_L_inp_period eightsuperior -50; pos @MMK_L_inp_period fiveinferior -2; pos @MMK_L_inp_period fivesuperior -60; pos @MMK_L_inp_period fourinferior 10; pos @MMK_L_inp_period foursuperior -50; pos @MMK_L_inp_period nineinferior -24; pos @MMK_L_inp_period ninesuperior -70; pos @MMK_L_inp_period oneinferior -6; pos @MMK_L_inp_period onesuperior -50; pos @MMK_L_inp_period p -18; pos @MMK_L_inp_period question -51; pos @MMK_L_inp_period seveninferior -34; pos @MMK_L_inp_period sevensuperior -30; pos @MMK_L_inp_period sixinferior -8; pos @MMK_L_inp_period sixsuperior -50; pos @MMK_L_inp_period thorn -10; pos @MMK_L_inp_period threesuperior -50; pos @MMK_L_inp_period twoinferior 8; pos @MMK_L_inp_period twosuperior -50; pos @MMK_L_inp_period uni0405 -4; pos @MMK_L_inp_period uni0408 11; pos @MMK_L_inp_period uni0414 16; pos @MMK_L_inp_period uni0424 -70; pos @MMK_L_inp_period uni042F 6; pos @MMK_L_inp_period uni0431 -26; pos @MMK_L_inp_period uni0434 15; pos @MMK_L_inp_period uni0440 -18; pos @MMK_L_inp_period uni0444 -26; pos @MMK_L_inp_period uni044F 13; pos @MMK_L_inp_period uni0455 6; pos @MMK_L_inp_period uni04AE -60; pos @MMK_L_inp_period uni04AF -68; pos @MMK_L_inp_period uni04B0 -60; pos @MMK_L_inp_period uni04B1 -58; pos @MMK_L_inp_period uni04D4 17; pos @MMK_L_inp_period v -62; pos @MMK_L_inp_period x 12; pos @MMK_L_inp_period zeroinferior -2; pos @MMK_L_inp_period zerosuperior -60; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_acyrillic -30; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_acyrillic.alt01 -39; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_elcyrillic -77; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_khacyrillic 10; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_ocyrillic -40; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_shhacyrillic -3; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_ucyrillic 40; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_zecyrilic -18; pos @MMK_L_inp_quotel @MMK_R_cyr_lc_zhecyrillic -12; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Acyrillic -100; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Checyrillic 4; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Elcyrillic -105; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Hardsigncyrillic 20; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Khacyrillic 16; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Ocyrillic -14; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Tecyrillic 20; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Ucyrillic -3; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Zecyrillic -10; pos @MMK_L_inp_quotel @MMK_R_cyr_uc_Zhecyrillic -25; pos @MMK_L_inp_quotel @MMK_R_inp_period -70; pos @MMK_L_inp_quotel @MMK_R_lc_a -30; pos @MMK_L_inp_quotel @MMK_R_lc_d -30; pos @MMK_L_inp_quotel @MMK_R_lc_g -30; pos @MMK_L_inp_quotel @MMK_R_lc_o -40; pos @MMK_L_inp_quotel @MMK_R_lc_s -15; pos @MMK_L_inp_quotel @MMK_R_lc_t 14; pos @MMK_L_inp_quotel @MMK_R_lc_w 30; pos @MMK_L_inp_quotel @MMK_R_lc_y 40; pos @MMK_L_inp_quotel @MMK_R_uc_a -100; pos @MMK_L_inp_quotel @MMK_R_uc_j -60; pos @MMK_L_inp_quotel @MMK_R_uc_o -14; pos @MMK_L_inp_quotel @MMK_R_uc_s -5; pos @MMK_L_inp_quotel @MMK_R_uc_t 20; pos @MMK_L_inp_quotel @MMK_R_uc_w 20; pos @MMK_L_inp_quotel @MMK_R_uc_y 18; pos @MMK_L_inp_quotel V 20; pos @MMK_L_inp_quotel X 16; pos @MMK_L_inp_quotel germandbls.alt01 -27; pos @MMK_L_inp_quotel questiondown -110; pos @MMK_L_inp_quotel uni0405 -5; pos @MMK_L_inp_quotel uni0408 -60; pos @MMK_L_inp_quotel uni0414 -70; pos @MMK_L_inp_quotel uni0424 -28; pos @MMK_L_inp_quotel uni042F -31; pos @MMK_L_inp_quotel uni0431 -26; pos @MMK_L_inp_quotel uni0434 -60; pos @MMK_L_inp_quotel uni0444 -39; pos @MMK_L_inp_quotel uni044F -34; pos @MMK_L_inp_quotel uni0455 -15; pos @MMK_L_inp_quotel uni04AE 18; pos @MMK_L_inp_quotel uni04AF 35; pos @MMK_L_inp_quotel uni04B0 18; pos @MMK_L_inp_quotel uni04B1 33; pos @MMK_L_inp_quotel uni04D4 -124; pos @MMK_L_inp_quotel v 35; pos @MMK_L_inp_quotel x 10; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_acyrillic -70; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_acyrillic.alt01 -80; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_checyrillic -23; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_elcyrillic -102; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_encyrillic -30; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_khacyrillic -13; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_ocyrillic -80; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_shhacyrillic -6; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_tecyrillic -28; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_ucyrillic 10; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_zecyrilic -47; pos @MMK_L_inp_quoter @MMK_R_cyr_lc_zhecyrillic -38; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Acyrillic -100; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Checyrillic 6; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Elcyrillic -107; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Hardsigncyrillic 20; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Khacyrillic 16; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Ocyrillic -25; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Tecyrillic 20; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Ucyrillic 6; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Zecyrillic -24; pos @MMK_L_inp_quoter @MMK_R_cyr_uc_Zhecyrillic -21; pos @MMK_L_inp_quoter @MMK_R_inp_colon -20; pos @MMK_L_inp_quoter @MMK_R_inp_hyph -40; pos @MMK_L_inp_quoter @MMK_R_inp_period -70; pos @MMK_L_inp_quoter @MMK_R_lc_a -70; pos @MMK_L_inp_quoter @MMK_R_lc_d -70; pos @MMK_L_inp_quoter @MMK_R_lc_f -30; pos @MMK_L_inp_quoter @MMK_R_lc_g -75; pos @MMK_L_inp_quoter @MMK_R_lc_n -30; pos @MMK_L_inp_quoter @MMK_R_lc_o -80; pos @MMK_L_inp_quoter @MMK_R_lc_s -65; pos @MMK_L_inp_quoter @MMK_R_lc_t -20; pos @MMK_L_inp_quoter @MMK_R_lc_u -10; pos @MMK_L_inp_quoter @MMK_R_lc_w 10; pos @MMK_L_inp_quoter @MMK_R_lc_y 10; pos @MMK_L_inp_quoter @MMK_R_lc_z -40; pos @MMK_L_inp_quoter @MMK_R_uc_a -100; pos @MMK_L_inp_quoter @MMK_R_uc_j -70; pos @MMK_L_inp_quoter @MMK_R_uc_o -25; pos @MMK_L_inp_quoter @MMK_R_uc_s -2; pos @MMK_L_inp_quoter @MMK_R_uc_t 20; pos @MMK_L_inp_quoter @MMK_R_uc_w 25; pos @MMK_L_inp_quoter @MMK_R_uc_y 26; pos @MMK_L_inp_quoter V 24; pos @MMK_L_inp_quoter X 16; pos @MMK_L_inp_quoter exclamdown -24; pos @MMK_L_inp_quoter germandbls.alt01 -29; pos @MMK_L_inp_quoter p -15; pos @MMK_L_inp_quoter questiondown -120; pos @MMK_L_inp_quoter uni0405 -23; pos @MMK_L_inp_quoter uni0408 -70; pos @MMK_L_inp_quoter uni0414 -76; pos @MMK_L_inp_quoter uni0424 -58; pos @MMK_L_inp_quoter uni042F -59; pos @MMK_L_inp_quoter uni0431 -50; pos @MMK_L_inp_quoter uni0434 -87; pos @MMK_L_inp_quoter uni0440 -15; pos @MMK_L_inp_quoter uni0444 -78; pos @MMK_L_inp_quoter uni044F -104; pos @MMK_L_inp_quoter uni0455 -65; pos @MMK_L_inp_quoter uni0493 -30; pos @MMK_L_inp_quoter uni04AE 26; pos @MMK_L_inp_quoter uni04AF 10; pos @MMK_L_inp_quoter uni04B0 24; pos @MMK_L_inp_quoter uni04B1 6; pos @MMK_L_inp_quoter uni04D4 -129; pos @MMK_L_inp_quoter v 10; pos @MMK_L_inp_quoter x -13; pos @MMK_L_lc_a @MMK_R_inp_foot -53; pos @MMK_L_lc_a @MMK_R_inp_guill 2; pos @MMK_L_lc_a @MMK_R_inp_guilr -4; pos @MMK_L_lc_a @MMK_R_inp_period 2; pos @MMK_L_lc_a @MMK_R_inp_quotel -60; pos @MMK_L_lc_a @MMK_R_inp_quoter -30; pos @MMK_L_lc_a @MMK_R_lc_f -4; pos @MMK_L_lc_a @MMK_R_lc_g -5; pos @MMK_L_lc_a @MMK_R_lc_t -8; pos @MMK_L_lc_a @MMK_R_lc_u -4; pos @MMK_L_lc_a @MMK_R_lc_w -10; pos @MMK_L_lc_a @MMK_R_lc_y -10; pos @MMK_L_lc_a @MMK_R_uc_a 8; pos @MMK_L_lc_a @MMK_R_uc_t -50; pos @MMK_L_lc_a @MMK_R_uc_u -5; pos @MMK_L_lc_a @MMK_R_uc_w -44; pos @MMK_L_lc_a @MMK_R_uc_y -64; pos @MMK_L_lc_a V -60; pos @MMK_L_lc_a b -8; pos @MMK_L_lc_a eightinferior 8; pos @MMK_L_lc_a eightsuperior -5; pos @MMK_L_lc_a fivesuperior -4; pos @MMK_L_lc_a foursuperior -2; pos @MMK_L_lc_a nineinferior -5; pos @MMK_L_lc_a ninesuperior -35; pos @MMK_L_lc_a oneinferior -2; pos @MMK_L_lc_a onesuperior -22; pos @MMK_L_lc_a registered -10; pos @MMK_L_lc_a seveninferior -10; pos @MMK_L_lc_a sevensuperior -32; pos @MMK_L_lc_a sixsuperior -10; pos @MMK_L_lc_a slash 5; pos @MMK_L_lc_a threeinferior 5; pos @MMK_L_lc_a threesuperior -2; pos @MMK_L_lc_a trademark -34; pos @MMK_L_lc_a twoinferior 10; pos @MMK_L_lc_a twosuperior -10; pos @MMK_L_lc_a v -14; pos @MMK_L_lc_a zeroinferior 10; pos @MMK_L_lc_a zerosuperior -2; pos @MMK_L_lc_b @MMK_R_inp_foot -28; pos @MMK_L_lc_b @MMK_R_inp_guill 35; pos @MMK_L_lc_b @MMK_R_inp_guilr -4; pos @MMK_L_lc_b @MMK_R_inp_hyph 20; pos @MMK_L_lc_b @MMK_R_inp_period -27; pos @MMK_L_lc_b @MMK_R_inp_quotel -32; pos @MMK_L_lc_b @MMK_R_inp_quoter -10; pos @MMK_L_lc_b @MMK_R_lc_a 10; pos @MMK_L_lc_b @MMK_R_lc_d 9; pos @MMK_L_lc_b @MMK_R_lc_o 9; pos @MMK_L_lc_b @MMK_R_lc_w -7; pos @MMK_L_lc_b @MMK_R_lc_y -5; pos @MMK_L_lc_b @MMK_R_lc_z -7; pos @MMK_L_lc_b @MMK_R_uc_a -7; pos @MMK_L_lc_b @MMK_R_uc_o 10; pos @MMK_L_lc_b @MMK_R_uc_t -35; pos @MMK_L_lc_b @MMK_R_uc_w -27; pos @MMK_L_lc_b @MMK_R_uc_y -59; pos @MMK_L_lc_b @MMK_R_uc_z -21; pos @MMK_L_lc_b V -56; pos @MMK_L_lc_b X -17; pos @MMK_L_lc_b eightinferior 10; pos @MMK_L_lc_b fiveinferior 8; pos @MMK_L_lc_b fivesuperior -2; pos @MMK_L_lc_b fourinferior -2; pos @MMK_L_lc_b foursuperior 3; pos @MMK_L_lc_b nineinferior 10; pos @MMK_L_lc_b ninesuperior -27; pos @MMK_L_lc_b oneinferior 8; pos @MMK_L_lc_b onesuperior -2; pos @MMK_L_lc_b registered -5; pos @MMK_L_lc_b seveninferior 28; pos @MMK_L_lc_b sevensuperior -24; pos @MMK_L_lc_b sixinferior 8; pos @MMK_L_lc_b sixsuperior -2; pos @MMK_L_lc_b threeinferior 8; pos @MMK_L_lc_b trademark -15; pos @MMK_L_lc_b twoinferior 8; pos @MMK_L_lc_b underscore -60; pos @MMK_L_lc_b v -5; pos @MMK_L_lc_b x -17; pos @MMK_L_lc_b zeroinferior 10; pos @MMK_L_lc_b zerosuperior -20; pos @MMK_L_lc_c @MMK_R_inp_foot -8; pos @MMK_L_lc_c @MMK_R_inp_guill 5; pos @MMK_L_lc_c @MMK_R_inp_hyph -10; pos @MMK_L_lc_c @MMK_R_inp_period -16; pos @MMK_L_lc_c @MMK_R_inp_quotel -15; pos @MMK_L_lc_c @MMK_R_lc_a -3; pos @MMK_L_lc_c @MMK_R_lc_d -7; pos @MMK_L_lc_c @MMK_R_lc_g -3; pos @MMK_L_lc_c @MMK_R_lc_o -9; pos @MMK_L_lc_c @MMK_R_uc_a 8; pos @MMK_L_lc_c @MMK_R_uc_j 10; pos @MMK_L_lc_c @MMK_R_uc_s 4; pos @MMK_L_lc_c @MMK_R_uc_t -24; pos @MMK_L_lc_c @MMK_R_uc_w -29; pos @MMK_L_lc_c @MMK_R_uc_y -36; pos @MMK_L_lc_c @MMK_R_uc_z -15; pos @MMK_L_lc_c V -32; pos @MMK_L_lc_c X -8; pos @MMK_L_lc_c eightsuperior 15; pos @MMK_L_lc_c fiveinferior 8; pos @MMK_L_lc_c fivesuperior 15; pos @MMK_L_lc_c fourinferior 10; pos @MMK_L_lc_c foursuperior 25; pos @MMK_L_lc_c oneinferior 10; pos @MMK_L_lc_c seveninferior 3; pos @MMK_L_lc_c sevensuperior -2; pos @MMK_L_lc_c sixinferior 5; pos @MMK_L_lc_c sixsuperior 15; pos @MMK_L_lc_c slash -10; pos @MMK_L_lc_c threeinferior 10; pos @MMK_L_lc_c threesuperior 15; pos @MMK_L_lc_c twoinferior 8; pos @MMK_L_lc_c twosuperior 15; pos @MMK_L_lc_c underscore -10; pos @MMK_L_lc_c x -5; pos @MMK_L_lc_c zeroinferior 15; pos @MMK_L_lc_c zerosuperior 15; pos @MMK_L_lc_dcaron @MMK_R_inp_foot 58; pos @MMK_L_lc_dcaron @MMK_R_inp_guill 2; pos @MMK_L_lc_dcaron @MMK_R_inp_parenth 81; pos @MMK_L_lc_dcaron @MMK_R_inp_period 10; pos @MMK_L_lc_dcaron @MMK_R_inp_quotel 23; pos @MMK_L_lc_dcaron @MMK_R_inp_quoter 34; pos @MMK_L_lc_dcaron @MMK_R_lc_f 7; pos @MMK_L_lc_dcaron @MMK_R_lc_h 63; pos @MMK_L_lc_dcaron @MMK_R_lc_i 8; pos @MMK_L_lc_dcaron @MMK_R_lc_j 12; pos @MMK_L_lc_dcaron @MMK_R_lc_t 8; pos @MMK_L_lc_dcaron @MMK_R_lc_u 2; pos @MMK_L_lc_dcaron @MMK_R_lc_w 14; pos @MMK_L_lc_dcaron @MMK_R_lc_y 24; pos @MMK_L_lc_dcaron @MMK_R_lc_z 6; pos @MMK_L_lc_dcaron @MMK_R_uc_h 18; pos @MMK_L_lc_dcaron @MMK_R_uc_t 21; pos @MMK_L_lc_dcaron @MMK_R_uc_y 62; pos @MMK_L_lc_dcaron @MMK_R_uc_z 13; pos @MMK_L_lc_dcaron V 23; pos @MMK_L_lc_dcaron ampersand -8; pos @MMK_L_lc_dcaron b 72; pos @MMK_L_lc_dcaron bracketleft 13; pos @MMK_L_lc_dcaron eightsuperior 55; pos @MMK_L_lc_dcaron exclam 22; pos @MMK_L_lc_dcaron fivesuperior 58; pos @MMK_L_lc_dcaron foursuperior 26; pos @MMK_L_lc_dcaron ninesuperior 60; pos @MMK_L_lc_dcaron onesuperior 56; pos @MMK_L_lc_dcaron ordfeminine 10; pos @MMK_L_lc_dcaron p 4; pos @MMK_L_lc_dcaron parenright 97; pos @MMK_L_lc_dcaron question 42; pos @MMK_L_lc_dcaron registered 40; pos @MMK_L_lc_dcaron sevensuperior 78; pos @MMK_L_lc_dcaron sixsuperior 38; pos @MMK_L_lc_dcaron thorn 40; pos @MMK_L_lc_dcaron threesuperior 58; pos @MMK_L_lc_dcaron trademark 59; pos @MMK_L_lc_dcaron twosuperior 58; pos @MMK_L_lc_dcaron underscore -20; pos @MMK_L_lc_dcaron v 24; pos @MMK_L_lc_dcaron zerosuperior 56; pos @MMK_L_lc_e @MMK_R_inp_foot -20; pos @MMK_L_lc_e @MMK_R_inp_guill 40; pos @MMK_L_lc_e @MMK_R_inp_guilr 10; pos @MMK_L_lc_e @MMK_R_inp_hyph 10; pos @MMK_L_lc_e @MMK_R_inp_period -20; pos @MMK_L_lc_e @MMK_R_inp_quotel -31; pos @MMK_L_lc_e @MMK_R_inp_quoter -5; pos @MMK_L_lc_e @MMK_R_lc_a 10; pos @MMK_L_lc_e @MMK_R_lc_d 9; pos @MMK_L_lc_e @MMK_R_lc_w -3; pos @MMK_L_lc_e @MMK_R_lc_y -6; pos @MMK_L_lc_e @MMK_R_lc_z -5; pos @MMK_L_lc_e @MMK_R_uc_h -1; pos @MMK_L_lc_e @MMK_R_uc_o 10; pos @MMK_L_lc_e @MMK_R_uc_s -10; pos @MMK_L_lc_e @MMK_R_uc_t -30; pos @MMK_L_lc_e @MMK_R_uc_w -43; pos @MMK_L_lc_e @MMK_R_uc_y -68; pos @MMK_L_lc_e @MMK_R_uc_z -20; pos @MMK_L_lc_e V -44; pos @MMK_L_lc_e X -17; pos @MMK_L_lc_e at 10; pos @MMK_L_lc_e eightinferior 10; pos @MMK_L_lc_e eightsuperior 8; pos @MMK_L_lc_e fiveinferior 3; pos @MMK_L_lc_e fivesuperior 13; pos @MMK_L_lc_e fourinferior 5; pos @MMK_L_lc_e foursuperior 13; pos @MMK_L_lc_e nineinferior 10; pos @MMK_L_lc_e ninesuperior -15; pos @MMK_L_lc_e oneinferior 5; pos @MMK_L_lc_e registered 4; pos @MMK_L_lc_e seveninferior 20; pos @MMK_L_lc_e sevensuperior -12; pos @MMK_L_lc_e sixinferior 5; pos @MMK_L_lc_e sixsuperior 8; pos @MMK_L_lc_e threeinferior 6; pos @MMK_L_lc_e threesuperior 10; pos @MMK_L_lc_e trademark -15; pos @MMK_L_lc_e twoinferior 5; pos @MMK_L_lc_e twosuperior 18; pos @MMK_L_lc_e underscore -34; pos @MMK_L_lc_e v -2; pos @MMK_L_lc_e x -11; pos @MMK_L_lc_e zeroinferior 20; pos @MMK_L_lc_e zerosuperior 8; pos @MMK_L_lc_f @MMK_R_inp_foot 88; pos @MMK_L_lc_f @MMK_R_inp_guill -13; pos @MMK_L_lc_f @MMK_R_inp_guilr -10; pos @MMK_L_lc_f @MMK_R_inp_hyph -29; pos @MMK_L_lc_f @MMK_R_inp_parenth 75; pos @MMK_L_lc_f @MMK_R_inp_period -4; pos @MMK_L_lc_f @MMK_R_inp_quotel 52; pos @MMK_L_lc_f @MMK_R_inp_quoter 70; pos @MMK_L_lc_f @MMK_R_lc_a -2; pos @MMK_L_lc_f @MMK_R_lc_d -4; pos @MMK_L_lc_f @MMK_R_lc_g -4; pos @MMK_L_lc_f @MMK_R_lc_i 3; pos @MMK_L_lc_f @MMK_R_lc_o -10; pos @MMK_L_lc_f @MMK_R_lc_w -4; pos @MMK_L_lc_f @MMK_R_lc_y 2; pos @MMK_L_lc_f @MMK_R_uc_a -10; pos @MMK_L_lc_f @MMK_R_uc_h 54; pos @MMK_L_lc_f @MMK_R_uc_j -2; pos @MMK_L_lc_f @MMK_R_uc_o 23; pos @MMK_L_lc_f @MMK_R_uc_s 40; pos @MMK_L_lc_f @MMK_R_uc_t 85; pos @MMK_L_lc_f @MMK_R_uc_u 60; pos @MMK_L_lc_f @MMK_R_uc_w 82; pos @MMK_L_lc_f @MMK_R_uc_y 88; pos @MMK_L_lc_f @MMK_R_uc_z 50; pos @MMK_L_lc_f V 82; pos @MMK_L_lc_f X 77; pos @MMK_L_lc_f ampersand 16; pos @MMK_L_lc_f at 30; pos @MMK_L_lc_f bracketleft 12; pos @MMK_L_lc_f eightinferior -25; pos @MMK_L_lc_f eightsuperior 62; pos @MMK_L_lc_f exclam 32; pos @MMK_L_lc_f fiveinferior -22; pos @MMK_L_lc_f fivesuperior 72; pos @MMK_L_lc_f fourinferior -17; pos @MMK_L_lc_f foursuperior 48; pos @MMK_L_lc_f nineinferior -27; pos @MMK_L_lc_f ninesuperior 64; pos @MMK_L_lc_f oneinferior -22; pos @MMK_L_lc_f onesuperior 54; pos @MMK_L_lc_f p -2; pos @MMK_L_lc_f parenright 95; pos @MMK_L_lc_f question 62; pos @MMK_L_lc_f registered 52; pos @MMK_L_lc_f seveninferior -22; pos @MMK_L_lc_f sevensuperior 90; pos @MMK_L_lc_f sixinferior -32; pos @MMK_L_lc_f sixsuperior 52; pos @MMK_L_lc_f slash -10; pos @MMK_L_lc_f threeinferior -12; pos @MMK_L_lc_f threesuperior 64; pos @MMK_L_lc_f trademark 98; pos @MMK_L_lc_f twoinferior -12; pos @MMK_L_lc_f twosuperior 62; pos @MMK_L_lc_f underscore -20; pos @MMK_L_lc_f v 2; pos @MMK_L_lc_f zeroinferior -13; pos @MMK_L_lc_f zerosuperior 71; pos @MMK_L_lc_g @MMK_R_inp_foot 15; pos @MMK_L_lc_g @MMK_R_inp_guill -3; pos @MMK_L_lc_g @MMK_R_inp_guilr -17; pos @MMK_L_lc_g @MMK_R_inp_hyph -3; pos @MMK_L_lc_g @MMK_R_inp_parenth 13; pos @MMK_L_lc_g @MMK_R_inp_period 13; pos @MMK_L_lc_g @MMK_R_inp_quotel 2; pos @MMK_L_lc_g @MMK_R_inp_quoter 10; pos @MMK_L_lc_g @MMK_R_lc_a -4; pos @MMK_L_lc_g @MMK_R_lc_d -8; pos @MMK_L_lc_g @MMK_R_lc_j 30; pos @MMK_L_lc_g @MMK_R_lc_o -8; pos @MMK_L_lc_g @MMK_R_lc_w 3; pos @MMK_L_lc_g @MMK_R_lc_y 10; pos @MMK_L_lc_g @MMK_R_uc_a 13; pos @MMK_L_lc_g @MMK_R_uc_j -2; pos @MMK_L_lc_g @MMK_R_uc_o 8; pos @MMK_L_lc_g @MMK_R_uc_s 8; pos @MMK_L_lc_g @MMK_R_uc_t 12; pos @MMK_L_lc_g @MMK_R_uc_y -10; pos @MMK_L_lc_g V -10; pos @MMK_L_lc_g X 10; pos @MMK_L_lc_g ampersand -5; pos @MMK_L_lc_g at -7; pos @MMK_L_lc_g eightinferior -10; pos @MMK_L_lc_g eightsuperior 12; pos @MMK_L_lc_g fiveinferior -4; pos @MMK_L_lc_g fivesuperior 20; pos @MMK_L_lc_g fourinferior -10; pos @MMK_L_lc_g foursuperior 30; pos @MMK_L_lc_g nineinferior -24; pos @MMK_L_lc_g ninesuperior 22; pos @MMK_L_lc_g oneinferior -10; pos @MMK_L_lc_g onesuperior 10; pos @MMK_L_lc_g parenright 23; pos @MMK_L_lc_g registered 20; pos @MMK_L_lc_g seveninferior -14; pos @MMK_L_lc_g sevensuperior 20; pos @MMK_L_lc_g sixinferior -20; pos @MMK_L_lc_g sixsuperior 21; pos @MMK_L_lc_g slash 30; pos @MMK_L_lc_g threesuperior 10; pos @MMK_L_lc_g trademark 2; pos @MMK_L_lc_g twoinferior 8; pos @MMK_L_lc_g twosuperior 10; pos @MMK_L_lc_g underscore 16; pos @MMK_L_lc_g v 10; pos @MMK_L_lc_g zeroinferior -15; pos @MMK_L_lc_g zerosuperior 22; pos @MMK_L_lc_i @MMK_R_inp_period 10; pos @MMK_L_lc_i @MMK_R_inp_quotel -20; pos @MMK_L_lc_i @MMK_R_inp_quoter -10; pos @MMK_L_lc_i @MMK_R_uc_j 10; pos @MMK_L_lc_i @MMK_R_uc_y -20; pos @MMK_L_lc_i V -18; pos @MMK_L_lc_i oneinferior -2; pos @MMK_L_lc_j @MMK_R_inp_foot -20; pos @MMK_L_lc_j @MMK_R_inp_guill 2; pos @MMK_L_lc_j @MMK_R_inp_guilr -2; pos @MMK_L_lc_j @MMK_R_inp_period -20; pos @MMK_L_lc_j @MMK_R_inp_quotel -19; pos @MMK_L_lc_j @MMK_R_inp_quoter -11; pos @MMK_L_lc_j @MMK_R_uc_t -10; pos @MMK_L_lc_j @MMK_R_uc_w -30; pos @MMK_L_lc_j @MMK_R_uc_y -30; pos @MMK_L_lc_j @MMK_R_uc_z -10; pos @MMK_L_lc_j V -35; pos @MMK_L_lc_j ninesuperior -10; pos @MMK_L_lc_j onesuperior 20; pos @MMK_L_lc_j parenright 10; pos @MMK_L_lc_j sevensuperior -10; pos @MMK_L_lc_j slash -15; pos @MMK_L_lc_j underscore -4; pos @MMK_L_lc_k @MMK_R_inp_guill -27; pos @MMK_L_lc_k @MMK_R_inp_guilr -10; pos @MMK_L_lc_k @MMK_R_inp_hyph -37; pos @MMK_L_lc_k @MMK_R_inp_period 22; pos @MMK_L_lc_k @MMK_R_inp_quotel 10; pos @MMK_L_lc_k @MMK_R_inp_quoter 35; pos @MMK_L_lc_k @MMK_R_lc_d -15; pos @MMK_L_lc_k @MMK_R_lc_g -7; pos @MMK_L_lc_k @MMK_R_lc_o -15; pos @MMK_L_lc_k @MMK_R_lc_s -2; pos @MMK_L_lc_k @MMK_R_lc_t -10; pos @MMK_L_lc_k @MMK_R_lc_u -10; pos @MMK_L_lc_k @MMK_R_uc_a 20; pos @MMK_L_lc_k @MMK_R_uc_j 24; pos @MMK_L_lc_k @MMK_R_uc_o -2; pos @MMK_L_lc_k @MMK_R_uc_w -2; pos @MMK_L_lc_k @MMK_R_uc_y -22; pos @MMK_L_lc_k @MMK_R_uc_z 13; pos @MMK_L_lc_k V -11; pos @MMK_L_lc_k X 20; pos @MMK_L_lc_k ampersand -18; pos @MMK_L_lc_k at -10; pos @MMK_L_lc_k eightinferior 4; pos @MMK_L_lc_k fiveinferior 20; pos @MMK_L_lc_k fivesuperior 18; pos @MMK_L_lc_k fourinferior 10; pos @MMK_L_lc_k foursuperior 20; pos @MMK_L_lc_k nineinferior -10; pos @MMK_L_lc_k onesuperior -12; pos @MMK_L_lc_k registered 18; pos @MMK_L_lc_k seveninferior -20; pos @MMK_L_lc_k sevensuperior -10; pos @MMK_L_lc_k sixinferior 2; pos @MMK_L_lc_k sixsuperior 2; pos @MMK_L_lc_k slash 10; pos @MMK_L_lc_k threeinferior 20; pos @MMK_L_lc_k threesuperior -10; pos @MMK_L_lc_k twoinferior 20; pos @MMK_L_lc_k twosuperior -12; pos @MMK_L_lc_k underscore 10; pos @MMK_L_lc_k v -3; pos @MMK_L_lc_k zeroinferior 4; pos @MMK_L_lc_k zerosuperior 10; pos @MMK_L_lc_l @MMK_R_inp_guill 2; pos @MMK_L_lc_l @MMK_R_inp_period 10; pos @MMK_L_lc_l @MMK_R_inp_quotel -36; pos @MMK_L_lc_l @MMK_R_inp_quoter -25; pos @MMK_L_lc_l @MMK_R_lc_w -1; pos @MMK_L_lc_l @MMK_R_uc_a 10; pos @MMK_L_lc_l X 11; pos @MMK_L_lc_l eightinferior 2; pos @MMK_L_lc_l fiveinferior 2; pos @MMK_L_lc_l fourinferior 2; pos @MMK_L_lc_l sixinferior 2; pos @MMK_L_lc_l threeinferior 2; pos @MMK_L_lc_l twoinferior 2; pos @MMK_L_lc_l zeroinferior 2; pos @MMK_L_lc_n @MMK_R_inp_foot -40; pos @MMK_L_lc_n @MMK_R_inp_guill 2; pos @MMK_L_lc_n @MMK_R_inp_period 10; pos @MMK_L_lc_n @MMK_R_inp_quotel -50; pos @MMK_L_lc_n @MMK_R_inp_quoter -30; pos @MMK_L_lc_n @MMK_R_lc_w -11; pos @MMK_L_lc_n @MMK_R_lc_y -13; pos @MMK_L_lc_n @MMK_R_uc_t -51; pos @MMK_L_lc_n @MMK_R_uc_w -25; pos @MMK_L_lc_n @MMK_R_uc_y -50; pos @MMK_L_lc_n V -50; pos @MMK_L_lc_n fivesuperior -2; pos @MMK_L_lc_n ninesuperior -22; pos @MMK_L_lc_n oneinferior -2; pos @MMK_L_lc_n onesuperior -20; pos @MMK_L_lc_n registered -25; pos @MMK_L_lc_n sevensuperior -27; pos @MMK_L_lc_n threeinferior 2; pos @MMK_L_lc_n trademark -35; pos @MMK_L_lc_n twoinferior 2; pos @MMK_L_lc_n v -13; pos @MMK_L_lc_n zeroinferior 2; pos @MMK_L_lc_o @MMK_R_inp_foot -20; pos @MMK_L_lc_o @MMK_R_inp_guill 35; pos @MMK_L_lc_o @MMK_R_inp_hyph 20; pos @MMK_L_lc_o @MMK_R_inp_period -27; pos @MMK_L_lc_o @MMK_R_inp_quotel -32; pos @MMK_L_lc_o @MMK_R_inp_quoter -29; pos @MMK_L_lc_o @MMK_R_lc_a 10; pos @MMK_L_lc_o @MMK_R_lc_d 10; pos @MMK_L_lc_o @MMK_R_lc_f -5; pos @MMK_L_lc_o @MMK_R_lc_o 10; pos @MMK_L_lc_o @MMK_R_lc_w -10; pos @MMK_L_lc_o @MMK_R_lc_y -7; pos @MMK_L_lc_o @MMK_R_lc_z -9; pos @MMK_L_lc_o @MMK_R_uc_a -7; pos @MMK_L_lc_o @MMK_R_uc_o 10; pos @MMK_L_lc_o @MMK_R_uc_t -45; pos @MMK_L_lc_o @MMK_R_uc_w -45; pos @MMK_L_lc_o @MMK_R_uc_y -74; pos @MMK_L_lc_o @MMK_R_uc_z -20; pos @MMK_L_lc_o V -58; pos @MMK_L_lc_o X -15; pos @MMK_L_lc_o eightinferior 13; pos @MMK_L_lc_o fiveinferior 12; pos @MMK_L_lc_o fourinferior 13; pos @MMK_L_lc_o foursuperior 13; pos @MMK_L_lc_o nineinferior 23; pos @MMK_L_lc_o ninesuperior -14; pos @MMK_L_lc_o oneinferior 21; pos @MMK_L_lc_o onesuperior -2; pos @MMK_L_lc_o registered -5; pos @MMK_L_lc_o seveninferior 20; pos @MMK_L_lc_o sevensuperior -14; pos @MMK_L_lc_o sixinferior 18; pos @MMK_L_lc_o threeinferior 13; pos @MMK_L_lc_o trademark -15; pos @MMK_L_lc_o twoinferior 8; pos @MMK_L_lc_o twosuperior 10; pos @MMK_L_lc_o underscore -50; pos @MMK_L_lc_o v -11; pos @MMK_L_lc_o x -17; pos @MMK_L_lc_o zeroinferior 36; pos @MMK_L_lc_ohorn @MMK_R_inp_foot 22; pos @MMK_L_lc_ohorn @MMK_R_inp_guill 15; pos @MMK_L_lc_ohorn @MMK_R_inp_hyph 10; pos @MMK_L_lc_ohorn @MMK_R_inp_parenth 10; pos @MMK_L_lc_ohorn @MMK_R_inp_period -20; pos @MMK_L_lc_ohorn @MMK_R_inp_quotel 6; pos @MMK_L_lc_ohorn @MMK_R_inp_quoter 6; pos @MMK_L_lc_ohorn @MMK_R_lc_d 10; pos @MMK_L_lc_ohorn @MMK_R_lc_o 10; pos @MMK_L_lc_ohorn @MMK_R_lc_t 2; pos @MMK_L_lc_ohorn @MMK_R_lc_w 1; pos @MMK_L_lc_ohorn @MMK_R_lc_y 4; pos @MMK_L_lc_ohorn @MMK_R_lc_z 2; pos @MMK_L_lc_ohorn eightinferior 13; pos @MMK_L_lc_ohorn eightsuperior 14; pos @MMK_L_lc_ohorn fiveinferior 12; pos @MMK_L_lc_ohorn fivesuperior 13; pos @MMK_L_lc_ohorn fourinferior 13; pos @MMK_L_lc_ohorn foursuperior 14; pos @MMK_L_lc_ohorn nineinferior 23; pos @MMK_L_lc_ohorn ninesuperior 20; pos @MMK_L_lc_ohorn oneinferior 21; pos @MMK_L_lc_ohorn onesuperior 12; pos @MMK_L_lc_ohorn parenright 10; pos @MMK_L_lc_ohorn question 22; pos @MMK_L_lc_ohorn registered 24; pos @MMK_L_lc_ohorn seveninferior 20; pos @MMK_L_lc_ohorn sevensuperior 16; pos @MMK_L_lc_ohorn sixinferior 18; pos @MMK_L_lc_ohorn sixsuperior 19; pos @MMK_L_lc_ohorn threeinferior 13; pos @MMK_L_lc_ohorn threesuperior 14; pos @MMK_L_lc_ohorn trademark 14; pos @MMK_L_lc_ohorn twoinferior 8; pos @MMK_L_lc_ohorn twosuperior 14; pos @MMK_L_lc_ohorn underscore -60; pos @MMK_L_lc_ohorn v 4; pos @MMK_L_lc_ohorn x 4; pos @MMK_L_lc_ohorn zeroinferior 36; pos @MMK_L_lc_ohorn zerosuperior 20; pos @MMK_L_lc_r @MMK_R_inp_foot 15; pos @MMK_L_lc_r @MMK_R_inp_guilr 10; pos @MMK_L_lc_r @MMK_R_inp_hyph -12; pos @MMK_L_lc_r @MMK_R_inp_period -100; pos @MMK_L_lc_r @MMK_R_inp_quotel 12; pos @MMK_L_lc_r @MMK_R_inp_quoter 29; pos @MMK_L_lc_r @MMK_R_lc_f 14; pos @MMK_L_lc_r @MMK_R_lc_g -1; pos @MMK_L_lc_r @MMK_R_lc_t 11; pos @MMK_L_lc_r @MMK_R_lc_u 18; pos @MMK_L_lc_r @MMK_R_lc_w 27; pos @MMK_L_lc_r @MMK_R_lc_y 30; pos @MMK_L_lc_r @MMK_R_lc_z 2; pos @MMK_L_lc_r @MMK_R_uc_a -27; pos @MMK_L_lc_r @MMK_R_uc_j -28; pos @MMK_L_lc_r @MMK_R_uc_o 18; pos @MMK_L_lc_r @MMK_R_uc_s 7; pos @MMK_L_lc_r @MMK_R_uc_y -13; pos @MMK_L_lc_r V -2; pos @MMK_L_lc_r X -14; pos @MMK_L_lc_r ampersand -14; pos @MMK_L_lc_r eightinferior -20; pos @MMK_L_lc_r eightsuperior 38; pos @MMK_L_lc_r fiveinferior -12; pos @MMK_L_lc_r fivesuperior 44; pos @MMK_L_lc_r fourinferior -42; pos @MMK_L_lc_r foursuperior 48; pos @MMK_L_lc_r nineinferior -22; pos @MMK_L_lc_r ninesuperior 20; pos @MMK_L_lc_r oneinferior -22; pos @MMK_L_lc_r onesuperior 18; pos @MMK_L_lc_r registered 30; pos @MMK_L_lc_r sevensuperior 18; pos @MMK_L_lc_r sixinferior -34; pos @MMK_L_lc_r sixsuperior 42; pos @MMK_L_lc_r slash -45; pos @MMK_L_lc_r threeinferior -22; pos @MMK_L_lc_r threesuperior 30; pos @MMK_L_lc_r trademark 20; pos @MMK_L_lc_r twoinferior -22; pos @MMK_L_lc_r twosuperior 30; pos @MMK_L_lc_r underscore -80; pos @MMK_L_lc_r v 30; pos @MMK_L_lc_r zeroinferior -22; pos @MMK_L_lc_r zerosuperior 40; pos @MMK_L_lc_s @MMK_R_inp_foot -10; pos @MMK_L_lc_s @MMK_R_inp_hyph -10; pos @MMK_L_lc_s @MMK_R_inp_period -16; pos @MMK_L_lc_s @MMK_R_inp_quotel -10; pos @MMK_L_lc_s @MMK_R_lc_f -5; pos @MMK_L_lc_s @MMK_R_lc_g -10; pos @MMK_L_lc_s @MMK_R_lc_s -6; pos @MMK_L_lc_s @MMK_R_lc_t -7; pos @MMK_L_lc_s @MMK_R_lc_w -5; pos @MMK_L_lc_s @MMK_R_lc_y -4; pos @MMK_L_lc_s @MMK_R_lc_z -18; pos @MMK_L_lc_s @MMK_R_uc_a -5; pos @MMK_L_lc_s @MMK_R_uc_j 5; pos @MMK_L_lc_s @MMK_R_uc_o 10; pos @MMK_L_lc_s @MMK_R_uc_t -20; pos @MMK_L_lc_s @MMK_R_uc_w -28; pos @MMK_L_lc_s @MMK_R_uc_y -42; pos @MMK_L_lc_s @MMK_R_uc_z -15; pos @MMK_L_lc_s V -30; pos @MMK_L_lc_s X -23; pos @MMK_L_lc_s ampersand -5; pos @MMK_L_lc_s eightsuperior 7; pos @MMK_L_lc_s fiveinferior -1; pos @MMK_L_lc_s fivesuperior 7; pos @MMK_L_lc_s fourinferior 5; pos @MMK_L_lc_s ninesuperior -2; pos @MMK_L_lc_s oneinferior -2; pos @MMK_L_lc_s onesuperior -12; pos @MMK_L_lc_s seveninferior -1; pos @MMK_L_lc_s sevensuperior -12; pos @MMK_L_lc_s sixinferior 5; pos @MMK_L_lc_s sixsuperior 8; pos @MMK_L_lc_s slash -10; pos @MMK_L_lc_s threesuperior -1; pos @MMK_L_lc_s trademark -2; pos @MMK_L_lc_s twoinferior -2; pos @MMK_L_lc_s twosuperior -2; pos @MMK_L_lc_s underscore -24; pos @MMK_L_lc_s v -6; pos @MMK_L_lc_s x -16; pos @MMK_L_lc_s zeroinferior 6; pos @MMK_L_lc_t @MMK_R_inp_foot 20; pos @MMK_L_lc_t @MMK_R_inp_guill -15; pos @MMK_L_lc_t @MMK_R_inp_guilr -10; pos @MMK_L_lc_t @MMK_R_inp_hyph -24; pos @MMK_L_lc_t @MMK_R_inp_parenth 20; pos @MMK_L_lc_t @MMK_R_inp_period 13; pos @MMK_L_lc_t @MMK_R_inp_quotel 4; pos @MMK_L_lc_t @MMK_R_inp_quoter 20; pos @MMK_L_lc_t @MMK_R_lc_g -10; pos @MMK_L_lc_t @MMK_R_lc_i 2; pos @MMK_L_lc_t @MMK_R_lc_j 2; pos @MMK_L_lc_t @MMK_R_lc_t -8; pos @MMK_L_lc_t @MMK_R_lc_w -2; pos @MMK_L_lc_t @MMK_R_lc_y 1; pos @MMK_L_lc_t @MMK_R_uc_a 22; pos @MMK_L_lc_t @MMK_R_uc_j 22; pos @MMK_L_lc_t @MMK_R_uc_o 20; pos @MMK_L_lc_t @MMK_R_uc_s 20; pos @MMK_L_lc_t @MMK_R_uc_t 15; pos @MMK_L_lc_t @MMK_R_uc_y -20; pos @MMK_L_lc_t X 10; pos @MMK_L_lc_t ampersand -5; pos @MMK_L_lc_t at -5; pos @MMK_L_lc_t eightinferior 4; pos @MMK_L_lc_t eightsuperior 22; pos @MMK_L_lc_t fivesuperior 20; pos @MMK_L_lc_t fourinferior 20; pos @MMK_L_lc_t foursuperior 20; pos @MMK_L_lc_t nineinferior -18; pos @MMK_L_lc_t ninesuperior 22; pos @MMK_L_lc_t question 7; pos @MMK_L_lc_t registered 23; pos @MMK_L_lc_t sevensuperior 20; pos @MMK_L_lc_t sixinferior -6; pos @MMK_L_lc_t sixsuperior 24; pos @MMK_L_lc_t slash 10; pos @MMK_L_lc_t threeinferior 18; pos @MMK_L_lc_t threesuperior 10; pos @MMK_L_lc_t trademark 5; pos @MMK_L_lc_t twoinferior 19; pos @MMK_L_lc_t twosuperior 10; pos @MMK_L_lc_t underscore 8; pos @MMK_L_lc_t v 1; pos @MMK_L_lc_t zeroinferior 12; pos @MMK_L_lc_t zerosuperior 32; pos @MMK_L_lc_u @MMK_R_inp_foot -10; pos @MMK_L_lc_u @MMK_R_inp_guill 2; pos @MMK_L_lc_u @MMK_R_inp_period 10; pos @MMK_L_lc_u @MMK_R_inp_quotel -30; pos @MMK_L_lc_u @MMK_R_inp_quoter -20; pos @MMK_L_lc_u @MMK_R_uc_t -45; pos @MMK_L_lc_u @MMK_R_uc_w -15; pos @MMK_L_lc_u @MMK_R_uc_y -40; pos @MMK_L_lc_u V -40; pos @MMK_L_lc_u fivesuperior -4; pos @MMK_L_lc_u ninesuperior -2; pos @MMK_L_lc_u oneinferior -2; pos @MMK_L_lc_u onesuperior -4; pos @MMK_L_lc_u registered -8; pos @MMK_L_lc_u sevensuperior -12; pos @MMK_L_lc_u twosuperior -2; pos @MMK_L_lc_uhorn @MMK_R_inp_foot 45; pos @MMK_L_lc_uhorn @MMK_R_inp_parenth 10; pos @MMK_L_lc_uhorn @MMK_R_inp_quotel 30; pos @MMK_L_lc_uhorn @MMK_R_inp_quoter 30; pos @MMK_L_lc_uhorn @MMK_R_lc_t 12; pos @MMK_L_lc_uhorn @MMK_R_lc_w 15; pos @MMK_L_lc_uhorn @MMK_R_lc_y 15; pos @MMK_L_lc_uhorn @MMK_R_lc_z 5; pos @MMK_L_lc_uhorn eightsuperior 40; pos @MMK_L_lc_uhorn exclam 20; pos @MMK_L_lc_uhorn fivesuperior 40; pos @MMK_L_lc_uhorn foursuperior 40; pos @MMK_L_lc_uhorn ninesuperior 42; pos @MMK_L_lc_uhorn oneinferior -2; pos @MMK_L_lc_uhorn onesuperior 40; pos @MMK_L_lc_uhorn parenright 10; pos @MMK_L_lc_uhorn question 30; pos @MMK_L_lc_uhorn registered 40; pos @MMK_L_lc_uhorn sevensuperior 42; pos @MMK_L_lc_uhorn sixsuperior 40; pos @MMK_L_lc_uhorn threesuperior 40; pos @MMK_L_lc_uhorn trademark 30; pos @MMK_L_lc_uhorn twosuperior 30; pos @MMK_L_lc_uhorn v 15; pos @MMK_L_lc_uhorn x 7; pos @MMK_L_lc_uhorn zerosuperior 43; pos @MMK_L_lc_w @MMK_R_inp_foot 18; pos @MMK_L_lc_w @MMK_R_inp_guill -2; pos @MMK_L_lc_w @MMK_R_inp_guilr -4; pos @MMK_L_lc_w @MMK_R_inp_hyph -3; pos @MMK_L_lc_w @MMK_R_inp_period -62; pos @MMK_L_lc_w @MMK_R_inp_quotel 38; pos @MMK_L_lc_w @MMK_R_inp_quoter 40; pos @MMK_L_lc_w @MMK_R_lc_a -9; pos @MMK_L_lc_w @MMK_R_lc_d -8; pos @MMK_L_lc_w @MMK_R_lc_g -18; pos @MMK_L_lc_w @MMK_R_lc_o -10; pos @MMK_L_lc_w @MMK_R_lc_s -3; pos @MMK_L_lc_w @MMK_R_lc_w 12; pos @MMK_L_lc_w @MMK_R_lc_y 17; pos @MMK_L_lc_w @MMK_R_uc_a -22; pos @MMK_L_lc_w @MMK_R_uc_j -24; pos @MMK_L_lc_w @MMK_R_uc_o 10; pos @MMK_L_lc_w @MMK_R_uc_s 10; pos @MMK_L_lc_w @MMK_R_uc_u -1; pos @MMK_L_lc_w @MMK_R_uc_w -5; pos @MMK_L_lc_w @MMK_R_uc_y -23; pos @MMK_L_lc_w @MMK_R_uc_z -4; pos @MMK_L_lc_w V -12; pos @MMK_L_lc_w X -22; pos @MMK_L_lc_w ampersand -14; pos @MMK_L_lc_w eightinferior -29; pos @MMK_L_lc_w eightsuperior 24; pos @MMK_L_lc_w fiveinferior -24; pos @MMK_L_lc_w fivesuperior 36; pos @MMK_L_lc_w fourinferior -34; pos @MMK_L_lc_w foursuperior 30; pos @MMK_L_lc_w nineinferior -26; pos @MMK_L_lc_w ninesuperior 36; pos @MMK_L_lc_w oneinferior -16; pos @MMK_L_lc_w onesuperior 6; pos @MMK_L_lc_w parenright -10; pos @MMK_L_lc_w registered 38; pos @MMK_L_lc_w seveninferior -12; pos @MMK_L_lc_w sevensuperior 8; pos @MMK_L_lc_w sixinferior -32; pos @MMK_L_lc_w sixsuperior 33; pos @MMK_L_lc_w slash -10; pos @MMK_L_lc_w threeinferior -32; pos @MMK_L_lc_w threesuperior 16; pos @MMK_L_lc_w trademark 16; pos @MMK_L_lc_w twoinferior -24; pos @MMK_L_lc_w twosuperior 20; pos @MMK_L_lc_w underscore -40; pos @MMK_L_lc_w v 16; pos @MMK_L_lc_w zeroinferior -22; pos @MMK_L_lc_w zerosuperior 38; pos @MMK_L_lc_y @MMK_R_inp_foot 20; pos @MMK_L_lc_y @MMK_R_inp_guill -2; pos @MMK_L_lc_y @MMK_R_inp_guilr -2; pos @MMK_L_lc_y @MMK_R_inp_hyph -10; pos @MMK_L_lc_y @MMK_R_inp_period -66; pos @MMK_L_lc_y @MMK_R_inp_quotel 40; pos @MMK_L_lc_y @MMK_R_inp_quoter 40; pos @MMK_L_lc_y @MMK_R_lc_a -14; pos @MMK_L_lc_y @MMK_R_lc_d -10; pos @MMK_L_lc_y @MMK_R_lc_f 3; pos @MMK_L_lc_y @MMK_R_lc_g -20; pos @MMK_L_lc_y @MMK_R_lc_o -13; pos @MMK_L_lc_y @MMK_R_lc_s -8; pos @MMK_L_lc_y @MMK_R_lc_w 17; pos @MMK_L_lc_y @MMK_R_lc_y 23; pos @MMK_L_lc_y @MMK_R_uc_a -27; pos @MMK_L_lc_y @MMK_R_uc_j -39; pos @MMK_L_lc_y @MMK_R_uc_o 10; pos @MMK_L_lc_y @MMK_R_uc_s 10; pos @MMK_L_lc_y @MMK_R_uc_t 6; pos @MMK_L_lc_y @MMK_R_uc_w -5; pos @MMK_L_lc_y @MMK_R_uc_y -21; pos @MMK_L_lc_y V -12; pos @MMK_L_lc_y X -12; pos @MMK_L_lc_y ampersand -18; pos @MMK_L_lc_y at -10; pos @MMK_L_lc_y eightinferior -29; pos @MMK_L_lc_y eightsuperior 28; pos @MMK_L_lc_y fiveinferior -29; pos @MMK_L_lc_y fivesuperior 28; pos @MMK_L_lc_y fourinferior -36; pos @MMK_L_lc_y foursuperior 30; pos @MMK_L_lc_y nineinferior -23; pos @MMK_L_lc_y ninesuperior 33; pos @MMK_L_lc_y oneinferior -26; pos @MMK_L_lc_y parenright -10; pos @MMK_L_lc_y registered 38; pos @MMK_L_lc_y seveninferior -14; pos @MMK_L_lc_y sevensuperior 9; pos @MMK_L_lc_y sixinferior -44; pos @MMK_L_lc_y sixsuperior 30; pos @MMK_L_lc_y slash -15; pos @MMK_L_lc_y threeinferior -24; pos @MMK_L_lc_y threesuperior 16; pos @MMK_L_lc_y trademark 20; pos @MMK_L_lc_y twoinferior -24; pos @MMK_L_lc_y twosuperior 16; pos @MMK_L_lc_y underscore -80; pos @MMK_L_lc_y v 23; pos @MMK_L_lc_y zeroinferior -32; pos @MMK_L_lc_y zerosuperior 38; pos @MMK_L_lc_z @MMK_R_inp_foot 2; pos @MMK_L_lc_z @MMK_R_inp_guill -2; pos @MMK_L_lc_z @MMK_R_inp_hyph -20; pos @MMK_L_lc_z @MMK_R_inp_period 2; pos @MMK_L_lc_z @MMK_R_inp_quoter 20; pos @MMK_L_lc_z @MMK_R_lc_d -12; pos @MMK_L_lc_z @MMK_R_lc_o -11; pos @MMK_L_lc_z @MMK_R_lc_s -10; pos @MMK_L_lc_z @MMK_R_uc_a 6; pos @MMK_L_lc_z @MMK_R_uc_j 3; pos @MMK_L_lc_z @MMK_R_uc_t -24; pos @MMK_L_lc_z @MMK_R_uc_w -24; pos @MMK_L_lc_z @MMK_R_uc_y -40; pos @MMK_L_lc_z @MMK_R_uc_z -8; pos @MMK_L_lc_z V -30; pos @MMK_L_lc_z X 6; pos @MMK_L_lc_z ampersand -12; pos @MMK_L_lc_z at -9; pos @MMK_L_lc_z eightinferior 10; pos @MMK_L_lc_z eightsuperior 20; pos @MMK_L_lc_z fiveinferior 8; pos @MMK_L_lc_z fivesuperior 18; pos @MMK_L_lc_z fourinferior 18; pos @MMK_L_lc_z foursuperior 40; pos @MMK_L_lc_z nineinferior -10; pos @MMK_L_lc_z oneinferior 8; pos @MMK_L_lc_z registered 15; pos @MMK_L_lc_z seveninferior -2; pos @MMK_L_lc_z sixinferior 10; pos @MMK_L_lc_z sixsuperior 20; pos @MMK_L_lc_z threeinferior 10; pos @MMK_L_lc_z threesuperior 10; pos @MMK_L_lc_z trademark 10; pos @MMK_L_lc_z twoinferior 16; pos @MMK_L_lc_z twosuperior 10; pos @MMK_L_lc_z underscore 10; pos @MMK_L_lc_z zeroinferior 12; pos @MMK_L_lc_z zerosuperior 20; pos @MMK_L_uc_a @MMK_R_inp_foot -90; pos @MMK_L_uc_a @MMK_R_inp_guill -2; pos @MMK_L_uc_a @MMK_R_inp_guilr -10; pos @MMK_L_uc_a @MMK_R_inp_hyph -25; pos @MMK_L_uc_a @MMK_R_inp_period 17; pos @MMK_L_uc_a @MMK_R_inp_quotel -100; pos @MMK_L_uc_a @MMK_R_inp_quoter -100; pos @MMK_L_uc_a @MMK_R_lc_d -7; pos @MMK_L_uc_a @MMK_R_lc_h -8; pos @MMK_L_uc_a @MMK_R_lc_o -7; pos @MMK_L_uc_a @MMK_R_lc_t -14; pos @MMK_L_uc_a @MMK_R_lc_u -20; pos @MMK_L_uc_a @MMK_R_lc_w -20; pos @MMK_L_uc_a @MMK_R_lc_y -17; pos @MMK_L_uc_a @MMK_R_lc_z 14; pos @MMK_L_uc_a @MMK_R_uc_a 15; pos @MMK_L_uc_a @MMK_R_uc_j 14; pos @MMK_L_uc_a @MMK_R_uc_o -26; pos @MMK_L_uc_a @MMK_R_uc_t -56; pos @MMK_L_uc_a @MMK_R_uc_u -26; pos @MMK_L_uc_a @MMK_R_uc_w -36; pos @MMK_L_uc_a @MMK_R_uc_y -55; pos @MMK_L_uc_a V -52; pos @MMK_L_uc_a X 17; pos @MMK_L_uc_a ampersand -10; pos @MMK_L_uc_a at -20; pos @MMK_L_uc_a b -2; pos @MMK_L_uc_a eightinferior 4; pos @MMK_L_uc_a eightsuperior -64; pos @MMK_L_uc_a exclamdown 28; pos @MMK_L_uc_a fiveinferior 10; pos @MMK_L_uc_a fivesuperior -54; pos @MMK_L_uc_a fourinferior 10; pos @MMK_L_uc_a foursuperior -46; pos @MMK_L_uc_a nineinferior -5; pos @MMK_L_uc_a ninesuperior -72; pos @MMK_L_uc_a oneinferior 14; pos @MMK_L_uc_a onesuperior -46; pos @MMK_L_uc_a p -10; pos @MMK_L_uc_a question -20; pos @MMK_L_uc_a questiondown 40; pos @MMK_L_uc_a registered -60; pos @MMK_L_uc_a seveninferior -12; pos @MMK_L_uc_a sevensuperior -84; pos @MMK_L_uc_a sixinferior 7; pos @MMK_L_uc_a sixsuperior -54; pos @MMK_L_uc_a slash 20; pos @MMK_L_uc_a threeinferior 20; pos @MMK_L_uc_a threesuperior -46; pos @MMK_L_uc_a trademark -85; pos @MMK_L_uc_a twoinferior 20; pos @MMK_L_uc_a twosuperior -36; pos @MMK_L_uc_a underscore 12; pos @MMK_L_uc_a v -26; pos @MMK_L_uc_a zeroinferior 20; pos @MMK_L_uc_a zerosuperior -54; pos @MMK_L_uc_c @MMK_R_inp_foot 10; pos @MMK_L_uc_c @MMK_R_inp_hyph -20; pos @MMK_L_uc_c @MMK_R_inp_period -37; pos @MMK_L_uc_c @MMK_R_inp_quotel 3; pos @MMK_L_uc_c @MMK_R_inp_quoter 10; pos @MMK_L_uc_c @MMK_R_lc_a -10; pos @MMK_L_uc_c @MMK_R_lc_d -10; pos @MMK_L_uc_c @MMK_R_lc_g -20; pos @MMK_L_uc_c @MMK_R_lc_n -15; pos @MMK_L_uc_c @MMK_R_lc_o -10; pos @MMK_L_uc_c @MMK_R_uc_a -15; pos @MMK_L_uc_c @MMK_R_uc_o -13; pos @MMK_L_uc_c @MMK_R_uc_w 5; pos @MMK_L_uc_c @MMK_R_uc_y -5; pos @MMK_L_uc_c @MMK_R_uc_z -8; pos @MMK_L_uc_c ampersand -8; pos @MMK_L_uc_c at -11; pos @MMK_L_uc_c eightinferior -1; pos @MMK_L_uc_c fiveinferior 2; pos @MMK_L_uc_c fourinferior 3; pos @MMK_L_uc_c ninesuperior 10; pos @MMK_L_uc_c oneinferior -4; pos @MMK_L_uc_c onesuperior 6; pos @MMK_L_uc_c p -5; pos @MMK_L_uc_c registered 9; pos @MMK_L_uc_c seveninferior -4; pos @MMK_L_uc_c sevensuperior 1; pos @MMK_L_uc_c sixinferior 5; pos @MMK_L_uc_c sixsuperior 1; pos @MMK_L_uc_c slash -10; pos @MMK_L_uc_c threeinferior 2; pos @MMK_L_uc_c threesuperior 2; pos @MMK_L_uc_c trademark 2; pos @MMK_L_uc_c twoinferior 1; pos @MMK_L_uc_c twosuperior 8; pos @MMK_L_uc_c underscore -24; pos @MMK_L_uc_c zerosuperior 11; pos @MMK_L_uc_d @MMK_R_inp_foot -12; pos @MMK_L_uc_d @MMK_R_inp_guill 22; pos @MMK_L_uc_d @MMK_R_inp_hyph 20; pos @MMK_L_uc_d @MMK_R_inp_period -45; pos @MMK_L_uc_d @MMK_R_inp_quotel -3; pos @MMK_L_uc_d @MMK_R_inp_quoter -16; pos @MMK_L_uc_d @MMK_R_uc_a -26; pos @MMK_L_uc_d @MMK_R_uc_j -16; pos @MMK_L_uc_d @MMK_R_uc_o 8; pos @MMK_L_uc_d @MMK_R_uc_t -11; pos @MMK_L_uc_d @MMK_R_uc_w -17; pos @MMK_L_uc_d @MMK_R_uc_y -32; pos @MMK_L_uc_d @MMK_R_uc_z -17; pos @MMK_L_uc_d V -23; pos @MMK_L_uc_d X -18; pos @MMK_L_uc_d ampersand -5; pos @MMK_L_uc_d eightsuperior 8; pos @MMK_L_uc_d fiveinferior 6; pos @MMK_L_uc_d fivesuperior 14; pos @MMK_L_uc_d fourinferior -4; pos @MMK_L_uc_d foursuperior 16; pos @MMK_L_uc_d nineinferior 5; pos @MMK_L_uc_d oneinferior -2; pos @MMK_L_uc_d onesuperior 10; pos @MMK_L_uc_d question -16; pos @MMK_L_uc_d registered 8; pos @MMK_L_uc_d seveninferior 14; pos @MMK_L_uc_d sevensuperior -8; pos @MMK_L_uc_d sixinferior -2; pos @MMK_L_uc_d sixsuperior 8; pos @MMK_L_uc_d slash -10; pos @MMK_L_uc_d threeinferior 7; pos @MMK_L_uc_d threesuperior 11; pos @MMK_L_uc_d trademark -14; pos @MMK_L_uc_d twoinferior -2; pos @MMK_L_uc_d twosuperior 11; pos @MMK_L_uc_d underscore -80; pos @MMK_L_uc_d zeroinferior 8; pos @MMK_L_uc_d zerosuperior 8; pos @MMK_L_uc_e @MMK_R_inp_hyph -20; pos @MMK_L_uc_e @MMK_R_lc_d -10; pos @MMK_L_uc_e @MMK_R_lc_g -10; pos @MMK_L_uc_e @MMK_R_lc_o -10; pos @MMK_L_uc_e @MMK_R_lc_w -5; pos @MMK_L_uc_e @MMK_R_uc_w -2; pos @MMK_L_uc_e @MMK_R_uc_y -19; pos @MMK_L_uc_e @MMK_R_uc_z -2; pos @MMK_L_uc_e V -10; pos @MMK_L_uc_e at -10; pos @MMK_L_uc_e eightsuperior -5; pos @MMK_L_uc_e fivesuperior -10; pos @MMK_L_uc_e fourinferior 10; pos @MMK_L_uc_e foursuperior -5; pos @MMK_L_uc_e nineinferior -13; pos @MMK_L_uc_e ninesuperior -5; pos @MMK_L_uc_e oneinferior -5; pos @MMK_L_uc_e onesuperior -5; pos @MMK_L_uc_e seveninferior -2; pos @MMK_L_uc_e sevensuperior -2; pos @MMK_L_uc_e sixsuperior -10; pos @MMK_L_uc_e slash 10; pos @MMK_L_uc_e trademark 10; pos @MMK_L_uc_e twosuperior -1; pos @MMK_L_uc_e v -5; pos @MMK_L_uc_e zerosuperior -5; pos @MMK_L_uc_g @MMK_R_inp_foot -24; pos @MMK_L_uc_g @MMK_R_inp_guill 30; pos @MMK_L_uc_g @MMK_R_inp_hyph 28; pos @MMK_L_uc_g @MMK_R_inp_period -34; pos @MMK_L_uc_g @MMK_R_inp_quotel -32; pos @MMK_L_uc_g @MMK_R_inp_quoter -30; pos @MMK_L_uc_g @MMK_R_lc_a 10; pos @MMK_L_uc_g @MMK_R_lc_d 10; pos @MMK_L_uc_g @MMK_R_lc_w -2; pos @MMK_L_uc_g @MMK_R_lc_y -1; pos @MMK_L_uc_g @MMK_R_uc_a -10; pos @MMK_L_uc_g @MMK_R_uc_j -2; pos @MMK_L_uc_g @MMK_R_uc_o 18; pos @MMK_L_uc_g @MMK_R_uc_t -26; pos @MMK_L_uc_g @MMK_R_uc_w -16; pos @MMK_L_uc_g @MMK_R_uc_y -17; pos @MMK_L_uc_g @MMK_R_uc_z -12; pos @MMK_L_uc_g V -19; pos @MMK_L_uc_g X -5; pos @MMK_L_uc_g ampersand 6; pos @MMK_L_uc_g at 10; pos @MMK_L_uc_g eightsuperior -9; pos @MMK_L_uc_g fivesuperior -9; pos @MMK_L_uc_g fourinferior -2; pos @MMK_L_uc_g foursuperior -4; pos @MMK_L_uc_g ninesuperior -14; pos @MMK_L_uc_g oneinferior -2; pos @MMK_L_uc_g onesuperior -12; pos @MMK_L_uc_g question -22; pos @MMK_L_uc_g registered -10; pos @MMK_L_uc_g sevensuperior -16; pos @MMK_L_uc_g sixinferior -2; pos @MMK_L_uc_g sixsuperior -10; pos @MMK_L_uc_g slash -10; pos @MMK_L_uc_g threesuperior -6; pos @MMK_L_uc_g trademark -30; pos @MMK_L_uc_g twoinferior -2; pos @MMK_L_uc_g twosuperior -2; pos @MMK_L_uc_g underscore -42; pos @MMK_L_uc_g v -1; pos @MMK_L_uc_g zerosuperior -12; pos @MMK_L_uc_j @MMK_R_inp_guilr -10; pos @MMK_L_uc_j @MMK_R_inp_period -50; pos @MMK_L_uc_j @MMK_R_inp_quotel 10; pos @MMK_L_uc_j @MMK_R_lc_a -5; pos @MMK_L_uc_j @MMK_R_lc_d -5; pos @MMK_L_uc_j @MMK_R_lc_g -10; pos @MMK_L_uc_j @MMK_R_lc_o -10; pos @MMK_L_uc_j @MMK_R_lc_s -5; pos @MMK_L_uc_j @MMK_R_lc_u -5; pos @MMK_L_uc_j @MMK_R_uc_a -26; pos @MMK_L_uc_j @MMK_R_uc_j -35; pos @MMK_L_uc_j X -15; pos @MMK_L_uc_j eightinferior -17; pos @MMK_L_uc_j fiveinferior -14; pos @MMK_L_uc_j fourinferior -21; pos @MMK_L_uc_j nineinferior -22; pos @MMK_L_uc_j oneinferior -24; pos @MMK_L_uc_j parenright 10; pos @MMK_L_uc_j questiondown -40; pos @MMK_L_uc_j seveninferior -14; pos @MMK_L_uc_j sixinferior -19; pos @MMK_L_uc_j slash -20; pos @MMK_L_uc_j threeinferior -24; pos @MMK_L_uc_j trademark 4; pos @MMK_L_uc_j twoinferior -24; pos @MMK_L_uc_j underscore -60; pos @MMK_L_uc_j zeroinferior -4; pos @MMK_L_uc_k @MMK_R_inp_foot -7; pos @MMK_L_uc_k @MMK_R_inp_guill -40; pos @MMK_L_uc_k @MMK_R_inp_guilr -20; pos @MMK_L_uc_k @MMK_R_inp_hyph -63; pos @MMK_L_uc_k @MMK_R_inp_period 22; pos @MMK_L_uc_k @MMK_R_inp_quotel -12; pos @MMK_L_uc_k @MMK_R_inp_quoter -11; pos @MMK_L_uc_k @MMK_R_lc_a -13; pos @MMK_L_uc_k @MMK_R_lc_d -26; pos @MMK_L_uc_k @MMK_R_lc_f -8; pos @MMK_L_uc_k @MMK_R_lc_g -8; pos @MMK_L_uc_k @MMK_R_lc_n -10; pos @MMK_L_uc_k @MMK_R_lc_o -27; pos @MMK_L_uc_k @MMK_R_lc_t -20; pos @MMK_L_uc_k @MMK_R_lc_u -25; pos @MMK_L_uc_k @MMK_R_lc_w -24; pos @MMK_L_uc_k @MMK_R_lc_y -24; pos @MMK_L_uc_k @MMK_R_lc_z 10; pos @MMK_L_uc_k @MMK_R_uc_j 2; pos @MMK_L_uc_k @MMK_R_uc_o -27; pos @MMK_L_uc_k @MMK_R_uc_t -4; pos @MMK_L_uc_k @MMK_R_uc_w -4; pos @MMK_L_uc_k @MMK_R_uc_y -3; pos @MMK_L_uc_k V -8; pos @MMK_L_uc_k ampersand -25; pos @MMK_L_uc_k at -40; pos @MMK_L_uc_k eightinferior 4; pos @MMK_L_uc_k eightsuperior -12; pos @MMK_L_uc_k fiveinferior 4; pos @MMK_L_uc_k fivesuperior -12; pos @MMK_L_uc_k fourinferior 2; pos @MMK_L_uc_k foursuperior -42; pos @MMK_L_uc_k nineinferior -18; pos @MMK_L_uc_k ninesuperior -12; pos @MMK_L_uc_k onesuperior -15; pos @MMK_L_uc_k p -10; pos @MMK_L_uc_k parenright 10; pos @MMK_L_uc_k registered -32; pos @MMK_L_uc_k seveninferior -25; pos @MMK_L_uc_k sevensuperior -2; pos @MMK_L_uc_k sixinferior 4; pos @MMK_L_uc_k sixsuperior -30; pos @MMK_L_uc_k slash 11; pos @MMK_L_uc_k threeinferior 6; pos @MMK_L_uc_k threesuperior -10; pos @MMK_L_uc_k trademark -2; pos @MMK_L_uc_k twoinferior 4; pos @MMK_L_uc_k twosuperior -12; pos @MMK_L_uc_k v -24; pos @MMK_L_uc_k x 4; pos @MMK_L_uc_k zeroinferior -1; pos @MMK_L_uc_k zerosuperior -12; pos @MMK_L_uc_l @MMK_R_inp_foot -70; pos @MMK_L_uc_l @MMK_R_inp_hyph -36; pos @MMK_L_uc_l @MMK_R_inp_quotel -80; pos @MMK_L_uc_l @MMK_R_inp_quoter -78; pos @MMK_L_uc_l @MMK_R_lc_a 2; pos @MMK_L_uc_l @MMK_R_lc_f 2; pos @MMK_L_uc_l @MMK_R_lc_t -10; pos @MMK_L_uc_l @MMK_R_lc_u -9; pos @MMK_L_uc_l @MMK_R_lc_w -31; pos @MMK_L_uc_l @MMK_R_lc_y -30; pos @MMK_L_uc_l @MMK_R_lc_z 16; pos @MMK_L_uc_l @MMK_R_uc_a 8; pos @MMK_L_uc_l @MMK_R_uc_j 10; pos @MMK_L_uc_l @MMK_R_uc_o -17; pos @MMK_L_uc_l @MMK_R_uc_t -70; pos @MMK_L_uc_l @MMK_R_uc_u -37; pos @MMK_L_uc_l @MMK_R_uc_w -46; pos @MMK_L_uc_l @MMK_R_uc_y -74; pos @MMK_L_uc_l V -72; pos @MMK_L_uc_l ampersand -6; pos @MMK_L_uc_l at -18; pos @MMK_L_uc_l eightsuperior -68; pos @MMK_L_uc_l fiveinferior 10; pos @MMK_L_uc_l fivesuperior -60; pos @MMK_L_uc_l fourinferior 18; pos @MMK_L_uc_l foursuperior -70; pos @MMK_L_uc_l nineinferior 2; pos @MMK_L_uc_l ninesuperior -82; pos @MMK_L_uc_l onesuperior -70; pos @MMK_L_uc_l question -45; pos @MMK_L_uc_l registered -102; pos @MMK_L_uc_l seveninferior -2; pos @MMK_L_uc_l sevensuperior -60; pos @MMK_L_uc_l sixinferior 2; pos @MMK_L_uc_l sixsuperior -68; pos @MMK_L_uc_l threeinferior 2; pos @MMK_L_uc_l threesuperior -58; pos @MMK_L_uc_l trademark -84; pos @MMK_L_uc_l twosuperior -68; pos @MMK_L_uc_l underscore -2; pos @MMK_L_uc_l v -40; pos @MMK_L_uc_l x 10; pos @MMK_L_uc_l zeroinferior 3; pos @MMK_L_uc_l zerosuperior -70; pos @MMK_L_uc_n @MMK_R_inp_guilr -20; pos @MMK_L_uc_n @MMK_R_inp_period -40; pos @MMK_L_uc_n @MMK_R_lc_a -6; pos @MMK_L_uc_n @MMK_R_lc_d -7; pos @MMK_L_uc_n @MMK_R_lc_g -15; pos @MMK_L_uc_n @MMK_R_lc_o -7; pos @MMK_L_uc_n @MMK_R_lc_s -2; pos @MMK_L_uc_n @MMK_R_lc_u -1; pos @MMK_L_uc_n @MMK_R_lc_w -2; pos @MMK_L_uc_n @MMK_R_lc_z -18; pos @MMK_L_uc_n @MMK_R_uc_a -11; pos @MMK_L_uc_n @MMK_R_uc_j -11; pos @MMK_L_uc_n slash -30; pos @MMK_L_uc_n underscore -30; pos @MMK_L_uc_n v -2; pos @MMK_L_uc_o @MMK_R_inp_foot -10; pos @MMK_L_uc_o @MMK_R_inp_guill 22; pos @MMK_L_uc_o @MMK_R_inp_hyph 20; pos @MMK_L_uc_o @MMK_R_inp_period -35; pos @MMK_L_uc_o @MMK_R_inp_quotel -14; pos @MMK_L_uc_o @MMK_R_inp_quoter -15; pos @MMK_L_uc_o @MMK_R_lc_w 10; pos @MMK_L_uc_o @MMK_R_lc_y 10; pos @MMK_L_uc_o @MMK_R_uc_a -26; pos @MMK_L_uc_o @MMK_R_uc_j -16; pos @MMK_L_uc_o @MMK_R_uc_o 8; pos @MMK_L_uc_o @MMK_R_uc_t -11; pos @MMK_L_uc_o @MMK_R_uc_w -17; pos @MMK_L_uc_o @MMK_R_uc_y -32; pos @MMK_L_uc_o @MMK_R_uc_z -16; pos @MMK_L_uc_o V -23; pos @MMK_L_uc_o X -18; pos @MMK_L_uc_o ampersand -2; pos @MMK_L_uc_o fiveinferior -2; pos @MMK_L_uc_o fivesuperior -2; pos @MMK_L_uc_o fourinferior -13; pos @MMK_L_uc_o foursuperior 16; pos @MMK_L_uc_o ninesuperior -12; pos @MMK_L_uc_o oneinferior -3; pos @MMK_L_uc_o onesuperior -10; pos @MMK_L_uc_o question -14; pos @MMK_L_uc_o seveninferior 18; pos @MMK_L_uc_o sevensuperior -22; pos @MMK_L_uc_o sixinferior -2; pos @MMK_L_uc_o slash -10; pos @MMK_L_uc_o threeinferior -2; pos @MMK_L_uc_o threesuperior -5; pos @MMK_L_uc_o trademark -17; pos @MMK_L_uc_o twoinferior -3; pos @MMK_L_uc_o underscore -60; pos @MMK_L_uc_o v 10; pos @MMK_L_uc_ohorn @MMK_R_inp_foot -1; pos @MMK_L_uc_ohorn @MMK_R_inp_hyph 20; pos @MMK_L_uc_ohorn @MMK_R_inp_period -35; pos @MMK_L_uc_ohorn @MMK_R_inp_quotel -2; pos @MMK_L_uc_ohorn @MMK_R_inp_quoter -2; pos @MMK_L_uc_ohorn @MMK_R_uc_a -22; pos @MMK_L_uc_ohorn @MMK_R_uc_j -16; pos @MMK_L_uc_ohorn @MMK_R_uc_o 8; pos @MMK_L_uc_ohorn @MMK_R_uc_y -1; pos @MMK_L_uc_ohorn @MMK_R_uc_z -11; pos @MMK_L_uc_ohorn X -11; pos @MMK_L_uc_ohorn ampersand -2; pos @MMK_L_uc_ohorn fiveinferior -2; pos @MMK_L_uc_ohorn fivesuperior -3; pos @MMK_L_uc_ohorn fourinferior -13; pos @MMK_L_uc_ohorn ninesuperior -4; pos @MMK_L_uc_ohorn oneinferior -3; pos @MMK_L_uc_ohorn registered -1; pos @MMK_L_uc_ohorn seveninferior 18; pos @MMK_L_uc_ohorn sevensuperior -4; pos @MMK_L_uc_ohorn sixinferior -2; pos @MMK_L_uc_ohorn slash -10; pos @MMK_L_uc_ohorn threeinferior -2; pos @MMK_L_uc_ohorn trademark -2; pos @MMK_L_uc_ohorn twoinferior -3; pos @MMK_L_uc_ohorn underscore -60; pos @MMK_L_uc_r @MMK_R_inp_foot -30; pos @MMK_L_uc_r @MMK_R_inp_guill -20; pos @MMK_L_uc_r @MMK_R_inp_guilr -10; pos @MMK_L_uc_r @MMK_R_inp_hyph -25; pos @MMK_L_uc_r @MMK_R_inp_period 21; pos @MMK_L_uc_r @MMK_R_inp_quotel -33; pos @MMK_L_uc_r @MMK_R_inp_quoter -33; pos @MMK_L_uc_r @MMK_R_lc_d -17; pos @MMK_L_uc_r @MMK_R_lc_g -14; pos @MMK_L_uc_r @MMK_R_lc_o -17; pos @MMK_L_uc_r @MMK_R_lc_t -10; pos @MMK_L_uc_r @MMK_R_lc_u -6; pos @MMK_L_uc_r @MMK_R_lc_w -9; pos @MMK_L_uc_r @MMK_R_lc_y -4; pos @MMK_L_uc_r @MMK_R_uc_a 10; pos @MMK_L_uc_r @MMK_R_uc_j 26; pos @MMK_L_uc_r @MMK_R_uc_o -13; pos @MMK_L_uc_r @MMK_R_uc_t -24; pos @MMK_L_uc_r @MMK_R_uc_u -13; pos @MMK_L_uc_r @MMK_R_uc_w -23; pos @MMK_L_uc_r @MMK_R_uc_y -36; pos @MMK_L_uc_r V -27; pos @MMK_L_uc_r ampersand -14; pos @MMK_L_uc_r at -22; pos @MMK_L_uc_r eightinferior 4; pos @MMK_L_uc_r eightsuperior -19; pos @MMK_L_uc_r fiveinferior 10; pos @MMK_L_uc_r fivesuperior -20; pos @MMK_L_uc_r fourinferior 25; pos @MMK_L_uc_r foursuperior -14; pos @MMK_L_uc_r nineinferior -30; pos @MMK_L_uc_r ninesuperior -17; pos @MMK_L_uc_r oneinferior 10; pos @MMK_L_uc_r onesuperior -26; pos @MMK_L_uc_r question -24; pos @MMK_L_uc_r registered -4; pos @MMK_L_uc_r seveninferior -20; pos @MMK_L_uc_r sevensuperior -27; pos @MMK_L_uc_r sixinferior -6; pos @MMK_L_uc_r sixsuperior -17; pos @MMK_L_uc_r slash 10; pos @MMK_L_uc_r threeinferior 25; pos @MMK_L_uc_r threesuperior -24; pos @MMK_L_uc_r trademark -32; pos @MMK_L_uc_r twoinferior 20; pos @MMK_L_uc_r twosuperior -24; pos @MMK_L_uc_r underscore -2; pos @MMK_L_uc_r v -5; pos @MMK_L_uc_r zeroinferior 20; pos @MMK_L_uc_r zerosuperior -17; pos @MMK_L_uc_s @MMK_R_inp_guill 20; pos @MMK_L_uc_s @MMK_R_inp_hyph 10; pos @MMK_L_uc_s @MMK_R_inp_period -4; pos @MMK_L_uc_s @MMK_R_lc_g -5; pos @MMK_L_uc_s @MMK_R_lc_n -2; pos @MMK_L_uc_s @MMK_R_lc_w -1; pos @MMK_L_uc_s @MMK_R_lc_z -10; pos @MMK_L_uc_s @MMK_R_uc_a -12; pos @MMK_L_uc_s @MMK_R_uc_j -1; pos @MMK_L_uc_s @MMK_R_uc_s -6; pos @MMK_L_uc_s @MMK_R_uc_t -13; pos @MMK_L_uc_s @MMK_R_uc_w -9; pos @MMK_L_uc_s @MMK_R_uc_y -11; pos @MMK_L_uc_s @MMK_R_uc_z -2; pos @MMK_L_uc_s V -5; pos @MMK_L_uc_s ampersand -10; pos @MMK_L_uc_s eightsuperior -2; pos @MMK_L_uc_s fiveinferior -2; pos @MMK_L_uc_s fivesuperior -2; pos @MMK_L_uc_s foursuperior -2; pos @MMK_L_uc_s ninesuperior -1; pos @MMK_L_uc_s oneinferior -4; pos @MMK_L_uc_s onesuperior -2; pos @MMK_L_uc_s p -5; pos @MMK_L_uc_s parenright -10; pos @MMK_L_uc_s registered -3; pos @MMK_L_uc_s sevensuperior -2; pos @MMK_L_uc_s sixinferior 1; pos @MMK_L_uc_s sixsuperior -2; pos @MMK_L_uc_s slash -10; pos @MMK_L_uc_s threeinferior -1; pos @MMK_L_uc_s threesuperior -2; pos @MMK_L_uc_s twoinferior -2; pos @MMK_L_uc_s twosuperior -3; pos @MMK_L_uc_s underscore -44; pos @MMK_L_uc_s x -4; pos @MMK_L_uc_s zeroinferior 10; pos @MMK_L_uc_t @MMK_R_inp_colon -10; pos @MMK_L_uc_t @MMK_R_inp_foot 30; pos @MMK_L_uc_t @MMK_R_inp_guill -42; pos @MMK_L_uc_t @MMK_R_inp_guilr -30; pos @MMK_L_uc_t @MMK_R_inp_hyph -50; pos @MMK_L_uc_t @MMK_R_inp_period -80; pos @MMK_L_uc_t @MMK_R_inp_quotel 22; pos @MMK_L_uc_t @MMK_R_inp_quoter 20; pos @MMK_L_uc_t @MMK_R_lc_a -40; pos @MMK_L_uc_t @MMK_R_lc_d -45; pos @MMK_L_uc_t @MMK_R_lc_f -10; pos @MMK_L_uc_t @MMK_R_lc_g -50; pos @MMK_L_uc_t @MMK_R_lc_h 2; pos @MMK_L_uc_t @MMK_R_lc_n -14; pos @MMK_L_uc_t @MMK_R_lc_o -45; pos @MMK_L_uc_t @MMK_R_lc_s -30; pos @MMK_L_uc_t @MMK_R_lc_u -18; pos @MMK_L_uc_t @MMK_R_lc_y 6; pos @MMK_L_uc_t @MMK_R_lc_z -24; pos @MMK_L_uc_t @MMK_R_uc_a -56; pos @MMK_L_uc_t @MMK_R_uc_j -42; pos @MMK_L_uc_t @MMK_R_uc_o -11; pos @MMK_L_uc_t @MMK_R_uc_s -8; pos @MMK_L_uc_t @MMK_R_uc_t 22; pos @MMK_L_uc_t @MMK_R_uc_w 19; pos @MMK_L_uc_t @MMK_R_uc_y 14; pos @MMK_L_uc_t V 19; pos @MMK_L_uc_t X 16; pos @MMK_L_uc_t ampersand -28; pos @MMK_L_uc_t at -38; pos @MMK_L_uc_t b 4; pos @MMK_L_uc_t eightinferior -62; pos @MMK_L_uc_t eightsuperior 20; pos @MMK_L_uc_t fiveinferior -62; pos @MMK_L_uc_t fivesuperior 18; pos @MMK_L_uc_t fourinferior -70; pos @MMK_L_uc_t foursuperior 12; pos @MMK_L_uc_t nineinferior -62; pos @MMK_L_uc_t ninesuperior 22; pos @MMK_L_uc_t oneinferior -62; pos @MMK_L_uc_t onesuperior 25; pos @MMK_L_uc_t p -21; pos @MMK_L_uc_t parenright 20; pos @MMK_L_uc_t question 22; pos @MMK_L_uc_t questiondown -60; pos @MMK_L_uc_t registered 30; pos @MMK_L_uc_t seveninferior -52; pos @MMK_L_uc_t sevensuperior 30; pos @MMK_L_uc_t sixinferior -62; pos @MMK_L_uc_t sixsuperior 20; pos @MMK_L_uc_t slash -70; pos @MMK_L_uc_t threeinferior -62; pos @MMK_L_uc_t threesuperior 20; pos @MMK_L_uc_t trademark 25; pos @MMK_L_uc_t twoinferior -62; pos @MMK_L_uc_t twosuperior 20; pos @MMK_L_uc_t underscore -60; pos @MMK_L_uc_t v 6; pos @MMK_L_uc_t x -16; pos @MMK_L_uc_t zeroinferior -62; pos @MMK_L_uc_t zerosuperior 30; pos @MMK_L_uc_u @MMK_R_inp_foot 8; pos @MMK_L_uc_u @MMK_R_inp_guilr -10; pos @MMK_L_uc_u @MMK_R_inp_hyph -8; pos @MMK_L_uc_u @MMK_R_inp_period -50; pos @MMK_L_uc_u @MMK_R_lc_a -16; pos @MMK_L_uc_u @MMK_R_lc_d -20; pos @MMK_L_uc_u @MMK_R_lc_g -20; pos @MMK_L_uc_u @MMK_R_lc_o -20; pos @MMK_L_uc_u @MMK_R_lc_s -11; pos @MMK_L_uc_u @MMK_R_lc_t -1; pos @MMK_L_uc_u @MMK_R_lc_w -1; pos @MMK_L_uc_u @MMK_R_lc_z -8; pos @MMK_L_uc_u @MMK_R_uc_a -26; pos @MMK_L_uc_u @MMK_R_uc_j -26; pos @MMK_L_uc_u eightinferior -6; pos @MMK_L_uc_u fiveinferior -1; pos @MMK_L_uc_u fourinferior -7; pos @MMK_L_uc_u germandbls.alt01 -2; pos @MMK_L_uc_u nineinferior -4; pos @MMK_L_uc_u oneinferior -12; pos @MMK_L_uc_u seveninferior -8; pos @MMK_L_uc_u slash -30; pos @MMK_L_uc_u threeinferior -12; pos @MMK_L_uc_u trademark 2; pos @MMK_L_uc_u twoinferior -12; pos @MMK_L_uc_u underscore -50; pos @MMK_L_uc_u x -8; pos @MMK_L_uc_u zeroinferior -12; pos @MMK_L_uc_uhorn @MMK_R_inp_foot 10; pos @MMK_L_uc_uhorn @MMK_R_inp_hyph -12; pos @MMK_L_uc_uhorn @MMK_R_inp_parenth 6; pos @MMK_L_uc_uhorn @MMK_R_inp_period -54; pos @MMK_L_uc_uhorn @MMK_R_inp_quotel 15; pos @MMK_L_uc_uhorn @MMK_R_inp_quoter 19; pos @MMK_L_uc_uhorn @MMK_R_lc_g -15; pos @MMK_L_uc_uhorn @MMK_R_uc_a -20; pos @MMK_L_uc_uhorn @MMK_R_uc_j -21; pos @MMK_L_uc_uhorn @MMK_R_uc_t 19; pos @MMK_L_uc_uhorn @MMK_R_uc_w 16; pos @MMK_L_uc_uhorn @MMK_R_uc_y 14; pos @MMK_L_uc_uhorn V 16; pos @MMK_L_uc_uhorn ampersand -18; pos @MMK_L_uc_uhorn at -4; pos @MMK_L_uc_uhorn eightinferior -10; pos @MMK_L_uc_uhorn eightsuperior 3; pos @MMK_L_uc_uhorn fiveinferior -5; pos @MMK_L_uc_uhorn fivesuperior 10; pos @MMK_L_uc_uhorn fourinferior -12; pos @MMK_L_uc_uhorn nineinferior -8; pos @MMK_L_uc_uhorn ninesuperior 11; pos @MMK_L_uc_uhorn oneinferior -16; pos @MMK_L_uc_uhorn onesuperior 10; pos @MMK_L_uc_uhorn parenright 44; pos @MMK_L_uc_uhorn seveninferior -12; pos @MMK_L_uc_uhorn sevensuperior 22; pos @MMK_L_uc_uhorn sixinferior -4; pos @MMK_L_uc_uhorn slash -34; pos @MMK_L_uc_uhorn threeinferior -16; pos @MMK_L_uc_uhorn threesuperior 12; pos @MMK_L_uc_uhorn trademark 34; pos @MMK_L_uc_uhorn twoinferior -16; pos @MMK_L_uc_uhorn twosuperior 10; pos @MMK_L_uc_uhorn underscore -56; pos @MMK_L_uc_uhorn zeroinferior -16; pos @MMK_L_uc_uhorn zerosuperior 10; pos @MMK_L_uc_w @MMK_R_inp_colon -10; pos @MMK_L_uc_w @MMK_R_inp_foot 20; pos @MMK_L_uc_w @MMK_R_inp_guill -20; pos @MMK_L_uc_w @MMK_R_inp_guilr -22; pos @MMK_L_uc_w @MMK_R_inp_hyph -25; pos @MMK_L_uc_w @MMK_R_inp_period -52; pos @MMK_L_uc_w @MMK_R_inp_quotel 20; pos @MMK_L_uc_w @MMK_R_inp_quoter 21; pos @MMK_L_uc_w @MMK_R_lc_a -57; pos @MMK_L_uc_w @MMK_R_lc_d -40; pos @MMK_L_uc_w @MMK_R_lc_f -20; pos @MMK_L_uc_w @MMK_R_lc_g -45; pos @MMK_L_uc_w @MMK_R_lc_i -15; pos @MMK_L_uc_w @MMK_R_lc_j -15; pos @MMK_L_uc_w @MMK_R_lc_n -30; pos @MMK_L_uc_w @MMK_R_lc_o -45; pos @MMK_L_uc_w @MMK_R_lc_s -50; pos @MMK_L_uc_w @MMK_R_lc_t -10; pos @MMK_L_uc_w @MMK_R_lc_u -10; pos @MMK_L_uc_w @MMK_R_lc_w -5; pos @MMK_L_uc_w @MMK_R_lc_y -5; pos @MMK_L_uc_w @MMK_R_lc_z -35; pos @MMK_L_uc_w @MMK_R_uc_a -36; pos @MMK_L_uc_w @MMK_R_uc_j -32; pos @MMK_L_uc_w @MMK_R_uc_o -17; pos @MMK_L_uc_w @MMK_R_uc_s -5; pos @MMK_L_uc_w @MMK_R_uc_t 19; pos @MMK_L_uc_w @MMK_R_uc_w 10; pos @MMK_L_uc_w @MMK_R_uc_y 9; pos @MMK_L_uc_w V 10; pos @MMK_L_uc_w ampersand -26; pos @MMK_L_uc_w at -30; pos @MMK_L_uc_w b 2; pos @MMK_L_uc_w eightinferior -42; pos @MMK_L_uc_w eightsuperior 10; pos @MMK_L_uc_w exclamdown -16; pos @MMK_L_uc_w fiveinferior -44; pos @MMK_L_uc_w fivesuperior 18; pos @MMK_L_uc_w fourinferior -59; pos @MMK_L_uc_w foursuperior 15; pos @MMK_L_uc_w germandbls.alt01 -28; pos @MMK_L_uc_w nineinferior -45; pos @MMK_L_uc_w ninesuperior 20; pos @MMK_L_uc_w oneinferior -62; pos @MMK_L_uc_w onesuperior 28; pos @MMK_L_uc_w p -16; pos @MMK_L_uc_w parenright 20; pos @MMK_L_uc_w question 14; pos @MMK_L_uc_w questiondown -60; pos @MMK_L_uc_w registered 15; pos @MMK_L_uc_w seveninferior -32; pos @MMK_L_uc_w sevensuperior 30; pos @MMK_L_uc_w sixinferior -50; pos @MMK_L_uc_w sixsuperior 8; pos @MMK_L_uc_w slash -30; pos @MMK_L_uc_w threeinferior -57; pos @MMK_L_uc_w threesuperior 20; pos @MMK_L_uc_w trademark 28; pos @MMK_L_uc_w twoinferior -57; pos @MMK_L_uc_w twosuperior 20; pos @MMK_L_uc_w underscore -50; pos @MMK_L_uc_w v -5; pos @MMK_L_uc_w x -18; pos @MMK_L_uc_w zeroinferior -40; pos @MMK_L_uc_w zerosuperior 24; pos @MMK_L_uc_y @MMK_R_inp_colon -32; pos @MMK_L_uc_y @MMK_R_inp_foot 16; pos @MMK_L_uc_y @MMK_R_inp_guill -52; pos @MMK_L_uc_y @MMK_R_inp_guilr -42; pos @MMK_L_uc_y @MMK_R_inp_hyph -50; pos @MMK_L_uc_y @MMK_R_inp_period -60; pos @MMK_L_uc_y @MMK_R_inp_quotel 18; pos @MMK_L_uc_y @MMK_R_inp_quoter 18; pos @MMK_L_uc_y @MMK_R_lc_a -72; pos @MMK_L_uc_y @MMK_R_lc_d -67; pos @MMK_L_uc_y @MMK_R_lc_f -39; pos @MMK_L_uc_y @MMK_R_lc_g -77; pos @MMK_L_uc_y @MMK_R_lc_i -20; pos @MMK_L_uc_y @MMK_R_lc_j -20; pos @MMK_L_uc_y @MMK_R_lc_n -50; pos @MMK_L_uc_y @MMK_R_lc_o -74; pos @MMK_L_uc_y @MMK_R_lc_s -73; pos @MMK_L_uc_y @MMK_R_lc_t -22; pos @MMK_L_uc_y @MMK_R_lc_u -40; pos @MMK_L_uc_y @MMK_R_lc_w -23; pos @MMK_L_uc_y @MMK_R_lc_y -21; pos @MMK_L_uc_y @MMK_R_lc_z -40; pos @MMK_L_uc_y @MMK_R_uc_a -55; pos @MMK_L_uc_y @MMK_R_uc_j -44; pos @MMK_L_uc_y @MMK_R_uc_o -32; pos @MMK_L_uc_y @MMK_R_uc_s -22; pos @MMK_L_uc_y @MMK_R_uc_t 14; pos @MMK_L_uc_y @MMK_R_uc_w 9; pos @MMK_L_uc_y V 9; pos @MMK_L_uc_y ampersand -46; pos @MMK_L_uc_y at -60; pos @MMK_L_uc_y eightinferior -80; pos @MMK_L_uc_y exclamdown -32; pos @MMK_L_uc_y fiveinferior -80; pos @MMK_L_uc_y fourinferior -100; pos @MMK_L_uc_y foursuperior -10; pos @MMK_L_uc_y germandbls.alt01 -30; pos @MMK_L_uc_y nineinferior -80; pos @MMK_L_uc_y ninesuperior 2; pos @MMK_L_uc_y oneinferior -80; pos @MMK_L_uc_y onesuperior 16; pos @MMK_L_uc_y p -40; pos @MMK_L_uc_y parenright 18; pos @MMK_L_uc_y question 9; pos @MMK_L_uc_y questiondown -70; pos @MMK_L_uc_y registered 5; pos @MMK_L_uc_y seveninferior -60; pos @MMK_L_uc_y sevensuperior 18; pos @MMK_L_uc_y sixinferior -80; pos @MMK_L_uc_y slash -60; pos @MMK_L_uc_y threeinferior -80; pos @MMK_L_uc_y threesuperior 10; pos @MMK_L_uc_y trademark 26; pos @MMK_L_uc_y twoinferior -90; pos @MMK_L_uc_y twosuperior 10; pos @MMK_L_uc_y underscore -60; pos @MMK_L_uc_y v -25; pos @MMK_L_uc_y x -29; pos @MMK_L_uc_y zeroinferior -80; pos @MMK_L_uc_y zerosuperior 8; pos @MMK_L_uc_z @MMK_R_inp_foot -2; pos @MMK_L_uc_z @MMK_R_inp_guill -8; pos @MMK_L_uc_z @MMK_R_inp_guilr -12; pos @MMK_L_uc_z @MMK_R_inp_hyph -30; pos @MMK_L_uc_z @MMK_R_lc_a 2; pos @MMK_L_uc_z @MMK_R_lc_d -1; pos @MMK_L_uc_z @MMK_R_lc_o -5; pos @MMK_L_uc_z @MMK_R_lc_t -10; pos @MMK_L_uc_z @MMK_R_lc_u -5; pos @MMK_L_uc_z @MMK_R_lc_w -22; pos @MMK_L_uc_z @MMK_R_lc_y -5; pos @MMK_L_uc_z @MMK_R_lc_z -9; pos @MMK_L_uc_z @MMK_R_uc_o -16; pos @MMK_L_uc_z @MMK_R_uc_z -10; pos @MMK_L_uc_z ampersand -8; pos @MMK_L_uc_z at -28; pos @MMK_L_uc_z eightsuperior -18; pos @MMK_L_uc_z fivesuperior -7; pos @MMK_L_uc_z fourinferior 10; pos @MMK_L_uc_z foursuperior -12; pos @MMK_L_uc_z ninesuperior -10; pos @MMK_L_uc_z onesuperior 6; pos @MMK_L_uc_z registered -4; pos @MMK_L_uc_z seveninferior -10; pos @MMK_L_uc_z sixsuperior -12; pos @MMK_L_uc_z threesuperior -10; pos @MMK_L_uc_z trademark 8; pos @MMK_L_uc_z twosuperior -11; pos @MMK_L_uc_z underscore 15; pos @MMK_L_uc_z v -2; pos @MMK_L_uc_z zeroinferior 10; pos @MMK_L_uc_z zerosuperior -2; } kern; feature mark { # Created: Thu Aug 30 18:07:29 2018 # PS Name: IBMPlexSerif-Text # MM Inst: IBM Plex Serif Text # exported from FontLab @mGC_bottom_0_0 = [cedillacomb commabelowcomb dotbelowcomb]; @mGC_top_0_540 = [acutecomb breveacute brevecomb brevegrave brevehook brevetilde caroncomb circumflexacute circumflexbreve circumflexcomb circumflexgrave circumflexhook circumflextilde commaturnedtopcomb dieresisacute dieresiscaron dieresiscomb dieresisgrave dieresismacron dotaccentcomb gravecomb hookcomb hungarumlautcomb macroncomb ringcomb tildecomb]; @mGC_top_0_698 = [breveacute.case brevegrave.case brevehook.case brevetilde.case circumflexacute.case circumflexbreve.case circumflexgrave.case circumflexhook.case circumflextilde.case dieresisacute.case dieresiscaron.case dieresisgrave.case dieresismacron.case hookcomb.case]; markClass @mGC_bottom_0_0 @MC_bottom; markClass @mGC_top_0_540 @MC_top; markClass @mGC_top_0_698 @MC_top; markClass caronslovakcomb @MC_topright; markClass ogonekcomb @MC_bottomright; lookup MARK_BASE_bottom { @bGC_A_bottom = [A Y Aacute Abreve Acircumflex Adieresis Agrave Ahook Amacron Aring Aringacute Atilde Abreveacute Abrevegrave Abrevehook Abrevetilde Acircumflexacute Acircumflexgrave Acircumflexhook Acircumflextilde Yacute Ycircumflex Ydieresis Ygrave Yhook Ytilde uni0410 uni04D2 uni04D0 uni04AE]; @bGC_C_bottom = [C Cacute Ccaron Ccircumflex Cdotaccent uni0421]; @bGC_D_bottom = [D Dcaron]; @bGC_E_bottom = [E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Ehook Emacron Etilde Ecircumflexacute Ecircumflexgrave Ecircumflexhook Ecircumflextilde uni0415 uni0400 uni0401 uni04D6]; @bGC_G_bottom = [G Gbreve Gcircumflex Gdotaccent]; @bGC_H_bottom = [H Hcircumflex uni041D]; @bGC_I_bottom = [I P Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Ihook Imacron Itilde IJacute uni0420 uni04C0 uni0406 uni0407]; @bGC_J_bottom = [J Jacute Jcircumflex uni0408]; @bGC_L_bottom = [L Lacute Lcaron]; @bGC_M_bottom = [M uni041C]; @bGC_N_bottom = [N Nacute Ncaron Ntilde]; @bGC_O_bottom = [O Oacute Obreve Ocircumflex Odieresis Ograve Ohook Ohungarumlaut Omacron Otilde Ohorn Ohornacute Ohorngrave Ohornhook Ohorntilde Ocircumflexacute Ocircumflexgrave Ocircumflexhook Ocircumflextilde uni041E uni04E6]; @bGC_R_bottom = [R Racute Rcaron]; @bGC_S_bottom = [S Sacute Scaron Scircumflex uni0405]; @bGC_T_bottom = [T Tcaron uni0422]; @bGC_U_bottom = [U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhook Uhungarumlaut Umacron Uring Utilde Uhorn Uhornacute Uhorngrave Uhornhook Uhorntilde]; @bGC_W_bottom = [W Wacute Wcircumflex Wdieresis Wgrave]; @bGC_X_bottom = [X uni0425]; @bGC_Z_bottom = [Z Zacute Zcaron Zdotaccent]; @bGC_a.alt01_bottom = [a.alt01 e aacute.alt01 abreve.alt01 acircumflex.alt01 adieresis.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aring.alt01 aringacute.alt01 atilde.alt01 abreveacute.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflexacute.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 eacute ebreve ecaron ecircumflex edieresis edotaccent egrave ehook emacron etilde ecircumflexacute ecircumflexgrave ecircumflexhook ecircumflextilde uni0430.alt01 uni0435 uni04D3.alt01 uni04D1.alt01 uni0450 uni0451 uni04D7]; @bGC_a_bottom = [a aacute abreve acircumflex adieresis agrave ahook amacron aring aringacute atilde abreveacute abrevegrave abrevehook abrevetilde acircumflexacute acircumflexgrave acircumflexhook acircumflextilde uni0430 uni04D3 uni04D1]; @bGC_c_bottom = [c cacute ccaron ccircumflex cdotaccent uni0441]; @bGC_d_bottom = [d dcaron]; @bGC_h_bottom = [h k hcircumflex uni04BB]; @bGC_i_bottom = [i r racute rcaron uni0456]; @bGC_l_bottom = [l lacute lcaron]; @bGC_n_bottom = [n nacute ncaron ntilde]; @bGC_o_bottom = [o oacute obreve ocircumflex odieresis ograve ohook ohungarumlaut omacron otilde ohorn ohornacute ohorngrave ohornhook ohorntilde ocircumflexacute ocircumflexgrave ocircumflexhook ocircumflextilde uni043E uni04E7]; @bGC_s_bottom = [s sacute scaron scircumflex uni0455]; @bGC_t_bottom = [t tcaron]; @bGC_u_bottom = [u B uacute ubreve ucircumflex udieresis ugrave uhook uhungarumlaut umacron uring utilde uhorn uhornacute uhorngrave uhornhook uhorntilde uni0412]; @bGC_w_bottom = [w wacute wcircumflex wdieresis wgrave]; @bGC_x_bottom = [x uni0445]; @bGC_y_bottom = [y yacute ycircumflex ydieresis ygrave yhook ytilde uni0443 uni04EF uni04F1 uni04F3 uni045E]; @bGC_z_bottom = [z zacute zcaron zdotaccent]; pos base @bGC_A_bottom mark @MC_bottom; pos base @bGC_C_bottom mark @MC_bottom; pos base @bGC_D_bottom mark @MC_bottom; pos base @bGC_E_bottom mark @MC_bottom; pos base @bGC_G_bottom mark @MC_bottom; pos base @bGC_H_bottom mark @MC_bottom; pos base @bGC_I_bottom mark @MC_bottom; pos base @bGC_J_bottom mark @MC_bottom; pos base @bGC_L_bottom mark @MC_bottom; pos base @bGC_M_bottom mark @MC_bottom; pos base @bGC_N_bottom mark @MC_bottom; pos base @bGC_O_bottom mark @MC_bottom; pos base @bGC_R_bottom mark @MC_bottom; pos base @bGC_S_bottom mark @MC_bottom; pos base @bGC_T_bottom mark @MC_bottom; pos base @bGC_U_bottom mark @MC_bottom; pos base @bGC_W_bottom mark @MC_bottom; pos base @bGC_X_bottom mark @MC_bottom; pos base @bGC_Z_bottom mark @MC_bottom; pos base @bGC_a.alt01_bottom mark @MC_bottom; pos base @bGC_a_bottom mark @MC_bottom; pos base @bGC_c_bottom mark @MC_bottom; pos base @bGC_d_bottom mark @MC_bottom; pos base @bGC_h_bottom mark @MC_bottom; pos base @bGC_i_bottom mark @MC_bottom; pos base @bGC_l_bottom mark @MC_bottom; pos base @bGC_n_bottom mark @MC_bottom; pos base @bGC_o_bottom mark @MC_bottom; pos base @bGC_s_bottom mark @MC_bottom; pos base @bGC_t_bottom mark @MC_bottom; pos base @bGC_u_bottom mark @MC_bottom; pos base @bGC_w_bottom mark @MC_bottom; pos base @bGC_x_bottom mark @MC_bottom; pos base @bGC_y_bottom mark @MC_bottom; pos base @bGC_z_bottom mark @MC_bottom; pos base F mark @MC_bottom; pos base K mark @MC_bottom; pos base V mark @MC_bottom; pos base b mark @MC_bottom; pos base f mark @MC_bottom; pos base m mark @MC_bottom; pos base v mark @MC_bottom; } MARK_BASE_bottom; lookup MARK_BASE_bottomright { @bGC_A_bottomright = [A Aacute Abreve Acircumflex Adieresis Adotbelow Agrave Ahook Amacron Aring Aringacute Atilde Abreveacute Abrevedotbelow Abrevegrave Abrevehook Abrevetilde Acircumflexacute Acircumflexdotbelow Acircumflexgrave Acircumflexhook Acircumflextilde uni0410 uni04D2 uni04D0]; @bGC_E_bottomright = [E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Ehook Emacron Etilde Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave Ecircumflexhook Ecircumflextilde uni0415 uni0400 uni0401 uni04D6]; @bGC_I_bottomright = [I Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Ihook Imacron Itilde IJacute uni04C0 uni0406 uni0407]; @bGC_U_bottomright = [U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhook Uhungarumlaut Umacron Uring Utilde]; @bGC_a.alt01_bottomright = [a.alt01 aacute.alt01 abreve.alt01 acircumflex.alt01 adieresis.alt01 adotbelow.alt01 agrave.alt01 ahook.alt01 amacron.alt01 aring.alt01 aringacute.alt01 atilde.alt01 abreveacute.alt01 abrevedotbelow.alt01 abrevegrave.alt01 abrevehook.alt01 abrevetilde.alt01 acircumflexacute.alt01 acircumflexdotbelow.alt01 acircumflexgrave.alt01 acircumflexhook.alt01 acircumflextilde.alt01 uni0430.alt01 uni04D3.alt01 uni04D1.alt01]; @bGC_a_bottomright = [a aacute abreve acircumflex adieresis adotbelow agrave ahook amacron aring aringacute atilde abreveacute abrevedotbelow abrevegrave abrevehook abrevetilde acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde uni0430 uni04D3 uni04D1]; @bGC_e_bottomright = [e eacute ebreve ecaron ecircumflex edieresis edotaccent edotbelow egrave ehook emacron etilde ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook ecircumflextilde uni0435 uni0450 uni0451 uni04D7]; @bGC_i_bottomright = [i idotbelow uni0456]; @bGC_u_bottomright = [u uacute ubreve ucircumflex udieresis udotbelow ugrave uhook uhungarumlaut umacron uring utilde]; pos base @bGC_A_bottomright mark @MC_bottomright; pos base @bGC_E_bottomright mark @MC_bottomright; pos base @bGC_I_bottomright mark @MC_bottomright; pos base @bGC_U_bottomright mark @MC_bottomright; pos base @bGC_a.alt01_bottomright mark @MC_bottomright; pos base @bGC_a_bottomright mark @MC_bottomright; pos base @bGC_e_bottomright mark @MC_bottomright; pos base @bGC_i_bottomright mark @MC_bottomright; pos base @bGC_u_bottomright mark @MC_bottomright; } MARK_BASE_bottomright; lookup MARK_BASE_top { @bGC_AE_top = [AE uni04D4]; @bGC_A_top = [A Adotbelow uni0410]; @bGC_B_top = [B P uni0412 uni0420]; @bGC_C_top = [C uni0421]; @bGC_E_top = [E Edotbelow uni0415]; @bGC_G_top = [G Gcommaaccent]; @bGC_H_top = [H uni041D]; @bGC_I_top = [I L Idotbelow Lcaron Lcommaaccent uni04C0 uni0406]; @bGC_J_top = [J S Scommaaccent uni0405 uni0408]; @bGC_K_top = [K Kcommaaccent]; @bGC_M_top = [M uni041C]; @bGC_N_top = [N Ncommaaccent]; @bGC_O_top = [O Q Odotbelow Oslash Ohorn Ohorndotbelow uni041E]; @bGC_R_top = [R Rcommaaccent]; @bGC_T_top = [T Tcommaaccent Tcedilla uni0422]; @bGC_U_top = [U Udotbelow Uhorn Uhorndotbelow]; @bGC_X_top = [X uni0425]; @bGC_Y_top = [Y Ydotbelow uni04AE]; @bGC_a.alt01_top = [a.alt01 g.alt01 adotbelow.alt01 uni0430.alt01]; @bGC_a_top = [a adotbelow uni0430]; @bGC_ae_top = [ae uni044B uni04D5]; @bGC_c_top = [c uni0441]; @bGC_e_top = [e edotbelow uni0435]; @bGC_g_top = [g g.alt02 r rcommaaccent]; @bGC_h_top = [h uni04BB]; @bGC_l_top = [l lcaron lcommaaccent]; @bGC_n_top = [n ncommaaccent]; @bGC_o_top = [o odotbelow oslash ohorn ohorndotbelow uni043E]; @bGC_p_top = [p uni0440]; @bGC_s_top = [s scommaaccent uni0455]; @bGC_u_top = [u x udotbelow uhorn uhorndotbelow uni0445]; @bGC_v_top = [v y ydotbelow uni0443]; pos base @bGC_AE_top mark @MC_top; pos base @bGC_A_top mark @MC_top; pos base @bGC_B_top mark @MC_top; pos base @bGC_C_top mark @MC_top; pos base @bGC_E_top mark @MC_top; pos base @bGC_G_top mark @MC_top; pos base @bGC_H_top mark @MC_top; pos base @bGC_I_top mark @MC_top; pos base @bGC_J_top mark @MC_top; pos base @bGC_K_top mark @MC_top; pos base @bGC_M_top mark @MC_top; pos base @bGC_N_top mark @MC_top; pos base @bGC_O_top mark @MC_top; pos base @bGC_R_top mark @MC_top; pos base @bGC_T_top mark @MC_top; pos base @bGC_U_top mark @MC_top; pos base @bGC_X_top mark @MC_top; pos base @bGC_Y_top mark @MC_top; pos base @bGC_a.alt01_top mark @MC_top; pos base @bGC_a_top mark @MC_top; pos base @bGC_ae_top mark @MC_top; pos base @bGC_c_top mark @MC_top; pos base @bGC_e_top mark @MC_top; pos base @bGC_g_top mark @MC_top; pos base @bGC_h_top mark @MC_top; pos base @bGC_l_top mark @MC_top; pos base @bGC_n_top mark @MC_top; pos base @bGC_o_top mark @MC_top; pos base @bGC_p_top mark @MC_top; pos base @bGC_s_top mark @MC_top; pos base @bGC_u_top mark @MC_top; pos base @bGC_v_top mark @MC_top; pos base D mark @MC_top; pos base F mark @MC_top; pos base V mark @MC_top; pos base W mark @MC_top; pos base Z mark @MC_top; pos base dotlessi mark @MC_top; pos base dotlessj mark @MC_top; pos base m mark @MC_top; pos base q mark @MC_top; pos base uni0413 mark @MC_top; pos base uni0416 mark @MC_top; pos base uni0417 mark @MC_top; pos base uni0418 mark @MC_top; pos base uni041A mark @MC_top; pos base uni0423 mark @MC_top; pos base uni0427 mark @MC_top; pos base uni042B mark @MC_top; pos base uni0433 mark @MC_top; pos base uni0436 mark @MC_top; pos base uni0437 mark @MC_top; pos base uni0438 mark @MC_top; pos base uni043A mark @MC_top; pos base uni0447 mark @MC_top; pos base w mark @MC_top; pos base z mark @MC_top; } MARK_BASE_top; lookup MARK_BASE_topright { @bGC_L_topright = [L Lacute Lcommaaccent]; @bGC_l_topright = [l lacute lcommaaccent]; @bGC_t_topright = [t tcommaaccent tcedilla]; pos base @bGC_L_topright mark @MC_topright; pos base @bGC_l_topright mark @MC_topright; pos base @bGC_t_topright mark @MC_topright; pos base d mark @MC_topright; } MARK_BASE_topright; } mark; Untitled$??pv,8DJ}?5^I?2`26TCX`Pnh $*.notdefT .notdef$ċ@ċd (n<< .null CR|  space| C a[@:ԋRQrb}supllpqkԟ5=Ӌd~cs``ztkhrY|ʹL=OZ^weftƎ [)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[m%a+topbottomrightbottom a.alt01[=TmٯȋUfkӋd~bs_`{fAUlhvh^tKB5A-A5fwƍ0ȋ h*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Mef+topbottomrightȊbottom bN?{W<c8D;NjgF&JJm&TF=g>ˋBKt^}hqvfshsfq}ˠvf8ߍY Rg8gPg)80ZarZ;je~8-0a&Meɱ[4W4MT4WM]bbottom cR2Nkxj]pkhdmkkdmiRrc_tMg;<-ЋNjпtqjZZdIsr |F[4)0`dyAAQM.;.E@}baLzv.KnrDF]'gtop] g.alt01 hdGXnktywky܋|hAXO[=TmٮȋUfoLh,LJ2kj\vh^tKB8D3A5ڋwfh0 ƍƥh+cW<-aX8+gFg+E5F,J,^K^ypt}ZOrw#HrqO,Oa44WN.Oe&Me&MeFtop g.alt02hL5Utki[Tգ@XNiwViclLU_@s_mpsflvsv CI?2TXWWXSZgZS,edŋӋ۹XN3n}rahPvgS ՋåՋÓÃÃô۴Ջۃۃ۽ۊôʋÊ"h929FFXS;^sNmdt?4?^iMypȋ@9ćp|??7J$۳Um2)al#Imz %WhvDv[@T$"i$c@"ic&$"iclU\YBlԪs,,Rj%ع>])top hfҋD;**ҋYыTQvbjswgrҋY d8ߍA-ϋ Șp>DlǪ<g`EYDBVBJZ/ZZw`;je~Dvhtop-bbottomϊ i$;nlirrli(ҋ D;tҋYӋR < T;uPOqu)PuqePOq:Dt;je~ D?i!bottomrightbottom< j~hXXou|tȋD;388nlirrliNjRh Y –jh3?Q?C;je~N7ȧuoLfZѼvz6Svr%jGuPOqu)PuqePOq3j k<ҋD;HmYB$GYrNjh94ҋYh8ߌϋ Қm<DhOYrUG$ԋmY΋;0;je~DRkbottomϊn lǕҋD;ZҋYƋ8ߌ-. +ǕDZ;je~D2l)top-ztoprightbottom.V mҋ D9/͋XX)*ҋYыURvcksxfrҋYҋVRvbksxfrҋYRRd͋ Jz ŋŋŠDkë;h`DYDkë;g`EYD@W@I[%\VrZ3iX}/[[w_9je~ Dmtopzbottomz nfҋ D9/**ҋYыTQvbjswgrҋYdRߍ Oދ Șo>DlǪ<g`EYDBVBJZ/YZw`9je~ Dntopbottomފ o{jXihYtja{RiiRatUU2LieD'MMh&LE3e̋p6 i00ai0Jv0a0Ji0aJ/U+I"++"I"8otopbottom p*ҋD;0NjgF&JJm&TF=g[OB{yYˋBKt^}hqvfshsfq}Rf\f Șd\0y)0a8gPg)80ZarZ;je~D^&Meɱ[4W4MT4WMiptop  q*y{fAUO[=TmٯȋUf0ҋYjhvh^tKB5A-A5\fw0 X\D0cW<-aX8)gPg)E0y0j^44WT4Me&Me&Me\qtop rxҋ D9/_akjgqnjwcwkjxcwYZRt < kD0O׉q_z;MssG(ldO/f[t_9je~ Drtopbottom<2 s[HWG/ϋwaXNj‹Ʊ9R?>܋krϋ0GWRZVeei`zAGG(4vwp ×N/D/11FV28Am %rBu/Xq2B\ʚ|JV΋ +*oettoprightbottomj uN-;D;FIŋD;^~e9j{rjfqZzRߍ;ËNj Қg,(I//9D^;je~*Ol<gE;je~BVB̼Jpu+topÊbottomright⊠bottomNJ vhXtYDDLYXGhAh B}ՋGhLYҋҋtYvtopbottom w$hXoYD  <ً < DDYXh5! !5h! t9! a$U !!hDYҋ)  <= <) ҋoYwtop9bottom! xHċ(]+mXtYP22NLYR"[-oYvƋ 44ȋYLˋhË כuHLN44PYvX-o"[ċLYȋ"2 2ƋtY+m(]R7xtopÊbottom y~hVYmr{|vQ~XtYDDLYXgpo[eg\vhh ʘbh,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $hytopbottom zߙ>j#H0$c>z΋04f΋ =ߙ40H#z>$0΋j>ztopbottom A uuYOBOBY_S~Et܌%5׋ T _3BB3YWu$uW~A+topNbottomright5bottom׊  BՋA0AftRfaZrqtaNb^oDXXCp_C4ċKR4$RV$8uNj dWV=V66O1C:I-XXHDdYՋAC4 ^ [ ^[$!ca!cajBtopNJNbottomNJ CG>aʋ̋_mۋc;7EZCg]Mt7Z!ыumbLMX7j!Nwۙ :EE{O2JTxx>R{R&N]ۋc;M7$iQ ""CtopNbottom튋 D6ՋAы_444]84_EC$_Ջ a   yYՋACkyd}d0Mb ۋc;LE5gS. GtopNbottom񊋊 H<ՋAYAAYAՋYՋՋY כj<AAYAՋYՋՋYՋAHtopNbottomm IӗՋAYAՋYD 1ӗAՋYՋAaI+topDNbottomrightbottomD J<1CDiqwxr-YAt3(/g = b,1UHGHՋY.kfy~|_Rru(Gsm##aJtopNbottom= KHՋAYAZk=pYGfu ϋYϋT-%]ՋYa ͙tHA]TGYG fuϋpYًZk*ՋYՋAKtop Nbottom LߙՋAYAۋJj~Dʋ :ߙJ;ՋYՋAVL)topDNtoprightxbottomʊ MBՋASW2\2JYAՋYՋW GAW ՋYcM2 ͙sBcA AG AYAՋJ\2W2SYՋAlMtopMNbottom2 NՋAPAcYA9ՋYc)ƙ# WcA݋ՋcYՋPYՋA Ntop#Nbottom OխpXA[[AiXMp4VV4MiRE9^ыыY.77^9.Yh!č v\B\\,B,\\B,ROtopNbottom P6ՋA,./ &*3YC&RU&xNjD –i&-3`U@U]]JDgYՋAC&c[c[m|PtopNJNbottomD QDn`io}MQ,HgыыY.7>fF/*SPIntYnqխpXA[[AiXMp4VV4Mih!D VDˋp/Ww>#/m(>u>q\B\\,B,\\B,QtopN RՋA0/C:-A} mgkYEmalr xՋYC&QV&@ӿxϋ ϙ`A x 0 l)"Gm&/HR6\\N>aYՋAC&b\b\lRtopϊNbottomA SM<|O;aۋ]XLڋߋRKV,!żݦŋenۋY;H;EFMYWQyt*9]l>PS4kv!NwOPۣ ×}g7gVV.DA#cI]!bdۋY;T&oZQQ3A]]NG_ gg3Y3[Xa;aۋ0CmSStopNbottom TQ< ;??; :Y-ۋ DQ-: ۋ??ۋ <-TtopNbottomኋ UHD(KnAYA#%AcYA@rQC.hyȍ Ƌr f&LՋcYՋDbD[HbbaՋYՋ=U+topNbottomrightrbottom  VWY33_YWj+2茠 Ij_Y'??'YVtopNbottom犋 W$WY3--3aYW8*--*g<t} c$--8aY---YWtopNbottom} XHƋhaPYB+3H\YP_fƋYԋ0<΋Y\<͋ כxH\H<0BYPf_Ƌ\Y΋3+ԋYƋahPXtopNbottom͊ YI{[WY5225_YWZY׋ ŗZI0Z_Y22Y[{0YtopNbottom׊ Zߙ ŋ :?V ً܋J܋ʋ֋ ?ߙċJ:ً ?܋ ŋ ZtopʊNbottom֊ zero`«&}iTcbUkiN}4T&T4NkVMDDMMDDM%O p#h##2h2##h2V2232X0 zero.alt01xMDDMMDDM}MRbUkiN}4T&u"S«&RL%O D2232m5##2 R _ d_|5##h2X  zero.alt02«&}iTcbUkiN}4T&T4NkorottrooMDDMMDDM%O f#h##2h2##h2{XVv{1X{vcXVv2232Xe one͖=E=ze8ZFٌ 2͖F85e]E=X1 twoqrDMk[}kwpgfnniՠ &1_pA^KNQioO4ۋJb'b TbJU,ۋO4;?TuuC56PLpqKflyx@CXY!"ccKX2l threePZ=Ungowtk}׋<>>ԋӋDPiX|kwpgfnniաu`I_iqT_bSomq_Oc\g?IW-o'2$ –ʦƦ_'_>>E4808?'yyQ)>KLpqKflyx;CWd& &YY=U؋0UZ 55O^`wfwyYJpq%Fqpf>fLX3 four5ԋlcA&5+v5 ?5&c,lJԋMX4 five\@Vngowtk}ۋAE^Ne{qR ,ދxNjoT8TYf:GQ+k6 jq#qooA-2Uan]ދ r&m`+X+R 4+4USewewyYJpq%Fqp`>`LX5 six̿Q1Nk/!ܖ_J~#Q@5^L &Xh7LN4jV}kXggXtka}QiwiQat ɍG Dy)y``5>'VWq\52P=2=/".11g1Iz1g1I1gIX6` sevenfUedC3v +LdeX7 eighthR0LiƥpWcrƹޣs]IajrRc`Vppq_Nd^iBLW0oRыFEEF;NvN;~n^kk]woh~]q|q]hw(7K –ÐüüΐZ/Z::E97%8C-ttH1FF1H$$Ky9C69R=-!!]!O|!]!O%!]O. j  QajQ7  jQX8 nine̿˘ypgboVyi+ ŋeC$J*O/$!F:%}kXggXtka}QiwiQat%C >-P=2=/"5yy).``5B'5~11g1Iz1g1I1gIX9 ampersandhT1Khò|ldѡދ?LlnT[\KcgzRfCaY=Rm%sbdtwY=eVtfh-dI>ƪX^\ZRahMk Ҧm]mkC^xOFa'ཋ%¦ ޜΐΊƋƋҊҊΊƋѧPAʦǭZ8|`pL\p&aYӋd5~Qh:ER9%JrJSC33?MEVM,Y*NUDDE5j+`20gdI d_U..L'=4^!V[x& atX 5(U+/""R%#5Wx/cFJc^WQzdRZ\iN^qȦ^jAË`8 @@ V8.`BTA2ZӋukYK&X[YZMW#WM* -е[֜ ֚Ž͎͋ҋً͋يҊX v$yٓ͵u* * u*WiM ՟AwcjFifvpp@C::ChP33g[2029,9,A&6*6v(jA(^9.hh`(.hh@? hyphen=ٌ -5 softhyphenԋ??S com.type-invaders.name.final uni00AD com.type-invaders.name.production softhyphen ? endashMߋɌ K ? emdashcMcɌc cc B underscore)MNj4Ɍ 43_[ periodߙkhepphe 0ՒrJHnrJrnaJHn .[ ellipsisً??????rrJHnrJrnaJHn΋rJHnrJrnaJHn΋rJHnrJrnaJHn*& D colonٕ??ٕ*??X(#rJHnrJrnaJHn*rJHnrJrnaJHn:x commanicns{YpZf_u{Q @ŋK_HlrJrnaJLm0i_ ,H semicolonܕ??ٖ*??hBŋK_HlrJrnaJLm0i_rJHnrJrnaJHn ;H quotesingle ߋ+rRiwߋ bR7+'G quotedbl>ދ??J??2ӗbR7+cRR7+"~ quoteleftzkhŋhm^Ilfqpfdzw @zpIMnsc=5&J^>CEHl  ~ quoterightznjbnt{Xp[f_v{Q @zŋJ^HlrIpmaLMn3k]  K quotedbllefth??]??w\zpIMnsc=5&J^>CEHlpIMnsc=5&J^>CEHl L quotedblrighthዋ??]??x\zŋJ^HlrIpmaLMn3k]/cŋJ^HlrIpmaLMn3k]  quotesinglbasenjbnt{Xp[f_v{Q @ŋJ^HlrIpmaLMn3k]  K quotedblbaseh䋋??]??x\ŋJ^HlrIpmaLMn3k]/cŋJ^HlrIpmaLMn3k] N guilsinglleftVIm C CumƋ.l %z C CuVI[29 Q guilsinglright C CVI[VIƋ.l &VIVIum C C2: L guillemotleft拋??f??Bߙz C CuVI[(I C CuVI[M guillemotright狋??f??DߙVIVIum C C|mVIVIum C C exclamdown !khepphe: Y) H!rJHnrJrnaJHnYncn exclam !khepphe:YYncNw G!rJHnrJrnaJHn_Y)Y!' questiondownT(ުƋ8:)FHuPKË}tfkql\ThBwkheppheTzƴ T]2Lpr$Kqo-ft-wՔm;ZG GXӹ=PwbW(BjjCArJHnrJrnaJHn! question< ܏HSj]|kwpgfnni®ԟ(6]hCNV8l[Prkhepphe'< zrJHnrJrnaJHn? parenleft$._2D ^&& iblJ5^%tO?O%5loi܋.8 Jۓ.BK-BB-f?E?H( parenright t^Jbp1 &77^&D 21_p܋.8> FՒ.f?E?&BK-BBK-H)] bracketleftcZ  Zc[ 'c  c"[_ bracketright2  cc[% (ccZ  "] braceleftf__`R_ķZ'sy_mibuuui_sZ&[Íً g6_'LXOX &46ni&3`mQS3`m64iN{ braceright`2tcmy'\e__S_R__e`\_&[Íً d0n6&m&3`4in3ZʾVu XV'N}= slashˋKwދ #ˋK|/@ backslashˋKwދ #ˋK|\C fractionN͋NINwveË e͋NID Z percenttۋ;;7ۋ;;7@4֋֋&**4&@4֋֋&**4&(ZˋvNK&/ζ鶠vNwݲ t;q4;fqf4;۰qf0;q4;fqf4;۰qf6ZMZ66FMZZMF66F6ZMZ66FMZZMF66F*ˋvNK% perthousand8tۋ;;7ۋ;;7dۋ;;7@4֋֋&**4&@4֋֋&**4&ɋ@4֋֋&**4&wZˋvNK鶠vζ/Nw$ݼ ˙͍ЋЋ͵NJǤ.Dt;q4;fqf4;۰qf0;q4;fqf4;۰qfދ;q4;fqf4;۰qf6ZMZ66FMZZMF66F6ZMZ66FMZZMF66Fx6ZMZ66FMZZMF66FˋvNK0 ; barȋN͋ȋ ȋN9|] brokenbarqȋNȋN͋%ȋ &ȋNHȋN9 section/@5ktvwv}Ƌɹ]aK>;ÜA֋U]lhhoql|kzPM]\d[~yuCJUE?Sz_0@&6~]]Gxf_Y\e]~x/) E  Ǘ۾ۊŮžѮѡX/X4E4AArZ'W1z1CT:38k % l"biY|8RsqI5!5dN44EOAդ^j'WU1z1`:\'kޫl % `l"vw|cRsu)Iqr5!5dJh|=/;l0:`߉ru*l۪n:0ܶkjM paragraph/dI\qkqtsnw~0V1GeμYA! j5/ M \/^~@~gՋZZII 1%slszYRsv(FsnF2FZ<5EmRd copyrightz"+5/ΧȋUbtpotvsntXKIWPRJzxrgfnZzdȋb@$NM%`@@b$OMO$@`ZC1XӋӋY-88X1-Y+)pO2Ë ҍȋȲҽΦ"+)I& Mmq?^ Zkk_|G^vپxXbW[[>>FF; s  P s  8Z%%%%%%  registeredh%6@xoo^aMzw}wpiqCw=HťsaQhhQqa_sQjsjQ_qjbCUkӪlT?__k?UTClCj|}en"~9ޣ8  ݛōŰًώϠϠ؊%"ًzLn_qzb|ZJxs&w@x4355I353A5I5A353IA.j[b1b[[31bb13[[3mknmS2 trademarkRsk00nkso 1y_?(@(y_1o(yoP_c>cPood6- 6k1_((_1ko ks-@0>0-nskyodoƋ_>Ƌod"!; ordfeminine)VT?zqx~ztvxxsȋQWgpnzmnt]hy`Wcllqs,1 ċ)aQTPvl}[gb]l>Ye9`{αzeušyc8rޤn'Z2#_g6fLYs/vNCMӞkx ordmasculine0bb\\bQ_7_Qf@2֋֋)882)0/׋ _b3%q"3_*%q_"3%q_Mf8IJI88DJIIJD88D degree}gL^qʦp]KffqK^]Lpg{obssbxok{`rr`kxf#ȋ b}>BBB>>@BBBB@>>@ _MVB _ VM_V= primeN)eNw $2 N com.type-invaders.name.final uni2032 com.type-invaders.name.production prime I primedblA ?? J??&$)$3 Q com.type-invaders.name.final uni2033 com.type-invaders.name.production primedbl  asteriskH3yd(l_GQXzRo&ދVp"nHdG`HY[g;X{!k% kH.s9Gl`0Yq;{8Vνl9sy(qYz0R* dagger0}tWWtqvjghoo%o4Mq4q"jX74wGvLߌ} e0\vtqWjqWtM2%4g"64Kq4%oo'  daggerdbllqjgoo%o4oo%o4M""464q"jg74%P74ŋwGvLߌ qjqMT%4%4Mhq"jq" "64K4%oo4%oo1!  numbersignTE`F`ȋi`1`ɋi`SmFSh`N`1i`M1F1@Nwv`JÌ؋ T#ɋ`1i`ȋ`F`Mi`1`Nh`SmFS~1lF1#` asciicircumc׋cXoSS ό~ *SSc?cX^ asciitilde06gRhnUmqe|t{pwz}wewrUlʌn S6 PS4lĕt'ii;|i;SktDR'iB|;S9|X~o plusӗ__\ɋ\_Q_\MŌɋ 5ӗɋ\__\M\_Q_X+> minushQhŌh hhX" plusminus__UɋU_Q_UM_hQhŋŌɋ F?ɋU__UMU_Q__hhXb multiplyӗ99999999b9999bb999900 >ӗ99999999b9999bb9999X divideTmjgrrjgmmjgrrjg0hQh= f@tNLot$NtodNLotNLot$NtodNLoV)hhXd equalyhQhhQh?Ōh '?hh,hhX=K approxequal??&??6 PS4lĕt'ii;|i;SktDR'iB|;S9|^ PS4lĕt'ii;|i;SktDR'iB|;S9|XH" notequal U?4,̋Q%Q48,QQ%J?Ōh ɗQ ̋,4JQ%Q8,4QX`"J less|:FbbFv: (bb:GX<N greaterbb:G:v: )::FbbX>h lessequalӗ:XM;;M:O:Q:Ō: 8ӗ ;;:XC::Xd"l greaterequalӗH;;:XC:XO:Q:Ō: 9ӗ :X:XM;;H::Xe"e periodcenteredߙ6khepphe؋ 1Ւ6rJHnrJrnaJHnD] bulletߙdEQIŋŋEXXIE4E <ՒdE \  V\] \V< V" l lozengeӗk֋kk@GGGÌ :ӗ֋kk@kыGGGX%N logicalnot\XMŌ\ɋ \ɋXQXo radicalӗ`)&?? oɋdN,`Nw 6ӗdNM o[?[?6&QX" integralhWVovjpˋ?ŋ_gtmjutp|K-?DI=@h^D vh)\)Kmψzp`|DYvtS"kgU))\TK-˩umGfYҽvw9Str"k+" infinityWbJ]ŗӋCCŋoXD``rD]XJobC1v}A5E^h/`YLW_WLY`1fsKÍ W2$:$ɹK$/ZUGUEE com.type-invaders.name.final uni212E com.type-invaders.name.production estimated  litre?<juztϋ39' E$4\BKr~mhV\dQt,gnzovp^jV Ћ lQ%-%_Z4i$fA N]~UUPYh8TɳiuRɱcp~/B/D>p(qm&""T]!N com.type-invaders.name.final uni2113 com.type-invaders.name.production litre  numerosign̿ՋAPAcYA9ՋYc*e__eUaGaU_C5ӋӋ,<<5,xR̋Q̋).׮ ՛cA݋ՋcYՋPYՋA9+s9b +sb9+ݴsbQ_2BMB22FMBBMF22FŐ̋c!S com.type-invaders.name.final uni2116 com.type-invaders.name.production numerosign  partialdiff~S4MkۯJs2wG#$-"ɋBMMB<=.=<ߋTNw< D/F0TvU+(t^6'4&(11VX1Um1V1UX1VUK" currency ;W('Yyy&'ۋڋaY&&S8byEyo&YY(Va<ʋPLLP?Q1Q? K ɗ ;aC&%gU6Y('}^La۵^}YY&g[Ug[>Ya*}e;RbeR;eRz cent̿X<Uoٶ‹'ևFXkihlnl|dp:tsn]afRqg$TX}P4N<H3}lĀύ –p‹A>~/ee@7z^}`Qzv2OpsH5:5SN'T%h5(h:h "=+b<6: + EuroJ#CeϋvgZokgckkkfE[El\Ss@^Y'Y/&܋wlfLQW=j#"5 j}G)G{?#UQUUGsScM3wMyaNzu.KnrCeEeQ=9""k  florin&TNovyvo|++E‹^fpidntpwcVQ?yTFWFr-(+&1V) ϙ&VR:RFFT0jugX{wBYvrI j`RREJp+W+p'fi3|{_YԽvw.Irm jY sterling/׋~sľܨwh[ojgdkkk}Wn@GCRY<dGW<t~lxUl_djxIdƿ#l/ љNj”‹‹‹ĉɋdIU(@R&m9Gh<w#W#VWzR}aL{v.KmqCcCcR:VV3;fXPYWOx.OgGLw dollar,* equulxŁ'#֧‹>DXkhdlkk}[iq*:6#)=TrNLN^[QzʓNL Wœ ۛȊȊǤηة9‹^`CR``+JyXbL{v.KmrDK>KPI T=^I?:I``O yds{YKmuDro`?`U6'cCWccXb]Q$! yenlJ???"=TY5/55bYTD)Y?'?Y?&Y + lJ-???)D‹bY5/Y‹="Y?'?Y?&- bahtȠՋA‹$saQiiqVbdXsqubQfdoJZ[Fqab$T.NV|ËTS 22㽠~l ȐăăŐĊķŹ9‹PF>F66N6>$/@"ֿRRHE!T$YՋAY_Z(_Z6$f`,$f`jY22?M com.type-invaders.name.final uni0E3F com.type-invaders.name.production baht ^ coloncurrency&g:;@$A:3~H]khenklth\ĒvpkR[ZIhb7Yyn{2YBkxq]}GUr\EQŠ΍L ƍƭNJ͊^9ʃa:WB62w+ZWn{hcM|s1LnqE<JX:Y:m}e~Y2k= 55AvI{uk|)O@vh`&k V com.type-invaders.name.final uni20A1 com.type-invaders.name.production coloncurrency  lira&zLľܨwh[ojgdkkk}Wn@GCRufxbYTq[q;Y9nvXmbflyId"#l/ ˋƔƎƋƋƋȉȭɋdIU(5O<;rJJbُV#2#VWzR}aL{v.KmqCcCcR:VV3;JuauYʋ'v͘k5iY.8gFL M com.type-invaders.name.final uni20A4 com.type-invaders.name.production lira h nairaՋS@֋@֋SAP,ZTAcYAS֋Y@֋Y@9,zTՋYc\X%U<+)Ƙ cATz,݋֋@֋@SՋcYՋTZ,PYՋS@Y֋@Y֋SAX\ <  N com.type-invaders.name.final uni20A6 com.type-invaders.name.production naira  rupee ^CO[v,TJՋYՋA0/KQ2Sw<FHŋwr|mVT֋ˋ_bqmkstov[bajld}z}qmepO-=̋TXJּIXm  כӛӒӒČċʵʋܐ KJkKa&JߦJp2lro]zCXtuQ l\MYxְeV?k«{,ftt^Ac&XXN@ YՋAYA̋T"Sk$̋e_!eZm N com.type-invaders.name.final uni20A8 com.type-invaders.name.production rupee  won̿D n([SWY3TDGT3aYW[SY'nY!N*JHJ*,E /@rn0g+< ̿H!5SaY^TGO-LD^TYS5YY ;,>Jn/m 0D L com.type-invaders.name.final uni20A9 com.type-invaders.name.production won  sheqel<Nߋ</O^YYODNj;YNj/B<7NNj h,NjY#nq!Nj1?1Z]DN1?]?O,#nq;O O com.type-invaders.name.final uni20AA com.type-invaders.name.production sheqel s dong~aFYoЩ}tn{)((:֋X@C‚c"r|slgr[{xlcvOJFI[IF1oUow  ŋ‹~"K4<"TC֋@/zK(X()c_ss=8QQ8#]\R0TjV0TjGooV M com.type-invaders.name.final uni20AB com.type-invaders.name.production dong   kipxՋ<ڋAYA^5pYGakXD*SыY͋T?ՋYU xA׋TIYESD҉kaϋpY^+ՋYՋ<XڋA L com.type-invaders.name.final uni20AD com.type-invaders.name.production kip ) tugrikTQ P  P < ;??; :b T P) T PIY,ۋ TQ-I  P  Ob: ۋ??ۋ < PT ) PT - O com.type-invaders.name.final uni20AE com.type-invaders.name.production tugrik  peso̿ՋAՋAՋAċ݋B@ދYAr~lp֋Y5xB!@<%YC~a~O[NWg /-%`(((վ@ŊcЍkԚ8b(I[C1YՋ)AYՋ AYՋAC~ *bcF# *ScoR[ M com.type-invaders.name.final uni20B1 com.type-invaders.name.production peso u guarani)E#Ҍ‹8ނ?Ujgdklku[l_ыYNfWxle[lMwe:TiYCe\Mt9\ :r{Ћ6lw;vŽa ٛɐɋȋȪȊŠȭ9‹T5!ȋыpOxbL{t/LnqCIKIGD)T; ff-#qPdyT|T g}y661%1JX P com.type-invaders.name.final uni20B2 com.type-invaders.name.production guarani  hryvniaP]?Um8.KFnX}mwokdklgt`Ndo|YzދY.'Yxwz]rWGЋxudjTC(#< ŋŋŋωc?H%oq"Hum+bv{-x֔g@ a4gQ.8Bb_bL7?U%HouHbj{r@@ a Xg4ŀkqY.'Yދq,Ԁgb_bLq P com.type-invaders.name.final uni20B4 com.type-invaders.name.production hryvnia  cedi0%FЋ‹}6ӀE[kgdmlkp^,vmeKPX com.type-invaders.name.final uni20B5 com.type-invaders.name.production cedi  tenge Jp3 ;?؋?; 4pY%N؋X؋"ۋ U J-p4 ۋ?؋?ۋ 3p-%؋؋ N com.type-invaders.name.final uni20B8 com.type-invaders.name.production tenge  rupeeindian~O?n mAfՋՋRVfY;~Le܋Y9O>;I} dhjY[̽t ۛf#Gn'+.L:5KqU;Yf b XHYՋ cYYA m9,r` T com.type-invaders.name.final uni20B9 com.type-invaders.name.production rupeeindian o liraturkishՋW,\,\UAYA#:T:9':T:9‹Ƌyotk\[Wb*?A_E{z[ {;~kiFop"TvНwyT61h::9::9#ՋYՋU,\T',\TWA` T com.type-invaders.name.final uni20BA com.type-invaders.name.production liraturkish  ruble~ՋAՋAՋA+00 &*5tYtYC(RU(3ӽz ֚n-tt5`T@T]]IDiYՋAYՋAYՋAC(cZcZo~ N com.type-invaders.name.final uni20BD com.type-invaders.name.production ruble  bitcoin}KՋAK‹$͋‹#ل5KiqVbdXsqubQfeqJ[\Gpb$TI$T..NU.'TZ'㽐}l~ Ɛ}9‹͋$‹KFBD66N6>$/@"ֿ99CN#T$IT$KYՋAYK.`['`[v'$d`,#$d`h~ P com.type-invaders.name.final uni20BF com.type-invaders.name.production bitcoin  fiҋ3DҋV`qkirqo}hhBA2@g<,tҋYҋ3t3ҋYebG1 əD3t3DYDt,<'8'JIen\|>UssO@@dQll594DVҋ3D{ flfҋ3Dҋ ZҋYҋw]nLDJMJV3ҋYeZL ə|VD3^G{R$DYDZ,x߃kVV6A<DVҋ3DE aacute??f??̫[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[ma03@K%E abreve??f?? [)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mg)#Z#vg*Yڛs{,Ysdl{)#٥=%J acircumflex??f??ޮ[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[m9).M.%H adieresis??f??H[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mvVTtv2VvtiVTtrvVTtv2VvtiVTt%I adotbelow????[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mSpuUTtu3UutiUTt%R com.type-invaders.name.final uni1EA1 com.type-invaders.name.production adotbelow E agrave??f??̫[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mm@K3`%E ahook????[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[myyLDrx9FW%N com.type-invaders.name.final uni1EA3 com.type-invaders.name.production ahook F amacron??f??̫[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mG% aogoneknIbbS``ztkhrY|i@:ԋRQrb}supllpqkԟ5=ӋdzZnhJtwqtz_t~ʹL=OZ^weftbďխ Қ΍κ΋ljʉҎIb_c`u{K]y$75ݻCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00UR2:5kʋ#jl*t%/֮@hi;-,[m%D aring??f??<[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mgQɡMuQtMuɡt@QMŢutgf V MZVS VZMZ%I aringacute??f??T[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mgQɡMuQuMuɡuGQMšuugfUG\UTU\G\R>%E atilde??f??6[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mSATi-nn&|qAtmH­nnU{cW|%K abreveacute????"[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mg) Z ve*[ڙs},[sdl{) ץ? 0B=G%T com.type-invaders.name.final uni1EAF com.type-invaders.name.production abreveacute b abrevedotbelow??f????T[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mg)#Z#vg*Yڛs{,Ysdl{)#٥=uUTtu3UutiUTt%W com.type-invaders.name.final uni1EB7 com.type-invaders.name.production abrevedotbelow K abrevegrave????"[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mg) Z ve*[ڙs},[sdl{) ץ?=GBe%T com.type-invaders.name.final uni1EB1 com.type-invaders.name.production abrevegrave J abrevehook???? J[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mg) Z ve*[ڙs},[sdl{) ץ?yLDrx9FW%S com.type-invaders.name.final uni1EB3 com.type-invaders.name.production abrevehook K abrevetilde????+[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mfSBTj-on&}qBtnH¬noU|dW}eQ) Z ve*[ڙs},[sdl{) ץ?%T com.type-invaders.name.final uni1EB5 com.type-invaders.name.production abrevetilde P acircumflexacute????[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[m9%.M..<?G%Y com.type-invaders.name.final uni1EA5 com.type-invaders.name.production acircumflexacute g acircumflexdotbelow??f????([)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[m9).M.uUTtu3UutiUTt%\ com.type-invaders.name.final uni1EAD com.type-invaders.name.production acircumflexdotbelow P acircumflexgrave????[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[m9%.M.?G com.type-invaders.name.final uni1EA7 com.type-invaders.name.production acircumflexgrave O acircumflexhook????[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[myLDrx8FW%.M.%X com.type-invaders.name.final uni1EA9 com.type-invaders.name.production acircumflexhook P acircumflextilde????`[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[miSCTi-nn&~qCtoH­nnU{eW~;Z(+M+%Y com.type-invaders.name.final uni1EAB com.type-invaders.name.production acircumflextilde K aacute.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me903@KfK abreve.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me?)#Z#vg*Yڛs{,Ysdl{)#٥=fP acircumflex.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Mea).M.fN adieresis.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me>vVTtv2VvtiVTtrvVTtv2VvtiVTtfO adotbelow.alt01????*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&MeEruUTtu3UutiUTtf^ com.type-invaders.name.final uni1EA1.alt01 com.type-invaders.name.production adotbelow.alt01 K agrave.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&MeE@K3`fK ahook.alt01????*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&MeQyLDrx9FWfZ com.type-invaders.name.final uni1EA3.alt01 com.type-invaders.name.production ahook.alt01 L amacron.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Meof aogonek.alt012bbS_`{fAUO[=TmٯȋUfkӋdZnhJtwqtz_thvh^tKB5A-A5ˁbfw)0 ˙ɍɛΪb_c`u{K]y$75ݻCkcW<-aX8)gPg)E0;4k̋#jl*t444WT4Me&Me&MefJ aring.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me?QɡMuQtMuɡt@QMŢutgf V MZVS VZMZfO aringacute.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me?QɡMuQuMuɡuGQMšuugfUG\UTU\G\R>fK atilde.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&MeSATi-nn&|qAtmH­nnU{cW|fQ abreveacute.alt01????֮*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me?) Z ve*[ڙs},[sdl{) ץ? 0B=Gf` com.type-invaders.name.final uni1EAF.alt01 com.type-invaders.name.production abreveacute.alt01 h abrevedotbelow.alt01??q????*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me?)#Z#vg*Yڛs{,Ysdl{)#٥=uUTtu3UutiUTtfc com.type-invaders.name.final uni1EB7.alt01 com.type-invaders.name.production abrevedotbelow.alt01 Q abrevegrave.alt01????֮*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me?) Z ve*[ڙs},[sdl{) ץ?=GBef` com.type-invaders.name.final uni1EB1.alt01 com.type-invaders.name.production abrevegrave.alt01 P abrevehook.alt01????*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me?) Z ve*[ڙs},[sdl{) ץ?yLDrx9FWf_ com.type-invaders.name.final uni1EB3.alt01 com.type-invaders.name.production abrevehook.alt01 Q abrevetilde.alt01????@*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&MedSBTj-on&}qBtnH¬noU|dW}eQ) Z ve*[ڙs},[sdl{) ץ?f` com.type-invaders.name.final uni1EB5.alt01 com.type-invaders.name.production abrevetilde.alt01 V acircumflexacute.alt01????*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Mea%.M..<?Gfe com.type-invaders.name.final uni1EA5.alt01 com.type-invaders.name.production acircumflexacute.alt01 m acircumflexdotbelow.alt01??q????ܯ*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Mea).M.7uUTtu3UutiUTtfh com.type-invaders.name.final uni1EAD.alt01 com.type-invaders.name.production acircumflexdotbelow.alt01 V acircumflexgrave.alt01????*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Mea%.M.?G com.type-invaders.name.final uni1EA7.alt01 com.type-invaders.name.production acircumflexgrave.alt01 U acircumflexhook.alt01????Ұ*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&MeyLDrx8FW%.M.fd com.type-invaders.name.final uni1EA9.alt01 com.type-invaders.name.production acircumflexhook.alt01 V acircumflextilde.alt01????*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&MegSCTi-nn&~qCtoH­nnU{eW~;Z(+M+fe com.type-invaders.name.final uni1EAB.alt01 com.type-invaders.name.production acircumflextilde.alt01  ae\?:ԋRQrb}supllpqkӟzofwNjeH0Umy:.Ћsql\\gKvagN\jyR+ShʹL=OY^oef~p_lLL4E͋tя@, NjЍЋǼ㋊ܼܓܓܓܓܓܸШԎ \O1ͱM7V; 7il{BBOii @%M_sQ#[Z DQ QuuQlt{|ۛM(e_%B{11KY11Q/֮@hh;$,[m$1KZ7k7F9top,H aeacute͋s????8\O1ͱM7V; 7il{BBOii @%M_sQ#[Z DQ QuuQlt{|ۛM(e_%B{11KY11Q/֮@hh;$,[m$1KZ7k7Fb03@K9E cacute??z??^[4)0`dyAAQM.;.E@}baLzv.KnrDF]wWNv~1swhc=uJ ccircumflex??z??p[4)0`dyAAQM.;.E@}baLzv.KnrDFkm6@˶hV3aMQHGs_6&4&(11VZ1Wm1V1WZ1VW:E eacute??s??Lb/,0]e{BBOqq&8)E0Ma1e1K#03@KE ebreve??s??b/,0]e{BBOqq&8)E0Ma1e1K#)#Z#vg*Yڛs{,Ysdl{)#٥=E ecaron??s??^b/,0]e{BBOqq&8)E0Ma1e1K#ɋ.o)owJ ecircumflex??s??^b/,0]e{BBOqq&8)E0Ma1e1K#).M.H edieresis??s??ȩb/,0]e{BBOqq&8)E0Ma1e1K#vVTtv2VvtiVTtrvVTtv2VvtiVTtI edotaccent??s??~b/,0]e{BBOqq&8)E0Ma1e1K#tSRst0StshSRsI edotbelow????~b/,0]e{BBOqq&8)E0Ma1e1K#tuUTtu3UutiUTtR com.type-invaders.name.final uni1EB9 com.type-invaders.name.production edotbelow E egrave??s??Lb/,0]e{BBOqq&8)E0Ma1e1K#@K3`E ehook????tb/,0]e{BBOqq&8)E0Ma1e1K#&yLDrx9FWN com.type-invaders.name.final uni1EBB com.type-invaders.name.production ehook F emacron??s??Lb/,0]e{BBOqq&8)E0Ma1e1K#|2 eogonekbbSltS2NkgJ2Urn:.ЋNjӾssj]vxima\tfnwqtz_txPLLI6Drb#Ջ ʘŋŪb_c`u{K]yJ ->hKr,0]e{BBOqq&8)Ekh#ae*t0Ma1e1K#E etilde??s??b/,0]e{BBOqq&8)E0Ma1e1K#TSATi-nn&|qAtmH­nnU{cW|O com.type-invaders.name.final uni1EBD com.type-invaders.name.production etilde P ecircumflexacute????vb/,0]e{BBOqq&8)E0Ma1e1K#%.M..<?GY com.type-invaders.name.final uni1EBF com.type-invaders.name.production ecircumflexacute g ecircumflexdotbelow??s????b/,0]e{BBOqq&8)E0Ma1e1K#).M.5uUTtu3UutiUTt\ com.type-invaders.name.final uni1EC7 com.type-invaders.name.production ecircumflexdotbelow P ecircumflexgrave????vb/,0]e{BBOqq&8)E0Ma1e1K#%.M.?G com.type-invaders.name.final uni1EC1 com.type-invaders.name.production ecircumflexgrave O ecircumflexhook????b/,0]e{BBOqq&8)E0Ma1e1K#yLDrx8FW%.M.X com.type-invaders.name.final uni1EC3 com.type-invaders.name.production ecircumflexhook P ecircumflextilde????b/,0]e{BBOqq&8)E0Ma1e1K#TeSCTi-nn&~qCtoH­nnU{eW~;Z(+M+Y com.type-invaders.name.final uni1EC5 com.type-invaders.name.production ecircumflextilde  schwa~W9Rm9FOCXwcfϣËdD'NNh'MD6dXʋE4d`э |:})E3HF/,e{BOBIrqq&11e0]MYN com.type-invaders.name.final uni0259 com.type-invaders.name.production schwa E gbreve??k??'xh929FFXS;^sNmdt?4?^iMypȋ@9ćp|??7J$۳Um2)al#Imz %WhvDv[@T$"i$c@"ic&$"iclU\YBlԪs,,Rj%ع>]&m)#Z#vg*Yڛs{,Ysdl{)#٥=)J gcircumflex??k??Lh929FFXS;^sNmdt?4?^iMypȋ@9ćp|??7J$۳Um2)al#Imz %WhvDv[@T$"i$c@"ic&$"iclU\YBlԪs,,Rj%ع>]m).M.)K gcommaaccent??k??%h929FFXS;^sNmdt?4?^iMypȋ@9ćp|??7J$۳Um2)al#Imz %WhvDv[@T$"i$c@"ic&$"iclU\YBlԪs,,Rj%ع>]&`vUQtw^LxI pRVSRr)#I gdotaccent??k??lh929FFXS;^sNmdt?4?^iMypȋ@9ćp|??7J$۳Um2)al#Imz %WhvDv[@T$"i$c@"ic&$"iclU\YBlԪs,,Rj%ع>]&tSRst0StshSRs)!K gbreve.alt01ڋ??q??h+cW<-aX8+gFg+E5F,J,^K^ypt}ZOrw#HrqO,Oa44WN.Oe&Me&Me?)#Z#vg*Yڛs{,Ysdl{)#٥=FP gcircumflex.alt01ڋ??q??Ҭh+cW<-aX8+gFg+E5F,J,^K^ypt}ZOrw#HrqO,Oa44WN.Oe&Me&Mea).M.FQ gcommaaccent.alt01ڋ??q??h+cW<-aX8+gFg+E5F,J,^K^ypt}ZOrw#HrqO,Oa44WN.Oe&Me&Me?vUQtw^LxI pRVSRrFO gdotaccent.alt01ڋ??q??h+cW<-aX8+gFg+E5F,J,^K^ypt}ZOrw#HrqO,Oa44WN.Oe&Me&Me?tSRst0StshSRsF hbarҋ6,MYME**ҋYыTQvbjswgrҋY dwA ҚbDlǪ<g`EYDBVBJZ/ZZw`EMM+x?6YDv'Z hcircumflex ??'F?? hDlǪ<g`EYDBVBJZ/ZZw`;je~Dg).M.v%p dotlessiǕҋ D;tҋYӋRߌ ; +ǕDt;je~ D?1top;G iacuteӋ????<ߙDt;je~ D03@K?G ibreveӋ????`&Dt;je~ D )#Z#vg*Yڛs{,Ysdl{)#٥=?-L icircumflexӋ????GDt;je~ D).M.?J idieresisӋ????xdDt;je~ DvVTtv2VvtiVTtrvVTtv2VvtiVTt?I idotbelowӋ??<??{d;uPOqu)PuqePOq:Dt;je~ D puUTtu3UutiUTt?R com.type-invaders.name.final uni1ECB com.type-invaders.name.production idotbelow G igraveӋ????:ߙDt;je~ D@K3`?F ihookӋ??;??QDt;je~ DyLDrx9FW?N com.type-invaders.name.final uni1EC9 com.type-invaders.name.production ihook H imacronӋ????:ߙDt;je~ Ds?+D iogonekwbbSQҋ D;tҋYnskgzouwqtz_t,nlirrlibR l ϙwb_c`u{K]y&9-Dt;je~ DYQ`h*tuPOqu)PuqePOqL/G itildeӋ????pRDt;je~ DKSATi-nn&|qAtmH­nnU{cW|?)A ij??Ӌ??;uPOqu)PuqePOq:Dt;je~ D3?Q?C;je~N7ȧuoLfZѼvz6Svr%jGuPOqu)PuqePOqr3r ijacute????Ӌ??K??Dt;je~ D03@K3?Q?C;je~N7ȧuoLfZѼvz6Svr%jB03@Kr dotlessj*hXXou|tȋD;388NjhRߍY8 X h3?Q?C;je~N7ȧuoLfZѼvz6Svr%j37Q com.type-invaders.name.final uni0237 com.type-invaders.name.production dotlessj top8G jacuteNj????i8h3?Q?C;je~N7ȧuoLfZѼvz6Svr%jB03@K3L jcircumflexNj????tJh3?Q?C;je~N7ȧuoLfZѼvz6Svr%j).M.35L kcommaaccent??ϋ??DhOYrUG$ԋmY΋;0;je~Dx p$Rrv.UvsiUQt{0wgR7 kgreenlandic<ҋ D;HmYB$GYrNjh94ҋYRh  Қm<DhOYrUG$ԋmY΋;0;je~ D`8Q lacuteƋ??'^?? <ߙDZ;je~Dt03@K2:E lcaronƋ??T??:ߙDZ;je~DnR02>L lcommaaccentƋ??.??].DZ;je~D p$Rrv.UvsiUQt{0wg2<D ldot????SDZ;je~DZtSRst0StshSRsl@ lslashҋ5oD;X3oҋY̋8ߌ ֚FD3o;je~5oXD8BE nacute????VDlǪ<g`EYDBVBJZ/YZw`9je~ D03@KDE ncaron????hDlǪ<g`EYDBVBJZ/YZw`9je~ Dɋ.o)owHL ncommaaccent??ދ??DlǪ<g`EYDBVBJZ/YZw`9je~ Dy p$Rrv.UvsiUQt{0wgFE ntilde????DlǪ<g`EYDBVBJZ/YZw`9je~ DSATi-nn&|qAtmH­nnU{cW|J napostrophe#ዋ????zŋJ^HlrIpmaLMn3k]vDlǪ<g`EYDBVBJZ/YZw`9je~ DI/ enghXXou|tȋ7TQvbjswgrҋYҋ D9/** 388hd͋RߎO  Қh3?Q?BVBJZ/YZw`9je~ DYDlǪ<g`N7ȧuoLfZѼvz6Svr%j}KE oacute̋??{??z400ai0Jv0a0Ji0aJ/U+I"++"I"03@K8E obreve̋??{??r00ai0Jv0a0Ji0aJ/U+I"++"I"$)#Z#vg*Yڛs{,Ysdl{)#٥=8OJ ocircumflex̋??{??F00ai0Jv0a0Ji0aJ/U+I"++"I").M.8H odieresis̋??{??00ai0Jv0a0Ji0aJ/U+I"++"I"vVTtv2VvtiVTtrvVTtv2VvtiVTt8I odotbelow̋????f00ai0Jv0a0Ji0aJ/U+I"++"I"$2uUTtu3UutiUTt8R com.type-invaders.name.final uni1ECD com.type-invaders.name.production odotbelow E ograve̋??{??x400ai0Jv0a0Ji0aJ/U+I"++"I"*@K3`8E ohook̋????\00ai0Jv0a0Ji0aJ/U+I"++"I"6yLDrx9FW8N com.type-invaders.name.final uni1ECF com.type-invaders.name.production ohook L ohungarumlaut̋??{??L00ai0Jv0a0Ji0aJ/U+I"++"I"17>KZ{17>K8QF omacron̋??{??x400ai0Jv0a0Ji0aJ/U+I"++"I" 8M oslashnkߋ^mQ?h+OMh&LE3eU7PTDjzXhhXtia{Rigm1z_̋p8 Ǘ~e#^"{+NudTD#{Z+"NIx ͎]&0JX_S{:6$_idIu&0`J8topK oslashacute̋??{??e#^"{+NudTD#{Z+"NIx ͎]&0JX_S{:6$_idIu&0`J(03@K8E otilde̋??{??00ai0Jv0a0Ji0aJ/U+I"++"I"dSATi-nn&|qAtmH­nnU{cW|8  ohornU2Liۋߋ8nhgfvhAMh&LE3eU{jXihYtja{RiiRat̋pt6Oߙ V+1jgtJ7;<‡p+"I"$00ai0Jv0a0Ji0aJ8topbottomJ ohornacute̋‹??{??n+1jgtJ7;<‡p+"I"$00ai0Jv0a0Ji0aJ)03@K8S com.type-invaders.name.final uni1EDB com.type-invaders.name.production ohornacute N ohorndotbelow̋‹????+1jgtJ7;<‡p+"I"$00ai0Jv0a0Ji0aJ/huUTtu3UutiUTt8V com.type-invaders.name.final uni1EE3 com.type-invaders.name.production ohorndotbelow J ohorngrave̋‹??{??n+1jgtJ7;<‡p+"I"$00ai0Jv0a0Ji0aJ5@K3`8S com.type-invaders.name.final uni1EDD com.type-invaders.name.production ohorngrave J ohornhook̋‹????+1jgtJ7;<‡p+"I"$00ai0Jv0a0Ji0aJAyLDrx9FW8R com.type-invaders.name.final uni1EDF com.type-invaders.name.production ohornhook J ohorntilde̋‹??{??ة+1jgtJ7;<‡p+"I"$00ai0Jv0a0Ji0aJfSBTh6ns1}vBtnF®mn\{c_}8S com.type-invaders.name.final uni1EE1 com.type-invaders.name.production ohorntilde P ocircumflexacute̋????^00ai0Jv0a0Ji0aJ/U+I"++"I"%.M..<?G8Y com.type-invaders.name.final uni1ED1 com.type-invaders.name.production ocircumflexacute g ocircumflexdotbelow̋??{????00ai0Jv0a0Ji0aJ/U+I"++"I").M.1uUTtu3UutiUTt8\ com.type-invaders.name.final uni1ED9 com.type-invaders.name.production ocircumflexdotbelow P ocircumflexgrave̋????^00ai0Jv0a0Ji0aJ/U+I"++"I"%.M.?G com.type-invaders.name.final uni1ED3 com.type-invaders.name.production ocircumflexgrave O ocircumflexhook̋????00ai0Jv0a0Ji0aJ/U+I"++"I"ZyLDrx8FW%.M.8X com.type-invaders.name.final uni1ED5 com.type-invaders.name.production ocircumflexhook P ocircumflextilde̋????ȩ00ai0Jv0a0Ji0aJ/U+I"++"I"dSCTi-nn&~qCtoH­nnU{eW~;Z(+M+8Y com.type-invaders.name.final uni1ED7 com.type-invaders.name.production ocircumflextilde o oeVU2LiɋUUËgK2Uqn9/ЋNjӾsqhZXeGs`L/nnU.WO{jXihYtja{RiiRatPLLI6D&pr6 Ș‹‹ҋҧ͓ͣ¨J%!ʭL!&i/,0]e{BBOqq'8BffDJ.gC+"I"$00ai0Jv0a0Ji0aJ&0Ma0e0K#SE racuteZ??k??|\0O׉q_z;MssG(ldO/f[t_9je~ Dj03@KUE rcaronZ??k??n0O׉q_z;MssG(ldO/f[t_9je~ DQɋ.o)owYL rcommaaccentZ??<??0O׉q_z;MssG(ldO/f[t_9je~ D p$Rrv.UvsiUQt{0wgWE sacute??K??N/D/11FV28Am %rB܋krϋ0GWRZVeei`zAGJ06<[jkuylkwbvwpbӴ ܜˋωϘ˚˦ˊľċbV8@uk;}|>/J)11FV28Am %rB'"GUγbi.r֤u"ck+tucZռuy7Pvs;;^| germandbls.alt01,hkSasmvx{t}ˋ$(L9e;ҋˣNj]dqmirtnv``OU4ZC-%Uh;OU5atp]|?WsuO j_==DHDY;e9Yʋ($Z$[%]^(u{cVtv4Ots..gR tbarTeU`9V3HV3Y^ezB~e ǗmBe>u^3Xq2B\ʚ|JV΋3VY9**okgE tcaron??Y??`*_>u/Xq2B\ʚ|JV΋ +*oR0eeL tcommaaccent??j??p_>u/Xq2B\ʚ|JV΋ +*o p$Rrv.UvsiUQt{0wgeU com.type-invaders.name.final uni021B com.type-invaders.name.production tcommaaccent H tcedilla??j??p_>u/Xq2B\ʚ|JV΋ +*o p$Rrv.UvsiUQt{0wgecQ com.type-invaders.name.final uni0163 com.type-invaders.name.production tcedilla  thorn*ҋD;NjgF&JJm&TF=g[OB{yYˋBKt^}hqvfshsfq}\8fˍX Șd\0y)0a8gPg)80ZarZ;je~D^&Meɱ[4W4MT4WM\E uacute????xD(I//9D^;je~*Ol<gE;je~BVB̼J)03@KpE ubreve????(I//9D^;je~*Ol<gE;je~BVB̼J/)#Z#vg*Yڛs{,Ysdl{)#٥=pmJ ucircumflex????V(I//9D^;je~*Ol<gE;je~BVB̼J).M.pH udieresis????(I//9D^;je~*Ol<gE;je~BVB̼JvVTtv2VvtiVTtrvVTtv2VvtiVTtpI udotbelow??Nj??v(I//9D^;je~*Ol<gE;je~BVB̼J32uUTtu3UutiUTtpR com.type-invaders.name.final uni1EE5 com.type-invaders.name.production udotbelow E ugrave????vD(I//9D^;je~*Ol<gE;je~BVB̼J5@K3`pE uhook??Ë??l(I//9D^;je~*Ol<gE;je~BVB̼JAyLDrx9FWpN com.type-invaders.name.final uni1EE7 com.type-invaders.name.production uhook L uhungarumlaut????\(I//9D^;je~*Ol<gE;je~BVB̼J17>KZ{17>KpqF umacron????vD(I//9D^;je~*Ol<gE;je~BVB̼J pk[ uogonekbbSu{rjfqZzl-;D;FIŋD;^~elqgayipwqtz_tRb;>՜ b_c`u{K]y;1D^;je~*Ol<gE;je~BVB̼JI//^g*tpsD uring????(I//9D^;je~*Ol<gE;je~BVB̼J/QɡMuQtMuɡt@QMŢutgf V MZVS VZMZpoE utilde????(I//9D^;je~*Ol<gE;je~BVB̼JfSBTh6ns1}vBtnF®mn\{c_}pi uhornx-;D;FIŋDAߋ<nhgfy0~e9j{rjfqZzRߎ;ËNj ܜ{R(I//9D0tJ 7%Ane~*Ol<gE;je~BVB̼JptopÊbottomNJJ uhornacute鋋????j(I//9D0tJ 7%Ane~*Ol<gE;je~BVB̼J)03@KpS com.type-invaders.name.final uni1EE9 com.type-invaders.name.production uhornacute N uhorndotbelow鋋??Nj??(I//9D0tJ 7%Ane~*Ol<gE;je~BVB̼J32uUTtu3UutiUTtpV com.type-invaders.name.final uni1EF1 com.type-invaders.name.production uhorndotbelow J uhorngrave鋋????j(I//9D0tJ 7%Ane~*Ol<gE;je~BVB̼J5@K3`pS com.type-invaders.name.final uni1EEB com.type-invaders.name.production uhorngrave J uhornhook鋋??Ë??(I//9D0tJ 7%Ane~*Ol<gE;je~BVB̼JAyLDrx9FWpR com.type-invaders.name.final uni1EED com.type-invaders.name.production uhornhook J uhorntilde鋋????ԯ(I//9D0tJ 7%Ane~*Ol<gE;je~BVB̼JoSATi-nn&|qAtmH­nnU{cW|pS com.type-invaders.name.final uni1EEF com.type-invaders.name.production uhorntilde F wacute?? ??r<U !!hDYҋ)  <= <) ҋoY03@KK wcircumflex?? ??~NU !!hDYҋ)  <= <) ҋoYz).M.uI wdieresis?? ??U !!hDYҋ)  <= <) ҋoY'vVTtv2VvtiVTtrvVTtv2VvtiVTtF wgrave?? ??p<U !!hDYҋ)  <= <) ҋoY@K3`E yacute????zh,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $h{03@KJ ycircumflex????h,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $h).M.wH ydieresis????h,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $h#vVTtv2VvtiVTtrvVTtv2VvtiVTtI ydotbelow????h,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $huUTtu3UutiUTtR com.type-invaders.name.final uni1EF5 com.type-invaders.name.production ydotbelow E ygrave????zh,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $h@K3`E yhook????h,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $hyLDrx9FWN com.type-invaders.name.final uni1EF7 com.type-invaders.name.production yhook E ytilde????h,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $hSATi-nn&|qAtmH­nnU{cW|O com.type-invaders.name.final uni1EF9 com.type-invaders.name.production ytilde E zacute??_??O40H#z>$0΋j>`03@KzE zcaron??_??Y40H#z>$0΋j>Gɋ.o)ow~I zdotaccent??_??e240H#z>$0΋j>ftSRst0StshSRs|E AacuteE????e$_3BB3YWu$uW~v03@KE AbreveE??ø??b_3BB3YWu$uW~|)#Z#vg*Yڛs{,Ysdl{)#٥=J AcircumflexE????p6_3BB3YWu$uW~|).M.H AdieresisE????_3BB3YWu$uW~vVTtv2VvtiVTtrvVTtv2VvtiVTtI AdotbelowE??׋??{V_3BB3YWu$uW~RuUTtu3UutiUTtR com.type-invaders.name.final uni1EA0 com.type-invaders.name.production Adotbelow E AgraveE????c$_3BB3YWu$uW~$v@K3`E AhookE????yL_3BB3YWu$uW~0jyLDrx9FWN com.type-invaders.name.final uni1EA2 com.type-invaders.name.production Ahook F AmacronE????c$_3BB3YWu$uW~ AogonekbdUZOBOBY_uuYlqffwpwwqtz_t>v~EbtՋ Қrb_c`u{O]{&-- Wu$uWY_3BB3YZ Xe.tt~D AringE??Ÿ??_3BB3YWu$uW~QɡMuQtMuɡt@QMŢutgf V MZVS VZMZI AringacuteE??Ƹ??_3BB3YWu$uW~QɡMuQuMuɡuGQMšuugfUG\UTU\G\R>E AtildeE????_3BB3YWu$uW~^SATi-nn&|qAtmH­nnU{cW|K AbreveacuteE????z_3BB3YWu$uW~q) Z ve*[ڙs},[sdl{) ץ? 0B=GT com.type-invaders.name.final uni1EAE com.type-invaders.name.production Abreveacute b AbrevedotbelowE??ø??׋??_3BB3YWu$uW~|)#Z#vg*Yڛs{,Ysdl{)#٥=:uUTtu3UutiUTtW com.type-invaders.name.final uni1EB6 com.type-invaders.name.production Abrevedotbelow K AbrevegraveE????z_3BB3YWu$uW~q) Z ve*[ڙs},[sdl{) ץ?=GBeT com.type-invaders.name.final uni1EB0 com.type-invaders.name.production Abrevegrave J AbrevehookE????_3BB3YWu$uW~q) Z ve*[ڙs},[sdl{) ץ?yLDrx9FWS com.type-invaders.name.final uni1EB2 com.type-invaders.name.production Abrevehook K AbrevetildeE????_3BB3YWu$uW~^.SBTj-on&}qBtnH¬noU|dW}eQ) Z ve*[ڙs},[sdl{) ץ?T com.type-invaders.name.final uni1EB4 com.type-invaders.name.production Abrevetilde P AcircumflexacuteE????N_3BB3YWu$uW~j%.M..<?GY com.type-invaders.name.final uni1EA4 com.type-invaders.name.production Acircumflexacute g AcircumflexdotbelowE????׋??_3BB3YWu$uW~|).M.NuUTtu3UutiUTt\ com.type-invaders.name.final uni1EAC com.type-invaders.name.production Acircumflexdotbelow P AcircumflexgraveE????~N_3BB3YWu$uW~j%.M.?G com.type-invaders.name.final uni1EA6 com.type-invaders.name.production Acircumflexgrave O AcircumflexhookE????v_3BB3YWu$uW~yLDrx8FW%.M.X com.type-invaders.name.final uni1EA8 com.type-invaders.name.production Acircumflexhook P AcircumflextildeE????_3BB3YWu$uW~^0SCTi-nn&~qCtoH­nnU{eW~;Z(+M+Y com.type-invaders.name.final uni1EAA com.type-invaders.name.production Acircumflextilde S AEl??; MʋbLMۋJՋBw1B׋YV|_\tVt۪ lV?BwBAYJ;M?ʋbL?M ۋ?Y׋W=_topNH AEacute\??͋??V?BwBAYJ;M?ʋbL?M ۋ?Y׋W=_v03@KE Cacute????REE{O2JTxx>R{R&N]ۋc;M7$iQ "">03@KE Ccaron??´??dEE{O2JTxx>R{R&N]ۋc;M7$iQ ""%ɋ.o)ow h Ccedilla&be`~tepL'Deʋ̋_mۋc;7EZCg]Mt7Z!ыundNRY=j[Zjkuylkwb!Nwb!ӟ ŗƉƘŠbV8@uk;}|{D%=zO2JTxx>R{R&N]ۋc;M7$iQ +.>]wWNv~1swhc=uJ Ccircumflex????dEE{O2JTxx>R{R&N]ۋc;M7$iQ "").M.I Cdotaccent????EE{O2JTxx>R{R&N]ۋc;M7$iQ ""DtSRst0StshSRs E Dcaron_?? ??{8   yYՋACky   yYՋ3WACky   yYՋ3WACky com.type-invaders.name.final uni1EB8 com.type-invaders.name.production Edotbelow E Egrave????o<J;M?ʋbL?M ۋ?YՋAX@K3`E Ehook????dJ;M?ʋbL?M ۋ?YՋALyLDrx9FWN com.type-invaders.name.final uni1EBA com.type-invaders.name.production Ehook F Emacron????p<J;M?ʋbL?M ۋ?YՋA!Q EogonekbbS{ՋA?; MʋbLMۋJntkgzotwqtz_tbA0۟ ޜb_c`u{K]y&9-;M?ʋbL?M ۋ?YՋAY{dk*tE Etilde????J;M?ʋbL?M ۋ?YՋAoSATi-nn&|qAtmH­nnU{cW|O com.type-invaders.name.final uni1EBC com.type-invaders.name.production Etilde P Ecircumflexacute????fJ;M?ʋbL?M ۋ?YՋA/L%.M..<?GY com.type-invaders.name.final uni1EBE com.type-invaders.name.production Ecircumflexacute g Ecircumflexdotbelow??????J;M?ʋbL?M ۋ?YՋA/^).M.1NuUTtu3UutiUTt\ com.type-invaders.name.final uni1EC6 com.type-invaders.name.production Ecircumflexdotbelow P Ecircumflexgrave????fJ;M?ʋbL?M ۋ?YՋA/L%.M.?G com.type-invaders.name.final uni1EC0 com.type-invaders.name.production Ecircumflexgrave O Ecircumflexhook????J;M?ʋbL?M ۋ?YՋAGyLDrx8FW%.M.X com.type-invaders.name.final uni1EC2 com.type-invaders.name.production Ecircumflexhook P Ecircumflextilde????еJ;M?ʋbL?M ۋ?YՋASCTi-nn&~qCtoH­nnU{eW~;Z(+M+Y com.type-invaders.name.final uni1EC4 com.type-invaders.name.production Ecircumflextilde  SchwaD?coT8T=BtObϿċ֋X-97_:.YGӫX7PkTύ :!!iH H/,!eFUyAy/la  QRvvC'VvVB2N com.type-invaders.name.final uni018F com.type-invaders.name.production Schwa E Gbrevep????ƮS6)ȋY .?&?EVxx>d}d0Mb ۋc;LE5gS. N)#Z#vg*Yڛs{,Ysdl{)#٥=J Gcircumflexp????S6)ȋY .?&?EVxx>d}d0Mb ۋc;LE5gS. ).M.L Gcommaaccentp????ήS6)ȋY .?&?EVxx>d}d0Mb ۋc;LE5gS.  p$Rrv.UvsiUQt{0wg"I Gdotaccentp????S6)ȋY .?&?EVxx>d}d0Mb ۋc;LE5gS. NtSRst0StshSRs  HbarՋR3AYA'AYA'W3RՋYՋՋYC AAYAR3ՋYՋ'ՋYՋ'3WRACR&J Hcircumflex????fAAYAՋYՋՋYՋAj^).M.$F Iacute????BAՋYՋA X03@KaF Ibreve????f2AՋYՋA^)#Z#vg*Yڛs{,Ysdl{)#٥=a,K Icircumflex????NAՋYՋA^).M.aI Idieresis????~pAՋYՋAtvVTtv2VvtiVTtrvVTtv2VvtiVTtaJ Idotaccent????Y&AՋYՋAqtSRst0StshSRsa0I Idotbelow??D??Y&AՋYՋApuUTtu3UutiUTtaR com.type-invaders.name.final uni1ECA com.type-invaders.name.production Idotbelow F Igrave????@AՋYՋAX@K3`aE Ihook??D??WAՋYՋA"LyLDrx9FWaN com.type-invaders.name.final uni1EC8 com.type-invaders.name.production Ihook G Imacron????@AՋYՋAxa* Iogonek`bbS^ՋAYAՋYoujgyntwqtz_tb#ՙ lBb_c`u{K]y&7-AՋYՋAY^_j*tj.F Itilde????v^AՋYՋAPoSATi-nn&|qAtmH­nnU{cW|a(A IJȋ????tAՋYՋA^MUHGHՋY.kfy~|_Rru(Gsm##a42p IJacuteȋ????????AՋYՋA X03@KUHGHՋY.kfy~|_Rru(Gsm##as03@K4E Jacuteg????sD1UHGHՋY.kfy~|_Rru(Gsm##as03@KJ Jcircumflexg????~V1UHGHՋY.kfy~|_Rru(Gsm##a).M.4L Kcommaaccenta????A]TGYG fuϋpYًZk*ՋYՋA p$Rrv.UvsiUQt{0wg6F Lacute????LJ;ՋYՋA X03@KV9E Lcaron??y??JJ;ՋYՋA~R0V=L Lcommaaccent??ʋ??mFJ;ՋYՋAa p$Rrv.UvsiUQt{0wgV;D Ldot????b2J;ՋYՋAtSRst0StshSRsV? LslashՋx1lAYA+U+WۋJlۙv ֚WJ;++WՋYՋ1lUxAXAE Nacute????h0cA݋ՋcYՋPYՋAX03@K CE Ncaron????rBcA݋ՋcYՋPYՋAbɋ.o)ow GL Ncommaaccent????vcA݋ՋcYՋPYՋA p$Rrv.UvsiUQt{0wg EE Ntilde????cA݋ՋcYՋPYՋA/oSATi-nn&|qAtmH­nnU{cW| # EnghXXou|ttՋYcՋAPAcYAhFEH*hHƘ КhVՋcYՋPYՋAYcA<L,ʫtkKfZѼvz6Svr%j JE Oacuteh??ɋ??4\B\\,B,\\B,RH03@KE Obreveh??ɋ??r\B\\,B,\\B,RN)#Z#vg*Yڛs{,Ysdl{)#٥=NJ Ocircumflexh??ɋ??F\B\\,B,\\B,R).M.H Odieresish??ɋ??\B\\,B,\\B,RvVTtv2VvtiVTtrvVTtv2VvtiVTtI Odotbelowh????f\B\\,B,\\B,RN2uUTtu3UutiUTtR com.type-invaders.name.final uni1ECC com.type-invaders.name.production Odotbelow E Ograveh??ɋ??4\B\\,B,\\B,RT@K3`E Ohookh????\\B\\,B,\\B,R`yLDrx9FWN com.type-invaders.name.final uni1ECE com.type-invaders.name.production Ohook L Ohungarumlauth??ɋ??L\B\\,B,\\B,R17>KZ{17>KPF Omacronh??ɋ??4\B\\,B,\\B,RL Oslash̿}]XыqrmQ4\07^9.YEX4fT8qGa[@iWMp4V9Q>+֭k`rph!č Ǘ~_CXy*0g)`T8CyP*0-)/k %R^^,W;x%W] [R^^@,topNK OslashacutehX??ɋ??_CXy*0g)`T8CyP*0-)/k %R^^,W;x%W] [R^^@,]03@KE Otildeh??ɋ??\B\\,B,\\B,RSATi-nn&|qAtmH­nnU{cW| OhornE9^ыߋ8nhgfV^17^9.YEխpXA[[AiXMp4VV4Mih!(ߞ V:WitJ70ʇlN\B\\,B,\\B,topNbottomJ Ohornacuteh[??ɋ??n:WitJ70ʇlN\B\\,B,\\B,]03@KS com.type-invaders.name.final uni1EDA com.type-invaders.name.production Ohornacute N Ohorndotbelowh[????:WitJ70ʇlN\B\\,B,\\B,kuUTtu3UutiUTtV com.type-invaders.name.final uni1EE2 com.type-invaders.name.production Ohorndotbelow J Ohorngraveh[??ɋ??n:WitJ70ʇlN\B\\,B,\\B, ]@K3`S com.type-invaders.name.final uni1EDC com.type-invaders.name.production Ohorngrave J Ohornhookh[????:WitJ70ʇlN\B\\,B,\\B,QyLDrx9FWR com.type-invaders.name.final uni1EDE com.type-invaders.name.production Ohornhook J Ohorntildeh[??ɋ??ة:WitJ70ʇlN\B\\,B,\\B,CtSBTh6ns1}vBtnF®mn\{c_}S com.type-invaders.name.final uni1EE0 com.type-invaders.name.production Ohorntilde P Ocircumflexacuteh????^\B\\,B,\\B,R%.M..<?GY com.type-invaders.name.final uni1ED0 com.type-invaders.name.production Ocircumflexacute g Ocircumflexdotbelowh??ɋ????\B\\,B,\\B,R).M.1NuUTtu3UutiUTt\ com.type-invaders.name.final uni1ED8 com.type-invaders.name.production Ocircumflexdotbelow P Ocircumflexgraveh????^\B\\,B,\\B,R%.M.?G com.type-invaders.name.final uni1ED2 com.type-invaders.name.production Ocircumflexgrave O Ocircumflexhookh????\B\\,B,\\B,RyLDrx8FW%.M.X com.type-invaders.name.final uni1ED4 com.type-invaders.name.production Ocircumflexhook P Ocircumflextildeh????ȩ\B\\,B,\\B,RPSCTi-nn&~qCtoH­nnU{eW~;Z(+M+Y com.type-invaders.name.final uni1ED6 com.type-invaders.name.production Ocircumflextilde d OEƾA 8^ Ջy?; MʋbLMۋJaW͝uIbW=iWMq4VV4Miċ!۪ ͙PJ;M?ʋbL?M ۋ?y-͇lYdEdd,e@e]RE Racute@????xA x 0 l)"Gm&/HR6\\N>aYՋAC&b\b\l03@KTE Rcaron@??š??A x 0 l)"Gm&/HR6\\N>aYՋAC&b\b\l!ɋ.o)owXL Rcommaaccent@????A x 0 l)"Gm&/HR6\\N>aYՋAC&b\b\l p$Rrv.UvsiUQt{0wgVE Sacute????}g7gVV.DA#cI]!bdۋY;T&oZQQ3A]]NG_ gg3Y3[Xa;aۋ0Cm03@KSZE Scaron??‚??}g7gVV.DA#cI]!bdۋY;T&oZQQ3A]]NG_ gg3Y3[Xa;aۋ0Cmɋ.o)owS` Scedillazbe`~tepXJ}O;aۋ]XLڋߋRKV,!żݦŋenۋY;H;EFMYWQyt*9_n?TT:iW[jkuylkwbvbNw!ĐPOۭ ܜЋԉԘКЦЊǵNJbV8@uk;}|mg=aVV.DA#cI]!bdۋY;T&oZQQ3A]]NG_ gg3Y3[Xa;aۋDoD]wWNv~1swhc=uS^J Scircumflex????}g7gVV.DA#cI]!bdۋY;T&oZQQ3A]]NG_ gg3Y3[Xa;aۋ0CmT).M.S\L Scommaaccent????}g7gVV.DA#cI]!bdۋY;T&oZQQ3A]]NG_ gg3Y3[Xa;aۋ0Cm p$Rrv.UvsiUQt{0wgS, Germandbls[=>iquwp~B?N>΋CՋA]E%$Vi>NX5rp ~[}b-bggG?EYՋAYC΋>Xȋ) [ i(T_u|{\Qqv&Ero/'/]S com.type-invaders.name.final uni1E9E com.type-invaders.name.production Germandbls  Tbar$Q((< ;??; :'V'Y-ۋ Ǘc$Q-'': ۋ??ۋ <(V(-fE Tcaron-??¬??`Q-: ۋ??ۋ <-bɋ.o)owdL Tcommaaccent-????vRQ-: ۋ??ۋ <- p$Rrv.UvsiUQt{0wgU com.type-invaders.name.final uni021A com.type-invaders.name.production Tcommaaccent H Tcedilla-????vRQ-: ۋ??ۋ <- p$Rrv.UvsiUQt{0wgbQ com.type-invaders.name.final uni0162 com.type-invaders.name.production Tcedilla  ThornNՋAYA"6,./ &*3ՋYCl&RU&6}x v>A3`U@U]]JDՋYՋACK&c[c[m|E Uacutey????w>LՋcYՋDbD[HbbaՋYՋ=U03@KE Ubrevey????|LՋcYՋDbD[HbbaՋYՋ=[)#Z#vg*Yڛs{,Ysdl{)#٥=lJ Ucircumflexy????PLՋcYՋDbD[HbbaՋYՋ=).M.H Udieresisy????LՋcYՋDbD[HbbaՋYՋ=vVTtv2VvtiVTtrvVTtv2VvtiVTtI Udotbelowy?? ??pLՋcYՋDbD[HbbaՋYՋ=K2uUTtu3UutiUTtR com.type-invaders.name.final uni1EE4 com.type-invaders.name.production Udotbelow E Ugravey????u>LՋcYՋDbD[HbbaՋYՋ=a@K3`E Uhooky????fLՋcYՋDbD[HbbaՋYՋ=myLDrx9FWN com.type-invaders.name.final uni1EE6 com.type-invaders.name.production Uhook L Uhungarumlauty????VLՋcYՋDbD[HbbaՋYՋ=17>KZ{17>KpF Umacrony????u>LՋcYՋDbD[HbbaՋYՋ=j UogonekgbbSe\D(KnAYA#%AcYA/g ^fmqd_uelwqtz_tyb Ƌ Șgb_c`u{K]yF( 6uZՋcYՋDbD[HbbaՋYՋ=V*]e*trD Uringy????LՋcYՋDbD[HbbaՋYՋ=[QɡMuQtMuɡt@QMŢutgf V MZVS VZMZnE Utildey????LՋcYՋDbD[HbbaՋYՋ=SATi-nn&|qAtmH­nnU{cW|h UhornfD(KnAYA#%A+ߋ8nhgfm@rQC.hy( ߖ u@LtJ7+YՋDbD[HbbaՋYՋ=topNbottom J Uhornacutey????XLtJ7+YՋDbD[HbbaՋYՋ=U03@KS com.type-invaders.name.final uni1EE8 com.type-invaders.name.production Uhornacute N Uhorndotbelowy?? ??LtJ7+YՋDbD[HbbaՋYՋ=K2uUTtu3UutiUTtV com.type-invaders.name.final uni1EF0 com.type-invaders.name.production Uhorndotbelow J Uhorngravey????XLtJ7+YՋDbD[HbbaՋYՋ=a@K3`S com.type-invaders.name.final uni1EEA com.type-invaders.name.production Uhorngrave J Uhornhooky????LtJ7+YՋDbD[HbbaՋYՋ=myLDrx9FWR com.type-invaders.name.final uni1EEC com.type-invaders.name.production Uhornhook J Uhorntildey????¬LtJ7+YՋDbD[HbbaՋYՋ=SBTh6ns1}vBtnF®mn\{c_}S com.type-invaders.name.final uni1EEE com.type-invaders.name.production Uhorntilde F Wacuteg‹??d??t<--8aY---Y@03@KK Wcircumflexg‹??d??N--8aY---Y).M.tI Wdieresisg‹??d??--8aY---YvVTtv2VvtiVTtrvVTtv2VvtiVTtF Wgraveg‹??d??r<--8aY---YL@K3`E Yacuteċ????k0I0Z_Y22Y[{03X03@KJ Ycircumflexċ????vBI0Z_Y22Y[{0^).M.vI Ydotbelowċ??׋??bI0Z_Y22Y[{0"puUTtu3UutiUTtR com.type-invaders.name.final uni1EF4 com.type-invaders.name.production Ydotbelow H Ydieresisċ????I0Z_Y22Y[{0tvVTtv2VvtiVTtrvVTtv2VvtiVTtxE Ygraveċ????i0I0Z_Y22Y[{0?X@K3`E Yhookċ????XI0Z_Y22Y[{0KLyLDrx9FWN com.type-invaders.name.final uni1EF6 com.type-invaders.name.production Yhook E Ytildeċ????I0Z_Y22Y[{0yoSATi-nn&|qAtmH­nnU{cW|O com.type-invaders.name.final uni1EF8 com.type-invaders.name.production Ytilde E Zacuteŋ????QċJ:ً ?܋ ŋ U03@KyE Zcaronŋ??•??[ċJ:ً ?܋ ŋ r_ɋ.o)ow}I Zdotaccentŋ????g2ċJ:ً ?܋ ŋ ntSRst0StshSRs{ mufRD;FIŋD;^~e9jzrkfp[{mdP{KR(RGv; ڜn>\bKV.wZH//9D^;je~*Ol<gE;je~qi DeltaǕuuXP݌ 1Ǖu$uP~" product *Ջ7(Y7ՋYՋՋY\ O \AAYAߋ(YߋA" summation~?U sT d~\Ԍ Q\~dU s ?~Bh"f Omegaۋ42!؋׋U1NTo2XECV_yVۋqZD^^DhZQq@d%fITbX!đ( ʘd!gGI]ScS%cDc%c!g!I;@9;4W>g1/1/1WTW2 %;&! piT`Ze,e0ϋV03d|^~evǍ) IYv03ϋVeeZ*)po2 uni0430??[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[m%08 uni0430.alt01??h*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Mef9 uni0431X6MhǕyprj~}viYggZgr~rtt7>ы  Oj)OF5fV̋NJJN6G$G6Vw(K Ėċ{0p0p05S`f<L]:RVkUّp[d |hG[o+}}'--cU-Lh-c-LU-cL*1  uni0432ҋ6D׋GRTNS^yl^nD2D8`aMbe"C̋h 3# d@"M"ɻp[OL ]1Z1YSYҋ6D;MgҋY`h  КqB`D>DYD6ҋLRYҋ6D< uni043D<ҋ6DYDFFDYD6ҋYҋOOҋY-h V כj<DOODYD6ҋYҋFFҋYҋ6D=2 uni043E̋??i00ai0Jv0a0Ji0aJ/U+I"++"I"8> uni043F ҋ6D΋YD6ҋYҋ22ҋY.h W N D22DYD6ҋ΋Yҋ6D?2 uni0440??d\0y)0a8gPg)80ZarZ;je~D^&Meɱ[4W4MT4WMi@2 uni0441??|F[4)0`dyAAQM.;.E@}baLzv.KnrDF>>>ӋQ\cZbbbb\o)ߎ  ‘Ѝвɍɨ\DZO2t}@HXH1@kOgure;je~Sug}@1HXH1kROZDzT"..`w."W+9gݯo29goo2ݯ9g2o2.`.Ww".`WD2 uni0445ˋ??uHLN44PYvX-o"[ċLYȋ"2 2ƋtY+m(]R7E uni0446‹ҋ6DYD3x3DYD3_92h O݋ W*݋_&3ҋYҋ3x3ҋYҋ6DYF uni0447Zؽ^tkBgU;=D|ZJ S]ċɱ&J|ZD7ҋY Li3Nj ٛuJ؋D7ҋ|Z̋&@]q>%pŰ|Zҋ222\>27:_^!lih i2!>5M5>>PM'ҋ-΋3D;l2ni.22niJ uni044B~ҋ6DYD& ܋7>>27:vҋ6DYD6ҋYo_^+lċh $, ͙n>5M5>>PMu&ҋYҋ6DvYD6ҋYҋ6Dώl2ni.22ni0Ktop, uni044C6ҋ6DYD&܋7>>27:_^!lh . `&>5M5>>PM&ҋYҋ6D;l2ni.22ni%L) uni044D^CYpirbg{֋YYFHUIZanH1΋ZɭfF(LJg&ID/fuw Μ ŗ|&vLv&3NcrngH1΋ gdB\BJYVYt5F5MHUvgw~\Pqw'JsrV8VQM4 uni044E'   OҋYҋ6DYDF ڬ " "#ʋSLLS:CC:ыph ; ͙vu4uNu'462+FҋYҋ6DYDO ul/ --gs - Q^-g-Qs - gQ=N  uni044FxC5ʣYD6ҋYҋ>6pX[dWjqd]܋peh ŗ~Xp>DYD6ҋ<**RG2k2YYAj44z44[jGX6z1l\m`Qna j(44z4j#ՋY؋UUG2+^F1*b^ BqiNlrN/f՝llBPwCGtopNs uni0417 S6Pmgnvtj~ILKJI;MZR;fۋNܴ͋p\JdE:5OtbQc]f@FU*n$NwN?̋ ¦`#`00NB8!YAՋYՋG(Fx mEuuwwXzMwj xLfubQGAYAՋY؋ Kur*6Q|k{]Oqt'Asn !_2 uni041C??sBcA AG AYAՋJ\2W2SYՋAl2 uni041D??j<AAYAՋYՋՋYՋA2 uni041Eh??v\B\\,B,\\B,R uni041F ՋACYAՋYՋՋY N AAYAՋCYՋA2 uni0420??i&-3`U@U]]JDgYՋAC&c[c[m| 2 uni0421??:EE{O2JTxx>R{R&N]ۋc;M7$iQ ""!2 uni0422-??DQ-: ۋ??ۋ <-" uni0423sOGiqwxrySY33dYSmmC@S%  ns44ËdY+XGYËy~j",՞nx9~{_Rru(Gsn`#topNc uni0424±ԋU% % BYAE% % U;ՋYL[<*B@G@BڋYڋ*<[ ( P A$7$vՋYԋEU$77v;BD((D<D(D[һ-D(D([<D(DD[S$2 uni0425<Ë??xH\H<0BYPf_Ƌ\Y΋3+ԋYƋahP% uni0426)ՋAYAЋAYAj3) W)4j"ՋYՋЋՋYՋAY& uni0427r(iy?xUO6Vs8AYA5\JcyԟAYAՋYi ʘwJ(AՋYՋ$fY|b>>dՋYՋ8rprHٰ/f-'topN uni0428<ՋAYCyCYCyCYAՋY!\ ͙j<!AՋYӋyӋYӋyӋYՋA( uni0429HՋAYCyCYCyCYAj4\ ҚsH4j#ՋYӋyӋYӋyӋYՋAY) uni042ABIՋ  ;?YA,$$$!$$ۋËPS  r2IۋebBbeeEBՋ?ۋ  AC  b \ b\* uni042B~ՋAYA$$$!$$΋νՋAYAՋYËPS/iLa Қn΋ebBbeeEBՋYՋAYAՋYՋA b \ b\+topaN uni042C6ՋAYA,$$$!$$ۋËPS v h&ۋebBbeeEBՋYՋAC  b \ b\t,2 uni042DR3Nlgnvtj~}ۯs\D[F9LYS;fۋN۳͋ȋ[/46`:.Z"%Nwۜ |  BWnj_;fۋ++\Ǻ}L}-HU\iiC'r_sxWJpr$ErpGF-b uni042EI!@`ՋYՋAYA ˋϋZ.66c@.ZGά"u^H]]Hj^Nu5V"V5Njy!ċ Қvm  "aՋYՋAYACH}}QH}H/}Q}/H}HQ/. uni042Fl΋e#1YAՋYՋ.S.J&VQLZZZL&=ӿZ ϙX.SAYAՋ`UU?@VVM~@Jtx+HJ&b\l/F uni04D3??f??H[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mvVTtv2VvtiVTtrvVTtv2VvtiVTt%F uni04D1??f?? R[)R285j^wCH8HNK DQ QuuQlt{|ۛM(e_.B{,,KV00U/֮@hi;-,[mg9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿T%L uni04D3.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me>vVTtv2VvtiVTtrvVTtv2VvtiVTtfL uni04D1.alt01??q??*E094j]wCkcW<-aX8)gPg)144WT4Me&Me&Me?9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿Tf3 uni04D5͋s?? \O1ͱM7V; 7il{BBOii @%M_sQ#[Z DQ QuuQlt{|ۛM(e_%B{11KY11Q/֮@hh;$,[m$1KZ7k7F9G uni0453??m??K03F'΋-0Yҋ6Dl03@KS~ uni0491ߙҋ7D݋)ދ^3Yi ދ :ߙ03^8)݋Zҋ7D uni0493ҋO:܋JD0-HFFYOYi ΋ љV0OFF'΋-0ZҋJ:Y܋OD0 uni0495')`SXPef%Yҋ7D0-HFϯڋA77]qKabUxo9Ƌ\wi <Ο Ԛf\݋*>@>ֻ.2.\ZG`qfaF'΋-0Zҋ7DY4q:%snrayp r2F uni0450??s??Lb/,0]e{BBOqq&8)E0Ma1e1K#@K3`PF uni0451??s??ȩb/,0]e{BBOqq&8)E0Ma1e1K#vVTtv2VvtiVTtrvVTtv2VvtiVTtQF uni04D7??s??Ҩb/,0]e{BBOqq&8)E0Ma1e1K#9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿T0 uni0454Q/Kiip΋1HLYI>.:{YVYt:*׋΋ghmrp^XiCwu1)  ŗ|XANrs+Pwq1gv~(vړi]FFTYY#B#H\1\h6΋1HZre*!H$TG uni04DD????+"ҋPDYDPҋ"V$=Dyu qfSVwqJAlpBdo-jDIҋZҋIDV od Epl#OqtSIpr$DXu} ^VvVTtv2VvtiVTtrvVTtv2VvtiVTt+G uni04C2????7"ҋPDYDPҋ"V$=Dyu qfSVwqJAlpBdo-jDIҋZҋIDV od Epl#OqtSIpr$DXu} ^V9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿T+ uni04978~:"DPҋYҋPD"=XvSXqiWE ҋIDZDIҋ ȿbnnigqXvhuXtr:_9ԋi~ݜ ‰żŠɷ͖З~*݋_4&:Dyu qfSVwqJAlpBdo-jDIҋZҋIDV od Epl#OqtSIpr$DXu} ^VY"ҋPDYDPҋ"܋@G uni04DF??h??Nh/2/ p S_A `!C[CVMNbqohH1΋ g:3jfF,7giVы4jeC0ccNvnw~\Pqw'JsrZ8ZPvVTtv2VvtiVTtrvVTtv2VvtiVTt} uni0499f<4irbg{ʋYUE͋[\UJYaoH1΋ZˮAL\QM\ÁLVN1<C"9uwf  ԚĚƗƪf*݋"6+I c S_A `!C[CVMNbqohH1΋ g:3jfF,7giVы4jeC0ccNvnw~\Pqw'Jsr:7:Ul uni04CFӗҋDYDҋYċN 1ӗDҋYҋD0G uni04E5-????DHDYD6ҋYҋoHҋYҋ6DSvVTtv2VvtiVTtrvVTtv2VvtiVTtG uni045D-????lDHDYD6ҋYҋoHҋYҋ6D@K3`]G uni04E3-????lDHDYD6ҋYҋoHҋYҋ6D"G uni045Cߋ????DPً(V#=?yt lfSVwqJAlpHap,k=HҋYҋ6D03@KK\! uni049B9(=PҋYҋ6DYDHً bnnigqXriuXtr:_8h ޖ Қ~*ދ_2%:?yt lfSVwqJAlpHap,k=HҋYҋ6DYDPً(݋b9 uni049Dҋ6DYDH! ̽bnnigqXtiu^ss=Yp!XhPҋYh  DP!V(=Cxw nfSVwqJAlpE_q5lpX!hHҋYҋ6Df/ uni04A1 ҋ3'H-YDHً bnnigqXriuXtr=Y(=PҋY;ehg Қ~ DPً(V#=?yt lfSVwqJAlpHap,k=Hҋ-΋3Db uni0459\\ot{|s?LYD&܋7>>27:ҋ3Q'z4qYz{xz^|]_^-liT0 ŗǖȖ¬Sk.u3DY>5M5>>PMs&ҋLZ׋IVrOI`~pdWӿwx0Mvs -fWl2ni.22ni'Y uni04A3HȋMҋOOҋYҋ6DYDFFDYD3_98h V݋ ܜsH*݋_'3ҋYҋFFҋYҋ6DYDOODYM uni045Aҋ6DYFFuFFYD&܋7>>27:ЋOuOЋY_^-lh Lc FOuOFY>5M5>>PMs&ҋYЋFuFЋYҋ6D|l2ni.22niZZ uni04A5Hҋ6DYDFuFD'-H=3YҋOuOҋYh LU΋ ܜrHDOuODY03='΋-'YҋFuFҋYҋ6D$F uni04E7̋??{??00ai0Jv0a0Ji0aJ/U+I"++"I"vVTtv2VvtiVTtrvVTtv2VvtiVTt8 uni0473xЋeF4aHFFH4FiU2LieD'MMh&LE3e̋p8 z400_e0_Jx0Jx0_0J+I"++"I"8s3 uni04E9̋??z400_e0_Jx0Jx0_0J+I"++"I"8 uni04AB\BYqxj]pkhdmkkdmiRrc_tMg;<-ЋNjпt{]==I!9r R*݋!4C |)0`dyAAQM.;.E@}baLzv.KnrDFKZ{17>KF uni045E????h,?LYҋҋtYQ~xX-)ЪilQgW׿ux/Mvs $h9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿T^ uni04AF+*ҋ*%pŰ|Zҋ222\%pŰ|Zҋ222\5M5>>PMu&ҋYҋ6DvYD6ҋYҋ6Dώl2ni.22niRvVTtv2VvtiVTtrvVTtv2VvtiVTt02 uni0455??N/D/11FV28Am %rBDlǪ<g`EYDBVBJZ/ZZw`;je~Dv3 uni04D9??|:})E3HF/,e{BOBIrqq&11e0]MF uni04D2E????_3BB3YWu$uW~vVTtv2VvtiVTtrvVTtv2VvtiVTtF uni04D0E??ĸ??_3BB3YWu$uW~}9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿T3 uni04D4\??lV?BwBAYJ;M?ʋbL?M ۋ?Y׋W=_G uni0403͋????L-w ۋ?vYՋAX03@K9~ uni0490ߙՋA4jNjY͋S :ߙ-Njj44YՋA9 uni0492Ջ3Av?; w?U?Y͋Zۋ љW-??w ۋ?vYՋ3UA9H uni0494-|jTd_JwnzՋYՋAv?; w֟ȋqU9S6\pJ^cRxn0"8Z ޜf82?;?ۺqnqGPfZ}]tw ۋ?vYՋAYA'}\=f=^_xosF uni0400????o<J;M?ʋbL?M ۋ?YՋAX@K3`F uni0401????J;M?ʋbL?M ۋ?YՋARtvVTtv2VvtiVTtrvVTtv2VvtiVTtF uni04D6??į??°J;M?ʋbL?M ۋ?YՋA_9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿T3 uni0404C;`ʋNjcjۋf;8G[Di\Ns5WbU\V2Kg͙~tekrlZNe2s"%Nwj |6Lpr$Jrp)gsr^CQR}R-N\ۋf;N6nT  H uni04DC‹??]??/.UAYAU.G*Bƻ{wEiZNOruE@iqb**^b/ՋYՋ/>F1*b^ BqiNlrN/f՝llBPwCGtvVTtv2VvtiVTtrvVTtv2VvtiVTtH uni04C1‹??]??;.UAYAU.G*Bƻ{wEiZNOruE@iqb**^b/ՋYՋ/>F1*b^ BqiNlrN/f՝llBPwCG|_9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿T uni04968/4U/ՋYՋ/U.ϋ*AAorpkionkG9FAYAF_nnkbnokrooKAAsk'j4޿#X/ ŠƼŠɷ͐И/4j0'Bƻ{wEiZNOruE@iqb**^b/ՋYՋ/>F1*b^ BqiNlrN/f՝llBPwCGY.UAYAUG uni04DEË????N`#`00NB8!zvKfSMOqtE<kna""ak&*Ջ ?ۋ !A= uni0409WUiqxxoA>yYA$$$!$$΋Ջ=(Fx mEuuwwXzËPSIw` ʘŤŃŨƐ¬LfubQ=AY΋ebBbeeEBՋyY؋ Kur*6Q|k{]Oqt'Asn !_ b \ b\  uni04A2H>TՋՋYՋAYAAYAj4> ܜsH>4j#ՋYՋՋYՋAYAAYT$ uni040AՋAYAŋAYA$$$!$$΋ՋŋՋYXËPS AŋAY΋ebBbeeEBՋYՋŋՋYՋAُ b \ b\  uni04A4HՋAYAˋAu?; vՋYՋˋՋYhۋ ܜsHAˋAYAv ۋ?uYՋˋՋYՋAF uni04E6h??ɋ??\B\\,B,\\B,RvVTtv2VvtiVTtrvVTtv2VvtiVTt uni0472խ$[V4MipXA[[AiXMp4Vi\E9^ыыY.77^9.Yh!č 4\BQ$[\\B,\\,B,C\r3 uni04E8h/??4\BQ$[\\B,\\,B,C\ uni04AAɁO+Hgʋ̋_mۋd;7EZCg]Mt7Z!ыupjTY[Igb,4!Nwۜ F4,[A2-xO2JTxx>R{R&N] ۋd;M7$iQ /G uni04EE%ϋ??Nj??s44ËdY+XGYËy~j",՞nx9~{_Rru(Gsn`G uni04F0%ϋ??Nj??s44ËdY+XGYËy~j",՞nx9~{_Rru(Gsn`vVTtv2VvtiVTtrvVTtv2VvtiVTtG uni04F2%ϋ??Nj??s44ËdY+XGYËy~j",՞nx9~{_Rru(Gsn`17>KZ{17>KG uni040E%ϋ??Nj?? s44ËdY+XGYËy~j",՞nx9~{_Rru(Gsn`m9WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿T2 uni04AEċ??ZI0Z_Y22Y[{0 uni04B0<HM# XWY5225_YW[$W#MY ϙp<H0M#$[_Y22YX W#M/ uni04B2TQԋ0<΋Y\ƋhaPYB+3H\YP_cj4C ܜT4j5c_Ƌ\Y΋3+ԋYƋahPY\H<0BYQG uni04F4iӋ????޲(AՋYՋ$fY|b>>dՋYՋ8rprHٰ/f-%tvVTtv2VvtiVTtrvVTtv2VvtiVTt uni04B6~hiy?xUO6Vs8AYA5\JcyԟAYAj4v ϙV4j#ՋYՋ$fY|b>>dՋYՋ8rprHٰ/f-Yh uni04B8O7Ws8AYA55=̆;Ë;ƞAYAՋYr~Wzj&Si ٛn Ë&In-YAՋYՋgc}\7S; =6jՋYՋ8pppHH uni04F8/׋??5??΋ebBbeeEBՋYՋAYAՋYՋA b \ b\NpvVTtv2VvtiVTtrvVTtv2VvtiVTt2 uni0405??}g7gVV.DA#cI]!bdۋY;T&oZQQ3A]]NG_ gg3Y3[Xa;aۋ0CmS uni040F$ՋAYAЋAYAՋY44 ŗ^$44AՋYՋЋՋYՋAY2 uni0406??1ӗAՋYՋAaG uni0407????~pAՋYՋAtvVTtv2VvtiVTtrvVTtv2VvtiVTta2 uni0408g??b,1UHGHՋY.kfy~|_Rru(Gsm##aY uni0402O|jTd_JwnzՋYՋ; ;?#?; w֟ȋqU9SX\pJ^cRxn0ȋ8+ ޜr82?;?ۺqnqGPfZ}]tw ۋ?#?ۋ ;AYA'}\=f=^_xos4 uni040BrdՋ; ;??; ;ٞ "-ՋYՋ)D?^FxnyՋY5 ޜbdA##~c=^=^AYA-vnvGGfX~\s; ۋ??ۋ ;A  uni04BAZՋAYAٞ "7ՋYՋ3D?^FxnyՋYj ԚuJA##~c=^=^AYA7vnvGGfX~\sՋYՋA3 uni04D8T.??:!!iH H/,!eFUyAy/la  QRvvC'VvVB2 zerosuperior0OlcclU\/\U`?A׋׋)//A) ض)ڋ  _OD&y.Dd&yd.D&ҲydV`*RZR**GZRRZG**ϼGvp U com.type-invaders.name.final uni2070 com.type-invaders.name.production zerosuperior l onesuperior͖c|!‹d޲Nw3ԋ 0͖/T!Jj"f twosuperior~fkn{xyvswwtйˋVYs{boignx"GC%0Ŏoߔ ,tT__C \ <fYd=Xh3`zε|axŞviIpͦqXP)qk1\; threesuperior/OIrzxfekfnk|xzvrwwt̋^\hX]j^eV9Sد0smڲߨߙ £,Ʀ/(ODz03eaZc<m[e=Te6`yε}axÞvfSpæxZCPӦrp?dLrʤrW;Jۣos&ypb´w}E^zy"e[ foursuperior^&JC׋UUCFM&v^Ћ ?^ЋU?CUJMst U com.type-invaders.name.final uni2074 com.type-invaders.name.production foursuperior  fivesuperior7OIrzxghwpx\`oONOPT8IدǍ{ڰߋ  j7' M ɻ T bZ4VnpzqNo}`ª^|ArդpR=C٦rp#xpb´w}E^zy"e^u U com.type-invaders.name.final uni2075 com.type-invaders.name.production fivesuperior  sixsuperiorlMG@ڮlCzB<LLUR>FInhhnakkaشTwڋ uDM#T¾T]_5Uprzo-3#?l|n,<##RK՝AyKlAy՝lUKA˪yllv T com.type-invaders.name.final uni2076 com.type-invaders.name.production sixsuperior h sevensuperiorIN_T"Dv *ҋ"IRw V com.type-invaders.name.final uni2077 com.type-invaders.name.production sevensuperior 4 eightsuperiorNE@·k\оʋʋX_f\`k_c[@QElhhlip{piBqjjqms{smش+Դڢ ,N%W!/-f`Zf=$f[l,[f# com.type-invaders.name.final uni2078 com.type-invaders.name.production eightsuperior  ninesuperiorlӜu`kcXN͋ϋ<FWj9PQl|,n##RV}TXT]5cU-3#\VK՝AyKlAy՝lUKA˪ylly U com.type-invaders.name.final uni2079 com.type-invaders.name.production ninesuperior  zeroinferior0OlcclU\/\U`?A׋׋)//A) ߶ڋ  ^OD&y.Dd&yd.D&ҲydV`*RZR**GZRRZG**ϼGv U com.type-invaders.name.final uni2080 com.type-invaders.name.production zeroinferior j oneinferior͖c|!‹dw3ԋ /͖/T!Jj"f T com.type-invaders.name.final uni2081 com.type-invaders.name.production oneinferior  twoinferior~fkn{xyvswwtйˋVYs{boignx"GC%毎oڔ ,sT__C \ <fYd=Xh3`zε|axŞviIpͦqXP)qk1\ T com.type-invaders.name.final uni2082 com.type-invaders.name.production twoinferior B threeinferior/OIrzxfekfnk|xzvrwwt̋^\hX]j^eV9S@每msۨߜ £,Ʀ/(ODz03eaZc<m[e=Te6`yε}axÞvfSpæxZCPӦrp?dLrʤrW;Jۣos&ypb´w}E^zy"e[ V com.type-invaders.name.final uni2083 com.type-invaders.name.production threeinferior  fourinferior^JC׋UUCFMvČ^Ћ >^ЋU?CUJMs U com.type-invaders.name.final uni2084 com.type-invaders.name.production fourinferior  fiveinferior7OIrzxghwpx\`oONOPT8INǍ{ڋ  j7' M ɻ T bZ4VnpzqNo}`ª^|ArդpR=C٦rp#xpb´w}E^zy"e^ U com.type-invaders.name.final uni2085 com.type-invaders.name.production fiveinferior  sixinferiorlMG@ڮlCzB<LLUR>FInhhnakkaV wڋ tDM#T¾T]_5Uprzo-3#?l|n,<##RK՝AyKlAy՝lUKA˪yll T com.type-invaders.name.final uni2086 com.type-invaders.name.production sixinferior g seveninferiorIN_T"Dɠv )ҋ"IR V com.type-invaders.name.final uni2087 com.type-invaders.name.production seveninferior 2 eightinferiorNE@·k\оʋʋX_f\`k_c[@QElhhlip{piBqjjqms{smAᴏԴڢ ,N%W!/-f`Zf=$f[l,[f# com.type-invaders.name.final uni2088 com.type-invaders.name.production eightinferior  nineinferiorlӜu`kcXN͋ϋ<FWj9PQl|,n##RV}TXT]5cU-3#\VK՝AyKlAy՝lUKA˪yll U com.type-invaders.name.final uni2089 com.type-invaders.name.production nineinferior \ onehalfG??'??R??Ջ__C \ <fYd=Xh3`zε|axŞviIpͦqXP)qk1/T!Jj"͋NIy\ uni2153G??'??S?? K(ODz03eaZc<m[e=Te6`yε}axÞvfSpæxZCPӦrp?dLrʤrW;Jۣos&ypb´w}E^zy"e/T!Jj"͋NIwS!\ uni2154 H????S??)@(ODz03eaZc<m[e=Te6`yε}axÞvfSpæxZCPӦrp?dLrʤrW;Jۣos&ypb´w}E^zy"e__C \ <fYd=Xh3`zε|axŞviIpͦqXP)qk1͋NIlT!_ onequarterG??'??T??vH/T!Jj"͋NINЋU?CUJMtb threequartersӋI????T`??8/(ODz03eaZc<m[e=Te6`yε}axÞvfSpæxZCPӦrp?dLrʤrW;Jۣos&ypb´w}E^zy"e͋NINЋU?CUJMH\ uni2155G??'??U??įN' M ɻ T bZ4VnpzqNo}`ª^|ArդpR=C٦rp#xpb´w}E^zy"e/T!Jj"͋NIuU!\ uni2156 H????U??BC' M ɻ T bZ4VnpzqNo}`ª^|ArդpR=C٦rp#xpb´w}E^zy"e__C \ <fYd=Xh3`zε|axŞviIpͦqXP)qk1͋NIjV!\ uni2157I????U??7"' M ɻ T bZ4VnpzqNo}`ª^|ArդpR=C٦rp#xpb´w}E^zy"e7(ODz03eaZc<m[e=Te6`yε}axÞvfSpæxZCPӦrp?dLrʤrW;Jۣos&ypb´w}E^zy"e͋NIIW!\ uni2158J????U??ܳ^ЋU?CUJMb' M ɻ T bZ4VnpzqNo}`ª^|ArդpR=C٦rp#xpb´w}E^zy"eC͋NIbX!\ uni2159G??'??V??/T!Jj"͋NIT#T¾T]_5Uprzo-3#?l|n,<##RK՝AyKlAy՝lUKA˪ylmY!\ uni215AՋK????Vi??27' M ɻ T bZ4VnpzqNo}`ª^|ArդpR=C٦rp#xpb´w}E^zy"e͋NIT#T¾T]_5Uprzo-3#?l|n,<##RK՝AyKlAy՝lUKA˪ylJZ!\ uni21501G??'??Wߋ??b$/ҋ"I/T!Jj"͋NIP!\ uni215B)G??'??X??/T!Jj"͋NIT%W!/-f`Zf=$f[l,[f# com.type-invaders.name.final uni2713 com.type-invaders.name.production checkmark  crossmark  E/E/  /F/F M E/E/ LM /F/F $8: g F /F/F  E/E/ L /F/F LM E/E/ L'R com.type-invaders.name.final uni274C com.type-invaders.name.production crossmark _ arrowleft͖ggr:};}:lrیZ 6͖:w}}w:lgg\!R com.type-invaders.name.final uni2190 com.type-invaders.name.production arrowleft _ arrowup͖}:rggggrl:};vZwۋ 6͖ۋ}w:ggggl:w\!P com.type-invaders.name.final uni2191 com.type-invaders.name.production arrowup ` arrowdown͖o[:w}ۋ}w:lggvNwۋ 5͖Bggr:};}:rl\!R com.type-invaders.name.final uni2193 com.type-invaders.name.production arrowdown c arrowright͖7:w}}w:ggggیZ 8͖gggglr:};}:\!S com.type-invaders.name.final uni2192 com.type-invaders.name.production arrowright ^ arrowupleft͖~h[cd\g~99RSO 5͖)99~\[~\!T com.type-invaders.name.final uni2196 com.type-invaders.name.production arrowupleft a arrowupright͖"!99~\ch[~99" 7͖[99~[d\g~99\!U com.type-invaders.name.final uni2197 com.type-invaders.name.production arrowupright a arrowdownleft͖O [~99S99~\gdO 6͖O\~99R99~h[c\!V com.type-invaders.name.final uni2199 com.type-invaders.name.production arrowdownleft c arrowdownright͖\~9999~[" 7͖ ch[~99RS99~\g\!W com.type-invaders.name.final uni2198 com.type-invaders.name.production arrowdownright w arrowupleftcornerӗc:lrggggr:ۋ;c֠vZwۋ 9ӗ؋ۋ;x:lgggg:{\!Z com.type-invaders.name.final uni21B0 com.type-invaders.name.production arrowupleftcorner x arrowdownleftcornerӗ0[ggr:cۋ;:lrvNw4֌ۋ 8ӗ:xۋ;c{:lgg\!\ com.type-invaders.name.final uni21B2 com.type-invaders.name.production arrowdownleftcorner p arrowleftupcornerӗb:rggggrl:c;ی֋ ;ӗc{:ggggl:x\+Z com.type-invaders.name.final uni2B11 com.type-invaders.name.production arrowleftupcorner p arrowrightupcornerӗbc:rggggrl:;ی֋ :ӗx:ggggl:{c\+[ com.type-invaders.name.final uni2B0F com.type-invaders.name.production arrowrightupcorner o arrowleftdowncornerӗ:x;c{:lggی֋ 8ӗggr:c;:rl\+\ com.type-invaders.name.final uni2B10 com.type-invaders.name.production arrowleftdowncorner q arrowrightdowncornerӗ:{c;x:lggی֋ 8ӗggr:;c:rl\+] com.type-invaders.name.final uni2B0E com.type-invaders.name.production arrowrightdowncorner x arrowuprightcornerӗ\ۋx:ggggl:{c;vZwc֌\ۋ 9ӗ\ۋc:rgggglr:;\![ com.type-invaders.name.final uni21B1 com.type-invaders.name.production arrowuprightcorner z arrowdownrightcornerӗb:x;ۋc{:gggg4Nwv\ۋ :ӗgggglr:c;ۋ:\!] com.type-invaders.name.final uni21B3 com.type-invaders.name.production arrowdownrightcorner U arrowleftarrowrightp(??m(??eҁgggglr:};}::w}}w:lgg\!\ com.type-invaders.name.final uni21C6 com.type-invaders.name.production arrowleftarrowright U arrowrightarrowleftp(??m(??fgggglr:};}::w}}w:lgg\!\ com.type-invaders.name.final uni21C4 com.type-invaders.name.production arrowrightarrowleft { arrowleftrightggr:zzv:ggggl:zvz:lr݌\ M:zvz:rgggglr:zzv:lgg\!W com.type-invaders.name.final uni2194 com.type-invaders.name.production arrowleftright y arrowupdowno[:t:rggggrl:t:lggvZw LBggr:t:ggggl:t:rl\!T com.type-invaders.name.final uni2195 com.type-invaders.name.production arrowupdown  arrowdowncounterclockhalfN:֋׋ U.E9oP2O[:kMMe/N~=:lgg؍`}݋ ` ggr:=}q6@.."/x0B1rl\!b com.type-invaders.name.final uni21B6 com.type-invaders.name.production arrowdowncounterclockhalf  arrowdownclockhalfN*:~=fM:[O2`PBo,W9 ׋֋V8$Xh"L:lgg؍Ӭ݋ c ggr:_ /"/.N"6:rl\![ com.type-invaders.name.final uni21B7 com.type-invaders.name.production arrowdownclockhalf  arrowhookleftBggr:xkatt^KacmJU^>r\:lrیJ U:wdC8CddL4 ;-Tn4SoKw:lgg\!V com.type-invaders.name.final uni21A9 com.type-invaders.name.production arrowhookleft  arrowhookrightB:w\>Um¸آ;taktxgsrgtw:ggggی Vgggglr:,S5n¨dBB4LddG:\!W com.type-invaders.name.final uni21AA com.type-invaders.name.production arrowhookright  arrowupleftcounterclockDF 2W -ڻKF_G HU1Jgv_G\h[cd\gbA?8ZIY47 [Nw9݋ 4D ~~T,%[HUBN +  C{E!R'\!` com.type-invaders.name.final uni21BA com.type-invaders.name.production arrowupleftcounterclock  arrowuprightclock@E 4Y\ch[\^GD_IvFaV5LiG F[--FW 25 [Nwٍ7ދ 4@''CtC>E*y^?9& HEHH5;d\g~j,8O \!Z com.type-invaders.name.final uni21BB com.type-invaders.name.production arrowuprightclock  tilde0weyxc||w}wwuyxtrjab2ʌړ NSATi-nn&|qAtmH­nnU{cW|X_top tilde.alt010zjzzi~{w}xvtzxrrjac2ʌ&ȓ NSBTh6ns1}vBtnF®mn\{c_}X_topN macron1SLʌ1 1X_tops dotaccentߙqlksslk 0ՒtSRst0StshSRsX_top dieresis<bqnmttnm6qnmttnm+ W(bvVTtv2VvtiVTtrvVTtv2VvtiVTtX_topp hungarumlautIKa1Ka1[I܋ *h17>KZ{17>KX_topO acuteK`0[7 03@KX_topM graveBxKl{[B7 @K3`X`_topo circumflex#.ɋ.ow)B#΋ &?).M.X_topc caron#)w.MB#΋ $ɋ.o)owX_top breve eZjwgqs{swXjaYqԌ+ =)#Z#vg*Yڛs{,Ysdl{)#٥=X_top breve.cyrlfaLcwnrvuq|ȋ|unnuwbclLx溍 c29WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿TX_top ring`lppljngnjfq_jxzk`rqxajk_z԰Fˋ \QɡMuQtMuɡt@QMŢutgf V MZVS VZMZX_top ringacutexlpplkmomkfq^jxzmbrrxbjm^zW`)̰E̋ ̘k4QɡMuQuMuɡuGQMšuugfUG\UTU\G\R>X_top commaturnedtoppmxwoYvlttml ;vUQtw^LxI pRVSRrXW com.type-invaders.name.final uni02BB com.type-invaders.name.production commaturnedtop _topG caronslovakFRjw R0XT com.type-invaders.name.final uni02BC com.type-invaders.name.production caronslovak _topright cedilla<be`~tep{;jkuylkwbbӋ T bV8@uk;}|ax+]wWNv~1swhc=uX_bottom ogonek$bbSvotkg{nuwqtz_tb&Ջ Ib_c`u{K]y&;-hy^i*tX_bottomright7 tildecomb??MSATi-nn&|qAtmH­nnU{cW|R com.type-invaders.name.final uni0303 com.type-invaders.name.production tildecomb _top8 macroncomb??#S com.type-invaders.name.final uni0304 com.type-invaders.name.production macroncomb _top; dotaccentcomb??/ՒtSRst0StshSRsV com.type-invaders.name.final uni0307 com.type-invaders.name.production dotaccentcomb _top: dieresiscomb??V(-vVTtv2VvtiVTtrvVTtv2VvtiVTtU com.type-invaders.name.final uni0308 com.type-invaders.name.production dieresiscomb _top> hungarumlautcomb??)317>KZ{17>K Y com.type-invaders.name.final uni030B com.type-invaders.name.production hungarumlautcomb _top7 acutecomb??03@KR com.type-invaders.name.final uni0301 com.type-invaders.name.production acutecomb _top7 gravecomb??@K3`R com.type-invaders.name.final uni0300 com.type-invaders.name.production gravecomb _top< circumflexcomb??&).M.W com.type-invaders.name.final uni0302 com.type-invaders.name.production circumflexcomb _top7 caroncomb??#lɋ.o)ow R com.type-invaders.name.final uni030C com.type-invaders.name.production caroncomb _top7 brevecomb??<)#Z#vg*Yڛs{,Ysdl{)#٥=R com.type-invaders.name.final uni0306 com.type-invaders.name.production brevecomb _top6 ringcomb??[QɡMuQtMuɡt@QMŢutgf V MZVS VZMZ Q com.type-invaders.name.final uni030A com.type-invaders.name.production ringcomb _topn hookcombӗ}ktuqXtmphPЌË -˓yLDrx9FW Q com.type-invaders.name.final uni0309 com.type-invaders.name.production hookcomb _top@ commaturnedtopcomb??:vUQtw^LxI pRVSRr[ com.type-invaders.name.final uni0312 com.type-invaders.name.production commaturnedtopcomb _top= caronslovakcomb??R0X com.type-invaders.name.final uni0315 com.type-invaders.name.production caronslovakcomb _toprightR horncomb-ߋ8nhgf"tߋ %-ttJ7.Q com.type-invaders.name.final uni031B com.type-invaders.name.production horncomb 9 cedillacomb??S bV8@uk;}|ax+]wWNv~1swhc=u'T com.type-invaders.name.final uni0327 com.type-invaders.name.production cedillacomb _bottomc dotbelowcombߙ>rmlttml>T /Ւ>uUTtu3UutiUTt#U com.type-invaders.name.final uni0323 com.type-invaders.name.production dotbelowcomb _bottom commabelowcombVnnjthf>no_7R :V p$Rrv.UvsiUQt{0wg&W com.type-invaders.name.final uni0326 com.type-invaders.name.production commabelowcomb _bottom8 ogonekcomb??HRb_c`u{K]y&;-hy^i*t(S com.type-invaders.name.final uni0328 com.type-invaders.name.production ogonekcomb _bottomright breveacute$eZjwequ{swYjcYqD Ge 0ь) M) Z ve*[ڙs},[sdl{) ץ? 0B=G_top brevegrave$eZjwequ{swYjcYq.ԱGl|ь) K) Z ve*[ڙs},[sdl{) ץ?=GBe_top brevehookTeZjwequ{swYjcYqMktuqXtmphЌË a*) Z ve*[ڙs},[sdl{) ץ?yLDrx9FW_top brevetildeweyxc||w~wwuzytrjac+QeZjwequ{swYjcYqʌ7ږ ɗlSBTj-on&}qBtnH¬noU|dW}eQ) Z ve*[ڙs},[sdl{) ץ?_top dieresisacuteT)qnmttnm>qnmttnm*Gc.- f@)vVTtv2VvtiVTtzvVTtv2VvtiVTtP.<?G_top dieresiscaronf)qnmttnm>qnmttnm(x+M- pR)vVTtv2VvtiVTtzvVTtv2VvtiVTt,ɋ+p(px_top dieresisgraveT)qnmttnm>qnmttnmڳGl|- d@)vVTtv2VvtiVTtzvVTtv2VvtiVTtF?GqnmttnmyL- f@)vVTtv2VvtiVTtzvVTtv2VvtiVTtc:_top circumflextildeZweyxc||w}wwu{xtrjadF+ɋ+ow(Ȍ7ړ Θj@SCTi-nn&~qCtoH­nnU{eW~;Z(+M+_top tilde.case0weyxc||w}wwuyxtrjabʌړ NSATi-nn&|qAtmH­nnU{cW|X_topN tilde.alt01.case0zjzzi~{w}xvtzxrrjacʌ&ȓ NSBTh6ns1}vBtnF®mn\{c_}X_topNS macron.case1Lʌ1 1X_topNs dotaccent.caseߙqlksslk 0ՒtSRst0StshSRsX_topN dieresis.case<bqnmttnm6qnmttnm+ W(bvVTtv2VvtiVTtrvVTtv2VvtiVTtX_topNp hungarumlaut.caseIKa1Ka1[I܋ *h17>KZ{17>KX_topNO acute.caseK`0[7 03@KX_topNM grave.caseB&Kl{[B7 @K3`X_topNo circumflex.case#.ɋ.ow)B#΋ &?).M.X_topNm caron.case#.)w.MB#΋ $ɋ.o)owX_topN breve.case eZjwgqs{swXjaYqԌ+ =)#Z#vg*Yڛs{,Ysdl{)#٥=X_topN breve.cyrl_casefaLcwnrvuq|ȋ|unnuwbclLx c29WSwu4Uwv6fz.|Ӑj|jvz^Vvw2Quw9+9¿TX_topN ring.case`lppljngnjfq_jxzk`rqxajk_z{@Fˋ \QɡMuQtMuɡt@QMŢutgf V MZVS VZMZX_topN ringacute.casexlpplkmomkfq^jxzmbrrxbjm^zW`)u2E̋ Ǘk4QɡMuQuMuɡuGQMšuugfUG\UTU\G\R>X_topNn hookcomb.caseӗ}ktuqXtmphЌË -˓~yLDrx9FW[ com.type-invaders.name.final uni0309.case com.type-invaders.name.production hookcomb.case _topN breveacute.case$eZjwequ{swYjcYqD Ge 0ь) M) Z ve*[ڙs},[sdl{) ץ? 0B=G_topN brevegrave.case$eZjwequ{swYjcYq.ԱGl|ь) K) Z ve*[ڙs},[sdl{) ץ?=GBe_topN brevehook.caseTeZjwequ{swYjcYqMktuqXtmphtЌË a*) Z ve*[ڙs},[sdl{) ץ?yLDrx9FW_topN brevetilde.caseBweyxc||w~wwuzytrjac+QeZjwequ{swYjcYqxBь7ږ ĖlBSBTj-on&}qBtnH¬noU|dW}eQ) Z ve*[ڙs},[sdl{) ץ?_topN dieresisacute.caseT)qnmttnm>qnmttnm*Gc.- f@)vVTtv2VvtiVTtzvVTtv2VvtiVTtP.<?G_topN dieresiscaron.casef)qnmttnm>qnmttnm(x+M- pR)vVTtv2VvtiVTtzvVTtv2VvtiVTt,ɋ+p(px_topN dieresisgrave.caseT)qnmttnm>qnmttnmڳGl|- d@)vVTtv2VvtiVTtzvVTtv2VvtiVTtF?GqnmttnmyL9ʍ- f@)vVTtv2VvtiVTtzvVTtv2VvtiVTtc:_topN circumflextilde.caseZDweyxc||w}wwu{xtrjadF+ɋ+ow(zDȌ7ړ Θj@DSCTi-nn&~qCtoH­nnU{eW~;Z(+M+_topN nbspace|P com.type-invaders.name.final uni00A0 com.type-invaders.name.production nbspace  fcclogozvE+NCWLËN?> ы*;FL]y[PHgU&b=@\#LL#@bΝƬ]YF*;1,`@Sk֫\bL^zSiq\wihw[oo[hwë^nb4\#t ׎AӜ ҚĒ˒ՒՊՊ,Ϊv)?)x I6W V  Wu)sR"o?, /H>ËLӿ , M,<(3ȭr Qcs@RbSEQMųs<iNbb//bb/P com.type-invaders.name.final uniEFCC com.type-invaders.name.production fcclogo 1 celogo&A)RՋ yx^9mIU]B`ee`BUm v A)RՋ yxW.cFEc.WV/Ec v[ ȑtf\\$Le\s51se| 776676<tfDse| 776676O com.type-invaders.name.final uniECE0 com.type-invaders.name.production celogo |$ N N rs;,3 !*"#$/%&'()+-.&0621d -extractor-0.5.0/tests/extractor_test.py000066400000000000000000000014421416264461600203300ustar00rootroot00000000000000import extractor import os import pytest def getpath(filename): dirname = os.path.dirname(__file__) return os.path.join(dirname, "data", filename) class ExtractUfoTest: def test_extract_cmap_with_UVS(self, FontClass): ufo = FontClass() extractor.extractUFO(getpath("UVSTest.ttf"), ufo) assert {glyph.name: set(glyph.unicodes) for glyph in ufo if glyph.unicodes} == { "zero": {0x030}, "Anegativesquared": {0x1F170}, } assert ufo.lib.get("public.unicodeVariationSequences") == { "FE00": {"0030": "zero.slash"}, "FE0E": {"1F170": "Anegativesquared.text"}, "FE0F": {"1F170": "Anegativesquared"}, } if __name__ == "__main__": import sys sys.exit(pytest.main(sys.argv)) extractor-0.5.0/tests/roundtrip.py000077500000000000000000000022321416264461600173050ustar00rootroot00000000000000import extractor import defcon # from fontTools.ttLib import TTFont from ufo2ft import compileTTF ufo = defcon.Font() # Take the font generated by FL5 from the VFB and extract it to UFO extractor.extractUFO("data/ibm_plex/IBM Plex Serif-Text-FL.ttf", ufo) # Save the extracted UFO ufo.save("data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo") ufo = defcon.Font("data/ibm_plex/IBM Plex Serif-Text-FL_extracted.ufo") # Build a new TTF from the extracted UFO ttf = compileTTF(ufo, reverseDirection=False) ttf.save("data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttf") # Force recompilation by closing and reopening the font; not needed # ttf.close() # ttf = TTFont("data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttf") # Also save TTX dump ttf.saveXML("data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttx") ttf.saveXML("data/ibm_plex/IBM Plex Serif-Text-FL.ttx") # ufo = defcon.Font() # extractor.extractUFO("data/font_a/font-normal-fl.ttf", ufo) # ufo.save("data/font_a/font-normal-fl_extracted.ufo") # ufo = defcon.Font("data/font_a/font-normal-fl_extracted.ufo") # ttf = compileTTF(ufo) # ttf.save("data/font_a/font-normal-ufo2ft.ttf") # ttf.saveXML("data/font_a/font-normal-ufo2ft.ttx") extractor-0.5.0/tests/roundtrip_otf.py000066400000000000000000000022221416264461600201510ustar00rootroot00000000000000import extractor import defcon # from fontTools.ttLib import TTFont from ufo2ft import compileOTF ufo = defcon.Font() # Take the font generated by FL5 from the VFB and extract it to UFO extractor.extractUFO("data/ibm_plex/IBM Plex Serif-Text-FL.otf", ufo) # Save the extracted UFO ufo.save("data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo") ufo = defcon.Font("data/ibm_plex/IBM Plex Serif-Text-FL_extracted.otf.ufo") # Build a new TTF from the extracted UFO ttf = compileOTF(ufo) ttf.save("data/ibm_plex/IBM Plex Serif-Text-ufo2ft.otf") # Force recompilation by closing and reopening the font; not needed # ttf.close() # ttf = TTFont("data/ibm_plex/IBM Plex Serif-Text-ufo2ft.ttf") # Also save TTX dump ttf.saveXML("data/ibm_plex/IBM Plex Serif-Text-ufo2ft.otf.ttx") ttf.saveXML("data/ibm_plex/IBM Plex Serif-Text-FL.otf.ttx") # ufo = defcon.Font() # extractor.extractUFO("data/font_a/font-normal-fl.ttf", ufo) # ufo.save("data/font_a/font-normal-fl_extracted.ufo") # ufo = defcon.Font("data/font_a/font-normal-fl_extracted.ufo") # ttf = compileTTF(ufo) # ttf.save("data/font_a/font-normal-ufo2ft.ttf") # ttf.saveXML("data/font_a/font-normal-ufo2ft.ttx") extractor-0.5.0/tests/stream_test.py000066400000000000000000000073331416264461600176150ustar00rootroot00000000000000import os import pytest import unittest from fontTools.ttLib import TTFont from fontTools.ttLib.tables.ttProgram import Program from extractor.stream import InstructionStream sample = """PUSHB[ ] /* 4 values pushed */ 1 2 3 4 PUSHW[ ] /* 2 values pushed */ 1 -1 PUSHW[ ] /* 2 values pushed */ 5 512 SPVTCA[0] /* SetPVectorToAxis */ SPVTCA[1] /* SetPVectorToAxis */ SFVTL[0] /* SetFVectorToLine */ SFVTL[1] /* SetFVectorToLine */ MDAP[0] /* MoveDirectAbsPt */ MDAP[1] /* MoveDirectAbsPt */ IF[ ] /* If */ SHP[0] /* ShiftPointByLastPoint */ SHC[1] /* ShiftContourByLastPt */ EIF[ ] /* EndIf */ MSIRP[1] /* MoveStackIndirRelPt */ MD[0] /* MeasureDistance */ GC[1] /* GetCoordOnPVector */ ROUND[01] /* Round */ MDRP[00110] /* MoveDirectRelPt */""" expected_vtt = """#PUSHOFF #PUSH, 1, 2, 3, 4 #PUSH, 1, -1 #PUSH, 5, 512 SPVTCA[Y] /* SetPVectorToAxis */ SPVTCA[X] /* SetPVectorToAxis */ SFVTL[r] /* SetFVectorToLine */ SFVTL[R] /* SetFVectorToLine */ MDAP[r] /* MoveDirectAbsPt */ MDAP[R] /* MoveDirectAbsPt */ IF[] /* If */ SHP[2] /* ShiftPointByLastPoint */ SHC[1] /* ShiftContourByLastPt */ EIF[] /* EndIf */ MSIRP[M] /* MoveStackIndirRelPt */ MD[N] /* MeasureDistance */ GC[O] /* GetCoordOnPVector */ ROUND[Bl] /* Round */ MDRP[m bytes: pgm = Program() pgm.fromAssembly(ttassembly) return pgm.getBytecode() def test_extract_ttx(self): font = TTFont(data_path("IBM Plex Serif-Text-FL.ttf")) with open(data_path("IBM Plex Serif-Text-FL.fpgm.ttxasm")) as f: expected_fpgm = f.read() fpgm = font["fpgm"] stream = InstructionStream(program_bytes=fpgm.program.getBytecode()) print(stream) expected_lines = expected_fpgm.splitlines() for i, line in enumerate(str(stream).splitlines()): assert line == expected_lines[i] def test_extract_vtt(self): font = TTFont(data_path("IBM Plex Serif-Text-FL.ttf")) with open(data_path("IBM Plex Serif-Text-FL.fpgm.vttasm")) as f: expected_fpgm = f.read() fpgm = font["fpgm"] stream = InstructionStream(program_bytes=fpgm.program.getBytecode()) expected_lines = expected_fpgm.splitlines() for i, line in enumerate(stream.vtt_assembly.splitlines()): assert line == expected_lines[i] def test_complex_ttx(self): stream = InstructionStream(program_bytes=self._compile(sample)) # Roundtripped sample should be identical expected_lines = sample.splitlines() for i, line in enumerate(str(stream).splitlines()): assert line == expected_lines[i] def test_complex_vtt(self): stream = InstructionStream(program_bytes=self._compile(sample)) expected_lines = expected_vtt.splitlines() for i, line in enumerate(stream.vtt_assembly.splitlines()): assert line == expected_lines[i] def test_illegal_ttx(self): # Sample contains illegal flags, ttx does ignore this stream = InstructionStream( program_bytes=self._compile(sample_keyerror) ) # Roundtripped sample should be identical assert str(stream) == sample_keyerror def test_illegal_vtt(self): # Sample contains illegal flags, vtt should raise an error stream = InstructionStream( program_bytes=self._compile(sample_keyerror) ) with pytest.raises(KeyError): assert stream.vtt_assembly == sample extractor-0.5.0/tox.ini000066400000000000000000000002761416264461600150610ustar00rootroot00000000000000[tox] minversion = 3.0 envlist = py3{7,8,9} skip_missing_interpreters = true [testenv] deps = pytest -r requirements.txt -r dev-requirements.txt commands = pytest {posargs}