[BACK]Return to termcap.src CVS log [TXT][DIR] Up to [local] / src / share / termcap

Annotation of src/share/termcap/termcap.src, Revision 1.1

1.1     ! deraadt     1: ####### TERMINAL TYPE DESCRIPTIONS SOURCE FILE
        !             2: #
        !             3: #      Version 9.8.3
        !             4: #      termcap syntax
        !             5: #
        !             6: #      Eric S. Raymond         (current maintainer)
        !             7: #      John Kunze, Berkeley
        !             8: #      Craig Leres, Berkeley
        !             9: #
        !            10: # Please e-mail changes to terminfo@ccil.org.  The old termcap@berkeley.edu
        !            11: # address is no longer valid.
        !            12: #
        !            13: # PURPOSE OF THIS FILE:
        !            14: #
        !            15: # This file describes the capabilities of various character-cell terminals,
        !            16: # as needed by software such as screen-oriented editors.
        !            17: #
        !            18: # Pointers to related resources (including the ncurses distribution) may
        !            19: # be found at <http://www.ccil.org/~esr/ncurses.html>.
        !            20: #
        !            21: # FILE FORMAT:
        !            22: #
        !            23: # The version you are looking at may be in any of three formats: master
        !            24: # (terminfo with OT capabilities), stock terminfo, or termcap.  You can tell
        !            25: # which by the format given in the header above.
        !            26: #
        !            27: # The master format is accepted and generated by the terminfo tools in the
        !            28: # ncurses suite; it differs from stock (System V-compatible) terminfo only
        !            29: # in that it admits a group of capabilities (prefixed `OT') equivalent to
        !            30: # various obsolete termcap capabilities.  You can, thus, convert from master
        !            31: # to stock terminfo simply by filtering with `sed "/OT[^,]*,/s///"'; but if
        !            32: # you have ncurses `tic -I' is nicer.
        !            33: #
        !            34: # The termcap version is generated automatically from the master version
        !            35: # using tic -C.  This filtering leaves in the OT capabilities under their
        !            36: # original termcap names.  All translated entries fit within the
        !            37: # 1023-byte string-table limit of archaic termcap libraries except where
        !            38: # explicitly noted below.
        !            39: #
        !            40: # For details on these formats, see terminfo(5) in the ncurses distribution,
        !            41: # and termcap(5) in the 4.4BSD Unix Programmer's Manual.  Be aware that 4.4BSD
        !            42: # curses has been declared obsolete by the caretakers of the 4.4BSD sources
        !            43: # as of June 1995; they are encouraging everyone to migrate to ncurses.
        !            44: #
        !            45: # Note: unlike some other distributed terminfo files (Novell Unix & SCO's),
        !            46: # no entry in this file has embedded comments.  This is so source translation
        !            47: # to termcap only has to carry over leading comments.  Also, no name field
        !            48: # contains embedded whitespace (such whitespace confuses rdist).
        !            49: #
        !            50: # Further note: older versions of this file were often installed with an editor
        !            51: # script (reorder) that moved the most common terminal types to the front of
        !            52: # the file.  This should no longer be necessary, as the file is now ordered
        !            53: # roughly by type frequency with ANSI/VT100 and other common types up front.
        !            54: #
        !            55: # CONTINUITY WITH HISTORICAL VERSIONS:
        !            56: #
        !            57: # The last /etc/termcap version maintained by John Kunze was 8.3, dated 8/5/94.
        !            58: # Releases 9 and up are maintained by Eric Raymond as part of the ncurses
        !            59: # project.
        !            60: #
        !            61: # This file contains all the capability information present in John Kunze's
        !            62: # last version of the termcap master file, except as noted in the change
        !            63: # comments at end of file.  Some information about very ancient obsolete
        !            64: # capabilities has been moved to comments.  Some all-numeric names of older
        !            65: # terminals have been retired.
        !            66: #
        !            67: # The 9.1.0 version of this file was translated from a syntax-corrected copy of
        !            68: # 8.3, then mechanically checked against 8.3 using Emacs Lisp code written for
        !            69: # the purpose.  Unless the ncurses tic implementation and the Lisp code were
        !            70: # making perfectly synchronized mistakes which I then failed to catch by
        !            71: # eyeball, the translation was correct and perfectly information-preserving.
        !            72: #
        !            73: # Some information has been merged in from terminfo files distributed by
        !            74: # USL and SCO (see COPYRIGHTS AND OTHER DELUSIONS below).  Much information
        !            75: # comes from vendors who maintain official terminfos for their hardware
        !            76: # (notably DEC and Wyse).
        !            77: #
        !            78: # A detailed change history is included at the end of this file.
        !            79: #
        !            80: # FILE ORGANIZATION:
        !            81: #
        !            82: # Comments in this file begin with # - they cannot appear in the middle
        !            83: # of a terminfo/termcap entry.  Individual capabilities are commented out by
        !            84: # placing a period between the colon and the capability name.
        !            85: #
        !            86: # Starting with version 9.0.0, the file is divided up into major sections
        !            87: # (headed by lines beginning with "########") and minor sections (beginning
        !            88: # with "####"); do
        !            89: #
        !            90: #      grep "^####" <file> | more
        !            91: #
        !            92: # to see a listing of section headings.  The intent of the divisions is
        !            93: # (a) to make it easier to find things, and (b) to order the database so
        !            94: # that important and frequently-encountered terminal types are near the
        !            95: # front (so that you'll get reasonable search efficiency even if you don't
        !            96: # use reorder).  Minor sections usually correspond to manufacturers or
        !            97: # standard terminal classes.  Parenthesized words following manufacturer
        !            98: # names are type prefixes or product line names used by that manufacturers.
        !            99: #
        !           100: # Finally, because this file is released in both terminfo and termcap formats,
        !           101: # most references to termcap names in comments are bracketed with colons (the
        !           102: # termcap separator) so they can be distinguished from terminfo capability
        !           103: # names.
        !           104: #
        !           105: # HOW TO READ THE ENTRIES:
        !           106: #
        !           107: # The first name in an entry is the canonical name for the model or
        !           108: # type, last entry is a verbose description.  Others are mnemonic synonyms for
        !           109: # the terminal.
        !           110: #
        !           111: # Terminal names look like <manufacturer> <model> - <modes/options>
        !           112: # The part to the left of the dash, if a dash is present, describes the
        !           113: # particular hardware of the terminal.  The part to the right may be used
        !           114: # for flags indicating special ROMs, extra memory, particular terminal modes,
        !           115: # or user preferences.
        !           116: #
        !           117: # All names should be in lower case, for consistency in typing.
        !           118: #
        !           119: # The following are conventionally used suffixes:
        !           120: #      mono    suppress color support
        !           121: #      rv      Terminal in reverse video mode (black on white)
        !           122: #      2p      Has two pages of memory.  Likewise 4p, 8p, etc.
        !           123: #      w       Wide - in 132 column mode.
        !           124: #      pp      Has a printer port which is used.
        !           125: #      na      No arrow keys - termcap ignores arrow keys which are
        !           126: #              actually there on the terminal, so the user can use
        !           127: #              the arrow keys locally.
        !           128: #      nam     No auto-margin - suppress am capability
        !           129: #      mc      Magic-cookie.  Some terminals (notably older Wyses) can
        !           130: #              only support one attribute without magic-cookie lossage.
        !           131: #              Their base entry is usually paired with another that
        !           132: #              uses magic cookies to support multiple attributes.
        !           133: #      vb      Use visible bell (flash) rather than beep.
        !           134: #
        !           135: # To easily test a new terminal description, put it in $HOME/.termcap
        !           136: # and programs will look there before looking in /etc/termcap.
        !           137: # You can also setenv TERMPATH to a list of full pathnames (separated
        !           138: # by spaces or colons) to be searched by tgetent() in the order listed.
        !           139: # The TERMCAP environment variable is usually set to the termcap
        !           140: # entry itself to avoid reading files when starting up a program.
        !           141: #
        !           142: # RELEASE 9 COMMENTS:
        !           143: #
        !           144: # To avoid search clashes, some older all-numeric names for terminals have
        !           145: # been removed (i.e., "33" for the Model 33 Teletype, "2621" for the HP2621).
        !           146: # All primary names of terminals now have alphanumeric prefixes.
        !           147: #
        !           148: # Comments marked "esr" are mostly results of applying the termcap-compiler
        !           149: # code packaged with ncurses and contemplating the resulting error messages.
        !           150: # In many cases, these indicated obvious fixes to syntax garbled by the
        !           151: # composers.  In a few cases, I was able to deduce corrected forms for garbled
        !           152: # capabilities by looking at context.  All the information in the original
        !           153: # entries is preserved in the comments.
        !           154: #
        !           155: # I changed :MT: to :km: (the 4.4BSD name) everywhere.  I commented out some
        !           156: # capabilities (EP, dF, dT, dV, kn, ko, ma, ml, mu, xr, xx) that are no longer
        !           157: # used by BSD curses.
        !           158: #
        !           159: # Entries derived from XENIX use a termcap-extension set that showed up in
        !           160: # several entries, notably those for scoansi, ibmpcx, lisa, trs16, fos, and
        !           161: # the altos terminals.  Its signature is the use of GS/GE as an as/ae pair.
        !           162: # This set of extensions and their translations are described in the extended
        !           163: # comment at the end of this file.
        !           164: #
        !           165: # There is a second, smaller set of extensions used by AT&T terminals and
        !           166: # also described in the trailing comment.
        !           167: #
        !           168: # Besides these and the terminals mentioned above, only the psterm variants,
        !           169: # zen50, wsiris and minitel had unknown capabilities that weren't obviously
        !           170: # garbled.
        !           171: #
        !           172: # INTERPRETATION OF USER CAPABILITIES
        !           173: #
        !           174: # The System V Release 4 and XPG4 terminfo format defines ten string
        !           175: # capabilities for use by applications, u0...u9.   In this file, we use
        !           176: # certain of these capabilities to describe functions which are not covered
        !           177: # by terminfo.  The mapping is as follows:
        !           178: #
        !           179: #      u9      terminal enquire string (equivalent to ANSI DA)
        !           180: #      u8      terminal answerback description
        !           181: #      u7      cursor position request (equivalent to VT100 DSR 6)
        !           182: #      u6      cursor position report (equivalent to ANSI CPR)
        !           183: #
        !           184: # The terminal enquire string u9 should elicit an answerback response
        !           185: # from the terminal.  Common values for u9 will be ^E (on older ASCII
        !           186: # terminals) or \E[c (on newer VT100/ANSI-compatible terminals).
        !           187: #
        !           188: # The cursor position request (u7) string should elicit a cursor position
        !           189: # report.  A typical value (for ANSI/VT100 terminals) is \E[6n.
        !           190: #
        !           191: # The terminal answerback description (u8) must consist of an expected
        !           192: # answerback string.  The string may contain the following scanf(3)-like
        !           193: # escapes:
        !           194: #
        !           195: #      %c      Accept any character
        !           196: #      %[...]  Accept any number of characters in the given set
        !           197: #
        !           198: # The cursor position report (u6) string must contain two scanf(3)-style
        !           199: # %d format elements.  The first of these must correspond to the Y coordinate
        !           200: # and the second to the %d.  The typical CPR value is \E[%d;%dR (on VT100/
        !           201: # ANSI-compatible terminals).
        !           202: #
        !           203: # These capabilities are used by tac(1m), the terminfo action checker soon
        !           204: # to be distributed with ncurses.
        !           205: #
        !           206: # REQUEST FOR CONTACT INFORMATION AND HISTORICAL MATERIAL:
        !           207: #
        !           208: # As the ANSI standard and variants take firmer hold, and as character-cell
        !           209: # terminals are increasingly replaced by X displays, much of this file
        !           210: # is becoming a historical document (this is part of the reason for the
        !           211: # new organization, which puts ANSI types, xterm, and vt100 up front in
        !           212: # confidence that this will catch 95% of new hardware).
        !           213: #
        !           214: # For the terminal types still alive, I'd like to have manufacturer's
        !           215: # contact data (Internet address and/or snail-mail + phone).
        !           216: #
        !           217: # I'm also interested in enriching the comments so that the latter portions of
        !           218: # the file do in fact become a potted history of VDT technology as seen by
        !           219: # UNIX hackers.  Ideally, I'd like the headers for each manufacturer to
        !           220: # include its live/dead/out-of-the-business status, and for as many
        !           221: # terminal types as possible to be tagged with information like years
        !           222: # of heaviest use, popularity, and interesting features.
        !           223: #
        !           224: # I'm especially interested in identifying the obscure entries listed under
        !           225: # `Manufacturer unknown' and `Utter unknowns', before the tribal wisdom
        !           226: # about them gets lost.
        !           227: #
        !           228: # If you have been around long enough to contribute, please read the file
        !           229: # with this in mind and send me your annotations.
        !           230: #
        !           231: # COPYRIGHTS AND OTHER DELUSIONS
        !           232: #
        !           233: # The BSD ancestor of this file had a standard Regents of the University of
        !           234: # California copyright with dates from 1980 to 1993.
        !           235: #
        !           236: # Some information has been merged in from a terminfo file SCO distributes.
        !           237: # It has an obnoxious boilerplate copyright which I'm ignoring because they
        !           238: # took so much of the content from the ancestral BSD versions of this file
        !           239: # and didn't attribute it, thereby violating the BSD Regents' copyright.
        !           240: #
        !           241: # Not that anyone should care.  However many valid functions copyrights may
        !           242: # serve, putting one on a termcap/terminfo file with hundreds of anonymous
        !           243: # contributors makes about as much sense as copyrighting a wall-full of
        !           244: # graffiti -- it's legally dubious, ethically bogus, and patently ridiculous.
        !           245: #
        !           246: # This file deliberately has no copyright.  It belongs to no one and everyone.
        !           247: # If you claim you own it, you will merely succeed in looking like a fool.
        !           248: # Use it as you like.  Use it at your own risk.  Copy and redistribute freely.
        !           249: # There are no guarantees anywhere.  Svaha!
        !           250:
        !           251: ######## STANDARD AND SPECIAL TYPES
        !           252: #
        !           253: # This section describes terminal classes and maker brands that are still
        !           254: # quite common.
        !           255: #
        !           256:
        !           257: #### Specials
        !           258: #
        !           259: # Special "terminals".  These are used to label tty lines when you don't
        !           260: # know what kind of terminal is on it.  The characteristics of an unknown
        !           261: # terminal are the lowest common denominator - they look about like a ti 700.
        !           262: # The last one, "other", is like unknown but it allows an escape from software
        !           263: # that insists that a "real" unknown terminal is merely so far unspecified.
        !           264: #
        !           265:
        !           266: dumb:\
        !           267:        :am:\
        !           268:        :co#80:\
        !           269:        :bl=^G:cr=^M:do=^J:sf=^J:
        !           270: unknown:\
        !           271:        :gn:\
        !           272:        :tc=dumb:
        !           273: other|none of the above, but not exactly unknown:\
        !           274:        :am:gn:\
        !           275:        :co#80:\
        !           276:        :cl=^M^J:do=^J:ho=^M:
        !           277:
        !           278: arpanet|bussiplexer|dialup|ethernet|network|net|patch|plugboard|switch|network switch or dialup:\
        !           279:        :tc=unknown:
        !           280: lpr|printer|print|printing|line printer:\
        !           281:        :hc:os:\
        !           282:        :co#132:li#66:\
        !           283:        :bl=^G:cr=^M:do=^J:ff=^L:le=^H:sf=^J:
        !           284:
        !           285: #### ANSI terminals and terminal emulators
        !           286: #
        !           287: # See near the end of this file for details on ANSI conformance.
        !           288: # Don't mess with these entries!  Lots of other entries depend on them!
        !           289: #
        !           290: # This section lists entries in a least-capable to most-capable order.
        !           291: # if you're in doubt about what `ANSI' matches yours, try them in that
        !           292: # order and back off from the first that breaks.
        !           293:
        !           294: # (ansi: changed ":pt:" to ":it#8:" -- esr)
        !           295: ansi-mini|any ansi terminal with pessimistic assumptions:\
        !           296:        :am:bs:\
        !           297:        :co#80:it#8:li#24:\
        !           298:        :ce=\E[K:cl=\E[;H\E[2J:cm=\E[%i%d;%dH:do=\E[B:\
        !           299:        :ho=\E[H:le=\E[D:nd=\E[C:up=\E[A:
        !           300:
        !           301: # Color controls corresponding to the ANSI.SYS de-facto standard
        !           302: # (This is not a standalone entry)
        !           303: ansi-pc-color:\
        !           304:        :
        !           305:
        !           306: # Procomm and some other ANSI emulations don't recognize all of the ANSI-
        !           307: # standard capabilities.  This entry deletes cuu, cuf, cud, cub, and vpa/hpa
        !           308: # capabilities, forcing curses to use repetitions of cuu1, cuf1, cud1 and cub1.
        !           309: # Also deleted ich and ich1, as QModem up to 5.03 doesn't recognize these.
        !           310: # Finally, we delete rep and ri, which seem to confuse many emulators.
        !           311: # On the other hand, we can count on these programs doing rmacs/smacs/sgr.
        !           312: # From: Eric S. Raymond <esr@snark.thyrsus.com> July 25 1995
        !           313: pcansi-mono|ibm-pc terminal programs claiming to be ansi (mono mode):\
        !           314:        :am:bs:mi:ms:pt:\
        !           315:        :co#80:it#8:li#24:\
        !           316:        :ae=\E[10m:al=\E[L:as=\E[12m:bl=^G:bt=\E[Z:cd=\E[J:\
        !           317:        :ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:ct=\E[2g:\
        !           318:        :dc=\E[P:dl=\E[M:do=\E[B:ho=\E[H:kb=^H:kd=\E[B:\
        !           319:        :kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:le=\E[D:mb=\E[5m:\
        !           320:        :md=\E[1m:me=\E[0m:mk=\E[9m:mr=\E[7m:nd=\E[C:\
        !           321:        :..sa=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p8%t;11%;%?%p9%t;12%;m:\
        !           322:        :se=\E[m:sf=^J:so=\E[7m:st=\EH:ta=^I:ue=\E[m:up=\E[A:\
        !           323:        :us=\E[4m:
        !           324: pcansi-mono25|ansi25|ibm-pc terminal programs with 25 lines (mono mode):\
        !           325:        :li#25:\
        !           326:        :tc=pcansi-mono:
        !           327: pcansi-mono33|ansi33|ibm-pc terminal programs with 33 lines (mono mode):\
        !           328:        :li#33:\
        !           329:        :tc=pcansi-mono:
        !           330: pcansi-mono43|ansi43|ibm-pc terminal programs with 43 lines (mono mode):\
        !           331:        :li#43:\
        !           332:        :tc=pcansi-mono:
        !           333: # The color versions.  All PC emulators do color...
        !           334: pcansi|ibm-pc terminal programs claiming to be ansi:\
        !           335:        :tc=ansi-pc-color:tc=pcansi-mono:
        !           336: pcansi-25|pcansi25|ibm-pc terminal programs with 25 lines:\
        !           337:        :li#25:\
        !           338:        :tc=pcansi:
        !           339: pcansi-33|pcansi33|ibm-pc terminal programs with 33 lines:\
        !           340:        :li#33:\
        !           341:        :tc=pcansi:
        !           342: pcansi-43|pcansi43|ibm-pc terminal programs with 43 lines:\
        !           343:        :li#43:\
        !           344:        :tc=pcansi:
        !           345:
        !           346: # From: Eric S. Raymond <esr@snark.thyrsus.com> Feb 3 1995
        !           347: # ansi-mono -- full X.364 with ANSI.SYS-compatible attributes, no color.
        !           348: # Function-key mappings aren't in X3.64 but these are pretty standard.
        !           349: # If you want pound signs rather than dollars, replace `B' with `A'
        !           350: # in the s?ds capabilities.
        !           351: ansi-mono|ANSI X3.64-1979 terminal with ANSI.SYS compatible attributes:\
        !           352:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !           353:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:\
        !           354:        :ch=\E[%dG:ct=\E[2g:cv=\E[%dd:ec=\E[%dX:ei=:im=:\
        !           355:        :k1=\E[M:k2=\E[N:k3=\E[O:k4=\E[P:k5=\E[Q:k6=\E[R:\
        !           356:        :k7=\E[S:k8=\E[T:k9=\E[U:kb=^H:kd=\E[B:kl=\E[D:\
        !           357:        :kr=\E[C:ku=\E[A:me=\E[0;10m:nw=\r\E[S:pf=\E[4i:\
        !           358:        :po=\E[5i:..rp=%p1%c\E[%p2%{1}%-%db:\
        !           359:        :..sa=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p8%t;11%;%?%p9%t;12%;m:\
        !           360:        :ta=\E[I:tc=pcansi:
        !           361:
        !           362: # ansi -- this terminfo expresses the largest subset of X3.64 that will fit in
        !           363: # standard terminfo.  Assumes ANSI.SYS-compatible attributes and color
        !           364: # From: Eric S. Raymond <esr@snark.thyrsus.com> Feb 12 1995
        !           365: ansi|ansi/pc-term compatible with color:\
        !           366:        :tc=ansi-pc-color:tc=ansi-mono:
        !           367:
        !           368: #
        !           369: # ANSI.SYS entries
        !           370: #
        !           371: # Cannot use :pt:, it does not work (why?).  :ho: seems required (why?). [gts]
        !           372: # Caution: 4.3 BSD tset does not pass li#25 to stty rows except during login?
        !           373: # :cl: clears attributes and sets wrap at margin before clearing the screen.
        !           374: # (ansi.sys: removed obsolete ":ma=^Hh^Jj^Kk^Ll^^H:" -- esr)
        !           375: # From: greg small <gts@populi.berkeley.edu>
        !           376: ansi.sys|ansisys|PC-DOS 3.1 ANSI.SYS:\
        !           377:        :am:bs:ms:\
        !           378:        :co#80:li#25:\
        !           379:        :ae=\E[10:as=\E[12:ce=\E[K:cl=\E[m\E[7h\E[2J:\
        !           380:        :cm=\E[%i%d;%dH:ho=\E[H:\
        !           381:        :is=U1 PC-DOS 3.1 ANSI.SYS 9-23-86\n\E[m\E[7h:kd=^J:\
        !           382:        :kh=^^:kl=^H:kr=^L:ku=^K:md=\E[1m:me=\E[0;10m:\
        !           383:        :mr=\E[7m:nd=\E[C:se=\E[m:so=\E[1m:ue=\E[m:up=\E[A:\
        !           384:        :us=\E[4m:
        !           385: #
        !           386: # Define IBM PC keypad keys for vi as per MS-Kermit while using ANSI.SYS.
        !           387: # This should only be used when the terminal emulator cannot redefine the keys.
        !           388: # Since redefining keys with ansi.sys also affects PC-DOS programs, the key
        !           389: # definitions must be restored.  If the terminal emulator is quit while in vi
        !           390: # or others using :ks:ke:, the keypad keys will not be defined as per PC-DOS.
        !           391: # The PgUp and PgDn are prefixed with ESC so that tn3270 can be used on Unix
        !           392: # (^U and ^D are already defined for tn3270).  The ESC is safe for vi but it
        !           393: # does "beep".  ESC ESC i is used for Ins to avoid tn3270 ESC i for coltab.
        !           394: # Left arrow is always BS, because PC-dos can tolerate this change.
        !           395: # Caution: vi is limited to 256 string bytes, longer crashes or weirds out vi.
        !           396: # Consequently the End keypad key could not be set (it is relatively safe and
        !           397: # actually useful because it sends ^@ O, which beeps and opens a line above).
        !           398: ansi.sysk|ansisysk|PC-DOS 3.1 ANSI.SYS with keypad redefined for vi:\
        !           399:        :is=U2 PC-DOS 3.1 ANSI.SYS with keypad redefined for vi 9-29-86\n\E[;75;8p:\
        !           400:        :ke=\E[;71;0;71p\E[;72;0;72p\E[;73;0;73p\E[;77;0;77p\E[;80;0;80p\E[;81;0;81p\E[;82;0;82p\E[;83;0;83p:\
        !           401:        :ks=\E[;71;30p\E[;72;11p\E[;73;27;21p\E[;77;12p\E[;80;10p\E[;81;27;4p\E[;82;27;27;105p\E[;83;127p:tc=ansi.sys:
        !           402: #
        !           403: # Adds ins/del line/character, hence vi reverse scrolls/inserts/deletes nicer.
        !           404: nansi.sys|nansisys|PC-DOS Public Domain NANSI.SYS:\
        !           405:        :al=\E[1L:dc=\E[1P:dl=\E[1M:ei=:ic=\E[1@:im=:\
        !           406:        :is=U3 PC-DOS Public Domain NANSI.SYS 9-23-86\n:tc=ansi.sys:
        !           407: #
        !           408: # See ansi.sysk and nansi.sys above.
        !           409: nansi.sysk|nansisysk|PC-DOS Public Domain NANSI.SYS with keypad redefined for vi:\
        !           410:        :al=\E[1L:dc=\E[1P:dl=\E[1M:ei=:ic=\E[1@:im=:\
        !           411:        :is=U4 PC-DOS Public Domain NANSI.SYS with keypad redefined for vi 9-29-86\n\E[;75;8p:tc=ansi.sysk:
        !           412:
        !           413: #### ANSI console types
        !           414: #
        !           415:
        !           416: # This entry is good for the 1.1.47 version of the Linux console driver.
        !           417: #
        !           418: # It assumes that you want A_PROTECT mapped to the alternate character set
        !           419: # mode that permits IBM ROM characters to be displayed (this is the assumption
        !           420: # used by ncurses version 1.9 and after, in order not to collide with the
        !           421: # internationalization attribute values specified in the XSI Curses standard).
        !           422: #
        !           423: # We use \E11m for rmacs rather than \E12m so the acsc string can use the ROM
        !           424: # graphics for control characters such as the diamond, up arrow and down-arrow.
        !           425: # This trick could work with other Intel consoles like the att6386 and pc3.
        !           426: #
        !           427: # Note: there are numerous broken linux entries out there, which didn't screw
        !           428: # up BSD termcap but hose ncurses's smarter cursor-movement optimization.
        !           429: # One common pathology is an incorrect tab length of 4.  Also note that the
        !           430: # hpa=\E[%dG/vpa=\E[%dd capabilities seem not to be reliable.  To reproduce
        !           431: # the bug, re-introduce them and run worm -T 200 212 from the ncurses
        !           432: # test suite, save the trace, then worm -N -T 200 212.  Observe that the first
        !           433: # run fails to properly delete some worm segments, then diff the trace files.
        !           434: #
        !           435: # From: Eric S. Raymond <esr@snark.thyrsus.com> 23 July 1995
        !           436: linux|linux console:\
        !           437:        :am:bs:eo:mi:ms:xn:xo:\
        !           438:        :co#80:it#8:li#25:\
        !           439:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:IC=\E[%d@:K2=\E[G:\
        !           440:        :ae=\E[10m:al=\E[L:as=\E[11m:bl=^G:cd=\E[J:ce=\E[K:\
        !           441:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !           442:        :ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:\
        !           443:        :ic=\E[@:im=\E[4h:k1=\E[[A:k2=\E[[B:k3=\E[[C:\
        !           444:        :k4=\E[[D:k5=\E[[E:k6=\E[17~:k7=\E[18~:k8=\E[19~:\
        !           445:        :k9=\E[20~:kb=^H:kd=\E[B:kh=\E[1~:kl=\E[D:kr=\E[C:\
        !           446:        :ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[0;10m:\
        !           447:        :mr=\E[7m:nd=\E[C:nw=^M^J:rc=\E8:\
        !           448:        :..sa=\E[0;10%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;%?%p7%t;8%;%?%p8%t;11%;%?%p9%t;11%;m:\
        !           449:        :sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !           450:        :ue=\E[24m:up=\E[A:us=\E[4m:vb=\E[?5h\E[?5l:\
        !           451:        :ve=\E[?25h:vi=\E[?25l:
        !           452: linux-mono|Linux console, no color:\
        !           453:        :tc=linux:
        !           454:
        !           455: # See the note on ICH/ICH1 VERSUS RMIR/SMIR near the end of file
        !           456: linux-nic|linux with ich/ich1 suppressed for non-curses programs:\
        !           457:        :IC@:ei=:ic@:im=:tc=linux:
        !           458:
        !           459: # SCO console and SOS-Syscons console for 386bsd
        !           460: # (scoansi: had unknown capabilities
        !           461: #      :Gc=N:Gd=K:Gh=M:Gl=L:Gu=J:Gv=\072:\
        !           462: #      :GC=E:GD=B:GH=D:GL=\64:GU=A:GV=\63:GR=C:RT=^J:
        !           463: #      :G1=?:G2=Z:G3=@:G4=Y:G5=;:G6=I:G7=H:G8=<:\
        !           464: #      :CW=\E[M:NU=\E[N:RF=\E[O:RC=\E[P:\
        !           465: #      :WL=\E[S:WR=\E[T:CL=\E[U:CR=\E[V:\
        !           466: # I renamed GS/GE/HM/EN/PU/PD and mapped ":pt:" to ":it#8:" -- esr)
        !           467: scoansi|SCO Extended ANSI standard crt:\
        !           468:        :am:bs:eo:pt:\
        !           469:        :co#80:it#8:li#25:\
        !           470:        :ae=\E[10m:al=\E[L:as=\E[12m:bt=\E[Z:cd=\E[J:ce=\E[K:\
        !           471:        :cl=\E[2J\E[H:cm=\E[%i%d;%dH:dc=\E[P:dl=\E[M:do=\E[B:\
        !           472:        :ei=:ho=\E[H:ic=\E[@:im=:k1=\E[M:k2=\E[N:k3=\E[O:\
        !           473:        :k4=\E[P:k5=\E[Q:k6=\E[R:k7=\E[S:k8=\E[T:k9=\E[U:\
        !           474:        :kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:\
        !           475:        :mb=\E[5m:md=\E[1m:me=\E[m:nd=\E[C:se=\E[m:sf=\E[S:\
        !           476:        :so=\E[7m:sr=\E[T:ue=\E[m:up=\E[A:us=\E[4m:
        !           477:
        !           478: # From: Eric Raymond <esr@snark.thyrsus.com> Wed Jan 18 17:14:34 EST 1995
        !           479: att6386|AT386|at386|386AT|386at|AT&T WGS 6386 console:\
        !           480:        :am:bw:eo:xo:\
        !           481:        :co#80:it#8:li#25:\
        !           482:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !           483:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:\
        !           484:        :ae=\E[10m:al=\E[1L:as=\E[12m:bl=^G:bt=\E[Z:cd=\E[J:\
        !           485:        :ce=\E[K:ch=\E[%i%dG:cl=\E[2J\E[H:cm=\E[%i%d;%dH:\
        !           486:        :cr=^M:ct=\E[2g:cv=\E[%dd:dc=\E[P:dl=\E[1M:do=\E[B:\
        !           487:        :ec=\E[%dX:ei=:ho=\E[H:ic=\E[1@:im=:is=\E[0;10;39m:\
        !           488:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOT:k6=\EOU:\
        !           489:        :k7=\EOV:k8=\EOW:k9=\EOX:kb=^H:kd=\E[B:kh=\E[H:\
        !           490:        :kl=\E[D:kr=\E[C:ku=\E[A:le=\E[D:mb=\E[5m:md=\E[1m:\
        !           491:        :me=\E[0;10m:mk=\E[9m:mr=\E[7m:nd=\E[C:nw=\r\E[S:\
        !           492:        :..sa=\E[10m\E[0%?%p1%p3%|%t;7%;%?%p2%t;4%;%?%p4%t;5%;%?%p6%t;1%;%?%p9%t;12%e;10%;%?%p7%t;9%;m:\
        !           493:        :se=\E[m:sf=\E[S:so=\E[7m:sr=\E[T:st=\EH:ta=^I:\
        !           494:        :ue=\E[m:up=\E[A:us=\E[4m:vb=^G:tc=ansi-pc-color:
        !           495: # (pc6300plus: ":KM=/usr/lib/ua/kmap.s5:"; renamed BO/EE/CI/CV -- esr)
        !           496: pc6300plus|6300plus:\
        !           497:        :am:bs:\
        !           498:        :co#80:li#24:\
        !           499:        :al=\E[1L:bl=^G:cd=\E[0J:ce=\E[0K:cl=\E[2J\E[H:\
        !           500:        :cm=\E[%i%2;%2H:cr=^M:ct=\E[3g:dc=\E[1P:dl=\E[1M:\
        !           501:        :do=\E[B:ei=:ho=\E[H:ic=\E[1@:im=:k1=\EOc:k2=\EOd:\
        !           502:        :k3=\EOe:k4=\EOf:k5=\EOg:k6=\EOh:k7=\EOi:k8=\EOj:\
        !           503:        :k9=\EOk:kb=^H:kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:\
        !           504:        :mb=\E[5m:md=\E[1m:me=\E[m:mh=\E[2m:mk=\E[9m:\
        !           505:        :mr=\E[7m:nd=\E[C:nw=^M^J:se=\E[m:sf=^J:so=\E[7m:\
        !           506:        :st=\EH:ue=\E[m:up=\E[A:us=\E[4m:ve=\E[=1C:vi=\E[=C:
        !           507:
        !           508: #
        !           509: #      Terminfo entry for the AT&T Unix PC 7300
        !           510: #      from escape(7) in Unix PC 7300 Manual.
        !           511: #      Somewhat similar to a vt100-am (but different enough
        !           512: #      to redo this from scratch.)
        !           513: #
        !           514: #      /***************************************************************
        !           515: #      *
        !           516: #      *           FONT LOADING PROGRAM FOR THE UNIX PC
        !           517: #      *
        !           518: #      *     This routine loads a font defined in the file ALTFONT
        !           519: #      *     into font memory slot #1.  Once the font has been loaded,
        !           520: #      *     it can be used as an alternative character set.
        !           521: #      *
        !           522: #      *     The call to ioctl with the argument WIOCLFONT is the key
        !           523: #      *     to this routine.  For more information, see window(7) in
        !           524: #      *     the PC 7300 documentation.
        !           525: #      ***************************************************************/
        !           526: #      #include <string.h>             /* needed for strcpy call */
        !           527: #      #include <sys/window.h>         /* needed for ioctl call */
        !           528: #      #define FNSIZE  60              /* font name size */
        !           529: #      #define ALTFONT  "/usr/lib/wfont/special.8.ft"  /* font file */
        !           530: #      /*
        !           531: #      *     The file /usr/lib/wfont/special.8.ft comes with the
        !           532: #      *     standard PC software.  It defines a graphics character set
        !           533: #      *     similar to that of the Teletype 5425 terminal.  To view
        !           534: #      *     this or other fonts in /usr/lib/wfont, use the command
        !           535: #      *     cfont <filename>.  For further information on fonts see
        !           536: #      *     cfont(1) in the PC 7300 documentation.
        !           537: #      */
        !           538: #
        !           539: #      struct altfdata         /* structure for alt font data */
        !           540: #      {
        !           541: #      short   altf_slot;              /* memory slot number */
        !           542: #      char    altf_name[FNSIZE];      /* font name (file name) */
        !           543: #      };
        !           544: #      ldfont()
        !           545: #      {
        !           546: #              int wd;         /* window in which altfont will be */
        !           547: #              struct altfdata altf;
        !           548: #              altf.altf_slot=1;
        !           549: #              strcpy(altf.altf_name,ALTFONT);
        !           550: #              for (wd =1; wd < 12; wd++) {
        !           551: #                   ioctl(wd, WIOCLFONT,&altf);
        !           552: #              }
        !           553: #      }
        !           554: #
        !           555: att7300|unixpc|pc7300|3b1|s4|AT&T UNIX PC Model 7300:\
        !           556:        :am:xn:xo:\
        !           557:        :co#80:it#8:li#24:\
        !           558:        :AL=\E[%dL:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:\
        !           559:        :UP=\E[%dA:ae=\E[10m:al=\E[L:as=\E[11m:bl=^G:bt=\E^I:\
        !           560:        :cd=\E[0J:ce=\E[0K:cl=\E[2J\E[H:cm=\E[%i%d;%dH:cr=^M:\
        !           561:        :dl=\E[M:do=\E[B:ho=\E[H:i1=^O:k1=\EOP:k2=\EOQ:\
        !           562:        :k3=\EOR:k4=\EOS:k5=\E5:k6=\E6:k7=\E7:k8=\E8:kb=^H:\
        !           563:        :kd=\E[B:kh=\Ehm:kl=\E[D:kr=\E[C:ku=\E[A:md=\E[7m:\
        !           564:        :me=\E[0;10m:mh=\E[2m:mr=\E[7m:nd=\E[C:nw=\EE:\
        !           565:        :se=\E[0m:sf=^J:so=\E[7m:sr=\EM:ue=\E[0m:up=\E[A:\
        !           566:        :us=\E[4m:
        !           567:
        !           568: # From: <davis@unidata.ucar.edu>
        !           569: iris-ansi|iris-ansi-net|IRIS emulating ANSI terminal:\
        !           570:        :am:\
        !           571:        :co#80:it#8:li#40:\
        !           572:        :AL=\E[%dL:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:\
        !           573:        :UP=\E[%dA:al=\E[L:bl=^G:cd=\E[J:ce=\E[K:\
        !           574:        :cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:ct=\E[3g:dl=\E[M:\
        !           575:        :do=^J:ho=\E[H:\
        !           576:        :is=\E[?1l\E>\E[?7h\E[100g\E[0m\E7\E[r\E8:k1=\E[001q:\
        !           577:        :k2=\E[002q:k3=\E[003q:k4=\E[004q:k5=\E[005q:\
        !           578:        :k6=\E[006q:k7=\E[007q:k8=\E[008q:k9=\EOP:kb=^H:\
        !           579:        :kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:le=\E[D:\
        !           580:        :md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:nw=\EE:rc=\E8:\
        !           581:        :sc=\E7:se=\E[m:sf=\ED:so=\E[1;7m:sr=\EM:st=\EH:\
        !           582:        :ta=^I:ue=\E[m:up=\E[A:us=\E[4m:\
        !           583:        :ve=\E[9/y\E[12/y\E[=6l:vs=\E[10/y\E[=1h\E[=2l\E[=6h:
        !           584:
        !           585: # From: Alex R.N. Wetmore <aw2t@andrew.cmu.edu>
        !           586: oldpc3|oibmpc3|IBM PC 386BSD Console:\
        !           587:        :am:bs:bw:eo:\
        !           588:        :co#80:li#25:\
        !           589:        :cd=\E[J:ce=\E[K:cl=\Ec:cm=\E[%i%2;%2H:do=\E[B:\
        !           590:        :ho=\E[;H:kd=\E[B:kh=\E[Y:kl=\E[D:kr=\E[C:ku=\E[A:\
        !           591:        :md=\E[7m:me=\E[0m\E[1;0x\E[2;7x:nd=\E[C:\
        !           592:        :se=\E[1;0x\E[2;7x:sf=\E[S:so=\E[1;7x\E[2;0x:sr=\E[T:\
        !           593:        :ue=\E[1;0x\E[2;7x:up=\E[A:us=\E[1;7x\E[2;0x:
        !           594:
        !           595: # BSD/OS console emulator
        !           596: # The emulator supports many of the additional console features
        !           597: # listed in the iBSC2 (e.g. color and character-set selection).
        !           598: # The console will also work with fewer lines after doing
        !           599: # "stty rows NN", e.g. to use 24 lines.
        !           600: pc3ul|ibmpc3-ul|IBM PC BSD/OS Console:\
        !           601:        :am:bw:eo:km:\
        !           602:        :co#80:it#8:li#25:\
        !           603:        :AL=\E[%dL:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:\
        !           604:        :UP=\E[%dA:al=\E[L:bl=^G:cd=\E[J:ce=\E[K:cl=\Ec:\
        !           605:        :cm=\E[%i%d;%dH:cr=^M:dl=\E[M:do=^J:ho=\E[H:kb=^H:\
        !           606:        :kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:\
        !           607:        :mb=\E[5m:md=\E[1m:me=\E[0m:mh=\E[=8F:mr=\E[7m:\
        !           608:        :nd=\E[C:nw=^M^J:rc=\E[=u:sc=\E[=s:se=\E[0m:sf=^J:\
        !           609:        :so=\E[7m:ta=^I:up=\E[A:
        !           610: # (This is equivalent to the entry BSDI ships)
        !           611: pc3|ibmpc3|IBM PC BSD/OS Console with bold instead of underline:\
        !           612:        :ue=\E[0m:us=\E[1m:tc=pc3ul:
        !           613:
        !           614: # The following is a version of the ibm-pc entry distributed with PC/IX,
        !           615: # (Interactive Systems' System 3 for the Big Blue), modified by Richard
        !           616: # McIntosh at UCB/CSM.  The :pt: and :uc: have been removed from the original,
        !           617: # (the former is untrue, and the latter failed under UCB/man); standout and
        !           618: # underline modes have been added.  Note: this entry describes the "native"
        !           619: # capabilities of the PC monochrome display, without ANY emulation; most
        !           620: # communications packages (but NOT PC/IX connect) do some kind of emulation.
        !           621: pcix|PC/IX console:\
        !           622:        :am:bs:bw:eo:\
        !           623:        :co#80:li#24:\
        !           624:        :cd=\E[J:ce=\E[K:cl=\Ec:cm=\E[%i%2;%2H:do=\E[B:\
        !           625:        :ho=\E[;H:nd=\E[C:se=\E[0m:so=\E[7m:ue=\E[0m:up=\E[A:\
        !           626:        :us=\E[4m:
        !           627:
        !           628: # (ibmx: this entry formerly included the following unknown capabilities:
        !           629: #      :GC=b:GL=v:GR=t:RT=^J:\
        !           630: #      :GH=\E[196g:GV=\E[179g:\
        !           631: #      :GU=\E[193g:GD=\E[194g:\
        !           632: #      :G1=\E[191g:G2=\E[218g:G3=\E[192g:G4=\E[217g:\
        !           633: #      :CW=\E[E:NU=\E[F:RF=\E[G:RC=\E[H:\
        !           634: #      :WL=\E[K:WR=\E[L:CL=\E[M:CR=\E[N:\
        !           635: # I renamed GS/GE/WL/WR/CL/CR/PU/PD/HM/EN; also, removed a duplicate
        !           636: # ":kh=\E[Y:" -- esr)
        !           637: ibmpcx|xenix|ibmx|IBM PC xenix console display:\
        !           638:        :am:bs:ms:\
        !           639:        :co#80:li#25:\
        !           640:        :ae=\E[10m:al=\E[L:as=\E[11m:cd=\E[J:ce=\E[K:cl=^L:\
        !           641:        :cm=\E[%d;%dH:dc=\E[P:dl=\E[M:do=\E[B:ei=:ho=\E[H:\
        !           642:        :ic=\E[@:im=:k1=\E[K:k2=\E[L:k3=\E[M:k4=\E[N:kb=^H:\
        !           643:        :kd=\E[B:kh=\E[Y:kl=\E[D:kr=\E[C:ku=\E[A:nd=\E[C:\
        !           644:        :se=\E[0m:so=\E[7m:ue=\E[m:up=\E[A:us=\E[4m:
        !           645: ibmc|ibmcpc|IBM PC xenix color console display:\
        !           646:        :tc=ibmpcx:
        !           647: ibmcx|ibmcpcx:\
        !           648:        :tc=ibmpcx:
        !           649:
        !           650: pcvt25h|386BSD pcvt rel 2.10 vt220 emulator video driver:\
        !           651:        :am:km:mi:ms:xn:\
        !           652:        :it#8:pb#9216:vt#3:\
        !           653:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !           654:        :LE=\E[%dD:RI=\E[%dC:SF=\E%dD:SR=\E%dM:UP=\E[%dA:\
        !           655:        :ae=^O:al=\E[L:as=^N:bl=^G:cd=\E[J:ce=\E[K:\
        !           656:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !           657:        :ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:\
        !           658:        :i1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;25r\E[25;1H:\
        !           659:        :ic=\E[@:im=\E[4h:k1=\E[17~:k2=\E[18~:k3=\E[19~:\
        !           660:        :k4=\E[20~:k5=\E[21~:k6=\E[23~:k7=\E[24~:k8=\E[25~:\
        !           661:        :kb=^_:kd=\EOB:ke=\E[?1l\E>:kh=\E[1~:kl=\EOD:kr=\EOC:\
        !           662:        :ks=\E[?1h\E=:ku=\EOA:le=^H:mb=\E[5m:md=\E[1m:\
        !           663:        :me=\E[m:mr=\E[7m:nd=\E[C:nw=^M^J:rc=\E8:sc=\E7:\
        !           664:        :se=\E[27m:sf=\ED:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !           665:        :ue=\E[24m:up=\E[A:us=\E[4m:
        !           666:
        !           667: ## QNX 4.0 Console
        !           668: # No auto-margin capability is listed because the smcup capability string
        !           669: # explicitly turns it off. This allows full screen applications on terminals
        !           670: # to be able to address the bottom, right corner.
        !           671: # From: Michael Hunter <mphunter@qnx.com> 25 Aug 1995
        !           672: qnx|qnx4|qnx console:\
        !           673:        :km:mi:ms:xt:\
        !           674:        :co#80:it#4:li#25:\
        !           675:        :al=\EE:bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :\
        !           676:        :cr=^M:dc=\Ef:dl=\EF:do=^J:ei=:ho=\EH:ic=\Ee:im=:\
        !           677:        :k1=\377\201:k2=\377\202:k3=\377\203:k4=\377\204:\
        !           678:        :k5=\377\205:k6=\377\206:k7=\377\207:k8=\377\210:\
        !           679:        :k9=\377\211:kd=\377\251:kh=\377\240:kl=\377\244:\
        !           680:        :kr=\377\246:ku=\377\241:le=^H:mb=\E{:md=\E<:\
        !           681:        :me=\E}\E]\E>\E):mr=\E(:nd=\EC:rp=\Eg%r%+ %.:\
        !           682:        :..sa=%?%p1%t\E<%;%p2%t\E[%;%p3%t\E(%;%p4%t\E{%;%p6%t\E<%;:\
        !           683:        :se=\E):sf=^J:so=\E(:sr=\EI:ta=^I:te=\Eh\ER:ti=\Ei:\
        !           684:        :ue=\E]:up=\EA:us=\E[:ve=\Ey1:vi=\Ey0:vs=\Ey2:
        !           685:
        !           686: #### DEC VT100 and compatibles
        !           687:
        !           688: # DEC terminals from the vt100 forward are collected here.  Older DEC terminals
        !           689: # and micro consoles can be found in the `obsolete' section.  More details
        !           690: # on the relationship between the VT100 and ANSI X3.64 may be found near the
        !           691: # end of this file.
        !           692: #
        !           693: # Except where noted, these entries are DEC's official terminfos.
        !           694: # Contact Bill Hedberg <hedberg@hannah.enet.dec.com> of Terminal Support
        !           695: # Engineering for more information.  Updated terminfos and termcaps
        !           696: # are kept available at ftp://gatekeeper.dec.com/pub/DEC/termcaps.
        !           697: #
        !           698:
        !           699: # Note that the xenl glitch in vt100 is not quite the same as on the Concept,
        !           700: # since the cursor is left in a different position while in the
        !           701: # weird state (concept at beginning of next line, vt100 at end
        !           702: # of this line) so all versions of vi before 3.7 don't handle
        !           703: # xenl right on vt100. The correct way to handle xenl is when
        !           704: # you output the char in column 80, immediately output CR LF
        !           705: # and then assume you are in column 1 of the next line. If xenl
        !           706: # is on, am should be on too.
        !           707: #
        !           708: # I assume you have smooth scroll off or are at a slow enough baud
        !           709: # rate that it doesn't matter (1200? or less). Also this assumes
        !           710: # that you set auto-nl to "on", if you set it off use vt100-nam
        !           711: # below.
        !           712: #
        !           713: # The padding requirements listed here are guesses. It is strongly
        !           714: # recommended that xon/xoff be enabled, as this is assumed here.
        !           715: #
        !           716: # The vt100 uses rs2 and rf rather than is2/tbc/hts because the
        !           717: # tab settings are in non-volatile memory and don't need to be
        !           718: # reset upon login. Also setting the number of columns glitches
        !           719: # the screen annoyingly. You can type "reset" to get them set.
        !           720: #
        !           721: # This is how the keypad gets assigned in Application Keypad mode.
        !           722: #      PF1 = kf1         PF2 = kf2         PF3   = kf3       PF4 = kf4
        !           723: #      7   = kf9         8   = kf10        9     = kf0       -
        !           724: #      4   = kf5         5   = kf6         6     = kf7       ,   = kf8
        !           725: #      1   = ka1         2   = kb2         3     = ka3
        !           726: #      0   = kc1         .   = kc3         ENTER = kent
        !           727: #
        !           728: vt100|vt100-am|dec vt100 (w/advanced video):\
        !           729:        :am:mi:ms:xn:xo:\
        !           730:        :co#80:it#8:li#24:vt#3:\
        !           731:        :DO=\E[%dB:K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:\
        !           732:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:as=^N:bl=^G:\
        !           733:        :cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:\
        !           734:        :cs=\E[%i%d;%dr:ct=\E[3g:do=^J:ho=\E[H:k0=\EOy:\
        !           735:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOt:k6=\EOu:\
        !           736:        :k7=\EOv:k8=\EOl:k9=\EOw:kb=^H:kd=\EOB:ke=\E[?1l\E>:\
        !           737:        :kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:mb=\E[5m:\
        !           738:        :md=\E[1m:me=\E[m\017:mr=\E[7m:nd=\E[C:rc=\E8:\
        !           739:        :..sa=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;:\
        !           740:        :sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !           741:        :ue=\E[m:up=\E[A:us=\E[4m:
        !           742:
        !           743: vt100nam|vt100-nam|vt100 w/no am (w/advanced video):\
        !           744:        :am@:xn@:\
        !           745:        :tc=vt100-am:
        !           746:
        !           747: # Ordinary vt100 in 132 column ("wide") mode.
        !           748: vt100-w|vt100-w-am|dec vt100 132 cols (w/advanced video):\
        !           749:        :co#132:li#24:\
        !           750:        :tc=vt100-am:
        !           751: vt100-w-nam|vt100-nam-w|dec vt100 132 cols (w/advanced video no automargin):\
        !           752:        :co#132:li#14:vt@:\
        !           753:        :tc=vt100-nam:
        !           754:
        !           755: # vt100 with no advanced video.
        !           756: vt100-nav|vt100 without advanced video option:\
        !           757:        :sg#1:\
        !           758:        :mb@:md@:me@:mr@:sa@:se=\E[m:so=\E[7m:ue@:us@:tc=vt100:
        !           759: vt100-nav-w|vt100-w-nav|dec vt100 132 cols 14 lines (no advanced video option):\
        !           760:        :co#132:li#14:\
        !           761:        :tc=vt100-nav:
        !           762:
        !           763: # vt100 with one of the 24 lines used as a status line.
        !           764: # We put the status line on the top.
        !           765: vt100-s|vt100-s-top|vt100-top-s|vt100 for use with top sysline:\
        !           766:        :es:hs:\
        !           767:        :li#23:\
        !           768:        :cl=\E[2;1H\E[J:cm=\E[%i%+^A;%dH:cs=\E[%i%i%d;%dr:\
        !           769:        :ds=\E7\E[1;24r\E8:fs=\E8:ho=\E[2;1H:\
        !           770:        :is=\E7\E[2;24r\E8:ts=\E7\E[1;%p1%dH\E[1K:tc=vt100-am:
        !           771:
        !           772: # Status line at bottom.
        !           773: # Clearing the screen will clobber status line.
        !           774: vt100-s-bot|vt100-bot-s|vt100 for use with bottom sysline:\
        !           775:        :es:hs:\
        !           776:        :li#23:\
        !           777:        :ds=\E7\E[1;24r\E8:fs=\E8:is=\E[1;23r\E[23;1H:\
        !           778:        :ts=\E7\E[24;%p1%dH\E[1K:tc=vt100-am:
        !           779:
        !           780: # DEC VT100 with Advanced Video Option -- NOT DEC'S ENTRY!!!
        !           781: # This may be used as an alternate vt102 entry; it's probably better than the
        !           782: # stock one if you can live with XON/XOFF.  All the AVO gave you was smul/rmul.
        !           783: # From: Doug Gwyn <gwyn@smoke.brl.mil> 25 Jan 93
        !           784: # The following SET-UP modes are assumed for normal operation:
        !           785: #      ANSI_MODE       AUTO_XON/XOFF_ON        NEWLINE_OFF     80_COLUMNS
        !           786: #      WRAP_AROUND_ON
        !           787: # Other SET-UP modes may be set for operator convenience or communication
        !           788: # requirements; I recommend
        !           789: #      SMOOTH_SCROLL   AUTOREPEAT_ON   BLOCK_CURSOR    MARGIN_BELL_OFF
        !           790: #      SHIFTED_3_#
        !           791: # Unless you have a graphics add-on such as Digital Engineering's VT640
        !           792: # (and even then, whenever it can be arranged!) you should set
        !           793: #      INTERLACE_OFF
        !           794: # Hardware tabs are assumed to be set every 8 columns; they can be set up
        !           795: # by the "reset", "tset", or "tabs" utilities (use vt100-x, 132 columns, for
        !           796: # this).  I have included some compatible code in "rs" for the VT640 if you
        !           797: # have one.  No delays are specified; use "stty ixon -ixany" to enable DC3/DC1
        !           798: # flow control!
        !           799: # Thanks to elsie!ado (Arthur David Olson) for numerous improvements.
        !           800: vt100-avo|DEC VT100 with AVO:\
        !           801:        :ms:xo:\
        !           802:        :co#80:it#8:li#24:vt#3:\
        !           803:        :DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:as=^N:\
        !           804:        :bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:\
        !           805:        :cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:do=^J:ho=\E[H:\
        !           806:        :is=\E<\E)0:k0=\EOP:k1=\EOQ:k2=\EOR:k3=\EOS:kb=^H:\
        !           807:        :kd=\EOB:ke=\E[?1l\E>:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:\
        !           808:        :ku=\EOA:le=^H:ll=\E[24H:mb=\E[5m:md=\E[1m:me=\E[m:\
        !           809:        :mr=\E[7m:nd=\E[C:nw=\EE:rc=\E8:sc=\E7:se=\E[m:sf=^J:\
        !           810:        :so=\E[7m:sr=\EM:st=\EH:ta=^I:te=150\E[?7h:ti=\E[?7l:\
        !           811:        :ue=\E[m:up=\EM:us=\E[4m:
        !           812:
        !           813: # Most of the `vt100' emulators out there actually emulate a vt102
        !           814: # This entry (or vt102-nsgr) is probably the right thing to use for
        !           815: # these.
        !           816: vt102|dec vt102:\
        !           817:        :mi:\
        !           818:        :al=\E[L:dc=\E[P:dl=\E[M:ei=\E[4l:im=\E[4h:tc=vt100:
        !           819:
        !           820: # Many brain-dead PC comm programs that pretend to be `vt100-compatible'
        !           821: # fail to interpret the ^O and ^N escapes properly.  Symptom: the sgr0
        !           822: # string in the canonical vt100 entry above leaves the screen littered
        !           823: # with little  snowflake or star characters (IBM PC ROM character \017 = ^O)
        !           824: # after highlight turnoffs.  This entry should fix that, and even leave
        !           825: # ACS support working, at the cost of making multiple-highlight changes
        !           826: # slightly more expensive.
        !           827: # From: Eric S. Raymond <esr@snark.thyrsus.com> July 22 1995
        !           828: vt102-nsgr|dec vt102 with ACS support disabled:\
        !           829:        :me=\E[m:sa@:tc=vt102:
        !           830:
        !           831: # VT125 Graphics CRT.  Clear screen also erases graphics
        !           832: vt125|vt125 graphics terminal:\
        !           833:        :cl=\E[;H\E[2J\EPpS(E)\E\\:tc=vt100:
        !           834:
        !           835: # vt132 - like vt100 but slower and has ins/del line and such.
        !           836: # I'm told that smir/rmir are backwards in the terminal from the
        !           837: # manual and from the ANSI standard, this describes the actual
        !           838: # terminal. I've never actually used a vt132 myself, so this
        !           839: # is untested.
        !           840: #
        !           841: vt132|DEC vt132:\
        !           842:        :xn:\
        !           843:        :al=\E[L:dc=\E[P:dl=\E[M:ei=\E[4h:im=\E[4l:ip=:sf=\n:tc=vt100:
        !           844:
        !           845: # vt220:
        !           846: # This vt220 description maps F5--F9 to the second block of function keys
        !           847: # at the top of the keyboard.  The "DO" key is used as F10 to avoid conflict
        !           848: # with the key marked (ESC) on the vt220.  See vt220d for an alternate mapping.
        !           849: # PF1--PF4 are used as F1--F4.
        !           850: #
        !           851: vt220|DEC VT220 in vt100 emulation mode:\
        !           852:        :am:mi:xn:xo:\
        !           853:        :co#80:li#24:vt#3:\
        !           854:        :ae=\E(B:al=\E[L:as=\E(0:bl=^G:cd=\E[J:ce=\E[K:\
        !           855:        :cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !           856:        :dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:ho=\E[H:\
        !           857:        :if=/usr/share/tabset/vt100:im=\E[4h:\
        !           858:        :is=\E[1;24r\E[24;1H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
        !           859:        :k5=\E[17~:k6=\E[18~:k7=\E[19~:k8=\E[20~:k9=\E[21~:\
        !           860:        :kb=^H:kd=\E[B:kh=\E[1~:kl=\E[D:kr=\E[C:ku=\E[A:\
        !           861:        :le=^H:mb=\E[5m:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:\
        !           862:        :rc=\E8:\
        !           863:        :..sa=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;:\
        !           864:        :sc=\E7:se=\E[m:sf=20\ED:so=\E[7m:sr=14\EM:ta=^I:\
        !           865:        :ue=\E[m:up=\E[A:us=\E[4m:ve=\E[?25h:vi=\E[?25l:
        !           866: #
        !           867: # vt220d:
        !           868: # This vt220 description regards F6--F10 as the second block of function keys
        !           869: # at the top of the keyboard.  This mapping follows the description given
        !           870: # in the VT220 Programmer Reference Manual and agrees with the labeling
        !           871: # on some terminals that emulate the vt220.  There is no support for an F5.
        !           872: # See vt220 for an alternate mapping.
        !           873: #
        !           874: vt220d|DEC VT220 in vt100 mode with DEC function key labeling:\
        !           875:        :k5@:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:tc=vt220:
        !           876:
        !           877: vt220nam|vt220-nam|v220n|VT220 in vt100 mode with no auto margins:\
        !           878:        :am@:\
        !           879:        :tc=vt220:
        !           880:
        !           881: vt220-8|dec vt220 8 bit terminal:\
        !           882:        :am:mi:ms:xn:xo:\
        !           883:        :co#80:it#8:li#24:\
        !           884:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !           885:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:\
        !           886:        :bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:\
        !           887:        :cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:\
        !           888:        :ec=\E[%dX:ei=\E[4l:ho=\E[H:if=/usr/share/tabset/vt100:\
        !           889:        :im=\E[4h:is=\E[?7h\E[>\E[?1h\E F\E[?4l:k1=\EOP:\
        !           890:        :k2=\EOQ:k3=\EOR:k4=\EOS:k6=\E[17~:k7=\E[18~:\
        !           891:        :k8=\E[19~:k9=\E[20~:kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:\
        !           892:        :kr=\E[C:ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[0m:\
        !           893:        :mr=\E[7m:nd=\E[C:nw=\EE:pf=\E[4i:po=\E[5i:ps=\E[i:\
        !           894:        :rc=\E8:sc=\E7:se=\E[27m:sf=\ED:so=\E[7m:sr=\EM:\
        !           895:        :st=\EH:ta=^I:ue=\E[24m:up=\E[A:us=\E[4m:\
        !           896:        :vb=\E[?5h\E[?5l:
        !           897:
        !           898: # This was DEC's vt320.  Use the purpose-built one below instead
        !           899: #vt320|DEC VT320 in vt100 emulation mode,
        !           900: #      use=vt220,
        !           901:
        !           902: #
        !           903: # Use v320n for SCO's LYRIX.  Otherwise, use Adam Thompson's vt320-nam.
        !           904: #
        !           905: vt320nam|vt320-nam|v320n|DEC VT320 in vt100 emul. mode with NO AUTO WRAP mode:\
        !           906:        :am@:\
        !           907:        :tc=vt220:
        !           908:
        !           909: # These entries are not DEC's official ones, they were purpose-built for the
        !           910: # VT320.  Here are the designer's notes:
        !           911: # Specifying am kills SAS, so a vt320-sas with .am is needed for such
        !           912: # situations... I think this is a bug in SAS v6.07, where am2 actually
        !           913: # *overrides* am, and causes goofy behaviour.
        !           914: # kel is end on a PC kbd.  Actually 'select' on a VT.  Mapped to 'Erase to End
        !           915: # of Field'... since nothing seems to use 'end' anyways...
        !           916: # khome is Home on a PC kbd.  Actually 'FIND' on a VT.
        !           917: # Things that use knxt usually use tab anyways... and things that don't use
        !           918: # tab usually use knxt instead...
        !           919: # kprv is same as tab - Backtab is useless...
        !           920: # I left out sgr because of its RIDICULOUS complexity,
        !           921: # and the resulting fact that it causes the termcap translation of the entry
        !           922: # to SMASH the 1k-barrier...
        !           923: # From: Adam Thompson <thompson@xanth.magic.mb.ca> Sept 10 1995
        !           924: vt320|vt300|dec vt320 7 bit terminal:\
        !           925:        :am:es:hs:mi:ms:xn:\
        !           926:        :co#80:li#24:ws#80:\
        !           927:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !           928:        :K1=\EOw:K2=\EOu:K3=\EOy:K4=\EOq:K5=\EOs:LE=\E[%dD:\
        !           929:        :RI=\E[%dC:UP=\E[%dA:ae=\E(B:al=\E[L:as=\E(0:bl=^G:\
        !           930:        :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:cm=\E[%i%d;%dH:cr=^M:\
        !           931:        :cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:\
        !           932:        :ec=\E[%dX:ei=\E[4l:ho=\E[H:im=\E[4h:\
        !           933:        :is=\E>\E[?3l\E[?4l\E[5?l\E[?7h\E[?8h\E[1;24r\E[24;1H:\
        !           934:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k6=\E[17~:k7=\E[18~:\
        !           935:        :k8=\E[19~:k9=\E[20~:kb=\177:kd=\EOB:ke=\E[?1l\E>:\
        !           936:        :kh=\E[1~:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:\
        !           937:        :mb=\E[5m:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:nw=\EE:\
        !           938:        :pf=\E[?4i:po=\E[?5i:ps=\E[i:rc=\E8:sc=\E7:se=\E[m:\
        !           939:        :sf=\ED:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !           940:        :ts=\E[1$}\E[;H\E[K:ue=\E[m:up=\E[A:us=\E[4m:\
        !           941:        :ve=\E[?25h:vi=\E[?25l:
        !           942: vt320-nam|vt300-nam|dec vt320 7 bit terminal with no am to make SAS happy:\
        !           943:        :am@:\
        !           944:        :is=\E>\E[?3l\E[?4l\E[5?l\E[?7l\E[?8h\E[1;24r\E[24;1H:tc=vt320:
        !           945: # We have to init 132-col mode, not 80-col mode.
        !           946: vt320-w|vt300-w|dec vt320 wide 7 bit terminal:\
        !           947:        :co#132:ws#132:\
        !           948:        :is=\E>\E[?3h\E[?4l\E[5?l\E[?7h\E[?8h\E[1;24r\E[24;1H:tc=vt320:
        !           949: vt320-w-nam|vt300-w-nam|dec vt320 wide 7 bit terminal with no am:\
        !           950:        :am@:\
        !           951:        :is=\E>\E[?3h\E[?4l\E[5?l\E[?7l\E[?8h\E[1;24r\E[24;1H:tc=vt320-w:
        !           952:
        !           953: vt420|DEC VT420:\
        !           954:        :am:mi:xn:xo:\
        !           955:        :co#80:li#24:vt#3:\
        !           956:        :ae=\E(B:al=\E[L:as=\E(0:bl=^G:cd=\E[J:ce=\E[K:\
        !           957:        :cl=\E[;H\E[2J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !           958:        :dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:ho=\E[H:\
        !           959:        :i2=\E[?67h\E[64;1"p:if=/usr/share/tabset/vt100:\
        !           960:        :im=\E[4h:is=\E[1;24r\E[24;1H:k0=\E[29~:k1=\EOP:\
        !           961:        :k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[17~:k6=\E[18~:\
        !           962:        :k7=\E[19~:k8=\E[20~:k9=\E[21~:kb=^H:kd=\E[B:ke=\E>:\
        !           963:        :kl=\E[D:kr=\E[C:ks=\E=:ku=\E[A:le=^H:mb=\E[5m:\
        !           964:        :md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:rc=\E8:\
        !           965:        :..sa=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;:\
        !           966:        :se=\E[m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:ue=\E[m:\
        !           967:        :up=\E[A:us=\E[4m:
        !           968:
        !           969: vt420nam|vt420-nam|v420n|DEC VT420 in vt100 emul. mode with NO AUTO WRAP mode:\
        !           970:        :am@:\
        !           971:        :tc=vt420:
        !           972:
        !           973: #
        !           974: #  DECUDK
        !           975: #               if (key < 16) then  value = key;
        !           976: #               else if (key < 21) then value = key + 1;
        !           977: #               else if (key < 25) then value = key + 2;
        !           978: #               else if (key < 27) then value = key + 3;
        !           979: #               else if (key < 30) then value = key + 4;
        !           980: #               else value = key + 5;
        !           981: #
        !           982: vt420pc|DEC VT420 w/PC keyboard:\
        !           983:        :k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~:k5=\E[15~:\
        !           984:        :k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kh=\E[H:tc=vt420:
        !           985:
        !           986: vt420pcdos|DEC VT420 w/PC for DOS Merge:\
        !           987:        :li#25:\
        !           988:        :me=\E[0m:sa@:tc=vt420pc:
        !           989:
        !           990: vt420f|DEC VT420 with VT kbd; VT400 mode; F1-F5 used as Fkeys:\
        !           991:        :k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~:k5=\E[15~:\
        !           992:        :k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kh=\E[H:tc=vt420:
        !           993:
        !           994: vt420f-nam|v420fn|DEC VT420 no auto margins:\
        !           995:        :am@:\
        !           996:        :tc=vt420f:
        !           997: vt420pc-nam|v420pcn|DEC VT420 PC keyboard no auto margins:\
        !           998:        :am@:\
        !           999:        :tc=vt420pc:
        !          1000:
        !          1001: vt510|DEC VT510:\
        !          1002:        :tc=vt420:
        !          1003: vt510nam|vt510-nam|v510n|DEC VT510 in vt100 emul. mode with NO AUTO WRAP mode:\
        !          1004:        :tc=vt420nam:
        !          1005: vt510pc|DEC VT510 w/PC keyboard:\
        !          1006:        :tc=vt420pc:
        !          1007: vt510pc-nam|v510pcn|DEC VT510 PC keyboard no auto margins:\
        !          1008:        :am@:\
        !          1009:        :tc=vt420pc:
        !          1010: vt510pcdos|DEC VT510 w/PC for DOS Merge:\
        !          1011:        :tc=vt420pcdos:
        !          1012:
        !          1013: # VT520/VT525
        !          1014: #
        !          1015: # The VT520 is a monochrome text terminal capable of managing up to
        !          1016: # four independent sessions in the terminal.  It has multiple ANSI
        !          1017: # emulations (VT520, VT420, VT320, VT220, VT100, VT PCTerm, SCO Console)
        !          1018: # and ASCII emulations (WY160/60, PCTerm, 50/50+, 150/120, TVI 950,
        !          1019: # 925 910+, ADDS A2).  This terminfo data is for the ANSI emulations only.
        !          1020: #
        !          1021: # Terminal Set-Up is entered by pressing [F3], [Caps Lock]/[F3] or
        !          1022: # [Alt]/[Print Screen] depending upon which keyboard and which
        !          1023: # terminal mode is being used.  If Set-Up has been disabled or
        !          1024: # assigned to an unknown key, Set-Up may be entered by pressing
        !          1025: # [F3] as the first key after power up, regardless of keyboard type.
        !          1026: vt520|DEC VT520:\
        !          1027:        :am:mi:xn:xo:\
        !          1028:        :co#80:li#24:vt#3:\
        !          1029:        :ae=\E(B:al=\E[L:as=\E(0:bl=^G:cd=\E[J:ce=\E[K:\
        !          1030:        :cl=\E[;H\E[2J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !          1031:        :dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:ho=\E[H:\
        !          1032:        :i2=\E[?67h\E[64;1"p:if=/usr/share/tabset/vt100:\
        !          1033:        :im=\E[4h:is=\E[1;24r\E[24;1H:k0=\E[29~:k1=\EOP:\
        !          1034:        :k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[17~:k6=\E[18~:\
        !          1035:        :k7=\E[19~:k8=\E[20~:k9=\E[21~:kb=^H:kd=\E[B:kl=\E[D:\
        !          1036:        :kr=\E[C:ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[m:\
        !          1037:        :mr=\E[7m:nd=\E[C:rc=\E8:\
        !          1038:        :..sa=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;:\
        !          1039:        :se=\E[m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:ue=\E[m:\
        !          1040:        :up=\E[A:us=\E[4m:
        !          1041:
        !          1042: vt520nam|vt520-nam|v520n|DEC VT520 with NO AUTO WRAP:\
        !          1043:        :am@:\
        !          1044:        :tc=vt520:
        !          1045:
        !          1046: vt525|DEC VT525:\
        !          1047:        :am:mi:xn:xo:\
        !          1048:        :co#80:li#24:vt#3:\
        !          1049:        :ae=\E(B:al=\E[L:as=\E(0:bl=^G:cd=\E[J:ce=\E[K:\
        !          1050:        :cl=\E[;H\E[2J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !          1051:        :dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:ho=\E[H:\
        !          1052:        :i2=\E[?67h\E[64;1"p:if=/usr/share/tabset/vt100:\
        !          1053:        :im=\E[4h:is=\E[1;24r\E[24;1H:k0=\E[29~:k1=\EOP:\
        !          1054:        :k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[17~:k6=\E[18~:\
        !          1055:        :k7=\E[19~:k8=\E[20~:k9=\E[21~:kb=^H:kd=\E[B:kl=\E[D:\
        !          1056:        :kr=\E[C:ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[m:\
        !          1057:        :mr=\E[7m:nd=\E[C:rc=\E8:\
        !          1058:        :..sa=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p1%p3%|%t;7%;m%?%p9%t\E(0%e\E(B%;:\
        !          1059:        :se=\E[m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:ue=\E[m:\
        !          1060:        :up=\E[A:us=\E[4m:
        !          1061:
        !          1062: vt525nam|vt525-nam|v525n|DEC VT525 with NO AUTO WRAP:\
        !          1063:        :am@:\
        !          1064:        :tc=vt525:
        !          1065:
        !          1066: #### VT100 emulations
        !          1067: #
        !          1068:
        !          1069: # Zstem340 is an (IMHO) excellent VT emulator for PC's.  I recommend it to
        !          1070: # anyone who needs PC VT340 emulation. (or anything below that level, for
        !          1071: # that matter -- DEC's ALL-in-1 seems happy with it, as does INFOPLUS's
        !          1072: # RDBM systems, it includes ReGIS and SiXel support!  I'm impressed...
        !          1073: # I can send the address if requested.
        !          1074: # From: Adam Thompson <thompson@xanth.magic.mb.ca> Sept 10 1995
        !          1075: z340|zstem vt340 terminal emulator 132col 42line:\
        !          1076:        :li#42:\
        !          1077:        :is=\E>\E[?3h\E[?4l\E[5?l\E[?7h\E[?8h\E[1;42r\E[42;1H:tc=vt320-w:
        !          1078: z340-nam|zstem vt340 terminal emulator 132col 42line:\
        !          1079:        :am@:\
        !          1080:        :is=\E>\E[?3h\E[?4l\E[5?l\E[?7l\E[?8h\E[1;42r\E[42;1H:tc=z340:
        !          1081:
        !          1082: #### Xterm variants
        !          1083: #
        !          1084:
        !          1085: # X10/6.6      11/7/86, minus alternate screen, plus (csr)
        !          1086: # (xterm: ":MT:" changed to ":km:"; mapped ":pt:" to ":it#8:";
        !          1087: # removed (hs, eslok, tsl=\E[?E\E[?%i%dT, fsl=\E[?F, dsl=\E[?E)
        !          1088: # as these seem not to work -- esr)
        !          1089: x10term|vs100-x10|xterm terminal emulator (X10 window system):\
        !          1090:        :am:bs:km:mi:ms:pt:xn:xo:\
        !          1091:        :co#80:it#8:li#65:\
        !          1092:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:al=\E[L:cd=\E[J:\
        !          1093:        :ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cs=\E[%i%d;%dr:\
        !          1094:        :dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:\
        !          1095:        :is=\E\E[m\E[?7h\E[?1;4l:k1=\EOP:k2=\EOQ:k3=\EOR:\
        !          1096:        :k4=\EOS:kb=^H:kd=\EOB:ke=\E[?1l\E>:kl=\EOD:kr=\EOC:\
        !          1097:        :ks=\E[?1h\E=:ku=\EOA:le=^H:md=\E[1m:me=\E[m:\
        !          1098:        :mr=\E[7m:nd=\E[C:\
        !          1099:        :rs=\E[r\E<\E[m\E[H\E[2J\E[?7h\E[?1;3;4;6l:se=\E[m:\
        !          1100:        :sf=^J:so=\E[7m:sr=\EM:ue=\E[m:up=\E[A:us=\E[4m:
        !          1101: # X11R6 xterm.  This is known good for the XFree86 version under Linux.
        !          1102: # From: Eric S. Raymond <esr@snark.thyrsus.com> 9 Jul 1995
        !          1103: # Note: If you use the line-drawing character set, the disable afterwards
        !          1104: # will leave you in US-ASCII.  If you live somewhere that wants a pound sign
        !          1105: # at 2/3, change rmacs to "\E(A".  Further note: cuf and cub don't seem
        !          1106: # to be reliable under my xterm, so they're commented out.  Final note:
        !          1107: # Older versions of this entry set/reset application keypad mode (\EO-prefix
        !          1108: # cursor keys) in the [sr]mkx caps, but it wasn't necessary, and doesn't
        !          1109: # actually fit the terminfo model properly.
        !          1110: xterm|vs100|xterm terminal emulator (X11R6 Window System):\
        !          1111:        :am:bs:km:mi:ms:pt:xn:xo:\
        !          1112:        :co#80:it#8:li#65:\
        !          1113:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:IC=\E[%d@:LE=\E[%dD:\
        !          1114:        :UP=\E[%dA:ae=\E(B:al=\E[L:as=\E(0:bl=^G:cd=\E[J:\
        !          1115:        :ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:\
        !          1116:        :cs=\E[%i%d;%dr:ct=\E[3k:dc=\E[P:dl=\E[M:do=^J:\
        !          1117:        :ei=\E[4l:ho=\E[H:ic=\E[@:im=\E[4h:\
        !          1118:        :is=\E[r\E[m\E[2J\E[H\E[?7h\E[?1;3;4;6l\E[4l:\
        !          1119:        :k1=\E[11~:k2=\E[12~:k3=\E[13~:k4=\E[14~:k5=\E[15~:\
        !          1120:        :k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kb=^H:\
        !          1121:        :kd=\E[B:kh=\E[@:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:\
        !          1122:        :md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:rc=\E8:sc=\E7:\
        !          1123:        :se=\E[m:sf=^J:so=\E[7m:sr=\EM:ta=^I:\
        !          1124:        :te=\E[2J\E[?47l\E8:ti=\E7\E[?47h:ue=\E[m:up=\E[A:\
        !          1125:        :us=\E[4m:
        !          1126: xterm24|vs100-24|xterm terminal emulator (24 lines) (X11R6 window system):\
        !          1127:        :co#80:li#24:\
        !          1128:        :tc=xterm:
        !          1129: xterm25|vs100-25|xterm terminal emulator (25 lines) (X11R6 window system):\
        !          1130:        :co#80:li#25:\
        !          1131:        :tc=xterm:
        !          1132: xterm50|vs100-50|xterm terminal emulator (50 lines) (X11R6 window system):\
        !          1133:        :co#80:li#50:\
        !          1134:        :tc=xterm:
        !          1135: xterms|vs100s|xterm terminal emulator (small) (X11R6 window system):\
        !          1136:        :tc=xterm24:
        !          1137: # (kterm: this had unknown capabilities ":KJ:TY=ascii:" -- esr)
        !          1138: kterm|kterm kanji terminal emulator (X window system):\
        !          1139:        :es:hs:\
        !          1140:        :cs=\E[%i%d;%dr:ds=\E[?H:fs=\E[?F:rc=\E8:sc=\E7:\
        !          1141:        :ts=\E[?E\E[?%i%dT:tc=xterm:
        !          1142:
        !          1143: # See the note on ICH/ICH1 VERSUS RMIR/SMIR near the end of file
        !          1144: xterm-nic|xterm with ich/ich1 suppressed for non-curses programs:\
        !          1145:        :IC@:ei=:ic@:im=:tc=xterm:
        !          1146:
        !          1147: # From: Eric S. Raymond <esr@snark.thyrsus.com> May 4 1995
        !          1148: # Should work with the color xterm on the X11R6 contrib tape.
        !          1149: xterm-color|xterm with color support:\
        !          1150:        :tc=xterm:tc=ansi-pc-color:
        !          1151:
        !          1152: # From: David J. MacKenzie <djm@va.pubnix.com> 20 Apr 1995
        !          1153: # Here's a termcap entry I've been using for xterm_color, which comes
        !          1154: # with BSD/OS 2.0, and the X11R6 contrib tape too I think.  Besides the
        !          1155: # color stuff, I also have a status line defined as the window manager
        !          1156: # title bar. [I have translated it to terminfo -- ESR]
        !          1157: xterm-pcolor|xterm with color used for highlights and status line:\
        !          1158:        :hs:\
        !          1159:        :ws#40:\
        !          1160:        :ds=\E]0;\007:fs=^G:md=\E[1m\E[43m:mr=\E[7m\E[34m:\
        !          1161:        :so=\E[7m\E[31m:ts=\E]0;:us=\E[4m\E[42m:tc=xterm:
        !          1162:
        !          1163: ######## UNIX VIRTUAL TERMINALS AND VIRTUAL CONSOLES
        !          1164: #
        !          1165:
        !          1166: # Columbus UNIX virtual terminal. This terminal also appears in
        !          1167: # UNIX 4.0 and successors as line discipline 1 (?), but is
        !          1168: # undocumented and does not really work quite right.
        !          1169: cbunix|cb unix virtual terminal:\
        !          1170:        :am:bs:da:db:\
        !          1171:        :co#80:li#24:lm#0:\
        !          1172:        :al=\EP:bl=^G:cd=\EL:ce=\EK:cl=\EL:cm=\EG%r%.%.:\
        !          1173:        :cr=^M:dc=\EM:dl=\EN:do=^J:ei=:ic=\EO:im=:kd=\EB:\
        !          1174:        :kh=\EE:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:se=\Eb^D:\
        !          1175:        :sf=^J:so=\Ea^D:ue=\Eb^A:up=\EA:us=\Ea^A:
        !          1176: # (vremote: removed obsolete ":nl@:" -- esr)
        !          1177: vremote|virtual remote terminal:\
        !          1178:        :am@:\
        !          1179:        :co#79:\
        !          1180:        :tc=cbunix:
        !          1181: pty|4bsd pseudo teletype:\
        !          1182:        :cm=\EG%+ %+ :se=\Eb$:so=\Ea$:ue=\Eb!:us=\Ea!:tc=cbunix:
        !          1183:
        !          1184: # Entries for use by the FSF's `screen' program.  These came with version 3.6.2
        !          1185: screen|VT 100/ANSI X3.64 virtual terminal:\
        !          1186:        :am:km:mi:ms:xn:\
        !          1187:        :co#80:it#8:li#24:\
        !          1188:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          1189:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:\
        !          1190:        :bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          1191:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:\
        !          1192:        :dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:\
        !          1193:        :is=\E)0:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:\
        !          1194:        :k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kb=^H:\
        !          1195:        :kd=\EOB:ke=\E[?1l\E>:kh=\E[1~:kl=\EOD:kr=\EOC:\
        !          1196:        :ks=\E[?1h\E=:ku=\EOA:le=^H:mb=\E[5m:md=\E[1m:\
        !          1197:        :me=\E[m:mr=\E[7m:nd=\E[C:nw=\EE:rc=\E8:sc=\E7:\
        !          1198:        :se=\E[23m:sf=^J:so=\E[3m:sr=\EM:st=\EH:ta=^I:\
        !          1199:        :ue=\E[24m:up=\EM:us=\E[4m:
        !          1200: screen-w|VT 100/ANSI X3.64 virtual terminal with 132 cols:\
        !          1201:        :am:km:mi:ms:xn:\
        !          1202:        :co#132:it#8:li#24:\
        !          1203:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          1204:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:\
        !          1205:        :bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          1206:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:\
        !          1207:        :dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:\
        !          1208:        :is=\E)0:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:\
        !          1209:        :k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kb=^H:\
        !          1210:        :kd=\EOB:ke=\E[?1l\E>:kh=\E[1~:kl=\EOD:kr=\EOC:\
        !          1211:        :ks=\E[?1h\E=:ku=\EOA:le=^H:mb=\E[5m:md=\E[1m:\
        !          1212:        :me=\E[m:mr=\E[7m:nd=\E[C:nw=\EE:rc=\E8:sc=\E7:\
        !          1213:        :se=\E[23m:sf=^J:so=\E[3m:sr=\EM:st=\EH:ta=^I:\
        !          1214:        :ue=\E[24m:up=\EM:us=\E[4m:
        !          1215:
        !          1216: ######## WORKSTATION CONSOLES
        !          1217: #
        !          1218:
        !          1219: #### Sun consoles
        !          1220: #
        !          1221:
        !          1222: # :is: resets scrolling region in case a previous user had used "tset vt100"
        !          1223: # (sun: mapped ":pt:" to ":it#8:" -- esr)
        !          1224: oldsun|Sun Microsystems Workstation console:\
        !          1225:        :am:bs:km:mi:ms:pt:\
        !          1226:        :co#80:it#8:li#34:\
        !          1227:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:IC=\E[%d@:al=\E[L:\
        !          1228:        :bl=^G:cd=\E[J:ce=\E[K:cl=^L:cm=\E[%i%d;%dH:cr=^M:\
        !          1229:        :dc=\E[P:dl=\E[M:do=\E[B:ei=:ic=\E[@:im=:is=\E[1r:\
        !          1230:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kd=\E[B:kh=\E[H:\
        !          1231:        :kl=\E[D:kr=\E[C:ku=\E[A:le=^H:nd=\E[C:rs=\E[1r:\
        !          1232:        :se=\E[m:sf=^J:so=\E[7m:ta=^I:up=\E[A:
        !          1233: # New entry from vendor
        !          1234: sun|sun1|sun2|Sun Microsystems Inc. workstation:\
        !          1235:        :am:km:ms:\
        !          1236:        :co#80:li#34:\
        !          1237:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:IC=\E[%d@:al=\E[L:\
        !          1238:        :bl=^G:cd=\E[J:ce=\E[K:cl=^L:cm=\E[%i%d;%dH:cr=^M:\
        !          1239:        :dc=\E[P:dl=\E[M:do=^J:ei=:ho=\E[H:ic=\E[@:im=:\
        !          1240:        :k1=\E[224z:k2=\E[225z:k3=\E[226z:k4=\E[227z:\
        !          1241:        :k5=\E[228z:k6=\E[229z:k7=\E[230z:k8=\E[231z:\
        !          1242:        :k9=\E[232z:kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:\
        !          1243:        :md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:\
        !          1244:        :..sa=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;m:\
        !          1245:        :se=\E[m:sf=^J:so=\E[7m:ta=^I:ue=\E[m:up=\E[A:\
        !          1246:        :us=\E[4m:
        !          1247: # From: <john@ucbrenoir>  Tue Sep 24 13:14:44 1985
        !          1248: sun-s|Sun Microsystems Workstation window with status line:\
        !          1249:        :hs:\
        !          1250:        :ds=\E]l\E\\:fs=\E\\:ts=\E]l:tc=sun:
        !          1251: sun-e-s|sun-s-e|Sun Microsystems Workstation with status hacked for emacs:\
        !          1252:        :hs:\
        !          1253:        :ds=\E]l\E\\:fs=\E\\:ts=\E]l:tc=sun-e:
        !          1254: sun-48|Sun 48-line window:\
        !          1255:        :co#80:li#48:\
        !          1256:        :tc=sun:
        !          1257: sun-34|Sun 34-line window:\
        !          1258:        :co#80:li#34:\
        !          1259:        :tc=sun:
        !          1260: sun-24|Sun 24-line window:\
        !          1261:        :co#80:li#24:\
        !          1262:        :tc=sun:
        !          1263: sun-17|Sun 17-line window:\
        !          1264:        :co#80:li#17:\
        !          1265:        :tc=sun:
        !          1266: sun-12|Sun 12-line window:\
        !          1267:        :co#80:li#12:\
        !          1268:        :tc=sun:
        !          1269: sun-1|Sun 1-line window for sysline:\
        !          1270:        :es:hs:\
        !          1271:        :co#80:li#1:\
        !          1272:        :ds=^L:fs=\E[K:ts=^M:tc=sun:
        !          1273: sun-e|sun-nic|sune|Sun Microsystems Workstation without insert character:\
        !          1274:        :ei@:ic@:im@:tc=sun:
        !          1275: sun-c|sun-cmd|Sun Microsystems Workstation console with scrollable history:\
        !          1276:        :te=\E[>4h:ti=\E[>4l:tc=sun:
        !          1277:
        !          1278: #### Iris consoles
        !          1279: #
        !          1280:
        !          1281: # (wsiris: this had unknown capabilities
        !          1282: #      :HS=\E7F2:HE=\E7F7:\
        !          1283: #      :CT#2:CZ=*Bblack,red,green,yellow,blue,magenta,cyan,*Fwhite:
        !          1284: # I mapped ":pt:" to ":it#8:", removed incorrect ":cl=\Ev:" -- esr)
        !          1285: wsiris|iris40|iris emulating a 40 line visual 50 (approximately):\
        !          1286:        :am:bs:pt:\
        !          1287:        :co#80:it#8:li#40:\
        !          1288:        :al=\EL:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :dl=\EM:\
        !          1289:        :ho=\EH:is=\E7B0\E7F7\E7C2\E7R3:k0=\E0:k1=\E1:k2=\E2:\
        !          1290:        :k3=\E3:k4=\E4:k5=\E5:k6=\E6:k7=\E7:k8=\E8:k9=\E9:\
        !          1291:        :kd=\EB:kl=\ED:kr=\EC:ku=\EA:nd=\EC:se=\E0@:so=\E9P:\
        !          1292:        :sr=\EI:ue=\E7R3\E0@:up=\EA:us=\E7R2\E9P:ve=\E>:\
        !          1293:        :vs=\E;:
        !          1294:
        !          1295: #### Masscomp consoles
        !          1296: #
        !          1297:
        !          1298: masscomp2:\
        !          1299:        :co#64:li#21:\
        !          1300:        :tc=masscomp:
        !          1301: masscomp1:\
        !          1302:        :co#104:li#36:\
        !          1303:        :tc=masscomp:
        !          1304: # (masscomp: ":MT:" changed to ":km:"; mapped ":pt:" to ":it#8:" -- esr)
        !          1305: masscomp:\
        !          1306:        :bs:km:mi:pt:\
        !          1307:        :co#80:it#8:li#24:sg#0:\
        !          1308:        :al=\E[L:cd=\E[J:ce=\E[K:cl=\E[2J:cm=\E[%i%d;%dH:\
        !          1309:        :dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:im=\E[4h:\
        !          1310:        :is=\EGc\EGb\EGw:kb=^H:kd=\EOB:kl=\EOD:kr=\EOC:\
        !          1311:        :ku=\EOA:nd=\E[C:se=\E[0m:so=\E[7m:ue=\EGau:up=\E[A:\
        !          1312:        :us=\EGu:
        !          1313:
        !          1314: #### NeWS consoles
        !          1315: #
        !          1316: # Console terminal windows under the NeWS (Sun's Display Postscript windowing
        !          1317: # environment).   Note: these have nothing to do with Sony's News workstation
        !          1318: # line.
        !          1319: #
        !          1320:
        !          1321: # Entry for NeWS's psterm from Eric Messick & Hugh Daniel
        !          1322: # (psterm: unknown ":sl=\EOl:el=\ENl:" removed;
        !          1323: # mapped ":pt:" to ":it#8:" -- esr)
        !          1324: psterm|psterm-basic|psterm-80x34:\
        !          1325:        :am:bs:hs:km:pt:ul:\
        !          1326:        :co#80:it#8:li#34:\
        !          1327:        :al=\EA:cd=\EB:ce=\EC:cl=^L:cm=\E%d;%d;:cs=\EE%d;%d;:\
        !          1328:        :dc=\EF:dl=\EK:do=\EP:ei=\ENi:fs=\ENl:ho=\ER:im=\EOi:\
        !          1329:        :is=\EN*:kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:le=\ET:\
        !          1330:        :ll=\EU:mb=\EOb:md=\EOd:me=\EN*:mr=\EOr:nd=\EV:rc=^\:\
        !          1331:        :rs=\EN*:sc=^]:se=\ENo:sf=\EW:so=\EOo:sr=\EX:te=\ENt:\
        !          1332:        :ti=\EOt:ts=\EOl:ue=\ENu:up=\EY:us=\EOu:vb=\EZ:
        !          1333: psterm-96x48:\
        !          1334:        :co#96:li#48:\
        !          1335:        :tc=psterm:
        !          1336: psterm-90x28:\
        !          1337:        :co#90:li#28:\
        !          1338:        :tc=psterm:
        !          1339: psterm-80x24:\
        !          1340:        :co#80:li#24:\
        !          1341:        :tc=psterm:
        !          1342: # This is a faster termcap for psterm.  Warning:  if you use this termcap,
        !          1343: # some control characters you type will do strange things to the screen.
        !          1344: # (psterm-fast: unknown ":sl=^Ol:el=^Nl:";
        !          1345: # removed; mapped ":pt:" to ":it#8:" -- esr)
        !          1346: psterm-fast:\
        !          1347:        :am:bs:hs:km:pt:ul:\
        !          1348:        :co#80:it#8:li#34:\
        !          1349:        :al=^A:cd=^B:ce=^C:cl=^L:cm=\004%d;%d;:cs=\005%d;%d;:\
        !          1350:        :dc=^F:dl=^K:do=^P:ei=^Ni:fs=^Nl:ho=^R:im=^Oi:is=^N*:\
        !          1351:        :kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:le=^T:ll=^U:mb=^Ob:\
        !          1352:        :md=^Od:me=^N*:mr=^Or:nd=^V:rc=^\:rs=^N*:sc=^]:\
        !          1353:        :se=^No:sf=^W:so=^Oo:sr=^X:te=^Nt:ti=^Ot:ts=^Ol:\
        !          1354:        :ue=^Nu:up=^Y:us=^Ou:vb=^Z:
        !          1355:
        !          1356: #### Apollo consoles
        !          1357: #
        !          1358: # Apollo got bought by Hewlett-Packard.  The Apollo workstations are
        !          1359: # labeled HP700s now.
        !          1360: #
        !          1361:
        !          1362: # From: Gary Darland <goodmanc@garnet.berkeley.edu>
        !          1363: apollo:\
        !          1364:        :am:bs:mi:\
        !          1365:        :co#88:li#53:\
        !          1366:        :al=\EI:cd=\EJ:ce=\EK:ch=\EN%d:cl=^L:cm=\EM%+ %d):\
        !          1367:        :cv=\EO+ :dc=\EP:dl=\EL:do=\EB:ei=\ER:im=\EQ:nd=\EC:\
        !          1368:        :se=\ET:sf=\EE:so=\ES:sr=\ED:te=\EX:ti=\EW:ue=\EV:\
        !          1369:        :up=\EA:us=\EU:
        !          1370: apollo_15P|apollo 15 inch display:\
        !          1371:        :dN@:\
        !          1372:        :tc=vt132:
        !          1373: apollo_19L|apollo 19 inch display:\
        !          1374:        :dN@:\
        !          1375:        :tc=vt132:
        !          1376: apollo_color|apollo color display:\
        !          1377:        :dN@:\
        !          1378:        :tc=vt132:
        !          1379:
        !          1380: #### Fortune Systems consoles
        !          1381: #
        !          1382:
        !          1383: # From: Robert Nathanson <c160-3bp@Coral> via tut   Wed Oct 5, 1983
        !          1384: # (This had unknown capabilities
        !          1385: #      :rv=\EH:re=\EI:rg=0:\
        !          1386: #      :GG=0:GV=-:GH=&:GU=%:GD=#:G1=(:G2= :G3=":G4=*:CF=\E]:\
        !          1387: #      :CO=\E\\:WL=^Aa\r:WR=^Ab\r:CL=^Ac\r:CR=^Ad\r:DL=^Ae\r:RF=^Af\r:\
        !          1388: #      :RC=^Ag\r:CW=^Ah\r:NU=^Aj\r:EN=^Ak\r:HM=^Al:PL=^Am\r:\
        !          1389: #      :PU=^An\r:PD=^Ao\r:PR=^Ap\r:HP=^A@\r:RT=^Aq\r:TB=\r:CN=\177:MP=\E+F:
        !          1390: # It had both ":bs:" and ":bs=^H:"; I removed the latter.  Also, it had
        !          1391: # ":sg=0:" and ":ug=0:"; evidently the composer was trying (unnecessarily)
        !          1392: # to force both magic cookie glitches off.  Once upon a time, I
        !          1393: # used a Fortune myself, so I know the capabilities of the form ^A[a-z]\r are
        !          1394: # function keys; thus the "Al" value for HM was certainly an error.  I renamed
        !          1395: # EN/PD/PU/CO/CF according to the XENIX/TC mappings, but not HM/DL/RF/RC/RT.
        !          1396: # I think rv and re are start and end reverse video and rg is a nonexistent
        !          1397: # "reverse-video-glitch" capability; I have put rv and re in with standard
        !          1398: # names below.  I've removed obsolete ":nl=5^J:" as there is a :do: -- esr)
        !          1399: fos|fortune|Fortune system:\
        !          1400:        :am:bs:bw:\
        !          1401:        :co#80:li#25:\
        !          1402:        :ae=^O:al=\034E:as=\Eo:bl=^G:cd=\034Y:ce=^\Z:cl=\014:\
        !          1403:        :cm=\034C%+ %+ :cr=^M:dc=\034W:dl=\034R:do=\n:ei=:\
        !          1404:        :ho=\036:ic=\034Q:im=:is=^_..:k1=^Aa\r:k2=^Ab\r:\
        !          1405:        :k3=^Ac\r:k4=^Ad\r:k5=^Ae\r:k6=^Af\r:k7=^Ag\r:\
        !          1406:        :k8=^Ah\r:kb=^H:kd=^Ay\r:kh=^A?\r:kl=^Aw\r:kr=^Az\r:\
        !          1407:        :ku=^Ax\r:le=^H:mb=\EN:me=\EI:mr=\EH:nw=^M^J:se=^\I`:\
        !          1408:        :sf=^J:so=^\H`:ta=^Z:ue=^\IP:up=\013:us=^\HP:ve=\E\\:\
        !          1409:        :vi=\E]:vs=\E\072:
        !          1410:
        !          1411: ######## COMMON TERMINAL TYPES
        !          1412: #
        !          1413: # This section describes terminal classes and maker brands that are still
        !          1414: # quite common, but have proprietary command sets not blessed by ANSI.
        !          1415:
        !          1416: #### Altos
        !          1417: #
        !          1418: # Altos descriptions from Ted Mittelstaedt <tedm@agora.rain.com> 4 Sep 1993
        !          1419: # His comments suggest they were shipped with the system.
        !          1420: #
        !          1421:
        !          1422: # (altos2: had unknown capabilities
        !          1423: #      :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\
        !          1424: #      :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\
        !          1425: #      :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\
        !          1426: #      :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r:
        !          1427: #      :XU=^Aq\r:XD=^Ar\r:XR=^As\r:XL=^At\r:\
        !          1428: #      :YU=^AQ\r:YD=^AR\r:YR=^AS\r:YL=^AT\r:\
        !          1429: #      :HL=^AP\r:SP=\E[i:\
        !          1430: #      :IS=\E[@:DE=\E[P:IL=\E[L:NS=\E[S:PS=\E[T:\
        !          1431: #      :LO=\E[0q:LC=\E[5q:LL=\E[6q:\
        !          1432: # Comparison with the k* capabilities makes it obvious that the c* things are
        !          1433: # shift keys.  I have renamed them to keys 32 and up accordingly.  Also,
        !          1434: # :sr: was given as a boolean-- esr)
        !          1435: altos2|alt2|altos-2|altos II:\
        !          1436:        :co#80:it#8:li#24:sg#0:\
        !          1437:        :DL=\E[M:al=\E[L:cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\
        !          1438:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[P:do=\E[1B:ei=:ho=\E[H:\
        !          1439:        :ic=\E[@:if=/usr/share/lib/tabset/vt100:im=:\
        !          1440:        :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:k0=^AI\r:\
        !          1441:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          1442:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=\E[B:\
        !          1443:        :kh=\E[f:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:nd=\E[1C:\
        !          1444:        :nw=^M^J:se=\E[m:sf=^J:so=\E[7m:ta=^I:ue=\E[m:\
        !          1445:        :up=\E[1A:us=\E[4m:
        !          1446: # (altos3: had unknown capabilities
        !          1447: #      :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\
        !          1448: #      :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\
        !          1449: #      :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\
        !          1450: #      :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r:
        !          1451: #      :XU=^Aq\r:XD=^Ar\r:XR=^As\r:XL=^At\r:\
        !          1452: #      :HL=^AP\r:SP=\E[i:\
        !          1453: #      :IS=\E[@:DE=\E[P:IL=\E[L:NS=\E[S:PS=\E[T:\
        !          1454: # Comparison with the k* capabilities makes it obvious that the c* things are
        !          1455: # shift keys.  I have renamed them to keys 32 and up accordingly -- esr)
        !          1456: altos3|alt3|altos-3|altos III:\
        !          1457:        :co#80:it#8:li#24:sg#0:\
        !          1458:        :DL=\E[M:al=\E[L:cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\
        !          1459:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[P:do=\E[1B:ei=:ho=\E[H:\
        !          1460:        :ic=\E[@:if=/usr/share/lib/tabset/vt100:im=:\
        !          1461:        :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:k0=^AI\r:\
        !          1462:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          1463:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=\E[B:\
        !          1464:        :kh=\E[f:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:mb=\E[5p:\
        !          1465:        :me=\E[p:nd=\E[1C:nw=^M^J:se=\E[m:sf=^J:so=\E[7m:\
        !          1466:        :sr=\EM:ta=^I:ue=\E[m:up=\E[1A:us=\E[4m:
        !          1467: altos4|alt4|altos-4|altos IV:\
        !          1468:        :tc=wy50:
        !          1469: altos5|alt5|altos-5|altos V:\
        !          1470:        :tc=altos3:
        !          1471: # (altos7: had unknown capabilities:
        !          1472: #      :GG#0:GS=\EH^B:GE=\EH^C:\
        !          1473: #      :G1=3:G2=2:G3=1:G4=5:GD=0:GU==:GH=\072:\
        !          1474: #      :GV=6:GR=4:GL=9:GC=8:GI=\EH8:GF=\EH7:\
        !          1475: #      :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\
        !          1476: #      :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\
        !          1477: #      :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\
        !          1478: #      :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r:
        !          1479: #      :PD=\EK:PU=\EJ:PN=\Ed#:PS=\EJ:DL=\ER:\
        !          1480: # Comparison with the k* capabilities makes it obvious that the c* things are
        !          1481: # shift keys.  I have renamed them to keys 32 and up accordingly -- esr)
        !          1482: altos7|alt7|altos VII:\
        !          1483:        :am:mi:\
        !          1484:        :co#80:li#24:sg#0:\
        !          1485:        :DL=\ER:al=\EE:cd=\EY:ce=\ET:cl=\E+^^:cm=\E=%+ %+ :\
        !          1486:        :cr=^M:dc=\EW:do=^J:ei=\Er:ho=^^:im=\Eq:\
        !          1487:        :is=\E`\072\Ee(\EO\Ee6\Ec41\E~4\Ec21\Eu\E~2:k0=^AI\r:\
        !          1488:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          1489:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:\
        !          1490:        :kh=^^:kl=^H:kr=^L:ku=^K:le=^H:mb=\EG2:md=\EGt:\
        !          1491:        :me=\EG0:mh=\EGp:mk=\EG1:mr=\EG4:nd=^L:nw=^M^J:\
        !          1492:        :se=\EG0:sf=^J:so=\EG4:sr=\Ej:ta=^I:ue=\EG0:up=^K:\
        !          1493:        :us=\EG8:
        !          1494: altos7pc|alt7pc|altos PC VII:\
        !          1495:        :tc=altos7:
        !          1496:
        !          1497: #### Hewlett-Packard (hp)
        !          1498: #
        !          1499: #      Hewlett-Packard
        !          1500: #      8000 Foothills Blvd
        !          1501: #      Roseville, CA 95747
        !          1502: #      Vox: 1-(916)-785-4363   (Technical response line for VDTs)
        !          1503: #           1-(800)-633-3600   (General customer support)
        !          1504: #
        !          1505:
        !          1506: # Generic HP terminal - this should (hopefully) work on any HP terminal.
        !          1507: hpgeneric|hewlett-packar|hewlettpackard:\
        !          1508:        :am:da:db:mi:xs:\
        !          1509:        :co#80:li#24:lm#0:vt#6:\
        !          1510:        :al=\EL:bl=^G:cd=\EJ:ce=\EK:ch=\E&a%dC:cl=\EH\EJ:\
        !          1511:        :cm=\E&a%r%dc%dY:cr=^M:ct=\E3:cv=\E&a%dY:dc=\EP:\
        !          1512:        :dl=\EM:do=^J:ei=\ER:im=\EQ:kb=^H:le=^H:nd=\EC:\
        !          1513:        :se=\E&d@:sf=^J:so=\E&dJ:st=\E1:ta=^I:ue=\E&d@:\
        !          1514:        :up=\EA:us=\E&dD:
        !          1515:
        !          1516: hp110|hewlett-packard model 110 portable:\
        !          1517:        :li#16:\
        !          1518:        :tc=hpgeneric:
        !          1519:
        !          1520: hp+pfk+cr|hp function keys with CR:\
        !          1521:        :k1=\Ep\r:k2=\Eq\r:k3=\Er\r:k4=\Es\r:k5=\Et\r:\
        !          1522:        :k6=\Eu\r:k7=\Ev\r:k8=\Ew\r:
        !          1523:
        !          1524: hp+pfk-cr|hp function keys w/o CR:\
        !          1525:        :k1=\Ep:k2=\Eq:k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:\
        !          1526:        :k8=\Ew:
        !          1527:
        !          1528: # The 2621s use the same keys for the arrows and function keys,
        !          1529: # but not separate escape sequences. These definitions allow the
        !          1530: # user to use those keys as arrow keys rather than as function
        !          1531: # keys.
        !          1532: hp+pfk+arrows|hp alternate arrow definitions:\
        !          1533:        :k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:kd=\Ew\r:kh=\Ep\r:\
        !          1534:        :kl=\Eu\r:kr=\Ev\r:ku=\Et\r:
        !          1535:
        !          1536: hp+arrows|hp arrow definitions:\
        !          1537:        :kd=\EB:kh=\Eh:kl=\ED:kr=\EC:ku=\EA:
        !          1538:
        !          1539: # Generic stuff from the HP 262x series
        !          1540: #
        !          1541: hp262x|HP 262x terminals:\
        !          1542:        :xs:\
        !          1543:        :cd=\EJ:dc=\EP:ip=:kd=\EB:ke=\E&s0A:kh=\Eh:kl=\ED:\
        !          1544:        :kr=\EC:ks=\E&s1A:ku=\EA:mb=\E&dA:me=\E&d@:mk=\E&dS:\
        !          1545:        :mr=\E&dB:\
        !          1546:        :..sa=\E&d%'@'%?%p1%t%'B'%|%;%?%p2%t%'D'%|%;%?%p3%t%'B'%|%;%?%p4%t%'A'%|%;%c:\
        !          1547:        :se=\E&d@:sf=\ES:so=\E&dB:ta=\011:ue=\E&d@:us=\E&dD:
        !          1548: # Note: no "home" on HP's since that homes to top of memory, not screen.
        !          1549: # Due to severe 2621 braindamage, the only way to get the arrow keys to
        !          1550: # transmit anything at all is to turn on the function key labels
        !          1551: # with smkx, and even then the user has to hold down shift!
        !          1552: # The default 2621 turns off the labels except when it has to to
        !          1553: # enable the function keys. If your installation prefers labels
        !          1554: # on all the time, or off all the time (at the "expense" of the
        !          1555: # function keys) move the # 2621-nl or 2621-wl labels to the
        !          1556: # front using reorder.
        !          1557: # Note: there are newer ROMs for 2621's that allow you to set
        !          1558: # strap A so the regular arrow keys xmit \EA, etc, as with the
        !          1559: # 2645. However, even with this strap set, the terminal stops
        !          1560: # xmitting if you reset it, until you unset and reset the strap!
        !          1561: # Since there is no way to set/unset the strap with an escape
        !          1562: # sequence, we don't use it in the default.
        !          1563: # If you like, you can use 2621-ba (braindmaged arrow keys).
        !          1564: hp2621-ba|2621-ba|2621 w/new rom and strap A set:\
        !          1565:        :ke@:ks@:tc=hp+arrows:tc=hp2621:
        !          1566:
        !          1567: # 2621 with function labels. Most of the time they are off,
        !          1568: # but inside vi, the function key labels appear. You have to
        !          1569: # hold down shift to get them to xmit.
        !          1570: hp2621|hp2621a|hp2621A|2621|2621a|2621A|hp2621-wl|2621-wl|hp 2621 w/labels:\
        !          1571:        :is=\E&jA\r:ke=\E&jA:tc=hp2621-fl:
        !          1572:
        !          1573: # 2621 with function labels.  Most of the time they are off,
        !          1574: # but inside vi, the function key labels appear.  You have to
        !          1575: # hold down shift to get them to xmit.
        !          1576: hp2621-fl|2621-fl|hp 2621:\
        !          1577:        :xo:xs@:\
        !          1578:        :pb#19200:\
        !          1579:        :bt=\Ei:cm=\E&a%r%dc%dY:dc=\EP:ip=:is=\E&j@\r:\
        !          1580:        :ke=\E&j@:ks=\E&jB:me=\E&d@:se=\E&d@:so=\E&dD:\
        !          1581:        :ta=\011:ue=\E&d@:us=\E&dD:tc=hp+pfk+cr:tc=hpgeneric:
        !          1582:
        !          1583: # To use 2621p printer, setenv TERM=2621p, PRINTER=2612p
        !          1584: hp2621p|2621p|2621P|hp 2621 with printer:\
        !          1585:        :pf=\E&p13C:po=\E&p11C:tc=hp2621:
        !          1586:
        !          1587: hp2621p-a|2621p-a|hp2621p with fn as arrows:\
        !          1588:        :tc=hp+pfk+arrows:tc=hp2621p:
        !          1589:
        !          1590: # hp2621 with k45 keyboard
        !          1591: hp2621-k45|hp2621k45|2621k45|k45|hp 2621 with 45 keyboard:\
        !          1592:        :kb=^H:kd=\EB:ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:\
        !          1593:        :ks=\E&s1A:ku=\EA:tc=hp2621:
        !          1594:
        !          1595: # This terminal should be used at 4800 baud or less. It needs padding for
        !          1596: # plain characters at 9600, I guessed at an appropriate cr delay.  It really
        !          1597: # wants ^E/^F handshaking, but that doesn't work well even if you write
        !          1598: # software to support it.
        !          1599: hp2645|hp45|HP 2645 series:\
        !          1600:        :pb#9600:\
        !          1601:        :cr=\r:kd=\EB:ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:\
        !          1602:        :ks=\E&s1A:ku=\EA:mb=\E&dA:me=\E&d@:mh=\E&dH:\
        !          1603:        :mr=\E&dB:\
        !          1604:        :..sa=\E&d%'@'%?%p1%t%'B'%|%;%?%p2%t%'D'%|%;%?%p3%t%'B'%|%;%?%p4%t%'A'%|%;%?%p5%t%'H'%|%;%?%p6%t%'B'%|%;%c:\
        !          1605:        :us=\E&dD:tc=hpgeneric:
        !          1606:
        !          1607: # Hp 2624 B with 4 or 10 pages of memory.
        !          1608: #
        !          1609: # Some assumptions are made with this entry. These settings are
        !          1610: # NOT set up by the initialization strings.
        !          1611: #
        !          1612: # Port Configuration
        !          1613: #      RecvPace=Xon/Xoff
        !          1614: #      XmitPace=Xon/Xoff
        !          1615: #      StripNulDel=Yes
        !          1616: #
        !          1617: # Terminal Configuration
        !          1618: #      InhHndShk=Yes
        !          1619: #      InhDC2=Yes
        !          1620: #      XmitFnctn(A)=No
        !          1621: #      InhEolWrp=No
        !          1622: #
        !          1623: # Note: the 2624 DOES have a true "home," believe it or not!
        !          1624: #
        !          1625: # The 2624 has an "error line" to which messages can be sent.
        !          1626: # This is CLOSE to what is expected for a "status line". However,
        !          1627: # after a message is sent to the "error line", the next carriage
        !          1628: # return is EATEN and the "error line" is turned back off again!
        !          1629: # So I guess we can't define hs, eslok, wsl, dsl, fsl, tsl
        !          1630: #
        !          1631: # This entry supports emacs (and any other program that uses raw
        !          1632: # mode) at 4800 baud and less. I couldn't get the padding right
        !          1633: # for 9.6.
        !          1634: #
        !          1635: hp2624|hp2624a|hp2624b|hp2624b-4p|2624-4p|2624|2624a|2624b|Hewlett Packard 2624 B:\
        !          1636:        :da:db:\
        !          1637:        :lm#96:\
        !          1638:        :vb=\E&w13F\200\200\200\200\E&w12F\200\200\200\200\E&w13F\200\200\200\200\E&w12F:tc=hp+labels:tc=scrhp:
        !          1639:
        !          1640: # These attributes are not set above:
        !          1641: #
        !          1642: # civis, cmdch, cnorm, csr, cub, cud, cuf, cuu, cvvis, dch, dl,
        !          1643: # ech, eo, eslok, fsl, gn, hc, hd, hu, hz, ich, ich1, if, il, in,
        !          1644: # indn, iprog, is2, is3, it, ka1, ka3, kb2, kc1, kc3, kclr, kf0,
        !          1645: # kf10, khts, km, ktbc, lf0, lf1, lf10, lf2, lf3, lf4, lf5, lf6,
        !          1646: # lf7, lf8, lf9, mc5p, os, pad, pfkey*, pfloc*, pfx*, prot, rc,
        !          1647: # rep, rin, rmcup, rmdc, rmm, rs2, rs3, sc, smcup, smdc, smm, tsl,
        !          1648: # uc, ul, vt, wind, wsl, xenl, xmc, xsb, xt
        !          1649: #
        !          1650: # not needed if tset is used:
        !          1651: #      if=/usr/share/tabset/std,
        !          1652: #
        !          1653: # This hp2626 entry does not use any of the fancy windowing stuff
        !          1654: # of the 2626.
        !          1655: #
        !          1656: # Indeed, terminfo does not yet handle such stuff. Since changing
        !          1657: # any window clears memory, it is probably not possible to use
        !          1658: # this for screen opt.
        !          1659: #
        !          1660: # ed is incredibly slow most of the time - I am guessing at the
        !          1661: # exact padding. Since the terminal uses xoff/xon this is intended
        !          1662: # only for cost computation, so that the terminal will prefer el
        !          1663: # or even dl1 which is probably faster!
        !          1664: #
        !          1665: # \ED\EJ\EC hack for ed from Ed Bradford - apparently ed is only
        !          1666: # extra slow on the last line of the window.
        !          1667: #
        !          1668: # The padding probably should be changed.
        !          1669: #
        !          1670: hp2626|hp2626a|hp2626p|2626|2626a|2626p|2626A|2626P|hp 2626:\
        !          1671:        :da:db:\
        !          1672:        :lm#0:pb#19200:\
        !          1673:        :SF=\E&r%dD:SR=\E&r%dU:cd=\ED\EJ\EC:ip=:is=\E&j@\r:tc=hp+pfk+cr:tc=hp+labels:tc=scrhp:
        !          1674:
        !          1675: # This entry is for sysline. It allocates a 23 line window with
        !          1676: # a 115 line workspace for regular use, and a 1 line window for
        !          1677: # the status line.
        !          1678: #
        !          1679: # This assumes port 2 is being used.
        !          1680: # Turn off horizontal line, Create ws #1 with 115 lines,
        !          1681: # Create ws #2 with 1 line, Create window #1 lines 1-23,
        !          1682: # Create window #2 lines 24-24, Attach cursor to workspace #1.
        !          1683: # Note that this clears the tabs so it must be done by tset before
        !          1684: # it sets the tabs.
        !          1685: #
        !          1686: hp2626-s|2626-s|hp 2626 using only 23 lines:\
        !          1687:        :es:hs:\
        !          1688:        :li#23:\
        !          1689:        :fs=\E&d@\E&w7f2p1I\E&w4f1I:\
        !          1690:        :i1=\E&q3t0{0H \E&w0f115n1I \E&w0f1n2I\n\E&w2f1i0d0u22l0S \E&w2f2i0d23u23l0S \E&w7f2p1I \r:\
        !          1691:        :ts=\E&w7f2p2I\E&w4f2I\r\EK\E&a%p1%dC:tc=hp2626:
        !          1692: # Force terminal back to 24 lines after being 23.
        !          1693: #
        !          1694: hp2626-ns|2626-ns|hp 2626 using all 24 lines:\
        !          1695:        :i1=\E&q3t0{0H \E&w0f118n1I \E&w0f1n2I\n\E&w2f1i0d0u23l0S \E&w3f2I \E&w7f2p1I \r:tc=hp2626:
        !          1696: # Various entries useful for small windows on 2626.
        !          1697: #
        !          1698: hp2626-12|2626-12:\
        !          1699:        :li#12:\
        !          1700:        :tc=hp2626:
        !          1701: hp2626-12x40|2626-12x40:\
        !          1702:        :co#40:li#12:\
        !          1703:        :tc=hp2626:
        !          1704: hp2626-x40|2626-x40:\
        !          1705:        :co#40:\
        !          1706:        :tc=hp2626:
        !          1707: hp2626-12-s|2626-12-s:\
        !          1708:        :li#11:\
        !          1709:        :tc=hp2626-s:
        !          1710: # You should use this terminal at 4800 baud or less.
        !          1711: #
        !          1712: hp2648|hp2648a|2648a|2648A|2648|HP 2648a graphics terminal:\
        !          1713:        :cl=\EH\EJ:cm=\E&a%r%dc%dY:dc=\EP:ip=:tc=hp2645:
        !          1714:
        !          1715: # 2640a doesn't have the Y cursor addressing feature, and C is
        !          1716: # memory relative instead of screen relative, as we need.
        !          1717: #
        !          1718: hp2640a|2640a|hp 2640a:\
        !          1719:        :cm@:ke@:ks@:tc=hp2645:
        !          1720:
        !          1721: hp2640b|hp2644a|hp 264x series:\
        !          1722:        :ke@:ks@:tc=hp2645:
        !          1723:
        !          1724: # 2621 using all 48 lines of memory, only 24 visible at any time.
        !          1725: #
        !          1726: hp2621-48|48 line 2621:\
        !          1727:        :li#48:\
        !          1728:        :cm=\E&a%r%dc%dR:cv=\E&a%dR:ho=\EH:tc=hp2621:
        !          1729:
        !          1730: # 2621 with no labels ever. Also prevents vi delays on escape.
        !          1731: #
        !          1732: hp2621-nl|hp 2621 with no labels:\
        !          1733:        :kd@:ke@:kh@:kl@:kr@:ks@:ku@:tc=hp2621-fl:
        !          1734:
        !          1735: # Needed for UCB ARPAVAX console, since lsi-11 expands tabs
        !          1736: # (wrong).
        !          1737: #
        !          1738: hp2621-nt|hp 2621 w/no tabs:\
        !          1739:        :ta@:tc=hp2621:
        !          1740:
        !          1741: # The HP 150 terminal is a fairly vanilla HP terminal, with the
        !          1742: # clreol standout problem. It also has graphics capabilities and
        !          1743: # a touch screen, which we don't describe here.
        !          1744: hp150|hewlett packard Model 150:\
        !          1745:        :tc=hp2622:
        !          1746:
        !          1747: # Hp 2382a terminals, "the little ones." They don't have any
        !          1748: # alternate character set support and sending out ^N/^O will
        !          1749: # leave the screen blank.
        !          1750: hp2382a|hp2382|hewlett packard 2382a:\
        !          1751:        :da:db:\
        !          1752:        :lm#48:\
        !          1753:        :ae@:as@:me=\E&d@:\
        !          1754:        :..sa=\E&d%{0}%Pa%?%p4%t%{1}%ga%+%Pa%;%?%p1%p3%|%p6%|%t%{2}%ga%+%Pa%;%?%p2%p6%|%t%{4}%ga%+%Pa%;%?%p1%p5%|%t%{8}%ga%+%Pa%;%?%p7%t%?%ga%ts%ga%'@'%+%e%'S'%;%e%?%ga%t%ga%'@'%+%e%'@'%;%;%c:tc=hp+labels:tc=scrhp:
        !          1755:
        !          1756: hp2621-a|hp2621a-a|2621-a|hp2621 with fn as arrows:\
        !          1757:        :tc=hp+pfk+arrows:tc=hp2621-fl:
        !          1758:
        !          1759: # newer hewlett packard terminals
        !          1760:
        !          1761: newhpkeyboard|generic entry for HP extended keyboard:\
        !          1762:        :kb=^H:kd=\EB:ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:\
        !          1763:        :ks=\E&s1A:ku=\EA:tc=hp+pfk-cr:
        !          1764:
        !          1765: newhp|generic entry for new hewlett packard terminals:\
        !          1766:        :am:bw:mi:xo:xs:\
        !          1767:        :co#80:li#24:pb#4800:\
        !          1768:        :ae=^O:al=\EL:as=^N:bl=^G:bt=\Ei:cd=\EJ:ce=\EK:cr=^M:\
        !          1769:        :ct=\E3:dc=\EP:dl=\EM:do=^J:ei=\ER:i1=\E&jB:im=\EQ:\
        !          1770:        :ip=:le=^H:mb=\E&dA:md=\E&dF:me=\E&d@\017:mh=\E&dH:\
        !          1771:        :mk=\E&dS:mr=\E&dB:nd=\EC:nw=^M^J:\
        !          1772:        :..sa=\E&d%{0}%Pa%?%p4%t%{1}%ga%+%Pa%;%?%p1%p3%|%p6%|%t%{2}%ga%+%Pa%;%?%p2%p6%|%t%{4}%ga%+%Pa%;%?%p1%p5%|%t%{8}%ga%+%Pa%;%?%p7%t%?%ga%ts%ga%'@'%+%e%'S'%;%e%?%ga%t%ga%'@'%+%e%'@'%;%;%c%?%p9%t\016%e\017%;:\
        !          1773:        :se=\E&d@:sf=^J:so=\E&dJ:sr=\ET:st=\E1:ta=\011:\
        !          1774:        :ue=\E&d@:up=\EA:us=\E&dD:tc=newhpkeyboard:
        !          1775:
        !          1776: memhp|memory relative addressing for new HP ttys:\
        !          1777:        :vt#6:\
        !          1778:        :CM=\E&a%p1%dr%p2%dC:DO=\E&a+%dR:LE=\E&a-%dC:\
        !          1779:        :RI=\E&a+%dC:UP=\E&a-%dR:ch=\E&a%dC:cl=\EH\EJ:\
        !          1780:        :cm=\E&a%dr%dC:cv=\E&a%dR:ho=\EH:ll=\E&a23R\r:tc=newhp:
        !          1781:
        !          1782: scrhp|screen relative addressing for new HP ttys:\
        !          1783:        :CM=\E&a%p1%dr%p2%dC:DO=\E&a+%dR:LE=\E&a-%dC:\
        !          1784:        :RI=\E&a+%dC:UP=\E&a-%dR:ch=\E&a%dC:cl=\E&a0c0Y\EJ:\
        !          1785:        :cm=\E&a%dy%dC:cv=\E&a%dY:ho=\E&a0y0C:ll=\E&a0y0C\EA:tc=newhp:
        !          1786:
        !          1787: hp+labels|"standard" label info for new HP ttys:\
        !          1788:        :
        !          1789:
        !          1790: hp+printer| "standard" printer info for HP ttys:\
        !          1791:        :ff=\E&p4u0C:pf=\E&p13C:po=\E&p11C:ps=\EH\E&p4dF:
        !          1792:
        !          1793:
        !          1794: # The new hp2621b is kind of a cross between the old 2621 and the
        !          1795: # new 262x series of machines. It has dip-switched options.
        !          1796: # The firmware has a bug in it such that if you give it a null
        !          1797: # length label, the following character is eaten!
        !          1798: hp2621b|2621b|hp 2621b with old style keyboard:\
        !          1799:        :lm#48:\
        !          1800:        :kd=\EB:kh=\Eh:kl=\ED:kr=\EC:ku=\EA:tc=hp2621:
        !          1801:
        !          1802: hp2621b-p|2621b-p|hp 2621b with printer:\
        !          1803:        :tc=hp+printer:tc=hp2621b:
        !          1804:
        !          1805: # hp2621b - new 2621b with new extended keyboard
        !          1806: # these are closer to the new 26xx series than the other 2621b
        !          1807: hp2621b-kx|2621b-kx|hp 2621b with extended keyboard:\
        !          1808:        :tc=newhpkeyboard:tc=hp2621b:
        !          1809:
        !          1810: hp2621b-kx-p|2621b-kx-p|hp 2621b with new keyboard & printer:\
        !          1811:        :tc=hp+printer:tc=hp2621b-kx:
        !          1812:
        !          1813: # Some assumptions are made in the following entries.
        !          1814: # These settings are NOT set up by the initialization strings.
        !          1815: #
        !          1816: #    Port Configuration
        !          1817: # RecvPace=Xon/Xoff    XmitPace=Xon/Xoff       StripNulDel=Yes
        !          1818: #
        !          1819: #    Terminal Configuration
        !          1820: # InhHndShk(G)=Yes     InhDC2(H)=Yes
        !          1821: # XmitFnctn(A)=No              InhEolWrp=No
        !          1822: #
        !          1823: #
        !          1824: # Hp 2622a & hp2623a display and graphics terminals
        !          1825: #
        !          1826: hp2622|hp2622a|2622|2622a|hp 2622:\
        !          1827:        :da:db:\
        !          1828:        :lm#0:pb#19200:\
        !          1829:        :is=\E&dj@\r:tc=hp+pfk+cr:tc=hp+labels:tc=scrhp:
        !          1830:
        !          1831: # The 2623 is a 2622 with extra graphics hardware.
        !          1832: hp2623|hp2623a|2623|2623a|hp 2623:\
        !          1833:        :tc=hp2622:
        !          1834:
        !          1835:
        !          1836: hp2624b-p|hp2624b-4p-p|hewlett packard 2624 B with printer:\
        !          1837:        :tc=hp+printer:tc=hp2624:
        !          1838:
        !          1839: # The hewlett packard B can have an optional extra 6 pages of
        !          1840: # memory.
        !          1841: hp2624-10p|hp2624a-10p|hp2624b-10p|2624-10p|2624a-10p|2624b-10p|hewlett packard 2624 B w/ 10 pages of memory:\
        !          1842:        :lm#240:\
        !          1843:        :tc=hp2624:
        !          1844:
        !          1845: hp2624b-10p-p|hewlett packard 2624 B w/ extra memory & printer:\
        !          1846:        :lm#240:\
        !          1847:        :tc=hp2624b-p:
        !          1848:
        !          1849: # Color manipulations for HP terminals
        !          1850:
        !          1851: hp+color|hp with colors:\
        !          1852:        :
        !          1853:
        !          1854: # is2 set screen to be 80 columns wide
        !          1855: hp2397a|2397a|hp2397|2397|hewlett packard 2397A color terminal:\
        !          1856:        :is=\E&w6f80X:tc=memhp:tc=hp+labels:tc=hp+color:
        !          1857:
        !          1858: #  HP 700/44 Setup parameters:
        !          1859: # Terminal Mode                HP-PCterm
        !          1860: # Inhibit Auto Wrap    NO
        !          1861: # Status Line          Host Writable
        !          1862: # PC Character Set     YES
        !          1863: # Twenty-Five Line Mode        YES
        !          1864: # XON/XOFF             @128 or 64 (sc)
        !          1865: # Keycode Mode                 NO   or YES (sc)
        !          1866: # Backspace Key                BS or BS/DEL
        !          1867: #
        !          1868: # is2  sets pcterm; autowrap; 25 lines; pc char set; prog DEL key; \E\\?
        !          1869: # does not turn off keycode mode
        !          1870: # smsc sets alternate start/stop; keycode on
        !          1871: #
        !          1872: hpansi|hp700|hewlett packard 700/44 in HP-PCterm mode:\
        !          1873:        :am:eo:xn:xo:\
        !          1874:        :co#80:li#25:\
        !          1875:        :al=\E[L:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[2J\E[H:\
        !          1876:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:do=\E[B:ei=:\
        !          1877:        :ho=\E[H:ic=\E[@:im=:\
        !          1878:        :is=\E[44"p\E[?7h\E[>10h\E[>12h\EP1;1|3/7F\E\\:\
        !          1879:        :k1=\E[17~:k2=\E[18~:k3=\E[19~:k4=\E[20~:k5=\E[21~:\
        !          1880:        :k6=\E[23~:k7=\E[24~:k8=\E[25~:k9=\E[26~:kb=^H:\
        !          1881:        :kd=\E[B:kh=\E[1~:kl=\E[D:kr=\E[C:ku=\E[A:le=\E[D:\
        !          1882:        :nd=\E[C:se=\E[m:sf=^J:so=\E[7m:ta=^I:ue=\E[m:\
        !          1883:        :up=\E[A:us=\E[4m:ve=\E[?25h:vi=\E[?25l:
        !          1884: #
        !          1885: hp2392|2392|2393|239x series:\
        !          1886:        :co#80:\
        !          1887:        :bt=\Ei:cm=\E&a%dy%dC:cv=\E&a%dY:im=\EQ:k1=\Ep\r:\
        !          1888:        :k2=\Eq\r:k3=\Er\r:k4=\Es\r:k5=\Et\r:k6=\Eu\r:\
        !          1889:        :k7=\Ev\r:k8=\Ew\r:kh=\Eh:ue=\E&d@:us=\E&dD:tc=hpsub:
        !          1890:
        !          1891: 2392nam|hp2392nam|HP 239x series with no auto margins:\
        !          1892:        :am@:\
        !          1893:        :tc=hp2392:
        !          1894:
        !          1895: hpsub|hp terminals -- capability subset:\
        !          1896:        :am:da:db:mi:xo:xs:\
        !          1897:        :li#24:\
        !          1898:        :al=\EL:bl=^G:cd=\EJ:ce=\EK:ch=\E&a%dC:cl=\EH\EJ:\
        !          1899:        :cr=^M:dc=\EP:dl=\EM:do=\EB:ei=\ER:\
        !          1900:        :if=/usr/share/tabset/stdcrt:is=\E&s1A\E<\E&k0\\:kb=^H:\
        !          1901:        :kd=\EB:ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:ks=\E&s1A:\
        !          1902:        :ku=\EA:le=^H:nd=\EC:se=\E&d@:sf=^J:so=\E&dB:ta=^I:\
        !          1903:        :up=\EA:
        !          1904:
        !          1905: # HP 236 console
        !          1906: # From: <ddavis@ic.berkeley.edu>
        !          1907: hp236|hp236 internal terminal emulator:\
        !          1908:        :am:bs:\
        !          1909:        :co#80:li#24:\
        !          1910:        :al=\EG:ce=\EK:cl=\EF:cm=\EE%+ %+ :dc=\EJ:dl=\EH:ei=:\
        !          1911:        :ic=\EI:im=:se=\ECI:so=\EBI:up=^K:ve=\EDE:vs=\EDB:
        !          1912:
        !          1913: # This works on a hp300 console running Utah 4.3 BSD
        !          1914: # From: Craig Leres <leres@okeeffe.berkeley.edu>
        !          1915: hp300h|HP Catseye console:\
        !          1916:        :am:bs:da:db:mi:xs:\
        !          1917:        :co#128:li#51:lm#0:sg#0:\
        !          1918:        :al=\EL:bl=^G:bt=\Ei:cd=\EJ:ce=\EK:ch=\E&a%dC:\
        !          1919:        :cl=\E&a0y0C\EJ:cm=\E&a%dy%dC:cr=^M:ct=\E3:\
        !          1920:        :cv=\E&a%dY:dc=\EP:dl=\EM:do=\EB:ei=\ER:\
        !          1921:        :if=/usr/share/tabset/stdcrt:im=\EQ:kb=^H:kd=\EB:\
        !          1922:        :ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:ks=\E&s1A:ku=\EA:\
        !          1923:        :le=^H:me=\E&d@:nd=\EC:se=\E&d@:sf=^J:so=\E&dB:ta=^I:\
        !          1924:        :ue=\E&d@:up=\EA:us=\E&dD:
        !          1925: # From: Greg Couch <gregc@ernie.berkeley.edu>
        !          1926: # (hp9837: removed obsolete ":ko=ce,cd,al,im,dl,dc:";
        !          1927: # mapped ":pt:" to ":it#8:" -- esr)
        !          1928: hp9837|hp98720|hp98721|HP 9000/300 workstations:\
        !          1929:        :am:bs:da:db:mi:pt:xs:\
        !          1930:        :co#128:it#8:li#46:lm#0:\
        !          1931:        :al=\EL:bl=^G:bt=\Ei:cd=\EJ:ce=\EK:ch=\E&a%dC:\
        !          1932:        :cl=\E&a0y0C\EJ:cm=\E&a%dy%dC:ct=\E3:cv=\E&a%dY:\
        !          1933:        :dc=\EP:dl=\EM:do=\EB:ei=\ER:im=\EQ:is=\E&v0m1b0i&j@:\
        !          1934:        :kb=^H:kd=\EB:ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:\
        !          1935:        :ks=\E&s1A:ku=\EA:le=^H:me=\E&d@:nd=\EC:se=\E&v0S:\
        !          1936:        :sf=^J:so=\E&v5S:st=\E1:ue=\E&d@:up=\EA:us=\E&dD:
        !          1937: # From: Charles A. Finnell of MITRE <finnell@mitre.org>, developed 07SEP90
        !          1938: # (hp98550: removed obsolete ":kn#12:ko=al,cd,ce,ct,dc,dl,do,ei,im,nd,st,up:";
        !          1939: # mapped ":pt:" to ":it#8:" -- esr)
        !          1940: hp98550|hp98550a|HP 9000 Series 300 color console:\
        !          1941:        :am:bs:da:db:mi:pt:xs:\
        !          1942:        :co#128:it#8:li#49:lm#0:\
        !          1943:        :ae=^O:al=\EL:as=^N:bl=^G:bt=\Ei:cd=\EJ:ce=\EK:\
        !          1944:        :ch=\E&a%dC:cl=\EH\EJ:cm=\E&a%dy%dC:cr=^M:ct=\E3:\
        !          1945:        :cv=\E&a%dY:dc=\EP:dl=\EM:do=^J:ei=\ER:\
        !          1946:        :if=/usr/share/tabset/9837:im=\EQ:k1=\Ep:k2=\Eq:\
        !          1947:        :k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:k8=\Ew:kb=^H:\
        !          1948:        :kd=\EB:ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:ks=\E&s1A:\
        !          1949:        :ku=\EA:le=^H:mb=\E&dA:md=\E&dJ:me=\E&d@:mh=\E&dH:\
        !          1950:        :mk=\E&ds:mr=\E&dJ:nd=\EC:se=\E&d@:sf=^J:so=\E&dJ:\
        !          1951:        :st=\E1:ta=^I:ue=\E&d@:up=\EA:us=\E&dD:ve=\E*dQ:\
        !          1952:        :vi=\E*dR:
        !          1953: # From: Victor Duchovni <vic@fine.princeton.edu>
        !          1954: # (hp700-wy: removed obsolete ":ko=cl,ho,ce,bt,ta,im,ei,ce,cd:nl=^J:";
        !          1955: # mapped ":pt:" to ":it#8:" -- esr)
        !          1956: hp700-wy|HP700/41 emulating wyse30:\
        !          1957:        :am:bs:bw:mi:ms:pt:\
        !          1958:        :co#80:it#8:li#24:sg#1:ug#1:\
        !          1959:        :al=0.7*\EE:bl=^G:bt=\EI:cd=\EY:ce=10\ET:cl=^Z:\
        !          1960:        :cm=\E=%+ %+ :cr=^M:ct=\E0:cv=\E[%+ :dc=\EW:dl=\ER:\
        !          1961:        :do=^V:ei=\Er:ho=^^:if=/usr/share/tabset/hp700-wy:\
        !          1962:        :im=\Eq:is=\E~"\EC\Er\E(\EG0\003\E`9\E`1:kb=\177:\
        !          1963:        :kd=^V:kh=^^:kl=^H:kr=^L:ku=^K:le=^H:ll=^^^K:nd=^L:\
        !          1964:        :rs=\E~"\EC\Er\E(\EG0\003\E`9\E`1:se=10\EG0:\
        !          1965:        :so=10\EG4:sr=\Ej:st=\E1:ue=10\EG0:up=^K:us=10\EG8:
        !          1966: hp70092|70092a|70092A|hp70092a|hp70092A|HP 70092:\
        !          1967:        :am:da:db:xs:\
        !          1968:        :co#80:li#24:lm#0:\
        !          1969:        :ae=^O:al=\EL:as=^N:bl=^G:bt=\Ei:ce=\EK:ch=\E&a%dC:\
        !          1970:        :cl=\E&a0y0C\EJ:cm=\E&a%dy%dC:cr=^M:ct=\E3:\
        !          1971:        :cv=\E&a%dY:dc=\EP:dl=\EM:do=\EB:ei=\ER:im=\EQ:\
        !          1972:        :k1=\Ep:k2=\Eq:k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:\
        !          1973:        :k8=\Ew:kb=^H:kd=\EB:ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:\
        !          1974:        :ks=\E&s1A:ku=\EA:le=^H:mb=\E&dA:md=\E&dB:me=\E&d@:\
        !          1975:        :mh=\E&dH:mr=\E&dB:nd=\EC:se=\E&d@:so=\E&dJ:sr=\ET:\
        !          1976:        :st=\E1:ta=^I:ue=\E&d@:up=\EA:us=\E&dD:
        !          1977:
        !          1978: bobcat|sbobcat|HP 9000 model 300 console:\
        !          1979:        :am:da:db:mi:xs:\
        !          1980:        :co#128:it#8:li#47:sg#0:\
        !          1981:        :al=10*\EL:bt=\Ei:cd=\EJ:ce=\EK:ch=6\E&a%dC:\
        !          1982:        :cl=\EH\EJ:cm=6\E&a%dy%dC:cr=^M:cv=6\E&a%dY:dc=\EP:\
        !          1983:        :dl=10*\EM:do=\EB:ei=\ER:im=\EQ:kb=^H:kd=\EB:\
        !          1984:        :ke=\E&s0A:kh=\Eh:kl=\ED:kr=\EC:ks=\E&s1A:ku=\EA:\
        !          1985:        :le=^H:nd=\EC:nw=^M^J:se=\E&d@:sf=^J:so=\E&dB:ta=^I:\
        !          1986:        :ue=\E&d@:up=\EA:us=\E&dD:
        !          1987: gator-t|HP 9000 model 237 emulating extra-tall AAA:\
        !          1988:        :bw:km:mi:ul:\
        !          1989:        :co#128:it#8:li#94:\
        !          1990:        :AL=1*\E[%dL:DC=4\E[%dP:DL=1*\E[%dM:IC=4\E[%d@:\
        !          1991:        :al=\E[L:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:ch=\E[%i%d`:\
        !          1992:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:\
        !          1993:        :do=^J:ei=:ho=\E[H:ic=\E[@:im=:kb=^H:kd=^J:kl=^H:\
        !          1994:        :le=^H:me=\E[m:mr=\E[7m:nd=\E[C:nw=^M^J:\
        !          1995:        :..rp=%.\E[%db:se=\E[m:so=\E[7m:ta=^I:ue=\E[m:up=\EM:\
        !          1996:        :us=\E[4m:
        !          1997: gator|HP 9000 model 237 emulating AAA:\
        !          1998:        :bw:km:mi:ul:\
        !          1999:        :co#128:it#8:li#47:\
        !          2000:        :AL=1*\E[%dL:DC=4\E[%dP:DL=1*\E[%dM:IC=4\E[%d@:\
        !          2001:        :al=\E[L:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:ch=\E[%i%d`:\
        !          2002:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:\
        !          2003:        :do=^J:ei=:ho=\E[H:ic=\E[@:im=:kb=^H:kd=^J:kl=^H:\
        !          2004:        :le=^H:me=\E[m:mr=\E[7m:nd=\E[C:nw=^M^J:\
        !          2005:        :..rp=%.\E[%db:se=\E[m:so=\E[7m:ta=^I:ue=\E[m:up=\EM:\
        !          2006:        :us=\E[4m:
        !          2007: gator-52|HP 9000 model 237 emulating VT52:\
        !          2008:        :co#128:it#8:li#47:\
        !          2009:        :bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:..cm=\EY%+ %+ :cr=^M:\
        !          2010:        :do=^J:ho=\EH:kb=^H:kd=\EB:kl=\ED:kr=\EC:ku=\EA:\
        !          2011:        :le=^H:nd=\EC:nw=^M^J:sr=\EI:ta=^I:up=\EA:
        !          2012: gator-52t|HP 9000 model 237 emulating extra-tall VT52:\
        !          2013:        :co#128:it#8:li#94:\
        !          2014:        :bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:..cm=\EY%+ %+ :cr=^M:\
        !          2015:        :do=^J:ho=\EH:kb=^H:kd=\EB:kl=\ED:kr=\EC:ku=\EA:\
        !          2016:        :le=^H:nd=\EC:nw=^M^J:sr=\EI:ta=^I:up=\EA:
        !          2017:
        !          2018: #### Honeywell-Bull
        !          2019: #
        !          2020: # From: Michael Haardt <michael@gandalf.moria> 11 Jan 93
        !          2021: #
        !          2022:
        !          2023: # Honeywell Bull terminal.  Its cursor and function keys send single
        !          2024: # control characters and it has standout/underline glitch.  Most programs
        !          2025: # do not like these features/bugs.  This is a dumb mode for this terminal.
        !          2026: # Visual bell is realized by flashing the "keyboard locked" LED.
        !          2027: dku7003-dumb|Honeywell Bull DKU 7003, dumb mode:\
        !          2028:        :co#80:li#25:\
        !          2029:        :cd=^_:ce=\E[K:cl=^]^_:cm=\E[%i%d;%dH:cr=^M:do=^K:\
        !          2030:        :ho=^]:kb=^H:kd=^K:kh=^]:kl=^Y:kr=^X:ku=^Z:le=^Y:\
        !          2031:        :nd=^X:nw=^M^J:sf=^J:ta=^I:up=^Z:vb=\E[2h\E[2l:
        !          2032: # Honeywell Bull terminal.  Its cursor and function keys send single
        !          2033: # control characters and it has standout/underline glitch.  Most programs
        !          2034: # do not like these features/bugs.  The following entry may cause problems
        !          2035: # with some programs.  Visual bell is realized by flashing the "keyboard
        !          2036: # locked" LED.
        !          2037: dku7003|Honeywell Bull DKU 7003, all features described:\
        !          2038:        :ms:\
        !          2039:        :co#80:li#25:sg#1:ug#1:\
        !          2040:        :cd=^_:ce=\E[K:cl=^]^_:cm=\E[%i%d;%dH:cr=^M:do=^K:\
        !          2041:        :ho=^]:kb=^H:kd=^K:kh=^]:kl=^Y:kr=^X:ku=^Z:le=^Y:\
        !          2042:        :mb=\E[5m:md=\E[7m:me=\E[0m:mh=\E[2m:mr=\E[7m:nd=^X:\
        !          2043:        :nw=^M^J:se=\E[0m:sf=^J:so=\E[7m:ta=^I:ue=\E[0m:\
        !          2044:        :up=^Z:us=\E[4m:vb=\E[2h\E[2l:
        !          2045:
        !          2046: #### Lear-Siegler (adm)
        !          2047: #
        !          2048: # These guys are long since out of the terminals business, but
        !          2049: # in 1995 many current terminals still have an adm type as one of their
        !          2050: # emulations (usually their stupidest, and usually labelled adm3, though
        !          2051: # these `adm3' emulations normally have adm3a+ capabilities).
        !          2052: #
        !          2053:
        !          2054: adm1a|adm1|lsi adm1a:\
        !          2055:        :am:\
        !          2056:        :co#80:li#24:\
        !          2057:        :bl=^G:cl=\E;:cm=\E=%+ %+ :cr=^M:do=^J:ho=^^:le=^H:\
        !          2058:        :nd=^L:sf=^J:up=^K:
        !          2059: adm2|lsi adm2:\
        !          2060:        :am:bs:\
        !          2061:        :co#80:li#24:\
        !          2062:        :al=\EE:bl=^G:cd=\EY:ce=\ET:cl=\E;:cm=\E=%+ %+ :\
        !          2063:        :cr=^M:dc=\EW:dl=\ER:do=^J:ei=:ho=^^:ic=\EQ:im=:\
        !          2064:        :kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:le=^H:nd=^L:sf=^J:\
        !          2065:        :up=^K:
        !          2066: # (adm3: removed obsolete ":ma=^K^P:" -- esr)
        !          2067: adm3|lsi adm3:\
        !          2068:        :am:bs:\
        !          2069:        :co#80:li#24:\
        !          2070:        :bl=^G:cl=^Z:cr=^M:do=^J:le=^H:sf=^J:
        !          2071: # The following ADM-3A switch settings are assumed for normal operation:
        !          2072: #      SPACE           U/L_DISP        CLR_SCRN        24_LINE
        !          2073: #      CUR_CTL         LC_EN           AUTO_NL         FDX
        !          2074: # Other switches may be set for operator convenience or communication
        !          2075: # requirements.  I recommend
        !          2076: #      DISABLE_KB_LOCK LOCAL_OFF       103             202_OFF
        !          2077: #      ETX_OFF         EOT_OFF
        !          2078: # (adm3a: removed obsolete ":ma=^K^P:" -- esr)
        !          2079: adm3a|lsi adm3a:\
        !          2080:        :am:bs:\
        !          2081:        :co#80:li#24:\
        !          2082:        :bl=^G:cl=\032:cm=\E=%+ %+ :cr=^M:do=^J:ho=^^:le=^H:\
        !          2083:        :nd=^L:sf=^J:up=^K:
        !          2084: adm3a+|adm3aplus:\
        !          2085:        :kd=^J:kl=^H:kr=^L:ku=^K:tc=adm3a:
        !          2086: # (adm5: removed obsolete ":ma=^Hh^Jj^Kk^Ll^^H:" & duplicate ":do+^J:" -- esr)
        !          2087: adm5|lsi adm5:\
        !          2088:        :sg#1:\
        !          2089:        :bl=^G:cd=\EY:ce=\ET:cr=^M:do=^J:kb=^H:kh=^^:se=\EG:\
        !          2090:        :so=\EG:tc=adm3a+:
        !          2091: # From: <stephen%comp.lancs.ac.uk@ucl-cs.arpa>
        !          2092: # (adm11: removed obsolete ":ma=^Hh^Jj^Kk^Ll^^H:" -- esr)
        !          2093: adm11|lsi adm11:\
        !          2094:        :am:bs:hs:\
        !          2095:        :co#80:li#24:\
        !          2096:        :bl=^G:cd=\EY:ce=\ET:cl=^Z:cm=\E=%+ %+ :cr=^M:do=^J:\
        !          2097:        :ds=\Eh:fs=\E(\r:kb=^H:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:\
        !          2098:        :nd=^L:se=\E(:so=\E):ts=\EF\E):up=^K:
        !          2099: # From: Andrew Scott Beals <bandy@lll-crg.ARPA>
        !          2100: # Corrected by Olaf Siebert <rhialto@polder.ubc.kun.nl>, 11 May 1995
        !          2101: # (adm12: removed obsolete ":kn:ma=j^Jk^P^K^Pl ^R^L^L :" -- esr)
        !          2102: adm12|lsi adm12:\
        !          2103:        :am:bs:mi:\
        !          2104:        :co#80:li#24:\
        !          2105:        :al=\EE:bl=^G:cd=\EY:ce=\ET:cl=^Z:cm=\E=%+ %+ :cr=^M:\
        !          2106:        :dc=\EW:dl=\ER:do=^J:ei=\Er:ho=^^:im=\Eq:is=\Eq:\
        !          2107:        :k0=^A0\r:k1=^A1\r:k2=^A2\r:k3=^A3\r:k4=^A4\r:\
        !          2108:        :k5=^A5\r:k6=^A6\r:k7=^A7\r:k8=^A8\r:k9=^A9\r:kd=^J:\
        !          2109:        :kl=^H:kr=^L:ku=^K:le=^H:mk=\EG1:nd=^L:se=\EG0:\
        !          2110:        :so=\EG4:ue=\EG0:up=^K:us=\EG8:
        !          2111: # (adm20: removed obsolete ":kn#7:"; mapped ":pt:" to ":it#8:" -- esr)
        !          2112: adm20|lear siegler adm20:\
        !          2113:        :am:bs:pt:\
        !          2114:        :co#80:it#8:li#24:\
        !          2115:        :al=\EE:bl=^G:bt=\EI:cd=\EY:ce=\ET:cl=^Z:\
        !          2116:        :cm=\E=%i%r%+^_%+^_:cr=^M:dc=\EW:dl=\ER:ei=:ho=^^:\
        !          2117:        :ic=\EQ:im=:k1=^A:k2=^B:k3=^W:k4=^D:k5=^E:k6=^X:\
        !          2118:        :k7=^Z:nd=^L:se=\E(:so=\E):up=^K:
        !          2119: adm21|lear siegler adm21:\
        !          2120:        :sg#1:ug#1:\
        !          2121:        :al=30*\EE:bl=^G:cd=\EY:ce=\ET:cr=^M:dc=\EW:\
        !          2122:        :dl=30*\ER:do=^J:ei=:ic=\EQ:im=:kb=^H:kd=^J:kh=^^:\
        !          2123:        :kl=^H:kr=^L:ku=^K:se=\EG0:sf=^J:so=\EG4:ue=\EG0:\
        !          2124:        :us=\EG8:tc=adm3a:
        !          2125: # (adm22: ":em=:" was an obvious typo for ":ei=:"; also,
        !          2126: # removed obsolete ":kn#7:ko=ho:ma=j^Jk^P^K^Pl ^R^L^L :" -- esr)
        !          2127: adm22|lsi adm22:\
        !          2128:        :am:bs:\
        !          2129:        :co#80:li#24:\
        !          2130:        :al=\EE:bl=^G:bt=\EI:cd=\Ey:ce=\Et:cl=\E+:\
        !          2131:        :cm=\200\E=%+ %+ :cr=^M:dc=\EW:dl=\ER:do=^J:ei=:\
        !          2132:        :ho=^^:ic=\EQ:im=:\
        !          2133:        :is=\E%\014\014\014\016\003\200\003\002\003\002\200\200\200\200\200\200\200\200\200\200\200:\
        !          2134:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          2135:        :k6=^AE\r:k7=^AF\r:kb=^H:kd=^J:kh=^^:kl=^H:kr=^L:\
        !          2136:        :ku=^K:nd=^L:se=\E(:so=\E):ta=\Ei:up=^K:
        !          2137: # If the adm31 gives you trouble with standout mode, check the DIP switch in
        !          2138: # position 6, bank @c11, 25% from back end of the circuit board.  Should be
        !          2139: # OFF.  If there is no such switch, you have an old adm31 and must use oadm31.
        !          2140: # (adm31: removed obsolete ":ma=j^Jk^P^K^Pl ^R^L^L :" -- esr)
        !          2141: adm31|lsi adm31:\
        !          2142:        :am:bs:mi:\
        !          2143:        :co#80:li#24:\
        !          2144:        :al=\EE:bl=^G:cd=\EY:ce=\ET:cl=\E*:cm=\E=%+ %+ :\
        !          2145:        :cr=^M:dc=\EW:dl=\ER:do=^J:ei=\Er:ho=^^:im=\Eq:\
        !          2146:        :is=\Eu\E0:k0=^A0\r:k1=^A1\r:k2=^A2\r:k3=^A3\r:\
        !          2147:        :k4=^A4\r:k5=^A5\r:k6=^A6\r:k7=^A7\r:k8=^A8\r:\
        !          2148:        :k9=^A9\r:kd=^J:kl=^H:kr=^L:ku=^K:le=^H:nd=^L:\
        !          2149:        :se=\EG0:sf=^J:so=\EG1:ue=\EG0:up=^K:us=\EG1:
        !          2150: oadm31|o31|old adm31:\
        !          2151:        :so=\EG4:ue@:us@:tc=adm31:
        !          2152: # ADM36 in native mode (not VT52 emulation mode)
        !          2153: adm36|lsi adm36:\
        !          2154:        :am:mi:\
        !          2155:        :co#80:li#24:\
        !          2156:        :al=\E[1L:cd=\E[0J:ce=\E[0K:cl=\E[H\E[2J:\
        !          2157:        :cm=\E[%i%d;%dH:dl=\E[1M:ei=\E[4l:im=\E[4h:\
        !          2158:        :is=\E[6;?7h\E[4;20;?1;?3;?6;?4l\E(B\E)B\E>:kd=\EB:\
        !          2159:        :kl=\ED:kr=\EC:ku=\E[A:le=^H:nd=\E[D:up=\E[A:
        !          2160: # (adm42: removed obsolete ":ma=^K^P:" -- esr)
        !          2161: adm42|lsi adm42:\
        !          2162:        :am:bs:\
        !          2163:        :co#80:li#24:\
        !          2164:        :al=\EE:bl=^G:bt=\EI:cd=\EY:ce=\ET:cl=\E;:\
        !          2165:        :cm=\E=%+ %+ :cr=^M:dc=\EW:dl=\ER:do=^J:ei=\Er:\
        !          2166:        :im=\Eq:ip=:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:le=^H:\
        !          2167:        :nd=^L:pc=\177:se=\EG0:sf=^J:so=\EG4:ta=^I:up=^K:\
        !          2168:        :vs=\EC\E3 \E3(:
        !          2169: # The following termcap for the Lear Siegler ADM-42 leaves the
        !          2170: # "system line" at the bottom of the screen blank (for those who
        !          2171: # find it distracting otherwise)
        !          2172: adm42-nl|lsi adm-42 with no system line:\
        !          2173:        :al=\EE\EF \011:bt=\EI\EF \011:cd=\EY\EF \011:\
        !          2174:        :ce=\ET\EF \011:cl=\E;\EF \011:cm=\E=%+ %+ \EF \011:\
        !          2175:        :dc=\EW\EF \011:dl=\ER\EF \011:ei=\Er\EF \011:\
        !          2176:        :im=\Eq\EF \011:tc=adm42:
        !          2177:
        !          2178: #### Prime
        !          2179: #
        !          2180: # Yes, Prime makes terminals.  These entries were posted by Kevin J. Cummings
        !          2181: # <cummings@primerd.Prime.COM> on 14 Dec 1992 and lightly edited by esr.
        !          2182:
        !          2183: pt100|pt200|wren|fenix|prime pt100/pt200:\
        !          2184:        :am:bw:mi:ms:\
        !          2185:        :co#80:it#8:li#24:\
        !          2186:        :DC=\E[%dP:DL=\E[M:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:\
        !          2187:        :UP=\E[%dA:al=\E[L\E[t:bt=\E[Z:cd=\E[J\E[r:\
        !          2188:        :ce=\E[K\E[t:cl=\E?:cm=\E0%+!%+!:cr=^M:dc=\E[P:\
        !          2189:        :do=\ED:ei=\E[4l:ho=\E$B:im=\E[4h:kb=^H:kd=\E[B:\
        !          2190:        :ke=\E[>13l:kh=\E$A:kl=\E[D:kr=\E[C:ks=\E[>13h:\
        !          2191:        :ku=\E[A:le=^H:nd=\E[C:nw=^M^J:se=\E[m:sf=^J:\
        !          2192:        :so=\E[2;7m:ta=^I:\
        !          2193:        :ti=\E[>1l\E[>2l\E[>16l\E[4l\E[>9l\E[20l\E[>3l\E[>7h\E[>12l\E[1Q:\
        !          2194:        :ue=\E[m:up=\EM:us=\E[4m:\
        !          2195:        :vb=\E$E\200\200\200\200\200\200\200\200\200\200\200\200\200\200\E$P:
        !          2196: pt100w|pt200w|wrenw|fenixw|prime pt100/pt200 in 132-column mode:\
        !          2197:        :co#132:\
        !          2198:        :cm=\E[%i%d;%dH:tc=pt100:
        !          2199: pt250|Prime PT250:\
        !          2200:        :so@:tc=pt100:
        !          2201: pt250w|Prime PT250 in 132-column mode:\
        !          2202:        :so@:tc=pt100w:
        !          2203:
        !          2204: #### Qume (qvt)
        !          2205: #
        !          2206: #      Qume, Inc.
        !          2207: #      3475-A North 1st Street
        !          2208: #      San Jose CA 95134
        !          2209: #      Vox: (800)-457-4447
        !          2210: #      Fax: (408)-473-1510
        !          2211: #      Net: josed@techsupp.wyse.com (Jose D'Oliveira)
        !          2212: #
        !          2213: # Qume was bought by Wyse, but still (as of early 1995) has its own support
        !          2214: # group and production division.
        !          2215: #
        !          2216: # Discontinued Qume models:
        !          2217: #
        !          2218: # The qvt101 and qvt102 listed here are long obsolete; so is the qvt101+
        !          2219: # built to replace them, and a qvt119+ which was a 101+ with available wide
        !          2220: # mode (132 columns).  There was a qvt103 which added vt100/vt131 emulations
        !          2221: # and an ANSI-compatible qvt203 that replaced it.  Qume started producing
        !          2222: # ANSI-compatible terminals with the qvt323 and qvt61.
        !          2223: #
        !          2224: # Current Qume models (as of February 1995):
        !          2225: #
        !          2226: # All current Qume terminals have ANSI-compatible operation modes.
        !          2227: # Qume is still producing the qvt62, which features emulations for other
        !          2228: # popular lines such as ADDS, and dual-host capabilities.  The qvt82 is
        !          2229: # designed for use as a SCO ANSI terminal.  The qvt70 is a color terminal
        !          2230: # with many emulatioms including Wyse370, Wyse 325, etc.  Their newest
        !          2231: # model is the qvt520, which is vt420-compatible.
        !          2232: #
        !          2233: # There are some ancient printing Qume terminals under `Daisy Wheel Printers'
        !          2234:
        !          2235: qvt101|qvt108|qume qvt 101 and QVT 108:\
        !          2236:        :sg#1:\
        !          2237:        :se=\EG0:so=\EG4:tc=qvt101+:
        !          2238: qvt101+|qvt101p|qume qvt 101 PLUS product:\
        !          2239:        :am:bw:hs:ul:\
        !          2240:        :co#80:li#24:sg#0:\
        !          2241:        :al=\EE:bl=^G:bt=\EI:cd=\EY:ce=\ET:cl=^Z:\
        !          2242:        :cm=\E=%+ %+ :cr=^M:ct=\E3:dc=\EW:dl=\ER:do=^J:\
        !          2243:        :ds=\Eg\Ef\r:ei=:fs=^M:ho=^^:ic=\EQ:im=:k1=^A@\r:\
        !          2244:        :k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
        !          2245:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:kh=^^:kl=^H:\
        !          2246:        :kr=^L:ku=^K:le=^H:nd=^L:pf=\EA:po=\E@:se=\E(:sf=^J:\
        !          2247:        :so=\E0P\E):st=\E1:ta=^I:ts=\Eg\Ef:ue=\EG0:up=^K:\
        !          2248:        :us=\EG8:vb=\Eb\Ed:ve=\E.4:vs=\E.2:
        !          2249: qvt102|qume qvt 102 product:\
        !          2250:        :ve=\E.:tc=qvt101:
        !          2251: qvt103|qume qvt 103:\
        !          2252:        :am:xn:xo:\
        !          2253:        :co#80:it#8:li#24:vt#3:\
        !          2254:        :DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:bl=^G:\
        !          2255:        :cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:\
        !          2256:        :cs=\E[%i%d;%dr:ct=\E[3g:do=^J:ho=\E[H:k1=\EOP:\
        !          2257:        :k2=\EOQ:k3=\EOR:k4=\EOS:kb=^H:kd=\EOB:ke=\E[?1l\E>:\
        !          2258:        :kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:mb=\E[5m:\
        !          2259:        :md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:rc=\E8:\
        !          2260:        :..sa=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m:\
        !          2261:        :sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !          2262:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          2263: qvt103-w|qume qvt103 132 cols:\
        !          2264:        :co#132:li#24:\
        !          2265:        :tc=qvt103:
        !          2266: qvt119+|qvt119p|qvt119|qume qvt 119 and 119PLUS terminals:\
        !          2267:        :am:hs:mi:ms:\
        !          2268:        :co#80:li#24:sg#0:\
        !          2269:        :al=\EE:bl=^G:bt=\EI:cd=\Ey:ce=\Et:cl=\E*1:\
        !          2270:        :cm=\E=%+ %+ :cr=^M:ct=\E3:dc=\EW:dl=\ER:do=^J:\
        !          2271:        :ds=\Eg\Ef\r:ei=\Er:fs=^M:ho=^^:im=\Eq:\
        !          2272:        :is=\EDF\EC\EG0\Er\E(\E%EX:k0=^AI\r:k1=^A@\r:\
        !          2273:        :k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
        !          2274:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:kh=^^:kl=^H:\
        !          2275:        :kr=^L:ku=^K:le=^H:nd=^L:pf=\EA:po=\E@:se=\EG0:sf=^J:\
        !          2276:        :so=\EG4:sr=\EJ:st=\E1:ta=^I:ts=\Eg\Ef:ue=\EG0:up=^K:\
        !          2277:        :us=\EG8:vb=\En0\En1:ve=\E.4:vs=\E.2:
        !          2278: qvt119+-25|qvt119p-25|QVT 119 PLUS with 25 data lines:\
        !          2279:        :li#25:\
        !          2280:        :tc=qvt119+:
        !          2281: qvt119+-w|qvt119p-w|qvt119-w|QVT 119 and 119 PLUS in 132 column mode:\
        !          2282:        :co#132:\
        !          2283:        :is=\EDF\EC\EG0\Er\E(\E%\EX\En4:tc=qvt119+:
        !          2284: qvt119+-25-w|qvt119p-25-w|qvt119-25-w|QVT 119 and 119 PLUS 132 by 25:\
        !          2285:        :li#25:\
        !          2286:        :tc=qvt119+:
        !          2287: qvt203|qvt203+|qume qvt 203 Plus:\
        !          2288:        :am:xn:xo:\
        !          2289:        :co#80:it#8:li#24:vt#3:\
        !          2290:        :DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:al=\E[L:\
        !          2291:        :bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:\
        !          2292:        :cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:\
        !          2293:        :ei=\E[4l:ho=\E[H:im=\E[4h:ip=:k0=\E[29~:k1=\E[17~:\
        !          2294:        :k2=\E[18~:k3=\E[19~:k4=\E[20~:k5=\E[21~:k6=\E[23~:\
        !          2295:        :k7=\E[24~:k8=\E[25~:k9=\E[28~:kb=^H:kd=\EOB:\
        !          2296:        :ke=\E[?1l\E>:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:\
        !          2297:        :le=^H:mb=\E[5m:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:\
        !          2298:        :rc=\E8:\
        !          2299:        :..sa=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m:\
        !          2300:        :sc=\E7:se=\E[m:sf=\n:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !          2301:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          2302: qvt203-w|qvt203-w-am|qume qvt 203 PLUS in 132 cols (w/advanced video):\
        !          2303:        :co#132:li#24:\
        !          2304:        :tc=qvt203:
        !          2305: #
        !          2306: #      Since a command is present for enabling 25 data lines,
        !          2307: #      a specific terminfo entry may be generated for the 203.
        !          2308: #      If one is desired for the QVT 119 PLUS then 25 lines must
        !          2309: #      be selected in the status line (setup line 9).
        !          2310: #
        !          2311: qvt203-25|QVT 203 PLUS with 25 by 80 column mode:\
        !          2312:        :co#80:li#25:\
        !          2313:        :is=\E[=40h\E[?3l:tc=qvt203:
        !          2314: qvt203-25-w|QVT 203 PLUS with 25 by 132 columns:\
        !          2315:        :co#132:li#25:\
        !          2316:        :tc=qvt203:
        !          2317:
        !          2318: #### Televideo (tvi)
        !          2319: #
        !          2320: #      TeleVideo
        !          2321: #      550 East Brokaw Road
        !          2322: #      PO Box 49048    95161
        !          2323: #      San Jose CA 95112
        !          2324: #      Vox: (408)-954-8333
        !          2325: #      Fax: (408)-954-0623
        !          2326: #
        !          2327: #
        !          2328: # There are some tvi terminals that require incredible amounts of padding and
        !          2329: # some that don't.  I'm assuming 912 and 920 are the old slow ones,
        !          2330: # and 912b, 912c, 920b, 920c are the new ones that don't need padding.
        !          2331: #
        !          2332: # All of these terminals (912 to 970 and the tvipt) are discontinued.  Newer
        !          2333: # Televideo terminals are ANSI and PC-ANSI compatible.
        !          2334:
        !          2335: tvi803|televideo 803:\
        !          2336:        :cl=\E*:tc=tvi950:
        !          2337:
        !          2338: # Vanilla tvi910 -- W. Gish <cswarren@violet> 10/29/86
        !          2339: # (tvi910: removed obsolete ":ma=^Kk^Ll^R^L:";
        !          2340: # mapped ":pt:" to ":it#8:"; added ":ug#0:" for terminfo translation;
        !          2341: # added khome, cub1, cud1, ind, hpa, vpa, am, msgr from SCO entry -- esr)
        !          2342: tvi910|televideo model 910:\
        !          2343:        :am:bs:ms:pt:\
        !          2344:        :co#80:it#8:li#24:sg#1:ug#0:\
        !          2345:        :bl=^G:bt=\EI:cd=\EY:ce=\ET:ch=\E]%+ :cl=^Z:\
        !          2346:        :cm=\E=%+ %+ :cr=^M:cv=\E[%+ :do=^J:ho=\E=\001\001:\
        !          2347:        :if=/usr/share/tabset/stdcrt:k0=^AI\r:k1=^A@\r:\
        !          2348:        :k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
        !          2349:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:kh=^^:kl=^H:\
        !          2350:        :kr=^L:ku=^K:le=^H:nd=^L:se=\EG0:sf=^J:so=\EG4:\
        !          2351:        :ue=\EG0:up=^K:us=\EG8:
        !          2352: # From: Alan R. Rogers <rogers%albany@csnet-relay>
        !          2353: # as subsequently hacked over by someone at SCO
        !          2354: # (tvi910+: removed obsolete ":ma=^K^P^L :"; mapped ":pt:" to ":it#8:";
        !          2355: # added ":ug#0:" for terminfo translation -- esr)
        !          2356: tvi910+|910+|televideo 910+:\
        !          2357:        :am:bs:ms:pt:\
        !          2358:        :co#80:it#8:li#24:sg#1:ug#0:\
        !          2359:        :al=\EE:bl=^G:bt=\EI:cd=\EY:ce=\ET:ch=\E]%+ :cl=^Z:\
        !          2360:        :cm=\E=%+ %+ :cr=^M:cv=\E[%+ :dc=\EW:dl=\ER:do=^J:\
        !          2361:        :ei=:ho=^^:ic=\EQ:if=/usr/share/tabset/stdcrt:im=:\
        !          2362:        :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:k4=^AD\r:\
        !          2363:        :k5=^AE\r:k6=^AF\r:k7=^AG\r:k8=^AH\r:k9=^AI\r:kb=^H:\
        !          2364:        :kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:le=^M:ll=\E=7 :nd=^L:\
        !          2365:        :se=\EG0:sf=^J:so=\EG4:ue=\EG0:up=^K:us=\EG8:
        !          2366:
        !          2367: # (tvi912: removed obsolete ":ma=^K^P^L :";
        !          2368: # mapped ":pt:" to default tabs -- esr)
        !          2369: tvi912|tvi920|old televideo 912:\
        !          2370:        :am:bs:pt:\
        !          2371:        :co#80:li#24:sg#1:ug#1:\
        !          2372:        :al=\EE:bl=^G:cd=\Ey:ce=\ET:cl=^Z:cm=\E=%+ %+ :cr=^M:\
        !          2373:        :ct=\E3:dc=\EW:dl=\ER:do=^J:ei=:ho=^^:ic=\EQ:\
        !          2374:        :if=/usr/share/tabset/stdcrt:im=:k0=^AI\r:k1=^A@\r:\
        !          2375:        :k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
        !          2376:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:kl=^H:kr=^L:\
        !          2377:        :ku=^K:le=^H:nd=^L:se=\Ek:sf=^J:so=\Ej:st=\E1:ta=^I:\
        !          2378:        :ue=\Em:up=^K:us=\El:
        !          2379: # the 912 has a <funct> key that's like shift: <funct>8 xmits "^A8\r".
        !          2380: # The 920 has this plus real function keys that xmit different things.
        !          2381: # Terminfo makes you use the funct key on the 912 but the real keys on the 920.
        !          2382: tvi912c|tvi912b|912c|912b|tvi|new televideo 912:\
        !          2383:        :al=\EE:dl=\ER:tc=tvi912:
        !          2384: # set to page 1 when entering ex (\E-17 )
        !          2385: # reset to page 0 when exiting ex (\E-07 )
        !          2386: tvi912-2p|tvi920-2p|912-2p|920-2p|tvi-2p|televideo w/2 pages:\
        !          2387:        :te=\E-07 :ti=\E-17 :tc=tvi912:
        !          2388: # We got some new tvi912c terminals that act really weird on the regular
        !          2389: # termcap, so one of our gurus worked this up. Seems that cursor
        !          2390: # addressing is broken.
        !          2391: tvi912cc|tvi912 at cowell college:\
        !          2392:        :cm@:tc=tvi912c:
        !          2393:
        !          2394: tvi920b|tvi920c|new televideo 920:\
        !          2395:        :al=\EE:dl=\ER:k0=^AI\r:k1=^A@\r:k2=^AA\r:k3=^AB\r:\
        !          2396:        :k4=^AC\r:k5=^AD\r:k6=^AE\r:k7=^AF\r:k8=^AG\r:\
        !          2397:        :k9=^AH\r:tc=tvi912:
        !          2398:
        !          2399: tvi924|televideo tvi924:\
        !          2400:        :am:bw:hs:in:mi:ms:xn:xo:\
        !          2401:        :co#80:it#8:li#24:sg#0:ws#80:\
        !          2402:        :al=\EE:bl=^G:bt=\EI:cd=\Ey:ce=\Et:cl=\E*0:\
        !          2403:        :cm=\E=%+ %+ :cr=^M:cs=\E_%+ %+ :ct=\E3:dc=\EW:\
        !          2404:        :dl=\ER:do=^V:ds=\Es0:ei=:fs=^Y:ho=^^:\
        !          2405:        :i1=\017\E%\E'\E(\EDF\EC\EG0\EN0\Es0\Ev0:ic=\EQ:\
        !          2406:        :if=/usr/share/tabset/stdcrt:im=:k0=^A@\r:k1=^AA\r:\
        !          2407:        :k2=^AB\r:k3=^AC\r:k4=^AD\r:k5=^AE\r:k6=^AF\r:\
        !          2408:        :k7=^AG\r:k8=^AH\r:k9=^AI\r:kb=^H:kd=^V:kh=^^:kl=^H:\
        !          2409:        :kr=^L:ku=^K:le=^H:mb=\EG2:me=\EG0:mk=\EG1:nd=^L:\
        !          2410:        :se=\EG0:sf=^J:so=\EG4:sr=\Ej:st=\E1:ta=^I:ts=\Ef:\
        !          2411:        :ue=\EG0:up=^K:us=\EG8:vb=\Eb\Ed:ve=\E.3:vi=\E.0:\
        !          2412:        :vs=\E.1:
        !          2413: tvi924vb|924vb|televideo model 924 visual bells:\
        !          2414:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:tc=tvi924:
        !          2415:
        !          2416: tvi925|925|televideo 925:\
        !          2417:        :am:bw:hs:ul:\
        !          2418:        :co#80:li#24:sg#1:ug#1:\
        !          2419:        :al=\EE:bl=^G:bt=\EI:cd=\EY:ce=\ET:cl=^Z:\
        !          2420:        :cm=\E=%+ %+ :cr=^M:ct=\E3:dc=\EW:dl=\ER:do=^V:\
        !          2421:        :ds=\Eh:ei=:fs=^M\Eg:ho=^^:ic=\EQ:im=:k0=^AI\r:\
        !          2422:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          2423:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^V:\
        !          2424:        :kh=^^:kl=^H:kr=^L:ku=^K:le=^H:se=\EG0:sf=^J:so=\EG4:\
        !          2425:        :st=\E1:ta=^I:ts=\Eh\Ef:ue=\EG0:up=^K:us=\EG8:\
        !          2426:        :vb=\Eb\Ed:ve=\E.4:vs=\E.2:
        !          2427: tvi925vb|925vb|televideo model 925 visual bells:\
        !          2428:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:tc=tvi925:
        !          2429: # Since the 925 uses a character position to store the escape sequences to go
        !          2430: # in and out of both stand out and underline modes, screen positioning is
        !          2431: # difficult.  The following 925 entries don't use these modes.
        !          2432: tvi925n|925n|televideo model 925 no standout or underline:\
        !          2433:        :se@:so@:ue@:us@:tc=tvi925:
        !          2434: tvi925vbn|925vbn|televideo model 925 visual bells no so or ul:\
        !          2435:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:tc=tvi925n:
        !          2436:
        !          2437: # From: Tim Curry, Univ. of Central Fla. <duke!ucf-cs!tim> 5/21/82
        !          2438: # (tvi925a: removed obsolete ":kn#12:"; mapped ":pt:" to ":it#8:" --esr)
        !          2439: tvi925a|925a|TeleVideo Model 925:\
        !          2440:        :am:bs:bw:pt:\
        !          2441:        :co#80:it#8:li#24:sg#1:ug#1:\
        !          2442:        :al=\EE:bt=\EI:cd=\EY:ce=\ET:cl=^Z:cm=\E=%+ %+ :\
        !          2443:        :dc=\EW:dl=\ER:do=^V:ei=:ic=\EQ:\
        !          2444:        :if=/usr/share/tabset/std:im=:is=\El:kb=^H:kd=^V:\
        !          2445:        :kh=^^:kl=^H:kr=^L:ku=^K:nd=^L:se=\EG0:so=\EG4:\
        !          2446:        :ue=\EG0:up=^K:us=\EG8:\
        !          2447:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:\
        !          2448:        :ve=\E.4:vs=\E.2:
        !          2449:
        !          2450: # From: Todd Litwin <litwin@litwin.jpl.nasa.gov> 28 May 1993
        !          2451: # Originally Tim Curry, Univ. of Central Fla., <duke!ucf-cs!tim> 5/21/82
        !          2452: # for additional capabilities,
        !          2453: # The following tvi descriptions from B:pjphar and virus!mike
        !          2454: # is for all 950s.  It sets the following attributes:
        !          2455: # full duplex (\EDF)           write protect off (\E()
        !          2456: # conversation mode (\EC)      graphics mode off (\E%)
        !          2457: # white on black (\Ed)         auto page flip off (\Ew)
        !          2458: # turn off status line (\Eg)   clear status line (\Ef\r)
        !          2459: # normal video (\E0)           monitor mode off (\EX or \Eu)
        !          2460: # edit mode (\Er)              load blank char to space (\Ee\040)
        !          2461: # line edit mode (\EO)         enable buffer control (^O)
        !          2462: # protect mode off (\E\047)    duplex edit keys (\El)
        !          2463: # program unshifted send key to send line all (\E016)
        !          2464: # program shifted send key to send line unprotected (\E004)
        !          2465: # set the following to nulls:
        !          2466: #      field delimiter (\Ex0\200\200)
        !          2467: #      line delimiter (\Ex1\200\200)
        !          2468: #      start-protected field delimiter (\Ex2\200\200)
        !          2469: #      end-protected field delimiter (\Ex3\200\200)
        !          2470: # set end of text delimiter to carriage return/null (\Ex4\r\200)
        !          2471: # (tvi950: early versions had ":ko=ic,dc,al,dl,cl,bt,ce,cd:"
        !          2472: # and ":ma=^Vj^Kk^Hh^Ll^^H:". I mapped ":pt:" to ":it#8:";
        !          2473: #
        !          2474: tvi950|950|televideo950:\
        !          2475:        :am:bs:hs:mi:ms:pt:xn:xo:\
        !          2476:        :co#80:li#24:sg#1:ug#1:\
        !          2477:        :ae=^X:al=\EE:as=^U:bl=^G:bt=\EI:cd=\Ey:ce=\Et:\
        !          2478:        :cl=\E*:cm=\E=%+ %+ :cr=^M:ct=\E3:dc=\EW:dl=\ER:\
        !          2479:        :do=^J:ds=\Eg\Ef\r:ei=\Er:fs=^M:ho=^^:im=\Eq:\
        !          2480:        :is=\EDF\EC\Ed\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\El\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\011\Ex3\200\200\Ex4\r\200\Ef\r:\
        !          2481:        :k0=^A0\r:k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:\
        !          2482:        :k5=^AD\r:k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:\
        !          2483:        :kd=^V:kh=^^:kl=^H:kr=^L:ku=^K:le=^H:nd=^L:pf=\Ea:\
        !          2484:        :po=\E`:se=\EG0:sf=^J:so=\EG4:sr=\Ej:st=\E1:ta=^I:\
        !          2485:        :ts=\Eg\Ef:ue=\EG0:up=^K:us=\EG8:\
        !          2486:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:
        !          2487: #
        !          2488: # is for 950 with two pages adds the following:
        !          2489: #      set 48 line page (\E\\2)
        !          2490: #      place cursor at page 0, line 24, column 1 (\E-07 )
        !          2491: #      set local (no send) edit keys (\Ek)
        !          2492: #
        !          2493: # two page 950 adds the following:
        !          2494: #      when entering ex, set 24 line page (\E\\1)
        !          2495: #      when exiting ex, reset 48 line page (\E\\2)
        !          2496: #                       place cursor at 0,24,1 (\E-07 )
        !          2497: #      set duplex (send) edit keys (\El) when entering vi
        !          2498: #      set local (no send) edit keys (\Ek) when exiting vi
        !          2499: #
        !          2500: tvi950-2p|950-2p|televideo950 w/2 pages:\
        !          2501:        :is=\EDF\EC\Ed\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\011\Ex3\200\200\Ex4\r\200\E\\2\E-07 \011:\
        !          2502:        :ke=\Ek:ks=\El:te=\E\\2\E-07 :ti=\E\\1\E-07 :tc=tvi950:
        !          2503: #
        !          2504: # is for 950 with four pages adds the following:
        !          2505: #      set 96 line page (\E\\3)
        !          2506: #      place cursor at page 0, line 24, column 1 (\E-07 )
        !          2507: #
        !          2508: # four page 950 adds the following:
        !          2509: #      when entering ex, set 24 line page (\E\\1)
        !          2510: #      when exiting ex, reset 96 line page (\E\\3)
        !          2511: #                       place cursor at 0,24,1 (\E-07 )
        !          2512: #
        !          2513: tvi950-4p|950-4p|televideo950 w/4 pages:\
        !          2514:        :is=\EDF\EC\Ed\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\011\Ex3\200\200\Ex4\r\200\E\\3\E-07 \011:\
        !          2515:        :ke=\Ek:ks=\El:te=\E\\3\E-07 :ti=\E\\1\E-07 :tc=tvi950:
        !          2516: #
        !          2517: # is for reverse video 950 changes the following:
        !          2518: #      set reverse video (\Ed)
        !          2519: #
        !          2520: # set vb accordingly (\Ed ...nulls... \Eb)
        !          2521: #
        !          2522: tvi950-rv|950-rv|televideo950 rev video:\
        !          2523:        :is=\EDF\EC\Eb\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\El\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\011\Ex3\200\200\Ex4\r\200:\
        !          2524:        :vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:tc=tvi950:
        !          2525: #
        !          2526: # uses the appropriate entries from 950-2p and 950-rv
        !          2527: #
        !          2528: tvi950-rv-2p|950-rv-2p|televideo950 rev video w/2 pages:\
        !          2529:        :is=\EDF\EC\Eb\EG0\Eg\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\011\Ex3\200\200\Ex4\r\200\E\\2\E-07 :\
        !          2530:        :ke=\Ek:ks=\El:te=\E\\2\E-07 :ti=\E\\1\E-07 :\
        !          2531:        :vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:tc=tvi950:
        !          2532: #
        !          2533: # uses the appropriate entries from 950-4p and 950-rv
        !          2534: #
        !          2535: tvi950-rv-4p|950-rv-4p|televideo950 rev video w/4 pages:\
        !          2536:        :is=\EDF\EC\Eb\EG0\Er\EO\E'\E(\E%\Ew\EX\Ee \017\011\Ek\E016\E004\Ex0\200\200\Ex1\200\200\Ex2\200\200\011\Ex3\200\200\Ex4\r\200\E\\3\E-07 :\
        !          2537:        :ke=\Ek:ks=\El:te=\E\\3\E-07 :ti=\E\\1\E-07 :\
        !          2538:        :vb=\Ed\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Eb:tc=tvi950:
        !          2539: # From: Andreas Stolcke <stolcke@icsi.berkeley.edu>
        !          2540: # (tvi955: removed obsolete ":ko=ic,dc,al,dl,cl,bt,ce,cd:ma:=^Vj^Kk^Hh^Ll^^H";
        !          2541: # mapped ":pt:" to ":it#8:"; removed incorrect (and overridden) ":do=^J:";
        !          2542: # fixed broken continuations in the :rs: string -- esr)
        !          2543: tvi955|televideo955:\
        !          2544:        :am:bs:hs:mi:pt:xn:xo:\
        !          2545:        :co#80:it#8:li#24:\
        !          2546:        :ae=\E%:al=\EE:as=\E$:bt=\EI:cd=\Ey:ce=\Et:cl=\E*:\
        !          2547:        :cm=\E=%+ %+ :ct=\E3:dc=\EW:dl=\ER:do=^V:ds=\Eg\Ef\r:\
        !          2548:        :ei=\Er:fs=^M:ho=^^:im=\Eq:\
        !          2549:        :is=\E[=3l\EF1\Ed\EG0\E[=5l\E%\El:k0=^A0\r:k1=^A@\r:\
        !          2550:        :k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
        !          2551:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^V:kh=^^:kl=^H:\
        !          2552:        :kr=^L:ku=^K:le=^H:mb=\EG2:me=\EG0\E[=5l:mh=\E[=5h:\
        !          2553:        :mk=\EG1:mr=\EG4:nd=^L:pf=\Ea:po=\E`:ps=\EP:\
        !          2554:        :rs=\EDF\EC\Eg\Er\EO\E'\E(\Ew\EX\Ee \017\E0P\E6\200\E0p\E4\200\Ef\r:\
        !          2555:        :se=\EG0:so=\EG4:sr=\Ej:st=\E1:ts=\Eg\Ef:ue=\EG0:\
        !          2556:        :up=^K:us=\EG8:\
        !          2557:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:\
        !          2558:        :ve=\E.2:vi=\E.0:vs=\E.1:
        !          2559: tvi955-w|955-w|televideo955 w/132 cols:\
        !          2560:        :co#132:\
        !          2561:        :cm=\E[%i%d;%dH:is=\E[=3h\EF1\Ed\EG0\E[=5l\E%\El:tc=tvi955:
        !          2562: # use half-intensity as normal mode, full intensity as bold (md)
        !          2563: tvi955-hb|955-hb|televideo955 half-bright:\
        !          2564:        :is=\E[=3l\EF1\Ed\EG0\E[=5h\E%\El:md=\E[=5l:\
        !          2565:        :me=\EG0\E[=5h:mh@:tc=tvi955:
        !          2566: # From: Humberto Appleton <beto@cs.utexas.edu>, 880521 UT Austin
        !          2567: # (tvi970: removed ":sg#0:"; mapped ":pt:" to ":it#8:" -- esr)
        !          2568: tvi970|televideo970:\
        !          2569:        :bs:da:db:mi:ms:pt:\
        !          2570:        :co#80:it#8:li#24:\
        !          2571:        :ae=\E(B:al=\E[L:as=\E(B:bt=\E[Z:cd=\E[0J:ce=\E[0K:\
        !          2572:        :cl=\E[H\E[2J:cm=\E[%i%d;%df:dc=\E[P:dl=\E[M:do=\ED:\
        !          2573:        :ei=\E[4l:im=\E[4h:\
        !          2574:        :is=\E<\E[?21l\E[19h\E[1Q\E[10l\E[7l\E[H\E[2J:\
        !          2575:        :k1=\E?a:k2=\E?b:k3=\E?c:k4=\E?d:k5=\E?e:k6=\E?f:\
        !          2576:        :k7=\E?g:k8=\E?h:k9=\E?i:kb=^H:kd=\E[B:kh=\E[H:\
        !          2577:        :kl=\E[D:kr=\E[C:ku=\E[A:nd=\E[C:se=\E[0m:so=\E[7m:\
        !          2578:        :sr=\EM:ue=\E[0m:up=\EM:us=\E[4m:\
        !          2579:        :vb=\E[5;m\200\200\200\200\200\200\200\200\200\E[0;m:\
        !          2580:        :vs=\E[1Q:
        !          2581: # From Gene Rochlin <armsis@amber> 9/19/84.
        !          2582: # Works with vi and rogue.  NOTE: Esc v sets autowrap on, Esc u sets 80 chars
        !          2583: # per line (rather than 40), Esc K chooses the normal character set.  Not sure
        !          2584: # padding is needed, but adapted from the tvi920c termcap.  The :so: and :us:
        !          2585: # strings are klutzy, but at least use no screen space.
        !          2586: # (tvipt: removed obsolete ":ma=^Kk^Ll^R^L:" -- esr)
        !          2587: tvipt|televideopt:\
        !          2588:        :am:bs:\
        !          2589:        :co#80:li#24:\
        !          2590:        :al=\EE<5*>:bt=\EI:ce=\ET:cl=^Z:cm=\E=%+ %+ :\
        !          2591:        :dl=\ER<5*>:ho=^^:if=/usr/share/tabset/stdcrt:\
        !          2592:        :is=\Ev\Eu\EK:kb=^H:kd=^J:kl=^H:kr=^L:ku=^K:nd=^L:\
        !          2593:        :se=\EF:so=\EG1@A\EH:ue=\EF:up=^K:us=\EG1B@\EH:
        !          2594:
        !          2595: #### Visual (vi)
        !          2596: #
        !          2597:
        !          2598: # (vi50: mapped ":pt:" to default 8-char tabs -- esr)
        !          2599: vi50|visual 50:\
        !          2600:        :am:bs:ms:pt:\
        !          2601:        :co#80:li#24:\
        !          2602:        :al=\EL:bl=^G:cd=\Ek:ce=\EK:cl=^Z:cm=\E=%+ %+ :cr=^M:\
        !          2603:        :dl=\EM:do=^J:ho=\EH:kb=^H:kd=\EB:kh=\EH:kl=\ED:\
        !          2604:        :kr=\EC:ku=\EA:le=^H:nd=^L:se=\ET:sf=^J:so=\EU:ta=^I:\
        !          2605:        :up=^K:
        !          2606: # From: Jeff Siegal <jbs@athena.mit.edu>
        !          2607: # (vi55: mapped ":pt:" to ":it#8:" -- esr)
        !          2608: vi55|Visual 55:\
        !          2609:        :am:bs:mi:ms:pt:\
        !          2610:        :co#80:it#8:li#24:\
        !          2611:        :al=\EL:cd=\EJ:ce=\EK:cl=\Ev:cm=\EY%+ %+ :\
        !          2612:        :cs=\E_%+A%+A:dc=\Ew:dl=\EM:do=^J:ei=\Eb:ho=\EH:\
        !          2613:        :im=\Ea:is=\Ev\E_AX\Eb\EW\E9P\ET:kb=^H:kd=\EB:kl=\ED:\
        !          2614:        :kr=\EC:ku=\EA:le=^H:nd=\EC:se=\ET:so=\EU:sr=\EI:\
        !          2615:        :up=\EA:
        !          2616:
        !          2617: # The Visual 200 beeps when you type a character in insert mode.
        !          2618: # This is a horribly obnoxious misfeature, and some of the entries
        !          2619: # below try to get around the problem by ignoring the feature or
        !          2620: # turning it off when inputting a character.  They are said not to
        !          2621: # work well at 300 baud.  (You could always cut the wire to the bell!)
        !          2622: # From: <mike@brl-vgr> Mon Nov 14 08:34:29 1983
        !          2623: # (vi200: mapped ":pt:" to default 8-char tabbing -- esr)
        !          2624: vi200|vis200|visual 200 with function keys:\
        !          2625:        :am:bs:pt:\
        !          2626:        :co#80:li#24:\
        !          2627:        :al=\EL:bl=^G:cd=\Ey:ce=\Ex:cl=\Ev:cm=\EY%+ %+ :\
        !          2628:        :cr=^M:dc=\EO:dl=\EM:do=^J:ei=:ho=\EH:ic=\Ei \010\Ej:\
        !          2629:        :im=:is=\E3\Eb\Ej\E\\\El\EG\Ec\Ek:k0=\EP:k1=\EQ:\
        !          2630:        :k2=\ER:k3=\E :k4=\E!:k5=\E":k6=\E#:k7=\E$:k8=\E%:\
        !          2631:        :k9=\E&:kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:le=^H:\
        !          2632:        :nd=\EC:se=\E3:sf=^J:so=\E4:sr=\EI:ta=^I:up=\EA:\
        !          2633:        :ve=\Ec:vs=\Ed:
        !          2634: vi200-rv-ic|visual 200 reverse video using insert char:\
        !          2635:        :ei=\Ej:ic@:im=\Ei:tc=vi200-rv:
        !          2636: # The older Visuals didn't come with function keys. This entry uses
        !          2637: # ks and ke so that the keypad keys can be used as function keys.
        !          2638: # If your version of vi doesn't support function keys you may want
        !          2639: # to use vi200-f.
        !          2640: # (vi200: mapped ":pt:" to ":it#8:" -- esr)
        !          2641: vi200-f|visual|visual 200 no function keys:\
        !          2642:        :am:bs:pt:\
        !          2643:        :co#80:it#8:li#24:\
        !          2644:        :al=\EL:bl=^G:cd=\Ey:ce=\Ex:cl=\Ev:cm=\EY%+ %+ :\
        !          2645:        :cr=^M:dc=\EO:dl=\EM:do=^J:ei=:ho=\EH:ic=\Ei \010\Ej:\
        !          2646:        :im=:is=\E3\Eb\Ej\E\\\El\EG\Ed\Ek:k0=\E?p:k1=\E?q:\
        !          2647:        :k2=\E?r:k3=\E?s:k4=\E?t:k5=\E?u:k6=\E?v:k7=\E?w:\
        !          2648:        :k8=\E?x:k9=\E?y:kd=\EB:ke=\E>:kh=\EH:kl=\ED:kr=\EC:\
        !          2649:        :ks=\E=:ku=\EA:le=^H:nd=\EC:sf=^J:sr=\EI:ta=^I:\
        !          2650:        :up=\EA:ve=\Ec:vs=\Ed:
        !          2651: vi200-rv|visual 200 reverse video:\
        !          2652:        :se=\E3:so=\E4:sr@:ve@:vs@:tc=vi200:
        !          2653: vi200-ic|visual 200 using insert char:\
        !          2654:        :ei=\Ej:ic@:im=\Ei:tc=vi200:
        !          2655:
        !          2656: # the function keys are programmable but we don't reprogram
        !          2657: # them to their default values with "is" because programming
        !          2658: # them is very verbose. maybe an "if" file should be made for
        !          2659: # the 300 and they could be stuck in it.
        !          2660: vi300|visual 300 ansi x3.64:\
        !          2661:        :am:bw:mi:xn:\
        !          2662:        :co#80:li#24:\
        !          2663:        :al=\E[L:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:\
        !          2664:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:do=\E[B:\
        !          2665:        :ei=\E[4l:ho=\E[H:im=\E[4h:\
        !          2666:        :is=\E[7s\E[2;3;4;20;?5;?6l\E[12;?7h\E[1Q\E[0;1(D\E[8s:\
        !          2667:        :k1=\E_A\E\\:k2=\E_B\E\\:k3=\E_C\E\\:k4=\E_D\E\\:\
        !          2668:        :k5=\E_E\E\\:k6=\E_F\E\\:k7=\E_G\E\\:k8=\E_H\E\\:\
        !          2669:        :k9=\E_I\E\\:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:\
        !          2670:        :le=^H:nd=\E[C:se=\E[m:sf=^J:so=\E[1m:sr=\EM:ta=^I:\
        !          2671:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          2672: vi300-rv|visual 300 reverse video:\
        !          2673:        :bl=^G:cr=^M:do=^J:\
        !          2674:        :is=\E[7s\E[2;3;4;20;?6l\E[12;?5;?7h\E[1Q\E[0;1(D\E[8s:\
        !          2675:        :sf=^J:tc=vi300:
        !          2676: # slow scroll doesn't work that well; if you type on the
        !          2677: # keyboard while the terminal is scrolling it drops characters
        !          2678: vi300-ss|visual 300 slow scroll:\
        !          2679:        :bl=^G:cr=^M:do=^J:sf=^J:ve=\E[?4h:vs=\E[?4l:tc=vi300:
        !          2680: # some of the vi300s have older firmware that has the command
        !          2681: # sequence for setting editing extent reversed.
        !          2682: ovi300|visual 300 old:\
        !          2683:        :bl=^G:cr=^M:do=^J:\
        !          2684:        :is=\E[7s\E[2;3;4;20;?5;?6l\E[12;?7h\E[2Q\E[0;1(D\E[8s:\
        !          2685:        :sf=^J:tc=vi300:
        !          2686: # if your version of ex/vi doesn't correctly implement xn
        !          2687: # use this termcap for the vi300
        !          2688: vi300-aw|visual 300 no autowrap:\
        !          2689:        :am@:xn@:\
        !          2690:        :ve=\E[?7h:vs=\E[?7l:tc=vi300:
        !          2691:
        !          2692: # the visual 550 is a visual 300 with tektronix graphics,
        !          2693: # and with 33 lines. clear screen is modified here to
        !          2694: # also clear the graphics.
        !          2695: vi550|visual 550 ansi x3.64:\
        !          2696:        :li#33:\
        !          2697:        :bl=^G:cl=\030\E[H\E[2J:cr=^M:do=^J:sf=^J:tc=vi300:
        !          2698:
        !          2699: # (vi603: this had ":sb=\EM:"; sb is undefined, prob. an error for sr -- esr)
        !          2700: vi603|visual603|visual 603:\
        !          2701:        :hs:mi:\
        !          2702:        :al=\E[L:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          2703:        :cm=\E[%i%d;%dH:cs=\E[%i%d;%dr:dc=\E[P:dl=\E[M:\
        !          2704:        :ds=\EP2;1~\E\\:ei=\E[4l:fs=\E\\:im=\E[4h:\
        !          2705:        :is=\E>\E[?3l\E[?4l\E[?7h\E[?8h\E[1;24r\E[24;1H:\
        !          2706:        :mb=\E[5m:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:\
        !          2707:        :rs=\E>\E[?3l\E[?4l\E[?7h\E[?8h:se=\E[27m:sf=\ED:\
        !          2708:        :so=\E[7m:sr=\EM:ts=\EP2~:ue=\E[24m:up=\E[A:us=\E[4m:tc=vt100:
        !          2709:
        !          2710: #### Wyse (wy)
        !          2711: #
        !          2712: #      Wyse Technology
        !          2713: #      3471 North First Street
        !          2714: #      San Jose, CA 95134
        !          2715: #      Vox: (408)-473-1200
        !          2716: #      Fax: (408) 473-1222
        !          2717: #
        !          2718: # Wyse sales can be reached by phone at 1-800-GET-WYSE.  Tech support is at
        !          2719: # (800)-800-WYSE (option 5 gets you a human).
        !          2720: #
        !          2721: # All the following entries until (but not including) wy100q are direct from
        !          2722: # Wyse technical support and represent their best knowledge as of January 1995.
        !          2723: # I made two trivial syntax fixes in the wyse30 entry, added OTbs everywhere
        !          2724: # needed, and merged in OTug#1 entries (as indicated by the termcap version of
        !          2725: # their descriptions).
        !          2726: #
        !          2727: # Note: The wyse75, wyse85, and wyse99 have been discontinued.
        !          2728:
        !          2729: #         Although the Wyse 30 can support more than one attribute
        !          2730: #      it requires magic cookies to do so.  Many applications do not
        !          2731: #      function well with magic cookies.  The following terminfo uses
        !          2732: #      the protect mode to support one attribute (dim) without cookies.
        !          2733: #      If more than one attribute is needed then the wy30-mc terminfo
        !          2734: #      should be used.
        !          2735: #
        !          2736: wy30|wyse30|Wyse 30:\
        !          2737:        :am:bs:bw:hs:mi:ms:xo:\
        !          2738:        :co#80:li#24:ma#1:ug#1:ws#45:\
        !          2739:        :ae=\EH^C:al=\EE:as=\EH^B:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          2740:        :cl=\E+:cm=\E=%+ %+ :cr=^M:ct=\E0:dc=\EW:dl=\ER:\
        !          2741:        :do=^J:ds=\EF\r:ei=\Er:fs=^M:ho=^^:im=\Eq:ip=:\
        !          2742:        :is=\E'\E(\E^3\E`9\016\024:k1=^A@\r:k2=^AA\r:\
        !          2743:        :k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:k7=^AF\r:\
        !          2744:        :k8=^AG\r:kb=^H:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:le=^H:\
        !          2745:        :ll=^^^K:me=\E(\EH\003:mh=\E`7\E):mp=\E`7\E):nd=^L:\
        !          2746:        :nw=^M^J:pf=^T:po=^X:ps=\EP:\
        !          2747:        :..sa=%?%p1%p5%p8%|%|%t\E`7\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;:\
        !          2748:        :se=\E(:sf=\n:so=\E`7\E):sr=\Ej:st=\E1:ta=\011:\
        !          2749:        :ts=\EF:up=^K:ve=\E`1:vi=\E`0:
        !          2750: #
        !          2751: #      This terminal description uses the non-hidden attribute mode
        !          2752: #      (with magic cookie).
        !          2753: #
        !          2754: wy30-mc|wyse30-mc|wyse 30 with magic cookies:\
        !          2755:        :ms@:\
        !          2756:        :ma@:sg#1:ug#1:\
        !          2757:        :ae=\EG0\EH\003:as=\EG0\EH\002:mb=\EG2:\
        !          2758:        :me=\EG0\E(\EH\003:mh=\EGp:mk=\EG1:mp=\EG0\E):\
        !          2759:        :mr=\EG4:\
        !          2760:        :..sa=\EG%'0'%?%p2%p6%|%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c%?%p8%t\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;:\
        !          2761:        :se=\EG0:so=\EG4:te=\EG0:ue=\EG0:us=\EG8:tc=wy30:
        !          2762: #      The manditorary pause used by flash does not work with
        !          2763: #      older versions of terminfo.  If you see this effect then
        !          2764: #      unset xon and delete the / from the delay.
        !          2765: #      i.e. change $<100/> to $<100>
        !          2766: wy30-vb|wyse30-vb|wyse 30 visible bell:\
        !          2767:        :vb=\E`8\E`9:tc=wy30:
        !          2768: #
        !          2769: #         The Wyse 50 can support one attribute (e.g. Dim, Inverse,
        !          2770: #      Normal) without magic cookies by using the protect mode.
        !          2771: #      The following description uses this feature, but when more
        !          2772: #      than one attribute is put on the screen at once, all attributes
        !          2773: #      will be changed to be the same as the last attribute given.
        !          2774: #         The Wyse 50 can support more attributes when used with magic
        !          2775: #      cookies.  The wy50-mc terminal description uses magic cookies
        !          2776: #      to correctly handle multiple attributes on a screen.
        !          2777: #
        !          2778: wy50|wyse50|Wyse 50:\
        !          2779:        :am:bs:bw:hs:mi:ms:xo:\
        !          2780:        :co#80:li#24:ma#1:ws#45:\
        !          2781:        :ae=\EH^C:al=\EE:as=\EH^B:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          2782:        :cl=\E+:cm=\E=%+ %+ :cr=^M:ct=\E0:dc=\EW:dl=\ER:\
        !          2783:        :do=^J:ds=\EF\r:ei=\Er:fs=^M:ho=^^:i1=\E`\072\E`9:\
        !          2784:        :im=\Eq:ip=:is=\016\024\E'\E(:k1=^A@\r:k2=^AA\r:\
        !          2785:        :k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:k7=^AF\r:\
        !          2786:        :k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:kh=^^:kl=^H:kr=^L:\
        !          2787:        :ku=^K:le=^H:ll=^^^K:me=\E(\EH\003:mh=\E`7\E):\
        !          2788:        :mp=\E`7\E):mr=\E`6\E):nd=^L:nw=^M^J:pf=^T:po=^X:\
        !          2789:        :ps=\EP:\
        !          2790:        :..sa=%?%p1%p3%|%t\E`6\E)\n%e%p5%p8%|%t\E`7\E)%e\E(%;\n%?%p9%t\EH\002%e\EH\003%;:\
        !          2791:        :se=\E(:sf=\n:so=\E`6\E):sr=\Ej:st=\E1:ta=^I:ts=\EF:\
        !          2792:        :up=^K:ve=\E`1:vi=\E`0:
        !          2793: #
        !          2794: #      This terminal description uses the non-hidden attribute mode
        !          2795: #      (with magic cookie).
        !          2796: #
        !          2797: wy50-mc|wyse50-mc|wyse 50 with magic cookies:\
        !          2798:        :ms@:\
        !          2799:        :ma@:sg#1:ug#1:\
        !          2800:        :ae=\EG0\EH\003:as=\EG0\EH\002:mb=\EG2:\
        !          2801:        :me=\EG0\E(\EH\003:mh=\EGp:mk=\EG1:mp=\EG0\E):\
        !          2802:        :mr=\EG4:\
        !          2803:        :..sa=\EG%'0'%?%p2%p6%|%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c%?%p8%t\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;:\
        !          2804:        :se=\EG0:so=\EGt:te=\EG0:ue=\EG0:us=\EG8:tc=wy50:
        !          2805: #      The mandatory pause used by flash does not work with
        !          2806: #      older versions of terminfo.  If you see this effect then
        !          2807: #      unset xon and delete the / from the delay.
        !          2808: #      i.e. change $<100/> to $<100>
        !          2809: wy50-vb|wyse50-vb|wyse 50 visible bell:\
        !          2810:        :vb=\E`8\E`9:tc=wy50:
        !          2811: wy50-w|wyse50-w|wyse 50 132-column:\
        !          2812:        :co#132:ws#97:\
        !          2813:        :cm=\Ea%i%dR%dC:dc=\EW:i1=\E`;\E`9:tc=wy50:
        !          2814: wy50-wvb|wyse50-wvb|wyse 50 132-column visible bell:\
        !          2815:        :vb=\E`8\E`9:tc=wy50-w:
        !          2816: #
        !          2817: #      The Wyse 350 is a Wyse 50 with color.
        !          2818: #      Unfortunately this means that it has magic cookies.
        !          2819: #      The color attributes are designed to overlap the reverse, dim and
        !          2820: #      underline attributes.  This is nice for monochrome applications
        !          2821: #      because you can make underline stuff green (or any other color)
        !          2822: #      but for true color applications it's not so hot because you cannot
        !          2823: #      mix color with reverse, dim or underline.
        !          2824: #          To further complicate things one of the attributes must be
        !          2825: #      black (either the foreground or the background).  In reverse video
        !          2826: #      the background changes color with black letters.  In normal video
        !          2827: #      the foreground changes colors on a black background.
        !          2828: #          This terminfo uses some of the more advanced features of curses
        !          2829: #      to display both color and blink.  In the final analysis I am not
        !          2830: #      sure that the wy350 runs better with this terminfo than it does
        !          2831: #      with the wy50 terminfo (with user adjusted colors).
        !          2832: #
        !          2833: wy350|wyse350|Wyse 350:\
        !          2834:        :am:bs:bw:hs:mi:xo:\
        !          2835:        :co#80:li#24:sg#1:ug#1:ws#45:\
        !          2836:        :ae=\EG0\EH\003:al=\EE:as=\EG0\EH\002:bl=^G:bt=\EI:\
        !          2837:        :cd=\EY:ce=\ET:cl=\E+:cm=\E=%+ %+ :cr=^M:ct=\E0:\
        !          2838:        :dc=\EW:dl=\ER:do=^J:ds=\EF\r:ei=\Er:fs=^M:ho=^^:\
        !          2839:        :i1=\E`\072\E`9:i2=\E%?:im=\Eq:ip=:is=\016\024\E'\E(:\
        !          2840:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          2841:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:\
        !          2842:        :kh=^^:kl=^H:kr=^L:ku=^K:le=^H:ll=^^^K:mb=\EG2:\
        !          2843:        :me=\EG0\E(\EH\003%{0}%PA%{0}%PC:mh=\EGp:mk=\EG1:\
        !          2844:        :mp=\EG0\E):mr=\EG4:nd=^L:nw=^M^J:pf=^T:po=^X:ps=\EP:\
        !          2845:        :..sa=%{0}%?%p4%t%{2}%|%;\n%?%p7%t%{1}%|%;%PA\n\EG%?%gC%t%gC%e\n%{0}%?%p1%t%{4}%|%;\n%?%p2%t%{8}%|%;\n%?%p3%t%{4}%|%;\n%?%p5%t%{64}%|%;\n%;%gA%+%'0'%+%c\n%?%p8%t\E)%e\E(%;%?%p9%t\EH\002%e\EH\003%;:\
        !          2846:        :se=\EG0:sf=\n:so=\EG4:sr=\Ej:st=\E1:ta=^I:ts=\EF:\
        !          2847:        :ue=\EG0:up=^K:us=\EG8:ve=\E`1:vi=\E`0:
        !          2848: #      The manditorary pause used by flash does not work with
        !          2849: #      older versions of terminfo.  If you see this effect then
        !          2850: #      unset xon and delete the / from the delay.
        !          2851: #      i.e. change $<100/> to $<100>
        !          2852: wy350-vb|wyse350-vb|wyse 350 visible bell:\
        !          2853:        :vb=\E`8\E`9:tc=wy350:
        !          2854: wy350-w|wyse350-w|wyse 350 132-column:\
        !          2855:        :co#132:ws#97:\
        !          2856:        :cm=\Ea%i%dR%dC:dc=\EW:i1=\E`;\E`9:tc=wy350:
        !          2857: wy350-wvb|wyse350-wvb|wyse 350 132-column visible bell:\
        !          2858:        :vb=\E`8\E`9:tc=wy350-w:
        !          2859: #
        !          2860: #      This terminfo description is untested.
        !          2861: #
        !          2862: wy100|wyse 100:\
        !          2863:        :hs:mi:\
        !          2864:        :co#80:li#24:sg#1:ug#1:\
        !          2865:        :al=\EE:bl=^G:cd=\EY:ce=\ET:cl=\E;:cm=\E=%+ %+ :\
        !          2866:        :cr=^M:dc=\EW:dl=\ER:do=^J:ds=\EA31:ei=\Er:fs=^M:\
        !          2867:        :im=\Eq:is=\Eu\E0:k1=^A@\r:k2=^AA\r:k3=^AB\r:\
        !          2868:        :k4=^AC\r:k5=^AD\r:k6=^AE\r:k7=^AF\r:k8=^AG\r:kb=^H:\
        !          2869:        :kd=^J:kh=\E{:kl=^H:kr=^L:ku=^K:le=^H:nd=^L:se=\EG0:\
        !          2870:        :sf=^J:so=\EG4:ts=\EF:ue=\EG0:up=^K:us=\EG8:
        !          2871: #
        !          2872: #      The Wyse 120/150 has most of the features of the Wyse 60.
        !          2873: #
        !          2874: #      This terminal does not need padding up to 9600 baud!
        !          2875: #
        !          2876: #      (msgr) should be set but the clear screen fails when in
        !          2877: #      alt-charset mode.  Try \EcE  \E+  if the screen is really clear
        !          2878: #      then set msgr.
        !          2879: #
        !          2880: wy120|wyse120|wy150|wyse150|Wyse 120/150:\
        !          2881:        :am:bs:bw:hs:km:mi:ms:xo:\
        !          2882:        :co#80:it#8:li#24:pb#9601:ws#45:\
        !          2883:        :ae=\EcD:al=\EE:as=\EcE:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          2884:        :cl=\E+:cm=\E=%+ %+ :cr=^M:dc=\EW:dl=\ER:do=^J:\
        !          2885:        :ds=\EF\r:ei=\Er:fs=^M:ho=^^:i1=\EcB0\EcC1:\
        !          2886:        :i2=\EwJ\Ew1:im=\Eq:ip=:\
        !          2887:        :is=\Ed$\EcD\E'\Er\EH\003\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1\016\024\El:\
        !          2888:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          2889:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:\
        !          2890:        :kh=^^:kl=^H:kr=^L:ku=^K:le=^H:ll=^^^K:mb=\EG2:\
        !          2891:        :me=\E(\EH\003\EG0\EcD:mh=\EGp:mk=\EG1:mp=\E):\
        !          2892:        :mr=\EG4:nd=^L:nw=\r\n:pf=^T:po=\Ed#:ps=\EP:\
        !          2893:        :..sa=%?%p8%t\E)%e\E(%;%?%p9%t\EcE%e\EcD%;\EG%'0'%?%p2%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c:\
        !          2894:        :se=\EG0:sf=\n:so=\EGt:sr=\Ej:st=\E1:ta=\011:te=\Ew1:\
        !          2895:        :ti=\Ew0:ts=\EF:ue=\EG0:up=^K:us=\EG8:ve=\E`1:\
        !          2896:        :vi=\E`0:
        !          2897: #
        !          2898: wy120-w|wyse120-w|wy150-w|wyse150-w|wyse 120/150 132-column:\
        !          2899:        :co#132:ws#97:\
        !          2900:        :cm=\Ea%i%dR%dC:dc=\EW:ip=:tc=wy120:
        !          2901: #
        !          2902: wy120-25|wyse120-25|wy150-25|wyse150-25|wyse 120/150 80-column 25-lines:\
        !          2903:        :li#25:\
        !          2904:        :tc=wy120:
        !          2905: #
        !          2906: wy120-25-w|wyse120-25-w|wy150-25-w|wyse150-25-w|wyse 120/150 132-column 25-lines:\
        !          2907:        :li#25:\
        !          2908:        :tc=wy120-w:
        !          2909: #
        !          2910: wy120-vb|wyse120-vb|wy150-vb|wyse150-vb|Wyse 120/150 visible bell:\
        !          2911:        :vb=\E`8\E`9:tc=wy120:
        !          2912: #
        !          2913: wy120-w-vb|wy120-wvb|wyse120-wvb|wy150-w-vb|wyse150-w-vb|Wyse 120/150 132-column visible bell:\
        !          2914:        :vb=\E`8\E`9:tc=wy120-w:
        !          2915: #
        !          2916: #      The Wyse 60 is like the Wyse 50 but with more padding.
        !          2917: #      The reset strings are slow and the pad times very depending
        !          2918: #      on other parameters such as font loading.  I have tried
        !          2919: #      to follow the following outline:
        !          2920: #              rs1 -> set personality
        !          2921: #              rs2 -> set number of columns
        !          2922: #              rs3 -> set number of lines
        !          2923: #              is1 -> select the proper font
        !          2924: #              is2 -> do the initialization
        !          2925: #              is3 -> set up display memory (2 pages)
        !          2926: #
        !          2927: #      The Wyse 60's that have vt100 emulation are slower than the
        !          2928: #      older Wyse 60's.  This change happened mid-1987.
        !          2929: #      The capabilities effected are (dch1) (dl1) (il1) (ind) (ri)
        !          2930: #
        !          2931: #      The meta key is only half right.  This terminal will return the
        !          2932: #      high order bit set when you hit CTRL-function_key
        !          2933: #
        !          2934: #      It may be useful to assign two function keys with the
        !          2935: #      values  \E=(\s  look at old data in page 1
        !          2936: #              \E=W,   look at bottem of page 1
        !          2937: #      where \s is a space ( ).
        !          2938: #
        !          2939: #      Note:
        !          2940: #         The Wyse 60 runs faster when the XON/XOFF
        !          2941: #         handshake is turned off.
        !          2942: #
        !          2943: wy60|wyse60|Wyse 60:\
        !          2944:        :am:bs:bw:hs:km:mi:ms:\
        !          2945:        :co#80:li#24:ws#45:\
        !          2946:        :ae=\EcD:al=\EE:as=\EcE:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          2947:        :cl=\E+:cm=\E=%+ %+ :cr=^M:ct=\E0:dc=\EW:dl=\ER:\
        !          2948:        :do=^J:ds=\EF\r:ei=\Er:fs=^M:ho=^^:i1=\EcB0\EcC1:\
        !          2949:        :i2=\EwJ\Ew1:im=\Eq:ip=:\
        !          2950:        :is=\Ed$\EcD\E'\Er\EH\003\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1\016\024\El:\
        !          2951:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          2952:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:\
        !          2953:        :kh=^^:kl=^H:kr=^L:ku=^K:le=^H:ll=^^^K:mb=\EG2:\
        !          2954:        :me=\E(\EH\003\EG0\EcD:mh=\EGp:mk=\EG1:mp=\E):\
        !          2955:        :mr=\EG4:nd=^L:nw=\r\n:pf=^T:po=\Ed#:ps=\EP:\
        !          2956:        :..sa=%?%p8%t\E)%e\E(%;%?%p9%t\EcE%e\EcD%;\EG%'0'%?%p2%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c:\
        !          2957:        :se=\EG0:sf=\n:so=\EGt:sr=\Ej:st=\E1:ta=\011:te=\Ew1:\
        !          2958:        :ti=\Ew0:ts=\EF:ue=\EG0:up=^K:us=\EG8:ve=\E`1:\
        !          2959:        :vi=\E`0:
        !          2960: #
        !          2961: wy60-w|wyse60-w|wyse 60 132-column:\
        !          2962:        :co#132:ws#97:\
        !          2963:        :cm=\Ea%i%dR%dC:dc=\EW:ip=:tc=wy60:
        !          2964: #
        !          2965: wy60-25|wyse60-25|wyse 60 80-column 25-lines:\
        !          2966:        :li#25:\
        !          2967:        :tc=wy60:
        !          2968: wy60-25-w|wyse60-25-w|wyse 60 132-column 25-lines:\
        !          2969:        :li#25:\
        !          2970:        :tc=wy60-w:
        !          2971: #
        !          2972: wy60-42|wyse60-42|wyse 60 80-column 42-lines:\
        !          2973:        :li#42:\
        !          2974:        :al=\EE:cd=\Ey:cl=\E+:cm=\E=%+ %+ :dc=\EW:dl=\ER:\
        !          2975:        :i1=\EcB2\EcC3:ip=:nw=\r\n:sf=\n:sr=\Ej:tc=wy60:
        !          2976: wy60-42-w|wyse60-42-w|wyse 60 132-column 42-lines:\
        !          2977:        :co#132:ws#97:\
        !          2978:        :cd=\Ey:cl=\E+:cm=\Ea%i%dR%dC:dc=\EW:ho=\036:ip=:\
        !          2979:        :nw=\r\n:tc=wy60-42:
        !          2980: #
        !          2981: wy60-43|wyse60-43|wyse 60 80-column 43-lines:\
        !          2982:        :li#43:\
        !          2983:        :tc=wy60-42:
        !          2984: wy60-43-w|wyse60-43-w|wyse 60 132-column 43-lines:\
        !          2985:        :li#43:\
        !          2986:        :tc=wy60-42-w:
        !          2987: #
        !          2988: wy60-vb|wyse60-vb|Wyse 60 visible bell:\
        !          2989:        :vb=\E`8\E`9:tc=wy60:
        !          2990: wy60-w-vb|wy60-wvb|wyse60-wvb|Wyse 60 132-column visible bell:\
        !          2991:        :vb=\E`8\E`9:tc=wy60-w:
        !          2992:
        !          2993: #      The Wyse-99GT looks at lot like the Wyse 60 except that it
        !          2994: #      does not have the 42/43 line mode.  In the Wyse-60 the "lines"
        !          2995: #      setup parameter controls the number of lines on the screen.
        !          2996: #      For the Wyse 99GT the "lines" setup parameter controls the
        !          2997: #      number of lines in a page.  The screen can display 25 lines max.
        !          2998: #          The Wyse-99GT also has personalities for the VT220 and
        !          2999: #      Tektronix 4014.  But this has no bearing on the native mode.
        !          3000: #
        !          3001: #      (msgr) should be set but the clear screen fails when in
        !          3002: #      alt-charset mode.  Try \EcE  \E+  if the screen is really clear
        !          3003: #      then set msgr, else use msgr@.
        !          3004: #
        !          3005: #      u0 -> enter Tektronix mode
        !          3006: #      u1 -> exit Tektronix mode
        !          3007: #
        !          3008: wy99gt|wyse99gt|Wyse 99gt:\
        !          3009:        :ms@:\
        !          3010:        :al=\EE:cd=\Ey:ce=\Et:cl=\E+:dc=\EW:dl=\ER:i2=\Ew0:\
        !          3011:        :ip=:nw@:sf=\n:sr=\Ej:ta=\011:te=\Ew0:ti=\Ew1:tc=wy60:
        !          3012: #
        !          3013: wy99gt-w|wyse99gt-w|wyse 99gt 132-column:\
        !          3014:        :co#132:ws#97:\
        !          3015:        :cd=\Ey:cl=\E+:cm=\Ea%i%dR%dC:dc=\EW:ip=:tc=wy99gt:
        !          3016: #
        !          3017: wy99gt-25|wyse99gt-25|wyse 99gt 80-column 25-lines:\
        !          3018:        :li#25:\
        !          3019:        :tc=wy99gt:
        !          3020: #
        !          3021: wy99gt-25-w|wyse99gt-25-w|wyse 99gt 132-column 25-lines:\
        !          3022:        :li#25:\
        !          3023:        :tc=wy99gt-w:
        !          3024: #
        !          3025: wy99gt-vb|wyse99gt-vb|Wyse 99gt visible bell:\
        !          3026:        :vb=\E`8\E`9:tc=wy99gt:
        !          3027: #
        !          3028: wy99gt-w-vb|wy99gt-wvb|wyse99gt-wvb|Wyse 99gt 132-column visible bell:\
        !          3029:        :vb=\E`8\E`9:tc=wy99gt-w:
        !          3030: #
        !          3031: #      The Wyse 160 is combination of the WY-60 and the WY-99gt.
        !          3032: #      The reset strings are slow and the pad times very depending
        !          3033: #      on other parameters such as font loading.  I have tried
        !          3034: #      to follow the following outline:
        !          3035: #              rs1 -> set personality
        !          3036: #              rs2 -> set number of columns
        !          3037: #              rs3 -> set number of lines
        !          3038: #              is1 -> select the proper font
        !          3039: #              is2 -> do the initialization
        !          3040: #              is3 -> set up display memory (2 pages)
        !          3041: #
        !          3042: #      The display memory may be used for either text or graphics.
        !          3043: #      When "Display Memory = Shared" the terminal will have more pages
        !          3044: #      but garbage may be left on the screen when you switch from
        !          3045: #      graphics to text.  If "Display Memory = Unshared" then the
        !          3046: #      text area will be only one page long.
        !          3047: #
        !          3048: wy160|wyse160|Wyse 160:\
        !          3049:        :am:bs:bw:hs:km:mi:ms:\
        !          3050:        :co#80:li#24:ws#38:\
        !          3051:        :ae=\EcD:al=\EE:as=\EcE:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          3052:        :cl=\E+:cm=\E=%+ %+ :cr=^M:ct=\E0:dc=\EW:dl=\ER:\
        !          3053:        :do=^J:ds=\EF\r:ei=\Er:fs=^M:ho=^^:i1=\EcB0\EcC1:\
        !          3054:        :i2=\Ew0:im=\Eq:ip=:\
        !          3055:        :is=\Ed$\EcD\E'\Er\EH\003\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1\016\024\El:\
        !          3056:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          3057:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:\
        !          3058:        :kh=^^:kl=^H:kr=^L:ku=^K:le=^H:ll=^^^K:mb=\EG2:\
        !          3059:        :me=\E(\EH\003\EG0\EcD:mh=\EGp:mk=\EG1:mp=\E):\
        !          3060:        :mr=\EG4:nd=^L:nw=\r\n:pf=^T:po=\Ed#:ps=\EP:\
        !          3061:        :..sa=%?%p8%t\E)%e\E(%;%?%p9%t\EcE%e\EcD%;\EG%'0'%?%p2%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c:\
        !          3062:        :se=\EG0:sf=\n:so=\EGt:sr=\Ej:st=\E1:ta=^I:te=\Ew0:\
        !          3063:        :ti=\Ew1:ts=\EF:ue=\EG0:up=^K:us=\EG8:ve=\E`1:\
        !          3064:        :vi=\E`0:
        !          3065: #
        !          3066: wy160-w|wyse160-w|wyse 160 132-column:\
        !          3067:        :co#132:ws#90:\
        !          3068:        :cm=\Ea%i%dR%dC:dc=\EW:tc=wy160:
        !          3069: #
        !          3070: wy160-25|wyse160-25|wyse 160 80-column 25-lines:\
        !          3071:        :li#25:\
        !          3072:        :tc=wy160:
        !          3073: wy160-25-w|wyse160-25-w|wyse 160 132-column 25-lines:\
        !          3074:        :li#25:\
        !          3075:        :tc=wy160-w:
        !          3076: #
        !          3077: wy160-42|wyse160-42|wyse 160 80-column 42-lines:\
        !          3078:        :li#42:\
        !          3079:        :al=\EE:cd=\Ey:cl=\E+:dl=\ER:i1=\EcB2\EcC3:nw=\r\n:\
        !          3080:        :sf=\n:sr=\Ej:tc=wy160:
        !          3081: wy160-42-w|wyse160-42-w|wyse 160 132-column 42-lines:\
        !          3082:        :co#132:ws#90:\
        !          3083:        :cm=\Ea%i%dR%dC:dc=\EW:ip=:tc=wy160-42:
        !          3084: #
        !          3085: wy160-43|wyse160-43|wyse 160 80-column 43-lines:\
        !          3086:        :li#43:\
        !          3087:        :tc=wy160-42:
        !          3088: wy160-43-w|wyse160-43-w|wyse 160 132-column 43-lines:\
        !          3089:        :li#43:\
        !          3090:        :tc=wy160-42-w:
        !          3091: #
        !          3092: wy160-vb|wyse160-vb|Wyse 160 visible bell:\
        !          3093:        :vb=\E`8\E`9:tc=wy160:
        !          3094: wy160-w-vb|wy160-wvb|wyse160-wvb|Wyse 160 132-column visible bell:\
        !          3095:        :vb=\E`8\E`9:tc=wy160-w:
        !          3096: #
        !          3097: #      The Wyse 75 is a vt100 lookalike without advanced video.
        !          3098: #
        !          3099: #         The Wyse 75 can support one attribute (e.g. Dim, Inverse,
        !          3100: #      Underline) without magic cookies.  The following description
        !          3101: #      uses this capability, but when more than one attribute is
        !          3102: #      put on the screen at once, all attributes will be changed
        !          3103: #      to be the same as the last attribute given.
        !          3104: #         The Wyse 75 can support more attributes when used with magic
        !          3105: #      cookies.  The wy75-mc terminal description uses magic cookies
        !          3106: #      to correctly handle multiple attributes on a screen.
        !          3107: #
        !          3108: # (untranslatable capabilities removed to fit entry within 1023 bytes)
        !          3109: wy75|wyse75|wyse 75:\
        !          3110:        :am:bs:hs:mi:ms:xn:xo:\
        !          3111:        :co#80:li#24:ma#1:pb#1201:ug#1:ws#78:\
        !          3112:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3113:        :K1=\EOw:K2=\EOu:K3=\EOy:K4=\EOq:K5=\EOs:LE=\E[%dD:\
        !          3114:        :RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:\
        !          3115:        :bt=\E[Z:cd=\E[J:ce=\E[K:ch=\E[%i%dG:cl=\E[H\E[J:\
        !          3116:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:\
        !          3117:        :dc=\E[P:dl=\E[M:do=^J:\
        !          3118:        :ds=\E[>\\\054\001\001\E[>-\001\001:ec=\E[%dX:\
        !          3119:        :ei=\E[4l:fs=^A:ho=\E[H:\
        !          3120:        :i1=\E[2;4;20;30l\E[?1;10l\E[12h\E[?7;8;25h:i2=\E[m:\
        !          3121:        :im=\E[4h:ip=:is=\E>\E(B\E)0\017:k1=\E[?5i:k2=\E[?3i:\
        !          3122:        :k3=\E[2i:k4=\E[@:k5=\E[M:k6=\E[17~:k7=\E[18~:\
        !          3123:        :k8=\E[19~:k9=\E[20~:kb=^H:kd=\E[B:ke=\E>:kh=\E[H:\
        !          3124:        :kl=\E[D:kr=\E[C:ks=\E[?1l\E[?7h\E=:ku=\E[A:le=^H:\
        !          3125:        :me=\E[m\017:mh=\E[0t\E[2m:mr=\E[1t\E[7m:nd=\E[C:\
        !          3126:        :pf=\E[4i:po=\E[5i:ps=\E[0i:rc=\E8:sc=\E7:se=\E[m:\
        !          3127:        :sf=\n:so=\E[1t\E[7m:sr=\EM:st=\EH:ta=^I:\
        !          3128:        :ts=\E[>\\\054\001:ue=\E[m:up=\E[A:us=\E[2t\E[4m:\
        !          3129:        :ve=\E[?25h:vi=\E[?25l:
        !          3130: #
        !          3131: #      This terminal description uses the non-hidden attribute mode
        !          3132: #      (with magic cookie).
        !          3133: #
        !          3134: wy75-mc|wyse75-mc|wyse 75 with magic cookies:\
        !          3135:        :ms@:\
        !          3136:        :ma@:sg#1:ug#1:\
        !          3137:        :ae=\E[0p\017:as=\E[0p\016:i2=\E[m\E[p:mb=\E[2p:\
        !          3138:        :me=\E[0p\017:mh=\E[1p:mk=\E[4p:mr=\E[16p:\
        !          3139:        :..sa=\E[%{0}%?%p2%p6%|%t%{8}%|%;%?%p1%p3%|%p6%|%t%{16}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{1}%|%;%?%p7%t%{4}%|%;%dp%?%p9%t\016%e\017%;:\
        !          3140:        :se=\E[0p:so=\E[17p:ue=\E[0p:us=\E[8p:tc=wy75:
        !          3141: wy75-vb|wyse75-vb|wyse 75 with visible bell:\
        !          3142:        :pb@:\
        !          3143:        :vb=\E[30h\E\\\054\E[30l:tc=wy75:
        !          3144: wy75-w|wyse75-w|wyse 75 in 132 column mode:\
        !          3145:        :co#132:ws#130:\
        !          3146:        :tc=wy75:
        !          3147: wy75-wvb|wyse75-wvb|wyse 75 with visible bell 132 columns:\
        !          3148:        :pb@:\
        !          3149:        :vb=\E[30h\E\\\054\E[30l:tc=wy75-w:
        !          3150: #
        !          3151: #      Wyse 85 emulating a vt220 7 bit mode.
        !          3152: #              24 line screen with status line.
        !          3153: #
        !          3154: #      The vt220 mode permits more function keys but it wipes out
        !          3155: #      the escape key.  I strongly reccomend that f11 be set to
        !          3156: #      escape (esc).
        !          3157: #      The terminal may have to be set for 8 data bits and 2 stop
        !          3158: #      bits for the arrow keys to work.
        !          3159: #      The Wyse 85 runs faster with XON/XOFF enabled.  Also the
        !          3160: #      (dch) and (ich) work best when XON/XOFF is set.  (ich) and
        !          3161: #      (dch) leave trash on the screen when used without XON/XOFF.
        !          3162: #
        !          3163: wy85|wyse85|wyse 85:\
        !          3164:        :am:bs:hs:mi:ms:xn:xo:\
        !          3165:        :co#80:it#8:li#24:ws#80:\
        !          3166:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3167:        :K1=\EOw:K2=\EOu:K3=\EOy:K4=\EOq:K5=\EOs:LE=\E[%dD:\
        !          3168:        :RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:\
        !          3169:        :bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:\
        !          3170:        :cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:\
        !          3171:        :ds=\E[40l:ec=\E[%dX:ei=\E[4l:fs=\E[1;24r\E8:ho=\E[H:\
        !          3172:        :i1=\E[62;1"p\E[?5W:i2=\E>\E(B\E)0\017\E[m:im=\E[4h:\
        !          3173:        :ip=:is=\E[2;4;20;30l\E[?1;4;10;16l\E[12h\E[?7;8;25h:\
        !          3174:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k6=\E[17~:k7=\E[18~:\
        !          3175:        :k8=\E[19~:k9=\E[20~:kb=^H:kd=\E[B:ke=\E>:kh=\E[26~:\
        !          3176:        :kl=\E[D:kr=\E[C:ks=\E[?1l\E=:ku=\E[A:le=^H:mb=\E[5m:\
        !          3177:        :md=\E[1m:me=\E[m\017:mh=\E[2m:mk=\E[8m:mr=\E[7m:\
        !          3178:        :nd=\E[C:pf=\E[4i:po=\E[5i:ps=\E[0i:rc=\E8:\
        !          3179:        :..sa=\E[0%?%p2%t;4%;%?%p3%p1%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\016%e\017%;:\
        !          3180:        :sc=\E7:se=\E[m:sf=\n:so=\E[7m:sr=\EM:st=\EH:ta=\011:\
        !          3181:        :ts=\E[40h\E7\E[25;%i%p1%dH:ue=\E[m:up=\E[A:us=\E[4m:\
        !          3182:        :ve=\E[?25h:vi=\E[?25l:
        !          3183: #
        !          3184: #      Wyse 85 with visual bell.
        !          3185: wy85-vb|wyse85-vb|wyse 85 with visible bell:\
        !          3186:        :vb=\E[30h\E\\\054\E[30l:tc=wy85:
        !          3187: #
        !          3188: #      Wyse 85 in 132-column mode.
        !          3189: wy85-w|wyse85-w|wyse 85 in 132-column mode:\
        !          3190:        :co#132:ws#132:\
        !          3191:        :tc=wy85:
        !          3192: #
        !          3193: #      Wyse 85 in 132-column mode with visual bell.
        !          3194: wy85-wvb|wyse85-wvb|wyse 85 with visible bell 132-columns:\
        !          3195:        :vb=\E[30h\E\\\054\E[30l:tc=wy85-w:
        !          3196: #
        !          3197: #      Wyse 185 emulating a vt320 7 bit mode.
        !          3198: #
        !          3199: #      This terminal always displays 25 lines.  These lines may be used
        !          3200: #      as 24 data lines and a terminal status line (top or bottom) or
        !          3201: #      25 data lines.  The 48 and 50 line modes change the page size
        !          3202: #      and not the number of lines on the screen.
        !          3203: #
        !          3204: #      The Compose Character key can be used as a meta key if changed
        !          3205: #      by set-up.
        !          3206: #
        !          3207: # (untranslatable capabilities removed to fit entry within 1023 bytes)
        !          3208: wy185|wyse185|wyse 185:\
        !          3209:        :am:bs:hs:km:mi:ms:xn:xo:\
        !          3210:        :co#80:it#8:li#24:ws#80:\
        !          3211:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3212:        :K1=\EOw:K2=\EOu:K3=\EOy:K4=\EOq:K5=\EOs:LE=\E[%dD:\
        !          3213:        :RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:\
        !          3214:        :bt=\E[Z:cd=\E[J:ce=\E[K:ch=\E[%i%d`:cl=\E[H\E[J:\
        !          3215:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:\
        !          3216:        :cv=\E[%i%dd:dc=\E[P:dl=\E[M:do=^J:\
        !          3217:        :ds=\E7\E[99;0H\E[K\E8:ec=\E[%dX:ei=\E[4l:\
        !          3218:        :fs=\E[1;24r\E8:ho=\E[H:i1=\E[?5W:\
        !          3219:        :i2=\E>\E(B\E)0\017\E[m:im=\E[4h:ip=:\
        !          3220:        :is=\E[2;4;20;30l\E[?1;4;10;16l\E[12h\E[?7;8;25h:\
        !          3221:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k6=\E[17~:k7=\E[18~:\
        !          3222:        :k8=\E[19~:k9=\E[20~:kb=^H:kd=\E[B:ke=\E>:kh=\E[26~:\
        !          3223:        :kl=\E[D:kr=\E[C:ks=\E[?1l\E=:ku=\E[A:le=^H:mb=\E[5m:\
        !          3224:        :md=\E[1m:me=\E[m\017:mh=\E[2m:mk=\E[8m:mr=\E[7m:\
        !          3225:        :nd=\E[C:pf=\E[4i:po=\E[5i:ps=\E[0i:rc=\E8:sc=\E7:\
        !          3226:        :se=\E[27m:sf=\n:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !          3227:        :te=\E[ R:ti=\E[ Q:ts=\E7\E[99;%i%p1%dH:ue=\E[24m:\
        !          3228:        :up=\E[A:us=\E[4m:ve=\E[34h\E[?25h:vi=\E[?25l:\
        !          3229:        :vs=\E[?25h\E[34l:
        !          3230: #
        !          3231: #      Wyse 185 with 24 data lines and top status (terminal status)
        !          3232: wy185-24|wyse185-24|wyse 185 with 24 data lines:\
        !          3233:        :hs@:\
        !          3234:        :ds@:fs@:ts@:tc=wy185:
        !          3235: #
        !          3236: #      Wyse 185 with visual bell.
        !          3237: wy185-vb|wyse185-vb|wyse 185+flash:\
        !          3238:        :vb=\E[30h\E\\\054\E[30l:tc=wy185:
        !          3239: #
        !          3240: #      Wyse 185 in 132-column mode.
        !          3241: wy185-w|wyse185-w|wyse 185 in 132-column mode:\
        !          3242:        :co#132:ws#132:\
        !          3243:        :DC=\E[%dP:IC=\E[%d@:dc=\E[P:ei=:im=:ip=:tc=wy185:
        !          3244: #
        !          3245: #      Wyse 185 in 132-column mode with visual bell.
        !          3246: wy185-wvb|wyse185-wvb|wyse 185+flash+132 cols:\
        !          3247:        :vb=\E[30h\E\\\054\E[30l:tc=wy185-w:
        !          3248:
        !          3249: # wy325 terminfo entries
        !          3250: # Done by Joe H. Davis        3-9-92
        !          3251:
        !          3252: # lines 25  columns 80
        !          3253: #
        !          3254: wy325|wyse325|Wyse-epc:\
        !          3255:        :am:bs:bw:hs:mi:\
        !          3256:        :co#80:li#24:pb#9601:ws#45:\
        !          3257:        :ae=\EcD:al=\EE:as=\EcE:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          3258:        :cl=\E+:cm=\E=%+ %+ :cr=^M:ct=\E0:dc=\EW:dl=\ER:\
        !          3259:        :do=^J:ds=\EF\r:ei=\Er:fs=^M:ho=^^:i1=\EcB0\EcC1:\
        !          3260:        :i2=\Ew0:im=\Eq:ip=:\
        !          3261:        :is=\EcD\E'\Er\EH\003\Ed/\EO\Ee1\Ed*\E`@\E`9\E`1\016\024\El:\
        !          3262:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          3263:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:\
        !          3264:        :kh=^^:kl=^H:kr=^L:ku=^K:le=^H:ll=^^^K:mb=\EG2:\
        !          3265:        :me=\E(\EH\003\EG0\EcD:mh=\EGp:mk=\EG1:mp=\E):\
        !          3266:        :mr=\EG4:nd=^L:pf=^T:po=\Ed#:ps=\EP:\
        !          3267:        :..sa=%?%p8%t\E)%e\E(%;%?%p9%t\EcE%e\EcD%;\EG%'0'%?%p2%t%{8}%|%;%?%p1%p3%|%p6%|%t%{4}%|%;%?%p4%t%{2}%|%;%?%p1%p5%|%t%{64}%|%;%?%p7%t%{1}%|%;%c:\
        !          3268:        :se=\EG0:sf=\n:so=\EGt:sr=\Ej:st=\E1:ta=^I:te=\Ew0:\
        !          3269:        :ti=\Ew1:ts=\EF:ue=\EG0:up=^K:us=\EG8:ve=\E`1:\
        !          3270:        :vi=\E`0:
        !          3271:
        !          3272: #
        !          3273: # lines 24  columns 80  vb
        !          3274: #
        !          3275: wy325-vb|wyse325-vb|wy325-vb:\
        !          3276:        :vb=\E`8\E`9:tc=wy325:
        !          3277:
        !          3278: #
        !          3279: # lines 24  columns 132
        !          3280: #
        !          3281: wy325-w|wyse325-w|wy325w-24:\
        !          3282:        :co#132:ws#97:\
        !          3283:        :cm=\Ea%i%dR%dC:dc=\EW:ip=:tc=wy325:
        !          3284: #
        !          3285: # lines 25  columns 80
        !          3286: #
        !          3287: wy325-25|wyse325-25|wy325-80:\
        !          3288:        :li#25:\
        !          3289:        :tc=wy325:
        !          3290: #
        !          3291: # lines 25  columns 132
        !          3292: #
        !          3293: wy325-25w|wyse325-25w|wy325 132 columns:\
        !          3294:        :li#25:\
        !          3295:        :tc=wy325-w:
        !          3296: #
        !          3297: # lines 25  columns 132  vb
        !          3298: #
        !          3299: wy325-w-vb|wy325-wvb|wyse325-wvb:\
        !          3300:        :vb=\E`8\E`9:tc=wy325-w:
        !          3301:
        !          3302: #
        !          3303: # lines 42  columns 80
        !          3304: #
        !          3305: wy325-42|wyse325-42:\
        !          3306:        :li#42:\
        !          3307:        :tc=wy325:
        !          3308: #
        !          3309: # lines 42  columns 132
        !          3310: #
        !          3311: wy325-42w|wyse325-42w:\
        !          3312:        :li#42:\
        !          3313:        :tc=wy325-w:
        !          3314: #
        !          3315: # lines 42  columns 132  vb
        !          3316: #
        !          3317: wy325-42w-vb|wy325-42wvb:\
        !          3318:        :vb=\E`8\E`9:tc=wy325-w:
        !          3319: #
        !          3320: # lines 43  columns 80
        !          3321: #
        !          3322: wy325-43|wyse325-43:\
        !          3323:        :li#43:\
        !          3324:        :tc=wy325:
        !          3325: #
        !          3326: # lines 43  columns 132
        !          3327: #
        !          3328: wy325-43w|wyse325-43w:\
        !          3329:        :li#43:\
        !          3330:        :tc=wy325-w:
        !          3331: #
        !          3332: # lines 43  columns 132  vb
        !          3333: #
        !          3334: wy325-43w-vb|wy325-43wvb:\
        !          3335:        :vb=\E`8\E`9:tc=wy325-w:
        !          3336: #      Wyse 370
        !          3337: #
        !          3338: #              24 line screen with status line.
        !          3339: #
        !          3340: #      The terminal may have to be set for 8 data bits and 2 stop
        !          3341: #      bits for the arrow keys to work.
        !          3342: #
        !          3343: #      If you change keyboards the terminal will send different
        !          3344: #      escape sequences.
        !          3345: #      The following definition is for the basic terminal without
        !          3346: #      function keys.
        !          3347: #
        !          3348: #      u0 -> enter Tektronix 4010/4014 mode
        !          3349: #      u1 -> exit  Tektronix 4010/4014 mode
        !          3350: #      u2 -> enter ASCII mode (from any ANSI mode)
        !          3351: #      u3 -> exit  ASCII mode (goto native ANSI mode)
        !          3352: #      u4 -> enter Tek 4207 ANSI mode (from any ANSI mode)
        !          3353: #      u5 -> exit  Tek 4207 mode (goto native ANSI mode)
        !          3354: #
        !          3355: wy370-nk|wyse 370 without function keys:\
        !          3356:        :am:bs:hs:mi:ms:xn:xo:\
        !          3357:        :co#80:it#8:li#24:ws#80:\
        !          3358:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3359:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:\
        !          3360:        :bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:ch=\E[%i%d`:\
        !          3361:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !          3362:        :ct=\E[3g:cv=\E[%i%dd:dc=\E[P:dl=\E[M:do=^J:\
        !          3363:        :ds=\E[40l:ec=\E[%dX:ei=\E[4l:fs=\E[1;24r\E8:ho=\E[H:\
        !          3364:        :i1=\E[90;1"p\E[?5W:i2=\E>\017\E)0\E(B\E[63;0w\E[m:\
        !          3365:        :im=\E[4h:ip=:\
        !          3366:        :is=\E[2;4;20;30;40l\E[?1;10;16l\E[12h\E[?7;8;25h:\
        !          3367:        :ke=\E>:ks=\E[?1l\E=:le=^H:mb=\E[5m:md=\E[1m:\
        !          3368:        :me=\E[m\017:mh=\E[2m:mk=\E[8m:mr=\E[7m:nd=\E[C:\
        !          3369:        :pf=\E[4i:po=\E[5i:ps=\E[0i:rc=\E8:\
        !          3370:        :..sa=\E[0%?%p2%t;4%;%?%p3%p1%|%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m%?%p9%t\016%e\017%;:\
        !          3371:        :sc=\E7:se=\E[27m:sf=\n:so=\E[7m:sr=\EM:st=\EH:\
        !          3372:        :ta=\011:te=\E[ R:ti=\E[ Q:\
        !          3373:        :ts=\E[40l\E[40h\E7\E[99;%i%p1%dH:ue=\E[24m:up=\E[A:\
        !          3374:        :us=\E[4m:ve=\E[34h\E[?25h:vi=\E[?25l:\
        !          3375:        :vs=\E[?25h\E[34l:
        !          3376: #
        !          3377: #      Function key set for the ASCII (wy-50 compatable) keyboard
        !          3378: #
        !          3379: wy370-101k|Wyse 370 with 101 key keyboard:\
        !          3380:        :k1=\E[?4i:k2=\E[?3i:k3=\E[2i:k4=\E[@:k5=\E[M:\
        !          3381:        :k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kb=^H:\
        !          3382:        :kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:tc=wy370-nk:
        !          3383: #
        !          3384: #      Function key set for the VT-320 (and wy85) compatable keyboard
        !          3385: #
        !          3386: wy370-105k|Wyse 370 with 105 key keyboard:\
        !          3387:        :K1=\EOw:K2=\EOu:K3=\EOy:K4=\EOq:K5=\EOs:k1=\EOP:\
        !          3388:        :k2=\EOQ:k3=\EOR:k4=\EOS:k6=\E[17~:k7=\E[18~:\
        !          3389:        :k8=\E[19~:k9=\E[20~:kb=^H:kd=\E[B:kh=\E[26~:kl=\E[D:\
        !          3390:        :kr=\E[C:ku=\E[A:tc=wy370-nk:
        !          3391: #
        !          3392: #      Function key set for the PC compatable keyboard
        !          3393: #
        !          3394: wy370-EPC|Wyse 370 with 102 key keyboard:\
        !          3395:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[M:k6=\E[17~:\
        !          3396:        :k7=\E[18~:k8=\E[19~:k9=\E[20~:kb=^H:kd=\E[B:kh=\E[H:\
        !          3397:        :kl=\E[D:kr=\E[C:ku=\E[A:tc=wy370-nk:
        !          3398: #
        !          3399: #      Set up the default WY-370.
        !          3400: #
        !          3401: wy370|wyse370|Wyse 370:\
        !          3402:        :tc=wy370-101k:
        !          3403: #
        !          3404: #      Wyse 370 with visual bell.
        !          3405: wy370-vb|Wyse 370 with visible bell:\
        !          3406:        :vb=\E[30h\E\\\054\E[30l:tc=wy370:
        !          3407: #
        !          3408: #      Wyse 370 in 132-column mode.
        !          3409: wy370-w|Wyse 370 in 132-column mode:\
        !          3410:        :co#132:ws#132:\
        !          3411:        :tc=wy370:
        !          3412: #
        !          3413: #      Wyse 370 in 132-column mode with visual bell.
        !          3414: wy370-wvb|Wyse 370 with visible bell 132-columns:\
        !          3415:        :vb=\E[30h\E\\\054\E[30l:tc=wy370-w:
        !          3416: wy370-rv|Wyse 370 reverse video:\
        !          3417:        :tc=wy370:
        !          3418: #
        !          3419: #      Wyse 99gt Tektronix 4010/4014 emulator,
        !          3420: #
        !          3421: wy99gt-tek|Wyse 99gt Tektronix 4010/4014 emulator:\
        !          3422:        :am:bs:os:\
        !          3423:        :co#74:li#35:\
        !          3424:        :bl=^G:cl=\E^L:\
        !          3425:        :..cm=\035%{3040}%{89}%p1%*%-%Py\n%p2%{55}%*%Px\n%gy%{128}%/%{31}%&%{32}%+%c\n%gy%{3}%&%{4}%*%gx%{3}%&%+%{96}%+%c\n%gy%{004}%/%{31}%&%{96}%+%c\n%gx%{128}%/%{31}%&%{32}%+%c\n%gx%{004}%/%{31}%&%{64}%+%c\037:\
        !          3426:        :cr=^M:do=^J:ff=^L:\
        !          3427:        :hd=\036HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH\037:\
        !          3428:        :ho=^]7`x @\037:\
        !          3429:        :hu=\036DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD\037:\
        !          3430:        :is=\E8:le=^H:nd= :nw=^M^J:up=^K:
        !          3431: #
        !          3432: #      Wyse 160 Tektronix 4010/4014 emulator,
        !          3433: #
        !          3434: wy160-tek|Wyse 160 Tektronix 4010/4014 emulator:\
        !          3435:        :..cm=\035%{3103}%{91}%p1%*%-%Py\n%p2%{55}%*%Px\n%gy%{128}%/%{31}%&%{32}%+%c\n%gy%{3}%&%{4}%*%gx%{3}%&%+%{96}%+%c\n%gy%{004}%/%{31}%&%{96}%+%c\n%gx%{128}%/%{31}%&%{32}%+%c\n%gx%{004}%/%{31}%&%{64}%+%c\037:\
        !          3436:        :ho=^]8`g @\037:tc=wy99gt-tek:
        !          3437: #
        !          3438: #      Wyse 370 Tektronix 4010/4014 emulator,
        !          3439: #
        !          3440: wy370-tek|Wyse 370 Tektronix 4010/4014 emulator:\
        !          3441:        :am:bs:os:\
        !          3442:        :co#80:li#36:\
        !          3443:        :bl=^G:cl=\E^L:\
        !          3444:        :..cm=\035%{775}%{108}%p1%*%{5}%/%-%Py\n%p2%{64}%*%{4}%+%{5}%/%Px\n%gy%{32}%/%{31}%&%{32}%+%c\n%gy%{31}%&%{96}%+%c\n%gx%{32}%/%{31}%&%{32}%+%c\n%gx%{31}%&%{64}%+%c\037:\
        !          3445:        :cr=^M:do=^J:ff=^L:\
        !          3446:        :hd=\036HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH\037:\
        !          3447:        :ho=^]8g @\037:\
        !          3448:        :hu=\036DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD\037:\
        !          3449:        :is=\E8:kb=^H:kd=^J:kl=^H:kr=^I:ku=^K:le=^H:nd= :\
        !          3450:        :nw=^M^J:up=^K:
        !          3451:
        !          3452: # Vendor-supplied Wyse entries end here.
        !          3453:
        !          3454: # From: Eric Freudenthal <freudent@eric.ultra.nyu.edu>
        !          3455: wy100q|Wyse 100 for Quotron:\
        !          3456:        :bs:\
        !          3457:        :co#80:li#24:sg#1:ug#1:\
        !          3458:        :al=\EE:bt=\EI:cd=\EY:ce=\ET:cl=^Z:cm=\E=%+ %+ :\
        !          3459:        :dc=\EW:dl=\ER:do=^J:ei=\Er:ho=^^:im=\Eq:\
        !          3460:        :is=\E`\072\200\EC\EDF\E0\E'\E(\EA21:kd=^J:kl=^H:\
        !          3461:        :kr=^L:ku=^K:nd=^L:se=\EG0:so=\EG4:sr=\Ej:ue=\EG0:\
        !          3462:        :up=^K:us=\EG8:
        !          3463:
        !          3464: #### Kermit terminal emulations
        !          3465: #
        !          3466: # Obsolete Kermit versions may be listed in the section describing obsolete
        !          3467: # non-ANSI terminal emulators later in the file.
        !          3468: #
        !          3469:
        !          3470: # KERMIT standard all versions.
        !          3471: # Straight ascii keyboard. :sr=\EI: not avail. many versions + bug prone in vi.
        !          3472: # (kermit: removed obsolete ":ma=^Hh^Jj^Kk^Ll^^H:" -- esr)
        !          3473: # From: greg small <gts@populi.berkeley.edu> 9-25-84
        !          3474: kermit|standard kermit:\
        !          3475:        :bs:\
        !          3476:        :co#80:li#24:\
        !          3477:        :cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :ho=\EH:\
        !          3478:        :is=K0 Standard Kermit  9-25-84\n:kd=^J:kh=^^:kl=^H:\
        !          3479:        :kr=^L:ku=^K:nd=\EC:up=\EA:
        !          3480: kermitam|standard kermit plus auto-margin:\
        !          3481:        :am:\
        !          3482:        :is=K1 Standard Kermit plus Automatic Margins\n:tc=kermit:
        !          3483: # IBMPC Kermit 1.2.
        !          3484: # Bugs :cd:ce: do not work except at beginning of line!  :cl: does not work,
        !          3485: # but fake with :cl=\EH\EJ (since :cd=\EJ: works at beginning of line).
        !          3486: # From: greg small <gts@populi.berkeley.edu> 8-30-84
        !          3487: pckermit|pckermit12|UCB IBMPC Kermit 1.2:\
        !          3488:        :am:\
        !          3489:        :li#25:\
        !          3490:        :cd@:ce@:cl=\EH\EJ:\
        !          3491:        :is=K2 UCB IBMPC Kermit 1.2  8-30-84\n:tc=kermit:
        !          3492: # IBMPC Kermit 1.20
        !          3493: # Cannot use line 25, now acts funny like ansi special scrolling region.
        !          3494: # Initialization must escape from that region by cursor position to line 24.
        !          3495: # Cannot use character insert because 1.20 goes crazy if insert at col 80.
        !          3496: # Does not use am: because autowrap mode lost when kermit dropped and restarted.
        !          3497: # (pckermit: mapped ":pt:" to ":it#8:" -- esr)
        !          3498: # From: greg small <gts@populi.berkeley.edu> 12-19-84
        !          3499: pckermit120|UCB IBMPC Kermit 1.20:\
        !          3500:        :am@:pt:\
        !          3501:        :it#8:li#24:\
        !          3502:        :al=\EL:dc=\EN:dl=\EM:do=\EB:ei@:im@:\
        !          3503:        :is=\EO\Eq\EJ\EY7 K3 UCB IBMPC Kermit 1.20  12-19-84\n:\
        !          3504:        :se=\Eq:so=\Ep:vs=\EO\Eq\EEK3:tc=kermit:
        !          3505: # MS-DOS Kermit 2.27 for the IBMPC
        !          3506: # Straight ascii keyboard. :sr=\EI: not avail. many versions + bug prone in vi.
        !          3507: # Cannot use line 25, now acts funny like ansi special scrolling region.
        !          3508: # Initialization must escape from that region by cursor position to line 24.
        !          3509: # Does not use am: because autowrap mode lost when kermit dropped and restarted.
        !          3510: # Reverse video for standout like H19.
        !          3511: # (msk227: removed obsolete ":ma=^Hh^Jj^Kk^Ll^^H:";
        !          3512: # mapped ":pt:" to ":it#8:" -- esr)
        !          3513: # From: greg small <gts@populi.berkeley.edu> 3-17-85
        !          3514: msk227|mskermit227|MS-DOS Kermit 2.27 for the IBMPC:\
        !          3515:        :am@:bs:pt:\
        !          3516:        :co#80:it#8:li#24:\
        !          3517:        :al=\EL:cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :dc=\EN:\
        !          3518:        :dl=\EM:do=\EB:ei=\EO:ho=\EH:im=\E@:\
        !          3519:        :is=\EO\Eq\EG\Ew\EJ\EY7 K4 MS Kermit 2.27 for the IBMPC 3-17-85\n:\
        !          3520:        :kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:nd=\EC:rc=\Ek:sc=\Ej:\
        !          3521:        :se=\Eq:so=\Ep:up=\EA:vs=\EO\Eq\EG\EwK4:
        !          3522: # MS-DOS Kermit 2.27 with automatic margins
        !          3523: # From:        greg small <gts@populi.berkeley.edu> 3-17-85
        !          3524: msk227am|mskermit227am|UCB MS-DOS Kermit 2.27 with automatic margins:\
        !          3525:        :am:\
        !          3526:        :is=\EO\Eq\EG\Ev\EJ\EY7 K5 MS Kermit 2.27 +automatic margins 3-17-85\n:\
        !          3527:        :vs=\EO\Eq\EG\EvK5:tc=msk227:
        !          3528: # MS-DOS Kermit 2.27 UCB 227.14 for the IBM PC
        !          3529: # Automatic margins now default.  Use ansi set graphic rendition for standout,
        !          3530: # underline and ul codes (:md:,:me:,:mr:).  Define function keys.
        !          3531: # (msk22714: removed obsolete ":kn#10:" -- esr)
        !          3532: # From: greg small <gts@populi.berkeley.edu> 3-17-85
        !          3533: msk22714|mskermit22714|UCB MS-DOS Kermit 2.27 UCB 227.14 IBM PC:\
        !          3534:        :am:\
        !          3535:        :is=\EO\Eq\EG\Ev\EJ\EY7 K6 MS Kermit 2.27 UCB 227.14 IBM PC 3-17-85\n:\
        !          3536:        :k0=\E0:k1=\E1:k2=\E2:k3=\E3:k4=\E4:k5=\E5:k6=\E6:\
        !          3537:        :k7=\E7:k8=\E8:k9=\E9:md=\E[1m:me=\E[m:mr=\E[7m:\
        !          3538:        :se=\E[m:so=\E[1m:ue=\E[m:us=\E[4m:vs=\EO\Eq\EG\EvK6:tc=mskermit227:
        !          3539: # This was designed for a VT320 emulator, but it is probably a good start
        !          3540: # at support for the VT320 itself.
        !          3541: # Please send changes with explanations to bug-gnu-emacs@prep.ai.mit.edu.
        !          3542: vt320-k3|MS-Kermit 3.00's vt320 emulation:\
        !          3543:        :am:es:hs:km:mi:ms:xn:\
        !          3544:        :co#80:it#8:li#49:pb#9600:vt#3:\
        !          3545:        :AL=\E[%dL:CC=\E:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:\
        !          3546:        :IC=\E[%d@:LE=\E[%dD:RI=\E[%dC:SR=\E[%dL:UP=\E[%dA:\
        !          3547:        :ae=\E(B:al=\E[L:as=\E(0:bl=^G:cd=\E[J:ce=\E[K:\
        !          3548:        :ch=\E[%i%dG:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:\
        !          3549:        :cs=\E[%i%d;%dr:ct=\E[3g:cv=\E[%i%dd:dc=\E[P:dl=\E[M:\
        !          3550:        :do=^J:ds=\E[0$~:ec=\E[%dX:ei=\E[4l:fs=\E[0$}:\
        !          3551:        :ho=\E[H:im=\E[4h:is=\E>\E F\E[?1l\E[?7h\E[r\E[2$~:\
        !          3552:        :k0=\E[21~:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k6=\E[17~:\
        !          3553:        :k7=\E[18~:k8=\E[19~:k9=\E[20~:kb=^H:kd=\EOB:\
        !          3554:        :ke=\E[?1l\E>:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:\
        !          3555:        :le=^H:mb=\E[5m:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:\
        !          3556:        :nw=^M^J:pf=\E[4i:po=\E[5i:ps=\E[0i:rc=\E8:sc=\E7:\
        !          3557:        :se=\E[27m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !          3558:        :ts=\E[1$}\r\E[K:ue=\E[24m:up=\E[A:us=\E[4m:\
        !          3559:        :vb=\E[?5h\E[?5l\E[?5h\E[?5l\E[?5h\E[?5l:ve=\E[?25h:\
        !          3560:        :vi=\E[?25l:
        !          3561:
        !          3562: ######## OLDER TERMINAL TYPES
        !          3563: #
        !          3564: # This section is devoted to older commercial terminal brands that are now
        !          3565: # discontinued, but known to be still in use or represented by emulations.
        !          3566: #
        !          3567:
        !          3568: #### AT&T (att, tty)
        !          3569: #
        !          3570: # This section also includes Teletype-branded VDTs.
        !          3571: #
        !          3572: # The AT&T/Teletype terminals group was sold to SunRiver Data Systems; for
        !          3573: # details, see the header comment on the ADDS section.
        !          3574: #
        !          3575: # These are AT&T's official terminfo entries
        !          3576: #
        !          3577: att2300|ATT2300|sv80|AT&T 2300 Video Information Terminal 80 column mode:\
        !          3578:        :am:eo:mi:ms:xo:\
        !          3579:        :co#80:it#8:li#24:\
        !          3580:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3581:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:al=\E[L:bl=^G:cd=\E[J:\
        !          3582:        :ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:dc=\E[P:\
        !          3583:        :dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:k1=\E[1r:\
        !          3584:        :k2=\E[2r:k3=\E[3r:k4=\E[4r:k5=\E[5r:k6=\E[6r:\
        !          3585:        :k7=\E[7r:k8=\E[8r:k9=\E[9r:kb=^H:kd=\E[B:kh=\E[H:\
        !          3586:        :kl=\E[D:kr=\E[C:ku=\E[A:le=^H:me=\E[m:mr=\E[7m:\
        !          3587:        :nd=\E[C:pf=\E[4i:po=\E[5i:ps=\E[0i:se=\E[0m:sf=^J:\
        !          3588:        :so=\E[7m:ta=^I:up=\E[A:
        !          3589: att2350|AT&T 2350 Video Information Terminal 80 column mode:\
        !          3590:        :pf@:po@:ps@:tc=att2300:
        !          3591: att2300-x40|sv40|AT&T 2300 Video Information Terminal 40 column mode:\
        !          3592:        :co#40:it#5:li#23:\
        !          3593:        :AL@:al@:tc=att2300:
        !          3594: att2350-x40|ATT2350-x40|AT&T 2350 Video Information Terminal 40 column mode:\
        !          3595:        :co#40:it#5:li#23:\
        !          3596:        :AL@:al@:tc=att2350:
        !          3597:
        !          3598: # Must setup RETURN KEY - CR, REC'VD LF - INDEX.
        !          3599: # Seems upward compatible with vt100, plus ins/del line/char.
        !          3600: # On sgr, the protection parameter is ignored.
        !          3601: # No check is made to make sure that only 3 parameters are output.
        !          3602: #      standout= reverse + half-intensity = 3 | 5.
        !          3603: #      bold= reverse + underline = 2 | 3.
        !          3604: # note that half-bright blinking doesn't look different from normal blinking.
        !          3605: # NOTE:you must program the function keys first, label second!
        !          3606: att5410v1|att4410v1|tty5410v1|AT&T 4410/5410 80 columns - version 1:\
        !          3607:        :am:hs:mi:ms:xo:\
        !          3608:        :co#80:it#8:li#24:ws#80:\
        !          3609:        :ae=^O:al=\E[L:as=^N:bl=^G:cd=\E[J:ce=\E[K:\
        !          3610:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !          3611:        :dc=\E[P:dl=\E[M:do=\E[B:ei=:fs=\E8:ho=\E[H:\
        !          3612:        :i1=\E[?3l\E)0:\
        !          3613:        :i2=\E[1;03q   f1           \EOP\E[2;03q   f2           \EOQ\E[3;03q   f3           \EOR\E[4;03q   f4           \EOS\E[5;03q   f5           \EOT\E[6;03q   f6           \EOU\E[7;03q   f7           \EOV\E[8;03q   f8           \EOW:\
        !          3614:        :ic=\E[@:im=:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOT:\
        !          3615:        :k6=\EOU:k7=\EOV:k8=\EOW:kb=^H:kd=\E[B:kh=\E[H:\
        !          3616:        :kl=\E[D:kr=\E[C:ku=\E[A:le=^H:ll=\E[24H:mb=\E[5m:\
        !          3617:        :md=\E[2;7m:me=\E[m\017:mh=\E[2m:mk=\E[8m:mr=\E[7m:\
        !          3618:        :nd=\E[C:nw=^M^J:rc=\E8:\
        !          3619:        :..sa=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;:\
        !          3620:        :sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:ta=^I:\
        !          3621:        :ts=\E7\E[25;%p1%{1}%+%dH:ue=\E[m:up=\E[A:us=\E[4m:
        !          3622:
        !          3623: att4410v1-w|att5410v1-w|tty5410v1-w|AT&T 4410/5410 132 columns - version 1:\
        !          3624:        :co#132:ws#132:\
        !          3625:        :i1=\E[?3h\E)0:tc=att5410v1:
        !          3626:
        !          3627: att4410|att5410|tty5410|AT&T 4410/5410 80 columns - version 2:\
        !          3628:        :tc=att5410v1:
        !          3629:
        !          3630: att4410-nfk|att5410-nfk|4410-nfk|tty5410-nfk|5410-nfk|version 1 AT&T 4410/5410 entry without function keys:\
        !          3631:        :i3@:k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:tc=att4410:
        !          3632:
        !          3633: att5410-w|att4410-w|4410-w|tty5410-w|5410-w|AT&T 4410/5410 in 132 column mode:\
        !          3634:        :co#132:ws#132:\
        !          3635:        :i1=\E[?3h\E)0:tc=att4410:
        !          3636:
        !          3637: att5410-nsl|4410-nsl|att4410-nsl|ATT4410-nsl|tty5410-nsl|tty5410 entry without pln defined:\
        !          3638:        :tc=att4410:
        !          3639:
        !          3640: otty5410|teletype 5410 for S5R2 curses:\
        !          3641:        :ts=\E7\E[25;%p1%{1}%+%dH:tc=att4410:
        !          3642:
        !          3643: # 5410 in terms of a vt100
        !          3644: v5410|5410 in terms of a vt100:\
        !          3645:        :am:mi:ms:xo:\
        !          3646:        :co#80:it#8:li#24:vt#3:\
        !          3647:        :K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:ae=^O:\
        !          3648:        :al=\E[L:as=^N:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          3649:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:\
        !          3650:        :dc=\E[P:dl=\E[M:do=^J:ei=:ho=\E[H:ic=\E[@:im=:\
        !          3651:        :k0=\EOy:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOt:\
        !          3652:        :k6=\EOu:k7=\EOv:k8=\EOl:k9=\EOw:kb=^H:kd=\EOB:\
        !          3653:        :ke=\E[?1l\E>:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:\
        !          3654:        :le=^H:mb=\E[5m:md=\E[1m:me=\E[m\017:mr=\E[7m:\
        !          3655:        :nd=\E[C:rc=\E8:\
        !          3656:        :..sa=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;:\
        !          3657:        :sc=\E7:se=\E[m:sf=^J:so=\E[1;7m:sr=\EM:st=\EH:ta=^I:\
        !          3658:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          3659:
        !          3660: #
        !          3661: # Teletype Model 5420 -- A souped up 5410, with multiple windows,
        !          3662: # even! the 5420 has three modes: scroll, window or page mode
        !          3663: # this terminfo should work in scroll or window mode, but doesn't
        !          3664: # take advantage of any of the differences between them.
        !          3665: #
        !          3666: # Has memory below (2 lines!)
        !          3667: # 3 pages of memory (plus some spare)
        !          3668: # The 5410 sequences for cup,cvvis,dch,dl,ech,flash,home,hpa,hts would work
        !          3669: # for these, but these work in both scroll and window mode...
        !          3670: # Unset insert character so insert mode works
        !          3671: # is1 sets 80 column mode,
        !          3672: # is2 escape sequence:
        !          3673: # 1) turn off all fonts
        !          3674: # 2) function keys off, keyboard lock off, control display off,
        !          3675: #    insert mode off, erasure mode off,
        !          3676: # 3) full duplex, monitor mode off, send graphics off, nl on lf off
        !          3677: # 4) reset origin mode
        !          3678: # 5) set line wraparound
        !          3679: # 6) exit erasure mode, positional attribute mode, and erasure extent mode
        !          3680: # 7) clear margins
        !          3681: # 8) program ENTER to transmit ^J,
        !          3682: # We use \212 to program the ^J because a bare ^J will get translated by
        !          3683: # UNIX into a CR/LF. The enter key is needed for AT&T uOMS.
        !          3684: #     1      2            3              4     5     6    7  8
        !          3685: # is3 set screen color to black,
        !          3686: # No representation in terminfo for the delete word key: kdw1=\Ed
        !          3687: # Key capabilities assume the power-up send sequence...
        !          3688: # This rmcup is not strictly necessary, but it helps maximize
        !          3689: # memory usefulness: rmcup=\Ez,
        !          3690: # Alternate sgr0:      sgr0=\E[0m\EW^O,
        !          3691: # Alternate sgr:       sgr=\E[%?%p1%t2;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p8%t\EV%;%?%p9%t^N%e^O%;,
        !          3692: # smkx programs the SYS PF keys to send a set sequence.
        !          3693: # It also sets up labels f1, f2, ..., f8, and sends edit keys.
        !          3694: # This string causes them to send the strings kf1-kf8
        !          3695: # when pressed in SYS PF mode.
        !          3696: att4415|tty5420|att5420|AT&T 4415/5420 80 cols:\
        !          3697:        :db:mi:xo:\
        !          3698:        :lm#78:ws#55:\
        !          3699:        :AL=\E[%dL:CM=\E[%i%p1%d;%p2%dt:DC=\E[%dP:DL=\E[%dM:\
        !          3700:        :DO=\E[%dB:IC=\E[%d@:LE=\E[%dD:RI=\E[%dC:SF=\E[%dE:\
        !          3701:        :SR=\E[%dF:UP=\E[%dA:bt=\E[Z:ch=\E[%+^AG:cl=\E[x\E[J:\
        !          3702:        :cm=\E[%i%d;%dx:ct=\E[3g:cv=\E[%+^Ad:ec=\E[%ds\E[%dD:\
        !          3703:        :ei=\E[4l:ho=\E[x:i1=\E[?3l:i2=\E[?5l:ic@:im=\E[4h:\
        !          3704:        :is=\E[0m\017\E[1;2;3;4;6l\E[12;13;14;20l\E[?6;97;99l\E[?7h\E[4i\Ex\E[21;1j\212:\
        !          3705:        :k1=\EOc:k2=\EOd:k3=\EOe:k4=\EOf:k5=\EOg:k6=\EOh:\
        !          3706:        :k7=\EOi:k8=\EOj:ke=\E[19;0j\E[21;1j\212:\
        !          3707:        :ks=\E[19;1j\E[21;4j\Eent:ll=\Ew:me=\E[0m\017:mp=\EV:\
        !          3708:        :pf=\E[?9i:po=\E[?4i:ps=\E[?2i:\
        !          3709:        :..sa=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;:\
        !          3710:        :st=\EH:ts=\E7\E[25;%p1%{8}%+%dH:vb=\E[?5h\E[?5l:\
        !          3711:        :ve=\E[11;0j:vs=\E[11;1j:tc=att4410:
        !          3712:
        !          3713: att4415-w|tty5420-w|att5420-w|AT&T 4415/5420 132 cols:\
        !          3714:        :co#132:lm#54:ws#97:\
        !          3715:        :i1=\E[?3h:tc=att4415:
        !          3716:
        !          3717: att4415-rv|tty5420-rv|att5420-rv|AT&T 4415/5420 80 cols/rv:\
        !          3718:        :i2=\E[?5h:vb=\E[?5l\E[?5h:tc=att4415:
        !          3719:
        !          3720: att4415-w-rv|tty5420-w-rv|att5420-w-rv|AT&T 4415/5420 132 cols/rv:\
        !          3721:        :co#132:lm#54:ws#97:\
        !          3722:        :i1=\E[?3h:i2=\E[?5h:vb=\E[?5l\E[?5h:tc=att4415:
        !          3723:
        !          3724: # Note that this mode permits programming USER PF KEYS and labels
        !          3725: # However, when you program user pf labels you have to reselect
        !          3726: # user pf keys to make them appear!
        !          3727: att4415+nl|4415+nl|tty5420+nl|att5420+nl|generic AT&T 4415/5420 changes for not changing labels:\
        !          3728:        :k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:
        !          3729:
        !          3730: att4415-nl|4415-nl|tty5420-nl|att5420-nl|AT&T 4415/5420 without changing labels:\
        !          3731:        :k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:tc=att4415+nl:tc=att4415:
        !          3732:
        !          3733: att4415-rv-nl|tty5420-rv-nl|att5420-rv-nl|AT&T 4415/5420 reverse video without changing labels:\
        !          3734:        :k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:tc=att4415+nl:tc=att4415-rv:
        !          3735:
        !          3736: att4415-w-nl|tty5420-w-nl|att5420-w-nl|AT&T 4415/5420 132 cols without changing labels:\
        !          3737:        :k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:tc=att4415+nl:tc=att4415-w:
        !          3738:
        !          3739: att4415-w-rv-n|tty5420-w-rv-n|att5420-w-rv-n|AT&T 4415/5420 132 cols reverse without changing labels:\
        !          3740:        :k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:tc=att4415+nl:tc=att4415-w-rv:
        !          3741:
        !          3742: otty5420|5420 for SVR2 curses on 3B20:\
        !          3743:        :ch=\E[%+^AG:cv=\E[%+^Ad:tc=tty5420:
        !          3744:
        !          3745: # (untranslatable capabilities removed to fit entry within 1023 bytes)
        !          3746: att5420_2|AT&T 5420 model 2 80 cols:\
        !          3747:        :am:db:hs:mi:ms:xo:\
        !          3748:        :co#80:it#8:li#24:lm#78:ws#55:\
        !          3749:        :AL=\E[%dL:CM=\E[%i%p1%d;%p2%dt:DC=\E[%dP:DL=\E[%dM:\
        !          3750:        :IC=\E[%d@:LE=\E[%dD:RI=\E[%dC:SF=\E[%dE:SR=\E[%dF:\
        !          3751:        :UP=\E[%dA:ae=^O:al=\E[L:as=^N:bt=\E[1Z:cd=\E[0J:\
        !          3752:        :ce=\E[0K:ch=\E[%+^AG:cl=\EH\EJ:cm=\E[%i%d;%dH:\
        !          3753:        :cr=\EG:cs=\E[%i%d;%dr:ct=\E[3g:cv=\E[%+^Ad:dc=\E[P:\
        !          3754:        :dl=\E[M:do=\E[1B:ec=\E[%ds\E[%dD:ei=:fs=\E8:ho=\E[H:\
        !          3755:        :i1=\E[0;23r\Ex\Ey\E[2;0j\E[3;3j\E[4;0j\E[5;0j\E[6;0j\E[7;0j\E[8;0j\E[9;1j\E[10;0j\E[15;0j\E[16;1j\E[19;0j\E[20;1j\E[29;0j\E[1;24r:\
        !          3756:        :ic=\E[@:im=:k1=\EOc:k2=\EOd:k3=\EOe:k4=\EOf:k5=\EOg:\
        !          3757:        :k6=\EOh:k7=\EOi:k8=\EOj:kb=^H:kd=\E[B:ke=\E[19;0j:\
        !          3758:        :kh=\E[H:kl=\E[D:kr=\E[C:ks=\E[19;1j:ku=\E[A:le=^H:\
        !          3759:        :ll=\Ew:mb=\E[5m:me=\E[0m\017:mh=\E[2m:mk=\E[8m:\
        !          3760:        :mp=\EV:mr=\E[7m:nd=\E[1C:nw=^M^J:pf=\E[4i:po=\E[5i:\
        !          3761:        :ps=\E[?;2i:rc=\E8:sc=\E7:se=\E[m:sf=^J:so=\E[7m:\
        !          3762:        :sr=\EM:st=\EH:ta=^I:ts=\E7\E[25;%p1%{8}%+%dH:\
        !          3763:        :ue=\E[m:us=\E[4m:vb=\E[?5h\E[?5l:ve=\E[11;0j:\
        !          3764:        :vs=\E[11;1j:
        !          3765: att5420_2-w|AT&T 5420 model 2 in 132 column mode:\
        !          3766:        :co#132:\
        !          3767:        :i1=\E[0;23r\Ex\Ey\E[2;0j\E[3;3j\E[4;0j\E[5;1j\E[6;0j\E[7;0j\E[8;0j\E[9;1j\E[10;0j\E[15;0j\E[16;1j\E[19;0j\E[20;1j\E[29;0j\E[1;24r:tc=att5420_2:
        !          3768:
        !          3769: att4418|att5418|ATT5418|AT&T 5418 80 cols:\
        !          3770:        :am:xo:\
        !          3771:        :co#80:li#24:\
        !          3772:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3773:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[1L:as=^N:\
        !          3774:        :bl=^G:cd=\E[0J:ce=\E[0K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:\
        !          3775:        :cr=^M:dc=\E[1P:dl=\E[M:do=\E[B:ei=:ho=\E[H:\
        !          3776:        :i1=\E[?3l:ic=\E[1@:im=:is=\E)0\E?6l\E?5l:k1=\E[h:\
        !          3777:        :k2=\E[i:k3=\E[j:k6=\E[k:k7=\E[l:k8=\E[f:k9=\E[w:\
        !          3778:        :kd=\EU:kh=\Ec:kl=\E@:kr=\EA:ku=\ES:le=\E[D:mb=\E[5m:\
        !          3779:        :me=\E[0m\017:mh=\E[2m:mr=\E[7m:nd=\E[C:rc=\E8:\
        !          3780:        :sc=\E7:se=\E[0m:sf=^J:so=\E[7m:ue=\E[0m:up=\E[A:\
        !          3781:        :us=\E[4m:
        !          3782: att4418-w|att5418-w|AT&T 5418 132 cols:\
        !          3783:        :co#132:\
        !          3784:        :i1=\E[?3h:tc=att5418:
        !          3785:
        !          3786: tty4420|teletype 4420:\
        !          3787:        :da:db:eo:ms:ul:xo:\
        !          3788:        :co#80:li#24:lm#72:\
        !          3789:        :al=\EL:bl=^G:cd=\EJ:ce=\Ez:cl=\EH\EJ:cm=\EY%+ %+ :\
        !          3790:        :cr=\EG:dc=\EP:dl=\EM:dm@:do=\EB:ed@:ho=\EH:k0=\EU:\
        !          3791:        :k3=\E@:kd=\EB:kh=\EH:kl=^H:kr=\EC:ku=\EA:le=\ED:\
        !          3792:        :nd=\EC:se=\E~:sf=\EH\EM\EY7 :so=\E}:ue=\EZ:up=\EA:\
        !          3793:        :us=\E\\:
        !          3794:
        !          3795: #  The following is a termcap entry for the Teletype 4424
        !          3796: #  asynchronous keyboard-display terminal.  It supports
        !          3797: #  the vi editor.  The terminal must be "set up" as follows,
        !          3798: #
        !          3799: #      HIGHLIGHT DEFINITION    3-TONE
        !          3800: #      DISPLAY FUNCTION        GROUP III
        !          3801: #
        !          3802: #  The second entry below provides limited (a la adm3a)
        !          3803: #  operation under GROUP II.
        !          3804: #
        !          3805: #  This must be used with DISPLAY FUNCTION GROUP I or III
        !          3806: #      and HIGHLIGHT DEFINITION 3-TONE
        !          3807: # The terminal has either bold or blink, depending on options
        !          3808: #
        !          3809: att4424|tty4424|teletype 4424:\
        !          3810:        :am:xo:\
        !          3811:        :co#80:li#24:\
        !          3812:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3813:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=\E(B:al=\EL:\
        !          3814:        :as=\E(0:bl=^G:bt=\EO:cd=\EJ:ce=\Ez:cl=\E[H\E[2J:\
        !          3815:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\EF:dc=\EP:\
        !          3816:        :dl=\EM:do=\EB:ei=:ho=\E[H:ic=\E^:im=:\
        !          3817:        :is=\E[20l\E[?7h:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
        !          3818:        :kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:\
        !          3819:        :mb=\E3:md=\E3:me=\EX\E~\EZ\E4\E(B:mh=\EW:mr=\E}:\
        !          3820:        :nd=\EC:nw=\EE:\
        !          3821:        :..sa=\E[%?%p1%t7%;%?%p2%t;4%;%?%p3%t;7%;%?%p6%t;1%;%?%p6%p4%|%t;5%;%?%p5%t;0%;m:\
        !          3822:        :se=\E~:sf=^J:so=\E}:sr=\ET:st=\EH:ta=^I:ti=\E[1m:\
        !          3823:        :ue=\EZ:up=\EA:us=\E\\:
        !          3824:
        !          3825: att4424-1|tty4424-1|teletype 4424 in display function group I:\
        !          3826:        :kd=\EB:kh@:kl=\ED:kr=\EC:ku=\EA:tc=att4424:
        !          3827:
        !          3828: # The Teletype 5425 is really version 2 of the Teletype 5420. It
        !          3829: # is quite similar, except for some minor differences. No page
        !          3830: # mode, for example, so all of the cup sequences used above have
        !          3831: # to change back to what's being used for the 5410. Many of the
        !          3832: # option settings have changed their numbering as well.
        !          3833: #
        !          3834: # This has been tested on a preliminary model.
        !          3835: #
        !          3836: # (untranslatable capabilities removed to fit entry within 1023 bytes)
        !          3837: att5425|tty5425|att4425|AT&T 4425/5425:\
        !          3838:        :am:da:db:hs:mi:ms:xn:xo:\
        !          3839:        :co#80:it#8:li#24:lm#78:ws#55:\
        !          3840:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3841:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dE:SR=\E[%dF:UP=\E[%dA:\
        !          3842:        :ae=^O:al=\E[L:as=^N:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:\
        !          3843:        :ch=\E[%+^AG:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:\
        !          3844:        :cs=\E[%i%d;%dr:ct=\E[3g:cv=\E[%+^Ad:dc=\E[P:dl=\E[M:\
        !          3845:        :do=^J:ec=\E[%ds\E[%dD:ei=\E[4l:fs=\E8:ho=\E[H:\
        !          3846:        :i1=\E<\E[?3l:i2=\E[?5l:im=\E[4h:\
        !          3847:        :is=\E[0m\017\E[1;2;3;4;6l\E[12;13;14;20l\E[?6;97;99l\E[?7h\E[4i\Ex\E[25;1j\212:\
        !          3848:        :k1=\EOc:k2=\EOd:k3=\EOe:k4=\EOf:k5=\EOg:k6=\EOh:\
        !          3849:        :k7=\EOi:k8=\EOj:kb=^H:kd=\E[B:\
        !          3850:        :ke=\E[21;0j\E[25;1j\212:kh=\E[H:kl=\E[D:kr=\E[C:\
        !          3851:        :ks=\E[21;1j\E[25;4j\Eent\E~:ku=\E[A:le=^H:ll=\E[24H:\
        !          3852:        :mb=\E[5m:md=\E[2;7m:me=\E[m\017:mh=\E[2m:mk=\E[8m:\
        !          3853:        :mp=\EV:mr=\E[7m:nd=\E[C:nw=^M^J:pf=\E[?9i:po=\E[?4i:\
        !          3854:        :ps=\E[?2i:rc=\E8:sc=\E7:se=\E[m:sf=^J:so=\E[7m:\
        !          3855:        :sr=\EM:st=\EH:ta=^I:ts=\E7\E[25;%p1%{8}%+%dH:\
        !          3856:        :ue=\E[m:up=\E[A:us=\E[4m:vb=\E[?5h\E[?5l:\
        !          3857:        :ve=\E[12;0j:vs=\E[12;1j:
        !          3858:
        !          3859: att5425-nl|tty5425-nl|att4425-nl|AT&T 4425/5425 80 columns no labels:\
        !          3860:        :ks=\E[21;1j\E[25;4j\Eent:tc=att4425:
        !          3861:
        !          3862: att5425-nl-w|tty5425-nl-w|att4425-nl-w|AT&T 4425/5425 132 columns no labels:\
        !          3863:        :ks=\E[21;1j\E[25;4j\Eent:tc=att4425-w:
        !          3864:
        !          3865: tty5425-fk|att4425-fk|AT&T 4425/5425 without function keys:\
        !          3866:        :ke@:ks@:tc=att5425:
        !          3867:
        !          3868: att5425-w|att4425-w|tty5425-w|teletype 4425/5425 in 132 column mode:\
        !          3869:        :co#132:lm#54:ws#97:\
        !          3870:        :i1=\E[?3h:tc=tty5425:
        !          3871:
        !          3872: tty5425-w-fk|att4425-w-fk|att5425-w-fk|AT&T 4425/5425 without function keys in wide mode:\
        !          3873:        :ke@:ks@:tc=att5425-w:
        !          3874:
        !          3875:
        !          3876: # This had bogus capabilities: ri=\EM, ri=\E[1U,
        !          3877: att4426|tty4426|teletype 4426S:\
        !          3878:        :am:da:db:xo:\
        !          3879:        :co#80:li#24:lm#48:\
        !          3880:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3881:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:\
        !          3882:        :ae=\E(B:al=\EL:as=\E(0:bl=^G:cd=\E[J:ce=\E[0K:\
        !          3883:        :ch=\E[%dG:cl=\E[H\E[2J\E[1U\E[H\E[2J\E[1V:\
        !          3884:        :cm=\E[%i%d;%dH:cr=^M:ct=\E[3g:cv=\E[%dd:dc=\EP:\
        !          3885:        :dl=\E[M:do=\E[B:ei=:ho=\E[H:i1=\Ec\E[?7h:ic=\E^:im=:\
        !          3886:        :is=\E[m\E[1;24r:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:\
        !          3887:        :k5=\EOT:k6=\EOU:k7=\EOV:k8=\EOW:kb=^H:kd=\EB:\
        !          3888:        :kh=\E[H:kl=\ED:kr=\EC:ku=\EA:le=\E[D:ll=\E[24H:\
        !          3889:        :md=\E[5m:me=\E[0m\E(B:mr=\E[7m:nd=\E[C:nw=^M^J:\
        !          3890:        :rc=\E8:sc=\E7:se=\E[0m:sf=^J:so=\E[5m:sr=\ET:st=\E1:\
        !          3891:        :ta=^I:ue=\E[m:up=\EA:us=\E[4m:
        !          3892:
        !          3893: # Terminfo entry for the AT&T 510 A Personal Terminal
        !          3894: # Function keys 9 - 16 are available only after the
        !          3895: # screen labeled (soft keys/action blocks) are labeled.  Function key
        !          3896: # 9 corresponds to the leftmost touch target on the screen,
        !          3897: # function key 16 corresponds to the rightmost.
        !          3898: #
        !          3899: # This entry is based on one done by Ernie Rice at Summit, NJ and
        !          3900: # changed by Anne Gallup, Skokie, IL, ttrdc!anne
        !          3901: att510a|510a|bct510a|510A|AT&T 510A Personal Terminal:\
        !          3902:        :am:mi:ms:xn:xo:\
        !          3903:        :co#80:li#24:\
        !          3904:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:\
        !          3905:        :RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:\
        !          3906:        :bt=\E[Z:cd=\E[0J:ce=\E[0K:cl=\E[H\E[J:\
        !          3907:        :cm=\E[%i%d;%dH:cr=^M:ct=\E[3g:dc=\E[P:dl=\E[M:\
        !          3908:        :do=\E[1B:ff=^L:ho=\E[H:i1=\E(B\E)1\E[2l:\
        !          3909:        :i2=\E[21;1|\212:k1=\EOm:k2=\EOV:k3=\EOu:k4=\ENj:\
        !          3910:        :k5=\ENe:k6=\ENf:k7=\ENh:k8=\E[H:k9=\EOc:kb=^H:\
        !          3911:        :kd=\E[B:ke=\E[19;0|:kl=\E[D:kr=\E[C:ks=\E[19;1|:\
        !          3912:        :ku=\E[A:le=^H:mb=\E[5m:md=\E[2;7m:me=\E[m\017:\
        !          3913:        :mh=\E[2m:mr=\E[7m:nd=\E[C:nw=\EE:pf=\E[?8i:\
        !          3914:        :po=\E[?4i:ps=\E[0i:rc=\E8:\
        !          3915:        :..sa=\E[0%?%p5%p6%|%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;m%?%p9%t\016%e\017%;:\
        !          3916:        :sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !          3917:        :ue=\E[m:up=\E[A:us=\E[4m:ve=\E[11;3|:vi=\E[11;0|:\
        !          3918:        :vs=\E[11;2|:
        !          3919:
        !          3920: # Terminfo entry for the AT&T 510 D Personal Terminal
        !          3921: # Function keys 9 through 16 are accessed by bringing up the
        !          3922: # system blocks.
        !          3923: # Function key 9 corresponds to the leftmost touch target on the screen,
        !          3924: # function key 16 corresponds to the rightmost.
        !          3925: #
        !          3926: # There are problems with soft key labeling.  These are due to
        !          3927: # strangenesses in the native terminal that are impossible to
        !          3928: # describe in a terminfo.
        !          3929: att510d|510d|bct510d|510D|AT&T 510D Personal Terminal:\
        !          3930:        :am:da:db:mi:ms:xn:xo:\
        !          3931:        :co#80:li#24:lm#48:\
        !          3932:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3933:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:\
        !          3934:        :ae=^O:al=\E[L:as=^N:bl=^G:bt=\E[Z:cd=\E[0J:ce=\E[0K:\
        !          3935:        :ch=\E[%+^AG:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:\
        !          3936:        :ct=\E[3g:cv=\E[%+^Ad:dc=\E[P:dl=\E[M:do=\E[1B:\
        !          3937:        :ei=\E[4l:ff=^L:ho=\E[H:i1=\E(B\E)1\E[5;0|:\
        !          3938:        :i2=\E[21;1|\212:im=\E[4h:k1=\EOm:k2=\EOV:k3=\EOu:\
        !          3939:        :k4=\ENj:k5=\ENe:k6=\ENf:k7=\ENh:k8=\E[H:k9=\EOc:\
        !          3940:        :kb=^H:kd=\E[B:ke=\E[19;0|:kl=\E[D:kr=\E[C:\
        !          3941:        :ks=\E[19;1|:ku=\E[A:le=^H:ll=\E#2:mb=\E[5m:\
        !          3942:        :md=\E[2;7m:me=\E[m\017:mh=\E[2m:mk=\E[8m:mr=\E[7m:\
        !          3943:        :nd=\E[C:nw=\EE:pf=\E[?8i:po=\E[?4i:ps=\E[0i:rc=\E8:\
        !          3944:        :..rp=%p1%c\E[%p2%{1}%-%db:\
        !          3945:        :..sa=\E[0%?%p5%p6%|%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;:\
        !          3946:        :sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:\
        !          3947:        :ue=\E[m:up=\E[A:us=\E[4m:ve=\E[11;3|:vs=\E[11;2|:
        !          3948:
        !          3949: # (untranslatable capabilities removed to fit entry within 1023 bytes)
        !          3950: att513|att513-page|513-page|attis513-pfk|513bct|AT&T 513 using page mode:\
        !          3951:        :am:mi:ms:xn:xo:\
        !          3952:        :co#80:li#24:\
        !          3953:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          3954:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dE:SR=\E[%dF:UP=\E[%dA:\
        !          3955:        :ae=^O:al=\E[L:as=^N:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:\
        !          3956:        :ch=\E[%+^AG:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:\
        !          3957:        :cs=%i\E[%d;%dr:ct=\E[3g:cv=\E[%+^Ad:dc=\E[P:dl=\E[M:\
        !          3958:        :do=^J:ei=\E[4l:ho=\E[H:\
        !          3959:        :i1=\E?\E[3;3|\E[10;0|\E[21;1|\212\E[6;1|\E[1{\E[?99l:\
        !          3960:        :im=\E[4h:k1=\EOc:k2=\EOd:k3=\EOe:k4=\EOf:k5=\EOg:\
        !          3961:        :k6=\EOh:k7=\EOi:k8=\EOj:kb=^H:kd=\E[B:\
        !          3962:        :ke=\E[19;0|\E[21;1|\212:kh=\E[H:kl=\E[D:kr=\E[C:\
        !          3963:        :ks=\E[19;1|\E[21;4|\Eent:ku=\E[A:le=^H:ll=\E#2:\
        !          3964:        :mb=\E[5m:md=\E[2;7m:me=\E[m\017:mh=\E[2m:mk=\E[8m:\
        !          3965:        :mr=\E[7m:nd=\E[C:nw=\EE:pf=\E[?98l\E[?8i:\
        !          3966:        :po=\E[?98l\E[?4i:ps=\E[?98l\E[0i:rc=\E8:sc=\E7:\
        !          3967:        :se=\E[m:sf=^J:so=\E[7m:sr=\EM:st=\EH:ta=^I:ue=\E[m:\
        !          3968:        :up=\E[A:us=\E[4m:ve=\E[11;0|:vs=\E[11;1|:
        !          3969:
        !          3970: att500|bct500|500|AT&T-IS 500 terminal:\
        !          3971:        :tc=att513:
        !          3972:
        !          3973: # 01-07-88
        !          3974: # printer must be set to EMUL ANSI to accept ESC codes
        !          3975: # cuu1 stops at top margin
        !          3976: # is1 sets cpi 10,lpi 6,form 66,left 1,right 132,top 1,bottom 66,font
        !          3977: #      and alt font ascii,wrap on,tabs cleared
        !          3978: # is2 disables newline on LF,Emphasized off
        !          3979: # The u0 capability sets form length
        !          3980: att5320|AT&T Model 5320 matrix printer:\
        !          3981:        :co#132:it#8:li#66:\
        !          3982:        :DO=\E[%de:RI=\E[%da:ch=\E[%d`:cr=^M:cv=\E[%dd:do=^J:\
        !          3983:        :ff=^L:i1=\Ec:is=\E[20l\r:nd= :ta=^I:up=\EM:
        !          3984:
        !          3985: att5310|AT&T 5310 matrix printer:\
        !          3986:        :co#80:\
        !          3987:        :tc=att5320:
        !          3988:
        !          3989: # 5620 terminfo  (2.0 or later ROMS with char attributes)
        !          3990: # assumptions: ind (scroll forward one line) is only done at screen bottom
        !          3991: att5620|dmd|tty5620|ttydmd|5620|5620 terminal 88 columns:\
        !          3992:        :NL:am:xo:\
        !          3993:        :co#88:it#8:li#70:\
        !          3994:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:IC=\E[%d@:SF=\E[%dS:\
        !          3995:        :SR=\E[%dT:al=\E[L:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          3996:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:do=\E[B:ei=:\
        !          3997:        :ho=\E[H:ic=\E[@:im=:kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:\
        !          3998:        :kr=\E[C:ku=\E[A:le=^H:md=\E[2m:me=\E[0m:mh=\E[2m:\
        !          3999:        :mr=\E[7m:nd=\E[C:nw=^J:rc=\E8:sc=\E7:se=\E[0m:\
        !          4000:        :sf=\E[S:so=\E[7m:sr=\E[T:ta=^I:ue=\E[0m:up=\E[A:\
        !          4001:        :us=\E[4m:
        !          4002:
        !          4003: att5620-24|dmd-24|teletype dmd 5620 in a 24x80 layer:\
        !          4004:        :li#24:\
        !          4005:        :tc=att5620:
        !          4006:
        !          4007: att5620-34|dmd-34|teletype dmd 5620 in a 34x80 layer:\
        !          4008:        :li#34:\
        !          4009:        :tc=att5620:
        !          4010:
        !          4011: # Entries for kf15 thru kf28 refer to the shifted system pf keys.
        !          4012: #
        !          4013: # Entries for kf29 thru kf46 refer to the alternate keypad mode
        !          4014: # keys:  = * / + 7 8 9 - 4 5 6 , 1 2 3 0 . ENTER
        !          4015: att605|605bct|AT&T 605  80 column  102key keyboard:\
        !          4016:        :am:eo:xo:\
        !          4017:        :co#80:li#24:ws#80:\
        !          4018:        :DC=\E[%dP:DL=\E[%dM:IC=\E[%d@:ae=^O:al=\E[L:\
        !          4019:        :as=\E)0\016:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:\
        !          4020:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:\
        !          4021:        :do=\E[B:ei=\E[4l:fs=\E8:\
        !          4022:        :i1=\E[8;0|\E[?\E[13;20l\E[?\E[12h:ic=\E[@:im=\E[4h:\
        !          4023:        :is=\E[0m\017:k1=\EOc:k2=\EOd:k3=\EOe:k4=\EOf:\
        !          4024:        :k5=\EOg:k6=\EOh:k7=\EOi:k8=\EOj:k9=\ENo:kb=^H:\
        !          4025:        :kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:\
        !          4026:        :ll=\E[24H:mb=\E[5m:md=\E[1m:me=\E[m\017:mh=\E[2m:\
        !          4027:        :mk=\E[8m:mr=\E[7m:nd=\E[C:nw=\EE:pf=\E[?4i:\
        !          4028:        :po=\E[?5i:rc=\E8:sc=\E7:se=\E[m:sf=^J:so=\E[7m:\
        !          4029:        :ta=^I:ts=\E7\E[25;%i%p1%dx:ue=\E[m:up=\E[A:us=\E[4m:
        !          4030: att605-pc|605bct-pc|ATT 605 in pc term mode:\
        !          4031:        :AL=\E[L:al=\E[L:bt=\E[Z:dc=\E[P:dl=\E[M:do=\E[B:ei=:\
        !          4032:        :ic=\E[@:im=:k1=\E[M:k2=\E[N:k3=\E[O:k4=\E[P:k5=\E[Q:\
        !          4033:        :k6=\E[R:k7=\E[S:k8=\E[T:k9=\E[U:kd=\E[B:kh=\E[H:\
        !          4034:        :kl=\E[D:kr=\E[C:ku=\E[A:le=\E[D:nd=\E[C:up=\E[A:tc=att605:
        !          4035: att605-w|605bct-w|AT&T 605-w 132 column 102 key keyboard:\
        !          4036:        :co#132:ws#132:\
        !          4037:        :i1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h\E(B\E)0:tc=att605:
        !          4038: att610|610bct|AT&T 610; 80 column; 98key keyboard:\
        !          4039:        :am:es:hs:mi:ms:xn:xo:\
        !          4040:        :co#80:it#8:li#24:ws#80:\
        !          4041:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          4042:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:\
        !          4043:        :bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          4044:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:dc=\E[P:dl=\E[M:\
        !          4045:        :do=\E[B:ei=\E[4l:fs=\E8:ho=\E[H:\
        !          4046:        :i1=\E[8;0|\E[?3;4;5;13;15l\E[13;20l\E[?7h\E[12h\E(B\E)0:\
        !          4047:        :i2=\E(B\E)0:im=\E[4h:is=\E[0m\017:k1=\EOc:k2=\EOd:\
        !          4048:        :k3=\EOe:k4=\EOf:k5=\EOg:k6=\EOh:k7=\EOi:k8=\EOj:\
        !          4049:        :k9=\ENo:kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:\
        !          4050:        :ku=\E[A:le=^H:ll=\E[24H:mb=\E[5m:md=\E[1m:\
        !          4051:        :me=\E[m\017:mh=\E[2m:mk=\E[8m:mr=\E[7m:nd=\E[C:\
        !          4052:        :nw=\EE:pf=\E[?4i:po=\E[?5i:rc=\E8:\
        !          4053:        :..sa=\E[0%?%p6%t;1%;%?%p5%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;:\
        !          4054:        :sc=\E7:se=\E[m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:\
        !          4055:        :ts=\E7\E[25;%i%p1%dx:ue=\E[m:up=\E[A:us=\E[4m:\
        !          4056:        :vb=\E[?5h\E[?5l:ve=\E[?25h\E[?12l:vi=\E[?25l:\
        !          4057:        :vs=\E[?12;25h:
        !          4058: att610-w|610bct-w|AT&T 610; 132 column; 98key keyboard:\
        !          4059:        :co#132:ws#132:\
        !          4060:        :i1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h:tc=att610:
        !          4061:
        !          4062: att610-103k|610-103k|610bct-103k|AT&T 610; 80 column; 103key keyboard:\
        !          4063:        :k9@:tc=att610:
        !          4064: att610-103k-w|610-103k-w|610bct-103k-w|AT&T 610; 132 column; 103key keyboard:\
        !          4065:        :co#132:ws#132:\
        !          4066:        :i1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h:tc=att610-103k:
        !          4067: att615|615mt|AT&T 615; 80 column; 98key keyboard:\
        !          4068:        :tc=att610:
        !          4069: att615-w|615-w|615mt-w|AT&T 615; 132 column; 98key keyboard:\
        !          4070:        :tc=att610-w:
        !          4071: att615-103k|615-103k|615mt-103k|AT&T 615; 80 column; 103key keyboard:\
        !          4072:        :tc=att610-103k:
        !          4073: att615-103k-w|615-103k-w|615mt-103k-w|AT&T 615; 132 column; 103key keyboard:\
        !          4074:        :tc=att610-103k-w:
        !          4075: att620|620mtg|AT&T 620; 80 column; 98key keyboard:\
        !          4076:        :am:es:hs:mi:ms:xn:xo:\
        !          4077:        :co#80:it#8:li#24:ws#80:\
        !          4078:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          4079:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=\E(B\017:al=\E[L:\
        !          4080:        :as=\E)0\016:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:\
        !          4081:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:\
        !          4082:        :dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:fs=\E8:ho=\E[H:\
        !          4083:        :i1=\E[8;0|\E[?3;4;5;13;15l\E[13;20l\E[?7h\E[12h:\
        !          4084:        :i2=\E(B\E)0:im=\E[4h:is=\E[0m\017:k1=\EOc:k2=\EOd:\
        !          4085:        :k3=\EOe:k4=\EOf:k5=\EOg:k6=\EOh:k7=\EOi:k8=\EOj:\
        !          4086:        :k9=\ENo:kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:\
        !          4087:        :ku=\E[A:le=^H:ll=\E[24H:mb=\E[5m:md=\E[1m:\
        !          4088:        :me=\E[m\E(B\017:mh=\E[2m:mk=\E[8m:mr=\E[7m:nd=\E[C:\
        !          4089:        :nw=\EE:pf=\E[?4i:po=\E[?5i:rc=\E8:\
        !          4090:        :..sa=\E[0%?%p6%t;1%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;:\
        !          4091:        :sc=\E7:se=\E[m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:\
        !          4092:        :ts=\E7\E[25;%i%p1%dx:ue=\E[m:up=\E[A:us=\E[4m:\
        !          4093:        :vb=\E[?5h\E[?5l:ve=\E[?25h\E[?12l:vi=\E[?25l:\
        !          4094:        :vs=\E[?12;25h:
        !          4095: att620-w|620-w|620mtg-w|AT&T 620; 132 column; 98key keyboard:\
        !          4096:        :co#132:ws#132:\
        !          4097:        :i1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h:tc=att620:
        !          4098: att620-103k|620-103k|620mtg-103k|AT&T 620; 80 column; 103key keyboard:\
        !          4099:        :k9@:tc=att620:
        !          4100:
        !          4101: att620-103k-w|620-103k-w|620mtg-103k-w|AT&T 620; 132 column; 103key keyboard:\
        !          4102:        :co#132:ws#132:\
        !          4103:        :i1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h:tc=att620-103k:
        !          4104:
        !          4105: # 630 short descriptions without \E
        !          4106: att630|5630|5630DMD|630MTG|AT&T 630 windowing terminal:\
        !          4107:        :am:da:db:mi:ms:xo:\
        !          4108:        :co#80:it#8:li#60:lm#0:\
        !          4109:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          4110:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:\
        !          4111:        :al=\E[L:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          4112:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:do=\E[B:\
        !          4113:        :ei=\E[4l:ho=\E[H:im=\E[4h:is=\E[m:k9=\ENo:kb=^H:\
        !          4114:        :kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:\
        !          4115:        :me=\E[m:mr=\E[7m:nd=\E[C:nw=^M^J:pf=\E[?4i:\
        !          4116:        :po=\E[?5i:rc=\E8:\
        !          4117:        :..sa=\E[0%?%p2%t;4%;%?%p1%p3%|%p4%|%p5%|%t;7%;m:\
        !          4118:        :sc=\E7:se=\E[m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:ue=\E[m:\
        !          4119:        :up=\E[A:us=\E[4m:
        !          4120:
        !          4121:
        !          4122: att630-24|5630-24|5630DMD-24|630MTG-24|AT&T 630 windowing terminal 24 lines:\
        !          4123:        :li#24:\
        !          4124:        :tc=att630:
        !          4125:
        !          4126: # This entry was modified 3/13/90 by JWE.
        !          4127: # fixes include additions of enacs, correcting rep, and modification
        !          4128: # of kHOM.  (See comments below)
        !          4129: # has status line of 80 chars
        !          4130: # These were commented out: indn=\E[%p1%dS, rin=\E[%p1%dT,
        !          4131: # the k25 and up keys are used for shifted system Fkeys
        !          4132: # NOTE: JWE 3/13/90 The 98 key keyboard translation for shift/HOME is
        !          4133: # currently the same as khome (unshifted HOME or \E[H).  On the 102, 102+1
        !          4134: # and 122 key keyboards, the 730's translation is \E[2J.  For consistency
        !          4135: # kHOM has been commented out.  The user can uncomment kHOM if using the
        !          4136: # 102, 102+1, or 122 key keyboards
        !          4137: #       kHOM=\E[2J,
        !          4138: att730|730MTG|AT&T 730 windowing terminal Version:\
        !          4139:        :am:da:db:es:hs:mi:ms:xn:xo:\
        !          4140:        :co#80:it#8:li#60:lm#0:ws#80:\
        !          4141:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          4142:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:\
        !          4143:        :bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          4144:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:dc=\E[P:dl=\E[M:\
        !          4145:        :do=\E[B:ei=\E[4l:fs=\E8:ho=\E[H:\
        !          4146:        :i1=\E[8;0|\E[?3;4;5;13;15l\E[13;20l\E[?7h\E[12h\E(B\E)B:\
        !          4147:        :i2=\E(B\E)0:im=\E[4h:is=\E[0m\017:k1=\EOc:k2=\EOd:\
        !          4148:        :k3=\EOe:k4=\EOf:k5=\EOg:k6=\EOh:k7=\EOi:k8=\EOj:\
        !          4149:        :k9=\ENo:kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:\
        !          4150:        :ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[m\017:\
        !          4151:        :mh=\E[2m:mk=\E[8m:mr=\E[7m:nd=\E[C:nw=\EE:pf=\E[?4i:\
        !          4152:        :po=\E[?5i:ps=\E[?19h\E[0i:rc=\E8:\
        !          4153:        :..rp=%p1%c\E[%p2%{1}%-%db:\
        !          4154:        :..sa=\E[0%?%p6%t;1%;%?%p5%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t\016%e\017%;:\
        !          4155:        :sc=\E7:se=\E[27m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:\
        !          4156:        :ts=\E7\E[;%i%p1%dx:ue=\E[24m:up=\E[A:us=\E[4m:\
        !          4157:        :vb=\E[?5h\E[?5l:ve=\E[?25h\E[?12l:vi=\E[?25l:\
        !          4158:        :vs=\E[?12;25h:
        !          4159:
        !          4160: att730-41|730MTG-41|AT&T 730-41 windowing terminal Version:\
        !          4161:        :li#41:\
        !          4162:        :tc=att730:
        !          4163:
        !          4164: att730-24|730MTG-24|AT&T 730-24 windowing terminal Version:\
        !          4165:        :li#24:\
        !          4166:        :tc=att730:
        !          4167:
        !          4168: att730r|730MTGr|AT&T 730 rev video windowing terminal Version:\
        !          4169:        :i1=\E[8;0|\E[?3;4;13;15l\E[?5h\E[13;20l\E[?7h\E[12h\E(B\E)B:\
        !          4170:        :vb=\E[?5l\E[?5h:tc=att730:
        !          4171:
        !          4172: att730r-41|730MTG-41r|AT&T 730r-41 rev video windowing terminal Version:\
        !          4173:        :li#41:\
        !          4174:        :tc=att730r:
        !          4175:
        !          4176: att730r-24|730MTGr-24|AT&T 730r-24 rev video windowing terminal Version:\
        !          4177:        :li#24:\
        !          4178:        :tc=att730r:
        !          4179:
        !          4180:
        !          4181: # 05-Aug-86:
        !          4182: # The following Terminfo entry describes functions which are supported by
        !          4183: # the AT&T 5430/pt505 terminal software version 2 and later.
        !          4184: #
        !          4185: # The following represents the screen layout along with the associated
        !          4186: # bezel buttons for the 5430/pt505 terminal. The "kf" designations do
        !          4187: # not appear on the screen but are shown to reference the bezel buttons.
        !          4188: # The "CMD", "MAIL", and "REDRAW" buttons are shown in their approximate
        !          4189: # position relative to the screen.
        !          4190: #
        !          4191: #
        !          4192: #
        !          4193: #      +----------------------------------------------------------------+
        !          4194: #      |                                                                |
        !          4195: # XXXX | kf0                                                       kf24 | XXXX
        !          4196: #      |                                                                |
        !          4197: #      |                                                                |
        !          4198: # XXXX | kf1                                                       kf23 | XXXX
        !          4199: #      |                                                                |
        !          4200: #      |                                                                |
        !          4201: # XXXX | kf2                                                       kf22 | XXXX
        !          4202: #      |                                                                |
        !          4203: #      |                                                                |
        !          4204: # XXXX | kf3                                                       kf21 | XXXX
        !          4205: #      |                                                                |
        !          4206: #      |                                                                |
        !          4207: # XXXX | kf4                                                       kf20 | XXXX
        !          4208: #      |                                                                |
        !          4209: #      |                                                                |
        !          4210: # XXXX | kf5                                                       kf19 | XXXX
        !          4211: #      |                                                                |
        !          4212: #      |                                                                |
        !          4213: # XXXX | kf6                                                       kf18 | XXXX
        !          4214: #      |                                                                |
        !          4215: #      |                                                                |
        !          4216: # XXXX |                                                                | XXXX
        !          4217: #      |                                                                |
        !          4218: #      |                                                                |
        !          4219: #      +----------------------------------------------------------------+
        !          4220: #
        !          4221: #          XXXX  XXXX  XXXX  XXXX  XXXX  XXXX  XXXX  XXXX  XXXX  XXXX
        !          4222: #
        !          4223: # Note: XXXX represents the screen buttons
        !          4224: #                                                          CMD   REDRAW
        !          4225: #
        !          4226: #                                                          MAIL
        !          4227: #
        !          4228: # Depression of the "CMD" key sends    \E!    (kcmd)
        !          4229: # Depression of the "MAIL" key sends   \E[26s (kf26)
        !          4230: # "REDRAW" same as "REFRESH" (krfr)
        !          4231: #
        !          4232: # "kf" functions adds carriage return to output string if terminal is in
        !          4233: # 'new line' mode.
        !          4234: #
        !          4235: # The following are functions not covered in the table above:
        !          4236: #
        !          4237: #       Set keyboard character (SKC): \EPn1;Pn2w
        !          4238: #                       Pn1= 0 Back Space key
        !          4239: #                       Pn1= 1 Break key
        !          4240: #                       Pn2=   Program char (hex)
        !          4241: #
        !          4242: #       Screen Definition (SDF): \E[Pn1;Pn2;Pn3;Pn4;Pn5t
        !          4243: #                       Pn1=     Window number (1-39)
        !          4244: #                       Pn2-Pn5= Y;X;Y;X coordinates
        !          4245: #
        !          4246: #       Screen Selection (SSL): \E[Pnu
        !          4247: #                       Pn= Window number
        !          4248: #
        !          4249: #       Set Terminal Modes (SM): \E[Pnh
        !          4250: #                       Pn= 3 Graphics mode
        !          4251: #                       Pn= > Cursor blink
        !          4252: #                       Pn= < Enter new line mode
        !          4253: #                       Pn= = Enter reverse insert/replace mode
        !          4254: #                       Pn= ? Enter no scroll mode
        !          4255: #
        !          4256: #       Reset Terminal Mode (RM): \E[Pnl
        !          4257: #                       Pn= 3 Exit graphics mode
        !          4258: #                       Pn= > Exit cursor blink
        !          4259: #                       Pn= < Exit new line mode
        !          4260: #                       Pn= = Exit reverse insert/replace mode
        !          4261: #                       Pn= ? Exit no scroll mode
        !          4262: #
        !          4263: #       Screen Status Report (SSR): \E[Pnp
        !          4264: #                       Pn= 0 Request current window number
        !          4265: #                       Pn= 1 Request current window dimensions
        !          4266: #
        !          4267: #       Device Status Report (DSR): \E[6n    Request cursor position
        !          4268: #
        !          4269: #       Call Status Report (CSR): \E[Pnv
        !          4270: #                       Pn= 0 Call failed
        !          4271: #                       Pn= 1 Call successful
        !          4272: #
        !          4273: #       Transparent Button String (TBS): \E[Pn1;Pn2;Pn3;{string
        !          4274: #                       Pn1= Button number to be loaded
        !          4275: #                       Pn2= Character count of "string"
        !          4276: #                       Pn3= Key mode being loaded:
        !          4277: #                               0= Unshifted
        !          4278: #                               1= Shifted
        !          4279: #                               2= Control
        !          4280: #                       String= Text string (15 chars max)
        !          4281: #
        !          4282: #       Screen Number Report (SNR): \E[Pnp
        !          4283: #                       Pn= Screen number
        !          4284: #
        !          4285: #       Screen Dimension Report (SDR): \E[Pn1;Pn2r
        !          4286: #                       Pn1= Number of rows available in window
        !          4287: #                       Pn2= Number of columns available in window
        !          4288: #
        !          4289: #       Cursor Position Report (CPR): \E[Pn1;Pn2R
        !          4290: #                       Pn1= "Y" Position of cousor
        !          4291: #                       Pn2= "X" Position of cursor
        !          4292: #
        !          4293: #       Request Answer Back (RAB): \E[c
        !          4294: #
        !          4295: #       Answer Back Response (ABR): \E[?;*;30;VSV
        !          4296: #                       *=  0 No printer available
        !          4297: #                       *=  2 Printer available
        !          4298: #                       V=  Software version number
        !          4299: #                       SV= Software sub version number
        !          4300: #
        !          4301: #       Screen Alingment Aid: \En
        !          4302: #
        !          4303: #       Bell (lower pitch): \E[x
        !          4304: #
        !          4305: #       Dial Phone Number: \EPdstring\
        !          4306: #                       string= Phone number to be dialed
        !          4307: #
        !          4308: #       Set Phone Labels: \EPpstring\
        !          4309: #                       string= Label for phone buttons
        !          4310: #
        !          4311: #       Set Clock: \EPchour;minute;second\
        !          4312: #
        !          4313: #       Position Clock: \EPsY;X\
        !          4314: #                       Y= "Y" coordinate
        !          4315: #                       X= "X" coordinate
        !          4316: #
        !          4317: #       Delete Clock: \Epr\
        !          4318: #
        !          4319: #       Programming The Function Buttons: \EPfPn;string\
        !          4320: #                       Pn= Button number (00-06, 18-24)
        !          4321: #                                         (kf00-kf06, kf18-kf24)
        !          4322: #                       string= Text to sent on button depression
        !          4323: #
        !          4324: #       Request For Local Directory Data: \EPp12;\
        !          4325: #
        !          4326: #       Local Directory Data to host: \EPp11;LOCAL...DIRECTORY...DATA\
        !          4327: #
        !          4328: #      Request for Local Directory Data in print format: \EPp13;\
        !          4329: #
        !          4330: #      Enable 'Prt on Line' mode: \022 (DC2)
        !          4331: #
        !          4332: #      Disable 'Prt on Line' mode: \024 (DC4)
        !          4333: #
        !          4334: att505|pt505|att5430|gs5430|AT&T Personal Terminal 505 or 5430 GETSET terminal:\
        !          4335:        :am:xo:\
        !          4336:        :co#80:it#8:li#24:\
        !          4337:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:\
        !          4338:        :RI=\E[%dC:UP=\E[%dA:ae=\E[10m:al=\E[L:as=\E[11m:\
        !          4339:        :bl=^G:cd=\E[0J:ce=\E[0K:cl=\E[2J\E[H:cm=\E[%d;%dH:\
        !          4340:        :cr=^M:dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:ho=\E[H:\
        !          4341:        :i1=\EPr\\E[0u\E[2J\E[0;0H\E[0m\E[3l\E[<l\E[4l\E[>l\E[=l\E[?l:\
        !          4342:        :im=\E[4h:k0=\E[00s:k1=\E[01s:k2=\E[02s:k3=\E[03s:\
        !          4343:        :k4=\E[04s:k5=\E[05s:k6=\E[06s:kb=^H:kd=\E[B:kl=\E[D:\
        !          4344:        :kr=\E[C:ku=\E[A:le=\E[D:mb=\E[5m:md=\E[1m:me=\E[0m:\
        !          4345:        :mr=\E[7m:nd=\E[C:pf=\E[4i:po=\E[5i:rc=\E8:sc=\E7:\
        !          4346:        :se=\E[0m:sf=^J:so=\E[1m:ta=^I:ue=\E[0m:up=\E[A:\
        !          4347:        :us=\E[4m:ve=\E[>l:vs=\E[>h:
        !          4348:
        !          4349: #
        !          4350: # The following Terminfo entry describes functions which are supported by
        !          4351: # the AT&T 5430/pt505 terminal software version 1.
        !          4352: #
        !          4353: # The following represents the screen layout along with the associated
        !          4354: # bezel buttons for the 5430/pt505 terminal. The "kf" designations do
        !          4355: # not appear on the screen but are shown to reference the bezel buttons.
        !          4356: # The "CMD", "MAIL", and "REDRAW" buttons are shown in their approximate
        !          4357: # position relative to the screen.
        !          4358: #
        !          4359: #
        !          4360: #
        !          4361: #      +----------------------------------------------------------------+
        !          4362: #      |                                                                |
        !          4363: # XXXX | kf0                                                       kf24 | XXXX
        !          4364: #      |                                                                |
        !          4365: #      |                                                                |
        !          4366: # XXXX | kf1                                                       kf23 | XXXX
        !          4367: #      |                                                                |
        !          4368: #      |                                                                |
        !          4369: # XXXX | kf2                                                       kf22 | XXXX
        !          4370: #      |                                                                |
        !          4371: #      |                                                                |
        !          4372: # XXXX | kf3                                                       kf21 | XXXX
        !          4373: #      |                                                                |
        !          4374: #      |                                                                |
        !          4375: # XXXX | kf4                                                       kf20 | XXXX
        !          4376: #      |                                                                |
        !          4377: #      |                                                                |
        !          4378: # XXXX | kf5                                                       kf19 | XXXX
        !          4379: #      |                                                                |
        !          4380: #      |                                                                |
        !          4381: # XXXX | kf6                                                       kf18 | XXXX
        !          4382: #      |                                                                |
        !          4383: #      |                                                                |
        !          4384: # XXXX |                                                                | XXXX
        !          4385: #      |                                                                |
        !          4386: #      |                                                                |
        !          4387: #      +----------------------------------------------------------------+
        !          4388: #
        !          4389: #          XXXX  XXXX  XXXX  XXXX  XXXX  XXXX  XXXX  XXXX  XXXX  XXXX
        !          4390: #
        !          4391: # Note: XXXX represents the screen buttons
        !          4392: #                                                          CMD   REDRAW
        !          4393: #
        !          4394: #                                                          MAIL
        !          4395: #
        !          4396: #       Depression of the "CMD" key sends    \E!    (kcmd)
        !          4397: # Depression of the "MAIL" key sends   (note) (kf26)
        !          4398: # "REDRAW" same as "REFRESH" (krfr)    (note)
        !          4399: #
        !          4400: # note: The character string sent by key 'kf26' may be user programmable
        !          4401: #       to send either \E[16s, or \E[26s.
        !          4402: #       The character string sent by key 'krfr' may be user programmable
        !          4403: #       to send either \E[17s, or \E[27s.
        !          4404: #
        !          4405: # "kf" functions adds carriage return to output string if terminal is in
        !          4406: # 'new line' mode.
        !          4407: #
        !          4408: # The following are functions not covered in the table above:
        !          4409: #
        !          4410: #       Set keyboard character (SKC):
        !          4411: #
        !          4412: #               \EPn1;Pn2w
        !          4413: #
        !          4414: #                       Pn1= 0 Back Space key
        !          4415: #                       Pn1= 1 Break key
        !          4416: #                       Pn2=   Program char (hex)
        !          4417: #
        !          4418: #       Screen Definition (SDF):
        !          4419: #
        !          4420: #               \E[Pn1;Pn2;Pn3;Pn4;Pn5t
        !          4421: #
        !          4422: #                       Pn1=     Window number (1-39)
        !          4423: #                       Pn2-Pn5= Y;X;Y;X coordinates
        !          4424: #
        !          4425: #       Screen Selection (SSL):
        !          4426: #
        !          4427: #               \E[Pnu
        !          4428: #
        !          4429: #                       Pn= Window number
        !          4430: #
        !          4431: #       Set Terminal Modes (SM):
        !          4432: #
        !          4433: #               \E[Pnh
        !          4434: #
        !          4435: #                       Pn= 3 Graphics mode
        !          4436: #                       Pn= > Cursor blink
        !          4437: #                       Pn= < Enter new line mode
        !          4438: #                       Pn= = Enter reverse insert/replace mode
        !          4439: #                       Pn= ? Enter no scroll mode
        !          4440: #
        !          4441: #       Reset Terminal Mode (RM):
        !          4442: #
        !          4443: #               \E[Pnl
        !          4444: #
        !          4445: #                       Pn= 3 Exit graphics mode
        !          4446: #                       Pn= > Exit cursor blink
        !          4447: #                       Pn= < Exit new line mode
        !          4448: #                       Pn= = Exit reverse insert/replace mode
        !          4449: #                       Pn= ? Exit no scroll mode
        !          4450: #
        !          4451: #       Screen Status Report (SSR):
        !          4452: #
        !          4453: #               \E[Pnp
        !          4454: #
        !          4455: #                       Pn= 0 Request current window number
        !          4456: #                       Pn= 1 Request current window dimensions
        !          4457: #
        !          4458: #       Device Status Report (DSR):
        !          4459: #
        !          4460: #               \E[6n    Request cursor position
        !          4461: #
        !          4462: #       Call Status Report (CSR):
        !          4463: #
        !          4464: #               \E[Pnv
        !          4465: #
        !          4466: #                       Pn= 0 Call failed
        !          4467: #                       Pn= 1 Call successful
        !          4468: #
        !          4469: #       Transparent Button String (TBS):
        !          4470: #
        !          4471: #               \E[Pn1;Pn2;Pn3;{string
        !          4472: #
        !          4473: #                       Pn1= Button number to be loaded
        !          4474: #                       Pn2= Character count of "string"
        !          4475: #                       Pn3= Key mode being loaded:
        !          4476: #                               0= Unshifted
        !          4477: #                               1= Shifted
        !          4478: #                               2= Control
        !          4479: #                       String= Text string (15 chars max)
        !          4480: #
        !          4481: #       Screen Number Report (SNR):
        !          4482: #
        !          4483: #               \E[Pnp
        !          4484: #
        !          4485: #                       Pn= Screen number
        !          4486: #
        !          4487: #       Screen Dimension Report (SDR):
        !          4488: #
        !          4489: #               \E[Pn1;Pn2r
        !          4490: #
        !          4491: #                       Pn1= Number of rows available in window
        !          4492: #                       Pn2= Number of columns available in window
        !          4493: #
        !          4494: #       Cursor Position Report (CPR):
        !          4495: #
        !          4496: #               \E[Pn1;Pn2R
        !          4497: #
        !          4498: #                       Pn1= "Y" Position of cousor
        !          4499: #                       Pn2= "X" Position of cursor
        !          4500: #
        !          4501: #       Request Answer Back (RAB):
        !          4502: #
        !          4503: #               \E[c
        !          4504: #
        !          4505: #       Answer Back Response (ABR):
        !          4506: #
        !          4507: #               \E[?;0;30;VSV
        !          4508: #
        !          4509: #                       V=  Software version number
        !          4510: #                       SV= Software sub version number
        !          4511: #
        !          4512: #       Screen Alignment Aid:
        !          4513: #
        !          4514: #               \En
        !          4515: #
        !          4516: #       Bell (lower pitch):
        !          4517: #
        !          4518: #               \E[x
        !          4519: #
        !          4520: #       Dial Phone Number:
        !          4521: #
        !          4522: #               \EPdstring\
        !          4523: #
        !          4524: #                       string= Phone number to be dialed
        !          4525: #
        !          4526: #       Set Phone Labels:
        !          4527: #
        !          4528: #               \EPpstring\
        !          4529: #
        !          4530: #                       string= Label for phone buttons
        !          4531: #
        !          4532: #       Set Clock:
        !          4533: #
        !          4534: #               \EPchour;minute;second\
        !          4535: #
        !          4536: #       Position Clock:
        !          4537: #
        !          4538: #               \EPsY;X\
        !          4539: #
        !          4540: #                       Y= "Y" coordinate
        !          4541: #                       X= "X" coordinate
        !          4542: #
        !          4543: #       Delete Clock:
        !          4544: #
        !          4545: #               \Epr\
        !          4546: #
        !          4547: #       Programming The Function Buttons:
        !          4548: #
        !          4549: #               \EPfPn;string\
        !          4550: #
        !          4551: #                       Pn= Button number (00-06, 18-24)
        !          4552: #                                         (kf00-kf06, kf18-kf24)
        !          4553: #
        !          4554: #                       string= Text to sent on button depression
        !          4555: #
        !          4556: #
        !          4557: #
        !          4558: #                                                      05-Aug-86
        !          4559: #
        !          4560: #
        !          4561: att505-24|pt505-24|gs5430-24| AT&T PT505 or 5430 GETSET version 1 24 lines:\
        !          4562:        :am:xo:\
        !          4563:        :co#80:it#8:li#24:\
        !          4564:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:\
        !          4565:        :RI=\E[%dC:UP=\E[%dA:ae=\E[10m:al=\E[L:as=\E[11m:\
        !          4566:        :bl=^G:cd=\E[0J:ce=\E[0K:cl=\E[2J\E[H:cm=\E[%d;%dH:\
        !          4567:        :cr=^M:dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:ho=\E[H:\
        !          4568:        :i1=\EPr\\E[0u\E[2J\E[0;0H\E[0m\E[3l\E[<l\E[4l\E[>l\E[=l\E[?l:\
        !          4569:        :im=\E[4h:k0=\E[00s:k1=\E[01s:k2=\E[02s:k3=\E[03s:\
        !          4570:        :k4=\E[04s:k5=\E[05s:k6=\E[06s:kb=^H:kd=\E[B:kl=\E[D:\
        !          4571:        :kr=\E[C:ku=\E[A:le=\E[D:mb=\E[5m:md=\E[1m:me=\E[0m:\
        !          4572:        :mr=\E[7m:nd=\E[C:se=\E[0m:sf=^J:so=\E[1m:ta=^I:\
        !          4573:        :ue=\E[0m:up=\E[A:us=\E[4m:ve=\E[>l:vs=\E[>h:
        !          4574: att505-22|pt505-22|gs5430-22| AT&T PT505 or 5430 GETSET version 1 22 lines:\
        !          4575:        :li#22:\
        !          4576:        :tc=att505-24:
        !          4577: #
        !          4578: # -------------------- TERMINFO FILE CAN BE SPLIT HERE -----------------------
        !          4579: # This cut mark helps make life less painful for people running ncurses tic
        !          4580: # on machines with relatively little RAM.  The file can be broken in half here
        !          4581: # cleanly and compiled in sections -- no `use' references cross this cut
        !          4582: # going forward.
        !          4583: #
        !          4584:
        !          4585: #### Ampex (Dialogue)
        !          4586: #
        !          4587: # Yes, these are the same people who are better-known for making audio- and
        !          4588: # videotape.  I'm told they are located in Redwood City, CA.
        !          4589:
        !          4590: # From: <cbosg!ucbvax!SRC:george> Fri Sep 11 22:38:32 1981
        !          4591: # (ampex80: mapped ":pt:" to default tabs; some capabilities merged in from
        !          4592: # SCO's entry -- esr)
        !          4593: ampex80|a80|d80|dialogue|dialogue80|ampex dialogue 80:\
        !          4594:        :am:bs:bw:pt:ul:\
        !          4595:        :co#80:li#24:\
        !          4596:        :al=\EE:bl=^G:bt=\EI:cd=\Ey:ce=\Et:cl=\E*:\
        !          4597:        :cm=\E=%+ %+ :cr=^M:ct=\E3:dc=\EW:dl=\ER:do=^J:ei=:\
        !          4598:        :ic=\EQ:im=:is=\EA:le=^H:nd=^L:se=\Ek:sf=^J:so=\Ej:\
        !          4599:        :st=\E1:ta=^I:ue=\Em:up=^K:us=\El:
        !          4600: # This entry was from somebody anonymous, Tue Aug  9 20:11:37 1983, who wrote:
        !          4601: ampex175|ampex d175:\
        !          4602:        :am:\
        !          4603:        :co#80:li#24:\
        !          4604:        :al=\EE:bl=^G:cd=\Ey:ce=\Et:cl=\E+:cm=\E=%+ %+ :\
        !          4605:        :cr=^M:dc=\EW:dl=\ER:do=^J:ei=:ho=^^:ic=\EQ:im=:\
        !          4606:        :is=\EX\EA\EF:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:le=^H:\
        !          4607:        :ll=^^^K:nd=^L:se=\Ek:sf=^J:so=\Ej:te=\EF:ti=\EN:\
        !          4608:        :ue=\Em:up=^K:us=\El:
        !          4609: # No backspace key in the main QWERTY cluster. Fortunately, it has a
        !          4610: # NEWLINE/PAGE key just above RETURN that sends a strange single-character
        !          4611: # code.  Given a suitable Unix (one that lets you set an echo-erase-as-BS-SP-BS
        !          4612: # mode), this key can be used as the erase key; I find I like this. Because
        !          4613: # some people and some systems may not, there is another termcap ("ampex175")
        !          4614: # that suppresses this little eccentricity by omitting the relevant capability.
        !          4615: ampex175-b|ampex d175 using left arrow for erase:\
        !          4616:        :kb=^_:tc=ampex175:
        !          4617: # From: Richard Bascove <atd!dsd!rcb@ucbvax.berkeley.edu>
        !          4618: # (ampex210: removed obsolete ":kn#10:"; mapped ":pt:" to default tabs -- esr)
        !          4619: ampex210|a210|ampex a210:\
        !          4620:        :am:bs:hs:pt:xn:\
        !          4621:        :co#80:li#24:sg#1:ug#1:\
        !          4622:        :al=\EE:bt=\EI:cd=\Ey:ce=\Et:cl=\E*:cm=\E=%+ %+ :\
        !          4623:        :dc=\EW:dl=\ER:ei=:fs=\E.2:ho=^^:ic=\EQ:\
        !          4624:        :if=/usr/share/tabset/std:im=:\
        !          4625:        :is=\EC\Eu\E'\E(\El\EA\E%\E{\E.2\EG0\Ed\En:k0=^A0\r:\
        !          4626:        :k1=^A1\r:k2=^A2\r:k3=^A3\r:k4=^A4\r:k5=^A5\r:\
        !          4627:        :k6=^A6\r:k7=^A7\r:k8=^A8\r:k9=^A9\r:kd=^V:kh=^^:\
        !          4628:        :kl=^H:kr=^L:ku=^K:nd=^L:se=\EG0:so=\EG4:\
        !          4629:        :ts=\E.0\Eg\E}\Ef:ue=\EG0:up=^K:us=\EG8:\
        !          4630:        :vb=\EU\EX\EU\EX\EU\EX\EU\EX:
        !          4631: ampex219|ampex-219|amp219|Ampex with Automargins:\
        !          4632:        :hs:xn:\
        !          4633:        :co#80:it#8:li#24:\
        !          4634:        :bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\
        !          4635:        :cm=\E[%i%d;%dH:cr=^M:cs=%i\E[%2;%2r:do=\E[B:ho=\E[H:\
        !          4636:        :is=\E>\E[?1l\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:\
        !          4637:        :k0=\E[21~:k1=\E[7~:k2=\E[8~:k3=\E[9~:k4=\E[10~:\
        !          4638:        :k5=\E[11~:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:\
        !          4639:        :kd=\E[B:ke=\E>:kh=\E[H:kl=\E[D:kr=\E[C:ks=\E=:\
        !          4640:        :ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[0m:mh=\E[1m:\
        !          4641:        :mr=\E[7m:nd=\E[C:se=\E[0m:sf=^J:so=\E[7m:sr=\EM:\
        !          4642:        :ta=^I:ue=\E[0m:up=\E[A:us=\E[4m:
        !          4643: ampex219w|ampex-219w|amp219w|Ampex 132 cols:\
        !          4644:        :co#132:li#24:\
        !          4645:        :bl=^G:cr=^M:do=^J:\
        !          4646:        :is=\E>\E[?3h\E[?4l\E[?5l\E[?7h\E[?8h:sf=^J:\
        !          4647:        :vs=\E[?3h:tc=ampex219:
        !          4648: ampex232|ampex-232|Ampex Model 232:\
        !          4649:        :am:\
        !          4650:        :co#80:li#24:sg#1:ug#1:\
        !          4651:        :al=5*\EE:bt=\EI:cd=\EY:ce=\ET:cl=\E+:cm=\E=%+ %+ :\
        !          4652:        :dc=\EW:dl=5*\ER:do=^V:ei=:ic=\EQ:\
        !          4653:        :if=/usr/share/tabset/ampex:im=:is=\Eg\El:k0=^A@\r:\
        !          4654:        :k1=^AA\r:k2=^AB\r:k3=^AC\r:k4=^AD\r:k5=^AE\r:\
        !          4655:        :k6=^AF\r:k7=^AG\r:k8=^AH\r:k9=^AI\r:kb=^H:kd=^V:\
        !          4656:        :kh=^^:kl=^H:kr=^L:ku=^K:le=^H:nd=^L:se=\EG0:so=\EG4:\
        !          4657:        :ta=^I:ue=\EG0:up=^K:us=\EG8:\
        !          4658:        :vb=\Eb\200\200\200\200\200\200\200\200\200\200\200\200\200\200\Ed:\
        !          4659:        :ve=\E.4:vi=\E.0:
        !          4660: ampex232w|Ampex Model 232 / 132 columns:\
        !          4661:        :co#132:li#24:\
        !          4662:        :if=/usr/share/tabset/amp-132:is=\E\034Eg\El:tc=ampex232:
        !          4663:
        !          4664: #### Ann Arbor (aa)
        !          4665: #
        !          4666:
        !          4667: # Originally from Mike O'Brien@Rand and Howard Katseff at Bell Labs.
        !          4668: # Highly modified 6/22 by Mike O'Brien.
        !          4669: # split out into several for the various screen sizes by dave-yost@rand
        !          4670: # Modifications made 3/82 by Mark Horton
        !          4671: # Modified by Tom Quarles at UCB for greater efficiency and more diversity
        !          4672: # status line moved to top of screen, :vb: removed 5/82
        !          4673: # Some unknown person at SCO then hacked the init strings to make them more
        !          4674: # efficient.
        !          4675: #
        !          4676: # assumes the following setup:
        !          4677: #   A menu: 0000 1010  0001 0000
        !          4678: #   B menu: 9600  0100 1000  0000 0000  1000 0000  17  19
        !          4679: #   C menu: 56   66   0    0    9600  0110 1100
        !          4680: #   D menu: 0110 1001   1   0
        !          4681: #
        !          4682: #      Briefly, the settings are for the following modes:
        !          4683: #         (values are for bit set/clear with * indicating our preference
        !          4684: #          and the value used to test these termcaps)
        !          4685: #      Note that many of these settings are irelevent to the termcap
        !          4686: #      and are just set to the default mode of the terminal as shipped
        !          4687: #      by the factory.
        !          4688: #
        !          4689: # A menu: 0000 1010  0001 0000
        !          4690: #      Block/underline cursor*
        !          4691: #      blinking/nonblinking cursor*
        !          4692: #      key click/no key click*
        !          4693: #      bell/no bell at column 72*
        !          4694: #
        !          4695: #      key pad is cursor control*/key pad is numeric
        !          4696: #      return and line feed/return for <cr> key *
        !          4697: #      repeat after .5 sec*/no repeat
        !          4698: #      repeat at 25/15 chars per sec. *
        !          4699: #
        !          4700: #      hold data until pause pressed/process data unless pause pressed*
        !          4701: #      slow scroll/no slow scroll*
        !          4702: #      Hold in area/don't hold in area*
        !          4703: #      functions keys have default*/function keys disabled on powerup
        !          4704: #
        !          4705: #      show/don't show position of cursor during page transmit*
        !          4706: #      unused
        !          4707: #      unused
        !          4708: #      unused
        !          4709: #
        !          4710: # B menu: 9600  0100 1000  0000 0000  1000 0000  17  19
        !          4711: #      Baud rate (9600*)
        !          4712: #
        !          4713: #      2 bits of parity - 00=odd,01=even*,10=space,11=mark
        !          4714: #      1 stop bit*/2 stop bits
        !          4715: #      parity error detection off*/on
        !          4716: #
        !          4717: #      keyboard local/on line*
        !          4718: #      half/full duplex*
        !          4719: #      disable/do not disable keyboard after data transmission*
        !          4720: #
        !          4721: #      transmit entire page/stop transmission at cursor*
        !          4722: #      transfer/do not transfer protected characters*
        !          4723: #      transmit all characters/transmit only selected characters*
        !          4724: #      transmit all selected areas/transmit only 1 selected area*
        !          4725: #
        !          4726: #      transmit/do not transmit line seperators to host*
        !          4727: #      transmit/do not transmit page tab stops tabs to host*
        !          4728: #      transmit/do not transmit column tab stop tabs to host*
        !          4729: #      transmit/do not transmit graphics control (underline,inverse..)*
        !          4730: #
        !          4731: #      enable*/disable auto XON/XOFF control
        !          4732: #      require/do not require receipt of a DC1 from host after each LF*
        !          4733: #      pause key acts as a meta key/pause key is pause*
        !          4734: #      unused
        !          4735: #
        !          4736: #      unused
        !          4737: #      unused
        !          4738: #      unused
        !          4739: #      unused
        !          4740: #
        !          4741: #      XON character (17*)
        !          4742: #      XOFF character (19*)
        !          4743: #
        !          4744: # C menu: 56   66   0    0    9600  0110 1100
        !          4745: #      number of lines to print data on (printer) (56*)
        !          4746: #
        !          4747: #      number of lines on a sheet of paper (printer) (66*)
        !          4748: #
        !          4749: #      left margin (printer) (0*)
        !          4750: #
        !          4751: #      number of pad chars on new line to printer (0*)
        !          4752: #
        !          4753: #      printer baud rate (9600*)
        !          4754: #
        !          4755: #      printer parity: 00=odd,01=even*,10=space,11=mark
        !          4756: #      printer stop bits: 2*/1
        !          4757: #      print/do not print guarded areas*
        !          4758: #
        !          4759: #      new line is: 01=LF,10=CR,11=CRLF*
        !          4760: #      unused
        !          4761: #      unused
        !          4762: #
        !          4763: # D menu: 0110 1001   1   0
        !          4764: #      LF is newline/LF is down one line, same column*
        !          4765: #      wrap to preceeding line if move left from col 1*/don't wrap
        !          4766: #      wrap to next line if move right from col 80*/don't wrap
        !          4767: #      backspace is/is not destructive*
        !          4768: #
        !          4769: #      display*/ignore DEL character
        !          4770: #      display will not/will scroll*
        !          4771: #      page/column tab stops*
        !          4772: #      erase everything*/erase unprotected only
        !          4773: #
        !          4774: #      editing extent: 0=display,1=line*,2=field,3=area
        !          4775: #
        !          4776: #      unused
        !          4777: #
        !          4778:
        !          4779: annarbor|4080|ann arbor 4080:\
        !          4780:        :am:\
        !          4781:        :co#80:li#40:\
        !          4782:        :bl=^G:cl=\014:\
        !          4783:        :..cm=\017%p2%{10}%/%{16}%*%p2%{10}%m%+%c%p1%?%p1%{19}%>%t%{12}%+%;%'@'%+%c:\
        !          4784:        :cr=^M:ct=^^P^P:do=^J:ho=^K:kb=^^:kd=^J:kh=^K:kl=^H:\
        !          4785:        :kr=^_:ku=^N:le=^H:nd=^_:sf=^J:st=^]^P1:ta=^I:up=^N:
        !          4786:
        !          4787: # If you're using the GNU termcap library, add
        !          4788: #      :cS=\E[%d;%d;%d;%dp:
        !          4789: # to these capabilities.  This is the nonstandard GNU termcap scrolling
        !          4790: # capability, arguments are:
        !          4791: #   1. Total number of lines on the screen.
        !          4792: #   2. Number of lines above desired scroll region.
        !          4793: #   3. Number of lines below (outside of) desired scroll region.
        !          4794: #   4. Total number of lines on the screen, the same as the first parameter.
        !          4795: # The generic Ann Arbor entry is the only one that uses this.
        !          4796: aaa+unk|aaa-unk|ann arbor ambassador (internal - don't use this directly):\
        !          4797:        :am:km:mi:xo:\
        !          4798:        :co#80:it#8:\
        !          4799:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          4800:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:al=\E[L:bl=^G:bt=\E[Z:\
        !          4801:        :cd=\E[J:ce=\E[K:ch=\E[%+^AG:cl=\E[H\E[J:\
        !          4802:        :cm=\E[%i%d;%dH:cr=^M:ct=\E[2g:cv=\E[%+^Ad:dc=\E[P:\
        !          4803:        :dl=\E[M:do=^K:ei=:ho=\E[H:i1=\E[m\E7\E[H\E9\E8:\
        !          4804:        :i2=\E[1Q\E[>20;30l\EP`+x~M\E\\:ic=\E[@:im=:k1=\EOA:\
        !          4805:        :k2=\EOB:k3=\EOC:k4=\EOD:k5=\EOE:k6=\EOF:k7=\EOG:\
        !          4806:        :k8=\EOH:k9=\EOI:kb=^H:kd=\E[B:\
        !          4807:        :ke=\EP`>y~[[J`8xy~[[A`4xy~[[D`6xy~[[C`2xy~[[B\E\\:\
        !          4808:        :kh=\E[H:kl=\E[D:kr=\E[C:\
        !          4809:        :ks=\EP`>z~[[J`8xz~[[A`4xz~[[D`6xz~[[C`2xz~[[B\E\\:\
        !          4810:        :ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[0m:mk=\E[8m:\
        !          4811:        :mm=\E[>52h:mo=\E[>52l:mr=\E[7m:nd=\E[C:pO=\E[%dv:\
        !          4812:        :pf=^C:po=\E[v:ps=\E[0i:rc=\E8:\
        !          4813:        :..rp=%p1%c\E[%p2%{1}%-%db:\
        !          4814:        :..sa=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m:\
        !          4815:        :sc=\E7:se=\E[m:sf=^K:so=\E[7m:st=\EH:ta=^I:ue=\E[m:\
        !          4816:        :up=\E[A:us=\E[4m:
        !          4817:
        !          4818: aaa+rv|ann arbor ambassador in reverse video:\
        !          4819:        :i1=\E[7m\E7\E[H\E9\E8:mb=\E[5;7m:md=\E[1;7m:\
        !          4820:        :me=\E[7m\016:mk=\E[7;8m:mr=\E[m:\
        !          4821:        :..sa=\E[%?%p1%p3%|%!%t7;%;%?%p2%t4;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m:\
        !          4822:        :se=\E[7m:so=\E[m:ue=\E[7m:us=\E[4;7m:
        !          4823: # Ambassador with the DEC option, for partial vt100 compatibility.
        !          4824: aaa+dec|ann arbor ambassador in dec vt100 mode:\
        !          4825:        :ae=^N:as=^O:cs=\E[%i%d;%dr:\
        !          4826:        :..sa=\E[%?%p1%p3%|%!%t7;%;%?%p2%t4;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m%?%p9%t\017%e\016%;:
        !          4827: aaa-18|ann arbor ambassador/18 lines:\
        !          4828:        :li#18:\
        !          4829:        :is=\E7\E[60;0;0;18p\E8:te=\E[60;0;0;18p\E[60;1H\E[K:\
        !          4830:        :ti=\E[18;0;0;18p:tc=aaa+unk:
        !          4831: aaa-18-rv|ann arbor ambassador/18 lines+reverse video:\
        !          4832:        :tc=aaa+rv:tc=aaa-18:
        !          4833: aaa-20|ann arbor ambassador/20 lines:\
        !          4834:        :li#20:\
        !          4835:        :is=\E7\E[60;0;0;20p\E8:te=\E[60;0;0;20p\E[60;1H\E[K:\
        !          4836:        :ti=\E[20;0;0;20p:tc=aaa+unk:
        !          4837: aaa-22|ann arbor ambassador/22 lines:\
        !          4838:        :li#22:\
        !          4839:        :is=\E7\E[60;0;0;22p\E8:te=\E[60;0;0;22p\E[60;1H\E[K:\
        !          4840:        :ti=\E[22;0;0;22p:tc=aaa+unk:
        !          4841: aaa-24|ann arbor ambassador/24 lines:\
        !          4842:        :li#24:\
        !          4843:        :is=\E7\E[60;0;0;24p\E8:te=\E[60;0;0;24p\E[60;1H\E[K:\
        !          4844:        :ti=\E[24;0;0;24p:tc=aaa+unk:
        !          4845: aaa-24-rv|ann arbor ambassador/24 lines+reverse video:\
        !          4846:        :tc=aaa+rv:tc=aaa-24:
        !          4847: aaa-26|ann arbor ambassador/26 lines:\
        !          4848:        :li#26:\
        !          4849:        :is=\E7\E[60;0;0;26p\E8:te=\E[60;0;0;26p\E[26;1H\E[K:\
        !          4850:        :ti=\E[H\E[J\E[26;0;0;26p:tc=aaa+unk:
        !          4851: aaa-28|ann arbor ambassador/28 lines:\
        !          4852:        :li#28:\
        !          4853:        :is=\E7\E[60;0;0;28p\E8:te=\E[60;0;0;28p\E[28;1H\E[K:\
        !          4854:        :ti=\E[H\E[J\E[28;0;0;28p:tc=aaa+unk:
        !          4855: aaa-30-s|aaa-s|ann arbor ambassador/30 lines w/status:\
        !          4856:        :es:hs:\
        !          4857:        :li#29:\
        !          4858:        :ds=\E7\E[60;0;0;30p\E[1;1H\E[K\E[H\E8\r\n\E[K:\
        !          4859:        :fs=\E[>51l:is=\r\n\E[A\E7\E[60;1;0;30p\E8:\
        !          4860:        :te=\E[60;1;0;30p\E[29;1H\E[K:\
        !          4861:        :ti=\E[H\E[J\E[30;1;0;30p\E[30;1H\E[K:\
        !          4862:        :ts=\E[>51h\E[1;%p1%dH\E[2K:tc=aaa+unk:
        !          4863: aaa-30-s-rv|aaa-s-rv|ann arbor ambassador/30 lines+status+reverse video:\
        !          4864:        :tc=aaa+rv:tc=aaa-30-s:
        !          4865: aaa-s-ctxt|aaa-30-s-ctxt|ann arbor ambassador/30 lines+status+save context:\
        !          4866:        :te=\E[60;1;0;30p\E[59;1H\E[K:\
        !          4867:        :ti=\E[30;1H\E[K\E[30;1;0;30p:tc=aaa-30-s:
        !          4868: aaa-s-rv-ctxt|aaa-30-s-rv-ct|ann arbor ambassador/30 lines+status+save context:\
        !          4869:        :te=\E[60;1;0;30p\E[59;1H\E[K:\
        !          4870:        :ti=\E[30;1H\E[K\E[30;1;0;30p:tc=aaa-30-s-rv:
        !          4871: aaa|aaa-30|ambas|ambassador|ann arbor ambassador/30 lines:\
        !          4872:        :li#30:\
        !          4873:        :is=\E7\E[60;0;0;30p\E8:te=\E[60;0;0;30p\E[30;1H\E[K:\
        !          4874:        :ti=\E[H\E[J\E[30;0;0;30p:tc=aaa+unk:
        !          4875: aaa-30-rv|aaa-rv|ann arbor ambassador/30 lines in reverse video:\
        !          4876:        :tc=aaa+rv:tc=aaa-30:
        !          4877: aaa-30-ctxt|aaa-ctxt|ann arbor ambassador/30 lines; saving context:\
        !          4878:        :te=\E[60;0;0;30p\E[60;1H\E[K:ti=\E[30;0;0;30p:tc=aaa-30:
        !          4879: aaa-30-rv-ctxt|aaa-rv-ctxt|ann arbor ambassador/30 lines reverse video; saving context:\
        !          4880:        :te=\E[60;0;0;30p\E[60;1H\E[K:ti=\E[30;0;0;30p:tc=aaa+rv:tc=aaa-30:
        !          4881: aaa-36|ann arbor ambassador/36 lines:\
        !          4882:        :li#36:\
        !          4883:        :is=\E7\E[60;0;0;36p\E8:te=\E[60;0;0;36p\E[36;1H\E[K:\
        !          4884:        :ti=\E[H\E[J\E[36;0;0;36p:tc=aaa+unk:
        !          4885: aaa-36-rv|ann arbor ambassador/36 lines+reverse video:\
        !          4886:        :tc=aaa+rv:tc=aaa-36:
        !          4887: aaa-40|ann arbor ambassador/40 lines:\
        !          4888:        :li#40:\
        !          4889:        :is=\E7\E[60;0;0;40p\E8:te=\E[60;0;0;40p\E[40;1H\E[K:\
        !          4890:        :ti=\E[H\E[J\E[40;0;0;40p:tc=aaa+unk:
        !          4891: aaa-40-rv|ann arbor ambassador/40 lines+reverse video:\
        !          4892:        :tc=aaa+rv:tc=aaa-40:
        !          4893: aaa-48|ann arbor ambassador/48 lines:\
        !          4894:        :li#48:\
        !          4895:        :is=\E7\E[60;0;0;48p\E8:te=\E[60;0;0;48p\E[48;1H\E[K:\
        !          4896:        :ti=\E[H\E[J\E[48;0;0;48p:tc=aaa+unk:
        !          4897: aaa-48-rv|ann arbor ambassador/48 lines+reverse video:\
        !          4898:        :tc=aaa+rv:tc=aaa-48:
        !          4899: aaa-60-s|ann arbor ambassador/59 lines+status:\
        !          4900:        :es:hs:\
        !          4901:        :li#59:\
        !          4902:        :ds=\E7\E[60;0;0;60p\E[1;1H\E[K\E[H\E8\r\n\E[K:\
        !          4903:        :fs=\E[>51l:is=\r\n\E[A\E7\E[60;1;0;60p\E8:\
        !          4904:        :ts=\E[>51h\E[1;%p1%dH\E[2K:tc=aaa+unk:
        !          4905: aaa-60-s-rv|ann arbor ambassador/59 lines+status+reverse video:\
        !          4906:        :tc=aaa+rv:tc=aaa-60-s:
        !          4907: aaa-60-s-rv-dec|ann arbor ambassador/dec mode+59 lines+status+rev video:\
        !          4908:        :tc=aaa+dec:tc=aaa+rv:tc=aaa-60-s:
        !          4909: aaa-60|ann arbor ambassador/60 lines:\
        !          4910:        :li#60:\
        !          4911:        :is=\E7\E[60;0;0;60p\E[1Q\E[m\E[>20;30l\E8:tc=aaa+unk:
        !          4912: aaa-60-rv|ann arbor ambassador/60 lines+reverse video:\
        !          4913:        :tc=aaa+rv:tc=aaa-60:
        !          4914: aaa-db|ann arbor ambassador 30/destructive backspace:\
        !          4915:        :i2=\E[1Q\E[m\E[>20l\E[>30h:le=\E[D:tc=aaa-30:
        !          4916:
        !          4917: guru|guru-33|guru+unk|ann arbor guru/33 lines 80 cols:\
        !          4918:        :li#33:\
        !          4919:        :i2=\E[>59l:is=\E7\E[255;0;0;33;80;80p\E8\E[J:\
        !          4920:        :te=\E[255p\E[255;1H\E[K:ti=\E[33p:vb=\E[>59h\E[>59l:tc=aaa+unk:
        !          4921: guru+rv|guru changes for reverse video:\
        !          4922:        :i2=\E[>59h:vb=\E[>59l\E[>59h:
        !          4923: guru-rv|guru-33-rv|ann arbor guru/33 lines+reverse video:\
        !          4924:        :tc=guru+rv:tc=guru-33:
        !          4925: guru+s|guru status line:\
        !          4926:        :es:hs:\
        !          4927:        :ds=\E7\E[;0p\E[1;1H\E[K\E[H\E8\r\n\E[K:fs=\E[>51l:\
        !          4928:        :te=\E[255;1p\E[255;1H\E[K:\
        !          4929:        :ts=\E[>51h\E[1;%p1%dH\E[2K:
        !          4930: guru-nctxt:\
        !          4931:        :ti=\E[H\E[J\E[33p\E[255;1H\E[K:tc=guru:
        !          4932: guru-s|guru-33-s|ann arbor guru/33 lines+status:\
        !          4933:        :li#32:\
        !          4934:        :is=\r\n\E[A\E7\E[255;1;0;33;80;80p\E8\E[J:\
        !          4935:        :ti=\E[33;1p\E[255;1H\E[K:tc=guru+s:tc=guru+unk:
        !          4936: guru-24:\
        !          4937:        :co#80:li#24:\
        !          4938:        :is=\E7\E[255;0;0;24;80;80p\E8\E[J:ti=\E[24p:tc=guru+unk:
        !          4939: guru-44:\
        !          4940:        :co#97:li#44:\
        !          4941:        :is=\E7\E[255;0;0;44;97;100p\E8\E[J:ti=\E[44p:tc=guru+unk:
        !          4942: guru-44-s|ann arbor guru/44 lines+status:\
        !          4943:        :li#43:\
        !          4944:        :is=\r\n\E[A\E7\E[255;1;0;44;80;80p\E8\E[J:\
        !          4945:        :ti=\E[44;1p\E[255;1H\E[K:tc=guru+s:tc=guru+unk:
        !          4946: guru-76|guru with 76 lines by 89 cols:\
        !          4947:        :co#89:li#76:\
        !          4948:        :is=\E7\E[255;0;0;76;89;100p\E8\E[J:ti=\E[76p:tc=guru+unk:
        !          4949: guru-76-s|ann arbor guru/76 lines+status:\
        !          4950:        :co#89:li#75:\
        !          4951:        :is=\r\n\E[A\E7\E[255;1;0;76;89;100p\E8\E[J:\
        !          4952:        :ti=\E[76;1p\E[255;1H\E[K:tc=guru+s:tc=guru+unk:
        !          4953: guru-76-lp|guru-lp|guru with page bigger than line printer:\
        !          4954:        :co#134:li#76:\
        !          4955:        :is=\E7\E[255;0;0;76;134;134p\E8\E[J:ti=\E[76p:tc=guru+unk:
        !          4956: guru-76-w|guru 76 lines by 178 cols:\
        !          4957:        :co#178:li#76:\
        !          4958:        :is=\E7\E[255;0;0;76;178;178p\E8\E[J:ti=\E[76p:tc=guru+unk:
        !          4959: guru-76-w-s|ann arbor guru/76 lines+status+wide:\
        !          4960:        :co#178:li#75:\
        !          4961:        :is=\r\n\E[A\E7\E[255;1;0;76;178;178p\E8\E[J:\
        !          4962:        :ti=\E[76;1p\E[255;1H\E[K:tc=guru+s:tc=guru+unk:
        !          4963: guru-76-wm|guru 76 lines by 178 cols with 255 cols memory:\
        !          4964:        :co#178:li#76:\
        !          4965:        :is=\E7\E[255;0;0;76;178;255p\E8\E[J:ti=\E[76p:tc=guru+unk:
        !          4966: aaa-rv-unk:\
        !          4967:        :i1=\E[7m\E7\E[H\E9\E8:mb=\E[5;7m:md=\E[1;7m:\
        !          4968:        :me=\E[7m:mk=\E[7;8m:mr=\E[m:\
        !          4969:        :..sa=\E[%?%p1%!%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m:\
        !          4970:        :se=\E[7m:so=\E[m:ue=\E[7m:us=\E[4;7m:
        !          4971:
        !          4972: #### Applied Digital Data Systems (adds)
        !          4973: #
        !          4974: # ADDS itself is long gone.  ADDS was bought by NCR, and the same group made
        !          4975: # ADDS and NCR terminals.  When AT&T and NCR merged, the engineering for
        !          4976: # terminals was merged again.  Then AT&T sold the terminal business to
        !          4977: # SunRiver.  The engineers from Teletype, AT&T terminals, ADDS,
        !          4978: # and NCR (who are still there) are at:
        !          4979: #
        !          4980: #      SunRiver Data Systems
        !          4981: #      100 Marcus Boulevard
        !          4982: #      Hauppauge, NY 117883-762
        !          4983: #      Vox: (800)-231-5445
        !          4984: #      Fax: (516)-342-7378
        !          4985: #
        !          4986: # Their voice mail describes the place as "SunRiver (formerly ADDS)".
        !          4987:
        !          4988: # Regent: lowest common denominator, works on all regents.
        !          4989: # (regent: renamed ":bc:" to ":le:" -- esr)
        !          4990: regent|Adds Regent Series:\
        !          4991:        :am:bs:\
        !          4992:        :co#80:li#24:\
        !          4993:        :bl=^G:cl=^L:cr=^M:do=^J:ho=\EY  :le=^U:ll=^A:nd=^F:\
        !          4994:        :sf=^J:up=^Z:
        !          4995: # Regent 100 has a bug where if computer sends escape when user is holding
        !          4996: # down shift key it gets confused, so we avoid escape.
        !          4997: regent100|Adds Regent 100:\
        !          4998:        :sg#1:ug#1:\
        !          4999:        :bl=^G:cm=\013%+ %B\020%.:k0=^B1\r:k1=^B2\r:k2=^B3\r:\
        !          5000:        :k3=^B4\r:k4=^B5\r:k5=^B6\r:k6=^B7\r:k7=^B8\r:\
        !          5001:        :se=\E0@:so=\E0P:ue=\E0@:us=\E0`:tc=regent:
        !          5002: regent20|Adds Regent 20:\
        !          5003:        :bl=^G:cd=\Ek:ce=\EK:cm=\EY%+ %+ :tc=regent:
        !          5004: regent25|Adds Regent 25:\
        !          5005:        :bl=^G:kd=^J:kh=^A:kl=^U:kr=^F:ku=^Z:tc=regent20:
        !          5006: regent40|Adds Regent 40:\
        !          5007:        :sg#1:ug#1:\
        !          5008:        :al=\EM:bl=^G:dl=\El:k0=^B1\r:k1=^B2\r:k2=^B3\r:\
        !          5009:        :k3=^B4\r:k4=^B5\r:k5=^B6\r:k6=^B7\r:k7=^B8\r:\
        !          5010:        :se=\E0@:so=\E0P:ue=\E0@:us=\E0`:tc=regent25:
        !          5011: regent40+|Adds Regent 40+:\
        !          5012:        :is=\EB:tc=regent40:
        !          5013: # (regent60: removed obsolete ":ko=dc,im,ei:" -- esr)
        !          5014: regent60|regent200|Adds Regent 60:\
        !          5015:        :dc=\EE:ei=\EF:im=\EF:is=\EV\EB:se=\ER\E0@\EV:\
        !          5016:        :so=\ER\E0P\EV:tc=regent40+:
        !          5017: regent60na|regent 60 w/no arrow keys:\
        !          5018:        :kd@:kl@:kr@:ku@:tc=regent60:
        !          5019: # From: <edward@onyx.berkeley.edu> Thu Jul  9 09:27:33 1981
        !          5020: # (viewpoint: added kcuf1, kf* and dl1 capabilities -- esr)
        !          5021: viewpoint|addsviewpoint|adds viewpoint:\
        !          5022:        :am:bs:\
        !          5023:        :co#80:li#24:\
        !          5024:        :bl=^G:cd=\Ek:ce=\EK:cl=^L:cm=\EY%+ %+ :cr=^M:dl=\El:\
        !          5025:        :do=^J:is=\017\E0`:k0=^B1:k2=^B2:k3=^B!:k4=^B":\
        !          5026:        :k5=^B#:kd=^J:kh=^A:kl=^U:kr=^F:ku=^Z:le=^H:ll=^A:\
        !          5027:        :nd=^F:se=^O:sf=^J:so=^N:ue=^O:up=^Z:us=^N:\
        !          5028:        :ve=\017\E0`:vs=\017\E0P:
        !          5029: screwpoint|adds viewpoint with ^O bug:\
        !          5030:        :am:bs:\
        !          5031:        :co#80:li#24:\
        !          5032:        :bl=^G:cd=\Ek:ce=\EK:cl=\014:cm=\EY%+ %+ :cr=^M:\
        !          5033:        :dl=\El:do=^J:is=^G:kd=^J:kh=^A:kl=^U:kr=^F:ku=^Z:\
        !          5034:        :le=^H:ll=^A:nd=^F:sf=^J:up=^Z:
        !          5035: fviewpoint|flaky adds viewpoint with ^O bug:\
        !          5036:        :am:bs:\
        !          5037:        :co#80:li#24:\
        !          5038:        :bl=^G:cd=\Ek:ce=\EK:cl=\014:cm=\EY%+ %+ :cr=^M:\
        !          5039:        :dl=\El:do=^J:is=^G:kd=^J:kh=^A:kl=^U:kr=^F:ku=^Z:\
        !          5040:        :le=^H:ll=^A:nd=^F:sf=^J:up=^Z:
        !          5041: # From: Jay S. Rouman <jsr@dexter.mi.org> 5 Jul 92
        !          5042: # The civis/cnorm/sgr/sgr0 strings were added by ESR from specs.
        !          5043: # Theory; the 3a+ wants \E0%c to set highlights, where normal=01000000,
        !          5044: # underline=01100000, rev=01010000, blink=01000010,dim=01000001,
        !          5045: # invis=01000100 and %c is the logical or of desired attributes.
        !          5046: # There is also a `tag bit' enabling attributes, set by \E) and unset by \E(.
        !          5047: vp3a+|viewpoint3a+|adds viewpoint 3a+:\
        !          5048:        :am:bw:\
        !          5049:        :co#80:it#8:li#24:\
        !          5050:        :cd=\EY:ce=\ET:cl=\E*:cm=\E=%+ %+ :cr=^M:do=^J:ho=^^:\
        !          5051:        :kb=^H:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:le=^H:me=\E(:\
        !          5052:        :nd=^L:nw=^M^J:\
        !          5053:        :..sa=\E0%'@'%?%p1%tQ%|%;%?%p2%t%'`'%|%;%?%p3%tP%|%;%?%p4%t%{2}%|%;%?%p5%t%{1}%|%;%?%p7%tD%|%;%c\E):\
        !          5054:        :se=\E(:sf=^J:so=\E0Q\E):ta=^I:up=^K:ve=^X:vi=^W:
        !          5055: vp60|viewpoint60|addsviewpoint60|adds viewpoint60:\
        !          5056:        :tc=regent40:
        !          5057: #
        !          5058: # adds viewpoint 90 - from cornell
        !          5059: # Note:  emacs sends ei occasionally to insure the terminal is out of
        !          5060: #        insert mode. This unfortunately puts the viewpoint90 IN insert
        !          5061: #        mode.  A hack to get around this is :ic=\EF \EF^U:.  (Also,
        !          5062: #   -    :ei=:im=: must be present in the termcap translation.)
        !          5063: #   -    :xs: indicates glitch that attributes stick to location
        !          5064: #   -    :ms: means it's safe to move in standout mode
        !          5065: #   -    :cl=\EG\Ek: clears screen and visual attributes without affecting
        !          5066: #               the status line
        !          5067: # Function key and label capabilities merged in from SCO.
        !          5068: vp90|viewpoint90|adds viewpoint 90:\
        !          5069:        :bs:bw:ms:xs:\
        !          5070:        :co#80:li#24:\
        !          5071:        :cd=\Ek:ce=\EK:cl=\EG\Ek:cm=\EY%+ %+ :dc=\EE:dl=\El:\
        !          5072:        :do=^J:ei=:ho=\EY  :ic=\EF \EF\025:im=:k0=^B1\r:\
        !          5073:        :k1=^B2\r:k2=^B3\r:k3=^B4\r:k4=^B5\r:k5=^B6\r:\
        !          5074:        :k6=^B7\r:k7=^B8\r:k8=^B9\r:k9=^B\072\r:kb=^H:kd=^J:\
        !          5075:        :kh=^A:kl=^U:kr=^F:ku=^Z:ll=^A:nd=^F:se=\ER\E0@\EV:\
        !          5076:        :sf=^J:so=\ER\E0Q\EV:ta=^I:ue=\ER\E0@\EV:up=^Z:\
        !          5077:        :us=\ER\E0`\EV:
        !          5078: # Note: if return acts weird on a980, check internal switch #2
        !          5079: # on the top chip on the CONTROL pc board.
        !          5080: adds980|a980|adds consul 980:\
        !          5081:        :am:bs:\
        !          5082:        :co#80:li#24:\
        !          5083:        :al=\E\016:bl=^G:cl=\014\013@:cm=\013%+@\E\005%2:\
        !          5084:        :cr=^M:dl=\E\017:do=^J:k0=\E0:k1=\E1:k2=\E2:k3=\E3:\
        !          5085:        :k4=\E4:k5=\E5:k6=\E6:k7=\E7:k8=\E8:k9=\E9:le=^H:\
        !          5086:        :nd=\E^E01:se=^O:sf=^J:so=^Y^^^N:
        !          5087:
        !          5088: #### C. Itoh Electronics
        !          5089: #
        !          5090: # As of 1995 these people no longer make terminals (they're still in the
        !          5091: # printer business).  Their terminals were all clones of the DEC VT series.
        !          5092: # They're located in Orange County, CA.
        !          5093: #
        !          5094:
        !          5095: # CIT 80  - vt-52 emulator, the termcap has been modified to remove
        !          5096: #           the delay times and do an auto tab set rather than the indirect
        !          5097: #           file used in vt100.
        !          5098: cit80|cit-80|citoh 80:\
        !          5099:        :am:bs:\
        !          5100:        :co#80:li#24:\
        !          5101:        :cd=\EJ:ce=\EK:cl=\E[;H\EJ:cm=\E[%i%2;%2H:cr=^M:\
        !          5102:        :ff=^L:is=\E>:kd=\EOB:ke=\E[?1l\E>:kl=\EOD:kr=\EOC:\
        !          5103:        :ks=\E[?1h\E=:ku=\EOA:nd=\E[C:sf=^J:up=\E[A:
        !          5104: # Alternate cit101 (vt100 em) file used in vt100.
        !          5105: #          Uses 23 lines so can run citsys (like h19sys).
        !          5106: #      24 May 85 (mtxinu!sybase!tim) - removed 2-byte limit on :cm: cursor
        !          5107: #        coordinates otherwise there is garbling on long lines in
        !          5108: #        co#132 mode; also added support for multipage memory on the Itoh.
        !          5109: # From: Tim Wood <mtxinu!sybase!tim> Fri Sep 27 09:39:12 PDT 1985
        !          5110: citc|Citoh fast vt100:\
        !          5111:        :am:bs:xn:\
        !          5112:        :co#80:li#23:\
        !          5113:        :al=\E[L:cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\
        !          5114:        :cm=\E[%i%d;%dH:dc=\E[P:dl=\E[M:ei=:ic=\E[@:im=:\
        !          5115:        :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[3g\E[>5g:\
        !          5116:        :kd=\EOB:ke=\E[?1l\E>:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:\
        !          5117:        :ku=\EOA:nd=\E[C:se=\E[m:so=\E[7m:ue=\E[m:up=\E[A:\
        !          5118:        :us=\E[4m:\
        !          5119:        :vb=\E[?5h\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\E[?5l:\
        !          5120:        :ve=\E[V\E8:vs=\E7\E[U:
        !          5121: cita:\
        !          5122:        :am:bs:xn:\
        !          5123:        :co#80:li#23:\
        !          5124:        :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:cm=\E[%i%d;%dH:\
        !          5125:        :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[3g\E[>5g:\
        !          5126:        :kd=\EOB:ke=\E[?1l\E>:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:\
        !          5127:        :ku=\EOA:nd=\E[C:se=\E[m:so=\E[7m:ue=\E[m:up=\E[A:\
        !          5128:        :us=\E[4m:\
        !          5129:        :vb=\E[?5h\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\E[?5l:\
        !          5130:        :ve=\E[V\E8:vs=\E7\E[U:
        !          5131: cit101:\
        !          5132:        :li#24:\
        !          5133:        :vb@:tc=citc:
        !          5134: cit101b:\
        !          5135:        :li#24:\
        !          5136:        :tc=citc:
        !          5137: # The CIT-500 was unusual in that it had a portrait-style display.
        !          5138: # (cit500: mapped ":pt:" to default tabs -- esr)
        !          5139: cit500|cit-500|cit 500:\
        !          5140:        :am:bs:pt:xn:\
        !          5141:        :co#80:li#40:\
        !          5142:        :al=\E[L:cd=50\E[J:ce=3\E[K:cl=50\E[;H\E[2J:\
        !          5143:        :cm=5\E[%i%2;%2H:dc=\E[P:dl=\E[M:do=\ED:\
        !          5144:        :is=\E(B\E)0\E>\E[?3l\E[?7h\E[?8h:k1=\EOP:k2=\EOQ:\
        !          5145:        :k3=\EOR:k4=\EOS:kd=\EOB:ke=\E[?1l\E>:kh=\E[H:\
        !          5146:        :kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:nd=2\E[C:\
        !          5147:        :se=2\E[m:so=2\E[7m:sr=5\EM:ue=2\E[m:up=2\E[A:\
        !          5148:        :us=2\E[4m:
        !          5149:
        !          5150: citoh|ci8510|8510|c.itoh 8510a:\
        !          5151:        :co#80:it#8:\
        !          5152:        :is=\E(009\054017\054025\054033\054041\054049\054057\054065\054073.:\
        !          5153:        :le@:md=\E!:me=\E"\EY:rp=\ER%r%03%.:sr=\Er:ue=\EY:\
        !          5154:        :us=\EX:tc=lpr:
        !          5155: citoh-pica|citoh in pica:\
        !          5156:        :i1=\EN:tc=citoh:
        !          5157: citoh-elite|citoh in elite:\
        !          5158:        :co#96:\
        !          5159:        :i1=\EE:\
        !          5160:        :is=\E(009\054017\054025\054033\054041\054049\054057\054065\054073\054081\054089.:tc=citoh:
        !          5161: citoh-comp|citoh in compressed:\
        !          5162:        :co#136:\
        !          5163:        :i1=\EQ:\
        !          5164:        :is=\E(009\054017\054025\054033\054041\054049\054057\054065\054073\054081\054089\054097\054105\054113\054121\054129.:tc=citoh:
        !          5165: # citoh has infinite cols because we don't want lp ever inserting \n\t**.
        !          5166: citoh-prop|citoh-ps|ips|citoh in proportional spacing mode:\
        !          5167:        :co#32767:\
        !          5168:        :i1=\EP:tc=citoh:
        !          5169: citoh-6lpi|citoh in 6 lines per inch mode:\
        !          5170:        :i2=\EA:tc=citoh:
        !          5171: citoh-8lpi|citoh in 8 lines per inch mode:\
        !          5172:        :li#88:\
        !          5173:        :i2=\EB:tc=citoh:
        !          5174:
        !          5175: #### Control Data (cdc)
        !          5176: #
        !          5177:
        !          5178: cdc456|cdc:\
        !          5179:        :am:bs:\
        !          5180:        :co#80:li#24:\
        !          5181:        :al=\EL:bl=^G:cd=^X:ce=^V:cl=^Y^X:cm=\E1%+ %+ :cr=^M:\
        !          5182:        :dl=\EJ:do=^J:ho=^Y:le=^H:nd=^L:sf=^J:up=^Z:
        !          5183: cdc456tst:\
        !          5184:        :am:bs:\
        !          5185:        :co#80:li#24:\
        !          5186:        :bl=^G:cl=^Y^X:cm=\E1%+ %+ :cr=^M:do=^J:le=^H:sf=^J:
        !          5187:
        !          5188: #### Human Designed Systems (Concept)
        !          5189: #
        !          5190: #      Human Designed Systems
        !          5191: #      400 Fehley Drive
        !          5192: #      King of Prussia, PA 19406
        !          5193: #      Vox: (610)-277-8300
        !          5194: #      Fax: (610)-275-5739
        !          5195: #      Net: support@hds.com
        !          5196: #
        !          5197: # John Martin <john@hds.com> is their termcap expert.  They're mostly out of
        !          5198: # the character-terminal business now (1995) and making X terminals.  In
        !          5199: # particular, the whole `Concept' line described here was discontinued long
        !          5200: # ago.
        !          5201:
        !          5202: # From: <vax135!hpk>  Sat Jun 27 07:41:20 1981
        !          5203: # Extensive changes to c108 by arpavax:eric Feb 1982
        !          5204: # Some unknown person at SCO then translated it to terminfo.
        !          5205: #
        !          5206: # There seem to be a number of different versions of the C108 PROMS
        !          5207: # (with bug fixes in its Z-80 program).
        !          5208: #
        !          5209: # The first one that we had would lock out the keyboard of you
        !          5210: # sent lots of short lines (like /usr/dict/words) at 9600 baud.
        !          5211: # Try that on your C108 and see if it sends a ^S when you type it.
        !          5212: # If so, you have an old version of the PROMs.
        !          5213: #
        !          5214: # You should configure the C108 to send ^S/^Q before running this.
        !          5215: # It is much faster (at 9600 baud) than the c100 because the delays
        !          5216: # are not fixed.
        !          5217: # new status line display entries for c108-8p:
        !          5218: # is3 - init str #3 - setup term for status display -
        !          5219: # set programmer mode, select window 2, define window at last
        !          5220: # line of memory, set bkgnd stat mesg there, select window 0.
        !          5221: #
        !          5222: # tsl - to status line - select window 2, home cursor, erase to
        !          5223: # end-of-window, 1/2 bright on, goto(line#0, col#?)
        !          5224: #
        !          5225: # fsl - from status line - 1/2 bright off, select window 0
        !          5226: #
        !          5227: # dsl - disable status display - set bkgnd status mesg with
        !          5228: # illegal window #
        !          5229: #
        !          5230: # There are probably more function keys that should be added but
        !          5231: # I don't know what they are.
        !          5232: #
        !          5233: c108|concept108|c108-8p|concept108-8p|concept 108 w/8 pages:\
        !          5234:        :i2=\EU\E z"\Ev\001\177 !p\E ;"\E z \Ev  \001\177p\Ep\n:\
        !          5235:        :te=\Ev  \001\177p\Ep\r\n:tc=c108-4p:
        !          5236: c108+acs|alternate charset defns for c108:\
        !          5237:        :ae=\Ej :as=\Ej!:
        !          5238: c108-4p-acs|c108-4p w/ acs:\
        !          5239:        :tc=c108+acs:tc=c108-4p:
        !          5240: c108-8p-acs|c108-8p w/ acs:\
        !          5241:        :tc=c108+acs:tc=c108-8p:
        !          5242: c108-rv-8p-acs|c108-rv-8p w/ acs:\
        !          5243:        :tc=c108+acs:tc=c108-rv-8p:
        !          5244: c108-4p|concept108-4p|concept 108 w/4 pages:\
        !          5245:        :es:hs:xo:\
        !          5246:        :pb@:\
        !          5247:        :..cm=\Ea%p1%?%p1%{95}%>%t\001%{96}%-%;%{32}%+%c%p2%?%p2%{95}%>%t\001%{96}%-%;%{32}%+%c:\
        !          5248:        :cr=^M:dc=\E 1:ds=\E ;\177:fs=\Ee\E z :i1=\EK\E!\E F:\
        !          5249:        :i2=\EU\E z"\Ev\177 !p\E ;"\E z \Ev  \001 p\Ep\n:\
        !          5250:        :sf=^J:te=\Ev  \001 p\Ep\r\n:\
        !          5251:        :ti=\EU\Ev  8p\Ep\r\E\025:\
        !          5252:        :ts=\E z"\E?\E\005\EE\Ea %+ :ve=\Ew:vs=\EW:tc=c100:
        !          5253: c108-rv|c108-rv-8p|concept 108 w/8 pages in reverse video:\
        !          5254:        :te=\Ev  \002 p\Ep\r\n:ti=\EU\Ev  8p\Ep\r:tc=c108-rv-4p:
        !          5255: c108-rv-4p|concept108-rv-4p|concept108rv4p|concept 108 w/4 pages in reverse video:\
        !          5256:        :i1=\Ek:se=\Ee:so=\EE:vb=\EK\Ek:tc=c108-4p:
        !          5257: c108-rv-4p-acs|c108-rv-4p w/ acs:\
        !          5258:        :tc=c108+acs:tc=c108-rv-4p:
        !          5259: c108-na|c108-na-8p|c108-8p-na|concept108-na-|concept108na8p|concept 108 w/8 pages no arrows:\
        !          5260:        :k7=\E;:k8=\E<:k9=\E=:ke@:ks@:tc=c108-8p:
        !          5261: c108-na-acs|c108-na w/ acs:\
        !          5262:        :tc=c108+acs:tc=c108-na:
        !          5263: c108-rv-na|c108-rv-na-8p|c108-8p-rv-na|concept 108 8 pages no arrows rev video:\
        !          5264:        :k7=\E;:k8=\E<:k9=\E=:ke@:ks@:tc=c108-rv-8p:
        !          5265: c108-rv-na-acs|c108-na w/ acs:\
        !          5266:        :tc=c108+acs:tc=c108-rv-na:
        !          5267: c108-w|c108-w-8p|concept108-w-8|concept108-w8p|concept 108 w/8 pages in wide mode:\
        !          5268:        :co#132:\
        !          5269:        :i1=\E F\E":te=\Ev  ^A0\001D\Ep\r\n:\
        !          5270:        :ti=\EU\Ev  8\001D\Ep\r:tc=c108-8p:
        !          5271: c108-w-acs|c108-w w/ acs:\
        !          5272:        :tc=c108+acs:tc=c108-w:
        !          5273:
        !          5274: # Concept 100:
        !          5275: # These have only window relative cursor addressing, not screen
        !          5276: # relative. To get it to work right here, smcup/rmcup (which
        !          5277: # were invented for the concept) lock you into a one page
        !          5278: # window for screen style programs.
        !          5279: #
        !          5280: # To get out of the one page window, we use a clever trick:
        !          5281: # we set the window size to zero ("\Ev    " in rmcup) which the
        !          5282: # terminal recognizes as an error and resets the window to all
        !          5283: # of memory.
        !          5284: #
        !          5285: # This trick works on c100 but does not on c108, sigh.
        !          5286: #
        !          5287: # Some tty drivers use cr3 for concept, others use nl3, hence
        !          5288: # the delays on cr and ind below. This padding is only needed at
        !          5289: # 9600 baud. One or the other is commented out depending on
        !          5290: # local conventions.
        !          5291: #
        !          5292: # 2 ms padding on rmcup isn't always enough. 6 works fine. Maybe
        !          5293: # less than 6 but more than 2 will work.
        !          5294: #
        !          5295: # Note: can't use function keys f7-f10 because they are
        !          5296: # indistinguishable from arrow keys (!), also, del char and
        !          5297: # clear eol use xon/xoff so they probably won't work very well.
        !          5298: #
        !          5299: # Also note that we don't define insrt/del char/delline/eop/send
        !          5300: # because they don't transmit unless we reset them - I figured
        !          5301: # it was a bad idea to clobber their definitions.
        !          5302: #
        !          5303: # The mc5 sequence changes the escape character to ^^ so that
        !          5304: # escapes will be passed through to the printer. Only trouble
        !          5305: # is that ^^ won't be - ^^ was chosen to be unlikely.
        !          5306: # Unfortunately, if you're sending raster bits through to be
        !          5307: # plotted, any character you choose will be likely, so we lose.
        !          5308: #
        !          5309: # \EQ"\EY(^W (send anything from printer to host, for xon/xoff)
        !          5310: # cannot be # in is2 because it will hang a c100 with no printer
        !          5311: # if sent twice.
        !          5312: c100|concept100|concept|c104|c100-4p|hds concept 100:\
        !          5313:        :am:eo:mi:ul:xn:\
        !          5314:        :co#80:li#24:pb#9600:vt#8:\
        !          5315:        :al=\E\022:bl=^G:cd=\E\005:ce=\E\025:cl=\E?\E\005:\
        !          5316:        :cm=\Ea%+ %+ :cr=\r:dc=\E\021:dl=\E\002:do=^J:\
        !          5317:        :ei=\E  :i1=\EK:i2=\Ev    \Ep\n:im=\E^P:ip=:\
        !          5318:        :is=\EU\Ef\E7\E5\E8\El\ENH\E\200\Eo&\200\Eo'\E\Eo!\200\E\007!\E\010A@ \E4#\072"\E\072a\E4#;"\E\072b\E4#<"\E\072c:\
        !          5319:        :k1=\E5:k2=\E6:k3=\E7:k4=\E8:k5=\E9:k6=\E\072a:\
        !          5320:        :k7=\E\072b:k8=\E\072c:kb=^H:kd=\E<:ke=\Ex:kh=\E?:\
        !          5321:        :kl=\E>:kr=\E=:ks=\EX:ku=\E;:le=^H:mb=\EC:me=\EN@:\
        !          5322:        :mh=\EE:mk=\EH:mp=\EI:mr=\ED:nd=\E=:\
        !          5323:        :pf=\036o \E\EQ!\EYP\027:po=\EQ"\EY(\027\EYD\Eo \036:\
        !          5324:        :rp=\Er%.%+ :se=\Ed:sf=^J:so=\ED:ta=\011:\
        !          5325:        :te=\Ev    \Ep\r\n:ti=\EU\Ev  8p\Ep\r\E\025:ue=\Eg:\
        !          5326:        :up=\E;:us=\EG:vb=\Ek\EK:
        !          5327: c100-rv|c100-rv-4p|concept100-rv|c100 rev video:\
        !          5328:        :i1=\Ek:se=\Ee:so=\EE:vb=\EK\Ek:ve@:vs@:tc=c100:
        !          5329: c100-rv-na|c100-rv-4p-na|c100 with no arrows:\
        !          5330:        :ke@:ks@:tc=c100-rv:
        !          5331: oc100|oconcept|c100-1p|old 1 page concept 100:\
        !          5332:        :in:\
        !          5333:        :i3@:tc=c100:
        !          5334:
        !          5335: # ht through el included to specify padding needed in raw mode.
        !          5336: # (untranslatable capabilities removed to fit entry within 1023 bytes)
        !          5337: avt-ns|concept avt no status line:\
        !          5338:        :am:eo:mi:ul:xn:xo:\
        !          5339:        :co#80:it#8:li#24:lm#192:\
        !          5340:        :AL=\E[%dL:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:LE=\E[%dD:\
        !          5341:        :RI=\E[%dC:UP=\E[%dA:ae=\016:al=\E[L:as=\017:bl=^G:\
        !          5342:        :bt=\E[Z:cd=\E[J:ce=\E[K:ch=\E[%+^AG:cl=\E[H\E[J:\
        !          5343:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[2g:\
        !          5344:        :cv=\E[%+^Ad:dc=\E[P:dl=\E[M:do=^J:ei=\E4l:ho=\E[H:\
        !          5345:        :i1=\E[=103l\E[=205l:ic=\E[@:im=\E1:ip=:\
        !          5346:        :is=\E[1*q\E[2!t\E[7!t\E[=4;101;119;122l\E[=107;118;207h\E)1\E[1Q\EW\E[!y\E[!z\E>\E[0\0720\07232!r\E[0*w\E[w\E2\r\n\E[2;27!t:\
        !          5347:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kb=^H:kd=\E[B:\
        !          5348:        :ke=\E[!z\E[0;2u:kh=\E[H:kl=\E[D:kr=\E[C:\
        !          5349:        :ks=\E[1!z\E[0;3u:ku=\E[A:le=^H:ll=\E[24H:mb=\E[5m:\
        !          5350:        :md=\E[1m:me=\E[m:mh=\E[1!{:mk=\E8m:mp=\E[99m:\
        !          5351:        :mr=\E[7m:nd=\E[C:pf=\E[4i:po=\E[5i:ps=\E[0i:rc=\E8:\
        !          5352:        :sc=\E7:se=\E[7!{:sf=\n:so=\E[7m:sr=\EM:st=\EH:\
        !          5353:        :ta=\011:te=\E[w\E2\r\n:ti=\E[=4l\E[1;24w\E2\r:\
        !          5354:        :ue=\E[4!{:up=\E[A:us=\E[4m:ve=\E[=119l:vs=\E[=119h:
        !          5355: avt-rv-ns|concept avt in reverse video mode/no status line:\
        !          5356:        :i1=\E[=103l\E[=205h:vb=\E[=205l\E[=205h:tc=avt-ns:
        !          5357: avt-w-ns|concept avt in 132 column mode/no status line:\
        !          5358:        :i1=\E[=103h\E[=205l:ti=\E[H\E[1;24;1;132w:tc=avt-ns:
        !          5359: avt-w-rv-ns|concept avt in 132 column mode/no status line/reverse video:\
        !          5360:        :i1=\E[=103h\E[=205h:ti=\E[H\E[1;24;1;132w:\
        !          5361:        :vb=\E[=205l\E[=205h:tc=avt-ns:
        !          5362:
        !          5363: # Concept AVT with status line. We get the status line using the
        !          5364: # "Background status line" feature of the terminal. We swipe the
        !          5365: # first line of memory in window 2 for the status line, keeping
        !          5366: # 191 lines of memory and 24 screen lines for regular use.
        !          5367: # The first line is used instead of the last so that this works
        !          5368: # on both 4 and 8 page AVTs. (Note the lm#191 or 192 - this
        !          5369: # assumes an 8 page AVT but lm isn't currently used anywhere.)
        !          5370: #
        !          5371: avt+s|concept avt status line changes:\
        !          5372:        :es:hs:\
        !          5373:        :lm#191:\
        !          5374:        :ds=\E[0*w:fs=\E[1;1!w:\
        !          5375:        :i2=\E[2w\E[2!w\E[1;1;1;80w\E[H\E[2*w\E[1!w\E2\r\n:\
        !          5376:        :te=\E[2w\E2\r\n:ti=\E[2;25w\E2\r:\
        !          5377:        :ts=\E[2;1!w\E[;%p1%dH\E[2K:
        !          5378: avt|avt-s|concept-avt|avt w/80 columns:\
        !          5379:        :tc=avt+s:tc=avt-ns:
        !          5380: avt-rv|avt-rv-s|avt reverse video w/sl:\
        !          5381:        :i1=\E[=103l\E[=205h:vb=\E[=205l\E[=205h:tc=avt+s:tc=avt-ns:
        !          5382: avt-w|avt-w-s|concept avt 132 cols+status:\
        !          5383:        :i1=\E[=103h\E[=205l:ti=\E[H\E[1;24;1;132w:tc=avt+s:tc=avt-ns:
        !          5384: avt-w-rv|avt-w-rv-s|avt wide+status+rv:\
        !          5385:        :i1=\E[=103h\E[=205h:ti=\E[H\E[1;24;1;132w:\
        !          5386:        :vb=\E[=205l\E[=205h:tc=avt+s:tc=avt-ns:
        !          5387:
        !          5388: #### Contel Business Systems.
        !          5389: #
        !          5390:
        !          5391: # Contel c300 and c320 terminals.
        !          5392: contel300|contel320|c300|Contel Business Systems C-300 or C-320:\
        !          5393:        :am:in:xo:\
        !          5394:        :co#80:li#24:sg#1:\
        !          5395:        :al=\EL:bl=^G:cd=\EJ:ce=\EI:cl=\EK:cm=\EX%+ \EY%+ :\
        !          5396:        :cr=^M:ct=\E3:dc=\EO:dl=\EM:do=^J:ei=:ho=\EH:ic=\EN:\
        !          5397:        :im=:ip=:k0=\ERJ:k1=\ERA:k2=\ERB:k3=\ERC:k4=\ERD:\
        !          5398:        :k5=\ERE:k6=\ERF:k7=\ERG:k8=\ERH:k9=\ERI:kb=^H:le=^H:\
        !          5399:        :ll=\EH\EA:nd=\EC:se=\E!\200:sf=^J:so=\E!\r:st=\E1:\
        !          5400:        :up=\EA:vb=\020\002\020\003:
        !          5401: # Contel c301 and c321 terminals.
        !          5402: contel301|contel321|c301|c321|Contel Business Systems C-301 or C-321:\
        !          5403:        :am:in:xo:\
        !          5404:        :co#80:li#24:sg#1:\
        !          5405:        :al=\EL:bl=^G:cd=\EJ:ce=\EI:cl=\EK:cm=\EX%+ \EY%+ :\
        !          5406:        :cr=^M:ct=\E3:dc=\EO:dl=\EM:do=^J:ho=\EH:k0=\ERJ:\
        !          5407:        :k1=\ERA:k2=\ERB:k3=\ERC:k4=\ERD:k5=\ERE:k6=\ERF:\
        !          5408:        :k7=\ERG:k8=\ERH:k9=\ERI:kb=^H:le=^H:ll=\EH\EA:\
        !          5409:        :nd=\EC:se=\E!\200:sf=^J:so=\E!\r:st=\E1:up=\EA:
        !          5410:
        !          5411: #### Data General (dg)
        !          5412: #
        !          5413: # According to James Carlson <carlson@xylogics.com> writing in January 1995,
        !          5414: # the terminals group at Data General was shut down in 1991; all these
        !          5415: # terminals have thus been discontinued.
        !          5416: #
        !          5417:
        !          5418: dg200|data general dasher 200:\
        !          5419:        :NL:am:bw:\
        !          5420:        :co#80:li#24:\
        !          5421:        :bl=^G:ce=^K:cl=^L:cm=\020%r%.%.:cr=^M:do=^Z:ho=^H:\
        !          5422:        :k0=^^z:k1=^^q:k2=^^r:k3=^^s:k4=^^t:k5=^^u:k6=^^v:\
        !          5423:        :k7=^^w:k8=^^x:k9=^^y:kd=^Z:kh=^H:kl=^Y:kr=^X:ku=^W:\
        !          5424:        :le=^Y:nd=^X:nw=^J:se=^^E:sf=^J:so=^^D:ue=^U:up=^W:\
        !          5425:        :us=^T:
        !          5426: #
        !          5427: # dg450 and dg200 from cornell
        !          5428: dg450|dg6134|data general 6134:\
        !          5429:        :bs@:\
        !          5430:        :nd=^X:tc=dg200:
        !          5431: # Note: lesser Dasher terminals will not work with vi because vi insists upon
        !          5432: # having a command to move straight down from any position on the bottom line
        !          5433: # and scroll the screen up, or a direct vertical scroll command.  The 460 and
        !          5434: # above have both, the D210/211, for instance, has neither.  We must use ANSI
        !          5435: # mode rather than DG mode because standard UNIX tty drivers assume that ^H is
        !          5436: # backspace on all terminals.  This is not so in DG mode.
        !          5437: # (dg460-ansi: removed obsolete ":kn#6:"; also removed ":mu=\EW:", on the
        !          5438: # grounds that there is no matching ":ml:"; mapped ":pt:" to default tabs;
        !          5439: # fixed garbled ":k9=\E[00\:z:" capability -- esr)
        !          5440: dg460-ansi|Data General Dasher 460, ANSI-mode:\
        !          5441:        :am:bs:ms:pt:ul:\
        !          5442:        :co#80:li#24:\
        !          5443:        :al=\E[L:cd=\E[J:ce=\E[K:cl=\E[2J:cm=\E[%i%2;%2H:\
        !          5444:        :dc=\E[P:dl=\E[M:do=\E[B:ei=:ho=\E[H:ic=\E[@:im=:\
        !          5445:        :is=^^F@:k0=\E[001z:k1=\E[002z:k2=\E[003z:k3=\E[004z:\
        !          5446:        :k4=\E[005z:k5=\E[006z:k6=\E[007z:k7=\E[008z:\
        !          5447:        :k8=\E[009z:k9=\E[010z:kb=\E[D:kd=\E[B:kh=\E[H:\
        !          5448:        :kl=\E[D:kr=\E[C:ku=\E[A:le=^H:mb=\E[5m:me=\E[0m:\
        !          5449:        :mh=\E[2m:mr=\E[7m:nd=\E[C:nl=\ED:se=\E[0m:sf=\E[S:\
        !          5450:        :so=\E[7m:sr=\E[T:ue=\E[05:up=\E[A:us=\E[4m:
        !          5451: # From: Wayne Throop <mcnc!rti-sel!rtp47!throopw>
        !          5452: # Data General 605x
        !          5453: # Ought to work for a Model 6242, Type D210 as well as a 605x.
        !          5454: # Note that the cursor-down key transmits ^Z.  Job control users, beware!
        !          5455: dg6053|data general 6053:\
        !          5456:        :am:bs:bw:pt:ul:\
        !          5457:        :co#80:li#24:\
        !          5458:        :bl=^G:ce=^K:cl=^L:cm=\020%r%.%.:cr=^M:do=^Z:ho=^H:\
        !          5459:        :is=^R:k0=^^q:k1=^^r:k2=^^s:k3=^^t:k4=^^u:k5=^^v:\
        !          5460:        :k6=^^w:k7=^^x:k8=^^y:kb=^Y:kd=^Z:kh=^H:kl=^Y:kr=^X:\
        !          5461:        :ku=^W:le=^Y:nd=^X:nw=^M^Z:se=\200^^E:\
        !          5462:        :so=\200\200\200\200\200\036D:ta=^I:te=^L:ti=^L^R:\
        !          5463:        :ue=^U:up=^W:us=^T:ve=^L:vs=^L^R:
        !          5464: # From: Peter N. Wan <ihnp4!gatech!gacsr!wan>
        !          5465: # courtesy of Carlos Rucalde of Vantage Software, Inc.
        !          5466: dgd211|Data General d211:\
        !          5467:        :am:bw:\
        !          5468:        :co#80:li#24:\
        !          5469:        :ce=^K:cl=^L:..cm=\020%r%.%.:cr=^M:do=^Z:ho=^H:kb=^Y:\
        !          5470:        :kd=^Z:kh=^H:kl=^Y:kr=^X:ku=^W:le=^Y:nd=^X:nw=^M^Z:\
        !          5471:        :se=00\036E\200/>:so=00\036D\200\200\200\200\200/>:\
        !          5472:        :ta=^I:te=^L:ti=^L^R:ue=^U:up=^W:us=^T:ve=^L:vs=^L^R:
        !          5473: # From: Joan Walter <joanw@BRL.ARPA>
        !          5474: # Data General/One
        !          5475: #  David Holub got the dg1 to work with jove with this termcap
        !          5476: #   by making li#23 and co#78 to comply with obvious terminal
        !          5477: #   capabilities.  Still waiting for documentation.
        !          5478: # Data General/One from  modified DG Dasher DG210/211 (bw removed)
        !          5479: # From: Peter N. Wan <ihnp4!gatech!gacsr!wan>
        !          5480: # courtesy of Carlos Rucalde of Vantage Software, Inc.
        !          5481: dg1|Data General/One:\
        !          5482:        :am:\
        !          5483:        :co#78:li#23:\
        !          5484:        :ce=^K:cl=^L:cm=\020%r%.%.:cr=^M:do=^Z:ho=^H:kb=^Y:\
        !          5485:        :kd=^Z:kh=^H:kl=^Y:kr=^X:ku=^W:le=^Y:nd=^X:nw=^M^Z:\
        !          5486:        :ta=^I:up=^W:
        !          5487:
        !          5488: #### Datamedia (dm)
        !          5489: #
        !          5490:
        !          5491: cs10|colorscan|Datamedia Color Scan 10:\
        !          5492:        :ms:\
        !          5493:        :co#80:li#24:\
        !          5494:        :bl=^G:cd=\E[J:ce=\E[K:cl=\E[;H\E[J:cm=\E[%i%02;%02H:\
        !          5495:        :cr=^M:do=^J:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kd=\E[B:\
        !          5496:        :kl=\E[D:kr=\E[C:ku=\E[A:le=^H:nd=\E[C:se=\E[m:sf=^J:\
        !          5497:        :so=\E[7m:ue=\E[m:up=\E[A:us=\E[4m:
        !          5498: cs10-w|Datamedia Color Scan 10 with 132 columns:\
        !          5499:        :co#132:\
        !          5500:        :cm=\E[%i%02;%03H:tc=cs10:
        !          5501:
        !          5502: # (dm1520: removed obsolete ":ma=^\ ^_^P^YH:";
        !          5503: # mapped ":pt:" to default tabs -- esr)
        !          5504: dm1520|dm1521|datamedia 1520:\
        !          5505:        :am:bs:pt:xn:\
        !          5506:        :co#80:li#24:\
        !          5507:        :bl=^G:cd=^K:ce=^]:cl=^L:cm=\036%r%+ %+ :cr=^M:do=^J:\
        !          5508:        :ho=^Y:kd=^J:kh=^Y:kl=^H:kr=^\:ku=^_:le=^H:nd=^\:\
        !          5509:        :sf=^J:ta=^I:up=^_:
        !          5510: dm2500|datamedia2500|datamedia 2500:\
        !          5511:        :bs:nc:\
        !          5512:        :co#80:li#24:\
        !          5513:        :al=\020\n\030\035\030\035:bl=^G:ce=^W:cl=^^^^\177:\
        !          5514:        :cm=\014%r%n%.%.:dc=\020\010\030\035:\
        !          5515:        :dl=\020\032\030\035:dm=^P:do=^J:ed=^X^]:\
        !          5516:        :ei=\377\377\030\035:ho=^B:ic=\020\034\030\035:im=^P:\
        !          5517:        :le=^H:nd=^\:pc=\377:se=^X^]:sf=^J:so=^N:up=^Z:
        !          5518: # dmchat is like DM2500, but DOES need "all that padding" (jcm 1/31/82)
        !          5519: # also, has a meta-key (:km:)
        !          5520: # From: <goldberger@su-csli.arpa>
        !          5521: # (dmchat: ":MT:" changed to ":km:" -- esr)
        !          5522: dmchat|dmchat version of datamedia 2500:\
        !          5523:        :km:\
        !          5524:        :al=1*\020\n\030\035\030\035:dl=2\020\032\030\035:tc=dm2500:
        !          5525: # (dm3025: ":MT:" changed to ":km:"; mapped ":pt:" to default tabs -- esr)
        !          5526: dm3025|datamedia 3025a:\
        !          5527:        :bs:km:pt:\
        !          5528:        :co#80:li#24:\
        !          5529:        :al=\EP\n\EQ:bl=^G:cd=\EJ:ce=\EK:cl=\EM:\
        !          5530:        :cm=\EY%r%+ %+ :cr=^M:dc=\010:dl=\EP\EA\EQ:dm=\EP:\
        !          5531:        :do=^J:ed=\EQ:ei=\EQ:ho=\EH:im=\EP:ip=:is=\EQ\EU\EV:\
        !          5532:        :le=^H:nd=\EC:se=\EO0:sf=^J:so=\EO1:ta=^I:up=\EA:
        !          5533: # (dm3045: mapped ":pt:" to default tabs -- esr)
        !          5534: dm3045|datamedia 3045a:\
        !          5535:        :am:bs:eo:pt:ul:xn:\
        !          5536:        :co#80:li#24:\
        !          5537:        :bl=^G:cd=\EJ:ce=\EK:cl=\EM:cm=\EY%r%+ %+ :cr=^M:\
        !          5538:        :dc=\EB:do=^J:ei=\EP:ho=\EH:im=\EP:ip=:is=\EU\EV:\
        !          5539:        :k0=\Ey\r:k1=\Ep\r:k2=\Eq\r:k3=\Er\r:k4=\Es\r:\
        !          5540:        :k5=\Et\r:k6=\Eu\r:k7=\Ev\r:k8=\Ew\r:k9=\Ex\r:kh=\EH:\
        !          5541:        :kr=\EC:ku=\EA:le=^H:nd=\EC:pc=\177:sf=^J:ta=^I:\
        !          5542:        :up=\EA:
        !          5543: # dm80/1 is a vt100 lookalike, but it doesn't seem to need any padding.
        !          5544: dm80|dmdt80|dt80|datamedia dt80/1:\
        !          5545:        :cd=\E[J:ce=\E[K:cl=\E[2J\E[H:cm=%i\E[%d;%dH:do=^J:\
        !          5546:        :ho=\E[H:nd=\E[C:pf=\E[4i:po=\E[5i:ps=\E[0i:se=\E[m:\
        !          5547:        :so=\E[7m:sr=\EM:ue=\E[m:up=\E[A:us=\E[4m:tc=vt100:
        !          5548: # except in 132 column mode, where it needs a little padding.
        !          5549: # This is still less padding than the vt100, and you can always turn on
        !          5550: # the ^S/^Q handshaking, so you can use vt100 flavors for things like
        !          5551: # reverse video.
        !          5552: dm80w|dmdt80w|dt80w|datamedia dt80/1 in 132 char mode:\
        !          5553:        :co#132:\
        !          5554:        :cd=20\E[0J:ce=20\E[0K:cl=50\E[H\E[2J:\
        !          5555:        :cm=5\E[%i%d;%dH:do=^J:up=5\E[A:tc=dm80:
        !          5556: # From: Adam Thompson <thompson@xanth.magic.mb.ca> Sept 10 1995
        !          5557: dtx-sas|dt80-sas|Datamedia DT803/DTX for SAS usage:\
        !          5558:        :am:bw:\
        !          5559:        :co#80:li#24:\
        !          5560:        :ae=\EG:al=\EL:as=\EF:bl=^G:cd=^K:ce=^]:cl=^L:\
        !          5561:        :cm=\E=%r%+ %+ :cr=^M:\
        !          5562:        :..cs=\E=%p1%' '%+%c%' '%c\E#1\E=%p2%' '%+%c%' '%c\E#2:\
        !          5563:        :ct=\E'0:dl=\EM:do=\EB:ff=^L:ho=^Y:\
        !          5564:        :is=\E)0\E<\EP\E'0\E$2:kd=^J:kh=^Y:kl=^H:kr=^\:ku=^_:\
        !          5565:        :le=^H:me=^X:mr=\E$2\004:nd=^\:pf=^O:po=^N:se=^X:\
        !          5566:        :sf=\EB:so=\E$2\004:sr=\EI:st=\E'1:ta=^I:up=^_:
        !          5567:
        !          5568: #### Falco
        !          5569: #
        !          5570: #      Falco Data Products
        !          5571: #      440 Potrero Avenue
        !          5572: #      Sunnyvale, CA 940864-196
        !          5573: #      Vox: (800)-325-2648
        !          5574: #      Fax: (408)-745-7860
        !          5575: #      Net: techsup@charm.sys.falco.com
        !          5576: #
        !          5577: # Current Falco models as of 1995 are generally ANSI-compatible and support
        !          5578: # emulations of DEC VT-series, Wyse, and Televideo types.
        !          5579:
        !          5580: # Test version for Falco ts-1. See "arpavax.hickman@ucb" for info
        !          5581: # (falco: mapped ":pt:" to default tabs -- esr)
        !          5582: # This terminal was released around 1983 and was discontinued long ago.
        !          5583: falco|ts1|ts-1|falco ts-1:\
        !          5584:        :am:bs:pt:\
        !          5585:        :co#80:li#24:\
        !          5586:        :al=\EE:bl=^G:cd=\EY:ce=\ET\EG0\010:cl=\E*:\
        !          5587:        :cm=\E=%+ %+ :cr=^M:dc=\EW:dl=\ER:do=^J:ei=\Er:ho=^^:\
        !          5588:        :im=\Eq:is=\Eu\E3:k0=^A0\r:kd=^J:kl=^H:kr=^L:ku=^K:\
        !          5589:        :le=^H:nd=^L:se=\Eg0:sf=^J:so=\Eg1:ta=^I:ue=\Eg0:\
        !          5590:        :up=^K:us=\Eg1:
        !          5591: # (falco-p: mapped ":pt:" to default tabs -- esr)
        !          5592: falco-p|ts1p|ts-1p|falco ts-1 with paging option:\
        !          5593:        :am:bs:da:db:mi:ms:pt:ul:\
        !          5594:        :co#80:li#24:\
        !          5595:        :al=\EE:bl=^G:bt=\EI:cd=\EY:ce=\ET\EG0\010\Eg0:\
        !          5596:        :cl=\E*:cm=\E=%+ %+ :cr=^M:dc=\EW:dl=\ER:do=\E[B:\
        !          5597:        :ei=\Er:im=\Eq:is=\EZ\E3\E_c:kd=\E[B:kh=\E[H:kl=\E[D:\
        !          5598:        :kr=\E[C:ku=\E[A:le=^H:nd=\E[C:se=\Eg0:sf=^J:so=\Eg4:\
        !          5599:        :ta=^I:te=\E_b:ti=\E_d:ue=\Eg0:up=\E[A:us=\Eg1:
        !          5600: ts100|ts100-sp|falco ts100-sp:\
        !          5601:        :am:mi:ms:xn:xo:\
        !          5602:        :co#80:it#8:li#24:vt#3:\
        !          5603:        :DO=\E[%dB:K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:\
        !          5604:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E~E:as=^N:\
        !          5605:        :bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:\
        !          5606:        :cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E~W:dl=\E~R:do=^J:\
        !          5607:        :ei=:ho=\E[H:i1=\E~)\E~ea:ic=\E~Q:im=:k0=\EOy:\
        !          5608:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOt:k6=\EOu:\
        !          5609:        :k7=\EOv:k8=\EOl:k9=\EOw:kb=^H:kd=\EOB:ke=\E[?1l\E>:\
        !          5610:        :kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:mb=\E[5m:\
        !          5611:        :md=\E[1m:me=\E[m\017:mr=\E[7m:nd=\E[C:rc=\E8:\
        !          5612:        :..sa=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;:\
        !          5613:        :sc=\E7:se=\E[m:sf=^J:so=\E[1;7m:sr=\EM:st=\EH:ta=^I:\
        !          5614:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          5615: ts100-ctxt|falco ts-100 saving context:\
        !          5616:        :te=\E~_b:ti=\E~_d\E[2J:tc=ts100:
        !          5617:
        !          5618: #### Florida Computer Graphics
        !          5619: #
        !          5620:
        !          5621: #      Florida Computer Graphics Beacon System, using terminal emulator
        !          5622: #      program "host.com", as provided by FCG.  Entry provided by
        !          5623: #      David Bryant (cbosg!djb) 1/7/83.
        !          5624: #      This description is for an early release of the "host" program.
        !          5625: #      Known bug: ed clears the whole screen, so it's commented out.
        !          5626: #
        !          5627: beacon|FCG Beacon System:\
        !          5628:        :am:da:db:\
        !          5629:        :co#80:li#32:\
        !          5630:        :al=\EE:bl=\ESTART\r\E37\r\EEND\r:ce=\ET:cl=\EZ:\
        !          5631:        :cm=\E=%+ %+ :cr=^M:dc=\EW:dl=\ER:do=^J:ei=:ho=\EH:\
        !          5632:        :ic=\EQ:im=:le=^H:mb=\ESTART\r\E61\0541\r\EEND\r:\
        !          5633:        :me=\ESTART\r\E78\r\E70\0540\r\EEND\r:\
        !          5634:        :mr=\ESTART\r\E59\0541\r\EEND\r:nd=\EV:\
        !          5635:        :se=\ESTART\r\E70\0540\r\EEND\r:sf=^J:\
        !          5636:        :so=\ESTART\r\E70\0546\r\EEND\r:\
        !          5637:        :ti=\ESTART\r\E2\0540\r\E12\r\EEND\r:\
        !          5638:        :ue=\ESTART\r\E60\0540\r\EEND\r:up=\EU:\
        !          5639:        :us=\ESTART\r\E60\0541\r\EEND\r:
        !          5640:
        !          5641: #### Fluke
        !          5642: #
        !          5643:
        !          5644: # The 1720a differences from ANSI: no auto margin, destructive
        !          5645: # tabs, # of lines, funny highlighting and underlining
        !          5646: f1720|f1720a|fluke 1720A:\
        !          5647:        :xt:\
        !          5648:        :co#80:li#16:sg#1:ug#1:\
        !          5649:        :bl=^G:cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:cm=\E[%i%d;%dH:\
        !          5650:        :cr=^M:do=\E[B:is=\E[;H\E[2J:kd=^]:kl=^_:kr=^^:ku=^\:\
        !          5651:        :le=^H:nd=\E[C:se=\E[m:sf=\ED:so=\E[7m:sr=\EM:\
        !          5652:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          5653:
        !          5654: #### Liberty Electronics (Freedom)
        !          5655: #
        !          5656: #      Liberty Electronics
        !          5657: #      48089 Fremont Blvd
        !          5658: #      Fremont CA 94538
        !          5659: #      Vox: (510)-623-6000
        !          5660: #      Fax: (510)-623-7021
        !          5661:
        !          5662: # From: <faletti@berkeley.edu>
        !          5663: f100|freedom|freedom100|freedom model 100:\
        !          5664:        :am:bw:hs:mi:ms:xo:\
        !          5665:        :co#80:li#24:\
        !          5666:        :ae=\E$:al=\EE:as=\E%:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          5667:        :ch=\E]%+ :cl=^Z:cm=\E=%+ %+ :cr=^M:ct=\E3:cv=\E[%+ :\
        !          5668:        :dc=\EW:dl=\ER:do=^J:ds=\Eg\Ef\r:ei=\Er:fs=^M:ho=^^:\
        !          5669:        :im=\Eq:ip=:is=\Eg\Ef\r\Ed:k1=^A@\r:k2=^AA\r:\
        !          5670:        :k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:k7=^AF\r:\
        !          5671:        :k8=^AG\r:k9=^AH\r:kb=^H:kd=^V:kh=^^:kl=^H:kr=^L:\
        !          5672:        :ku=^K:le=^H:nd=^L:se=\EG0:sf=^J:so=\EG4:sr=\Ej:\
        !          5673:        :st=\E1:ta=^I:ts=\Eg\Ef:ue=\EG0:up=^K:us=\EG8:\
        !          5674:        :vb=\Eb\Ed:
        !          5675: f100-rv|freedom-rv|freedom 100 in reverse video:\
        !          5676:        :is=\Eg\Ef\r\Eb:vb=\Ed\Eb:tc=f100:
        !          5677: # The f110 and f200 have problems with vi(1).  They use the ^V
        !          5678: # code for the down cursor key. When kcud1 is defined in terminfo
        !          5679: # as ^V, the Control Character Quoting capability (^V in insert mode)
        !          5680: # is lost! It cannot be remapped in vi because it is necessary to enter
        !          5681: # a ^V to to quote the ^V that is being remapped!!!
        !          5682: #
        !          5683: # f110 users will have to decide whether
        !          5684: # to lose the down cursor key or the quoting capability. We will opt
        !          5685: # initially for leaving the quoting capability out, since use of VI
        !          5686: # is not generally applicable to most interactive applications
        !          5687: #
        !          5688: # The same applies to f200 users, except that another option exists.
        !          5689: # This option has been chosen locally. It will not be distributed unless
        !          5690: # a user runs into this problem and requests assistance. Very few users,
        !          5691: # if any, should run into this problem. The local solution is in
        !          5692: # vifix.local.ti. The f200 has the ability to reprogram the down cursor
        !          5693: # key. The key is reprogrammed to ^J (linefeed). This value is remembered
        !          5694: # in non-volatile RAM, so powering the terminal off and on will not cause
        !          5695: # the change to be lost. The terminfo definition for the f200 is changed
        !          5696: # to identify kcud1 as ^J instead of ^V.
        !          5697: f110|freedom110|Liberty Freedom 110:\
        !          5698:        :am:es:hs:mi:ms:xo:\
        !          5699:        :co#80:it#8:li#24:ws#80:\
        !          5700:        :ae=\E%%:al=\EE:as=\E$:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          5701:        :ch=\E]%+ :cl=^Z:cm=\E=%+ %+ :cr=^M:ct=\E3:cv=\E[%+ :\
        !          5702:        :dc=\EW:dl=\ER:do=^V:ds=\Ef\r:ei=\Er\EO:fs=^M:ho=^^:\
        !          5703:        :k0=^AI\r:k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:\
        !          5704:        :k5=^AD\r:k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:\
        !          5705:        :kd=^V:kl=^H:kr=^L:ku=^K:le=^H:mb=\EG2:md=\EG0:\
        !          5706:        :me=\EG0:mh=\EG@:mk=\EG1:mr=\EG4:nd=^L:pf=\Ea:po=\E`:\
        !          5707:        :se=\EG0:sf=^J:so=\EG<:sr=\EJ\nsmir=\EO\Eq:st=\E1:\
        !          5708:        :ts=\Ef:ue=\EG0:up=^K:us=\EG8:\
        !          5709:        :vb=\Eb\200\200\200\200\Ed:ve=\E.2:vi=\E.1:vs=\E.2:
        !          5710: f110-14|Liberty Freedom 110 14inch:\
        !          5711:        :dc@:tc=f110:
        !          5712: f110-w|Liberty Freedom 110 - 132 cols:\
        !          5713:        :co#132:\
        !          5714:        :tc=f110:
        !          5715: f110-14w|Liberty Freedom 110 14in/132 cols:\
        !          5716:        :co#132:\
        !          5717:        :dc@:tc=f110:
        !          5718: f200|freedom200|Liberty Freedom 200:\
        !          5719:        :am:es:hs:mi:ms:xo:\
        !          5720:        :co#80:it#8:li#24:ws#80:\
        !          5721:        :ae=\E%%:al=\EE:as=\E$:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          5722:        :ch=\E]%+ :cl=^Z:cm=\E=%+ %+ :cr=^M:cs=\Em0%+ %+ :\
        !          5723:        :ct=\E3:cv=\E[%+ :dc=\EW:dl=\ER:do=^V:ds=\Ef\r:\
        !          5724:        :ei=\Er:fs=^M:ho=^^:im=\Eq:k0=^AI\r:k1=^A@\r:\
        !          5725:        :k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
        !          5726:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^V:kl=^H:kr=^L:\
        !          5727:        :ku=^K:le=^H:mb=\EG2:md=\EG0:me=\EG0:mh=\EG@:mk=\EG1:\
        !          5728:        :mr=\EG4:nd=^L:pf=\Ea:po=\E`:se=\EG0:sf=^J:so=\EG<:\
        !          5729:        :sr=\EJ:st=\E1:ts=\Ef:ue=\EG0:up=^K:us=\EG8:\
        !          5730:        :vb=\Eo\200\200\200\200\200\200\200\200\200\200\200\200\200\200\200\En:\
        !          5731:        :ve=\E.1:vi=\E.0:vs=\E.1:
        !          5732: f200-w|Liberty Freedom 200 - 132 cols:\
        !          5733:        :co#132:\
        !          5734:        :tc=f200:
        !          5735: f200vi|Liberty Freedom 200 for vi:\
        !          5736:        :am:es:hs:mi:ms:xo:\
        !          5737:        :co#80:it#8:li#24:ws#80:\
        !          5738:        :ae=\E%%:al=\EE:as=\E$:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          5739:        :ch=\E]%+ :cl=^Z:cm=\E=%+ %+ :cr=^M:cs=\Em0%+ %+ :\
        !          5740:        :ct=\E3:cv=\E[%+ :dc=\EW:dl=\ER:do=^V:ds=\Ef\r:\
        !          5741:        :ei=\Er:fs=^M:ho=^^:im=\Eq:k0=^AI\r:k1=^A@\r:\
        !          5742:        :k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
        !          5743:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^J:kl=^H:kr=^L:\
        !          5744:        :ku=^K:le=^H:mb=\EG2:md=\EG0:me=\EG0:mh=\EG@:mk=\EG1:\
        !          5745:        :mr=\EG4:nd=^L:pf=\Ea:po=\E`:se=\EG0:sf=^J:so=\EG<:\
        !          5746:        :sr=\EJ:st=\E1:ts=\Ef:ue=\EG0:up=^K:us=\EG8:\
        !          5747:        :vb=\Eb\200\200\200\200\Ed:ve=\E.1:vi=\E.0:vs=\E.1:
        !          5748: f200vi-w|Liberty Freedom 200 - 132 cols for vi:\
        !          5749:        :co#132:\
        !          5750:        :tc=f200vi:
        !          5751:
        !          5752: #### GraphOn (go)
        !          5753: #
        !          5754: #      Graphon Corporation
        !          5755: #      544 Division Street
        !          5756: #      Campbell, CA 95008
        !          5757: #      Vox: (408)-370-4080
        !          5758: #      Fax: (408)-370-5047
        !          5759: #      Net: troy@graphon.com (Troy Morrison)
        !          5760: #
        !          5761: #
        !          5762: # The go140 and go225 have been discontinued.  GraphOn now makes X terminals,
        !          5763: # including one odd hybrid that starts out life on power-up as a character
        !          5764: # terminal, than can be switched to X graphics mode (driven over the serial
        !          5765: # line) by an escape sequence.  No info on this beast yet.
        !          5766:
        !          5767: # (go140: mapped ":pt:" to default tabs -- esr)
        !          5768: go140|graphon go-140:\
        !          5769:        :bs:pt:\
        !          5770:        :co#80:li#24:\
        !          5771:        :al=\E[L:cd=10\E[J:ce=\E[K:cl=10\E[;H\E[2J:\
        !          5772:        :cm=\E[%i%2;%2H:dc=\E[P:dl=\E[M:ei=\E[4l:\
        !          5773:        :if=/usr/share/tabset/vt100:im=\E[4h:\
        !          5774:        :is=\E<\E=\E[?3l\E[?7l\E(B\E[J\E7\E[;r\E8\E[m\E[q:\
        !          5775:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kd=\EOB:\
        !          5776:        :ke=\E[?1l\E>:kh=\E[H:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:\
        !          5777:        :ku=\EOA:nd=\E[C:se=\E[m:so=\E[7m:sr=\EM:ue=\E[m:\
        !          5778:        :up=\E[A:us=\E[4m:
        !          5779: go140w|graphon go-140 in 132 column mode:\
        !          5780:        :co#132:\
        !          5781:        :is=\E<\E=\E[?3h\E[?7h\E(B\E[J\E7\E[;r\E8\E[m\E[q:tc=go140:
        !          5782: # Hacked up vt200 termcap to handle GO-225/VT220
        !          5783: # From: <edm@nwnexus.WA.COM>
        !          5784: # (go225: mapped ":pt:" to default tabs -- esr)
        !          5785: go225|go-225|Graphon 225:\
        !          5786:        :am:bs:mi:pt:xn:\
        !          5787:        :co#80:li#25:vt#3:\
        !          5788:        :al=\E[L:cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:\
        !          5789:        :cs=\E[%i%d;%dr:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:\
        !          5790:        :ho=\E[H:im=\E[4h:\
        !          5791:        :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:k1=\EOP:\
        !          5792:        :k2=\EOQ:k3=\EOR:k4=\EOS:kb=^H:kd=\E[B:ke=\E>:\
        !          5793:        :kh=\E[H:kl=\E[D:kr=\E[C:ks=\E=:ku=\E[A:le=^H:\
        !          5794:        :mb=\E[5m:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:rc=\E8:\
        !          5795:        :rs=\E[!p\E[?7h\E[2;1;1#w:sc=\E7:se=\E[27m:sf=\ED:\
        !          5796:        :so=\E[7m:sr=\EM:te=\E[!p\E[?7h\E[2;1;1#w:\
        !          5797:        :ti=\E[2;0#w\E[1;25r:ue=\E[24m:up=\E[A:us=\E[4m:
        !          5798:
        !          5799: #### Harris (Beehive)
        !          5800: #
        !          5801: # Bletch.  These guys shared the Terminal Brain Damage laurels with Hazeltine.
        !          5802: # Their terminal group is ancient history now (1995) though the parent
        !          5803: # company is still in business.
        !          5804: #
        !          5805:
        !          5806: # Beehive documentation is undated and marked Preliminary and has no figures
        !          5807: # so we must have early Superbee2 (Model 600, according to phone conversation
        !          5808: # with mfr.). It has proved reliable except for some missing padding
        !          5809: # (notably after \EK and nl at bottom of screen).
        !          5810: #
        !          5811: # The key idea is that AEP mode is poison for cup & that US's in
        !          5812: # the local memory should be avoided like the plague. That means
        !          5813: # that the 2048 character local buffer is used as 25 lines of 80
        !          5814: # characters, period. No scrolling local memory, folks. It also
        !          5815: # appears that we cannot use naked INS LINE feature since it uses
        !          5816: # US. The sbi fakes il1 with an 80-space insert that may be too
        !          5817: # slow at low speeds; also spaces get converted to \040 which is
        !          5818: # too long for some programs (not vi).  DEL LINE is ok but slow.
        !          5819: #
        !          5820: # The nl string is designed for last line of screen ONLY; cup to
        !          5821: # 25th line corrects the motion inherent in scrolling to Page 1.
        !          5822: #
        !          5823: # There is one understood bug. It is that the screen appears to
        !          5824: # pop to a new (blank) page after a nel, or leave a half-line
        !          5825: # elipsis to a quad that is the extra 48 memory locations. The
        !          5826: # data received is dumped into memory but not displayed.  Not to
        !          5827: # worry if cup is being used; the lines not displayed will be,
        !          5828: # whenever the cursor is moved up there. Since cup is addressed
        !          5829: # relative to MEMORY of window, nothing is lost; but beware of
        !          5830: # relative cursor motion (cuu1,cud1,cuf1,cub1). Recommended, therefore,
        !          5831: # is setenv MORE -c .
        !          5832: #
        !          5833: # WARNING: Not all features tested.
        !          5834: #
        !          5835: # Timings are assembled from 3 sources. Some timings may reflect
        !          5836: # SB2/Model 300 that were used if more conservative.
        !          5837: # Tested on a Model 600 at 1200 and 9600 bd.
        !          5838: #
        !          5839: # The BACKSPACEkb option is cute. The NEWLINE key, so cleverly
        !          5840: # placed on the keyboard and useless because of AEP, is made
        !          5841: # into a backspace key. In use ESC must be pressed twice (to send)
        !          5842: # and sending ^C must be prefixed by ESC to avoid that wierd
        !          5843: # transmit mode associated with ENTER key.
        !          5844: #
        !          5845: # IF TERMINAL EVER GOES CATATONIC with the cursor buzzing across
        !          5846: # the screen, then it has dropped into ENTER mode; hit
        !          5847: # RESET--ONLINE--!tset.
        !          5848: #
        !          5849: # As delivered this machine has a FATAL feature that will throw
        !          5850: # it into that strange transmit state (SPOW) if the space bar is
        !          5851: # hit after a CR is received, but before receiving a LF (or a
        !          5852: # few others).
        !          5853: #
        !          5854: # The circuits MUST be modified to eliminate the SPOW latch.
        !          5855: # This is done by strapping on chip A46 of the I/O board; cut
        !          5856: # the p.c. connection to Pin 5 and strap Pin 5 to Pin 8 of that
        !          5857: # chip. This mod has been checked out on a Mod 600 of Superbee II.
        !          5858: # With this modification absurdly high timings on cr are
        !          5859: # unnecessary.
        !          5860: #
        !          5861: # NOTE WELL that the rear panel switch should be set to CR/LF,
        !          5862: # not AEP!
        !          5863: #
        !          5864: sb1|beehive superbee:\
        !          5865:        :am:bw:da:db:mi:ul:xb:\
        !          5866:        :co#80:li#25:sg#1:ug#1:\
        !          5867:        :al=\EN\EL\EQ                                                                                \EP \EO\ER\EA:\
        !          5868:        :bl=^G:bt=\E`:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EF%r%03%03:\
        !          5869:        :cr=\r:ct=\E3:dc=\EP:dl=\EM:do=^J:ei=\ER:ho=\EH:\
        !          5870:        :im=\EQ\EO:is=\EE\EX\EZ\EO\Eb\Eg\ER:k0=\E2:k1=\Ep:\
        !          5871:        :k2=\Eq:k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:k8=\Ew:\
        !          5872:        :k9=\E1:kb=^_:kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:\
        !          5873:        :le=^H:nd=\EC:se=\E_3:sf=^J:so=\E_1:st=\E1:ta=^I:\
        !          5874:        :ti=\EO:ue=\E_3:up=\EA:us=\E_0:
        !          5875: sbi|superbee|beehive superbee at Indiana U.:\
        !          5876:        :xb:\
        !          5877:        :al=1\EN\EL\EQ \EP \EO\ER\EA:cr=\r:tc=sb1:
        !          5878: # Alternate (older) description of Superbee - f1=escape, f2=^C.
        !          5879: # Note: there are at least 3 kinds of superbees in the world.  The sb1
        !          5880: # holds onto escapes and botches ^C's.  The sb2 is the best of the 3.
        !          5881: # The sb3 puts garbage on the bottom of the screen when you scroll with
        !          5882: # the switch in the back set to CRLF instead of AEP.  This description
        !          5883: # is tested on the sb2 but should work on all with either switch setting.
        !          5884: # The f1/f2 business is for the sb1 and the xsb can be taken out for
        !          5885: # the other two if you want to try to hit that tiny escape key.
        !          5886: # This description is tricky: being able to use cup depends on there being
        !          5887: # 2048 bytes of memory and the hairy nl string.
        !          5888: superbee-xsb|beehive super bee:\
        !          5889:        :am:bs:da:db:pt:xb:\
        !          5890:        :co#80:dC#10:it#8:li#25:\
        !          5891:        :cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EF%r%3%3:cr=\r:ct=\E3:\
        !          5892:        :dc=\EP:dl=\EM:do=^J:ho=\EH:is=\EH\EJ:k1=\Ep:k2=\Eq:\
        !          5893:        :k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:k8=\Ew:kd=\EB:\
        !          5894:        :kh=\EH:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:\
        !          5895:        :nl=\n\200\200\200\n\200\200\200\EA\EK\200\200\200\ET\ET:\
        !          5896:        :se=\E_3:\
        !          5897:        :sf=\n\200\200\200\n\200\200\200\EA\EK\200\200\200\ET\ET:\
        !          5898:        :so=\E_1:st=\E1:up=\EA:ve=^J:
        !          5899: # This loses on lines > 80 chars long, use at your own risk
        !          5900: superbeeic|super bee with insert char:\
        !          5901:        :ei=\ER:ic=:im=\EQ:tc=superbee-xsb:
        !          5902: sb2|sb3|fixed superbee:\
        !          5903:        :xb@:\
        !          5904:        :tc=superbee:
        !          5905:
        !          5906: # Reports are that most of these Beehive entries (except superbee) have not
        !          5907: # been tested and do not work right.  :se: is a trouble spot.  Be warned.
        !          5908:
        !          5909: # (bee: removed obsolete ":ko=al,bt,ce,cl,dc,dl,ei,ho,ic,im:" -- esr)
        !          5910: beehive|bee|harris beehive:\
        !          5911:        :am:bs:mi:\
        !          5912:        :co#80:li#24:\
        !          5913:        :al=\EL:bt=\E>:cd=\EJ:ce=\EK:cl=\EE:cm=\EF%+ %+ :\
        !          5914:        :dc=\EP:dl=\EM:do=\EB:ei=\E@:ho=\EH:ic=:im=\EQ:kb=^H:\
        !          5915:        :kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:nd=\EC:se=\Ed@:\
        !          5916:        :so=\EdP:ue=\Ed@:up=\EA:us=\Ed`:
        !          5917: # set tab is ^F, clear (one) tab is ^V, no way to clear all tabs.
        !          5918: # good grief - does this entry make sg/ug when it doesn't have to?
        !          5919: # look at those spaces in se/so.  Seems strange to me...
        !          5920: # (bh3m: mapped ":pt:" to default tabs -- esr)
        !          5921: beehive3|bh3m|beehiveIIIm:\
        !          5922:        :am:bs:pt:\
        !          5923:        :co#80:li#20:\
        !          5924:        :al=\023:bl=^G:cd=^R:ce=^P:cl=^E^R:cr=^M:dl=\021:\
        !          5925:        :do=^J:ho=^E:if=/usr/share/tabset/beehive:le=^H:\
        !          5926:        :ll=^E^K:nd=^L:se= ^_:sf=^J:so=^] :ta=^I:up=^K:
        !          5927: beehive4|bh4|beehive 4:\
        !          5928:        :am:\
        !          5929:        :co#80:li#24:\
        !          5930:        :bl=^G:cd=\EJ:ce=\EK:cl=\EE:cr=^M:do=^J:ho=\EH:\
        !          5931:        :le=\ED:nd=\EC:sf=^J:up=\EA:
        !          5932: # (microb: mapped ":pt:" to default tabs -- esr)
        !          5933: microb|microbee|micro bee series:\
        !          5934:        :am:bs:pt:\
        !          5935:        :co#80:li#24:\
        !          5936:        :bl=^G:cd=\EJ:ce=\EK:cl=\EE:cm=\EF%+ %+ :cr=^M:do=^J:\
        !          5937:        :k1=\Ep:k2=\Eq:k3=\Er:k4=\Es:k5=\Et:k6=\Eu:k7=\Ev:\
        !          5938:        :k8=\Ew:k9=\Ex:kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:\
        !          5939:        :le=^H:nd=\EC:se=\Ed@ :sf=^J:so= \EdP:ta=^I:ue=\Ed@:\
        !          5940:        :up=\EA:us=\Ed`:
        !          5941:
        !          5942: # 8675, 8686, and bee from Cyrus Rahman
        !          5943: # (8675: changed k10, k11...k16 to k;, F1...F6 -- esr)
        !          5944: ha8675|harris 8675:\
        !          5945:        :is=\ES\E#\E*\Eh\Em\E?\E1\E9\E@\EX\EU:k1=^F:k2=^P:\
        !          5946:        :k3=^N:k4=^V:k5=^J:k6=^T:k7=^H:k8=\177:k9=\Ee:tc=bee:
        !          5947: # (8686: changed k10, k11...k16 to k;, F1...F6; fixed broken continuation
        !          5948: # in :is: -- esr)
        !          5949: ha8686|harris 8686:\
        !          5950:        :is=\ES\E#\E*\Eh\Em\E?\E1\E9\E@\EX\EU\E"*Z01\E"8F35021B7C83#\E"8F45021B7D83#\E"8F55021B7E83#\E"8F65021B7F83#\E"8F75021B7383#\E"8F851BD7#\E"8F95021B7083#\E"8FA5021B7183#\E"8FB5021B7283#:\
        !          5951:        :k1=\002\Ep\003:k2=\002\Eq\003:k3=\002\Er\003:\
        !          5952:        :k4=\002\Es\003:k5=\E3:k6=\EI:k7=\ER:k8=\EJ:k9=\E(:tc=bee:
        !          5953:
        !          5954: #### Hazeltine
        !          5955: #
        !          5956: # Hazeltine appears to be out of the business now (1995).  These guys were
        !          5957: # co-owners of the Terminal Brain Damage Hall Of Fame along with Harris.
        !          5958: # Good riddance.
        !          5959: #
        !          5960: # The ony contact information I have dates from 1993 and is:
        !          5961: #
        !          5962: # Customer Service Division
        !          5963: # 15 Law Drive
        !          5964: # P.O. Box 2076
        !          5965: # Fairfield, NJ 07007-2078
        !          5966: #
        !          5967: # Since :nd: is blank, when you want to erase something you
        !          5968: # are out of luck.  You will have to do ^L's a lot to
        !          5969: # redraw the screen.  h1000 is untested.  It doesn't work in
        !          5970: # vi - this terminal is too dumb for even vi.  (The code is
        !          5971: # there but it isn't debugged for this case.)
        !          5972: h1000|hazeltine 1000:\
        !          5973:        :bs:\
        !          5974:        :co#80:li#12:\
        !          5975:        :bl=^G:cl=^L:cr=^M:do=^J:ho=^K:le=^H:nd= :sf=^J:
        !          5976: # From: <cbosg!ucbvax!pur-ee!cincy!chris> Thu Aug 20 09:09:18 1981
        !          5977: h1420|hazeltine 1420:\
        !          5978:        :am:bs:\
        !          5979:        :co#80:li#24:\
        !          5980:        :al=\E^Z:bl=^G:cd=\E^X:ce=\E^O:cl=\E^\:\
        !          5981:        :cm=\E\021%r%.%+ :cr=^M:dl=\E^S:do=^J:le=^H:nd=^P:\
        !          5982:        :se=\E^Y:sf=^J:so=\E^_:ta=^N:up=\E^L:
        !          5983: # New "safe" cursor movement (11/87) from cgs@umd5.umd.edu.  Prevents freakout
        !          5984: # with out-of-range args and tn3270.  No hz since it needs to receive ~'s.
        !          5985: h1500|hazeltine 1500:\
        !          5986:        :am:bs:hz:\
        !          5987:        :co#80:li#24:\
        !          5988:        :al=~\032:bl=^G:cd=~\030:ce=~^O:cl=~^\:\
        !          5989:        :cm=~\021%r%>^^ %+`%+`:cr=^M:dl=~\023:do=~^K:ho=~^R:\
        !          5990:        :kd=^J:kh=~^R:kl=^H:kr=^P:ku=~^L:le=^H:nd=^P:se=~^Y:\
        !          5991:        :sf=^J:so=~^_:up=~^L:
        !          5992: # h1510 assumed to be in sane escape mode.  Else use h1500.
        !          5993: # (h1510: early versions of this entry apparently had ":se=\E^_:so=\E^Y:",
        !          5994: # but these caps were commented out in 8.3; also, removed incorrect
        !          5995: # and overridden ":do=^J:" -- esr)
        !          5996: h1510|hazeltine 1510:\
        !          5997:        :am:bs:\
        !          5998:        :co#80:li#24:\
        !          5999:        :al=\E^Z:bl=^G:cd=\E^X:ce=\E^O:cl=\E^\:\
        !          6000:        :cm=\E\021%r%.%.:cr=^M:dl=\E^S:do=\E^K:le=^H:nd=^P:\
        !          6001:        :sf=^J:up=\E^L:
        !          6002: # (h1520: removed incorrect and overridden ":do=^J:" -- esr)
        !          6003: h1520|hazeltine 1520:\
        !          6004:        :am:bs:hz:\
        !          6005:        :co#80:li#24:\
        !          6006:        :al=~^Z:bl=^G:cd=~^X:ce=~^O:cl=~^\:cm=~\021%r%.%.:\
        !          6007:        :cr=^M:dl=~^S:do=~^K:ho=~^R:le=^H:nd=^P:se=~^Y:sf=^J:\
        !          6008:        :so=~^_:up=~^L:
        !          6009: # Note: the h1552 appears to be the first Hazeltine terminal which
        !          6010: # is not braindamaged.  It has tildes and backprimes and everything!
        !          6011: # Be sure the auto lf/cr switch is set to cr.
        !          6012: h1552|hazeltine 1552:\
        !          6013:        :al=\EE:dl=\EO:do=^J:k1=\EP:k2=\EQ:k3=\ER:tc=vt52:
        !          6014: h1552rv|hazeltine 1552 reverse video:\
        !          6015:        :do=^J:se=\ET:so=\ES:tc=h1552:
        !          6016: # Note: h2000 won't work well because of a clash between upper case and ~'s.
        !          6017: h2000|hazeltine 2000:\
        !          6018:        :am:bs:nc:\
        !          6019:        :co#74:li#27:\
        !          6020:        :al=~\032:bl=^G:cl=~\034:cm=~\021%r%.%.:dl=~\023:\
        !          6021:        :do=^J:ho=~^R:le=^H:pc=\177:sf=^J:
        !          6022: # Date: Fri Jul 23 10:27:53 1982.  Some unknown person wrote:
        !          6023: # I tested this termcap entry for the Hazeltine Esprit with vi. It seems
        !          6024: # to work ok. There is one problem though if one types a lot of garbage
        !          6025: # characters very fast vi seems not able to keep up and hangs while trying
        !          6026: # to insert. That's in insert mode while trying to insert in the middle of
        !          6027: # a line. It might be because the Esprit doesn't have insert char and delete
        !          6028: # char as a built in function. Vi has to delete to end of line and then
        !          6029: # redraw the rest of the line.
        !          6030: esprit|Hazeltine Esprit I:\
        !          6031:        :am:bw:\
        !          6032:        :co#80:li#24:\
        !          6033:        :al=\E^Z:bl=^G:bt=\E^T:cd=\E^W:ce=\E^O:cl=\E^\:\
        !          6034:        :cm=\E\021%r%.%.:cr=^M:dl=\E^S:do=\E^K:ho=\E^R:\
        !          6035:        :is=\E?:k0=^B0^J:k1=^B1^J:k2=^B2^J:k3=^B3^J:k4=^B4^J:\
        !          6036:        :k5=^B5^J:k6=^B6^J:k7=^B7^J:k8=^B8^J:k9=^B9^J:kb=^H:\
        !          6037:        :kd=\E^K:ke=\E>:kh=\E^R:kl=^H:kr=^P:ks=\E<:ku=\E^L:\
        !          6038:        :le=^H:nd=^P:se=\E^Y:sf=^J:so=\E^_:up=\E^L:
        !          6039: esprit-am|hazeltine esprit auto-margin:\
        !          6040:        :am:\
        !          6041:        :tc=esprit:
        !          6042:
        !          6043: #### IBM
        !          6044: #
        !          6045:
        !          6046: ibm327x|line mode IBM 3270 style:\
        !          6047:        :gn:\
        !          6048:        :ce=^M:cl=^M^J:ho=^M:
        !          6049: # From: J.B. Nicholson-Owens <jeffo@uiuc.edu> 8 Mar 94
        !          6050: ibm3101|i3101|IBM 3101-10:\
        !          6051:        :am:bs:pt:xo:\
        !          6052:        :co#80:li#24:\
        !          6053:        :bl=^G:cd=\EJ:ce=\EI:cl=\EK:cm=\EY%+ %+ :cr=^M:\
        !          6054:        :ct=\E1:do=^J:ho=\EH:if=/usr/share/tabset/ibm3101:\
        !          6055:        :kb=^H:kd=\EB:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:\
        !          6056:        :nw=^M^J:sf=^J:st=\E0:ta=^I:up=\EA:
        !          6057: #   Received from the IBM terminals division (given to DRB)
        !          6058: #   June 1988 for PS/2 OS 2.2.3 cut
        !          6059: ibm3151|i3151:\
        !          6060:        :me=\E4@:\
        !          6061:        :..sa=\E4%{64}%?%p1%{0}%>%p1%{4}%<%&%t%{8}%|%;%?%p1%{7}%=%t%{16}%|%;%?%p2%t%{1}%|%;%?%p3%t%{4}%|%;%?%p4%t%{2}%|%;%c:\
        !          6062:        :se=\E4@:so=\E4A:ue=\E4@:us=\E4B:tc=ibm3163:
        !          6063: # From: Mark Easter <marke@fsi-ssd.csg.ssd.fsi.com> 29 Oct 1992
        !          6064: # I commented out some IBM extensions.
        !          6065: ibm3161|ibm3163|wy60-316X|wyse60-316X|IBM 3161/3163 display:\
        !          6066:        :am:mi:ms:\
        !          6067:        :co#80:it#8:li#24:\
        !          6068:        :bl=^G:cd=\EJ:ce=\EI:cl=\EH\EJ:cm=\EY%+ %+ :cr=^M:\
        !          6069:        :dc=\EQ:dl=\EO:do=\EB:ho=\EH:k1=\Ea\r:k2=\Eb\r:\
        !          6070:        :k3=\Ec\r:k4=\Ed\r:k5=\Ee\r:k6=\Ef\r:k7=\Eg\r:\
        !          6071:        :k8=\Eh\r:k9=\Ei\r:kb=^H:kd=\EB:kh=\EH:kl=\ED:kr=\EC:\
        !          6072:        :ku=\EA:le=\ED:mb=\E4D:md=\E4H:me=\E4@\E<@:mk=\E4P:\
        !          6073:        :mr=\E4A:nd=\EC:\
        !          6074:        :..sa=\E4%'@'%?%p1%t%'A'%|%;\n%?%p2%t%'B'%|%;\n%?%p3%t%'A'%|%;\n%?%p4%t%'D'%|%;\n%?%p5%t%'@'%|%;\n%?%p6%t%'H'%|%;\n%?%p7%t%'P'%|%;%c\n%?%p9%t\E>A%e\E<@%;:\
        !          6075:        :se=\E4@:sf=^J:so=\E4A:te=\E>A:ti=\E>A:ue=\E4@:\
        !          6076:        :up=\EA:us=\E4B:
        !          6077:
        !          6078: # How the 3164 sgr string works:
        !          6079: #      %{32}           # push space for no special video characteristics
        !          6080: #      %?%p2%t%{1}%|%; # if p2 set, then OR the 1 bit for reverse
        !          6081: #      %?%p3%t%{4}%|%; # if p3 set, then OR the 4 bit for blink
        !          6082: #      %?%p4%t%{2}%|%; # if p4 set, then OR the 2 bit for underline
        !          6083: #      %c              # pop Pa1
        !          6084: #      %{39}%p1%-      # calculate 32 + (7 - p1) for foreground
        !          6085: #      %c              # pop Pa2
        !          6086: #      %{64}           # use only black background for now
        !          6087: #      %c              # pop Pa3
        !          6088: ibm3164|i3164|3164:\
        !          6089:        :mb=\E4D:md=\E4H:me=\E4@:\
        !          6090:        :..sa=\E4%{32}%?%p2%t%{1}%|%;%?%p3%t%{4}%|%;%?%p4%t%{2}%|%;%c%{39}%p1%-%c%{64}%c:tc=ibm3163:
        !          6091:
        !          6092: # (ibmaed: mapped ":pt:" to default tabs -- esr)
        !          6093: ibmaed|IBM Experimental display:\
        !          6094:        :am:bs:eo:ms:pt:\
        !          6095:        :co#80:li#52:\
        !          6096:        :al=\EN:cd=\EJ:ce=\EI:cl=\EH\EK:cm=\EY%+ %+ :dc=\EQ:\
        !          6097:        :dl=\EO:do=\EB:ei=:ho=\EH:ic=\EP:im=:kb=^H:kd=\EB:\
        !          6098:        :kl=\ED:kr=\EC:ku=\EA:nd=\EC:se=\E0:so=\E0:ue=:\
        !          6099:        :up=\EA:us=:vb=\EG:
        !          6100: ibm-apl|apl|IBM apl terminal simulator:\
        !          6101:        :li#25:\
        !          6102:        :tc=dm1520:
        !          6103: # (ibmmono: this had an unknown `sb' boolean, I changed it to `bs'.
        !          6104: # Also it had ":I0=f10:" which pretty obviously should be "l0=f10" -- esr)
        !          6105: ibmmono|ibm5151|IBM workstation monochrome:\
        !          6106:        :bs:es:hs:\
        !          6107:        :al=\EL:dl=\EM:ds=\Ej\EY8 \EI\Ek:fs=\Ek:k0=\E<:\
        !          6108:        :k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:k6=\EP:k7=\EQ:\
        !          6109:        :k8=\ER:k9=\EY:kb=^H:kh=\EH:md=\EZ:me=\Ew\Eq\Ez\EB:\
        !          6110:        :mk=\EF\Ef0;\Eb0;:mr=\Ep:se=\Ez:so=\EZ:sr=\EA:\
        !          6111:        :ts=\Ej\EY8%+ \Eo:ue=\Ew:us=\EW:tc=ibm3101:
        !          6112: ibmega-c|ibm5154-c|IBM Enhanced Color Display:\
        !          6113:        :se=\EB:so=\EF\Ef3;:ue=\EB:us=\EF\Ef2;:tc=ibmmono:
        !          6114: # ibmapa* and ibmmono entries come from ACIS 4.3 distribution
        !          6115: rtpc|ibmapa16|ibm6155|IBM 6155 Extended Monochrome Graphics Display:\
        !          6116:        :li#32:\
        !          6117:        :ds=\Ej\EY@ \EI\Ek:ts=\Ej\EY@%+ \Eo:tc=ibmmono:
        !          6118: # Advanced Monochrome (6153) and Color (6154) Graphics Display:
        !          6119: ibmapa8c|ibmapa8|ibm6154|ibm6153|IBM 6153/4 Advanced Graphics Display:\
        !          6120:        :li#31:\
        !          6121:        :ds=\Ej\EY? \EI\Ek:ts=\Ej\EY?%+ \Eo:tc=ibmmono:
        !          6122: ibmapa8c-c|ibm6154-c|IBM 6154 Advanced Color Graphics Display:\
        !          6123:        :li#31:\
        !          6124:        :ds=\Ej\EY? \EI\Ek:mh=\EF\Ef7;:ts=\Ej\EY?%+ \Eo:tc=ibmega-c:
        !          6125: # From: Marc Pawliger <marc@ibminet.awdpa.ibm.com>
        !          6126: # also in /usr/lpp/bos/bsdsysadmin.
        !          6127: # (hft-c: this entry had :kb=\E[D:kf=\E[C: on the line with ku/kd/kh; this was
        !          6128: # pretty obviously mislabeled for :le: and :nd:; also ":ul=\E[4m:" was clearly
        !          6129: # a typo for ":us=\E[4m:"; also ":el=\E[K:" was a typo for ":ce=\E[K:".
        !          6130: # There was an unknown boolean ":ht:" which I assume was meant to set
        !          6131: # hardware tabs, so I have insrted it#8. Finally, "ac=^N" paired with the
        !          6132: # ae looked like a typo for ":as=^N:" -- esr)
        !          6133: ibm8512|ibm8513|hft-c|IBM High Function Terminal:\
        !          6134:        :am:mi:ms:\
        !          6135:        :co#80:it#8:li#25:\
        !          6136:        :AL=\E[%dL:DL=\E[%dM:ae=^O:al=\E[L:as=^N:cd=\E[J:\
        !          6137:        :ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:dl=\E[M:dm=\E[4h:\
        !          6138:        :do=^J:ec=\E[%dX:ed=\E[4l:ei=\E[4l:ho=\E[H:im=\E[4h:\
        !          6139:        :is=\Eb\E[m\017\E[?7h:k0=\E[010q:k1=\E[001q:\
        !          6140:        :k2=\E[002q:k3=\E[003q:k4=\E[004q:k5=\E[005q:\
        !          6141:        :k6=\E[006q:k7=\E[007q:k8=\E[008q:k9=\E[009q:kd=\E[B:\
        !          6142:        :kh=\E[H:ku=\E[A:le=\E[D:mb=\E[5m:md=\E[1m:me=\E[m:\
        !          6143:        :mr=\E[7m:nd=\E[C:rc=\E[u:\
        !          6144:        :rs=\Eb\E[m\017\E[?7h\E[H\E[J:sc=\E[s:se=\E[m:\
        !          6145:        :so=\E[7m:te=\E[20h:ti=\E[20;4l\E[?7h\Eb:ue=\E[m:\
        !          6146:        :up=\E[A:us=\E[4m:
        !          6147: hft|AIWS High Function Terminal:\
        !          6148:        :am:xo:\
        !          6149:        :co#80:li#25:\
        !          6150:        :al=\E[L:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:\
        !          6151:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:do=^J:ei=\E6:\
        !          6152:        :ho=\E[H:ic=\E[@:im=\E6:k1=\E[001q:k2=\E[002q:\
        !          6153:        :k3=\E[003q:k4=\E[004q:k5=\E[005q:k6=\E[006q:\
        !          6154:        :k7=\E[007q:k8=\E[008q:k9=\E[009q:kb=^H:kd=\E[B:\
        !          6155:        :kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:mb=\E[5m:\
        !          6156:        :md=\E[1m:me=\E[0m:mk=\E[8m:mr=\E[7m:nd=\E[C:se=\E[m:\
        !          6157:        :sf=^J:so=\E[7m:ta=^I:ue=\E[m:up=\E[A:us=\E[4m:
        !          6158: # From: <pryor@math.berkeley.edu>
        !          6159: ibm5081|ibmmpel|IBM 5081 1024x1024 256/4096 color display:\
        !          6160:        :es:hs:\
        !          6161:        :li#33:\
        !          6162:        :ds=\Ej\EYA \EI\Ek:fs=\Ek:ts=\Ej\EYA%+ \Eo:tc=ibmmono:
        !          6163: ibm5081-c|ibmmpel-c|IBM 5081 1024x1024 256/4096 enhanced color display:\
        !          6164:        :es:hs:\
        !          6165:        :li#33:\
        !          6166:        :ds=\Ej\EYA \EI\Ek:fs=\Ek:ts=\Ej\EYA%+ \Eo:tc=ibmega-c:
        !          6167: ibm-system1|system1|ibm system/1 computer:\
        !          6168:        :am:xt:\
        !          6169:        :co#80:li#24:\
        !          6170:        :bl=^G:cl=^Z:cm=\005%+ %+ :ho=^K:le=^H:nd=^\:sf=^J:\
        !          6171:        :up=^^:
        !          6172:
        !          6173: #### Infoton/General Terminal Corp.
        !          6174: #
        !          6175:
        !          6176: # gt100 sounds like something DEC would come out with.  Let's hope they don't.
        !          6177: i100|gt100|gt100a|General Terminal 100A (formerly Infoton 100):\
        !          6178:        :am:bs:\
        !          6179:        :co#80:li#24:\
        !          6180:        :al=\EL:bl=^G:cd=\EJ:ce=\EK:cl=^L:cm=\Ef%r%+ %+ :\
        !          6181:        :cr=^M:dl=\EM:do=^J:ho=\EH:le=^H:nd=\EC:se=\Ea:sf=^J:\
        !          6182:        :so=\Eb:up=\EA:vb=\Eb\Ea:
        !          6183: i400|infoton 400:\
        !          6184:        :am:bs:\
        !          6185:        :co#80:li#25:\
        !          6186:        :al=\E[L:bl=^G:ce=\E[N:cl=\E[2J:cm=%i\E[%3;%3H:cr=^M:\
        !          6187:        :dc=\E[4h\E[2Q\E[P\E[4l\E[0Q:dl=\E[M:do=^J:\
        !          6188:        :ei=\E[4l\E[0Q:im=\E[4h\E[2Q:le=^H:nd=\E[C:sf=^J:\
        !          6189:        :up=\E[A:
        !          6190: # (addrinfo: removed obsolete ":bc=^Z:" -- esr)
        !          6191: addrinfo:\
        !          6192:        :am:\
        !          6193:        :co#80:li#24:\
        !          6194:        :bl=^G:cd=^K:cl=^L:..cm=\037%p1%{1}%-%c%p2%{1}%-%c:\
        !          6195:        :cr=^M:do=^J:ho=^H:le=^Z:ll=^H^\:nd=^Y:sf=^J:up=^\:
        !          6196: infoton:\
        !          6197:        :am:\
        !          6198:        :co#80:li#24:\
        !          6199:        :bl=^G:cd=^K:cl=^L:cr=^M:do=^J:le=^Z:ll=^H^\:nd=^Y:\
        !          6200:        :sf=^J:up=^\:
        !          6201: # (infotonKAS: removed obsolete ":bc=^Z:" -- esr)
        !          6202: infotonKAS:\
        !          6203:        :am:\
        !          6204:        :co#80:li#24:\
        !          6205:        :bl=^G:cd=^K:cl=^L:cr=^M:do=^J:le=^Z:ll=^H^\:nd=^Y:\
        !          6206:        :sf=^J:up=^\:
        !          6207:
        !          6208: #### Interactive Systems Corp
        !          6209: #
        !          6210: # ISC used to sell OEMed and customized hardware to support ISC UNIX.
        !          6211: # ISC UNIX still exists in 1995, but ISC itself is no more; they got
        !          6212: # bought out by Sun.
        !          6213: #
        !          6214:
        !          6215: # From: <cithep!eric>  Wed Sep 16 08:06:44 1981
        !          6216: # (intext: removed obsolete ":ma=^K^P^R^L^L :";
        !          6217: # mapped ":pt:" to default tabs, removed obsolete ":bc=^_:", also the
        !          6218: # ":le=^_:" later overridden -- esr)
        !          6219: intext|Interactive Systems Corporation modified owl 1200:\
        !          6220:        :am:\
        !          6221:        :co#80:li#24:sg#1:\
        !          6222:        :al=\020:bl=^G:bt=^Y:cd=\026J:ce=^Kp^R:cl=\014:\
        !          6223:        :cm=\017%+ %+ :cr=^M:dc=\022:dl=\021:do=^J:ei=^V<:\
        !          6224:        :im=^V;:ip=:k0=^VJ\r:k1=^VA\r:k2=^VB\r:k3=^VC\r:\
        !          6225:        :k4=^VD\r:k5=^VE\r:k6=^VF\r:k7=^VG\r:k8=^VH\r:\
        !          6226:        :k9=^VI\r:kb=^H:kd=^J:ke=^V9:kh=^Z:kl=^_:kr=^^:\
        !          6227:        :ks=\036\072\264\026%:ku=^\:le=^H:nd=^^:se=^V# :\
        !          6228:        :sf=^J:so=^V$\054:ta=^I:up=^\:
        !          6229: intext2|intextii|INTERACTIVE modified owl 1251:\
        !          6230:        :am:bw:ul:\
        !          6231:        :co#80:li#24:sg#0:\
        !          6232:        :al=\E[L:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:ch=\E[%+^AG:\
        !          6233:        :cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:\
        !          6234:        :do=\E[B:ei=:ic=\E[@:im=:k0=\E@\r:k1=\EP\r:k2=\EQ\r:\
        !          6235:        :k3=\ES\r:k4=\ET\r:k5=\EU\r:k6=\EV\r:k7=\EW\r:\
        !          6236:        :k8=\EX\r:k9=\EY\r:kb=^H:kd=\EB\r:kh=\ER\r:kl=\ED\r:\
        !          6237:        :kr=\EC\r:ku=\EA\r:nd=\E[C:se=\E[2 D:sf=\E[S:\
        !          6238:        :so=\E[6 D:sr=\E[T:ta=^I:ue=\E[2 D:up=\E[A:\
        !          6239:        :us=\E[18 D:vb=\E[;;;;;;;;;2;;u\E[;;;;;;;;;1;;u:
        !          6240:
        !          6241: #### Kimtron (abm, kt)
        !          6242: #
        !          6243: # Kimtron entries include (undocumented) codes for: enter dim mode (:mh:),
        !          6244: # enter bold mode (:md:), enter reverse mode (:mr:), turn off all attributes
        !          6245: # (:me:).
        !          6246:
        !          6247: # Kimtron ABM 85 added by Dual Systems
        !          6248: # (abm85: mapped ":pt:" to default tabs; removed duplicated ":kd=^J:" -- esr)
        !          6249: abm85|Kimtron ABM 85:\
        !          6250:        :am:bs:bw:ms:pt:\
        !          6251:        :co#80:li#24:sg#1:ug#1:\
        !          6252:        :al=\EE:bt=\EI:cd=\Ey:ce=\Et:cl=\E*:cm=\E=%+ %+ :\
        !          6253:        :dc=\EW:dl=\ER:do=^J:ei=\Er:\
        !          6254:        :if=/usr/share/tabset/stdcrt:im=\EQ:\
        !          6255:        :is=\EC\EX\Eg\En\E%\Er\E(\Ek\Em\Eq:kb=^H:kd=^J:kh=^^:\
        !          6256:        :kl=^H:kr=^L:ku=^K:nd=^L:se=\Ek:so=\Ej:ue=\Em:up=^K:\
        !          6257:        :us=\El:
        !          6258: # Kimtron ABM 85H added by Dual Systems.
        !          6259: # Some notes about the 85h entries:
        !          6260: # 1) there are several firmware revs of 85H in the world. Use o85h for
        !          6261: #    firmware revs prior to SP51
        !          6262: # 2) Make sure to use 85h entry if the terminal is in 85H mode and the
        !          6263: #    85e entry if it is in 920 emulation mode. They are incompatible in
        !          6264: #    some places and NOT software settable i.e., :is: can't fix change it)
        !          6265: # 3) In 85h mode, the arrow keys and special functions transmit when
        !          6266: #    the terminal is in dup-edit, and work only locally in local-edit.
        !          6267: #    Vi won't swallow `del char' for instance, but :vs: turns on
        !          6268: #    dup-edit anyway so that the arrow keys will work right. If the
        !          6269: #    arrow keys don't work the way you like, change :vs:, :ve:, and :is:.
        !          6270: #    920E mode does not have software commands to toggle between dup
        !          6271: #    and local edit, so you get whatever was set last on the terminal.
        !          6272: # 4) :vb: attribute is nice, but seems too slow to work correctly (\Eb<pad>\Ed)
        !          6273: # 5) Make sure `hidden' attributes are selected. If `embedded' attributes
        !          6274: #    are selected, the entries :sg@: and :ug@: should be removed.
        !          6275: # 6) auto new-line should be on (selectable from setup mode only)
        !          6276: #
        !          6277: # From: Erik Fair <fair@ucbarpa>  Sun Oct 27 07:21:05 1985
        !          6278: abm85h|85H|85h|Kimtron ABM 85H, 85H mode:\
        !          6279:        :hs:\
        !          6280:        :sg@:ug@:\
        !          6281:        :ds=\Ee:fs=^M:im=\EZ:\
        !          6282:        :is=\EC\EN\EX\024\016\EA\Ea\E%\E9\Ee\Er\En\E"\E}\E'\E(\Ef\r\EG0\Ed\E.4\El:\
        !          6283:        :kd=^V:me=\E(\EG0:mh=\E):mr=\EG4:se=\EG0:so=\EG4:\
        !          6284:        :ts=\Eg\Ef:ue=\EG0:us=\EG8:vb@:ve=\E.4:vs=\E.2:tc=abm85:
        !          6285: abm85e|85E|85e|Kimtron ABM 85H, 920E mode:\
        !          6286:        :sg@:ug@:\
        !          6287:        :im=\EZ:\
        !          6288:        :is=\EC\EX\EA\E%\E9\Ee\Er\En\E"\E}\E'\E(\Ef\r\Ek\Eq\Em:\
        !          6289:        :me=\E(\Ek:mh=\E):mr=\Ej:vb@:tc=abm85:
        !          6290: abm85h-o|oabm85h|o85h|Kimtron ABM 85H, old firmware rev.:\
        !          6291:        :sg@:ug@:\
        !          6292:        :im=\EZ:\
        !          6293:        :is=\E}\EC\EX\Ee\En\E%\Er\E(\Ek\Em\Eq\Ed\ET\EC\E9\EF:\
        !          6294:        :me=\E(\Ek:mh=\E):mr=\Ej:\
        !          6295:        :vb=\200\200\200\007\200\200\200:tc=abm85:
        !          6296: # From: <malman@bbn-vax.arpa>
        !          6297: # (kt7: removed obsolete ":ko=ic,dc,al,dl,cl,ce,cd,bt:", ":ma=^V^J^L :";
        !          6298: # mapped ":pt:" to default tabs -- esr)
        !          6299: kt7|kimtron model kt-7:\
        !          6300:        :am:bs:pt:\
        !          6301:        :co#80:li#24:\
        !          6302:        :al=\EE:bt=\EI:cd=\EY:ce=\ET:cl=^Z:cm=\E=%+ %+ :\
        !          6303:        :dc=\EW:dl=\ER:do=^V:ei=:fs=\Eg:ho=^^:ic=\EQ:\
        !          6304:        :if=/usr/share/tabset/stdcrt:im=:is=\El\E":k0=^AI\r:\
        !          6305:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          6306:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^V:\
        !          6307:        :kh=^^:kl=^H:kr=^L:ku=^K:nd=^L:se=\EG0:so=\EG4:\
        !          6308:        :ts=\Ef:ue=\EG0:up=^K:us=\EG8:
        !          6309:
        !          6310: #### Microterm (act, mime)
        !          6311: #
        !          6312: # The mime1 entries refer to the Microterm Mime I or Mime II.
        !          6313: # The default mime is assumed to be in enhanced act iv mode.
        !          6314: #
        !          6315:
        !          6316: # New "safe" cursor movement (5/87) from reuss@umd5.umd.edu.  Prevents freakout with
        !          6317: # out-of-range args on Sytek multiplexors.  No ":so=^N:" and ":se=^N:" since
        !          6318: # it gets confused and it's too dim anyway.  No ic since Sytek insists ^S
        !          6319: # means xoff.
        !          6320: # (act4: found ":ic=2^S:ei=:im=:ip=.1*^V:" commented out in 8.3 -- esr)
        !          6321: act4|microterm|microterm act iv:\
        !          6322:        :am:bs:\
        !          6323:        :co#80:li#24:\
        !          6324:        :al=2.3*\001<2.3*/>:bl=^G:cd=2.2*\037:ce=.1*\036:\
        !          6325:        :cl=12\014:cm=\024%+^X%>/0%+P:cr=^M:dc=.1*\004:\
        !          6326:        :dl=2.3*\027:do=^K:ho=^]:kd=^K:kl=^H:kr=^X:ku=^Z:\
        !          6327:        :le=^H:nd=^X:sf=^J:up=^Z:
        !          6328: # The padding on :sr: and :ta: for act5 and mime is a guess and not final.
        !          6329: # The act 5 has hardware tabs, but they are in columns 8, 16, 24, 32, 41 (!)...
        !          6330: # (microterm5: removed obsolete ":ma==^Z^P^Xl^Kj:" -- esr)
        !          6331: act5|microterm5|microterm act v:\
        !          6332:        :kd=^K:kl=^H:kr=^X:ku=^Z:sr=\EH:uc=^H\EA:tc=act4:
        !          6333: # Act V in split screen mode.  act5s is not tested and said not to work.
        !          6334: act5s|skinny act5:\
        !          6335:        :co#39:li#48:\
        !          6336:        :te=\EQ:ti=\EP:tc=act5:
        !          6337: # Mimes using brightness for standout.  Half bright is really dim unless
        !          6338: # you turn up the brightness so far that lines show up on the screen.
        !          6339: mime-fb|full bright mime1:\
        !          6340:        :is=^S\E:se=^S:so=^Y:tc=mime:
        !          6341: mime-hb|half bright mime1:\
        !          6342:        :is=^Y\E:se=^Y:so=^S:tc=mime:
        !          6343: # (mime: removed obsolete ":ma=^X ^K^J^Z^P:"; removed ":do=^K:" that overrode
        !          6344: # the more plausible ":do=^J:"; mapped ":pt:" to ":it#8:" -- esr)
        !          6345: # uc was at one time disabled to get around a curses bug, be wary of it
        !          6346: mime|mime1|mime2|mimei|mimeii|microterm mime1:\
        !          6347:        :am:bs:pt:\
        !          6348:        :co#80:it#8:li#24:vt#9:\
        !          6349:        :al=\001:bl=^G:cd=^_:ce=^^:cl=^]^C:\
        !          6350:        :cm=\024%+^X%> 0%+P:cr=^M:dl=\027:do=^J:ho=^]:\
        !          6351:        :is=^S\E^Q:kd=^K:kl=^H:kr=^X:ku=^Z:le=^H:nd=^X:sf=^J:\
        !          6352:        :sr=\022:ta=\011:uc=^U:up=^Z:
        !          6353: # These termcaps (for mime 2a) put the terminal in low intensity mode
        !          6354: # since high intensity mode is so obnoxious.
        !          6355: mime2a-s|microterm mime2a (emulating an enhanced soroc iq120):\
        !          6356:        :am:bs:\
        !          6357:        :co#80:li#24:\
        !          6358:        :al=\001:bl=^G:cd=\EJ:ce=\EK:cl=\EL:cm=\E=%+ %+ :\
        !          6359:        :cr=^M:dc=\ED:dl=\027:do=^J:ei=^Z:ho=^^:im=\EE:ip=:\
        !          6360:        :is=\E):kd=^J:kl=^H:kr=^L:ku=^K:le=^H:nd=^L:se=\E;:\
        !          6361:        :sf=^J:so=\E\072:sr=\EI:ue=\E7:up=\EI:us=\E6:
        !          6362: # This is the preferred mode (but ^X can't be used as a kill character)
        !          6363: # (mime2a: replaced ":pt:" with SCO's "it#8" -- esr)
        !          6364: mime2a|mime2a-v|microterm mime2a (emulating an enhanced vt52):\
        !          6365:        :bs:pt:\
        !          6366:        :co#80:it#8:li#24:\
        !          6367:        :al=\001:bl=^G:cd=\EQ:ce=\EP:cl=\EL:cm=\EY%+ %+ :\
        !          6368:        :cr=^M:dc=^N:dl=\027:do=^J:ei=^Z:ho=\EH:im=^O:ip=:\
        !          6369:        :is=^Y:kd=\EB:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:\
        !          6370:        :se=\E9:sf=^J:so=\E8:sr=\EA:ta=^I:ue=\E5:up=\EA:\
        !          6371:        :us=\E4:
        !          6372: # (mime3a: removed obsolete ":ma=^X ^K^J^Z^P:" -- esr)
        !          6373: mime3a|mime1 emulating 3a:\
        !          6374:        :am@:\
        !          6375:        :kd=^K:kl=^H:kr=^X:ku=^Z:tc=adm3a:
        !          6376: # (mime3ax: mapped ":pt:" to default tabs -- esr)
        !          6377: mime3ax|mime-3ax|mime1 emulating enhanced 3a:\
        !          6378:        :pt:\
        !          6379:        :it#8:\
        !          6380:        :al=\001:cd=^_:ce=^X:dl=\027:ta=\011:tc=mime3a:
        !          6381: # Wed Mar  9 18:53:21 1983
        !          6382: # We run our terminals at 2400 baud, so there might be some timing problems at
        !          6383: # higher speeds. The major improvements in this model are the terminal now
        !          6384: # scrolls down and insert mode works without redrawing the rest of the line
        !          6385: # to the right of the cursor. This is done with a bit of a kludge using the
        !          6386: # exit graphics mode to get out of insert, but it does not appear to hurt
        !          6387: # anything when using vi at least. If you have some users using act4s with
        !          6388: # programs that use curses and graphics mode this could be a problem.
        !          6389: mime314|mm314|mime 314:\
        !          6390:        :am:\
        !          6391:        :co#80:li#24:\
        !          6392:        :al=^A:cd=^_:ce=^^:cl=^L:cm=\024%.%.:dc=^D:dl=^W:\
        !          6393:        :ei=^V:ho=^]:im=^S:kd=^K:kl=^H:kr=^X:ku=^Z:le=^H:\
        !          6394:        :nd=^X:ta=^I:up=^Z:
        !          6395: # Fri Aug  5 08:11:57 1983
        !          6396: # This entry works for the ergo 4000 with the following setups:
        !          6397: # ansi,wraparound,newline disabled, xon/xoff disabled in both
        !          6398: # setup a & c.
        !          6399: #
        !          6400: # WARNING!!! There are multiple versions of ERGO 4000 microcode
        !          6401: # Be advised that very early versions DO NOT WORK RIGHT !!
        !          6402: # Microterm does have a ROM exchange program- use it or lose big
        !          6403: ergo4000|microterm ergo 4000:\
        !          6404:        :da:db:ms:\
        !          6405:        :co#80:li#66:\
        !          6406:        :AL=\E[1L:bl=^G:cd=\E[0J:ce=\E[0K:cl=\E[H\E[2J:\
        !          6407:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[1P:dl=\E[1M:do=\E[B:\
        !          6408:        :ei=\E[4l:im=\E[4h:\
        !          6409:        :is=\E<\E=\E[?1l\E[?4l\E[?5l\E[?7h\E[?8h:k1=\EOP:\
        !          6410:        :k2=\EOQ:k3=\EOR:k4=\EOS:kd=\E[B:ke=\E=:kl=\E[D:\
        !          6411:        :kr=\E[C:ks=\E=:ku=\E[A:le=^H:nd=\E[C:se=\E[0m:\
        !          6412:        :sf=\ED:so=\E[7m:sr=\EM:ta=^I:up=\E[A:
        !          6413:
        !          6414: #### NCR
        !          6415: #
        !          6416: # NCR's terminal group was merged with AT&T's when AT&T bought the company.
        !          6417: # For what happened to that group, see the ADDS section.
        !          6418: #
        !          6419:
        !          6420: # From <root@goliath.un.atlantaga.NCR.COM>, init string hacked by SCO.
        !          6421: ncr7900i|7900i|ncr7900|7900|ncr 7900 model 1:\
        !          6422:        :am:bw:ul:\
        !          6423:        :co#80:li#24:sg#1:ug#1:\
        !          6424:        :bl=^G:cd=\Ek:ce=\EK:cl=^L:cm=\E1%r%.%.:cr=^M:do=^J:\
        !          6425:        :is=\E0@\010\E3\E4\E7:kd=^J:kh=^A:kl=^U:kr=^F:ku=^Z:\
        !          6426:        :le=^H:ll=^A:mb=\E0B:me=\E0@:mh=\E0A:mr=\E0P:nd=^F:\
        !          6427:        :pf=^T:po=^R:\
        !          6428:        :..sa=\E0%p5%'@'%+%p4%{2}%*%+%p3%{16}%*%+%p2%{32}%*%+%p1%{17}%*%+%c:\
        !          6429:        :se=\E0@:sf=^J:so=\E0Q:ue=\E0@:up=^Z:us=\E0`:
        !          6430: ncr7900i-na|ncr7900-na|7900-na|ncr 7900 model 1 with no arrows:\
        !          6431:        :kd@:kl@:kr@:ku@:tc=ncr7900i:
        !          6432: ncr7900iv|ncr 7900 model 4:\
        !          6433:        :am:bw:es:hs:\
        !          6434:        :co#80:li#24:\
        !          6435:        :al=\E^N:bl=^G:cl=^L:cm=\013%+@\E\005%02:cr=^M:\
        !          6436:        :dl=\E^O:do=^J:ds=\Ey1:fs=\Ek\Ey5:ho=\013@\E^E00:\
        !          6437:        :k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:k6=\EP:k7=\EQ:\
        !          6438:        :k8=\ER:kb=^H:kd=\EB:kh=\EH:kl=\ED:kr=\EC:ku=\EA:\
        !          6439:        :le=^H:nw=^M^J:sf=^J:\
        !          6440:        :ts=\Ej\Ex5\Ex1\EY8%p1%{32}%+%c\Eo:
        !          6441: ncr7901|7901|ncr 7901 model:\
        !          6442:        :am:bw:ul:\
        !          6443:        :co#80:li#24:\
        !          6444:        :bl=^G:cd=\Ek:ce=\EK:ch=\020%+^J:cl=^L:cm=\EY%+ %+ :\
        !          6445:        :cr=^M:cv=\013%+@:do=^J:is=\E4^O:kd=^J:kh=^H:kl=^U:\
        !          6446:        :kr=^F:ku=^Z:le=^H:ll=^A:mb=\E0B:me=^O:mh=\E0A:\
        !          6447:        :mr=\E0P:nd=^F:pf=^T:po=^R:\
        !          6448:        :..sa=\E0%p5%'@'%+%p4%{2}%*%+%p3%{16}%*%+%p2%{32}%*%+%p1%{17}%*%+%c\016:\
        !          6449:        :se=^O:sf=^J:so=\E0Q\016:ue=^O:up=^Z:us=\E0`\016:\
        !          6450:        :ve=^X:vi=^W:
        !          6451:
        !          6452: #### Perkin-Elmer (Owl)
        !          6453: #
        !          6454: # These are official terminfo entries from within Perkin-Elmer.
        !          6455: #
        !          6456:
        !          6457: bantam|pe550|pe6100|perkin elmer 550:\
        !          6458:        :co#80:li#24:\
        !          6459:        :bl=^G:ce=\EI:cl=\EK:cm=\EX%+ \EY%+ :cr=^M:do=^J:\
        !          6460:        :ho=\EH:le=^H:ll=\EH\EA:nd=\EC:sf=^J:up=\EA:
        !          6461: fox|pe1100|perkin elmer 1100:\
        !          6462:        :am:\
        !          6463:        :co#80:li#24:\
        !          6464:        :bl=^G:cd=\EJ:ce=\EI:cl=\EH\EJ:cm=\EX%+ \EY%+ :cr=^M:\
        !          6465:        :ct=\E3:do=^J:ho=\EH:le=^H:ll=\EH\EA:nd=\EC:sf=^J:\
        !          6466:        :st=\E1:up=\EA:vb=\020\002\020\003:
        !          6467: owl|pe1200|perkin elmer 1200:\
        !          6468:        :am:in:\
        !          6469:        :co#80:li#24:\
        !          6470:        :al=\EL:bl=^G:cd=\EJ:ce=\EI:cl=\EH\EJ:\
        !          6471:        :cm=\EX%+ \EY%+ :cr=^M:ct=\E3:dc=\EO:dl=\EM:do=^J:\
        !          6472:        :ei=:ho=\EH:ic=\EN:im=:ip=:k0=\ERJ:k1=\ERA:k2=\ERB:\
        !          6473:        :k3=\ERC:k4=\ERD:k5=\ERE:k6=\ERF:k7=\ERG:k8=\ERH:\
        !          6474:        :k9=\ERI:kb=^H:le=^H:ll=\EH\EA:nd=\EC:se=\E!\200:\
        !          6475:        :sf=^J:so=\E!^H:st=\E1:up=\EA:vb=\020\002\020\003:
        !          6476: pe1251|pe6300|pe6312|perkin elmer 1251:\
        !          6477:        :am:\
        !          6478:        :co#80:it#8:li#24:pb#300:sg#1:vt#8:\
        !          6479:        :bl=^G:cd=\EJ:ce=\EI:cl=\EK:cm=\EX%+ \EY%+ :cr=^M:\
        !          6480:        :ct=\E3:do=\EB:ho=\EH:k0=\ERA:k1=\ERB:k2=\ERC:\
        !          6481:        :k3=\ERD:k4=\ERE:k5=\ERF:k6=\ERG:k7=\ERH:k8=\ERI:\
        !          6482:        :k9=\ERJ:le=\ED:nd=\EC:sf=^J:st=\E1:up=\EA:
        !          6483: pe7000m|perkin elmer 7000 series monochrome monitor:\
        !          6484:        :am:\
        !          6485:        :co#80:li#24:\
        !          6486:        :bl=^G:bt=\E!Y:cd=\EJ:ce=\EI:cl=\EK:cm=\ES%+ %+ :\
        !          6487:        :cr=^M:do=\EB:ho=\EH:i1=\E!\200\EW  7o\Egf\ES7 :\
        !          6488:        :k0=\E!\200:k1=\E!^A:k2=\E!^B:k3=\E!^C:k4=\E!^D:\
        !          6489:        :k5=\E!^E:k6=\E!^F:k7=\E!^G:k8=\E!^H:k9=\E!^I:kb=^H:\
        !          6490:        :kd=\E!U:kh=\E!S:kl=\E!V:kr=\E!W:ku=\E!T:le=\ED:\
        !          6491:        :ll=\ES7 :nd=\EC:se=\E!\200:sf=^J:so=\E!^H:sr=\ER:\
        !          6492:        :ue=\E!\200:up=\EA:us=\E! :
        !          6493: pe7000c|perkin elmer 7000 series colour monitor:\
        !          6494:        :am:\
        !          6495:        :co#80:li#24:\
        !          6496:        :bl=^G:bt=\E!Y:cd=\EJ:ce=\EI:cl=\EK:cm=\ES%+ %+ :\
        !          6497:        :cr=^M:do=\EB:ho=\EH:\
        !          6498:        :i1=\E!\200\EW  7o\Egf\Eb0\Ec7\ES7 :k0=\E!\200:\
        !          6499:        :k1=\E!^A:k2=\E!^B:k3=\E!^C:k4=\E!^D:k5=\E!^E:\
        !          6500:        :k6=\E!^F:k7=\E!^G:k8=\E!^H:k9=\E!^I:kb=^H:kd=\E!U:\
        !          6501:        :kh=\E!S:kl=\E!V:kr=\E!W:ku=\E!T:le=\ED:ll=\ES7 :\
        !          6502:        :nd=\EC:se=\Eb0:sf=^J:so=\Eb2:sr=\ER:ue=\E!\200:\
        !          6503:        :up=\EA:us=\E! :
        !          6504:
        !          6505: #### Sperry Univac
        !          6506: #
        !          6507: # Sperry Univac has merged with Burroughs to form Unisys.
        !          6508: #
        !          6509:
        !          6510: # This entry is for the Sperry UTS30 terminal running the TTY
        !          6511: # utility under control of CP/M Plus 1R1. The functionality
        !          6512: # provided is comparable to the DEC vt100.
        !          6513: uts30|sperry uts30 with cp/m@1R1:\
        !          6514:        :am:bw:hs:\
        !          6515:        :co#80:li#24:ws#40:\
        !          6516:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          6517:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dB:SR=\E[%dA:UP=\E[%dA:\
        !          6518:        :ae=\Ed:al=\EN:as=\EF:bl=^G:cd=\E[J:ce=\E[K:cl=^L:\
        !          6519:        :cm=\E[%i%d;%dH:cr=^M:cs=\EU%+ %+ :dc=\EM:dl=\EL:\
        !          6520:        :do=\EB:ei=:fs=^M:ho=\E[H:ic=\EO:im=:\
        !          6521:        :is=\E[U 7\E[24;1H:kb=^H:kd=\EOB:kh=\E[H:kl=\EOD:\
        !          6522:        :kr=\EOC:ku=\EOA:le=^H:mb=\E[5m:md=\E[1m:me=\E[m:\
        !          6523:        :mr=\E[7m:nd=\EC:rc=\EX:sc=\EW:se=\E[m:sf=^J:\
        !          6524:        :so=\E[7m:sr=\EI:ta=^I:ts=\E]:uc=\EPB:ue=\E[m:\
        !          6525:        :up=\E[A:us=\E[4m:ve=\ES:vi=\ER:
        !          6526:
        !          6527: #### Tandem
        !          6528: #
        !          6529: # Tandem builds these things for use with its line of fault-tolerant
        !          6530: # transaction-processing computers.  They aren't generally available
        !          6531: # on the merchant market, and so are fairly uncommon.
        !          6532: #
        !          6533:
        !          6534: tandem6510|adm3a repackaged by Tandem:\
        !          6535:        :tc=adm3a:
        !          6536:
        !          6537: # A funny series of terminal that TANDEM uses.  The actual model numbers
        !          6538: # have a fourth digit after 653 that designates minor variants.  These are
        !          6539: # natively block-mode and rather ugly, but they have a character mode which
        !          6540: # this doubtless(?) exploits.  There is a 6520 that is slightly dumber.
        !          6541: # (tandem653: had ":sb=\ES:", probably someone's mistake for sf -- esr)
        !          6542: tandem653|t653x|Tandem 653x multipage terminal:\
        !          6543:        :am:bs:da:db:hs:\
        !          6544:        :co#80:li#24:sg#1:ug#1:ws#64:\
        !          6545:        :cd=\EJ:ce=\EK:cl=\EI:cm=\023%+ %+ :do=^J:ds=\Eo\r:\
        !          6546:        :fs=^M:ho=\EH:if=/usr/share/tabset/tandem653:le=^H:\
        !          6547:        :nd=\EC:se=\E6 :sf=\ES:so=\E6$:sr=\ET:ts=\Eo:ue=\E6 :\
        !          6548:        :up=\EA:us=\E60:
        !          6549:
        !          6550: #### Tandy/Radio Shack
        !          6551: #
        !          6552: # Tandy has a line of VDTs distinct from its microcomputers.
        !          6553: #
        !          6554:
        !          6555: dmterm|deskmate terminal:\
        !          6556:        :am:bw:\
        !          6557:        :co#80:li#24:\
        !          6558:        :al=\EP:bl=^G:cd=\EJ:ce=\EK:cl=\Ej:cm=\EY%+ %+ :\
        !          6559:        :cr=^M:dc=\ES:dl=\ER:do=\EB:ei=:ho=\EH:ic=\EQ:im=:\
        !          6560:        :k0=\E1:k1=\E2:k2=\E3:k3=\E4:k4=\E5:k5=\E6:k6=\E7:\
        !          6561:        :k7=\E8:k8=\E9:k9=\E0:kd=\EB:kh=\EH:kl=\ED:kr=\EC:\
        !          6562:        :ku=\EA:le=^H:ll=\EE:nd=\EC:se=\EG0:sf=\EX:so=\EG4:\
        !          6563:        :ta=^I:up=\EA:ve=\EG6:vi=\EG5:
        !          6564: dt100|dt-100|Tandy DT-100 terminal:\
        !          6565:        :xo:\
        !          6566:        :co#80:li#24:sg#1:ug#1:\
        !          6567:        :ae=^O:al=\E[L:as=^N:bl=^G:cd=\E[J:ce=\E[K:\
        !          6568:        :cl=\E[;H\E[2J:cm=\010\E[%i%d;%dH:cr=^M:cs=\E[%2;%2r:\
        !          6569:        :dc=\E[P:dl=\E[M:do=\E[B:ei=:ho=\E[H:ic=\E[@:im=:\
        !          6570:        :is=\E[?3l\E)0\E(B:k1=\E[?3i:k2=\E[2i:k3=\E[@:\
        !          6571:        :k4=\E[M:k5=\E[17~:k6=\E[18~:k7=\E[19~:k8=\E[20~:\
        !          6572:        :k9=\E[21~:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:\
        !          6573:        :le=^H:nd=\E[C:se=\E[m:sf=^J:so=\E[7m:sr=\EM:ta=^I:\
        !          6574:        :ue=\E[m:up=\E[A:us=\E[4m:ve=\E[?25h:vi=\E[?25l:
        !          6575: dt100w|dt-100w|Tandy DT-100 terminal (wide mode):\
        !          6576:        :co#132:\
        !          6577:        :bl=^G:cr=^M:do=^J:is=\E[?3l\E)0\E(B:sf=^J:tc=dt100:
        !          6578: dt110|Tandy DT-110 emulating ansi:\
        !          6579:        :xo:\
        !          6580:        :co#80:li#24:\
        !          6581:        :ae=^O:al=\E[0L:as=^N:bl=^G:cd=\E[0J:ce=\E[0K:\
        !          6582:        :cl=\E[;H\E[2J:cm=\010\E[%i%d;%dH:cr=^M:\
        !          6583:        :cs=\E[%i%d;%dr:dc=\E[0P:dl=\E[0M:do=\E[0B:ei=:\
        !          6584:        :ho=\E[H:ic=\E[0@:im=:is=\E[?3l\E)0\E(B:k1=\E[1~:\
        !          6585:        :k2=\E[2~:k3=\E[3~:k4=\E[4~:k5=\E[5~:k6=\E[6~:\
        !          6586:        :k7=\E[7~:k8=\E[8~:k9=\E[9~:kd=\E[B:kh=\E[G:kl=\E[D:\
        !          6587:        :kr=\E[C:ku=\E[A:le=^H:nd=\E[C:se=\E[0m:sf=^J:\
        !          6588:        :so=\E[7m:sr=\EM:ta=^I:ue=\E[0m:up=\E[0A:us=\E[4m:\
        !          6589:        :ve=\E[?25h:vi=\E[?25l:
        !          6590: dt200|td200|Tandy 200:\
        !          6591:        :am:xt:\
        !          6592:        :co#40:li#16:\
        !          6593:        :al=\EL:bl=^G:cd=^L:ce=\EK:cl=\EE:cm=\EY%+ %+ :cr=^M:\
        !          6594:        :dl=\EM:do=^_:kd=^_:kl=^]:kr=^\:ku=^^:le=^H:nd=^\:\
        !          6595:        :se=\Eq:sf=^J:so=\Ep:up=\EA:
        !          6596: pt210|TRS-80 PT-210 printing terminal:\
        !          6597:        :hc:os:\
        !          6598:        :co#80:\
        !          6599:        :bl=^G:cr=^M:do=^J:sf=^J:
        !          6600:
        !          6601: #### Tektronix (tek)
        !          6602: #
        !          6603: # Tektronix tubes are graphics terminals.  Most of them use modified
        !          6604: # oscilloscope technology incorporating a long-persistence green phosphor,
        !          6605: # and support vector graphics on a main screen with an attached "dialogue
        !          6606: # area" for interactive text.
        !          6607: #
        !          6608:
        !          6609: tek|tek4012|4012|tektronix 4012:\
        !          6610:        :os:\
        !          6611:        :co#75:li#35:\
        !          6612:        :bl=^G:cl=\E\014:cr=^M:do=^J:ff=\014:is=\E^O:le=^H:
        !          6613: tek4013|4013|tektronix 4013:\
        !          6614:        :ae=\E^O:as=\E^N:tc=tek4012:
        !          6615: tek4014|4014|tektronix 4014:\
        !          6616:        :co#81:li#38:\
        !          6617:        :is=\E\017\E9:tc=tek4012:
        !          6618: tek4015|4015|tektronix 4015:\
        !          6619:        :ae=\E^O:as=\E^N:tc=tek4014:
        !          6620: tek4014-sm|4014-sm|tektronix 4014 in small font:\
        !          6621:        :co#121:li#58:\
        !          6622:        :is=\E\017\E\072:tc=tek4014:
        !          6623: tek4015-sm|4015-sm|tektronix 4015 in small font:\
        !          6624:        :ae=\E^O:as=\E^N:tc=tek4014-sm:
        !          6625: tek4023|4023|tex|tektronix 4023:\
        !          6626:        :am:\
        !          6627:        :co#80:li#24:vt#4:\
        !          6628:        :bl=^G:cl=\E\014:cm=\034%r%+ %+ :cr=^M:do=^J:le=^H:\
        !          6629:        :nd=^I:se=^_@:sf=^J:so=^_P:
        !          6630: # It is recommended that you run the 4025 at 4800 baud or less;
        !          6631: # various bugs in the terminal appear at 9600.  It wedges at the
        !          6632: # bottom of memory (try "cat /usr/dict/words"); ^S and ^Q typed
        !          6633: # on keyboard don't work.  You have to hit BREAK twice to get
        !          6634: # one break at any speed - this is a documented feature.
        !          6635: # Can't use cursor motion because it's memory relative, and
        !          6636: # because it only works in the workspace, not the monitor.
        !          6637: # Same for home. Likewise, standout only works in the workspace.
        !          6638: #
        !          6639: # el was commented out since vi and rogue seem to work better
        !          6640: # simulating it with lots of spaces!
        !          6641: #
        !          6642: # il1 and il had 145ms of padding, but that slowed down vi's ^U
        !          6643: # and didn't seem necessary.
        !          6644: #
        !          6645: tek4024|tek4025|tek4027|tektronix 4024/4025/4027:\
        !          6646:        :am:da:db:\
        !          6647:        :co#80:it#8:li#34:lm#0:\
        !          6648:        :AL=\037up\r\037ili %d\r:CC=^_:DL=\037dli %d\r\006:\
        !          6649:        :DO=\037dow %d\r:LE=\037lef %d\r:RI=\037rig %d\r:\
        !          6650:        :UP=\037up %d\r:al=\037up\r\037ili\r:bl=^G:\
        !          6651:        :cd=\037dli 50\r:cl=\037era\r\n\n:cr=^M:dc=\037dch\r:\
        !          6652:        :dl=\037dli\r\006:do=^F^J:ei=:ic=\037ich\r \010:im=:\
        !          6653:        :is=!com 31\r\n\037sto 9 17 25 33 41 49 57 65 73\r:\
        !          6654:        :ke=\037lea p2\r\037lea p4\r\037lea p6\r\037lea p8\r\037lea f5\r:\
        !          6655:        :ks=\037lea p4 /h/\r\037lea p8 /k/\r\037lea p6 / /\r\037lea p2 /j/\r\037lea f5 /H/\r:\
        !          6656:        :le=^H:nd=\037rig\r:sf=^F^J:ta=^I:up=^K:
        !          6657: tek4025-17|4025-17|4027-17|tek 4025 17 line window:\
        !          6658:        :li#17:\
        !          6659:        :tc=tek4025:
        !          6660: tek4025-17-ws|4025-17-ws|4025-17ws|4027-17ws|4027-17-ws|tek 4025 17 line window in workspace:\
        !          6661:        :is=!com 31\r\n\037sto 9 17 25 33 41 49 57 65 73\r\037wor 17\r\037mon 17\r:\
        !          6662:        :se=\037att s\r:so=\037att e\r:te=\037mon h\r:\
        !          6663:        :ti=\037wor h\r:tc=tek4025-17:
        !          6664: tek4025-ex|tek4027-ex|tek 4025/4027 w/!:\
        !          6665:        :is=\037com 33\r\n!sto 9 17 25 33 41 49 57 65 73\r:\
        !          6666:        :te=\037com 33\r:ti=!com 31\r:tc=tek4025:
        !          6667: # Tektronix 4025a
        !          6668: # From: Doug Gwyn <gwyn@brl-smoke.ARPA>
        !          6669: # The following status modes are assumed for normal operation (replace the
        !          6670: # initial "!" by whatever the current command character is):
        !          6671: #      !COM 29                 # NOTE: changes command character to GS (^])
        !          6672: #      ^]DUP
        !          6673: #      ^]ECH R
        !          6674: #      ^]EOL
        !          6675: #      ^]RSS T
        !          6676: #      ^]SNO N
        !          6677: #      ^]STO 9 17 25 33 41 49 57 65 73
        !          6678: # Other modes may be set according to communication requirements.
        !          6679: # If the command character is inadvertently changed, termcap can't restore it.
        !          6680: # Insert-character cannot be made to work on both top and bottom rows.
        !          6681: # Clear-to-end-of-display emulation via !DLI 988 is too groady to use, alas.
        !          6682: # There also seems to be a problem with vertical motion, perhaps involving
        !          6683: # delete/insert-line, following a typed carriage return.  This terminal sucks.
        !          6684: # Delays not specified; use "stty ixon -ixany" to enable DC3/DC1 flow control!
        !          6685: # (tek4025a: mapped ":pt:" to default tabs; removed obsolete ":xx:".
        !          6686: # This may mean the tek4025a entry won't work any more. -- esr)
        !          6687: tek4025a|4025a|Tektronix 4025A:\
        !          6688:        :am:bs:bw:da:db:pt:xo:\
        !          6689:        :co#80:li#34:\
        !          6690:        :CC=^]:DC=\035dch %d;:DL=\035dli %d;:DO=\035dow %d;:\
        !          6691:        :LE=\035lef %d;:RI=\035rig %d;:SF=\035dow %d;:\
        !          6692:        :UP=\035up %d;:al=\013\035ili;:bl=^G:bt=\035bac;:\
        !          6693:        :ce=\035dch 80;:ch=\r\035rig %d;:\
        !          6694:        :cl=\035era;\n\035rup;:cr=^M:ct=\035sto;:dc=\035dch;:\
        !          6695:        :dl=\035dli;:do=^J:le=^H:nd=\035rig;:\
        !          6696:        :rs=!com 29\035del 0\035rss t\035buf\035buf n\035cle\035dis\035dup\035ech r\035eol\035era g\035for n\035pad 203\035pad 209\035sno n\035sto 9 17 25 33 41 49 57 65 73\035wor 0;:\
        !          6697:        :sf=^J:ta=^I:up=^K:
        !          6698: # From: cbosg!teklabs!davem Wed Sep 16 21:11:41 1981
        !          6699: # Here's the command file that I use to get rogue to work on the 4025.
        !          6700: # It should work with any program using the old curses (e.g. it better
        !          6701: # not try to scroll, or cursor addressing won't work.  Also, you can't
        !          6702: # see the cursor.)
        !          6703: # (This "learns" the arrow keys for rogue. I have adapted it for termcap - mrh)
        !          6704: # (tek4025-cr: mapped ":pt:" to default tabs -- esr)
        !          6705: tek4025-cr|4025-cr|tek 4025 for curses and rogue:\
        !          6706:        :am:bs:pt:\
        !          6707:        :co#80:li#33:\
        !          6708:        :cl=\037era;:cm=\037jum%i%d\054%d;:do=^F^J:\
        !          6709:        :is=!com 31\r\n\037sto 9 17 25 33 41 49 57 65 73\r:\
        !          6710:        :le=^H:nd=\037rig;:nl=^F^J:te=\037wor 0:\
        !          6711:        :ti=\037wor 33h:up=^K:
        !          6712: # next two lines commented out since curses only allows 128 chars, sigh.
        !          6713: #      :ti=\037lea p1/b/\037lea p2/j/\037lea p3/n/\037lea p4/h/\037lea p5/ /\037lea p6/l/\037lea p7/y/\037lea p8/k/\037lea p9/u/\037lea p./f/\037lea pt/`era w/13\037lea p0/s/\037wor 33h:\
        !          6714: #      :te=\037lea p1\037lea p2\037lea p3\037lea p4\037lea pt\037lea p5\037lea p6\037lea p7\037lea p8\037lea p9/la/13\037lea p.\037lea p0\037wor 0:
        !          6715: tek4025ex|4025ex|4027ex|tek 4025 w/!:\
        !          6716:        :is=\037com 33\r\n!sto 9\05417\05425\05433\05441\05449\05457\05465\05473\r:\
        !          6717:        :te=\037com 33\r:ti=!com 31\r:tc=tek4025:
        !          6718: tek4105|4105|tektronix 4105:\
        !          6719:        :am:mi:ms:ul:xn:xt:\
        !          6720:        :co#79:it#8:li#29:\
        !          6721:        :ae=\E[0m:al=\E[1L:as=\E[1m:bl=^G:bt=\E[Z:cd=\E[J:\
        !          6722:        :ce=\E[K:cl=\E[2J\E[H:cm=\E[%i%2;%2H:cr=^M:ct=\E[1g:\
        !          6723:        :dc=\E[1P:dl=\E[1M:do=\E[1B:ei=\E[4l:ho=\E[H:\
        !          6724:        :i1=\E%!1\E[0m:im=\E[4h:is=\E%!1\E[?6141\E[0m:kb=^H:\
        !          6725:        :kd=\E[1B:kl=\E[1D:kr=\E[1C:ku=\E[1A:mb=\E[=3;<7m:\
        !          6726:        :md=\E[=7;<4m:me=\E[=0;<1m:mh=\E[=1;<6m:mk=\E[=6;<5:\
        !          6727:        :mr=\E[=1;<3m:nd=\E[1C:se=\E[=0;<1m:sf=\E[S:\
        !          6728:        :so=\E[=2;<3m:sr=\E[T:ta=^I:ti=\E%!1\E[?6l\E[2J:\
        !          6729:        :ue=\E[=0;<1m:up=\E[1A:us=\E[=5;<2m:
        !          6730:
        !          6731: tek4105-30|4105-30|4015 emulating 30 line vt100:\
        !          6732:        :am:mi:ms:xn:xo:\
        !          6733:        :co#80:it#8:li#30:vt#3:\
        !          6734:        :DO=\E[%dB:K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:\
        !          6735:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:as=^N:bl=^G:\
        !          6736:        :cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:\
        !          6737:        :cs=\E[%i%d;%dr:ct=\E[3g:do=^J:ho=\E[H:k0=\EOy:\
        !          6738:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOt:k6=\EOu:\
        !          6739:        :k7=\EOv:k8=\EOl:k9=\EOw:kb=^H:kd=\EOB:ke=\E[?1l\E>:\
        !          6740:        :kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:mb=\E[5m:\
        !          6741:        :md=\E[1m:me=\E[m\017:mr=\E[7m:nd=\E[C:rc=\E8:\
        !          6742:        :..sa=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t\016%e\017%;:\
        !          6743:        :sc=\E7:se=\E[m:sf=^J:so=\E[1;7m:sr=\EM:st=\EH:ta=^I:\
        !          6744:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          6745:
        !          6746: tek4107|tek4109|4107|4109|tektronix terminals 4107 4109:\
        !          6747:        :am:mi:ms:ul:xn:xt:\
        !          6748:        :co#79:it#8:li#29:\
        !          6749:        :bl=^G:cd=\EJ:ce=\EK:cl=\ELZ:cm=\EY%+ %+ :cr=^M:\
        !          6750:        :do=^J:kb=^H:kd=\EB:kl=\ED:kr=\EC:ku=\EA:le=^H:\
        !          6751:        :mb=\E%!1\E[5m\E%!0:md=\E%!1\E[1m\E%!0:\
        !          6752:        :me=\E%!1\E[m\E%!0:mh=\E%!1\E[<0m\E%!0:\
        !          6753:        :mr=\E%!1\E[7m\E%0:nd=\EC:\
        !          6754:        :..sa=\E%%!1\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m\E%%!0:\
        !          6755:        :se=\E%!1\E[m\E%!0:sf=^J:so=\E%!1\E[7;5m\E%!0:sr=\EI:\
        !          6756:        :ta=^I:ue=\E%!1\E[m\E%!0:up=\EA:us=\E%!1\E[4m\E%!0:\
        !          6757:        :ve=\E%!0:vs=\E%!3:
        !          6758: # Tektronix 4207 with sysline.  In the ancestral termcap file this was 4107-s;
        !          6759: # see the note attached to tek4207.
        !          6760: tek4207-s|Tektronix 4207 with sysline but no memory:\
        !          6761:        :es:hs:\
        !          6762:        :ds=\E7\E[?6l\E[2K\E[?6h\E8:fs=\E[?6h\E8:\
        !          6763:        :i2=\E7\E[?6l\E[2K\E[?6h\E8:\
        !          6764:        :is=\E%!1\E[2;32r\E[132D\E[2g\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[J:\
        !          6765:        :ts=\E7\E[?6l\E[2K\E[;%i%df:tc=tek4107:
        !          6766:
        !          6767: # The 4110 series may be a wonderful graphics series, but they make the 4025
        !          6768: # look good for screen editing.  In the dialog area, you can't move the cursor
        !          6769: # off the bottom line.  Out of the dialog area, ^K moves it up, but there
        !          6770: # is no way to scroll.
        !          6771: #
        !          6772: # Note that there is a floppy for free from Tek that makes the
        !          6773: # 4112 emulate the vt52 (use the vt52 termcap). There is also
        !          6774: # an expected enhancement that will use ANSI standard sequences.
        !          6775: #
        !          6776: # 4112 in non-dialog area pretending to scroll. It really wraps
        !          6777: # but vi is said to work (more or less) in this mode.
        !          6778: #
        !          6779: # 'vi' works reasonably well with this entry.
        !          6780: #
        !          6781: otek4112|o4112-nd|otek4113|otek4114|old tektronix 4110 series:\
        !          6782:        :am:\
        !          6783:        :co#80:li#34:\
        !          6784:        :bl=^G:cl=\E^L:cr=^M:do=^J:le=^H:sf=^J:te=\EKA1\ELV1:\
        !          6785:        :ti=\EKA0\ELV0\EMG0:up=^K:
        !          6786: # The 4112 with the ANSI compatibility enhancement
        !          6787: tek4112|tek4114|tektronix 4110 series:\
        !          6788:        :am:bs:db:\
        !          6789:        :co#80:li#34:\
        !          6790:        :al=\E[L:bt=\E[Z:cd=\E[0J:ce=\E[0K:cl=\E[2J\E[0;0H:\
        !          6791:        :cm=\E[%i%d;%dH:dc=\E[P:dl=\E[M:ei=:ic=\E[@:im=:\
        !          6792:        :is=\E3!1:nd=\E[C:se=\E[m:sf=\E7\E[0;0H\E[M\E8:\
        !          6793:        :so=\E[7m:sr=\E7\E[0;0H\E[L\E8:ue=\E[m:up=\EM:\
        !          6794:        :us=\E[4m:ve=:vs=:
        !          6795: tek4112-nd|4112-nd|4112 not in dialog area:\
        !          6796:        :ns:\
        !          6797:        :up=^K:tc=tek4112:
        !          6798: tek4112-5|4112-5|4112 in 5 line dialog area:\
        !          6799:        :li#5:\
        !          6800:        :tc=tek4112:
        !          6801: # (tek4113: this used to have ":nd=\LM1 \LM0:", someone's mistake;
        !          6802: # removed ":as=\E^N:ae=\E^O:", which had been commented out in 8.3.
        !          6803: # Note, the !0 and !1 sequences in :te:/:ti:/:ve:/:vs: were previously \0410
        !          6804: # and \0411 sequences...I don't *think* they were supposed to be 4-digit
        !          6805: # octal -- esr)
        !          6806: tek4113|tektronix 4113 color graphics, 5 line dialog area:\
        !          6807:        :am:bs:da:eo:\
        !          6808:        :co#80:li#5:\
        !          6809:        :cl=\ELZ:do=^J:is=\EKA1\ELL5\ELV0\ELV1:le=^H:\
        !          6810:        :nd=\ELM1 \ELM0:uc=\010\ELM1_\ELM0:\
        !          6811:        :vb=\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERB0:
        !          6812: tek4113-34|4113-34|tektronix 4113 color graphics, 34 line dialog area:\
        !          6813:        :li#34:\
        !          6814:        :is=\EKA1\ELLB2\ELV0\ELV1:tc=tek4113:
        !          6815: # :ns: left off to allow vi visual mode. APL font (:as=\E^N:/:ae=\E^O:) not
        !          6816: # supported here. :uc: is slow, but looks nice. Suggest setenv MORE -up .
        !          6817: # :vb: needs enough delay to let you see the background color being toggled.
        !          6818: # (tek4113-nd: mapped ":pt:" to default tabs -- esr)
        !          6819: tek4113-nd|4113-nd|tektronix 4113 color graphics, no dialog area:\
        !          6820:        :am:bs:eo:pt:\
        !          6821:        :co#80:li#34:\
        !          6822:        :cl=\E^L:do=^J:ho=\ELF7l\177 @:\
        !          6823:        :is=\ELZ\EKA0\ELF7l\177 @:le=^H:ll=\ELF hl @:nd=^I:\
        !          6824:        :se=\EMT1:so=\EMT2:uc=\010\EMG1_\EMG0:up=^K:\
        !          6825:        :vb=\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERBA4\ERB0:\
        !          6826:        :vs=\ELZ\EKA0:
        !          6827: # This entry is from Tek. Inc.  (Brian Biehl)
        !          6828: # (tek4115: mapped ":pt:" to default tabs; :bc: renamed to :le: -- esr)
        !          6829: otek4115|Tektronix 4115:\
        !          6830:        :am:bs:da:db:eo:pt:\
        !          6831:        :co#80:li#34:\
        !          6832:        :al=\E[L:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\
        !          6833:        :cm=\E[%i%d;%dH:dc=\E[P:dl=\E[M:do=\E[B:ei=\E[4l:\
        !          6834:        :ho=\E[;H:if=/usr/share/tabset/vt100:im=\E[4h:\
        !          6835:        :is=\E%!0\E%\014\ELV0\EKA1\ELBB2\ENU@=\ELLB2\ELM0\ELV1\EKYA?\E%!1\E[<1l\E[?7h\E[?8h\E[34;1H\E[34B\E[0m:\
        !          6836:        :kb=^H:ke=\E>:ks=\E=:le=\E[D:nd=\E[C:se=\E[m:\
        !          6837:        :so=\E[7m:sr=\EM:te=\E%!0\ELBG8\E%!1\E[34;1H\E[J:\
        !          6838:        :ti=\E%!0\ELBB2\E%!1:ue=\E[m:up=\E[A:us=\E[4m:\
        !          6839:        :ve=\E%!0\ELBG8\E%!1\E[34;1H:vs=\E%!0\ELBB2\E%!1:
        !          6840: tek4115|newer tektronix 4115 entry with more ANSI capabilities:\
        !          6841:        :am:xo:\
        !          6842:        :co#80:li#34:\
        !          6843:        :AL=\E[%dL:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:LE=\E[%dD:\
        !          6844:        :RI=\E[%dC:UP=\E[%dA:al=\E[L:bl=^G:bt=\E[Z:cd=\E[J:\
        !          6845:        :ce=\E[K:ch=\E[%+^AG:cl=\E[H\E[J:cm=\E[%i%d;%dH:\
        !          6846:        :cr=^M:ct=\E[2g:cv=\E[%+^Ad:dc=\E[P:dl=\E[M:do=^J:\
        !          6847:        :ei=:ho=\E[H:ic=\E[@:im=:kb=^H:kd=\E[B:kh=\E[H:\
        !          6848:        :kl=\E[D:kr=\E[C:ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:\
        !          6849:        :me=\E[0m:mk=\E[8m:mr=\E[7m:nd=\E[C:\
        !          6850:        :..rp=%p1%c\E[%p2%{1}%-%db:\
        !          6851:        :..sa=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m:\
        !          6852:        :se=\E[m:sf=^J:so=\E[7m:st=\EH:ta=^I:ue=\E[m:up=\E[A:\
        !          6853:        :us=\E[4m:
        !          6854: # The tek4125 emulates a vt100 incorrectly - the scrolling region
        !          6855: # command is ignored.  The following entry replaces the :cs: with the needed
        !          6856: # :al:, :dl:, and :im:; removes some cursor pad commands that the tek4125
        !          6857: # chokes on; and adds a lot of initialization for the tek dialog area.
        !          6858: # Note that this entry uses all 34 lines and sets the cursor color to green.
        !          6859: # Steve Jacobson 8/85
        !          6860: # (tek4125: there were two "\!"s in the is that I replaced with "\E!" -- esr)
        !          6861: tek4125|4125:\
        !          6862:        :li#34:\
        !          6863:        :al=\E[1L:cs@:dl=\E[1M:im=\E1:\
        !          6864:        :is=\E%\E!0\EQD1\EUX03\EKA\ELBB2\ELCE0\ELI100\ELJ2\ELLB2\ELM0\ELS1\ELX00\ELV1\E%\E!1\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:\
        !          6865:        :ks=\E=:rc@:sc@:tc=vt100:
        !          6866:
        !          6867: # From: <jcoker@ucbic>
        !          6868: # (tek4107: mapped ":pt:" to default tabs.  This was the termcap file's
        !          6869: # entry for the 4107/4207, but SCO supplied another, less capable 4107 entry.
        !          6870: # So we'll use that for 4107 and note that if jcoker wasn't confused you
        !          6871: # may be able to use this one. -- esr)
        !          6872: tek4207|Tektronix 4207 graphics terminal with memory:\
        !          6873:        :am:bs:bw:mi:pt:ul:xn:\
        !          6874:        :co#80:li#32:\
        !          6875:        :al=3\E[L:bt=\E[Z:cd=\E[J:ce=5\E[K:cl=156\E[H\E[J:\
        !          6876:        :cm=\E[%i%d;%dH:dc=4\E[P:dl=3\E[M:do=^J:ei=:ho=\E[H:\
        !          6877:        :ic=4\E[@:im=:\
        !          6878:        :is=\E%!0\ELBP0\E%!1\E[H\E[2g\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[8C\EH\E[J:\
        !          6879:        :kd=\ED:kh=\E[H:kl=\E[D:kr=\E[C:ku=\EM:le=^H:\
        !          6880:        :mb=\E[5m:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:se=\E[m:\
        !          6881:        :so=\E[7m:te=\E[?6h\E%!0\ELBP0\E%!1\E[32;1f:\
        !          6882:        :ti=\E[?6l\E[H\E[J:ue=\E[m:up=\EM:us=\E[4m:
        !          6883:
        !          6884: # From: <carolyn@dali.berkeley.edu>  Thu Oct 31 12:54:27 1985
        !          6885: # (tek4404: There was a "\!" in :ti: that I replaced with "\E!";
        !          6886: # also mapped ":pt:" to default tabs -- esr)
        !          6887: tek4404|4404:\
        !          6888:        :bs:pt:\
        !          6889:        :co#80:li#32:\
        !          6890:        :al=\E[1L:cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\
        !          6891:        :cm=\E[%i%d;%dH:cs=\E[%i%d;%dr:dc=\E[P:dl=\E[1M:\
        !          6892:        :do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:kd=\E[B:ke=\E[?1h:\
        !          6893:        :kl=\E[D:kr=\E[C:ks=\E[?1l:ku=\E[A:mb=\E[5m:md=\E[1m:\
        !          6894:        :me=\E[m:nd=\E[C:rc=\E8:sc=\E7:se=\E[27m:so=\E[7m:\
        !          6895:        :ta=\E[2I:te=\E[1;1H\E[0J\E[?6h\E[?1l:\
        !          6896:        :ti=\E%\E!1\E[1;32r\E[?6l\E>:ue=\E[m:up=\E[A:\
        !          6897:        :us=\E[4m:
        !          6898: # t500 is a local entry for the oddball Tek 500 owned by Fluke
        !          6899: # Labs
        !          6900: #
        !          6901: t500|Tek series 500:\
        !          6902:        :am:bw:\
        !          6903:        :co#80:li#25:\
        !          6904:        :bl=^G:cl=\005:cm=\E=%+ %+ :cr=^M:do=^J:ho=^T:le=^H:\
        !          6905:        :sf=^J:
        !          6906: # I added the is string - straight Unix has ESC ; in the login
        !          6907: # string which sets a ct8500 into monitor mode (aka 4025 snoopy
        !          6908: # mode). The is string here cleans up a few things (but not
        !          6909: # everything).
        !          6910: #
        !          6911: ct8500|tektronix ct8500:\
        !          6912:        :am:bw:da:db:\
        !          6913:        :co#80:li#25:\
        !          6914:        :al=\E^L:bl=^G:bt=\E^I:cd=\E^U:ce=\E^T:cl=\E^E:\
        !          6915:        :cm=\E|%+ %+ :cr=^M:dc=\E^]:dl=\E^M:do=^J:ei=:\
        !          6916:        :ic=\E^\:im=:is=\037\EZ\Ek:le=^H:me=\E :nd=\ES:\
        !          6917:        :se=\E :sf=^J:so=\E$:sr=\E^A:ta=^I:ue=\E :up=\ER:\
        !          6918:        :us=\E!:
        !          6919:
        !          6920: # Tektronix 4205 terminal.
        !          6921: #
        !          6922: # am is not defined because the wrap around occurs not when the char.
        !          6923: # is placed in the 80'th column, but when we are attempting to type
        !          6924: # the 81'st character on the line.
        !          6925: #
        !          6926: # Bold, dim, and standout are simulated by colors and thus not allowed
        !          6927: # with colors.  The tektronix color table is mapped into the RGB color
        !          6928: # table by setf/setb. All colors are reset to factory specifications by oc.
        !          6929: # The initc cap uses RGB notation to define colors.  for arguments 1-3 the
        !          6930: # interval (0-1000) is broken into 8 smaller sub-intervals (125).  Each sub-
        !          6931: # interval then maps into pre-defined value.
        !          6932: tek4205|4205|tektronix 4205:\
        !          6933:        :mi:ms:\
        !          6934:        :co#80:it#8:li#30:\
        !          6935:        :AL=\E[%dL:DO=\E[%dB:IC=\E[%d@:LE=\E[%dD:RI=\E[%dC:\
        !          6936:        :UP=\E[%dA:ae=^O:al=\E[1L:as=^N:bl=^G:bt=\E[Z:\
        !          6937:        :cd=\E[J:ce=\E[K:cl=\E[2J\E[H:cm=\E[%i%d;%dH:cr=^M:\
        !          6938:        :ct=\E[1g:dc=\E[1P:dl=\E[1M:do=\E[B:ec=\E%dX:\
        !          6939:        :ei=\E[4l:ho=\E[H:i1=\E%!0\ETM1\E%!1\E[0m:im=\E[4h:\
        !          6940:        :k0=\EOA:k1=\EOB:k2=\EOC:k3=\EOD:k4=\EP:k5=\EQ:\
        !          6941:        :k6=\ER:k7=\ES:kb=^H:kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:\
        !          6942:        :le=\E[D:mb=\E[5m:md=\E[=7;<4m:\
        !          6943:        :me=\E[=0;<1m\E[24;25;27m\017:mh=\E[=1;<6m:\
        !          6944:        :mk=\E[=6;<5:mr=\E[7m:nd=\E[C:se=\E[=0;<1m:sf=\ED:\
        !          6945:        :so=\E[=2;<3m:sr=\EM:ta=^I:ti=\E%%!1\E[?6l\E[2J:\
        !          6946:        :ue=\E[24m:up=\E[A:us=\E[4m:
        !          6947:
        !          6948: #### Teletype (tty)
        !          6949: #
        !          6950: # These are the hardcopy Teletypes from before AT&T bought the company,
        !          6951: # clattering electromechanical dinosaurs in Bakelite cases that printed on
        !          6952: # pulpy yellow roll paper.  If you remember these you go back a ways.
        !          6953: # Teletype-branded VDTs are listed in the AT&T section.
        !          6954: #
        !          6955: # The earliest UNIXes were designed to use these clunkers; nroff and a few
        !          6956: # other programs still default to emitting codes for the Model 37.
        !          6957: #
        !          6958:
        !          6959: tty33|model 33 teletype:\
        !          6960:        :hc:os:xo:\
        !          6961:        :co#72:\
        !          6962:        :bl=^G:cr=^M:do=^J:sf=^J:
        !          6963: tty35|model 35 teletype:\
        !          6964:        :tc=tty33:
        !          6965: tty37|model 37 teletype:\
        !          6966:        :bs:hc:os:xo:\
        !          6967:        :bl=^G:cr=^M:do=^J:hd=\E9:hu=\E8:le=^H:sf=^J:up=\E7:
        !          6968:
        !          6969: # There are known to be at least three flavors of the tty40, all seem more
        !          6970: # like IBM half duplex forms fillers than ASCII terminals.  They have lots of
        !          6971: # awful braindamage, such as printing a visible newline indicator after each
        !          6972: # newline.  The 40-1 is a half duplex terminal and is hopeless.  The 40-2 is
        !          6973: # braindamaged but has hope and is described here.  The 40-4 is a 3270
        !          6974: # lookalike and beyond hope.  The terminal has visible bell but I don't know
        !          6975: # it - it's null here to prevent it from showing the BL character.
        !          6976: # There is an \EG in :nl: because of a bug in old vi (if stty says you have
        !          6977: # a "newline" style terminal (-crmode) vi figures all it needs is nl
        !          6978: # to get crlf, even if :cr: is not ^M.)
        !          6979: # (tty40: removed obsolete ":nl=\EG\EB:", it's just do+cr -- esr)
        !          6980: tty40|ds40|ds40-2|dataspeed40|teletype dataspeed 40/2:\
        !          6981:        :xo:\
        !          6982:        :co#80:li#24:\
        !          6983:        :al=\EL:cd=\EJ:cl=\EH\EJ:cr=\EG:ct=\EH\E2:dc=\EP:\
        !          6984:        :dl=\EM:do=\EB:ei=:ho=\EH:ic=\E^:im=:kb=^]:kl=^H:\
        !          6985:        :le=^H:nd=\EC:pf=^T:po=\022:se=\E4:sf=\ES:so=\E3:\
        !          6986:        :sr=\ET:st=\E1:ta=\E@:up=\E7:
        !          6987: tty43|model 43 teletype:\
        !          6988:        :am:bs:hc:os:xo:\
        !          6989:        :co#132:\
        !          6990:        :bl=^G:cr=^M:do=^J:kb=^H:le=^H:sf=^J:
        !          6991:
        !          6992: #### Tymshare
        !          6993: #
        !          6994:
        !          6995: scanset|sc410|sc415|Tymshare Scan Set:\
        !          6996:        :am:bw:ms:\
        !          6997:        :co#80:li#24:\
        !          6998:        :ae=^O:as=^N:bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:\
        !          6999:        :cm=\EY%+ %+ :cr=^M:do=^J:ho=\EH:kd=\EB:kl=\ED:\
        !          7000:        :kr=\EC:ku=\EA:le=^H:nd=^I:pf=\E;0:po=\E;0:ps=\E;3:\
        !          7001:        :rc=^C:sc=^B:sf=^J:up=^K:
        !          7002:
        !          7003: scanset-n|Tymshare Scan Set in 40 col mode:\
        !          7004:        :tc=scanset:
        !          7005:
        !          7006: #### Volker-Craig (vc)
        !          7007: #
        !          7008:
        !          7009: # Missing in vc303a and vc303 descriptions:  they scroll 2 lines at a time
        !          7010: # every other linefeed.
        !          7011: vc303a|vc403a|volker-craig 303a:\
        !          7012:        :am:bs:ns:\
        !          7013:        :co#80:li#24:\
        !          7014:        :bl=^G:ce=\026:cl=\030:cr=^M:do=^J:ho=\031:kd=^J:\
        !          7015:        :kl=^H:kr=^U:ku=^Z:le=^H:ll=^P:nd=^U:up=^Z:
        !          7016: vc303|vc103|vc203|volker-craig 303:\
        !          7017:        :am:bs:ns:\
        !          7018:        :co#80:li#24:\
        !          7019:        :bl=^G:cl=\014:cr=^M:do=^J:ho=\013:kd=^J:kl=^H:kr=^I:\
        !          7020:        :ku=^N:le=^H:ll=\017W:nd=^I:up=^N:
        !          7021: # (vc404: removed obsolete ":ma=^Z^P^U :" -- esr)
        !          7022: vc404|volker-craig 404:\
        !          7023:        :am:bs:\
        !          7024:        :co#80:li#24:\
        !          7025:        :bl=^G:cd=\027:ce=\026:cl=\030:cm=\020%+ %+ :cr=^M:\
        !          7026:        :do=^J:ho=\031:kd=^J:kl=^H:kr=^U:ku=^Z:le=^H:nd=^U:\
        !          7027:        :sf=^J:up=^Z:
        !          7028: vc404-s|volker-craig 404 w/standout mode:\
        !          7029:        :do=^J:se=^O:so=^N:tc=vc404:
        !          7030: # (vc404-na: removed obsolete ":ma@:" -- esr)
        !          7031: vc404-na|volker-craig 404 w/no arrow keys:\
        !          7032:        :kr@:ku@:tc=vc404:
        !          7033: vc404-s-na|volker-craig 404 w/standout mode and no arrow keys:\
        !          7034:        :se=^O:so=^N:tc=vc404-na:
        !          7035: # From: <wolfgang@cs.sfu.ca>
        !          7036: vc414|vc414h|Volker-Craig 414H in sane escape mode.:\
        !          7037:        :am:bs:\
        !          7038:        :co#80:li#24:\
        !          7039:        :al=\E\032:cd=\E^X:ce=10\E\017:cl=\E\034:dc=\E3:\
        !          7040:        :do=\E^K:ei=:ic=\E\072:im=:k0=\EA:k1=\EB:k2=\EC:\
        !          7041:        :k3=\ED:k4=\EE:k5=\EF:k6=\EG:k7=\EH:kd=\E^K:kh=\E^R:\
        !          7042:        :kl=^H:kr=^P:ku=\E^L:nd=^P:se=\E^_:so=\E^Y:up=\E^L:
        !          7043: vc414h-noxon:\
        !          7044:        :cm=\E\021%r%.%.:dl=\E\023:ho=\E^R:tc=vc414h:
        !          7045: vc415|volker-craig 415:\
        !          7046:        :cl=^L:tc=vc404:
        !          7047:
        !          7048: ######## OBSOLETE PERSONAL-MICRO CONSOLES AND EMULATIONS
        !          7049: #
        !          7050:
        !          7051: #### IBM PC and clones
        !          7052: #
        !          7053:
        !          7054: # The pcplot IBM-PC terminal emulation program is really messed up. It is
        !          7055: # supposed to emulate a vt-100, but emulates the wraparound bug incorrectly,
        !          7056: # doesn't support scrolling regions, ignores add line commands, and ignores
        !          7057: # delete line commands. Consequently, the resulting behavior looks like a
        !          7058: # crude adm3a-type terminal.
        !          7059: # Steve Jacobson 8/85
        !          7060: pcplot|pc-plot terminal emulation program:\
        !          7061:        :xn@:\
        !          7062:        :cs@:rc@:sc@:tc=vt100:
        !          7063: # (kaypro: removed obsolete ":ma=^K^P:" -- esr)
        !          7064: kaypro|kaypro2|kaypro II:\
        !          7065:        :am:bs:\
        !          7066:        :co#80:li#24:\
        !          7067:        :cl=1\032:cm=\E=%+ %+ :ho=^^:kd=^J:kl=^H:kr=^L:ku=^K:\
        !          7068:        :nd=^L:up=^K:
        !          7069: sanyo55|sanyo|sanyo mbc-55x pc compatible:\
        !          7070:        :am:bs:\
        !          7071:        :co#80:li#25:\
        !          7072:        :cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:nd=\E[C:\
        !          7073:        :se=\E[m:so=\E[7m:ue=\E[m:up=\E[A:us=\E[4m:
        !          7074:
        !          7075: # From IBM, Thu May  5 19:35:27 1983
        !          7076: ibmpc|ibm-pc|ibm5051|5051|IBM Personal Computer (no ANSI.SYS):\
        !          7077:        :am:\
        !          7078:        :co#80:li#24:\
        !          7079:        :bl=^G:cl=^L^K:cr=^M^^:do=^J:ho=^K:im=\200R:kd=^_:\
        !          7080:        :le=^]:nd=^\:sf=\n:up=^^:
        !          7081:
        !          7082: #### Apple
        !          7083: #
        !          7084:
        !          7085: # apple -- works with an Apple ][+ that is equipped with a Videx 80 column
        !          7086: # card in slot 3. A special routine must be installed at the apple end to
        !          7087: # enable scroll down, here indicated with a ^U.  The Videx card must have
        !          7088: # inverse char set, which is used as standout.
        !          7089: apple|apple-v80|Apple][+ w/Videx80 & custom scroll down:\
        !          7090:        :am:xn:\
        !          7091:        :co#80:li#24:\
        !          7092:        :ae=^Z3:as=^Z2:bl=^G:cd=\013:ce=\035:cl=\014:\
        !          7093:        :..cm=\r\036%r%p1%{32}%+%c%p2%{32}%+%c$<6>:cr=^M:\
        !          7094:        :do=^J:ho=\031:le=\010:nd=^\:se=^Z2:sf=^J:so=^Z3:\
        !          7095:        :sr=^P:up=^_:
        !          7096: # (appleII: mapped ":pt:" to default tabs -- esr)
        !          7097: appleII|apple ii plus:\
        !          7098:        :am:bs:pt:\
        !          7099:        :co#80:li#24:\
        !          7100:        :cd=^K:ce=^]:cl=^L:cm=\036%r%+ %+ :do=^J:ho=\E^Y:\
        !          7101:        :is=\024T1\016:kd=^J:kr=^U:nd=^\:se=^N:so=^O:up=^_:\
        !          7102:        :vb=\024G1\024T1:ve=^TC2:vs=^TC6:
        !          7103: # Originally by Gary Ford 21NOV83
        !          7104: # From: <ee178aci%sdcc7@SDCSVAX.ARPA>  Fri Oct 11 21:27:00 1985
        !          7105: apple-80|apple II with smarterm 80 col:\
        !          7106:        :am:bs:bw:\
        !          7107:        :co#80:li#24:\
        !          7108:        :bt=^R:cd=10*\013:ce=10\035:cl=10*\014:\
        !          7109:        :cm=\036%r%+ %+ :cr=10*\r:do=^J:ho=^Y:le=^H:nd=^\:\
        !          7110:        :up=^_:
        !          7111: apple-soroc|apple emulating soroc 120:\
        !          7112:        :am:\
        !          7113:        :co#80:li#24:\
        !          7114:        :bl=^G:cd=\EY:ce=\ET:cl=\E*:cm=\E=%+ %+ :cr=^M:do=^J:\
        !          7115:        :ho=^^:kd=^J:kl=^H:kr=^L:ku=^K:le=^H:nd=^L:sf=^J:\
        !          7116:        :up=^K:
        !          7117: # From Peter Harrison, Computer Graphics Lab, San Francisco
        !          7118: #   ucbvax!ucsfmis!harrison  .....uucp
        !          7119: #   ucbvax!ucsfmis!harrison@BERKELEY   .......ARPA
        !          7120: # "These two work.  If you don't have the inverse video chip for the
        !          7121: # Apple with videx then remove the so and se fields."
        !          7122: # (DaleApple: mapped ":pt:" to default tabs -- esr)
        !          7123: DaleApple|Apple with videx videoterm 80 column board with inverse video:\
        !          7124:        :am:bs:pt:xn:\
        !          7125:        :co#80:li#24:\
        !          7126:        :cd=^K:ce=^]:cl=300\014:cm=\036%r%+ %+ :do=^J:ho=^Y:\
        !          7127:        :kd=^J:kh=^Y:kl=^H:kr=^U:le=^H:nd=^\:se=^Z2:so=^Z3:\
        !          7128:        :up=^_:
        !          7129: # (lisa: this had forms-drawing capabilities
        !          7130: #      :GV=`:GH=a:G1=c:G2=f:G3=e:G4=d:GU=u:GD=s:GC=b:GL=v:GR=t:
        !          7131: # I renamed GS/GE/CO/CF, mapped ":pt:" to default tabs -- esr)
        !          7132: lisa|apple lisa console display, black on white:\
        !          7133:        :am:bs:eo:ms:pt:\
        !          7134:        :co#88:li#32:\
        !          7135:        :ae=\E[10m:al=\E[L:as=\E[11m:cd=\E[J:ce=\E[K:cl=^L:\
        !          7136:        :cm=\E[%i%d;%dH:dc=\E[P:dl=\E[M:do=\E[B:ei=:ho=\E[H:\
        !          7137:        :ic=\E[@:im=:is=\E>\E[0m\014:kb=^H:kd=\E[B:kl=\E[D:\
        !          7138:        :kr=\E[C:ku=\E[A:nd=\E[C:se=\E[m:so=\E[7m:ue=\E[m:\
        !          7139:        :up=\E[A:us=\E[4m:vi=\E[5h:vs=\E[5l:
        !          7140: liswb|apple lisa console display, white on black:\
        !          7141:        :is=\E>\E[0;7m\014:se=\E[0;7m:so=\E[0m:ue=\E[0;7m:\
        !          7142:        :us=\E[4m:tc=lisa:
        !          7143: mac|macintosh|Macintosh with MacTerminal:\
        !          7144:        :xn:\
        !          7145:        :dN#30:\
        !          7146:        :al=20\E[L:dc=7\E[P:dl=20\E[M:ei=:ic=9\E[@:im=:ip=7:tc=vt100:
        !          7147:
        !          7148: #### Radio Shack/Tandy
        !          7149: #
        !          7150:
        !          7151: # (coco3: This had "ta" used incorrectly as a boolean and bl given as "bl#7".
        !          7152: # I read these as mistakes for ":it#8:" and ":bl=\007:" respectively -- esr)
        !          7153: # From: <{pbrown,ctl}@ocf.berkeley.edu> 12 Mar 90
        !          7154: coco3|os9LII|Tandy CoCo3 24*80 OS9 Level II:\
        !          7155:        :am:bs:\
        !          7156:        :co#80:it#8:li#24:\
        !          7157:        :al=^_0:bl=^G:cd=^K:ce=^D:cl=5*\014:cm=2\002%r%+ %+ :\
        !          7158:        :dl=^_1:do=^J:ho=^A:kd=^J:kl=^H:kr=^I:ku=^L:mb=^_":\
        !          7159:        :md=\E\072^A:me=\037!\E\072\200:mr=^_ :nd=^F:se=^_!:\
        !          7160:        :so=^_ :ue=^_#:up=^I:us=^_":ve=^E!:vi=^E :
        !          7161: trs80|trs-80|radio shack trs-80 Model I:\
        !          7162:        :am:bs:\
        !          7163:        :co#64:li#16:\
        !          7164:        :bl=^G:cr=^M:do=^J:le=^H:sf=^J:
        !          7165: # (trs2: mapped ":pt:" to default tabs; removed obsolete ":nl=^_:" -- esr)
        !          7166: trs2|trsII|trs80II|Radio Shack Model II using P&T CP/M:\
        !          7167:        :am:bs:ms:pt:\
        !          7168:        :co#80:li#24:\
        !          7169:        :al=^D:bl=^G:cd=^B:ce=^A:cl=^L:cm=\EY%+ %+ :cr=^M:\
        !          7170:        :dl=^K:do=^_:ho=^F:kb=^H:kd=^_:kl=^\:kr=^]:ku=^^:\
        !          7171:        :nd=^]:se=^O:sf=^J:so=^N:up=^^:
        !          7172: # From: Kevin Braunsdorf <ksb@mentor.cc.purdue.edu>
        !          7173: # (This had unknown capabilities
        !          7174: #      :GV=s:GH=u:GU=e:GD=c:G1=`:G2=_:G3=b:G4=a:\
        !          7175: #      :BN=\E[?33h:BF=\E[?33l:UC=\E[_ q:BC=\E[\177 q:\
        !          7176: #      :CN=\ERC:CF=\ERc:NR=\ERD:NM=\ER@:
        !          7177: # I renamed GS/GE,also deleted the unnecessary ":kn#2:", ":sg#0:"
        !          7178: # and mapped ":pt:" to default tabs -- esr)
        !          7179: trs16|trs-80 model 16 console:\
        !          7180:        :am:bs:pt:\
        !          7181:        :co#80:li#24:sg#0:\
        !          7182:        :ae=\ERg:al=\EL:as=\ERG:bl=^G:cd=\EJ:ce=\EK:cl=^L:\
        !          7183:        :cm=\EY%+ %+ :cr=^M:dc=\EQ:dl=\EM:do=\EB:ei=:ho=\EH:\
        !          7184:        :ic=\EP:im=:k0=^A:k1=^B:k2=^D:k3=^L:k4=^U:k5=^P:\
        !          7185:        :k6=^N:k7=^S:kb=^H:kd=\EB:kh=^W:kl=\ED:kr=\EC:ku=\EA:\
        !          7186:        :le=^H:nd=\EC:pf=\E]+:po=\E]=:se=\ER@:sf=^J:so=\ERD:\
        !          7187:        :ta=^I:up=\EA:ve=\ERC:vi=\ERc:
        !          7188: # From: Suk Lee <..!{decvax,linus,allegra,ihnp4}!utcsrgv!spoo>
        !          7189: # (civis/cnorm added from SCO description)
        !          7190: trs100|Radio Shack Model 100:\
        !          7191:        :am:bs:xt:\
        !          7192:        :co#40:li#8:\
        !          7193:        :al=\EL:bl=^G:cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :\
        !          7194:        :cr=^M:dl=\EM:do=^J:ho=\EH:kb=^H:kd=^_:kl=^]:kr=^\:\
        !          7195:        :ku=^^:le=^H:nd=\EC:se=\Eq:sf=^J:so=\Ep:up=\EA:\
        !          7196:        :ve=\EP:vi=\EQ:
        !          7197: trs200|Tandy Model 200:\
        !          7198:        :am:xt:\
        !          7199:        :co#40:li#16:\
        !          7200:        :al=\EL:bl=^G:cd=^L:ce=\EK:cl=\EE:cm=\EY%+ %+ :cr=^M:\
        !          7201:        :dl=\EM:do=^_:kd=^_:kl=^]:kr=^\:ku=^^:le=^H:nd=^\:\
        !          7202:        :se=\Eq:sf=^J:so=\Ep:up=\EA:
        !          7203: trs600|Tandy Model 600:\
        !          7204:        :am:\
        !          7205:        :co#80:li#15:\
        !          7206:        :bl=^G:cl=\EH\EE:cm=\EY%+ 040%+ :cr=^M:do=\EB:kd=\EB:\
        !          7207:        :kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:sf=^J:ta=^I:\
        !          7208:        :up=\EA:
        !          7209:
        !          7210: #### Atari ST
        !          7211: #
        !          7212:
        !          7213: # From: Simson L. Garfinkel <simsong@media-lab.mit.edu>
        !          7214: # (atari: mapped ":pt:" to default tabs -- esr)
        !          7215: atari|atari st:\
        !          7216:        :am:bs:pt:\
        !          7217:        :co#80:li#25:\
        !          7218:        :al=\EL:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :dl=\EM:\
        !          7219:        :do=\EB:kd=\EB:kl=\ED:kr=\EC:ku=\EA:nd=\EC:se=\Eq:\
        !          7220:        :so=\Ep:sr=\EI:up=\EA:
        !          7221: # UniTerm terminal program for the Atari ST:  49-line VT220 emulation mode
        !          7222: # From: Paul M. Aoki <aoki@ucbvax.berkeley.edu>
        !          7223: uniterm|uniterm49|UniTerm VT220 emulator, 49 lines:\
        !          7224:        :li#49:\
        !          7225:        :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[1;49r\E[49;1H:tc=vt220:
        !          7226:
        !          7227: #### Commodore Business Machines
        !          7228: #
        !          7229: # Formerly located in West Chester, PA; went spectacularly bust in 1994
        !          7230: # after years of shaky engineering and egregious mismanagement.  Made one
        !          7231: # really nice machine (the Amiga) and boatloads of nasty ones (PET, C-64,
        !          7232: # C-128, VIC-20).  The C-64 is said to have been the most popular machine
        !          7233: # ever (most units sold); they can still be found gathering dust in closets
        !          7234: # everywhere.
        !          7235: #
        !          7236:
        !          7237: # From: Kent Polk <kent@swrinde.nde.swri.edu>, 30 May 90
        !          7238: # Added a few more entries, converted caret-type control sequence (^x) entries
        !          7239: # to '\0xx' entries since a couple of people mentioned losing '^x' sequences.
        !          7240: #
        !          7241: # :as:, :ae:                   Support for alternate character sets.
        !          7242: # :ve=\E[\040p:vi=\E[\060\040p:        cursor visible/invisible.
        !          7243: # :xn:  vt100 kludginess at column 80/NEWLINE ignore after 80 cols(Concept)
        !          7244: #     This one appears to fix a problem I always had with a line ending
        !          7245: #     at 'width+1' (I think) followed by a blank line in vi. The blank
        !          7246: #     line tended to disappear and reappear depending on how the screen
        !          7247: #     was refreshed. Note that this is probably needed only if you use
        !          7248: #     something like a Dnet Fterm with the window sized to some peculiar
        !          7249: #     dimension larger than 80 columns.
        !          7250: # :k0=\E9~:    map F10 to k0 - could have F0-9 -> k0-9, but ... F10 was 'k;'
        !          7251: # (amiga: removed obsolete ":kn#10:" -- esr)
        !          7252: amiga|Amiga ANSI:\
        !          7253:        :am:bs:bw:xn:\
        !          7254:        :co#80:li#24:\
        !          7255:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          7256:        :LE=\E[%dD:RI=\E[%dC:SF=\E[%dS:SR=\E[%dT:UP=\E[%dA:\
        !          7257:        :ae=^O:al=\E[L:as=^N:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:\
        !          7258:        :cl=\E[H\E[J:cm=\E[%i%d;%dH:dc=\E[P:dl=\E[M:do=\E[B:\
        !          7259:        :ei=:ho=\E[H:ic=\E[@:im=:is=\E[20l:k0=\E9~:k1=\E0~:\
        !          7260:        :k2=\E1~:k3=\E2~:k4=\E3~:k5=\E4~:k6=\E5~:k7=\E6~:\
        !          7261:        :k8=\E7~:k9=\E8~:kb=^H:kd=\EB:kl=\ED:kr=\EC:ku=\EA:\
        !          7262:        :le=\E[D:mb=\E[7;2m:md=\E[1m:me=\E[0m:mh=\E[2m:\
        !          7263:        :mk=\E[8m:mr=\E[7m:nd=\E[C:rs=\Ec:se=\E[0m:sf=\E[S:\
        !          7264:        :so=\E[7m:sr=\E[T:ue=\E[0m:up=\E[A:us=\E[4m:vb=^G:\
        !          7265:        :ve=\E[ p:vi=\E[0 p:
        !          7266:
        !          7267: # The legendary home of B1FF...
        !          7268: vic20|vic|VIC-20 Personal Computer:\
        !          7269:        :am:\
        !          7270:        :co#22:li#20:\
        !          7271:        :bl=^G:cl=^K^L:cr=^M:do=^J:ho=^L:nd=^\:sf=^J:up=^^:
        !          7272:
        !          7273: #### CompuColor
        !          7274: #
        !          7275: # These were consoles for a line of Z80-based micros dating from around 1977.
        !          7276: #
        !          7277:
        !          7278: # These compucolors appear similar, but they at least have different
        !          7279: # sized screens.  I don't know what's going on here.
        !          7280: # (compucolor: removed obsolete ":bc=^Z:" -- esr)
        !          7281: compucolor|isc8001|intecolor:\
        !          7282:        :am:\
        !          7283:        :co#80:li#47:\
        !          7284:        :al=\EU:bl=^G:cl=\014:cr=\r:dl=\EV\034:do=\n:\
        !          7285:        :ei=\022\EK:im=\023\EQ:kd=^J:kh=^H:kl=^Z:kr=^Y:ku=^\:\
        !          7286:        :le=\032:nd=\031:sf=\n:ue=\022:up=\034:us=\021:
        !          7287: # (compucolor2: mapped ":pt:" to default tabs,
        !          7288: # removed obsolete ":bc=^Z:" -- esr)
        !          7289: compucolor2|compucolorII:\
        !          7290:        :am:pt:\
        !          7291:        :co#64:li#32:\
        !          7292:        :bl=^G:cl=^L:cm=\003%r%.%.:cr=^M:do=^J:ho=^H:le=^Z:\
        !          7293:        :nd=^Y:sf=^J:ta=^I:up=^\:
        !          7294:
        !          7295: #### Exidy Sorcerer
        !          7296: #
        !          7297:
        !          7298: # (exidy: mapped ":pt:" to default tabs -- esr)
        !          7299: exidy|exidy2500|exidy sorcerer as dm2500:\
        !          7300:        :am:\
        !          7301:        :co#64:li#30:\
        !          7302:        :al=^P^J^X:bl=^G:cd=^X:ce=^W:cl=^^:\
        !          7303:        :..cm=\014%p2%'`'%^%c%p1%'`'%^%c:cr=^M:dc=^H:\
        !          7304:        :dl=^P^Z^X:dm=^P:do=^J:ei=^X:ho=^B:ic=^\:im=^P:le=^H:\
        !          7305:        :nd=^\:se=^X:sf=^J:so=^N:ta=^I:up=^Z:
        !          7306: ex3000:\
        !          7307:        :co#80:li#24:\
        !          7308:        :bl=^G:cr=^M:do=^J:ho=^Q:sf=^J:
        !          7309: # This came from the comp ctr who got it from some user.  Smart indeed!
        !          7310: # (sexidy: looks like an Exidy Sorcerer in some bizarre emulation mode;
        !          7311: # removed obsolete ":ma=^x^J:"; removed obsolete ":bc=^A:"; removed
        !          7312: # incorrect (and overridden) ":le=^H:" -- esr)
        !          7313: sexidy|exidy smart:\
        !          7314:        :bs:\
        !          7315:        :co#64:li#24:\
        !          7316:        :bl=^G:cl=^L:cr=^M:do=^J:ho=^Q:kd=^S:le=^A:nd=^S:\
        !          7317:        :sf=^J:up=^W:
        !          7318:
        !          7319: #### Osborne
        !          7320: #
        !          7321: # Thu Jul  7 03:55:16 1983
        !          7322: #
        !          7323: # As an aside, be careful; it may sound like an anomaly on the
        !          7324: # Osborne, but with the 80-column upgrade, it's too easy to
        !          7325: # enter lines >80 columns!
        !          7326: #
        !          7327: # I've already had several comments...
        !          7328: # The Osborne-1 with the 80-col option is capable of being
        !          7329: # 52,80, or 104 characters wide; default to 80 for compatibility
        !          7330: # with most systems.
        !          7331: #
        !          7332: # The tab is destructive on the Ozzie; make sure to 'stty -tabs'.
        !          7333: ozzie|osborne|osborne1|osborne 1:\
        !          7334:        :ms:ul:xt:\
        !          7335:        :co#104:li#24:\
        !          7336:        :al=\EE:bl=^G:ce=\ET:cl=^Z:cm=\E=%+ %+ :cr=^M:dc=\EW:\
        !          7337:        :dl=\ER:do=^J:ei=:ic=\EQ:im=:kd=^J:kl=^H:kr=^L:ku=^K:\
        !          7338:        :le=^H:nd=^L:se=\E(:sf=^J:so=\E):ue=\Em:up=^K:us=\El:
        !          7339:
        !          7340: #### Console types for UNIX clones
        !          7341: #
        !          7342:
        !          7343: # According to the Coherent 2.3 manual, the PC console is similar
        !          7344: # to a z19. The differences seem to be (1) 25 lines, (2) no status
        !          7345: # line, (3) standout is broken, (4) ins/del line is broken, (5)
        !          7346: # has blinking and bold.
        !          7347: pc-coherent|pcz19|coherent|IBM PC console running Coherent:\
        !          7348:        :am:mi:\
        !          7349:        :co#80:it#8:li#25:\
        !          7350:        :bl=^G:cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :cr=^M:\
        !          7351:        :dc=\EN:do=\EB:ei=\EO:ho=\EH:im=\E@:kb=^H:kd=\EB:\
        !          7352:        :kh=\EH:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:se=\Eq:\
        !          7353:        :sf=^J:so=\Ep:sr=\EI:ta=^I:up=\EA:
        !          7354:
        !          7355: # According to the Venix 1.1 manual, the PC console is similar
        !          7356: # to a DEC vt52.  Differences seem to be (1) arrow keys send
        !          7357: # different strings, (2) enhanced standout, (3) added insert/delete line.
        !          7358: # Note in particular that it doesn't have automatic margins (am).
        !          7359: # There are other keys (f1-f10, pgup, pgdn, backtab, insch, delch)
        !          7360: # not described here.
        !          7361: pc-venix|venix|IBM PC console running Venix:\
        !          7362:        :co#80:it#8:li#25:\
        !          7363:        :al=\EL:bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :\
        !          7364:        :cr=^M:dl=\EM:do=^J:kb=^H:kd=\EP:kh=\EG:kl=\EK:\
        !          7365:        :kr=\EM:ku=\EH:le=^H:nd=\EC:sf=^J:sr=\EI:ta=^I:\
        !          7366:        :up=\EA:
        !          7367:
        !          7368: #### Miscellaneous microcomputer consoles
        !          7369: #
        !          7370: # If you know anything more about any of these, please tell me.
        !          7371:
        !          7372: # I don't know which, if either, of these sols to believe.
        !          7373: # ^S is an arrow key!  Boy is this guy in for a surprise...
        !          7374: sol|sol1|sol terminal computer:\
        !          7375:        :am:\
        !          7376:        :co#64:li#16:\
        !          7377:        :bl=^G:cl=^K:cm=\E\021%.\E\022%.:cr=^M:do=^J:ho=^N:\
        !          7378:        :kd=^Z:kl=^A:kr=^S:ku=^W:le=^H:nd=^S:sf=^J:up=^W:
        !          7379: sol2|sol terminal computer (version 2):\
        !          7380:        :am:mi:xn:\
        !          7381:        :co#64:li#16:\
        !          7382:        :al=20\EL:bl=^G:cd=20\EJ:ce=\EK:cl=20\EE:\
        !          7383:        :cm=\EY%+ %+ :cr=^M:dc=\EN:dl=20\EM:do=^J:ei=\EO:\
        !          7384:        :ho=\EH:im=\E@:kd=\ED:kh=\EH:kl=\EL:kr=\ER:ku=\EU:\
        !          7385:        :le=^H:nd=\EC:sf=\n:ta=^I:up=\EA:ve=\EX:vs=^N^Lv:
        !          7386: # basis from Peter Harrison, Computer Graphics Lab, San Francisco
        !          7387: #   ucbvax!ucsfmis!harrison ...uucp / ucbvax!ucsfmis!harrison@BERKELEY ...ARPA
        !          7388: # (basis: removed obsolete ":ma=^K^P^R^L^L :nl=5000*^J:" -- esr)
        !          7389: basis|BASIS108 computer with terminal translation table active:\
        !          7390:        :cd=\EY:ce=\ET:cl=300\E*:do=5000\n:kb=^H:kd=^J:kl=^H:\
        !          7391:        :kr=^L:ku=^K:se=\E):so=\E(:tc=adm3a:
        !          7392: # luna's BMC terminal emulator
        !          7393: luna|luna68k|LUNA68K Bitmap console:\
        !          7394:        :co#88:li#46:\
        !          7395:        :tc=ansi-mini:
        !          7396: microkit|mkt|microkit terminal computer:\
        !          7397:        :am:mi:xn:\
        !          7398:        :co#40:li#23:\
        !          7399:        :al=\El:bl=^G:cd=\Ej:ce=\Ek:cl=\Ee:cm=\Ey%+ %+ :\
        !          7400:        :cr=^M:dc=\En:dl=\Em:do=^J:ei=\Eo:ho=\Eh:im=\E@:\
        !          7401:        :kd=\Ed:kh=\Eh:kl=\El:kr=\Er:ku=\Eu:le=^H:nd=\Ec:\
        !          7402:        :sf=^J:ta=^I:up=\Ea:ve=\Ex:vs=\016\014zv:
        !          7403: megatek|pegasus workstation terminal emulator:\
        !          7404:        :am:os:\
        !          7405:        :co#83:li#60:\
        !          7406:        :
        !          7407: # The Xerox 820 was an early Z80 micro that went nowhere (I think)
        !          7408: xerox820|x820|Xerox 820:\
        !          7409:        :am:\
        !          7410:        :co#80:li#24:\
        !          7411:        :bl=^G:cd=^Q:ce=^X:cl=1^Z:cm=\E=%+ %+ :cr=^M:do=^J:\
        !          7412:        :ho=^^:le=^H:nd=^L:sf=^J:up=^K:
        !          7413:
        !          7414: #### Videotex and teletext
        !          7415: #
        !          7416:
        !          7417: # standard-issue France Telecom minitel terminal (made by Philips)
        !          7418: # (m2-nam: had unknown ":zd=\E[1m:zb=\E[5m:zc=lkmjqxtuwvn:";
        !          7419: # also deleted unnecessary ":ug#0:sg#0:"; mapped ":pt:" to "" -- esr)
        !          7420: m2-nam|minitel|minitel-2|minitel-2-nam|France Telecom Minitel:\
        !          7421:        :am@:bs:pt:xn:\
        !          7422:        :co#80:it#8:li#24:\
        !          7423:        :ae=\E(B:al=\E[L:as=\E(0:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          7424:        :cm=\E[%i%d;%dH:dc=\E[P:dl=\E[M:ei=\E[4l:ho=\E[H:\
        !          7425:        :im=\E[4h:ip=7:is=\E[1;24r\E[24;1H:k1=\EOP:k2=\EOQ:\
        !          7426:        :k3=\EOR:k4=\EOS:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:\
        !          7427:        :ku=\E[A:nd=\E[C:se=\E[m:sf=^J:so=\E[7m:sr=\EM:\
        !          7428:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          7429: # From: Joel Rubin <jmrubin@coral.berkeley.edu>
        !          7430: # This is a preliminary TERMCAP for VIDTEX, a terminal program sold by
        !          7431: # Compuserve.  Line and column numbers are computer-dependent (I have a
        !          7432: # Commodore '64); you should use the meta-B option to shut off clean-breaking
        !          7433: # of lines.  No key codes included since some of them are programmable and
        !          7434: # most are machine-specific.  Works on vi if you don't use clean-breaking.
        !          7435: # Very similar to the IBM 3101 termcap.  Escape-D used for backspace because
        !          7436: # control-H is destructive backspace.  There seem to be a few weirdnesses
        !          7437: # (especially at the beginning of a wrapped line), and the cursor does not,
        !          7438: # unfortunately, flash.
        !          7439: # (vid: mapped ":pt:" to default tabs; changed :bc: to :le: -- esr)
        !          7440: vid|vidtex|Compuserve vidtex program:\
        !          7441:        :am:pt:\
        !          7442:        :co#40:li#25:\
        !          7443:        :cd=\EJ:ce=\EK:cl=^L:cm=\EY%+ %+ :ho=\EH:le=\ED:\
        !          7444:        :nd=\EC:up=\EA:
        !          7445: # This (inherited from the Emacs termcap.dat file) is probably *way* obsolete!
        !          7446: rsvidtx|Radio Shack VIDEOTEX:\
        !          7447:        :co#32:li#16:\
        !          7448:        :cd=\EJ:ce=\EK:cl=\EH\EJ:..cm=\EY%+ %+ :cr=^M:do=^J:\
        !          7449:        :kb=^H:kd=^J:kl=^H:nd=\EC:nw=^M^J:sf=^J:ta=^I:up=\EA:
        !          7450:
        !          7451: ######## OBSOLETE VDT TYPES
        !          7452: #
        !          7453: # These terminals are *long* dead -- these entries are retained for
        !          7454: # historical interest only.
        !          7455:
        !          7456: #### AED
        !          7457: #
        !          7458: # Advanced Electronic Devices made its name manufacturing super-expensive
        !          7459: # vector-graphics displays and frame buffers in the late 1970s.  They used
        !          7460: # to be in Sunnyvale CA 94086 on Pastoria Avenue.  They're long gone now.
        !          7461: #
        !          7462:
        !          7463: # From: Giles Billingsley <gilesb%ucbcad@berkeley.edu>
        !          7464: # rewritten 8/82 for newer AEDs and better operation of vi, etc.
        !          7465: # (bel/cr/cub1/cud1/ind added from SCO entry, which doesn't have db or the
        !          7466: # humongous is2, thus they are commented out here -- esr)
        !          7467: aed|AED|aed512|AED512|aed 512:\
        !          7468:        :bs:\
        !          7469:        :co#64:li#40:\
        !          7470:        :bl=^G:cl=^L:cr=^M:do=^J:le=^H:nd=\Ei0800\001:\
        !          7471:        :se=\E[00C80\001:\
        !          7472:        :sf=\E;1100\072004=000200??;1300'\200\001\n\E\072004=0002??00;1200\001\n:\
        !          7473:        :so=\E\07200>8000140[80C00\001:\
        !          7474:        :te=\E\07200>8000100{804<0??00001000L80\072004=000200??\001:\
        !          7475:        :ti=\E\07200>8000140{<04<0??00001010L<0\072004=0002??00\001:\
        !          7476:        :uc=\Ei???>l0800i0102\001:ue=\E\07200>8000100\001:\
        !          7477:        :up=^K:us=\E\07200>8000140\001:\
        !          7478:        :vb=\EK0001??0000K0001202080\001:\
        !          7479:        :ve=\E\072004=000200??\001:
        !          7480: aed-ucb|AED-UCB|aed512-ucb|AED512-UCB|aed 512 w/o UCB ROM:\
        !          7481:        :bs:db:\
        !          7482:        :co#64:li#40:\
        !          7483:        :cl=^L:if=/usr/share/tabset/aed512:nd=\Ei0800\001:\
        !          7484:        :se=\E[00C80\001:so=\E\07200>8000140[80C00\001:\
        !          7485:        :te=\E\07200>8000100{804<0??00001000L80\072004=000200??\001:\
        !          7486:        :ti=\E\07200>8000140{<04<0??00001010L<0\072004=0002??00\001:\
        !          7487:        :uc=\Ei???>l0800i0102\001:ue=\E\07200>8000100\001:\
        !          7488:        :up=^K:us=\E\07200>8000140\001:\
        !          7489:        :vb=\EK0001??0000K0001202080\001:\
        !          7490:        :ve=\E\E\E\E\E\E\E\072004=000200??\001:
        !          7491:
        !          7492: #### Amtek Business Machines
        !          7493: #
        !          7494:
        !          7495: # (abm80: early versions of this entry apparently had ":se=\E^_:so=\E^Y",
        !          7496: # but these caps were commented out in 8.3; also, removed overridden
        !          7497: # ":do=^J:" -- esr)
        !          7498: abm80|amtek business machines 80:\
        !          7499:        :am:bs:bw:\
        !          7500:        :co#80:li#24:\
        !          7501:        :al=\E^Z:bt=^T:cd=\E^X:ce=\E^O:cl=\E^\:\
        !          7502:        :cm=\E\021%r%+ %+ :dl=\E^S:do=\E^K:ho=\E^R:le=^H:\
        !          7503:        :nd=^P:up=\E^L:
        !          7504:
        !          7505: #### Bell Labs blit terminals
        !          7506: #
        !          7507: # These were AT&T's official entries.
        !          7508: #
        !          7509:
        !          7510: blit|jerq|blit running teletype rom:\
        !          7511:        :am:eo:ul:xo:\
        !          7512:        :co#87:it#8:li#72:\
        !          7513:        :AL=\EF%+ :DC=\Ee%+ :DL=\EE%+ :IC=\Ef%+ :al=\EF!:\
        !          7514:        :bl=^G:ce=\EK:cl=^L:cm=\EY%r%+ %+ :cr=^M:dc=\Ee!:\
        !          7515:        :dl=\EE!:do=^J:ei=:ic=\Ef!:im=:k1=\Ex:k2=\Ey:k3=\Ez:\
        !          7516:        :kb=^H:kd=\EB:kl=\ED:kr=\EC:ku=\EA:le=\ED:nd=\EC:\
        !          7517:        :sf=^J:ta=^I:up=\EA:
        !          7518:
        !          7519: cbblit|fixterm|blit running columbus code:\
        !          7520:        :co#88:\
        !          7521:        :cd=\EJ:ei=\ER:ic@:im=\EQ:pO=\EP%03:pf=^T:po=^R:\
        !          7522:        :se=\EV!:so=\EU!:ue=\EV":us=\EU":vb=\E^G:tc=blit:
        !          7523:
        !          7524: oblit|ojerq|first version of blit rom:\
        !          7525:        :am:da:db:eo:mi:ul:xo:\
        !          7526:        :co#88:it#8:li#72:\
        !          7527:        :AL=\Ef%+ :DL=\Ee%+ :al=\EF:bl=^G:cd=\EJ:ce=\EK:\
        !          7528:        :cl=^L:cm=\EY%r%+ %+ :cr=^M:dc=\EO:dl=\EE:do=^J:\
        !          7529:        :ei=\ER:im=\EQ:kb=^H:le=\ED:nd=\EC:sf=^J:ta=^I:\
        !          7530:        :up=\EA:vb=\E^G:
        !          7531:
        !          7532: daleblit|daleterm|blit running Dale DeJager's ROM:\
        !          7533:        :da@:db@:\
        !          7534:        :kd=\EB:kl=\ED:kr=\EC:ku=\EA:se=\EV!:so=\EU!:ue=\EV":\
        !          7535:        :us=\EU":tc=oblit:
        !          7536:
        !          7537: #### Bolt, Beranek & Newman (bbn)
        !          7538: #
        !          7539: # The BitGraph was a product of the now-defunct BBN Computer Corporation.
        !          7540: # The parent company, best known as the architects of the Internet, is
        !          7541: # still around.
        !          7542: #
        !          7543:
        !          7544: # Entries for the BitGraph terminals.  The problem
        !          7545: # with scrolling in vi can only be fixed by getting BBN to put
        !          7546: # smarter scroll logic in the terminal or changing vi or padding
        !          7547: # scrolls with about 500 ms delay.
        !          7548: #
        !          7549: # I always thought the problem was related to the terminal
        !          7550: # counting newlines in its input buffer before scrolling and
        !          7551: # then moving the screen that much. Then vi comes along and
        !          7552: # paints lines in on the bottom line of the screen, so you get
        !          7553: # this big white gap.
        !          7554:
        !          7555: bitgraph|bbn bitgraph 3.10:\
        !          7556:        :tc=bg3.10rv:
        !          7557: bg3.10rv|bgrv|bbn bitgraph 2.0 (reverse video):\
        !          7558:        :tc=bg2.0rv:
        !          7559: bg3.10nv|bgnv|bbn bitgraph 2.0 (normal video):\
        !          7560:        :tc=bg2.0nv:
        !          7561: bg3.10|bgn|bbn bitgraph 2.0 (no init):\
        !          7562:        :tc=bg2.0:
        !          7563: bg2.0rv|bbn bitgraph 2.0 (reverse video):\
        !          7564:        :is=\E>\E[?5h\E[?7h:vb=\E[?5l\E[?5h:tc=bg2.0:
        !          7565: bg2.0nv|bbn bitgraph 2.0 (normal video):\
        !          7566:        :is=\E>\E[?5l\E[?7h:vb=\E[?5h\E[?5l:tc=bg2.0:
        !          7567: bg2.0|bbn bitgraph 2.0 (no init):\
        !          7568:        :xn:\
        !          7569:        :co#85:li#64:\
        !          7570:        :al=\E[L:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          7571:        :cm=%i\E[%d;%dH:cr=^M:cs=\E[%i%d;%dr:dl=\E[M:do=\E[B:\
        !          7572:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kd=\E[B:ke=\E>:\
        !          7573:        :kl=\E[D:kr=\E[C:ks=\E=:ku=\E[A:le=^H:nd=\E[C:rc=\E8:\
        !          7574:        :sc=\E7:se=\E[0m:sf=\n:so=\E[7m:ta=^I:up=\E[A:
        !          7575: bg1.25rv|bbn bitgraph 1.25 (reverse video):\
        !          7576:        :is=\E>\E[?5h\E[?7h:vb=\E[?5l\E[?5h:tc=bg1.25:
        !          7577: bg1.25nv|bbn bitgraph 1.25 (normal video):\
        !          7578:        :is=\E>\E[?5l\E[?7h:vb=\E[?5h\E[?5l:tc=bg1.25:
        !          7579: bg1.25|bbn bitgraph 1.25:\
        !          7580:        :co#85:li#64:\
        !          7581:        :al=\E[L:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          7582:        :cm=%i\E[%d;%dH:cr=^M:dl=\E[M:do=\E[B:k1=\EP:k2=\EQ:\
        !          7583:        :k3=\ER:k4=\ES:kd=\EB:ke=\E>:kl=\ED:kr=\EC:ks=\E=:\
        !          7584:        :ku=\EA:le=^H:ll=\E[64;1H:nd=\E[C:se=\E[0m:sf=\n:\
        !          7585:        :so=\E[7m:ta=^I:up=\E[A:
        !          7586:
        !          7587: #### Chromatics
        !          7588: #
        !          7589:
        !          7590: # cg7900: Following is revised version. As I mentioned, I recompiled
        !          7591: # curses in order to accomadate the large amount of definition.
        !          7592: # I have put the long strings in ti/te. Ti sets up a window
        !          7593: # that is smaller than the screen, and puts up a warning message
        !          7594: # outside the window. Te erases the warning message, puts the
        !          7595: # window back to be the whole screen, and puts the cursor at just
        !          7596: # below the small window. A defined vs and ve to really turn
        !          7597: # the cursor on and off, but I have taken this out since I don't
        !          7598: # like the cursor being turned off when vi exits.
        !          7599: cg7900|chromatics|chromatics 7900:\
        !          7600:        :am:\
        !          7601:        :co#80:li#40:\
        !          7602:        :al=^A>2:bl=^G:cd=^Al:ce=^A`:cl=^L:\
        !          7603:        :cm=\001M%r%d\\\054%d\\\054:cr=^M:dc=^A<1:dl=^A<2:\
        !          7604:        :do=^J:ei=:ho=^\:ic=^A>1:im=:le=^H:ll=^A|:nd=^]:\
        !          7605:        :se=\001C1\\\054\001c2\\\054:sf=^J:\
        !          7606:        :so=\001C4\\\054\001c7\\\054:\
        !          7607:        :te=\001W0\\\05440\\\05485\\\05448\\\054\014\001W0\\\0540\\\05485\\\05448\\\054\001M0\\\05440\\\054:\
        !          7608:        :ti=\001P0\001O1\001R1\001C4\\\054\001c0\\\054\014\001M0\\\05442\\\054WARNING DOUBLE ENTER ESCAPE and \025\001C1\\\054\001c2\\\054\001W0\\\0540\\\05479\\\05439\\\054:\
        !          7609:        :uc=\001\001_\001\200:up=^K:
        !          7610:
        !          7611: #### Computer Automation
        !          7612: #
        !          7613:
        !          7614: ca22851|computer automation 22851:\
        !          7615:        :am:\
        !          7616:        :co#80:li#24:\
        !          7617:        :bl=^G:cd=^\:ce=^]:cl=\014:cm=\002%i%.%.:cr=^M:do=^J:\
        !          7618:        :ho=^^:kd=^W:kh=^^:kl=^U:ku=^V:le=^U:nd=^I:sf=^J:\
        !          7619:        :up=^V:
        !          7620:
        !          7621: #### Cybernex
        !          7622: #
        !          7623:
        !          7624: # This entry has correct padding and the undocumented "ri" capability
        !          7625: cyb83|xl83|cybernex xl-83:\
        !          7626:        :am:bs:\
        !          7627:        :co#80:li#24:\
        !          7628:        :bl=^G:cd=\020:ce=\017:cl=\014:cm=\027%+ %+ :cr=^M:\
        !          7629:        :do=^J:ho=^K:kd=^J:kl=^H:kr=^I:ku=^N:le=^H:nd=^I:\
        !          7630:        :sf=^J:sr=^N:up=^N:
        !          7631: # (mdl110: removed obsolete ":ma=^Z^P:" and overridden ":cd=145^NA^W:" -- esr)
        !          7632: cyb110|mdl110|cybernex mdl-110:\
        !          7633:        :am:bs:\
        !          7634:        :co#80:li#24:\
        !          7635:        :al=\016A\016\035:bl=^G:cd=\016@\026:ce=\016@\026:\
        !          7636:        :cl=\030:cm=\020%+ %+ :cr=^M:dc=\016A\036:\
        !          7637:        :dl=\016A\016\036:do=^J:ei=:ho=^Y:ic=\016A\035:im=:\
        !          7638:        :le=^H:nd=^U:se=^NG:sf=^J:so=^NF:ta=\011:up=^Z:
        !          7639:
        !          7640: #### Datapoint
        !          7641: #
        !          7642: # Datapoint is gone.  They used to be headquartered in Texas.
        !          7643: # They created ARCnet, an Ethernet competitor that flourished for a while
        !          7644: # in the early 1980s before 3COM got wise and cut its prices.  The service
        !          7645: # side of Datapoint still lives (1995) in the form of Intelogic Trace.
        !          7646: #
        !          7647:
        !          7648: dp3360|datapoint|datapoint 3360:\
        !          7649:        :am:bs:\
        !          7650:        :co#82:li#25:\
        !          7651:        :bl=^G:cd=^_:ce=^^:cl=^]^_:cr=^M:do=^J:ho=^]:le=^H:\
        !          7652:        :nd=^X:sf=^J:up=^Z:
        !          7653:
        !          7654: #### DEC terminals (Obsolete types: DECwriter and vt40/42/50)
        !          7655: #
        !          7656: # These entries are DEC's official terminfos for its older terminals.
        !          7657: # Contact Bill Hedberg <hedberg@hannah.enet.dec.com> of Terminal Support
        !          7658: # Engineering for more information.  Updated terminfos and termcaps
        !          7659: # are kept available at ftp://gatekeeper.dec.com/pub/DEC/termcaps.
        !          7660: #
        !          7661:
        !          7662: gt40|dec gt40:\
        !          7663:        :os:\
        !          7664:        :co#72:li#30:\
        !          7665:        :bl=^G:cr=^M:do=^J:le=^H:
        !          7666: gt42|dec gt42:\
        !          7667:        :os:\
        !          7668:        :co#72:li#40:\
        !          7669:        :bl=^G:cr=^M:do=^J:le=^H:
        !          7670: vt50|dec vt50:\
        !          7671:        :co#80:li#12:\
        !          7672:        :bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:cr=^M:do=^J:le=^H:\
        !          7673:        :nd=\EC:sf=^J:ta=^I:up=\EA:
        !          7674: vt50h|dec vt50h:\
        !          7675:        :co#80:li#12:\
        !          7676:        :bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :cr=^M:\
        !          7677:        :do=^J:le=^H:nd=\EC:sf=^J:sr=\EI:ta=^I:up=\EA:
        !          7678: vt52|dec vt52:\
        !          7679:        :co#80:it#8:li#24:\
        !          7680:        :bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :cr=^M:\
        !          7681:        :do=^J:kb=^H:kd=\EB:kl=\ED:kr=\EC:ku=\EA:le=^H:\
        !          7682:        :nd=\EC:sf=^J:sr=\EI:ta=^I:up=\EA:
        !          7683: vt61|vt-61|vt61.5:\
        !          7684:        :co#80:li#24:\
        !          7685:        :bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :cr=\r:\
        !          7686:        :do=^J:kd=\EB:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:\
        !          7687:        :sf=\n:sr=\EI:ta=^I:up=\EA:
        !          7688:
        !          7689: # The gigi does standout with red!
        !          7690: gigi|vk100|dec gigi graphics terminal:\
        !          7691:        :am:xn:\
        !          7692:        :co#84:li#24:\
        !          7693:        :DO=\E[%dB:LE=\E[%r%dD:RI=\E[%dC:UP=\E[%dA:bl=^G:\
        !          7694:        :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:cm=\E[%i%d;%dH:cr=^M:\
        !          7695:        :do=^J:is=\E>\E[?3l\E[?4l\E[?5l\E[?20l\E[?7h\E[?8h:\
        !          7696:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kd=\EOB:\
        !          7697:        :ke=\E[?1l\E>:kh=\E[H:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:\
        !          7698:        :ku=\EOA:le=^H:nd=\E[C:se=\E[m:sf=^J:so=\E[7;31m:\
        !          7699:        :sr=\EM:ta=^I:ue=\E[m:up=\E[A:us=\E[4m:
        !          7700:
        !          7701: # DEC PRO-350 console (VT220-style).  The 350 was DEC's attempt to produce
        !          7702: # a PC differentiated from the IBM clones.  It was a total, ludicrous,
        !          7703: # grossly-overpriced failure (among other things, DEC's OS didn't include
        !          7704: # a format program, so you had to buy pre-formatted floppies from DEC at
        !          7705: # a hefty premium!).
        !          7706: # (pro350: mapped ":pt:" to default tabs -- esr)
        !          7707: pro350|decpro|dec pro console:\
        !          7708:        :bs:pt:\
        !          7709:        :co#80:li#24:\
        !          7710:        :ae=\EG:as=\EF:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :\
        !          7711:        :do=\EB:ho=\EH:k0=\EE:k1=\EF:k2=\EG:k3=\EH:k4=\EI:\
        !          7712:        :k5=\EJ:k6=\Ei:k7=\Ej:kd=\EB:kh=\EH:kl=\ED:kr=\EC:\
        !          7713:        :ku=\EA:nd=\EC:se=\E^N:so=\E^H:sr=\EI:ue=\E^C:up=\EA:\
        !          7714:        :us=\E^D:
        !          7715:
        !          7716: dw1|decwriter I:\
        !          7717:        :hc:os:\
        !          7718:        :co#72:\
        !          7719:        :bl=^G:cr=^M:do=^J:le=^H:sf=^J:
        !          7720: dw2|decwriter|dw|decwriter II:\
        !          7721:        :hc:os:\
        !          7722:        :co#132:\
        !          7723:        :bl=^G:cr=^M:do=^J:kb=^H:le=^H:sf=^J:
        !          7724:
        !          7725: # \E(B         Use U.S. character set (otherwise # => british pound !)
        !          7726: # \E[20l       Disable "linefeed newline" mode (else puts \r after \n,\f,\v)
        !          7727: # \E[w         10 char/in pitch
        !          7728: # \E[1;132     full width horizontal margins
        !          7729: # \E[2g                clear all tab stops
        !          7730: # \E[z         6 lines/in
        !          7731: # \E[66t       66 lines/page (for \f)
        !          7732: # \E[1;66r     full vertical page can be printed
        !          7733: # \E[4g                clear vertical tab stops
        !          7734: # \E>          disable alternate keypad mode (so it transmits numbers!)
        !          7735: # \E[%i%du     set tab stop at column %d (origin == 1)
        !          7736: #              (Full syntax is \E[n;n;n;n;n;...;nu where each 'n' is
        !          7737: #              a tab stop)
        !          7738: #
        !          7739: #       The dw3 does standout with wide characters.
        !          7740: #
        !          7741: dw3|la120|decwriter III:\
        !          7742:        :hc:os:\
        !          7743:        :co#132:\
        !          7744:        :bl=^G:cr=^M:do=^J:\
        !          7745:        :i1=\E(B\E[20l\E[w\E[0;132s\E[2g\E[z\E[66t\E[1;66r\E[4g\E>:\
        !          7746:        :is=\E[9;17;25;33;41;49;57;65;73;81;89;97;105;113;121;129u\r:\
        !          7747:        :kb=^H:le=^H:se=\E[w:sf=^J:so=\E[6w:ta=^I:
        !          7748: dw4|decwriter IV:\
        !          7749:        :am:hc:os:\
        !          7750:        :co#132:\
        !          7751:        :bl=^G:cr=^M:do=^J:is=\Ec:k0=\EOP:k1=\EOQ:k2=\EOR:\
        !          7752:        :k3=\EOS:kb=^H:le=^H:sf=^J:ta=^I:
        !          7753:
        !          7754: #### Delta Data (dd)
        !          7755: #
        !          7756:
        !          7757: # Untested. The cup sequence is hairy enough that it probably needs work.
        !          7758: # The idea is ctrl(O), dd(row), dd(col), where dd(x) is x - 2*(x%16) + '9'.
        !          7759: # There are BSD-derived termcap entries floating around for this puppy
        !          7760: # that are *certainly* wrong.
        !          7761: delta|dd5000|delta data 5000:\
        !          7762:        :am:\
        !          7763:        :co#80:li#27:\
        !          7764:        :bl=^G:ce=^NU:cl=^NR:cm=\017%+^P%+^P:dc=^NV:do=^J:\
        !          7765:        :ho=^NQ:le=^H:nd=^Y:sf=^J:up=^Z:
        !          7766:
        !          7767: #### Digital Data Research (ddr)
        !          7768: #
        !          7769:
        !          7770: # (ddr: mapped ":pt:" to default tabs -- esr)
        !          7771: ddr|rebus3180|ddr3180|Rebus/DDR 3180 vt100 emulator:\
        !          7772:        :am:bs:pt:xn:\
        !          7773:        :co#80:li#24:vt#3:\
        !          7774:        :cd=50\E[J:ce=3\E[K:cl=50\E[;H\E[2J:cm=5\E[%i%d;%dH:\
        !          7775:        :cs=\E[%i%d;%dr:do=^J:ho=\E[H:is=\E[1;24r\E[24;1H:\
        !          7776:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:kb=^H:kd=\E[B:\
        !          7777:        :ke=\E[?1l\E>:kl=\E[D:kr=\E[C:ks=\E[?1h\E=:ku=\E[A:\
        !          7778:        :le=^H:mb=2\E[5m:md=2\E[1m:me=2\E[m:mr=2\E[7m:\
        !          7779:        :nd=2\E[C:rc=\E8:\
        !          7780:        :rs=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:sc=\E7:se=\E[m:\
        !          7781:        :sf=5\ED:so=\E[7m:sr=5\EM:ue=2\E[m:up=2\E[A:\
        !          7782:        :us=2\E[4m:
        !          7783:
        !          7784: #### General Electric (ge)
        !          7785: #
        !          7786:
        !          7787: terminet1200|terminet300|tn1200|tn300|terminet|GE terminet 1200:\
        !          7788:        :hc:os:\
        !          7789:        :co#120:\
        !          7790:        :bl=^G:cr=^M:do=^J:sf=^J:
        !          7791:
        !          7792: #### Heathkit/Zenith
        !          7793: #
        !          7794:
        !          7795: h19-a|heath-ansi|heathkit-a|heathkit h19 ansi mode:\
        !          7796:        :am:mi:ms:\
        !          7797:        :co#80:it#8:li#24:\
        !          7798:        :ae=\E[11m:al=\E[1L:as=\E[10m:bl=^G:cd=\E[J:ce=\E[K:\
        !          7799:        :cl=\E[2J:cm=\E[%i%d;%dH:cr=^M:dc=\E[1P:dl=\E[1M:\
        !          7800:        :do=\E[1B:ei=\E[4l:ho=\E[H:im=\E[4h:\
        !          7801:        :is=\E<\E[>1;2;3;4;5;6;7;8;9l\E[0m\E[11m\E[?7h:\
        !          7802:        :k1=\EOS:k2=\EOT:k3=\EOU:k4=\EOV:k5=\EOW:k6=\EOP:\
        !          7803:        :k7=\EOQ:k8=\EOR:kb=^H:kd=\E[1B:kh=\E[H:kl=\E[1D:\
        !          7804:        :kr=\E[1C:ku=\E[1A:le=^H:nd=\E[1C:se=\E[0m:sf=^J:\
        !          7805:        :so=\E[7m:sr=\EM:ta=^I:up=\E[1A:ve=\E[>4l:vs=\E[>4h:
        !          7806: h19-bs|heathkit w/keypad shifted:\
        !          7807:        :ke=\Eu:ks=\Et:tc=h19-b:
        !          7808: h19-smul|heathkit w/keypad shifted/underscore cursor:\
        !          7809:        :ke=\Eu:ks=\Et:tc=h19-u:
        !          7810: h19|heath|h19-b|heathkit|heath-19|z19|zenith|heathkit h19:\
        !          7811:        :am:es:hs:mi:ms:\
        !          7812:        :co#80:it#8:li#24:\
        !          7813:        :ae=\EG:al=\EL:as=\EF:bl=^G:cd=\EJ:ce=\EK:cl=\EE:\
        !          7814:        :cm=\EY%+ %+ :cr=^M:dc=\EN:dl=\EM:do=\EB:ei=\EO:\
        !          7815:        :fs=\Ek\Ey5:ho=\EH:im=\E@:k1=\ES:k2=\ET:k3=\EU:\
        !          7816:        :k4=\EV:k5=\EW:k6=\EP:k7=\EQ:k8=\ER:kb=^H:kd=\EB:\
        !          7817:        :kh=\EH:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:se=\Eq:\
        !          7818:        :sf=^J:so=\Ep:sr=\EI:ta=^I:\
        !          7819:        :ts=\Ej\Ex5\EY8%p1%{32}%+%c\Eo\Eo:up=\EA:ve=\Ey4:\
        !          7820:        :vs=\Ex4:
        !          7821: h19-u|heathkit with underscore cursor:\
        !          7822:        :ve@:vs@:tc=h19-b:
        !          7823: alto-h19|altoh19|altoheath|alto-heath|alto emulating heathkit h19:\
        !          7824:        :li#60:\
        !          7825:        :al=\EL:dl=\EM:tc=h19:
        !          7826:
        !          7827: # The major problem with the Z29 is that it requires more
        !          7828: # padding than the Z19. Once again, here's a little termcap
        !          7829: # entry for it that will do the trick.
        !          7830: #
        !          7831: # The problem declaring an H19 to be synonomous with a Z29 is that
        !          7832: # it needs more padding. It especially loses if a program attempts
        !          7833: # to put the Z29 into insert mode and insert text at 9600 baud. It
        !          7834: # even loses worse if the program attempts to insert tabs at 9600
        !          7835: # baud. Adding padding to text that is inserted loses because in
        !          7836: # order to make the Z29 not die, one must add so much padding that
        !          7837: # whenever the program tries to use insert mode, the effective
        !          7838: # rate is about 110 baud.
        !          7839: #
        !          7840: # What program would want to put the terminal into insert mode
        !          7841: # and shove stuff at it at 9600 baud you ask?
        !          7842: #
        !          7843: # Emacs. Emacs seems to want to do the mathematically optimal
        !          7844: # thing in doing a redisplay rather than the practical thing.
        !          7845: # When it is about to output a line on top of a line that is
        !          7846: # already on the screen, instead of just killing to the end of
        !          7847: # the line and outputing the new line, it compares the old line
        !          7848: # and the new line and if there are any similarities, it
        !          7849: # constructs the new line by deleting the text on the old line
        !          7850: # on the terminal that is already there and then inserting new
        !          7851: # text into the line to transform it into the new line that is
        !          7852: # to be displayed. The Z29 does not react kindly to this.
        !          7853: #
        !          7854: # But don't cry for too long.... There is a solution. You can make
        !          7855: # a termcap entry for the Z29 that says the Z29 has no insert mode.
        !          7856: # Then Emacs cannot use it. "Oh, no, but now inserting into a
        !          7857: # line will be really slow", you say. Well there is a sort of a
        !          7858: # solution to that too. There is an insert character option on
        !          7859: # the Z29 that will insert one character. Unfortunately, it
        !          7860: # involves putting the terminal into ansi mode, inserting the
        !          7861: # character, and changing it back to H19 mode. All this takes 12
        !          7862: # characters. Pretty expensive to insert one character, but it
        !          7863: # works. Either Emacs doesn't try to use its inserting hack when
        !          7864: # it's only given an insert character ability or the Z29 doesn't
        !          7865: # require padding with this (the former is probably more likely,
        !          7866: # but I haven't checked it out).
        !          7867: z29|zenith29|z29b|zenith z29b:\
        !          7868:        :am:ms:\
        !          7869:        :co#80:li#24:\
        !          7870:        :ae=\EF:al=\EL:as=\EG:bl=^G:bt=\E-:cd=\EJ:ce=\EK:\
        !          7871:        :cl=\EE:cm=\EY%+ %+ :cr=^M:dc=\EN:dl=\EM:do=\EB:ei=:\
        !          7872:        :ho=\EH:ic=\E<\E[1@\E[?2h:im=:is=\E<\E[?2h\Ev:k0=\E~:\
        !          7873:        :k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:k6=\EP:k7=\EQ:\
        !          7874:        :k8=\ER:k9=\E0I:kb=^H:kd=\EB:kh=\EH:kl=\ED:kr=\EC:\
        !          7875:        :ku=\EA:le=^H:nd=\EC:se=\Eq:sf=\n:so=\Ep:sr=\EI:\
        !          7876:        :ta=^I:ue=\Es0:up=\EA:us=\Es8:ve=\Ey4:vs=\Ex4:
        !          7877:
        !          7878: # From: Brad Brahms <Brahms@USC-ECLC>
        !          7879: z100|h100|z110|z-100|h-100|heath/zenith z-100 pc with color monitor:\
        !          7880:        :ve=\Ey4\Em70:vs=\Ex4\Em71:tc=z100bw:
        !          7881: # (z100bw: removed obsolete ":kn#10:"; mapped ":pt:" to default tabs -- esr)
        !          7882: z100bw|h100bw|z110bw|z-100bw|h-100bw|heath/zenith z-100 pc:\
        !          7883:        :bs:mi:ms:pt:\
        !          7884:        :co#80:li#24:\
        !          7885:        :ae=\EG:al=5*\EL:as=\EF:cd=\EJ:ce=\EK:cl=5*\EE:\
        !          7886:        :cm=1*\EY%+ %+ :dc=1*\EN:dl=5*\EM:do=\EB:ei=\EO:\
        !          7887:        :ho=\EH:im=\E@:k0=\EJ:k1=\ES:k2=\ET:k3=\EU:k4=\EV:\
        !          7888:        :k5=\EW:k6=\EP:k7=\EQ:k8=\ER:k9=\EOI:kb=^H:kd=\EB:\
        !          7889:        :kh=\EH:kl=\ED:kr=\EC:ku=\EA:nd=\EC:se=\Eq:so=\Ep:\
        !          7890:        :sr=\EI:up=\EA:ve=\Ey4:vs=\Ex4:
        !          7891: p19:\
        !          7892:        :al=2*\EL:dl=2*\EM:tc=h19-b:
        !          7893: # From: <ucscc!B.fiatlux@ucbvax.berkeley.edu>
        !          7894: # (ztx: mapped ":pt:" to default tabs; removed duplicate :sr: -- esr)
        !          7895: ztx|ztx11|zt-1|htx11|ztx-1-a|ztx-10/11:\
        !          7896:        :am:bs:es:hs:pt:\
        !          7897:        :co#80:li#24:\
        !          7898:        :al=\EL:cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :dl=\EM:\
        !          7899:        :do=^J:ds=\Ey1:fs=\Ek\Ey5:ho=\EH:\
        !          7900:        :is=\Ej\EH\Eq\Ek\Ev\Ey1\Ey5\EG\Ey8\Ey9\Ey>:k0=\ES:\
        !          7901:        :k1=\EB:k2=\EU:k3=\EV:k4=\EW:k5=\EP:k6=\EQ:k7=\ER:\
        !          7902:        :kb=^H:kd=\EB:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:\
        !          7903:        :se=\Eq:so=\Es5:sr=\EI:ts=\Ej\Ex5\Ex1\EY8%+ \Eo:\
        !          7904:        :ue=\Eq:up=\EA:us=\Es2:
        !          7905:
        !          7906: #### IMS International (ims)
        !          7907: #
        !          7908: # There was a company called IMS International located in Carson City,
        !          7909: # Nevada, that flourished from the mid-70s to mid-80s.  They made S-100
        !          7910: # bus/Z80 hardware and a line of terminals called Ultimas.
        !          7911:
        !          7912: # From: Erik Fair <fair@ucbarpa.berkeley.edu>  Sun Oct 27 07:21:05 1985
        !          7913: ims950-b|bare ims950 no init string:\
        !          7914:        :is@:tc=ims950:
        !          7915: ims950-ns|ims950 w/no standout:\
        !          7916:        :se@:so@:ue@:us@:tc=ims950:
        !          7917: # (ims950: removed obsolete ":ko@:" -- esr)
        !          7918: ims950|ims televideo 950 emulation:\
        !          7919:        :xn@:\
        !          7920:        :k0@:k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:k9@:kb@:kd@:kh@:\
        !          7921:        :kl@:kr@:ku@:vb@:tc=tvi950:
        !          7922: # (ims950-rv: removed obsolete ":ko@:" -- esr)
        !          7923: ims950-rv|ims tvi950 rev video:\
        !          7924:        :xn@:\
        !          7925:        :k0@:k1@:k2@:k3@:k4@:k5@:k6@:k7@:k8@:k9@:kb@:kd@:kh@:\
        !          7926:        :kl@:kr@:ku@:vb@:tc=tvi950-rv:
        !          7927: # (ims-ansi: mapped ":pt:" to default tabs -- esr)
        !          7928: ims-ansi|ultima2|ultimaII|IMS Ultima II:\
        !          7929:        :am:bs:pt:\
        !          7930:        :co#80:li#24:\
        !          7931:        :cd=\E[0J:ce=\E[0K:cl=\E[;H\E[2J:cm=\E[%i%2;%2H:\
        !          7932:        :do=\ED:if=/usr/share/tabset/vt100:\
        !          7933:        :is=\E[0m\E[>14l\E[?1;?5;20l\E>\E[1m\r:kd=\E[B:\
        !          7934:        :kh=\E[H:kl=\E[D:kr=\E[C:ku=\E[A:se=\E[0m\E[1m:\
        !          7935:        :so=\E[7m:sr=\EM:ue=\E[0m\E[1m:up=\EM:us=\E[4m:
        !          7936:
        !          7937: #### Intertec Data Systems
        !          7938: #
        !          7939: # I think this company is long dead as of 1995.  They made an early CP/M
        !          7940: # micro called the "Intertec Superbrain" that was moderately popular,
        !          7941: # then sank out of sight.
        !          7942: #
        !          7943:
        !          7944: superbrain|intertec superbrain:\
        !          7945:        :am:bw:\
        !          7946:        :co#80:li#24:\
        !          7947:        :bl=^G:cd=\E~k<10*>:ce=\E~K:cl=\014:cm=\EY%+ %+ :\
        !          7948:        :cr=^M:do=^J:kd=^J:kl=^U:kr=^F:ku=^K:le=^H:nd=^F:\
        !          7949:        :sf=^J:ta=^I:te=^L:ti=^L:up=^K:
        !          7950: intertube|intertec|Intertec InterTube:\
        !          7951:        :am:\
        !          7952:        :co#80:li#25:\
        !          7953:        :bl=^G:cl=^L:cm=\EY%+ %+ :cr=^M:do=^J:ho=^A:le=^H:\
        !          7954:        :nd=^F:se=\E0@:sf=^J:so=\E0P:up=^Z:
        !          7955: # The intertube 2 has the "full duplex" problem like the tek 4025: if you
        !          7956: # are typing and a command comes in, the keystrokes you type get interspersed
        !          7957: # with the command and it messes up
        !          7958: it2|intertube2|intertec data systems intertube 2:\
        !          7959:        :am:\
        !          7960:        :co#80:li#25:\
        !          7961:        :bl=^G:ce=\EK:ch=\020%+^J:cl=^L:cm=\016%.\020%+^J:\
        !          7962:        :cr=^M:cv=\013%.:do=^J:ho=^A:le=^H:ll=^K^X\r:nd=^F:\
        !          7963:        :se=\E0@:sf=^J:so=\E0P:up=^Z:
        !          7964:
        !          7965: #### Modgraph
        !          7966: #
        !          7967: # These people used to be reachable at:
        !          7968: #
        !          7969: #      Modgraph, Inc
        !          7970: #      1393 Main Street,
        !          7971: #      Waltham, MA 02154
        !          7972: #      Vox: (617)-890-5796.
        !          7973: #
        !          7974: # However, if you call that number today you'll get an insurance company.
        !          7975: # I think Modgraph is long gone.
        !          7976: #
        !          7977:
        !          7978: modgraph|mod|modgraph terminal emulating vt100:\
        !          7979:        :xn@:\
        !          7980:        :co#80:li#24:\
        !          7981:        :is=\E^9;0s\E^7;1s\E[3g\E^11;9s\E^11;17s\E^11;25s\E^11;33s\E^11;41s\E^11;49s\E^11;57s\E^11;65s\E^11;73s\E^11;81s\E^11;89s:\
        !          7982:        :sr=5\EM\E[K:vs=\E^9;0s\E^7;1s:tc=vt100:
        !          7983: # (modgraph2: mapped ":pt:" to default tabs -- esr)
        !          7984: # The GX-1000 manual is dated 1984
        !          7985: modgraph2|modgraph gx-1000, set to 80x24, keypad not enabled:\
        !          7986:        :am:bs:da:db:pt:\
        !          7987:        :co#80:li#24:\
        !          7988:        :cd=50\EJ:ce=3\EK:cl=50\EH\EJ:cm=5\EY%+ %+ :\
        !          7989:        :is=\E<\E^5;2s\E^7;1s\E[3g\E^11;9s\E^11;17s\E^11;25s\E^11;33s\E^11;41s\E^11;49s\E^11;57s\E^11;65s\E^11;73s\E^11;81s\E^11;89s\E^12;0s\E^14;2s\E^15;9s\E^25;1s\E^9;1s\E^27;1:\
        !          7990:        :nd=2\EC:sr=5\EI:up=2\EA:
        !          7991:
        !          7992: #### Morrow Designs
        !          7993: #
        !          7994: # This was George Morrow's company.  They started in the late 1970s making
        !          7995: # S100-bus machines.  They used to be reachable at:
        !          7996: #
        !          7997: #        Morrow
        !          7998: #        600 McCormick St.
        !          7999: #        San Leandro, CA 94577
        !          8000: #
        !          8001: # but they're long gone now (1995).
        !          8002: #
        !          8003:
        !          8004: # The mt70 terminal was shipped with the Morrow MD-3 microcomputer.
        !          8005: # Jeff's specimen was dated June 1984.
        !          8006: # From: Jeff Wieland <wieland@acn.purdue.edu> 24 Feb 1995
        !          8007: mt70|mt-70|Morrow MD-70; native Morrow mode:\
        !          8008:        :am:mi:ms:xo:\
        !          8009:        :co#80:it#8:li#24:\
        !          8010:        :ae=\E%:al=\EE:as=\E$:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          8011:        :cl=^Z:cm=\E=%+ %+ :cr=^M:ct=\E0:dc=\EW:dl=\ER:do=^J:\
        !          8012:        :ei=:ho=^^:i1=\E"2\EG0\E]:ic=\EQ:im=:k1=^A@\r:\
        !          8013:        :k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:k6=^AE\r:\
        !          8014:        :k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=^AK\r:kh=^AN\r:\
        !          8015:        :kl=^AL\r:kr=^AM\r:ku=^AJ\r:le=^H:me=\EG0:mh=\EG2:\
        !          8016:        :mr=\EG4:nd=^L:nw=^_:se=\EG0:sf=^J:so=\EG4:ta=^I:\
        !          8017:        :ti=\E"2\EG0\E]:up=^K:us=\EG1:vb=\EK1\EK0:ve=\E"2:\
        !          8018:        :vi=\E"0:
        !          8019:
        !          8020: #### Netronics
        !          8021: #
        !          8022: # The Netronics Smarterm 80 was a kit-built terminal that came in at least two
        !          8023: # flavors, a first 40-column version, and a second 64-column version released
        !          8024: # about 1983.
        !          8025:
        !          8026: # (netx: removed obsolete ":ma=j^Jk^Pl :" -- esr)
        !          8027: netx|netronics:\
        !          8028:        :bs:\
        !          8029:        :co#64:li#16:\
        !          8030:        :bl=^G:cd=\006\005:ce=\005:cl=\014:cm=\E=%+@%+@:\
        !          8031:        :cr=^M:do=^J:ho=^D:le=^H:nd=\E+@A:sf=^J:sr=\E=@@\013:\
        !          8032:        :up=^K:
        !          8033: smartvid|Netronics Smartvid 80:\
        !          8034:        :am:bw:eo:ms:xs:\
        !          8035:        :co#80:li#24:sg#1:ug#1:\
        !          8036:        :ae=\EGB:as=\EG@:bl=^G:bt=\EI:cd=\EY:ce=\ET:cl=^L:\
        !          8037:        :cm=\E=%+ %+ :cr=^M:dc=\EW:dl=\ER:do=^J:ei=\ED:ho=^Z:\
        !          8038:        :ic=\EQ:im=\EC:le=^H:ll=^Z^K:nd=^A:se=\EG@:sf=^J:\
        !          8039:        :so=\EGC:sr=^K:ta=\Ei:te=^Z^K:ue=\EG@:up=^K:us=\EGA:\
        !          8040:        :ve=^Z^K:
        !          8041: smarterm|smarterm-s|netronics smarterm 80x24 naked terminal:\
        !          8042:        :am:ul:\
        !          8043:        :co#80:li#24:sg#1:ug#1:\
        !          8044:        :al=\EE:bl=^G:bt=\EI:cd=\EY:ce=\ET:cl=^L:\
        !          8045:        :cm=\E=%+ %+ :cr=^M:dc=\EW:dl=\ER:do=^J:ei=\ED:ho=^Z:\
        !          8046:        :ic=\EQ:im=\EC:le=^H:nd=^A:sf=^J:ta=^I:ue=\EG@:\
        !          8047:        :us=\EGA:
        !          8048:
        !          8049: #### Omron
        !          8050: #
        !          8051: # This company is still around in 1995, manufacturing point-of-sale systems.
        !          8052:
        !          8053: omron|Omron 8025AG:\
        !          8054:        :am:bs:da:db:\
        !          8055:        :co#80:li#24:\
        !          8056:        :al=\EL:bl=^G:cd=\ER:ce=\EK:cl=\EJ:cr=^M:dc=\EP:\
        !          8057:        :dl=\EM:do=^J:ho=\EH:le=^H:nd=\EC:se=\E4:sf=\ES:\
        !          8058:        :so=\Ef:sr=\ET:up=\EA:vs=\EN:
        !          8059:
        !          8060: #### Soroc
        !          8061: #
        !          8062:
        !          8063: # (soroc120: removed obsolete ":ma=^K^P^R^L^L :" -- esr)
        !          8064: soroc120|iq120|soroc iq120:\
        !          8065:        :cd=\EY:ce=\ET:cl=\E*:do=^J:kd=^J:kl=^H:kr=^L:ku=^K:tc=adm3a:
        !          8066: soroc140|iq140|soroc iq140:\
        !          8067:        :am:mi:\
        !          8068:        :co#80:li#24:\
        !          8069:        :al=\Ee:bl=^G:bt=\EI:cd=\Ey:ce=\Et:cl=\E+:\
        !          8070:        :cm=\E=%+ %+ :cr=^M:dc=\Ew:dl=\Er:do=^J:ei=\E8:ho=^^:\
        !          8071:        :im=\E9:k0=^A0\r:k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:\
        !          8072:        :k5=^AD\r:k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:\
        !          8073:        :kh=^^:kr=^L:ku=^K:le=^H:ll=^^^K:nd=^L:se=\E\177:\
        !          8074:        :sf=^J:so=\E\177:ue=\E^A:up=^K:us=\E^A:
        !          8075:
        !          8076: #### Southwest Technical Products
        !          8077: #
        !          8078: # These guys made an early personal micro called the M6800.
        !          8079: # The ct82 was probably its console terminal.
        !          8080: #
        !          8081:
        !          8082: # (swtp: removed obsolete ":bc=^D:" -- esr)
        !          8083: swtp|ct82|southwest technical products ct82:\
        !          8084:        :am:\
        !          8085:        :co#82:li#20:\
        !          8086:        :al=^^Y:bl=^G:cd=^V:ce=^F:cl=^L:cm=\013%r%.%.:cr=^M:\
        !          8087:        :dc=^^H:dl=^Z:do=^J:ei=:ho=^P:ic=^^X:im=:\
        !          8088:        :is=\034\022\036\023\036\004\035\027\011\023\036\035\036\017\035\027\022\011:\
        !          8089:        :le=^D:ll=^C:nd=^S:se=^^^F:sf=^N:so=^^^V:sr=^O:up=^A:
        !          8090:
        !          8091: #### Synertek
        !          8092: #
        !          8093: # Bob Manson <manson@pattyr.acs.ohio-state.edu> writes (28 Apr 1995):
        !          8094: #
        !          8095: # Synertek used to make ICs, various 6502-based single-board process
        !          8096: # control and hobbyist computers, and assorted peripherals including a
        !          8097: # series of small inexpensive terminals (I think they were one of the
        !          8098: # first to have a "terminal-on-a-keyboard", where the terminal itself
        !          8099: # was only slightly larger than the keyboard).
        !          8100: #
        !          8101: # They apparently had a KTM-1 model, which I've never seen. The KTM-2/40
        !          8102: # was a 40x24 terminal that could connect to a standard TV through a
        !          8103: # video modulator.  The KTM-2/80 was the 80-column version (the 2/40
        !          8104: # could be upgraded to the 2/80 by adding 2 2114 SRAMs and a new ROM).
        !          8105: # I have a KTM-2/80 still in working order.  The KTM-2s had fully
        !          8106: # socketed parts, used 2 6507s, a 6532 as keyboard scanner, a program
        !          8107: # ROM and 2 ROMs as character generators. They were incredibly simple,
        !          8108: # and I've never had any problems with mine (witness the fact that mine
        !          8109: # was made in 1981 and is still working great... I've blown the video
        !          8110: # output transistor a couple of times, but it's a 2N2222 :-)
        !          8111: #
        !          8112: # The KTM-3 (which is what is listed in the terminfo file) was their
        !          8113: # attempt at putting a KTM-2 in a box (and some models came with a
        !          8114: # CRT). It wasn't much different from the KTM-2 hardware-wise, but the
        !          8115: # control and escape sequences are very different. The KTM-3 was always
        !          8116: # real broken, at least according to the folks I've talked to about it.
        !          8117: #
        !          8118: # The padding in the entry is probably off--these terminals were very
        !          8119: # slow (it takes like 100ms for the KTM-2 to clear the screen...) And
        !          8120: # anyone with any sanity replaced the ROMs with something that provided
        !          8121: # a reasonable subset of VT100 functionality, since the usual ROMs were
        !          8122: # obviously very primitive... oh, you could get an upgraded ROM from
        !          8123: # Synertek for some incredible amount of money, but what hacker with an
        !          8124: # EPROM burner would do that? :)
        !          8125: #
        !          8126: # Sorry I don't have any contact info; I believe they were located in
        !          8127: # Sunnyvale, and I'm fairly sure they are still manufacturing ICs
        !          8128: # (they've gone to ASICs and FPGAs), but I doubt they're in the computer
        !          8129: # business these days.
        !          8130:
        !          8131: # Tested, seems to work fine with vi.
        !          8132: synertek|ktm|synertek380|synertek ktm 3/80 tubeless terminal:\
        !          8133:        :am:\
        !          8134:        :co#80:li#24:\
        !          8135:        :cd=\EJ:ce=\EK:cl=^Z:cm=\E=%+ %+ :le=^H:nd=^L:up=^K:
        !          8136:
        !          8137: #### Tab Office Products
        !          8138: #
        !          8139: #      TAB Products Co. - Palo Alto, California
        !          8140: #      Electronic Office Products,
        !          8141: #      1451 California Avenue 94304
        !          8142: #
        !          8143: # I think they're out of business.
        !          8144: #
        !          8145:
        !          8146: # The tab 132 uses xon/xoff, so no padding needed.
        !          8147: # :ks:/:ke: have nothing to do with arrow keys.
        !          8148: # :is: sets 80 col mode, normal video, autowrap on (for :am:).
        !          8149: # Seems to be no way to get rid of status line.
        !          8150: # The manual for this puppy was dated June 1981.  It claims to be VT52-
        !          8151: # compatible.
        !          8152: tab132|tab|tab132-15|tab 132/15:\
        !          8153:        :da:db:\
        !          8154:        :co#80:dN@:li#24:lm#96:\
        !          8155:        :al=\E[L:cm=\E[%i%d;%dH:dc=\E[P:dl=\E[M:do=^J:\
        !          8156:        :ei=\E[4l:im=\E[4h:is=\E[?7h\E[?3l\E[?5l:kd=\E[B:ke@:\
        !          8157:        :kl=\E[D:ks@:ku=\E[A:tc=vt100:
        !          8158: tab132-w|tab132 in wide mode:\
        !          8159:        :co#132:\
        !          8160:        :is=\E[?7h\E[?3h\E[?5l:tc=tab132:
        !          8161: tab132-rv|tab132 in reverse-video mode:\
        !          8162:        :is=\E[?7h\E[?3l\E[?5h:tc=tab132:
        !          8163: tab132-w-rv|tab132 in reverse-video/wide mode:\
        !          8164:        :is=\E[?7h\E[?3h\E[?5h:tc=tab132-w:
        !          8165:
        !          8166:
        !          8167: #### Teleray
        !          8168: #
        !          8169: #      Research Incorporated
        !          8170: #      6425 Flying Cloud Drive
        !          8171: #      Eden Prairie, MN 55344
        !          8172: #      Vox: (612)-941-3300
        !          8173: #
        !          8174: # The Teleray terminals were all discontinued in 1992-93.  RI still services
        !          8175: # and repairs these beasts, but no longer manufactures them.  The Teleray
        !          8176: # people believe that all the types listed below are very rare now (1995).
        !          8177: # There was a newer line of Telerays (Model 7, Model 20, Model 30, and
        !          8178: # Model 100) that were ANSI-compatible.
        !          8179: #
        !          8180: # Note two things called "teleray".  Reorder should move the common one
        !          8181: # to the front if you have either.  A dumb teleray with the cursor stuck
        !          8182: # on the bottom and no obvious model number is probably a 3700.
        !          8183: #
        !          8184:
        !          8185: t3700|dumb teleray 3700:\
        !          8186:        :bs:\
        !          8187:        :co#80:li#24:\
        !          8188:        :bl=^G:cl=^L:cr=^M:do=^J:le=^H:sf=^J:
        !          8189: # (t3800: mapped ":pt:" to default tabs -- esr)
        !          8190: t3800|teleray 3800 series:\
        !          8191:        :bs:pt:\
        !          8192:        :co#80:li#24:\
        !          8193:        :bl=^G:cd=\EJ:ce=\EK:cl=^L:cm=\EY%+ %+ :cr=^M:do=^J:\
        !          8194:        :ho=\EH:le=^H:ll=\EY7 :nd=\EC:sf=^J:ta=^I:up=^K:
        !          8195: # (t1061: mapped ":pt:" to default tabs -- esr)
        !          8196: t1061|teleray|teleray 1061:\
        !          8197:        :am:km:xs:xt:\
        !          8198:        :co#80:li#24:sg#1:ug#1:\
        !          8199:        :al=\EL:bl=^G:cd=\EJ:ce=\EK:cl=\014:cm=\EY%+ %+ :\
        !          8200:        :cr=^M:ct=\EG:dc=\EQ:dl=\EM:do=^J:ei=:ho=\EH:ic=\EP:\
        !          8201:        :im=:ip=:\
        !          8202:        :is=\Ee\EU01^Z1\EV\EU02^Z2\EV\EU03^Z3\EV\EU04^Z4\EV\EU05^Z5\EV\EU06^Z6\EV\EU07^Z7\EV\EU08^Z8\EV\Ef:\
        !          8203:        :k1=^Z1:k2=^Z2:k3=^Z3:k4=^Z4:k5=^Z5:k6=^Z6:k7=^Z7:\
        !          8204:        :k8=^Z8:le=^H:nd=\EC:se=\ER@:sf=^J:so= \ERD:st=\EF:\
        !          8205:        :ta=^I:ue=\ER@:up=\EA:us=\ERH:
        !          8206: t1061f|teleray 1061 with fast PROMs:\
        !          8207:        :al=\EL:dl=\EM:ip@:tc=t1061:
        !          8208: # "Teleray Arpa Special", offically designated as
        !          8209: # "Teleray Arpa network model 10" with "Special feature 720".
        !          8210: # This is the new (1981) fast microcode updating the older "arpa" proms
        !          8211: # (which gave meta-key and progmmable-fxn keys).  720 is much much faster,
        !          8212: # converts the keypad to programmable function keys, and has other goodies.
        !          8213: # Standout mode is still broken (magic cookie, etc) so is suppressed as no
        !          8214: # programs handle such lossage properly.
        !          8215: # Note: this is NOT the old termcap's "t1061f with fast proms."
        !          8216: # From: J. Lepreau <lepreau@utah-cs> Tue Feb  1 06:39:37 1983, Univ of Utah
        !          8217: # (t10: mapped ":pt:" to default tabs;
        !          8218: # removed overridden ":so@:se@:us@:ue@:" -- esr)
        !          8219: t10|teleray 10 special:\
        !          8220:        :bs:km:pt:xs:xt:\
        !          8221:        :co#80:li#24:sg#2:ug#1:\
        !          8222:        :al=\EL:cd=\EJ:ce=\EK:cl=30\Ej:cm=\EY%+ %+ :dc=\EQ:\
        !          8223:        :dl=\EM:ei=:ho=\EH:ic=\EP:im=:nd=\EC:pc=\200:se=\ER@:\
        !          8224:        :sf=\Eq:so=\ERD:sr=\Ep:ue=\ER@:up=\EA:us=\ERH:
        !          8225: # teleray 16 - map the arrow keys for vi/rogue, shifted to up/down page, and
        !          8226: # back/forth words. Put the function keys (f1-f10) where they can be
        !          8227: # found, and turn off the other magic keys along the top row, except
        !          8228: # for line/local. Do the magic appropriate to make the page shifts work.
        !          8229: # Also toggle ^S/^Q for those of us who use Emacs.
        !          8230: t16|teleray 16:\
        !          8231:        :am:da:db:mi:xs:xt:\
        !          8232:        :co#80:li#24:\
        !          8233:        :al=\E[L:bl=^G:cd=\E[0J:ce=\E[0K:cl=\E[H\E[2J:\
        !          8234:        :cm=%i\E[%d;%df:cr=^M:dc=\E[P:dl=\E[M:do=\E[B:\
        !          8235:        :ei=\E[4l:ho=\E[H:im=\E[4h:k1=^Z1:k2=^Z2:k3=^Z3:\
        !          8236:        :k4=^Z4:k5=^Z5:k6=^Z6:k7=^Z7:k8=^Z8:k9=^Z9:le=^H:\
        !          8237:        :nd=\E[C:se=\E[m:sf=^J:so=\E[7m:sr=\E[T:ta=^I:\
        !          8238:        :te=\E[V\E[24;1f\E[?38h:ti=\E[U\E[?38l:ue=\E[m:\
        !          8239:        :up=\E[A:us=\E[4m:
        !          8240:
        !          8241: #### Texas Instruments (ti)
        !          8242: #
        !          8243:
        !          8244: ti700|ti733|ti735|ti silent 700:\
        !          8245:        :bs:hc:os:\
        !          8246:        :co#80:dC#162:\
        !          8247:        :bl=^G:cr=\r:do=^J:le=^H:sf=^J:
        !          8248: ti743|ti745|ti silent 745:\
        !          8249:        :bs:hc:os:\
        !          8250:        :co#80:\
        !          8251:        :bl=^G:cr=^M:do=^J:le=^H:sf=^J:
        !          8252: ti800|ti omni 800:\
        !          8253:        :bs:hc:os:\
        !          8254:        :co#132:\
        !          8255:        :bl=^G:cr=^M:do=^J:le=^H:sf=^J:
        !          8256: ti924|Texas Instruments 924 VDT 8859/1 7 bit CTRL:\
        !          8257:        :am:xo:\
        !          8258:        :co#80:it#8:li#24:\
        !          8259:        :al=\E[L:bl=^G:cd=\E[J:ce=\E[K:cl=\E[2J\E[H:\
        !          8260:        :cm=%i\E[%d;%dH:cr=^M:cs=%i\E[%d;%dr:ct=\E[3g:\
        !          8261:        :dl=\E[M:do=\E[B:ho=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:\
        !          8262:        :k4=\EOS:k5=\E[16~:k6=\E[17~:k7=\E[18~:k8=\E[19~:\
        !          8263:        :k9=\E[20~:kb=^H:kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:\
        !          8264:        :le=\E[D:mb=\E[5m:md=\E[1m:me=\E[0m:mr=\E[7m:nd=\E[C:\
        !          8265:        :rc=\E8:sc=\E7:se=\E[m:sf=\ED:so=\E[7m:sr=\EM:st=\EH:\
        !          8266:        :ta=^I:ue=\E[m:up=\E[A:us=\E[4m:ve=\E[?25h:\
        !          8267:        :vi=\E[?25l:vs=\E[?31h:
        !          8268: ti924-8|Texas Instruments 924 VDT 8859/1 8 bit CTRL:\
        !          8269:        :am:xo:\
        !          8270:        :co#80:it#8:li#24:\
        !          8271:        :al=\E[L:bl=^G:cd=\E[J:ce=\E[K:cl=\E[2J\E[H:\
        !          8272:        :cm=%i\E[%d;%dH:cr=^M:cs=%i\E[%d;%dr:ct=\E[3g:\
        !          8273:        :dl=\E[M:do=\E[B:ho=\E[H:k1=P\217>:k2=Q\217>:\
        !          8274:        :k3=R\217>:k4=S\217>:k5=~\23316>:k6=~\23317>:\
        !          8275:        :k7=~\23318>:k8=~\23319>:k9=~\23320>:kb=^H:kd=\E[B:\
        !          8276:        :kl=\E[D:kr=\E[C:ku=\E[A:le=\E[D:mb=\E[5m:md=\E[1m:\
        !          8277:        :me=\E[0m:mr=\E[7m:nd=\E[C:rc=\E8:sc=\E7:se=\E[m:\
        !          8278:        :sf=\ED:so=\E[7m:sr=\EM:st=\EH:ta=^I:ue=\E[m:up=\E[A:\
        !          8279:        :us=\E[4m:ve=\E[?25h:vi=\E[?25l:vs=\E[?31h:
        !          8280: ti924w|Texas Instruments 924 VDT 7 bit - 132 column mode:\
        !          8281:        :co#132:\
        !          8282:        :tc=ti924:
        !          8283: ti924-8w|Texas Instruments 924 VDT 8 bit - 132 column mode:\
        !          8284:        :co#132:\
        !          8285:        :tc=ti924-8:
        !          8286: em931-9|Texas Instruments 924 Emulator in the 931 Mode:\
        !          8287:        :tc=ti931:
        !          8288: em924|Texas Instruments 924 Emulator in the 924 Mode:\
        !          8289:        :tc=ti924:
        !          8290: em931|Texas Instruments 931 Emulator:\
        !          8291:        :tc=ti931:
        !          8292: ti931|Texas Instruments 931 VDT:\
        !          8293:        :am:xo:\
        !          8294:        :co#80:li#24:\
        !          8295:        :LE=ENTR:al=\EN:bl=^G:cd=\EJ:ce=\EI:cl=\EL:\
        !          8296:        :cm=\EY%+ %+ :cr=^M:dc=\EQ:dl=\EO:do=\EB:ei=:ho=\EH:\
        !          8297:        :ic=\ER\EP\EM:im=:is=\EGB\E(@B@@\E):k1=\Ei1:k2=\Ei2:\
        !          8298:        :k3=\Ei3:k4=\Ei4:k5=\Ei5:k6=\Ei6:k7=\Ei7:k8=\Ei8:\
        !          8299:        :k9=\Ei9:kd=\EB:kl=\ED:kr=\EC:ku=\EA:le=\ED:mb=\E4P:\
        !          8300:        :me=\E4@:mk=\E4H:mr=\E4B:nd=\EC:se=\E4@:sf=\Ea:\
        !          8301:        :so=\E4A:sr=\Eb:ue=\E4@:up=\EA:us=\E4D:ve=\E4@:
        !          8302: ti926|Texas Instruments 926 VDT 8859/1 7 bit CTRL:\
        !          8303:        :cs@:sf=\E[1S:sr=\E[1T:tc=ti924:
        !          8304: ti926-8|Texas Instruments 926 VDT 8859/1 8 bit CTRL:\
        !          8305:        :cs@:sf=S\2331>:sr=T\2331>:tc=ti924-8:
        !          8306: ti_ansi|basic entry for ti928:\
        !          8307:        :am:eo:xn:xo:\
        !          8308:        :co#80:it#8:li#25:\
        !          8309:        :al=\E[L:bl=^G:bt=\E[Z:cd=\E[J:ce=\E[K:cl=\E[2J\E[H:\
        !          8310:        :cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:dc=\E[P:dl=\E[M:\
        !          8311:        :do=\E[B:ei=:ho=\E[H:ic=\E[@:im=:k0=\E[V:k1=\E[M:\
        !          8312:        :k2=\E[N:k3=\E[O:k4=\E[P:k5=\E[Q:k6=\E[R:k7=\E[S:\
        !          8313:        :k8=\E[T:k9=\E[U:kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:\
        !          8314:        :kr=\E[C:ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[m:\
        !          8315:        :nd=\E[C:se=\E[m:sf=\E[S:so=\E[7m:sr=\E[T:ta=^I:\
        !          8316:        :ue=\E[m:up=\E[A:us=\E[4m:
        !          8317: #
        !          8318: #       928 VDT 7 bit control mode
        !          8319: #
        !          8320: ti928|Texas Instruments 928 VDT 8859/1 7 bit CTRL::\
        !          8321:        :k1=\E[17~:k2=\E[18~:k3=\E[19~:k4=\E[20~:k5=\E[21~:\
        !          8322:        :k6=\E[23~:k7=\E[24~:k8=\E[25~:k9=\E[26~:tc=ti_ansi:
        !          8323: #
        !          8324: #       928 VDT 8 bit control mode
        !          8325: #
        !          8326: ti928-8|Texas Instruments 928 VDT 8859/1 8 bit CTRL::\
        !          8327:        :k1=\23317~:k2=\23318~:k3=\23319~:k4=\23320~:\
        !          8328:        :k5=\23321~:k6=\23323~:k7=\23324~:k8=\23325~:\
        !          8329:        :k9=\23326~:kh=\233H:tc=ti_ansi:
        !          8330:
        !          8331: #### Zentec (zen)
        !          8332: #
        !          8333:
        !          8334: # (zen30: removed obsolete ":ma=^L ^R^L^K^P:" -- esr)
        !          8335: zen30|z30|zentec 30:\
        !          8336:        :am:bs:mi:ul:\
        !          8337:        :co#80:li#24:\
        !          8338:        :al=\EE:bl=^G:cd=\EY:ce=\ET:cl=\E*:cm=\E=%+ %+ :\
        !          8339:        :cr=^M:dc=\EW:dl=\ER:do=^J:ei=\Er:ho=^^:im=\Eq:le=^H:\
        !          8340:        :nd=^L:se=\EG0:sf=^J:so=\EG6:up=^K:
        !          8341: # (zen50: this had unknown capabilities
        !          8342: #      :BS=^U:CL=^V:CR=^B:
        !          8343: # UK/DK/RK/LK/HM were someone's aliases for ku/kd/kl/kr/kh,
        !          8344: # which were also in the original entry -- esr)
        !          8345: # (zen50: removed obsolete ":ma=^Hh^Ll^Jj^Kk:" -- esr)
        !          8346: zen50|z50|zentec zephyr:\
        !          8347:        :am:bs:\
        !          8348:        :co#80:li#24:sg#1:\
        !          8349:        :al=\EE:cd=\EY:ce=\ET:cl=\E+:cm=\E=%+ %+ :dc=\EW:\
        !          8350:        :dl=\ER:ei=:ic=\EQ:im=:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:\
        !          8351:        :se=\EGO:so=\EG4:up=^K:
        !          8352:
        !          8353: ######## OTHER OBSOLETE TYPES
        !          8354: #
        !          8355: # These terminals are *long* dead -- these entries are retained for
        !          8356: # historical interest only.
        !          8357:
        !          8358: #### Obsolete non-ANSI software emulations
        !          8359: #
        !          8360:
        !          8361: # CTRM terminal emulator
        !          8362: # 1. underlining is not allowed with colors: first, is is simulated by
        !          8363: # black on white, second, it disables background color manipulations.
        !          8364: # 2. BLINKING, REVERSE and BOLD are allowed with colors,
        !          8365: # so we have to save their status in the static registers A, B and H
        !          8366: # respectively, to be able to restore them when color changes
        !          8367: # (because any color change turns off ALL attributes)
        !          8368: # 3. "enter_bold_mode" and "enter_reverse_mode" sequences alternates modes,
        !          8369: # rather then simply  entering them.  Thus we have to check the
        !          8370: # static register B and H to determine the status, before sending the
        !          8371: # escape sequence.
        !          8372: # 4. sgr0 now must set the status of all 3 register (A,B,H) to zero
        !          8373: # and then reset colors
        !          8374: # 5. implementation of the protect mode would badly penalize the performance.
        !          8375: # we would have to use \E&bn sequence to turn off colors (as well as all
        !          8376: # other attributes), and keep the status of protect mode in yet another
        !          8377: # static variable.  If someone really need this mode, they would have to
        !          8378: # create another terminfo entry.
        !          8379: # 6. original color-pair is white on black.
        !          8380: # store the information about colors into static registers
        !          8381: # 7. set foreground color.  it performs the following steps.
        !          8382: #   1) turn off all attributes
        !          8383: #   2) turn on the background and video attribues that have been turned
        !          8384: #      on before (this information is stored in static registers X,Y,Z,A,B,H,D).
        !          8385: #   3) turn on foreground attributes
        !          8386: #   4) store information about foreground into U,V,W static registers
        !          8387: # 8. turn on background: similar to turn on foreground above
        !          8388: ctrm|C terminal emulator:\
        !          8389:        :am:xo:\
        !          8390:        :co#80:li#24:lm#0:pb#19200:vt#6:\
        !          8391:        :al=\EL:bl=^G:bt=\Ei:cd=\EJ:ce=\EK:ch=\E&a%dC:\
        !          8392:        :cl=\EH\EJ:cm=\E&a%r%dc%dY:cr=^M:ct=\E3:cv=\E&a%dY:\
        !          8393:        :dc=\EP:dl=\EM:do=^J:ei=\ER:im=\EQ:ip=:is=\E&jA\r:\
        !          8394:        :k1=\Ep\r:k2=\Eq\r:k3=\Er\r:k4=\Es\r:k5=\Et\r:\
        !          8395:        :k6=\Eu\r:k7=\Ev\r:k8=\Ew\r:kb=^H:kd=\Ew\r:ke=\E&jA:\
        !          8396:        :kh=\Ep\r:kl=\Eu\r:kr=\Ev\r:ks=\E&jB:ku=\Et\r:le=^H:\
        !          8397:        :mb=\E&dA%{1}%PA:md=%?%gH%{0}%=%t\E&dH%{1}%PH%;:\
        !          8398:        :me=\E&d@%{0}%PA%{0}%PB%{0}%PH:\
        !          8399:        :mr=%?%gB%{0}%=%t\E&dB%{1}%PB%;:nd=\EC:\
        !          8400:        :..sa=\E&d@%{0}%PA%{0}%PB%{0}%PD%{0}%PH\n%?%p1%p3%p5%|%|%t\E&dB%{1}%PB%;\n%?%p4%t\E&dA%{1}%PA%;\n%?%p6%t\E&dH%{1}%PH%;\n%?%p2%t\E&dD%;:\
        !          8401:        :sf=^J:so=\E&dD:st=\E1:ta=\011:up=\EA:us=\E&dD:
        !          8402:
        !          8403: # gs6300 - can't use blue foreground, it clashes with underline;
        !          8404: # it's simulated with cyan
        !          8405: gs6300|emots|AT&T PC6300 with EMOTS Terminal Emulator:\
        !          8406:        :am:ms:xo:\
        !          8407:        :co#80:it#8:li#24:\
        !          8408:        :AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:IC=\E[%d@:\
        !          8409:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=\E[10m:al=\E[L:\
        !          8410:        :as=\E[11m:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:\
        !          8411:        :cm=\E[%i%d;%dH:cr=^M:dc=\E[P:dl=\E[M:do=^J:ei=:\
        !          8412:        :ho=\E[H:ic=\E[@:im=:is=\E[0m:k1=\E[0s:k2=\E[24s:\
        !          8413:        :k3=\E[1s:k4=\E[23s:k5=\E[2s:k6=\E[22s:k7=\E[3s:\
        !          8414:        :k8=\E[21s:kb=^H:kd=\E[B:kh=\E[H:kl=\E[D:kr=\E[C:\
        !          8415:        :ku=\E[A:le=^H:mb=\E[5m:md=\E[1m:me=\E[m\E[10m:\
        !          8416:        :mr=\E[7m:nd=\E[C:pf=\E[4i:po=\E[5i:sf=^J:so=\E[1m:\
        !          8417:        :sr=\E[L:ta=^I:up=\E[A:us=\E[4m:
        !          8418:
        !          8419: # From: <earle@smeagol.UUCP> 29 Oct 85 05:40:18 GMT
        !          8420: # MS-Kermit with Heath-19 emulation mode enabled
        !          8421: # (h19k: changed ":pt@:" to ":it@"
        !          8422: h19k|h19kermit|heathkit emulation provided by Kermit (no auto margin):\
        !          8423:        :am@:da:db:xt:\
        !          8424:        :it@:\
        !          8425:        :ta@:tc=h19-u:
        !          8426:
        !          8427: # pc52 - can't use blue foreground, it clashes with underline;
        !          8428: # it's simulated with cyan
        !          8429: # bold means: white on black bold, so it not allowed with colors
        !          8430: # rev means: black on white, also not allowed
        !          8431: # smso and dim are simulated with colors, ditto
        !          8432: # smul is allowed, even though it always means white foreground:
        !          8433: # it is too important to leave out.
        !          8434: pc52|dec vt52 for PC:\
        !          8435:        :am:ms:\
        !          8436:        :co#80:it#8:li#25:\
        !          8437:        :al=\EL:bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :\
        !          8438:        :cr=^M:dl=\EM:do=^J:k1=\Ea:k2=\Eb:k3=\Ec:k4=\Ed:\
        !          8439:        :k5=\Ee:k6=\Ef:k7=\Eg:k8=\Eh:k9=\Ei:kb=^H:kd=\ED:\
        !          8440:        :kl=\EL:kr=\ER:ku=\EU:le=^H:mb=\Eo:md=\Ebo\Ec0:\
        !          8441:        :me=\Eb7\Ec0\Et:mh=\Eb3\Ec0:mr=\Ep:nd=\EC:\
        !          8442:        :se=\Eb7\Ec0:sf=^J:so=\Eb6\Ec4:sr=\EI:ta=^I:up=\EA:\
        !          8443:        :us=\Es:
        !          8444:
        !          8445: # vs100 emulator using tsim
        !          8446: # From: <lai@decwrl.dec.com>
        !          8447: # (vs100t: had Al/Dl in front of obvious AL/DL capabilities;
        !          8448: # also mapped ":pt:" to default tabs -- esr)
        !          8449: vs100t|tsim|vs100-tsim:\
        !          8450:        :am:bs:pt:\
        !          8451:        :co#80:li#24:\
        !          8452:        :AL=\E+%+ :DL=\E-%+ :al=\EI:cd=\EQ:ce=\EL:cl=\EE:\
        !          8453:        :cm=\EM%+ %+ :cs=\ES%+ %+ :dc=\Ed:dl=\ED:do=^J:ei=:\
        !          8454:        :ho=\EH:ic=\Ei:im=:is=\ER:nd=\En:rs=\ER:se=\Er:\
        !          8455:        :so=\Eh:ue=\Ev:up=^K:us=\Eu:
        !          8456:
        !          8457: # From: Rick Thomas <ihnp4!btlunix!rbt>
        !          8458: xtalk|IBM PC with xtalk communication program (versions up to 3.4):\
        !          8459:        :am:mi:ms:xo:\
        !          8460:        :co#80:it#8:li#24:sg#1:vt#3:\
        !          8461:        :DO=\E[%dB:K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:\
        !          8462:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:\
        !          8463:        :bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:\
        !          8464:        :cr=^M:ct=\E[3g:dl=\E[M:do=^J:ho=\E[H:k0=\EOy:\
        !          8465:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOt:k6=\EOu:\
        !          8466:        :k7=\EOv:k8=\EOl:k9=\EOw:kb=^H:kd=\EOB:ke=\E[?1l\E>:\
        !          8467:        :kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:nd=\E[C:\
        !          8468:        :se=\E[m :sf=^J:so=\E[7m :sr=\EM:st=\EH:ta=^I:\
        !          8469:        :up=\E[A:
        !          8470:
        !          8471: # YTERM standard version 1.0.
        !          8472: # Straight old ascii keyboard except function keys are Yale (e.g.,ASCII.KBD).
        !          8473: # Only 80 tab columns (else yterm 1.1 bug).  No :xn: in 1.0.
        !          8474: # Cannot use termcap :sr=\EM: because vi will not work, too bad.
        !          8475: # vi string is given so that yterm is reset each vi startup.
        !          8476: # (yterm10: removed obsolete ":EP:" and ":ma=h^JjklH:" capabilities;
        !          8477: # mapped ":pt:" to default tabs -- esr)
        !          8478: # From: greg small <gts@populi.berkeley.edu> 9-25-84
        !          8479: yterm10|yterm 1.0 UCB ascii.kbd:\
        !          8480:        :am:bs:pt:\
        !          8481:        :co#80:li#24:\
        !          8482:        :cd=^K:ce=^]:cl=^L:cm=\036%r%+ %+ :ho=^Y:\
        !          8483:        :is=\017\E[7i\E[m\E[?7h\E[?3g\r\EHY0  for \EHYTERM 1.\EH0 with A\EHSCII.KBD\EH 9-13-84\EH        \EH        \EH        \EH        \EH\n:\
        !          8484:        :k0=\E0:k1=\E1:k2=\E2:k3=\E3:k4=\E4:k5=\E5:k6=\E6:\
        !          8485:        :k7=\E7:k8=\E8:k9=\E9:kd=^J:kh=^^:kl=^H:kr=^L:ku=^K:\
        !          8486:        :nd=^\:rc=\E8:sc=\E7:se=\E[m:so=\E[7m:ue=\E[m:up=^_:\
        !          8487:        :us=\E[4m:\
        !          8488:        :vs=\017\E[7i\E[m\E[?7h\E[?3g\r\EHY0      \EH        \EH        \EH        \EH        \EH        \EH        \EH        \EH        \EH\r:
        !          8489: # YTERM variant version 1.1.  Version 1.1 has :xn:.
        !          8490: # From: greg small <gts@populi.berkeley.edu> 9-13-84
        !          8491: yterm11|yterm 1.1 UCB ascii.kbd:\
        !          8492:        :xn:\
        !          8493:        :is=\017\E[7i\E[m\E[?7h\E[?3g\r\EHY1  for \EHYTERM 1.\EH1 with A\EHSCII.KBD\EH 9-13-84\EH        \EH        \EH        \EH        \EH\n:tc=yterm10:
        !          8494: # YTERM 1.0 variant no autowrap or tabs
        !          8495: # X does not remember autowrap or tabs when T is deleted and restarted.
        !          8496: # (yterm: changed ":pt@:" to ":it@:" -- esr)
        !          8497: yterm10nat|yterm 1.0 UCB ascii.kbd no autowrap or tabs:\
        !          8498:        :am@:\
        !          8499:        :it@:\
        !          8500:        :is=\017\E[7i\E[m\E[?7l\E[?3g\rY2  for YTERM 1.0 with ASCII.KBD 9-20-84 no autowrap or tabs\n:\
        !          8501:        :vs=\017\E[7i\E[m\E[?7l\E[?3g\rY2\r:tc=yterm10:
        !          8502:
        !          8503: # The official PC terminal emulator program of the AT&T Product Centers.
        !          8504: # Note - insert mode commented out - doesn't seem to work on AT&T PC.
        !          8505: simterm|attpc running simterm:\
        !          8506:        :am:\
        !          8507:        :co#80:li#24:\
        !          8508:        :al=\EL:bl=^G:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\E=%+ %+ :\
        !          8509:        :cr=^M:dc=\ER:dl=\EM:do=\EB:ho=\EH:im=\EQ:le=^H:\
        !          8510:        :nd=\EC:sf=^J:so=\E&dB:te=\EVE:ti=\EVS:up=\EA:
        !          8511:
        !          8512: #### Daisy wheel printers
        !          8513: #
        !          8514:
        !          8515: # This section collects Diablo, DTC, Xerox, Qume, and other daisy
        !          8516: # wheel terminals.  These are now largely obsolete.
        !          8517: #
        !          8518: # This is an "experimental" entry for the SRI Agiles.
        !          8519: # It has been tried in a minimal way -- the Agile did not blow up!
        !          8520: # However, it has not been exhaustively tested.
        !          8521: # Anyone who tries it and finds it wanting should get in touch with:
        !          8522: # From: Ralph Keirstead <ralph@sri-unix>
        !          8523: #      EK352; SRI International; 333 Ravenswood Avenue; Menlo Park, CA 94025
        !          8524: # (agile: I removed an incorrect ":pl:" -- esr)
        !          8525: agile|agiles|sri agiles:\
        !          8526:        :hc:os:\
        !          8527:        :co#132:\
        !          8528:        :bl=^G:cr=^M:ct=\E2:do=^J:hd=\E9:hu=\E0:is=\EE\EF\EJ:\
        !          8529:        :kb=^H:le=^H:sf=^J:st=\E1:ta=^I:up=\E^J:
        !          8530: # (1620: mapped ":pt:" to default tabs -- esr)
        !          8531: diablo1620|diablo1720|diablo450|ipsi|diablo 1620:\
        !          8532:        :bs:hc:os:pt:\
        !          8533:        :co#132:\
        !          8534:        :ch=\E\011%i%.:ct=\E2:do=^J:hd=\ED:hu=\EU:\
        !          8535:        :if=/usr/share/tabset/xerox1720:kb=^H:le=^H:st=\E1:\
        !          8536:        :up=\E^J:
        !          8537: diablo1620-m8|diablo1640-m8|diablo 1620 w/8 column left margin:\
        !          8538:        :co#124:\
        !          8539:        :do=^J:is=\r        \E9:tc=diablo1620:
        !          8540: diablo1640|diablo1730|diablo1740|diablo630|x1700|diablo|xerox|diablo 1640:\
        !          8541:        :bl=^G:if=/usr/share/tabset/xerox1730:se=\E&:so=\EW:\
        !          8542:        :ue=\ER:us=\EE:tc=diablo1620:
        !          8543: diablo1640-lm|diablo-lm|xerox-lm|diablo 1640 with indented left margin:\
        !          8544:        :co#124:\
        !          8545:        :if=/usr/share/tabset/xerox1730-lm:se=\E&:so=\EW:\
        !          8546:        :ue=\ER:us=\EE:tc=diablo1620:
        !          8547: diablo1740-lm|630-lm|1730-lm|x1700-lm:\
        !          8548:        :tc=diablo1640-lm:
        !          8549: # DTC 382 with VDU.  Has no :cd: so we fake it with :ce:.  Standout
        !          8550: # (so="^P \002^PF:") works but won't go away without dynamite (":se=^P \200:").
        !          8551: # The terminal has tabs, but I'm getting tired of fighting the braindamage.
        !          8552: # If no tab is set or the terminal's in a bad mood, it glitches the screen
        !          8553: # around all of memory.  Note that return puts a blank ("a return character")
        !          8554: # in the space the cursor was at, so we use ^P return (and thus ^P newline for
        !          8555: # newline).  Note also that if you turn off pt and let Unix expand tabs,
        !          8556: # curses won't work (current version) because it doesn't turn off this bit,
        !          8557: # and cursor addressing sends a tab for row/column 9.  What a losing terminal!
        !          8558: # I have been unable to get tabs set in all 96 lines - it always leaves at
        !          8559: # least one line with no tabs in it, and once you tab through that line,
        !          8560: # it completely weirds out.
        !          8561: dtc382|DTC 382:\
        !          8562:        :am:da:db:xs:\
        !          8563:        :co#80:li#24:lm#96:\
        !          8564:        :al=^P^Z:bl=^G:cd=\020\025\020\023\020\023:ce=^P^U:\
        !          8565:        :cl=\020\035:cm=\020\021%r%.%.:cr=^P^M:dc=^X:dl=^P^S:\
        !          8566:        :ei=^Pi:ho=^P^R:im=^PI:le=^H:nd=^PR:pc=\177:sf=^J:\
        !          8567:        :te=\020\035:ue=^P \200:up=^P^L:us=^P ^P:ve=^Pb:\
        !          8568:        :vs=^PB:
        !          8569: dtc300s|DTC 300s:\
        !          8570:        :hc:os:\
        !          8571:        :co#132:\
        !          8572:        :bl=^G:cr=^M:ct=\E3:do=^J:ff=^L:hd=\Eh:hu=\EH:kb=^H:\
        !          8573:        :le=^H:sf=^J:st=\E1:ta=^I:up=^Z:
        !          8574: gsi:\
        !          8575:        :hc:os:\
        !          8576:        :co#132:\
        !          8577:        :bl=^G:cr=^M:do=^J:hd=\Eh:hu=\EH:le=^H:sf=^J:ta=^I:\
        !          8578:        :up=^Z:
        !          8579: aj830|aj832|aj|anderson jacobson:\
        !          8580:        :bs:hc:os:\
        !          8581:        :bl=^G:cr=^M:do=^J:hd=\E9:hu=\E8:le=^H:sf=^J:up=\E7:
        !          8582: # From: Chris Torek <chris@gyre.umd.edu> Thu, 7 Nov 85 18:21:58 EST
        !          8583: aj510|AJ510|Anderson-Jacobson model 510:\
        !          8584:        :am:bs:mi:\
        !          8585:        :co#80:li#24:\
        !          8586:        :al=2*\E&I:cd=\E'P:ce=\E'L:cl=^L:cm=\E#%+ %+ :\
        !          8587:        :dc=.1*\E'D:dl=2*\E&D:ei=\E'J:ic=:im=\E'I:ip=.1*:\
        !          8588:        :kd=\EZ:kl=\EW:kr=\EX:ku=\EY:nd=\EX:pc=\177:se=\E"I:\
        !          8589:        :so=\E"I:te=\E"N:ti=\E"N:ue=\E"U:up=\EY:us=\E"U:
        !          8590: # From: <cbosg!ucbvax!pur-ee!cincy!chris> Thu Aug 20 09:09:18 1981
        !          8591: # This is incomplete, but it's a start.
        !          8592: # (5520: mapped ":pt:" to default tabs -- esr)
        !          8593: nec5520|nec|spinwriter|nec 5520:\
        !          8594:        :bs:hc:os:pt:\
        !          8595:        :co#132:\
        !          8596:        :bl=^G:cr=^M:ct=\E3:do=^J:ff=^L:hd=\E]s\n\E]W:\
        !          8597:        :hu=\E]s\E9\E]W:kb=^H:le=^H:sf=^J:st=\E1:ta=^I:\
        !          8598:        :up=\E9:
        !          8599: # (qume5: mapped ":pt:" to default tabs -- esr)
        !          8600: qume5|qume|Qume Sprint 5:\
        !          8601:        :bs:hc:os:pt:\
        !          8602:        :co#80:\
        !          8603:        :bl=^G:cr=^M:ct=\E3:do=^J:ff=^L:hd=\Eh:hu=\EH:kb=^H:\
        !          8604:        :le=^H:sf=^J:st=\E1:ta=^I:up=^Z:
        !          8605: # I suspect the xerox1720 is the same as the diablo 1620.
        !          8606: # (x1720: mapped ":pt:" to default tabs -- esr)
        !          8607: xerox1720|x1720|x1750|xerox 1720:\
        !          8608:        :bs:hc:os:pt:\
        !          8609:        :co#132:\
        !          8610:        :bl=^G:cr=^M:ct=\E2:do=^J:ff=^L:le=^H:sf=^J:st=\E1:\
        !          8611:        :ta=^I:
        !          8612:
        !          8613: #### Miscellaneous obsolete terminals, manufacturers unknown
        !          8614: #
        !          8615: # If you have any information about these (like, a manufacturer's name,
        !          8616: # and a date on the serial-number plate) please send it!
        !          8617:
        !          8618: cad68-3|cgc3|cad68 basic monitor transparent mode size 3 chars:\
        !          8619:        :am:bs:\
        !          8620:        :co#73:li#36:\
        !          8621:        :cl=^Z:ho=^^:nd=^L:up=^K:
        !          8622: cad68-2|cgc2|cad68 basic monitor transparent mode size 2 chars:\
        !          8623:        :am:bs:\
        !          8624:        :co#85:li#39:\
        !          8625:        :cl=^Z:ho=^^:k1=\E5:k2=\E6:k3=\E7:k4=\E8:kd=\E2:\
        !          8626:        :kl=\E3:kr=\E4:ku=\E1:nd=^L:se=\Em^C:so=\Em^L:up=^K:
        !          8627: cdi|cdi1203:\
        !          8628:        :am:bs:hc:os:\
        !          8629:        :co#80:\
        !          8630:        :bl=^G:cr=\r:do=^J:le=^H:sf=^J:
        !          8631: cops10|cops|cops-10:\
        !          8632:        :am:bw:\
        !          8633:        :co#80:li#24:\
        !          8634:        :bl=^G:cd=^W:ce=^V:cl=30^X:cm=\020%+ %+ :cr=^M:do=^J:\
        !          8635:        :kb=^H:kd=^J:kh=^Y:kl=^H:kr=^L:ku=^K:le=^H:nd=^L:\
        !          8636:        :sf=^J:up=^K:
        !          8637: # (d132: removed duplicate ":ic=\E5:" -- esr)
        !          8638: d132|datagraphix|datagraphix 132a:\
        !          8639:        :da:db:in:\
        !          8640:        :co#80:li#30:\
        !          8641:        :al=\E3:bl=^G:cl=^L:cr=^M:dc=\E6:do=^J:ei=:ho=\Et:\
        !          8642:        :ic=\E5:im=:nd=\El:sf=\Ev:sr=\Ew:up=\Ek:ve=\Em\En:\
        !          8643:        :vs=\Ex:
        !          8644: # The d800 was an early portable terminal from c.1984-85 that looked a lot
        !          8645: # like the original Compaq `lunchbox' portable (but no handle).  It had a vt220
        !          8646: # mode (which is what this entry looks like) and several other lesser-known
        !          8647: # emulations.
        !          8648: # (d800: mapped ":pt:" to default tabs -- esr)
        !          8649: d800|Direct 800/A:\
        !          8650:        :am:bs:da:db:ms:pt:xs:\
        !          8651:        :co#80:li#24:\
        !          8652:        :ae=\E[0m:as=\E[1m:bl=^G:cd=\E[J:ce=\E[K:\
        !          8653:        :cl=\E[1;1H\E[2J:cm=\E[%i%d;%dH:cr=^M:do=^J:k1=\EOP:\
        !          8654:        :k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOT:k6=\EOU:k7=\EOV:\
        !          8655:        :k8=\EOW:kd=\E[B:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:\
        !          8656:        :nd=\E[C:se=\E[0m:sf=\ED:so=\E[7m:sr=\EM:ta=^I:\
        !          8657:        :ue=\E[0m:up=\E[A:us=\E[4m:ve=\E[>12h:vs=\E[>12l:
        !          8658: digilog|digilog 333:\
        !          8659:        :bs:\
        !          8660:        :co#80:li#16:\
        !          8661:        :bl=^G:ce=^X:cr=^M:do=^J:ho=^N:le=^H:nd=^I:sf=^J:\
        !          8662:        :up=^O:
        !          8663: env230|envision230|envision 230 graphics terminal:\
        !          8664:        :am:mi:ms:xo:\
        !          8665:        :co#80:it#8:li#24:vt#3:\
        !          8666:        :DO=\E[%dB:K1=\EOq:K2=\EOr:K3=\EOs:K4=\EOp:K5=\EOn:\
        !          8667:        :LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:as=^N:bl=^G:\
        !          8668:        :cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:cr=^M:\
        !          8669:        :cs=\E[%i%d;%dr:ct=\E[3g:do=^J:ho=\E[H:k0=\EOy:\
        !          8670:        :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\EOt:k6=\EOu:\
        !          8671:        :k7=\EOv:k8=\EOl:k9=\EOw:kb=^H:kd=\EOB:ke=\E[?1l\E>:\
        !          8672:        :kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:mb=\E[5m:\
        !          8673:        :md=\E[1m:me=\E[m\017:mr=\E[7m:nd=\E[C:pf=\E[4i:\
        !          8674:        :po=\E[5i:ps=\E[0i:rc=\E8:\
        !          8675:        :..sa=\E[%?%p1%t;1%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m:\
        !          8676:        :sc=\E7:se=\E[0m<2>:sf=^J:so=\E[1m<2>:sr=\EM:st=\EH:\
        !          8677:        :ta=^I:ue=\E[m:up=\E[A:us=\E[4m:
        !          8678: # These execuports were impact-printer ttys with a 30- or maybe 15-cps acoustic
        !          8679: # coupler attached, the whole rig fitting in a suitcase and more or less
        !          8680: # portable.  Hot stuff for c.1977 :-) -- esr
        !          8681: ep48|ep4080|execuport 4080:\
        !          8682:        :am:bs:os:\
        !          8683:        :co#80:\
        !          8684:        :bl=^G:cr=^M:do=^J:hd=^\:hu=^^:le=^H:sf=^J:
        !          8685: ep40|ep4000|execuport 4000:\
        !          8686:        :am:bs:os:\
        !          8687:        :co#136:\
        !          8688:        :bl=^G:cr=^M:do=^J:hd=^\:hu=^^:le=^H:sf=^J:
        !          8689: # Adam Thompson <thompson@xanth.magic.mb.ca> tells us:
        !          8690: # Informer series - these are all portable units, resembling older
        !          8691: # automatic bread-baking machines.  The terminal looks like a `clamshell'
        !          8692: # design, but isn't.  The structure is similar to the Direct terminals,
        !          8693: # but only half the width.  The entire unit is only about 10" wide.
        !          8694: # It features an 8" screen (6" or 7" if you have color!), and an 9"x6"
        !          8695: # keyboard.  All the keys are crammed together, much like some laptop
        !          8696: # PCs today, but perhaps less well organized...all these units have a
        !          8697: # bewildering array of plugs on the back, including a built-in modem.
        !          8698: # The 305 was a color version of the 304; the 306 and 307 were mono and
        !          8699: # color terminals built for IBM bisync protocols.
        !          8700: # From: Paul Leondis <unllab@amber.berkeley.edu>
        !          8701: ifmr|Informer D304:\
        !          8702:        :am:bs:\
        !          8703:        :co#80:li#24:\
        !          8704:        :cd=\E/:ce=\EQ:cl=\EZ:cm=\EY%r%+ %+ :dc=\E\\:do=^J:\
        !          8705:        :ei=:ho=\EH:ic=\E[:im=:nd=\EC:se=\EK:so=\EJ:sr=\En:\
        !          8706:        :up=\EA:
        !          8707: # This used to say "de#001202" which presumably refers to the stty bits
        !          8708: # that need to be set for some version of Unix.  We need the real delay
        !          8709: # requirements in MS.
        !          8710: mw2|Multiwriter 2:\
        !          8711:        :hc:os:\
        !          8712:        :co#132:\
        !          8713:        :bl=^G:cr=^M:do=^J:sf=^J:
        !          8714: # Entry largely based on wy60 and has the features of wy60ak.
        !          8715: # (untranslatable capabilities removed to fit entry within 1023 bytes)
        !          8716: opus3n1+|Esprit  Opus3n1+ in wy60 mode with ANSI arrow keys +:\
        !          8717:        :am:bw:hs:km:mi:ms:ul:xo:\
        !          8718:        :co#80:li#24:ws#80:\
        !          8719:        :ae=\EH^C:al=\EE:as=\EH^B:bl=^G:bt=\EI:cd=\EY:ce=\ET:\
        !          8720:        :cl=\E*:cm=\Ea%i%dR%dC:cr=^M:ct=\E0:dc=\EW:dl=\ER:\
        !          8721:        :do=^J:ds=\Ez(\r:ei=\Er:fs=^M:ho=\036:\
        !          8722:        :if=/usr/share/tabset/std:im=\Eq:ip=:\
        !          8723:        :is=\E`\072\Ee(\EO\Ee6\Ec41\E~4\Ec21\Ed/\Ezz&\E[A\037\Ezz'\E[B\037\Ezz(\E[D\037\Ezz)\E[C\037\Ezz<\E[Q\037\Ezz`\E[F\037\EA1*\EZH12:\
        !          8724:        :k1=^A@\r:k2=^AA\r:k3=^AB\r:k4=^AC\r:k5=^AD\r:\
        !          8725:        :k6=^AE\r:k7=^AF\r:k8=^AG\r:k9=^AH\r:kb=^H:kd=\E[B:\
        !          8726:        :kh=^^:kl=\E[D:kr=\E[C:ku=\E[A:le=^H:mb=\EG2:\
        !          8727:        :me=\E(\EH\003\EG0\EcD:mh=\EGp:mk=\EG1:mp=\E):\
        !          8728:        :mr=\EG4:nd=^L:nw=\r\n:pf=^T:po=^R:ps=\EP:se=\EG0:\
        !          8729:        :sf=^J:so=\EG4:sr=\Ej:st=\E1:ta=\011:\
        !          8730:        :ti=\Ezz&\E[A\037\Ezz'\E[B\037\Ezz(\E[D\037\Ezz)\E[C\037\Ezz<\E[Q\037:\
        !          8731:        :ts=\Ez(:uc=\EG8%p1%c\EG0:ue=\EG0:up=^K:us=\EG8:\
        !          8732:        :ve=\E`1:vi=\E`0:
        !          8733: # (ps300: changed ":pt@:" to "it@" -- esr)
        !          8734: ps300|Picture System 300:\
        !          8735:        :xt:\
        !          8736:        :it@:\
        !          8737:        :se@:so@:ue@:us@:tc=vt100:
        !          8738: ramtek|ramtek 6000:\
        !          8739:        :am:\
        !          8740:        :co#78:li#24:\
        !          8741:        :bl=^G:cl=[alpha]\n[erase]\n:cr=^M:do=^J:le=^H:sf=^J:
        !          8742: # Upper case terminal, uses lower case for control sequences!!!
        !          8743: tec400|tec scope:\
        !          8744:        :sg#1:\
        !          8745:        :al=e:cd=s:ce=c:cl=f:..cm=l%p2%~%c%p1%~%c:dc=t:dl=u:\
        !          8746:        :do=h:ei=:ho=i:ic=d:im=:le=w:nd=g:se=|:so={:up=x:
        !          8747: # From: <ucbvax!geoff> Mon Sep 21 21:15:45 1981
        !          8748: # This entry has been tested.
        !          8749: tec500|tec 500:\
        !          8750:        :am:bs:\
        !          8751:        :co#80:li#24:\
        !          8752:        :bl=^G:cl=\032:cm=\E=%+ %+ :cr=^M:do=^J:ho=^^:le=^H:\
        !          8753:        :nd=^L:se=^\:sf=^J:so=^]:up=^K:
        !          8754: # tec is untested, and taken from CB/Unix virtual terminal driver.
        !          8755: # I would appreciate more information on this terminal, such as the
        !          8756: # manufacturer and the model number.  There are too many tecs in here.
        !          8757: # (tec: removed obsolete ":ma=^K^P^_ :" -- esr)
        !          8758: tec:\
        !          8759:        :am:bs:\
        !          8760:        :co#80:li#24:\
        !          8761:        :bl=^G:cl=^L:cr=^M:do=^J:ho=^^:le=^H:nd=^_:sf=^J:\
        !          8762:        :up=^K:
        !          8763: teletec|Teletec Datascreen:\
        !          8764:        :am:bs:\
        !          8765:        :co#80:li#24:\
        !          8766:        :bl=^G:cl=^L:cr=^M:do=^J:ho=^^:le=^H:nd=^_:sf=^J:\
        !          8767:        :up=^K:
        !          8768: # Terak made a PDP-11 based box with a bitmapped display that ran UCSD
        !          8769: # Pascal as the native O/S. It was quite a nice box, and there were several
        !          8770: # at Berkeley.
        !          8771: terak|Terak emulating Datamedia 1520:\
        !          8772:        :tc=dm1520:
        !          8773: # From: Mark Dornfeld <romwa@ucbvax.berkeley.edu>
        !          8774: #              This termcap is for the LANPAR Technologies VISION 3220
        !          8775: #      terminal.  The function key definitions k0-k5 represent the
        !          8776: #      edit keypad: FIND, INSERT HERE, REMOVE, SELECT, PREV SCREEN,
        !          8777: #      NEXT SCREEN. The key definitions k6-k9 represent the PF1 to
        !          8778: #      PF4 keys.
        !          8779: # (v3220: mapped ":pt:" to default tabs, removed obsolete ":kn#10:" -- esr)
        !          8780: v3220|LANPAR Vision II model 3220/3221/3222:\
        !          8781:        :am:bs:mi:pt:xn:\
        !          8782:        :co#80:li#24:\
        !          8783:        :al=\E[L:cd=\E[J:ce=\E[K:cl=\E[H\E[J:cm=\E[%i%d;%dH:\
        !          8784:        :dc=\E[P:dl=\E[M:ei=\E[4l:im=\E[4h:\
        !          8785:        :is=\E>\E[?3l\E[?7h\E[?8h\E[p:k0=\E[1~:k1=\E[2~:\
        !          8786:        :k2=\E[3~:k3=\E[4~:k4=\E[5~:k5=\E[6~:k6=\E[OP:\
        !          8787:        :k7=\E[OQ:k8=\E[OR:k9=\E[OS:kd=\E[B:ke=\E>:kh=\E[H:\
        !          8788:        :kl=\E[D:kr=\E[C:ks=\E=:ku=\E[A:nd=\E[C:se=\E[m:\
        !          8789:        :so=\E[7m:sr=\EM:ue=\E[m:up=\E[A:us=\E[4m:
        !          8790: # Does anybody know where these "wind" terminals came from?
        !          8791: wind:\
        !          8792:        :bs:\
        !          8793:        :co#80:li#24:\
        !          8794:        :cl=\EnP(\Eo:cm=\Ep%r%.%.:ho=\Ep\200\200:k1=\E5:\
        !          8795:        :k2=\E6:k3=\E7:k4=\E8:kd=\E2:kl=\E3:kr=\E4:ku=\E1:\
        !          8796:        :nd=^L:nl=^]:se=\Em^C:so=\Em^L:up=^K:
        !          8797: wind16:\
        !          8798:        :bs:\
        !          8799:        :co#80:li#16:\
        !          8800:        :cl=\EnP\020\Eo:cm=\Ep%r%.%.:ho=\Ep\200\200:nd=^L:\
        !          8801:        :nl=^]:se=\Em^C:so=\Em^L:up=^K:
        !          8802: wind40:\
        !          8803:        :bs:\
        !          8804:        :co#80:li#40:\
        !          8805:        :cl=\EnP(\Eo:cm=\Ep%r%.%.:ho=\Ep\200\200:nd=^L:nl=^]:\
        !          8806:        :se=\Em^C:so=\Em^L:up=^K:
        !          8807: # (wind50: corrected :cl=\EnP\128\062\Eo: -- esr)
        !          8808: wind50:\
        !          8809:        :bs:\
        !          8810:        :co#88:li#50:\
        !          8811:        :cl=\EnP2\Eo:cm=\Ep%r%.%.:ho=\Ep\200\200:k1=\E5:\
        !          8812:        :k2=\E6:k3=\E7:k4=\E8:kd=\E2:kl=\E3:kr=\E4:ku=\E1:\
        !          8813:        :nd=^L:nl=^]:se=\Em^C:so=\Em^L:up=^K:
        !          8814: # (xitex: removed obsolete ":ma=j^Jk^Pl :" -- esr)
        !          8815: xitex|xitex sct-100:\
        !          8816:        :bs:\
        !          8817:        :co#64:li#16:\
        !          8818:        :bl=^G:cd=\006\005:ce=\005:cl=\014:cm=\E=%+@%+@:\
        !          8819:        :cr=^M:do=^J:ho=^D:le=^H:nd=\E+@A:sf=^J:sr=\E=@@\013:\
        !          8820:        :up=^K:
        !          8821: plasma|plasma panel:\
        !          8822:        :am:bs:\
        !          8823:        :co#85:li#45:\
        !          8824:        :bl=^G:cl=^L:cr=^M:do=^J:ho=^^:le=^H:nd=^X:sf=^J:\
        !          8825:        :up=^V:
        !          8826:
        !          8827: #### Homebrew and custom terminals
        !          8828: #
        !          8829:
        !          8830: # Nu machine parameters taken from mit-vax.
        !          8831: #                                              smc - 5/21/85
        !          8832: #
        !          8833: nuterminal:\
        !          8834:        :am:mi:ms:\
        !          8835:        :co#80:it#8:li#24:\
        !          8836:        :ae=\EG:al=1*\EL:as=\EF:cd=60\EJ:ce=10\EK:cl=60\EE:\
        !          8837:        :..cm=\EY%+ %+ :cr=^M:dc=2.5*\EN:dl=1*\EM:do=\EB:\
        !          8838:        :ei=\EO:ho=\EH:im=\E@:ip=2.5*:k1=\ES:k2=\ET:k3=\EU:\
        !          8839:        :k4=\EV:k5=\EW:k6=\EP:k7=\EQ:k8=\ER:kb=^H:kd=\EB:\
        !          8840:        :kh=\EH:kl=\ED:kr=\EC:ku=\EA:le=^H:nd=\EC:nw=^M^J:\
        !          8841:        :se=\Eq:sf=^J:so=\Ep:sr=\EI:ta=^I:up=\EA:ve=\Ey4:\
        !          8842:        :vs=\Ex4:
        !          8843: nu24|nuwindow:\
        !          8844:        :mi:ms:\
        !          8845:        :co#86:it#8:li#24:\
        !          8846:        :ae=\EG:al=1*\EL:as=\EF:cd=\EJ:ce=\EK:cl=\EE:\
        !          8847:        :..cm=\EY%+ %+ :cr=^M:dl=1*\EM:do=\EB:ei=\EO:ho=\EH:\
        !          8848:        :im=\E@:ip=2.5*:kb=^H:kd=\EB:kh=\EH:kl=\ED:kr=\EC:\
        !          8849:        :ku=\EA:le=^H:nd=\EC:nw=^M^J:se=\Eq:sf=^J:so=\Ep:\
        !          8850:        :sr=\EI:ta=^I:up=\EA:ve=\Ey4:vs=\Ex4:
        !          8851: bnu|nu51|bnuwindow:\
        !          8852:        :co#86:li#51:\
        !          8853:        :tc=nuterminal:
        !          8854: fnu|nu61|fnuwindow:\
        !          8855:        :co#86:li#61:\
        !          8856:        :tc=nuterminal:
        !          8857: nunix-30|nu-telnet-30|nu-half -- Half nu screen thru telnet:\
        !          8858:        :am:\
        !          8859:        :co#78:it#8:li#30:\
        !          8860:        :al=\EL:cd=\EJ:ce=\EK:cl=\EE:..cm=\EY%+ %+ :cr=^M:\
        !          8861:        :dl=\EM:do=\EB:ho=\EH:ip=2.5*:kb=^H:kd=^J:kl=^H:\
        !          8862:        :le=^H:nd=\EC:nw=^M^J:se=\Eq:sf=^J:so=\Ep:sr=\EI:\
        !          8863:        :ta=^I:up=\EA:
        !          8864: nunix-61|nu-telnet-61|nu-full| Full nu screen thru telnet:\
        !          8865:        :co#78:li#61:\
        !          8866:        :tc=nunix-30:
        !          8867:
        !          8868: bch|bc|bill croft homebrew:\
        !          8869:        :am:bs:\
        !          8870:        :co#96:li#72:\
        !          8871:        :cl=^Z:cm=\E=%+ %+ :do=^J:ho=^^:le=^H:nd=^L:up=^K:\
        !          8872:        :vb=:
        !          8873: nucterm|rayterm|NUC homebrew:\
        !          8874:        :am:bs:\
        !          8875:        :co#80:li#24:\
        !          8876:        :bl=^G:cd=^E:ce=^A:cl=\014:cr=^M:do=^J:ho=^B:le=^H:\
        !          8877:        :ll=^K:nd=^C:sf=^J:up=^N:
        !          8878: carlock|klc:\
        !          8879:        :am:bs:\
        !          8880:        :co#80:li#24:\
        !          8881:        :al=^E:bl=^G:ce=^U:cl=\032:cm=\E=%+ %+ :cr=^M:\
        !          8882:        :dc=\177:dl=^D:do=^J:ei=^T:ho=^^:im=^T:nd=^L:se=^V:\
        !          8883:        :sf=^J:so=^V:up=^K:vb=\EV\EV:
        !          8884: # uVAX
        !          8885: qdss|qdcons|qdss glass tty:\
        !          8886:        :am:bs:\
        !          8887:        :co#128:li#57:\
        !          8888:        :cl=1\032:cm=\E=%.%.:do=^J:le=^H:nd=^L:up=^K:
        !          8889: # (ubell: removed obsolete ":ma=j^Jk^P^K^Pl :";
        !          8890: # mapped ":pt:" to default tabs; removed obsolete ":bc=^Y:" -- esr)
        !          8891: ubell|ubellchar:\
        !          8892:        :am:bs:pt:\
        !          8893:        :co#80:li#24:\
        !          8894:        :bl=^G:ce=\Ed:cl=^Z:cm=\E=%+ %+ :cr=^M:do=^J:ho=^^:\
        !          8895:        :le=^H:nd=^L:sf=^J:ta=^I:up=^K:
        !          8896: ttywilliams:\
        !          8897:        :am:\
        !          8898:        :co#80:li#12:\
        !          8899:        :bl=^G:ce=^_:cl=^^:cr=^M:do=^K:ho=^]:le=^Y:nd=^X:\
        !          8900:        :sf=^J:up=^Z:
        !          8901: ######## ICH/ICH1 VERSUS RMIR/SMIR
        !          8902: #
        !          8903: # Some non-curses applications get confused if both ich/ich1 and rmir/smir
        !          8904: # are present; the symptom is doubled characters in an update using insert.
        !          8905: # These applications are technically correct; in both 4.3BSD termcap and
        !          8906: # terminfo, you're not actually supposed to specify both ich/ich1 and rmir/smir
        !          8907: # unless the terminal needs both.  This requirement is now rare; most ich
        !          8908: # sequences do not require previous smir, and most smir insert modes do not
        !          8909: # require ich1 before each character.
        !          8910: #
        !          8911: # For ncurses-based applications this is not a problem, as ncurses uses
        !          8912: # one or the other as appropriate but never mixes the two.  Therefore we
        !          8913: # have not corrected entries like `linux' and `xterm' that specify both.
        !          8914: # If you see doubled characters from these, use the linux-nic and xterm-nic
        !          8915: # entries that suppress ich/ich1.
        !          8916: #
        !          8917: ######## ANSI/VT100/PC-TERM TERMINAL STANDARDS
        !          8918: #
        !          8919: # ANSI Standard (X3.64) Control Sequences for Video Terminals and Peripherals
        !          8920: #
        !          8921: # Most of the content of this comment is adapted from a table prepared by
        !          8922: # Richard Shuford, based on a 1984 Byte article.  Terminfo correspondences
        !          8923: # and discussion of some terminfo-related issues have been added.
        !          8924: #
        !          8925: # The table is a complete list of the defined ANSI X.364 control sequences.
        !          8926: # In the main table, \E stands for an escape (\033) character, SPC for space.
        !          8927: # Pn stands for a single numeric parameter to be inserted in decimal ASCII.
        !          8928: # Ps stands for a list of such parameters separated by semicolons
        !          8929: #
        !          8930: #                                                   Default    Type
        !          8931: # Sequence     Sequence                             Parameter   or
        !          8932: # Mnemonic     Name              Sequence           Value      Mode   terminfo
        !          8933: # -----------------------------------------------------------------------------
        !          8934: # APC  Applicatn Program Command \E Fe               -         Delim  -
        !          8935: # CBT  Cursor Backward Tab       \E [ Pn Z           1         eF     cbt
        !          8936: # CCH  Cancel Previous Character \E T                -         -      -
        !          8937: # CHA  Cursor Horzntal Absolute  \E [ Pn G           1         eF     hpa (1)
        !          8938: # CHT  Cursor Horizontal Tab     \E [ Pn I           1         eF     tab (2)
        !          8939: # CNL  Cursor Next Line          \E [ Pn E           1         eF     nel (3)
        !          8940: # CPL  Cursor Preceding Line     \E [ Pn F           1         eF     -
        !          8941: # CPR  Cursor Position Report    \E [ Pn ; Pn R      1, 1      -      -
        !          8942: # CSI  Control Sequence Intro    \E [                -         Intro  -
        !          8943: # CTC  Cursor Tab Control        \E [ Ps W           0         eF     -
        !          8944: # CUB  Cursor Backward           \E [ Pn D           1         eF     cub
        !          8945: # CUD  Cursor Down               \E [ Pn B           1         eF     cud
        !          8946: # CUF  Cursor Forward            \E [ Pn C           1         eF     cuf
        !          8947: # CUP  Cursor Position           \E [ Pn ; Pn H      1, 1      eF     cup (4)
        !          8948: # CUU  Cursor Up                 \E [ Pn A           1         eF     cuu
        !          8949: # CVT  Cursor Vertical Tab       \E [ Pn Y           -         eF     -
        !          8950: # DA   Device Attributes         \E [ Pn c           0         -      -
        !          8951: # DAQ  Define Area Qualification \E [ Ps o           0         -      -
        !          8952: # DCH  Delete Character          \E [ Pn P           1         eF     dch
        !          8953: # DCS  Device Control String     \E P                -         Delim  -
        !          8954: # DL   Delete Line               \E [ Pn M           1         eF     dl
        !          8955: # DMI  Disable Manual Input      \E \                -         Fs     -
        !          8956: # DSR  Device Status Report      \E [ Ps n           0         -      -
        !          8957: # EA   Erase in Area             \E [ Ps O           0         eF     -
        !          8958: # ECH  Erase Character           \E [ Pn X           1         eF     ech
        !          8959: # ED   Erase in Display          \E [ Ps J           0         eF     ed  (5)
        !          8960: # EF   Erase in Field            \E [ Ps N           0         eF     -
        !          8961: # EL   Erase in Line             \E [ Ps K           0         eF     el  (5)
        !          8962: # EMI  Enable Manual Input       \E b                          Fs     -
        !          8963: # EPA  End of Protected Area     \E W                -         -      -
        !          8964: # ESA  End of Selected Area      \E G                -         -      -
        !          8965: # FNT  Font Selection            \E [ Pn ; Pn SPC D  0, 0      FE     -
        !          8966: # GSM  Graphic Size Modify       \E [ Pn ; Pn SPC B  100, 100  FE     -
        !          8967: # GSS  Graphic Size Selection    \E [ Pn SPC C       none      FE     -
        !          8968: # HPA  Horz Position Absolute    \E [ Pn `           1         FE     (1)
        !          8969: # HPR  Horz Position Relative    \E [ Pn a           1         FE     (6)
        !          8970: # HTJ  Horz Tab w/Justification  \E I                -         FE     (2)
        !          8971: # HTS  Horizontal Tab Set        \E H                -         FE     hts
        !          8972: # HVP  Horz & Vertical Position  \E [ Pn ; Pn f      1, 1      FE     (4)
        !          8973: # ICH  Insert Character          \E [ Pn @           1         eF     ich
        !          8974: # IL   Insert Line               \E [ Pn L           1         eF     il
        !          8975: # IND  Index                     \E D                -         FE     -
        !          8976: # INT  Interrupt                 \E a                -         Fs     -
        !          8977: # JFY  Justify                   \E [ Ps SPC F       0         FE     -
        !          8978: # MC   Media Copy                \E [ Ps i           0         -      -
        !          8979: # MW   Message Waiting           \E U                -         -      -
        !          8980: # NEL  Next Line                 \E E                -         FE     nel (3)
        !          8981: # NP   Next Page                 \E [ Pn U           1         eF     -
        !          8982: # OSC  Operating System Command  \E ]                -         Delim  -
        !          8983: # PLD  Partial Line Down         \E K                -         FE     -
        !          8984: # PLU  Partial Line Up           \E L                -         FE     -
        !          8985: # PM   Privacy Message           \E ^                -         Delim  -
        !          8986: # PP   Preceding Page            \E [ Pn V           1         eF     -
        !          8987: # PU1  Private Use 1             \E Q                -         -      -
        !          8988: # PU2  Private Use 2             \E R                -         -      -
        !          8989: # QUAD Typographic Quadding      \E [ Ps SPC H       0         FE     -
        !          8990: # REP  Repeat Char or Control    \E [ Pn b           1         -      rep
        !          8991: # RI   Reverse Index             \E M                -         FE     -
        !          8992: # RIS  Reset to Initial State    \E c                -         Fs     -
        !          8993: # RM   Reset Mode                \E [ Ps l           none      -      -
        !          8994: # SD   Scroll Down               \E [ Pn T           1         eF     rin
        !          8995: # SEM  Select Edit Extent Mode   \E [ Ps Q           0         -      -
        !          8996: # SGR  Select Graphic Rendition  \E [ Ps m           0         FE     sgr (7)
        !          8997: # SL   Scroll Left               \E [ Pn SPC @       1         eF     -
        !          8998: # SM   Select Mode               \E [ Ps h           none      -      -
        !          8999: # SPA  Start of Protected Area   \E V                -         -      -
        !          9000: # SPI  Spacing Increment         \E [ Pn ; Pn SPC G  none      FE     -
        !          9001: # SR   Scroll Right              \E [ Pn SPC A       1         eF     -
        !          9002: # SS2  Single Shift 2 (G2 set)   \E N                -         Intro  -
        !          9003: # SS3  Single Shift 3 (G3 set)   \E O                -         Intro  -
        !          9004: # SSA  Start of Selected Area    \E F                -         -      -
        !          9005: # ST   String Terminator         \E \                -         Delim  -
        !          9006: # STS  Set Transmit State        \E S                -         -      -
        !          9007: # SU   Scroll Up                 \E [ Pn S           1         eF     indn
        !          9008: # TBC  Tab Clear                 \E [ Ps g           0         FE     tbc
        !          9009: # TSS  Thin Space Specification  \E [ Pn SC E        none      FE     -
        !          9010: # VPA  Vert Position Absolute    \E [ Pn d           1         FE     vpa
        !          9011: # VPR  Vert Position Relative    \E [ Pn e           1         FE     (8)
        !          9012: # VTS  Vertical Tabulation Set   \E J                -         FE     -
        !          9013: #
        !          9014: # ---------------------------------------------------------------------------
        !          9015: #
        !          9016: # Notes:
        !          9017: #
        !          9018: # (1) There seems to be some confusion abroad between CHA and HPA.  Most
        !          9019: # `ANSI' terminals accept the CHA sequence, not the HPA. but terminfo calls
        !          9020: # the capability (hpa).
        !          9021: #
        !          9022: # (2) CHT corresponds to terminfo (tab).  Usually it has the value ^I.
        !          9023: # Occasionally (as on, for example, certain HP terminals) this has the HTJ
        !          9024: # value.
        !          9025: #
        !          9026: # (3) terminfo (nel) is usually \r\n rather than ANSI \EE.
        !          9027: #
        !          9028: # (4) CUP and HVP are identical in effect.  Some ANSI.SYS versions accept
        !          9029: # HVP, but always allow CUP as an alternate.
        !          9030: #
        !          9031: # (5) See the VT100 discussion for the meaning of the ED parameter.
        !          9032: #
        !          9033: # (6) Some ANSI.SYS versions accept HPR, but more commonly `ANSI' terminals
        !          9034: # use CUF for this function and ignore HPR
        !          9035: #
        !          9036: # (7) In SGR, the ANSI.SYS values for attributes are now nearly universal.
        !          9037: #
        !          9038: # (8) Some ANSI.SYS versions accept VPR, but more commonly `ANSI' terminals
        !          9039: # use CUD for this function and ignore VPR.
        !          9040: #
        !          9041: # ---------------------------------------------------------------------------
        !          9042: #
        !          9043: # Abbreviations:
        !          9044: #
        !          9045: # Intro  an Introducer of some kind of defined sequence; the normal 7-bit
        !          9046: #        X3.64 Control Sequence Introducer is the two characters "Escape ["
        !          9047: #
        !          9048: # Delim  a Delimiter
        !          9049: #
        !          9050: # x/y    identifies a character by position in the ASCII table (column/row)
        !          9051: #
        !          9052: # eF     editor function (see explanation)
        !          9053: #
        !          9054: # FE     format effector (see explanation)
        !          9055: #
        !          9056: # F      is a Final character in
        !          9057: #             an Escape sequence (F from 3/0 to 7/14 in the ASCII table)
        !          9058: #             a control sequence (F from 4/0 to 7/14)
        !          9059: #
        !          9060: # Gs     is a graphic character appearing in strings (Gs ranges from
        !          9061: #        2/0 to 7/14) in the ASCII table
        !          9062: #
        !          9063: # Ce     is a control represented as a single bit combination in the C1 set
        !          9064: #        of controls in an 8-bit character set
        !          9065: #
        !          9066: # C0     the familiar set of 7-bit ASCII control characters
        !          9067: #
        !          9068: # C1     roughly, the set of control characters available only in 8-bit systems.
        !          9069: #        This is too complicated to explain fully here, so read Jim Fleming's
        !          9070: #        article in the February 1983 BYTE, especially pages 214 through 224.
        !          9071: #
        !          9072: # Fe     is a Final character of a 2-character Escape sequence that has an
        !          9073: #        equivalent representation in an 8-bit environment as a Ce-type
        !          9074: #        (Fe ranges from 4/0 to 5/15)
        !          9075: #
        !          9076: # Fs     is a Final character of a 2-character Escape sequence that is
        !          9077: #        standardized internationally with identical representation in 7-bit
        !          9078: #        and 8-bit environments and is independent of the currently
        !          9079: #        designated C0 and C1 control sets (Fs ranges from 6/0 to 7/14)
        !          9080: #
        !          9081: # I      is an Intermediate character from 2/0 to 2/15 (inclusive) in the
        !          9082: #        ASCII table
        !          9083: #
        !          9084: # P      is a parameter character from 3/0 to 3/15 (inclusive) in the ASCII
        !          9085: #        table
        !          9086: #
        !          9087: # Pn     is a numeric parameter in a control sequence, a string of zero or
        !          9088: #        more characters ranging from 3/0 to 3/9 in the ASCII table
        !          9089: #
        !          9090: # Ps     is a variable number of selective parameters in a control sequence
        !          9091: #        with each selective parameter separated from the other by the code
        !          9092: #        3/11 (which usually represents a semicolon); Ps ranges from
        !          9093: #        3/0 to 3/9 and includes 3/11
        !          9094: #
        !          9095: # Format Effectors versus Editor Functions
        !          9096: #
        !          9097: # A format effector specifies how following output is to be displayed.
        !          9098: # An editor function allows you to modify the display.  Informally
        !          9099: # format effectors may be destructive; format effectors should not be.
        !          9100: #
        !          9101: # For instance, a format effector that moves the "active position" (the
        !          9102: # cursor or equivalent) one space to the left would be useful when you want to
        !          9103: # create an overstrike, a compound character made of two standard characters
        !          9104: # overlaid. Control-H, the Backspace character, is actually supposed to be a
        !          9105: # format effector, so you can do this. But many systems use it in a
        !          9106: # nonstandard fashion, as an editor function, deleting the character to the
        !          9107: # left of the cursor and moving the cursor left. When Control-H is assumed to
        !          9108: # be an editor function, you cannot predict whether its use will create an
        !          9109: # overstrike unless you also know whether the output device is in an "insert
        !          9110: # mode" or an "overwrite mode". When Control-H is used as a format effector,
        !          9111: # its effect can always be predicted. The familiar characters carriage
        !          9112: # return, linefeed, formfeed, etc., are defined as format effectors.
        !          9113: #
        !          9114: # The ANSI Standard
        !          9115: #
        !          9116: # The complete document describing the standard,  "ANSI X3.64-1979:
        !          9117: # Additional Controls for Use with the American National Standard
        !          9118: # Code for Information Interchange," can be ordered for $13.50 (plus
        !          9119: # $4 postage) from
        !          9120: #
        !          9121: #      Standards Sales Department
        !          9122: #      American National Standards Institute
        !          9123: #      1430 Broadway
        !          9124: #      New York, NY 10018
        !          9125: #      212/354-3300
        !          9126: #
        !          9127: # It's best to read the full standard before using it. It also helps
        !          9128: # to have copies of the related standards "X3.4-1977: American
        !          9129: # National Standard Code for Information Interchange" (the ASCII
        !          9130: # standard) and "X3.41.1974: Code-Extension Techniques for Use with
        !          9131: # the 7-Bit Coded Character Set of American National Standard for
        !          9132: # Information Interchange."
        !          9133: #
        !          9134: # NOTES ON THE DEC VT100 IMPLEMENTATION
        !          9135: #
        !          9136: # Control sequences implemented in the VT100 are as follows:
        !          9137: #
        !          9138: #      CPR, CUB, CUD, CUF, CUP, CUU, DA, DSR, ED, EL, HTS, HVP, IND,
        !          9139: #      LNM, NEL, RI, RIS, RM, SGR, SM, TBC
        !          9140: #
        !          9141: # plus several private DEC commands.
        !          9142: #
        !          9143: # Erasing parts of the display (EL and ED) in the VT100 is performed thus:
        !          9144: #
        !          9145: #      Erase from cursor to end of line           Esc [ 0 K    or Esc [ K
        !          9146: #      Erase from beginning of line to cursor     Esc [ 1 K
        !          9147: #      Erase line containing cursor               Esc [ 2 K
        !          9148: #      Erase from cursor to end of screen         Esc [ 0 J    or Esc [ J
        !          9149: #      Erase from beginning of screen to cursor   Esc [ 1 J
        !          9150: #      Erase entire screen                        Esc [ 2 J
        !          9151: #
        !          9152: # The VT100 responds to receiving the DA (Device Attributes) control
        !          9153: #
        !          9154: #      Esc [ c    (or Esc [ 0 c)
        !          9155: #
        !          9156: # by transmitting the sequence
        !          9157: #
        !          9158: #      Esc [ ? l ; Ps c
        !          9159: #
        !          9160: # where Ps is a character that describes installed options.
        !          9161: #
        !          9162: # The VT100's cursor location can be read with the DSR (Device Status
        !          9163: # Report) control
        !          9164: #
        !          9165: #      Esc [ 6 n
        !          9166: #
        !          9167: # The VT100 reports by transmitting the CPR sequence
        !          9168: #
        !          9169: #      Esc [ Pl ; Pc R
        !          9170: #
        !          9171: # where Pl is the line number and Pc is the column number (in decimal).
        !          9172: #
        !          9173: # The specification for the DEC VT100 is document EK-VT100-UG-003.
        !          9174: #
        !          9175: # NOTES ON `PC-TERM' COMPATIBILITY
        !          9176: #
        !          9177: # The MS-DOS ANSI.SYS driver has set the de-facto standard for attribute
        !          9178: # and color values in the SGR string.  These are as follows:
        !          9179: #
        !          9180: # 0    all attributes off
        !          9181: # 1    foreground bright
        !          9182: # 4    underscore on
        !          9183: # 5    blink on/background bright (not reliable with brown)
        !          9184: # 7    reverse-video
        !          9185: # 8    set blank (non-display)
        !          9186: # 10   set primary font
        !          9187: # 11   set first alternate font (on PCs, display ROM characters 1-31)
        !          9188: # 12   set second alternate font (on PCs, display IBM high-half chars)
        !          9189: #
        !          9190: #                      Color attribute sets
        !          9191: # 3n   set foreground color       / 0=black, 1=red,     2=green, 3=brown,
        !          9192: # 4n   set background color       \ 4=blue,  5=magenta, 6=cyan,  7=white
        !          9193: # Bright black becomes gray.  Bright brown becomes yellow,
        !          9194: #
        !          9195: # * Many VGA cards (such as the Paradise and compatibles) do the wrong thing
        !          9196: #   when you try to set a "bright brown" (yellow) background with attribute
        !          9197: #   5 (you get a blinking yellow foreground instead).  A few displays
        !          9198: #   (including the System V console) support an attribute 6 that undoes this
        !          9199: #   braindamage.
        !          9200: #
        !          9201: # * Some older versions of ANSI.SYS have a bug that causes thems to require
        !          9202: #   ESC [ Pn k as EL rather than the ANSI ESC [ Pn K.
        !          9203:
        !          9204: ######## NONSTANDARD CAPABILITY TRANSLATIONS USED IN THIS FILE
        !          9205: #
        !          9206: # The historical termcap file entries were written primarily in 4.4BSD termcap.
        !          9207: # The 4.4BSD termcap set was substantially larger than the original 4.1BSD set,
        !          9208: # with the extension names chosen for compatibility with the termcap names
        !          9209: # assigned in System V terminfo.  There are some variant extension sets out
        !          9210: # there.  We try to describe them here.
        !          9211: #
        !          9212: # XENIX extensions:
        !          9213: #
        !          9214: # The XENIX extensions include a set of function-key capabilities as follows:
        !          9215: #
        !          9216: #       code   XENIX variable name     terminfo name   name clashes?
        !          9217: #      ----    -------------------     -------------   -----------------------
        !          9218: #      CL      key_char_left
        !          9219: #      CR      key_char_right
        !          9220: #      CW      key_change_window                       create_window
        !          9221: #      EN      key_end                 kend
        !          9222: #      HM      key_home                khome
        !          9223: #      HP      ??
        !          9224: #      LD      key_delete_line         kdl1
        !          9225: #      LF      key_linefeed                            label_off
        !          9226: #      NU      key_next_unlocked_cell
        !          9227: #      PD      key_page_down           knp
        !          9228: #      PL      ??
        !          9229: #      PN      start_print             mc5
        !          9230: #      PR      ??
        !          9231: #      PS      stop_print              mc4
        !          9232: #      PU      key_page_up             kpp             pulse
        !          9233: #      RC      key_recalc                              remove_clock
        !          9234: #      RF      key_toggle_ref                          req_for_input
        !          9235: #      RT      key_return              kent
        !          9236: #      UP      key_up_arrow            kcuu1           parm_up_cursor
        !          9237: #      WL      key_word_left
        !          9238: #      WR      key_word_right
        !          9239: #
        !          9240: # The XENIX extensions also include the following character-set and highlight
        !          9241: # capabilities:
        !          9242: #
        !          9243: #      XENIX   terminfo        function
        !          9244: #      -----   --------        ------------------------------
        !          9245: #      GS      smacs           start alternate character set
        !          9246: #      GE      rmacs           end alternate character set
        !          9247: #      GG                      :as:/:ae: glitch (analogous to :sg:/:ug:)
        !          9248: #      bo      blink           begin blink (not used in /etc/termcap)
        !          9249: #      be                      end blink (not used in /etc/termcap)
        !          9250: #      bb                      blink glitch  (not used in /etc/termcap)
        !          9251: #      it      dim             begin dim (not used in /etc/termcap)
        !          9252: #      ie                      end dim (not used in /etc/termcap)
        !          9253: #      ig                      dim glitch  (not used in /etc/termcap)
        !          9254: #
        !          9255: # XENIX also supposedly uses the following forms-drawing capabilities:
        !          9256: #
        !          9257: #      single  double type
        !          9258: #      ------  ------  -------------
        !          9259: #      gv      GV      vertical line (|)
        !          9260: #      gh      GH      horizontal line (-)
        !          9261: #      g1      G1      top right corner
        !          9262: #      g4      G4      bottom right corner (_|)
        !          9263: #      g2      G2      top left corner
        !          9264: #      g3      G3      bottom left corner (|_)
        !          9265: #      gd      GD      down-tick character (T)
        !          9266: #      gl      GL      left-tick character (-|)
        !          9267: #      gr      GR      right-tick character (|-)
        !          9268: #      gc      GC      middle intersection (-|-)
        !          9269: #      gu      GU      up-tick character (_|_)
        !          9270: #
        !          9271: # However, there is some confusion about case.  The scoansi entry uses
        !          9272: # mixed-case versions of these, and the historical ibmpcx, lisa, trs16, and fos
        !          9273: # entries have only the uppercase versions.  Accordingly, the ncurses tools
        !          9274: # don't try to translate these.
        !          9275: #
        !          9276: # AT&T Extensions:
        !          9277: #
        !          9278: # The old AT&T 5410, 5420, 5425, pc6300plus, 610, and s4 entries used a set of
        !          9279: # nonstandard capabilities.  Its signature is the KM capability, used to name
        !          9280: # some sort of keymap file.  EE, BO, CI, CV, XS, DS, FL and FE are in this
        !          9281: # set.  Comments in the original, and a little cross-checking with other AT&T
        !          9282: # documentation, seem to establish that BO=:mr: (start reverse video), DS=:mh:
        !          9283: # (start dim), XS=:mk: (secure/invisible mode), EE=:me: (end highlights),
        !          9284: # FL=:LO: (enable soft labels), FE=:LF: (disable soft labels), CI=:vi: (make
        !          9285: # cursor invisible), and CV=:ve: (make cursor normal).
        !          9286: #
        !          9287: # TC Extensions:
        !          9288: #
        !          9289: # There is a set of extended termcaps associated with something
        !          9290: # called the "Terminal Control" or TC package created by MainStream Systems,
        !          9291: # Winfield Kansas.  This one also uses GS/GE for as/ae, and also uses
        !          9292: # CF for civis and CO for cvvis.  Finally, they define a boolean :ct:
        !          9293: # that flags color terminals.
        !          9294:
        !          9295: ######## CHANGE HISTORY
        !          9296: #
        !          9297: # 9.1.0 (Wed Feb  1 04:50:32 EST 1995):
        !          9298: #      * First terminfo master translated from 8.3.
        !          9299: # 9.2.0 (Wed Feb  1 12:21:45 EST 1995):
        !          9300: #      * Replaced Wyse entries with updated entries supplied by vendor.
        !          9301: #
        !          9302: # 9.3.0 (Mon Feb  6 19:14:40 EST 1995):
        !          9303: #      * Added contact & status info from G. Clark Brown <clark@sssi.com>.
        !          9304: # 9.3.1 (Tue Feb  7 12:00:24 EST 1995):
        !          9305: #      * Better XENIX keycap translation.  Describe TC termcaps.
        !          9306: #      * Contact and history info supplied by Qume.
        !          9307: # 9.3.2 (Sat Feb 11 23:40:02 EST 1995):
        !          9308: #      * Raided the Shufort FTP site for recent termcaps/terminfos.
        !          9309: #      * Added information on X3.64 and VT100 standard escape sequences.
        !          9310: # 9.3.3 (Mon Feb 13 12:26:15 EST 1995):
        !          9311: #      * Added a correct X11R6 xterm entry.
        !          9312: #      * Fixed terminfo translations of padding.
        !          9313: # 9.3.4 (Wed Feb 22 19:27:34 EST 1995):
        !          9314: #      * Added correct acsc/smacs/rmacs strings for vt100 and xterm.
        !          9315: #      * Added u6/u7/u8/u9 capabilities.
        !          9316: #      * Added PCVT entry.
        !          9317: # 9.3.5 (Thu Feb 23 09:37:12 EST 1995):
        !          9318: #      * Emacs uses :so:, not :mr:, for its mode line.  Fix linux entry
        !          9319: #        to use reverse-video standout so Emacs will look right.
        !          9320: #      * Added el1 capability to ansi.
        !          9321: #      * Added smacs/rmacs to ansi.sys.
        !          9322: #
        !          9323: # 9.4.0 (Sat Feb 25 16:43:25 EST 1995):
        !          9324: #      * New mt70 entry.
        !          9325: #      * Added COPYRIGHTS AND OTHER DELUSIONS.
        !          9326: #      * Added AT&T 23xx & 500/513, vt220 and vt420, opus3n1+, netronics
        !          9327: #        smartvid & smarterm, ampex 175 & 219 & 232,
        !          9328: #        env230, falco ts100, fluke, intertube, superbrain, ncr7901, vic20,
        !          9329: #        ozzie, trs200, tr600, Tandy & Texas Instruments VDTs, intext2,
        !          9330: #        screwpoint, fviewpoint, Contel Business Systems, Datamedia Colorscan,
        !          9331: #        adm36, mime314, ergo4000, ca22851.  Replaced att7300, esprit, dd5500.
        !          9332: #      * Replaced the Perkin-Elmer entries with vendor's official ones.
        !          9333: #      * Restored the old minimal-ansi entry, luna needs it.
        !          9334: #      * Fixed some incorrect ip and proportional-padding translations.
        !          9335: # 9.4.1 (Mon Feb 27 14:18:33 EST 1995):
        !          9336: #      * Fix linux & AT386 sgr strings to do A_ALTCHARSET turnoff correctly.
        !          9337: #      * Make the xterm entry 65 lines again; create xterm25 and xterm24
        !          9338: #        to force a particular height.
        !          9339: #      * Added beehive4 and reorganized other Harris entries.
        !          9340: # 9.4.2 (Thu Mar  9 01:45:44 EST 1995):
        !          9341: #      * Merged in DEC's official entries for its terminals.  The only old
        !          9342: #        entry I kept was Doug Gwyn's alternate vt100 (as vt100-avo).
        !          9343: #      * Replaced the translated BBN Bitgraph entries with purpose-built
        !          9344: #        ones from AT&T's SVr3.
        !          9345: #      * Replaced the AT&T entries with AT&T's official terminfos.
        !          9346: #      * Added teleray 16, vc415, cops10.
        !          9347: #      * Merged in many individual capabilities from SCO terminfo files.
        !          9348: # 9.4.3 (Mon Mar 13 02:37:53 EST 1995):
        !          9349: #      * Typo fixes.
        !          9350: #      * Change linux entry so A_PROTECT enables IBM-PC ROM characters.
        !          9351: # 9.4.4 (Mon Mar 27 12:32:35 EST 1995):
        !          9352: #      * Added tty35, Ann Arbor Guru series. vi300 and 550, cg7900, tvi803,
        !          9353: #        pt210, ibm3164, IBM System 1, ctrm, Tymshare scanset, dt200, adm21,
        !          9354: #        simterm, citoh and variants.
        !          9355: #      * Replaced sol entry with sol1 and sol2.
        !          9356: #      * Replaced Qume QVT and Freedom-series entries with purpose-built
        !          9357: #        terminfo entries.
        !          9358: #      * Enhanced vt220, tvi910, tvi924, hpterm, hp2645, adm42, tek
        !          9359: #        and dg200 entries using caps from from SCO.
        !          9360: #      * Added the usual set of function-key mappings to ANSI entry.
        !          9361: #      * Corrected xterm's function-key capabilities.
        !          9362: # 9.4.5 (Tue Mar 28 14:27:49 EST 1995):
        !          9363: #      * Fix in xterm entry, cub and cud are not reliable under X11R6.
        !          9364: # 9.4.6 (Thu Mar 30 14:52:15 EST 1995):
        !          9365: #      * Fix in xterm entry, get the arrow keys right.
        !          9366: #      * Change some \0 escapes to \200.
        !          9367: # 9.4.7 (Tue Apr  4 11:27:11 EDT 1995)
        !          9368: #      * Added apple (Videx card), adm1a, oadm31.
        !          9369: #      * Fixed malformed ampex csr.
        !          9370: #      * Fixed act4, cyb110; they had old-style prefix padding left in.
        !          9371: #      * Changed mandatory to advisory padding in many entries.
        !          9372: #      * Replaced HP entries up to hpsub with purpose-built ones.
        !          9373: #      * Blank rmir/smir/rmdc/smdc capabilities removed.
        !          9374: #      * Small fixes merged in from SCO entries for lpr, fos, tvi910+, tvi924.
        !          9375: # 9.4.8 (Fri Apr  7 09:36:34 EDT 199):
        !          9376: #      * Replaced the Ann Arbor entries with SCO's, the init strings are
        !          9377: #        more efficient (but the entries otherwise identical).
        !          9378: #      * Added dg211 from Shuford archive.
        !          9379: #      * Added synertek, apple-soroc, ibmpc, pc-venix, pc-coherent, xtalk,
        !          9380: #        adm42-nl, pc52, gs6300, xerox820, uts30.
        !          9381: #      * Pull SCO's padding into vi200 entry.
        !          9382: #      * Improved capabilities for tvi4107 and other Televideo and Viewpoint
        !          9383: #        entries merged in from SCO's descriptions.
        !          9384: #      * Fixed old-style prefix padding on zen50, h1500.
        !          9385: #      * Moved old superbee entry to superbee-xsb, pulled in new superbee
        !          9386: #        entry from SCO's description.
        !          9387: #      * Reorganized the special entries.
        !          9388: #      * Added lm#0 to cbunix and virtual entries.
        !          9389: #
        !          9390: # 9.5.0 (Mon Apr 10 11:30:00 EDT 1995):
        !          9391: #      * Restored cdc456tst.
        !          9392: #      * Fixed sb1 entry, SCO erroneously left out the xsb glitch.
        !          9393: #      * Added megatek, beacon, microkit.
        !          9394: #      * Freeze for ncurses-1.9 release.
        !          9395: # 9.5.1 (Fri Apr 21 12:46:42 EDT 1995):
        !          9396: #      * Added historical data for TAB.
        !          9397: #      * Comment fixes from David MacKenzie.
        !          9398: #      * Added the new BSDI pc3 entry.
        !          9399: # 9.5.2 (Tue Apr 25 17:27:52 EDT 1995)
        !          9400: #      * A change in the tic -C logic now ensures that all entries in
        !          9401: #        the termcap translation will fit in < 1024 bytes.
        !          9402: #      * Added `bobcat' and `gator' HP consoles and the Nu machine entries
        !          9403: #        from GNU termcap file.  This merges in all their local information.
        !          9404: # 9.5.3 (Tue Apr 25 22:28:13 EDT 1995)
        !          9405: #      * Changed tic -C logic to dump all capabilities used by GNU termcap.
        !          9406: #      * Added warnings about entries with long translations (restoring
        !          9407: #        all the GNU termcaps pushes a few over the edge).
        !          9408: # 9.5.4 (Wed Apr 26 15:35:09 EDT 1995)
        !          9409: #      * Yet another tic change, and a couple of entry tweaks, to reduce the
        !          9410: #        number of long (> 1024) termcap translations back to 0.
        !          9411: #
        !          9412: # 9.6.0 (Mon May  1 10:35:54 EDT 1995)
        !          9413: #      * Added kf13-kf20 to Linux entry.
        !          9414: #      * Regularize Prime terminal names.
        !          9415: #      * Historical data on Synertek.
        !          9416: #      * Freeze for ncurses-1.9.1.
        !          9417: #
        !          9418: # 9.6.1 (Sat May  6 02:00:52 EDT 1995):
        !          9419: #      * Added true xterm-color entry, renamed djm's pseudo-color entry.
        !          9420: #      * Eliminate whitespace in short name fields, this tanks some scripts.
        !          9421: #      * Name field changes to shorten some long entries.
        !          9422: #      * Termcap translation now automatically generates empty rmir/smir
        !          9423: #        when ich1/ich is present (copes with an ancient vi bug).
        !          9424: #      * Added `screen' entries from FSF's screen-3.6.2.
        !          9425: #      * Added linux-nic and xterm-nic entries.
        !          9426: #
        !          9427: # 9.6.2 (Sat May  6 17:00:55 EDT 1995):
        !          9428: #      * Change linux entry to use smacs=\E[11m and have an explicit acsc,
        !          9429: #        eliminating some special-case code in ncurses.
        !          9430: #
        !          9431: # 9.7.0 (Tue May  9 18:03:12 EDT 1995):
        !          9432: #      * Added vt320-k3, rsvidtx from the Emacs termcap.dat file.  I think
        !          9433: #        that captures everything unique from it.
        !          9434: #      * Added reorder script generator.
        !          9435: #      * Freeze for ncurses 1.9.2 release.
        !          9436: # 9.7.1 (Thu Jun 29 09:35:22 EDT 1995):
        !          9437: #      * Added Sean Farley's kspd, flash, rs1 capabilities for linux.
        !          9438: #      * Added Olaf Siebert's corrections for adm12.
        !          9439: #      * ansi-pc-color now includes the colors and pairs caps, so that
        !          9440: #        entries which use it will inherit them automatically.
        !          9441: #      * The linux entry can now recognize the center (keypad 5) key.
        !          9442: #      * Removed some junk that found its way into Linux acsc.
        !          9443: #
        !          9444: # 9.8.0 (Fri Jul  7 04:46:57 EDT 1995):
        !          9445: #      * Add 50% cut mark as a desperate hack to reduce tic's core usage.
        !          9446: #      * xterm doesn't try to use application keypad mode any more.
        !          9447: #      * Freeze for ncurses-1.9.3 release.
        !          9448: # 9.8.1 (Thu Jul 19 17:02:12 EDT 1995):
        !          9449: #      * Added corrected sun entry from vendor.
        !          9450: #      * Added csr capability to linux entry.
        !          9451: #      * Peter Wemm says the at386 hpa should be \E[%i%p1%dG, not \E[%p1%dG.
        !          9452: #      * Added vt102-nsgr to cope with stupid IBM PC `VT100' emulators.
        !          9453: #      * Some commented-out caps in long entries come back in, my code
        !          9454: #        for computing string-table lengths had a bug in it.
        !          9455: #      * pcansi series modified to fit comm-program reality better.
        !          9456: # 9.8.2 (Sat Sep  9 23:35:00 EDT 1995):
        !          9457: #      * BSD/OS actually ships the ibmpc3 bold entry as its console.
        !          9458: #      * Correct some bad aliases in the pcansi series
        !          9459: #      * Added entry for QNX console.
        !          9460: #      * Clean up duplicate long names for use with 4.4 library.
        !          9461: #      * Change vt100 standout to be normal reverse vide, not bright reverse;
        !          9462: #        this makes the Emacs status line look better.
        !          9463: # 9.8.3 (Sun Sep 10 13:07:34 EDT 1995):
        !          9464: #      * Added Adam Thompson's VT320 entries, also his dtx-sas and z340.
        !          9465: #      * Minor surgery, mostly on name strings, to shorten termcap version.
        !          9466: #
        !          9467: ######## REORDER
        !          9468: #
        !          9469: # Older termcap distributions featured a kluge called `reorder' intended to
        !          9470: # time-optimize access to selected terminals by moving them to the front of
        !          9471: # the file.  This is obsolete under terminfo, but for completeness's sake
        !          9472: # we give a reorder script generator here (strip off the leading #s to use).
        !          9473: #
        !          9474: #: mkreorder --  generate script to optimize access to given terminal types
        !          9475: #:
        !          9476: #: entries named on command line will be sorted to the front in reverse order
        !          9477: #echo "ed -- termcap <<EOF"
        !          9478: #for x in $*
        !          9479: #do
        !          9480: #      echo "/^$x[|:]/;.,/^[a-z#]/-1m0"
        !          9481: #done
        !          9482: #echo "0a"
        !          9483: #echo "."
        !          9484: #echo "w termcap.sorted"
        !          9485: #echo "q"
        !          9486: #echo "EOF"
        !          9487: #:end of script
        !          9488: #
        !          9489: # Invoke this script like this:
        !          9490: #
        !          9491: #      mkreorder h19 wy60 vt100 >reorder
        !          9492: #
        !          9493: # The following sets edit modes for GNU EMACS
        !          9494: # Local Variables:
        !          9495: # fill-prefix:"\t"
        !          9496: # fill-column:75
        !          9497: # End:
        !          9498: ######## SHANTIH!  SHANTIH!  SHANTIH!