Vendor import of less v643.

This commit is contained in:
Xin LI 2023-08-13 00:06:29 -07:00
parent 159d764c16
commit 448d114b25
55 changed files with 12226 additions and 2372 deletions

View file

@ -42,8 +42,10 @@ DISTFILES = \
mkhelp.pl \
mkhelp.py \
mkutable $(UNICODE_FILES) \
$(shell ${MAKE} -s -f ${srcdir}/lesstest/Makefile echo_distfiles srcdir=${srcdir}/lesstest) \
${DISTFILES_W}
all: help.c funcs.h $(UNICODE_FILES) ${srcdir}/configure
release: .FORCE
@ -138,8 +140,8 @@ dist: ${DISTFILES}
rm -rf $$RELDIR && mkdir $$RELDIR && \
echo "Preparing $$LESSREL" && \
rm -rf $$LESSREL && mkdir $$LESSREL && \
cp ${DISTFILES} $$LESSREL && \
cd $$LESSREL && chmod -w * && chmod +w ${DISTFILES_W} && chmod +x configure && cd .. && \
for f in ${DISTFILES}; do mkdir -p $$(dirname $$LESSREL/$$f); cp $$f $$LESSREL/$$f; done && \
cd $$LESSREL && chmod -w * && chmod +w ${DISTFILES_W} lesstest && chmod +x configure && cd .. && \
echo "Creating $$RELDIR/$$TARF" && \
tar -cf - $$LESSREL | gzip -c >$$RELDIR/$$TARF && \
echo "Signing $$RELDIR/$$TARF" && \
@ -156,7 +158,7 @@ tagall:
gnu_upload:
@if [ -z "${REL}" ]; then echo "Please set REL=nnn"; exit 1; fi; \
LESSREL=less-${REL} && RELDIR=release/$$LESSREL && \
TARF=$$LESSREL.tar.gz && \
TARF=$$LESSREL.tar.gz && \
if [ ! -s $$RELDIR/$$TARF ]; then echo "$$RELDIR/$$TARF does not exist"; exit 1; fi; \
cd $$RELDIR && \
gpg -b $$TARF && \

38
NEWS
View file

@ -9,6 +9,44 @@
Report bugs, suggestions or comments at
https://github.com/gwsw/less/issues.
======================================================================
Major changes between "less" versions 633 and 643
* Fix problem when a program piping into less reads from the tty,
like sudo asking for password (github #368).
* Fix search modifier ^E after ^W.
* Fix bug using negated (^N) search (github #374).
* Fix bug setting colors with -D on Windows build (github #386).
* Fix reading special chars like PageDown on Windows (github #378).
* Fix mouse wheel scrolling on Windows (github #379).
* Fix erroneous EOF when terminal window size changes (github #372).
* Fix compile error with some definitions of ECHONL (github #395).
* Fix crash on Windows when writing logfile (github #405).
* Fix regression in exit code when stdin is /dev/null and
output is a file (github #373).
* Add lesstest test suite to production release (github #344).
* Change lesstest output to conform with
automake Simple Test Format (github #399).
======================================================================
Major changes between "less" versions 632 and 633
* Fix build on systems which have ncurses/termcap.h or
ncursesw/termcap.h but not termcap.h.
======================================================================
Major changes between "less" versions 608 and 632

2
ch.c
View file

@ -406,6 +406,8 @@ public void sync_logfile(void)
BLOCKNUM block;
BLOCKNUM nblocks;
if (logfile < 0)
return;
nblocks = (ch_fpos + LBUFSIZE - 1) / LBUFSIZE;
for (block = 0; block < nblocks; block++)
{

View file

@ -179,7 +179,7 @@ static void mca_search1(void)
{
if (search_type & SRCH_SUBSEARCH(i))
{
char buf[8];
char buf[INT_STRLEN_BOUND(int)+8];
SNPRINTF1(buf, sizeof(buf), "Sub-%d ", i);
cmd_putstr(buf);
}
@ -554,6 +554,7 @@ static int mca_search_char(int c)
case '*':
if (mca != A_FILTER)
flag = SRCH_PAST_EOF;
search_type &= ~SRCH_WRAP;
break;
case CONTROL('F'): /* FIRST file */
case '@':
@ -565,7 +566,7 @@ static int mca_search_char(int c)
flag = SRCH_NO_MOVE;
break;
case CONTROL('S'): { /* SUBSEARCH */
char buf[32];
char buf[INT_STRLEN_BOUND(int)+24];
SNPRINTF1(buf, sizeof(buf), "Sub-pattern (1-%d):", NUM_SEARCH_COLORS);
clear_bot();
cmd_putstr(buf);

3857
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -36,7 +36,7 @@ AC_CHECK_LIB(termlib, tgetent, [have_termlib=yes], [have_termlib=no])
AC_SEARCH_LIBS([regcmp], [gen intl PW])
# Checks for header files.
AC_CHECK_HEADERS_ONCE([ctype.h errno.h fcntl.h inttypes.h limits.h stdckdint.h stdio.h stdlib.h string.h termcap.h termio.h termios.h time.h unistd.h values.h linux/magic.h sys/ioctl.h sys/stream.h sys/types.h sys/wait.h time.h wctype.h])
AC_CHECK_HEADERS_ONCE([ctype.h errno.h fcntl.h inttypes.h limits.h stdckdint.h stdio.h stdlib.h string.h termcap.h ncurses/termcap.h ncursesw/termcap.h termio.h termios.h time.h unistd.h values.h linux/magic.h sys/ioctl.h sys/stream.h sys/types.h sys/wait.h time.h wctype.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STAT
@ -48,7 +48,7 @@ AC_TYPE_SIZE_T
AC_MSG_CHECKING([for working terminal libraries])
TERMLIBS=
include_termcap_h=
if test "x$ac_cv_header_termcap_h" = xyes; then include_termcap_h="#include <termcap.h>"; fi
if test "x$ac_cv_header_termcap_h" = xyes; then include_termcap_h="#include <termcap.h>"; elif test "x$ac_cv_header_ncurses_termcap_h" = xyes; then include_termcap_h="#include <ncurses/termcap.h>"; elif test "x$ac_cv_header_ncursesw_termcap_h" = xyes; then include_termcap_h="#include <ncursesw/termcap.h>"; fi
# Check for systems where curses is broken.
curses_broken=0
@ -63,10 +63,10 @@ fi
if test $curses_broken = 0; then
# -- Try tinfo.
# -- Try tinfow.
if test "x$TERMLIBS" = x; then
if test $have_tinfo = yes; then
TERMLIBS="-ltinfo"
if test $have_tinfow = yes; then
TERMLIBS="-ltinfow"
SAVE_LIBS=$LIBS
LIBS="$LIBS $TERMLIBS"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no])
@ -75,10 +75,10 @@ if test "x$TERMLIBS" = x; then
fi
fi
# -- Try tinfow.
# -- Try tinfo.
if test "x$TERMLIBS" = x; then
if test $have_tinfow = yes; then
TERMLIBS="-ltinfow"
if test $have_tinfo = yes; then
TERMLIBS="-ltinfo"
SAVE_LIBS=$LIBS
LIBS="$LIBS $TERMLIBS"
AC_LINK_IFELSE([AC_LANG_PROGRAM([[$include_termcap_h]], [[tgetent(0,0); tgetflag(0); tgetnum(0); tgetstr(0,0);]])],[termok=yes],[termok=no])

View file

@ -261,12 +261,15 @@
/* Define HAVE_LOCALE if you have locale.h and setlocale. */
#undef HAVE_LOCALE
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define to 1 if you have the `nanosleep' function. */
#undef HAVE_NANOSLEEP
/* Define to 1 if you have the <ncursesw/termcap.h> header file. */
#undef HAVE_NCURSESW_TERMCAP_H
/* Define to 1 if you have the <ncurses/termcap.h> header file. */
#undef HAVE_NCURSES_TERMCAP_H
/* Define HAVE_OSPEED if your termcap library has the ospeed variable. */
#undef HAVE_OSPEED
@ -450,14 +453,11 @@
/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
#undef STAT_MACROS_BROKEN
/* Define to 1 if you have the ANSI C header files. */
/* Define to 1 if all of the C90 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#undef STDC_HEADERS
/* Enable large inode numbers on Mac OS X 10.5. */
#ifndef _DARWIN_USE_64_BIT_INODE
# define _DARWIN_USE_64_BIT_INODE 1
#endif
/* Number of bits in a file offset, on hosts where this is settable. */
#undef _FILE_OFFSET_BITS

View file

@ -260,11 +260,7 @@
/* Define MUST_DEFINE_ERRNO if you have errno but it is not define
* in errno.h */
#define HAVE_ERRNO 1
#ifdef MINGW
#define MUST_DEFINE_ERRNO 0
#else
#define MUST_DEFINE_ERRNO 1
#endif
/* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable */
#define HAVE_SYS_ERRLIST 1

2
edit.c
View file

@ -977,7 +977,7 @@ public void use_logfile(char *filename)
/*
* Overwrite: create the file.
*/
logfile = creat(filename, 0644);
logfile = creat(filename, CREAT_RW);
break;
case 'A': case 'a':
/*

View file

@ -230,7 +230,7 @@ public void forw(int n, POSITION pos, int force, int only_last, int nblank)
(forw_scroll >= 0 && n > forw_scroll && n != sc_height-1);
#if HILITE_SEARCH
if (hilite_search == OPT_ONPLUS || is_filtering() || status_col) {
if (pos != NULL_POSITION && (hilite_search == OPT_ONPLUS || is_filtering() || status_col)) {
prep_hilite(pos, pos + 4*size_linebuf, ignore_eoi ? 1 : -1);
pos = next_unfiltered(pos);
}
@ -403,8 +403,8 @@ public void back(int n, POSITION pos, int force, int only_last)
squish_check();
do_repaint = (n > get_back_scroll() || (only_last && n > sc_height-1) || header_lines > 0);
#if HILITE_SEARCH
if (hilite_search == OPT_ONPLUS || is_filtering() || status_col) {
prep_hilite((pos < 3*size_linebuf) ? 0 : pos - 3*size_linebuf, pos, -1);
if (pos != NULL_POSITION && (hilite_search == OPT_ONPLUS || is_filtering() || status_col)) {
prep_hilite((pos < 3*size_linebuf) ? 0 : pos - 3*size_linebuf, pos, -1);
}
#endif
while (--n >= 0)
@ -487,7 +487,7 @@ public void forward(int n, int force, int only_last)
{
back(1, position(TOP), 1, 0);
pos = position(BOTTOM_PLUS_ONE);
} while (pos == NULL_POSITION);
} while (pos == NULL_POSITION && !ABORT_SIGS());
}
} else
{

View file

@ -36,6 +36,7 @@ public int apply_at_specials(int attr);
public void putbs(void);
public int win32_kbhit(void);
public char WIN32getch(void);
public void WIN32ungetch(int ch);
public void WIN32setcolors(int fg, int bg);
public void WIN32textout(char *text, int len);
public void match_brac(char obrac, char cbrac, int forwdir, int n);

2
help.c
View file

@ -1,4 +1,4 @@
/* This file was generated by mkhelp.pl from less.hlp at 17:26 on 2023/4/6 */
/* This file was generated by mkhelp.pl from less.hlp at 22:43 on 2023/7/20 */
#include "less.h"
constant char helpdata[] = {
'\n',

9
less.h
View file

@ -273,6 +273,15 @@ typedef off_t LINENUM;
#endif
#endif
/*
* Flags for creat()
*/
#if MSDOS_COMPILER
#define CREAT_RW (S_IREAD|S_IWRITE)
#else
#define CREAT_RW 0644
#endif
/*
* Set a file descriptor to binary mode.
*/

1266
less.man

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
'\" t
.TH LESS 1 "Version 632: 06 Apr 2023"
.TH LESS 1 "Version 643: 20 Jul 2023"
.SH NAME
less \- opposite of more
.SH SYNOPSIS
@ -120,7 +120,7 @@ while it is being viewed.
(The behavior is similar to the "tail \-f" command.)
To stop waiting for more data, enter the interrupt character (usually \(haC).
On systems which support
.BR poll (1)
.BR poll (2)
you can also use \(haX or the character specified by the \-\-intr option.
If the input is a pipe and the \-\-exit-follow-on-close option is in effect,
.B less
@ -210,6 +210,8 @@ Search forward in the file for the N-th line containing the pattern.
N defaults to 1.
The pattern is a regular expression, as recognized by
the regular expression library supplied by your system.
By default, searching is case-sensitive (uppercase and lowercase
are considered different); the \-i option can be used to change this.
The search starts at the first line displayed
(but see the \-a and \-j options, which change this).
.sp
@ -489,10 +491,10 @@ so it may be necessary to use the R or F command to see more data.
The \-\-intr option can be used to specify a different character
to use instead of \(haX.
This command works only on systems that support the
.BR poll (1)
.BR poll (2)
function.
On systems without
.BR poll (1),
.BR poll (2),
the interrupt character (usually \(haC) can be used instead.
.
.SH OPTIONS
@ -720,6 +722,11 @@ CHAR_INFO.Attributes values
.nh
https://docs.microsoft.com/en-us/windows/console/char-info-str).
.hy
.PP
On MS-DOS only, the \-Da option may be used to specify strict parsing of
ANSI color (SGR) sequences when the \-R option is used.
Without this option, sequences that change text attributes
(bold, underline, etc.) may clear the text color.
.RE
.IP "\-e or \-\-quit-at-eof"
Causes

View file

@ -9,7 +9,7 @@ LESSECHO(1) General Commands Manual LESSECHO(1)
lessecho [-ox] [-cx] [-pn] [-dn] [-mx] [-nn] [-ex] [-a] file ...
DESCRIPTION
lessecho is a program that simply echos its arguments on standard out-
lessecho is a program that simply echos its arguments on standard out
put. But any metacharacter in the output is preceded by an "escape"
character, which by default is a backslash.
@ -34,7 +34,7 @@ LESSECHO(1) General Commands Manual LESSECHO(1)
-nn Specifies "n" to be a metachar, as an integer.
-fn Specifies "n" to be the escape char for metachars, as an inte-
-fn Specifies "n" to be the escape char for metachars, as an inte
ger.
-a Specifies that all arguments are to be quoted. The default is
@ -51,4 +51,4 @@ LESSECHO(1) General Commands Manual LESSECHO(1)
Version 632: 06 Apr 2023 LESSECHO(1)
Version 643: 20 Jul 2023 LESSECHO(1)

View file

@ -1,4 +1,4 @@
.TH LESSECHO 1 "Version 632: 06 Apr 2023"
.TH LESSECHO 1 "Version 643: 20 Jul 2023"
.SH NAME
lessecho \- expand metacharacters
.SH SYNOPSIS

View file

@ -16,11 +16,11 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
used by less version 582 and later. In previous versions of less, a
separate program called lesskey was used to compile the lesskey source
file into a format understood by less. This compilation step is no
longer required and the lesskey program is therefore deprecated, al-
longer required and the lesskey program is therefore deprecated, al
though the file format remains supported by less itself.
DESCRIPTION
A lesskey file specifies a set of key bindings and environment vari-
A lesskey file specifies a set of key bindings and environment vari
ables to be used by subsequent invocations of less.
FILE FORMAT
@ -36,8 +36,8 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
#env Defines environment variables.
Blank lines and lines which start with a pound sign (#) are ignored,
except as noted below.
Blank lines and lines which start with a hash mark (#) are ignored, ex
cept as noted below.
COMMAND SECTION
The command section begins with the line
@ -55,7 +55,7 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
the name of the less action, from the list below. The characters in
the string may appear literally, or be prefixed by a caret to indicate
a control key. A backslash followed by one to three octal digits may
be used to specify a character by its octal value. A backslash fol-
be used to specify a character by its octal value. A backslash fol
lowed by certain characters specifies input characters as follows:
\b BACKSPACE (0x08)
@ -86,22 +86,23 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
\k1 F1
A backslash followed by any other character indicates that charac-
A backslash followed by any other character indicates that charac
ter is to be taken literally. Characters which must be preceded
by backslash include caret, space, tab and the backslash itself.
by backslash include caret, space, tab, hash mark and the back
slash itself.
An action may be followed by an "extra" string. When such a com-
mand is entered while running less, the action is performed, and
then the extra string is parsed, just as if it were typed in to
less. This feature can be used in certain cases to extend the
functionality of a command. For example, see the "{" and ":t"
commands in the example below. The extra string has a special
meaning for the "quit" action: when less quits, the first charac-
An action may be followed by an "extra" string. When such a com
mand is entered while running less, the action is performed, and
then the extra string is parsed, just as if it were typed in to
less. This feature can be used in certain cases to extend the
functionality of a command. For example, see the "{" and ":t"
commands in the example below. The extra string has a special
meaning for the "quit" action: when less quits, the first charac
ter of the extra string is used as its exit status.
EXAMPLE
The following input file describes the set of default command keys used
by less. Documentation on each command can be found in the man page,
by less. Documentation on each command can be found in the man page,
under the key sequence which invokes the command.
@ -128,8 +129,8 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
\40 forw-screen
f forw-screen
^F forw-screen
^V forw-screen
^V forw-screen
\kD forw-screen
b back-screen
^B back-screen
@ -194,8 +195,8 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
:e examine
^X^V examine
:n next-file
:p prev-file
:p prev-file
t next-tag
T prev-tag
:x index-file
@ -233,20 +234,20 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
PRECEDENCE
Commands specified by lesskey take precedence over the default com-
mands. A default command key may be disabled by including it in the
input file with the action "invalid". Alternatively, a key may be de-
fined to do nothing by using the action "noaction". "noaction" is sim-
ilar to "invalid", but less will give an error beep for an "invalid"
command, but not for a "noaction" command. In addition, ALL default
Commands specified by lesskey take precedence over the default com
mands. A default command key may be disabled by including it in the
input file with the action "invalid". Alternatively, a key may be de
fined to do nothing by using the action "noaction". "noaction" is sim
ilar to "invalid", but less will give an error beep for an "invalid"
command, but not for a "noaction" command. In addition, ALL default
commands may be disabled by adding this control line to the input file:
#stop
This will cause all default commands to be ignored. The #stop line
This will cause all default commands to be ignored. The #stop line
should be the last line in that section of the file.
Be aware that #stop can be dangerous. Since all default commands are
Be aware that #stop can be dangerous. Since all default commands are
disabled, you must provide sufficient commands before the #stop line to
enable all necessary actions. For example, failure to provide a "quit"
command can lead to frustration.
@ -256,9 +257,9 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
#line-edit
This section specifies new key bindings for the line editing commands,
in a manner similar to the way key bindings for ordinary commands are
specified in the #command section. The line-editing section consists
This section specifies new key bindings for the line editing commands,
in a manner similar to the way key bindings for ordinary commands are
specified in the #command section. The line-editing section consists
of a list of keys and actions, one per line as in the example below.
EXAMPLE
@ -302,30 +303,34 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
#env
Following this line is a list of environment variable assignments.
Each line consists of an environment variable name, an equals sign (=)
and the value to be assigned to the environment variable. White space
before and after the equals sign is ignored. Variables assigned in
this way are visible only to less. If a variable is specified in the
Following this line is a list of environment variable assignments.
Each line consists of an environment variable name, an equals sign (=)
and the value to be assigned to the environment variable. White space
before and after the equals sign is ignored. Variables assigned in
this way are visible only to less. If a variable is specified in the
system environment and also in a lesskey file, the value in the lesskey
file takes precedence.
If the variable name is followed by += rather than =, the string is ap-
pended to the variable's existing value. This currently works only if
If the variable name is followed by += rather than =, the string is ap
pended to the variable's existing value. This currently works only if
any += lines immediately follow the same variable's original definition
(with an = line), without any intervening definitions of other vari-
ables. It can append only to a variable defined earlier in the file;
it cannot append to a variable in the system environment.
(with an = line), without any intervening definitions of other vari
ables. It can append only to a variable defined earlier in the file;
it cannot append to a variable in the system environment. The string
is appended literally, without any extra whitespace added, so if white
space is desired, it should be appended to the end of the preceding
line. (It cannot be added to the beginning of the += string because
space after the equals sign is ignored, as noted above.)
CONDITIONAL CONFIGURATION
If a line begins with #version followed by a relational operator and a
version number, the remainder of the line is parsed if and only if the
If a line begins with #version followed by a relational operator and a
version number, the remainder of the line is parsed if and only if the
running version of less (or lesskey) matches the operator. This can be
helpful if a lesskey file is used by different versions of less.
For example, suppose that a new command named 'sideways-search' is
added in less version 777. Then the following line would assign the
command to the Q key, but only in versions of less which support it.
For example, suppose that a new command named 'sideways-search' is
added in less version 777. Then the following line would assign the
command to the Q key, but only in versions of less which support it.
The line would be ignored by versions earlier than 777.
#version >= 777 Q sideways-search
@ -339,7 +344,7 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
= Equal to
!= Not equal to
The #version feature is not supported in less and lesskey before ver-
The #version feature is not supported in less and lesskey before ver
sion 594. In those older versions, all #version lines are ignored.
EXAMPLE
@ -347,6 +352,8 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
version 595 and higher, adds a --color option.
#env
## (Note that there must be a space at the end of the next line,
## to separate the --color option from the -S option.)
LESS = -i -S
#version >= 595 LESS += --color=Hkc
@ -354,26 +361,26 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
less(1)
WARNINGS
On MS-DOS and OS/2 systems, certain keys send a sequence of characters
which start with a NUL character (0). This NUL character should be
On MS-DOS and OS/2 systems, certain keys send a sequence of characters
which start with a NUL character (0). This NUL character should be
represented as \340 in a lesskey file.
COPYRIGHT
Copyright (C) 1984-2023 Mark Nudelman
less is part of the GNU project and is free software. You can redis-
tribute it and/or modify it under the terms of either (1) the GNU Gen-
eral Public License as published by the Free Software Foundation; or
less is part of the GNU project and is free software. You can redis
tribute it and/or modify it under the terms of either (1) the GNU Gen
eral Public License as published by the Free Software Foundation; or
(2) the Less License. See the file README in the less distribution for
more details regarding redistribution. You should have received a copy
of the GNU General Public License along with the source for less; see
the file COPYING. If not, write to the Free Software Foundation, 59
Temple Place, Suite 330, Boston, MA 02111-1307, USA. You should also
of the GNU General Public License along with the source for less; see
the file COPYING. If not, write to the Free Software Foundation, 59
Temple Place, Suite 330, Boston, MA 02111-1307, USA. You should also
have received a copy of the Less License; see the file LICENSE.
less is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FIT-
NESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
WARRANTY; without even the implied warranty of MERCHANTABILITY or FIT
NESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
AUTHOR
@ -382,4 +389,4 @@ LESSKEY(1) General Commands Manual LESSKEY(1)
Version 632: 06 Apr 2023 LESSKEY(1)
Version 643: 20 Jul 2023 LESSKEY(1)

View file

@ -1,5 +1,5 @@
'\" t
.TH LESSKEY 1 "Version 632: 06 Apr 2023"
.TH LESSKEY 1 "Version 643: 20 Jul 2023"
.SH NAME
lesskey \- customize key bindings for less
.SH "SYNOPSIS (deprecated)"
@ -48,7 +48,7 @@ Customizes line-editing key bindings.
.IP #env
Defines environment variables.
.PP
Blank lines and lines which start with a pound sign (#) are ignored,
Blank lines and lines which start with a hash mark (#) are ignored,
except as noted below.
.
.SH "COMMAND SECTION"
@ -108,7 +108,7 @@ l l.
A backslash followed by any other character indicates that character is
to be taken literally.
Characters which must be preceded by backslash include
caret, space, tab and the backslash itself.
caret, space, tab, hash mark and the backslash itself.
.PP
An action may be followed by an "extra" string.
When such a command is entered while running
@ -361,6 +361,11 @@ the same variable's original definition (with an = line),
without any intervening definitions of other variables.
It can append only to a variable defined earlier in the file;
it cannot append to a variable in the system environment.
The string is appended literally, without any extra whitespace added,
so if whitespace is desired,
it should be appended to the end of the preceding line.
(It cannot be added to the beginning of the += string because space after
the equals sign is ignored, as noted above.)
.
.SH CONDITIONAL CONFIGURATION
If a line begins with #version followed by a relational operator and a version number,
@ -410,7 +415,9 @@ is run and, on version 595 and higher, adds a \-\-color option.
.sp
.nf
#env
LESS = \-i\ \-S
## (Note that there must be a space at the end of the next line,
## to separate the --color option from the -S option.)
LESS = \-i\ \-S\
#version\ >=\ 595\ \ LESS\ +=\ \-\-color=Hkc
.fi
.

27
lesstest/Makefile Normal file
View file

@ -0,0 +1,27 @@
CC ?= gcc
CFLAGS ?= -Wall -O2
LDFLAGS ?=
TERMLIB = -lncurses
srcdir ?= .
all: lesstest lt_screen
LESSTEST_SRC = display.c env.c lesstest.c parse.c pipeline.c log.c run.c term.c wchar.c
LESSTEST_OBJ = $(patsubst %.c,%.o,$(LESSTEST_SRC))
lesstest: $(LESSTEST_OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) -o lesstest $(LESSTEST_OBJ) $(TERMLIB)
LT_SCREEN_SRC = lt_screen.c unicode.c wchar.c
LT_SCREEN_OBJ = $(patsubst %.c,%.o,$(LT_SCREEN_SRC))
lt_screen: $(LT_SCREEN_OBJ)
$(CC) $(CFLAGS) $(LDFLAGS) -o lt_screen $(LT_SCREEN_OBJ)
HDR = lesstest.h lt_types.h wchar.h
*.o: $(HDR)
echo_distfiles:
@echo $(patsubst %,$(srcdir)/%,$(LESSTEST_SRC) $(LT_SCREEN_SRC) $(HDR) lt/*.lt runtest maketest Makefile)
clean:
rm -f lesstest lt_screen *.o

146
lesstest/display.c Normal file
View file

@ -0,0 +1,146 @@
#include <termcap.h>
#include "lesstest.h"
extern TermInfo terminfo;
// Set the user's terminal to a given attribute and colors.
static void display_attr_color(Attr attr, Color fg_color, Color bg_color) {
printf("\33[m");
if (fg_color != NULL_COLOR)
printf("\33[%dm", fg_color);
if (bg_color != NULL_COLOR)
printf("\33[%dm", bg_color);
if (attr & ATTR_UNDERLINE)
printf("%s", terminfo.enter_underline);
if (attr & ATTR_BOLD)
printf("%s", terminfo.enter_bold);
if (attr & ATTR_BLINK)
printf("%s", terminfo.enter_blink);
if (attr & ATTR_STANDOUT)
printf("%s", terminfo.enter_standout);
}
static int hexval(unsigned char ch) {
if (ch >= '0' && ch <= '9') return ch - '0';
if (ch >= 'A' && ch <= 'F') return ch - 'A' + 10;
if (ch >= 'a' && ch <= 'f') return ch - 'a' + 10;
fprintf(stderr, "invalid hex char 0x%x\n", ch);
abort();
}
static int get_hex(unsigned char const** pp) {
int v1 = hexval(*(*pp)++);
int v2 = hexval(*(*pp)++);
return (v1 << 4) | v2;
}
// Display a given screen image on the user's terminal.
void display_screen(const byte* img, int imglen, int screen_width, int screen_height) {
int x = 0;
int y = 0;
int cursor_x = 0;
int cursor_y = 0;
int literal = 0;
Attr curr_attr = 0;
Color curr_fg_color = NULL_COLOR;
Color curr_bg_color = NULL_COLOR;
while (imglen-- > 0) {
wchar ch = load_wchar(&img);
if (!literal) {
switch (ch) {
case '\\':
literal = 1;
continue;
case LTS_CHAR_ATTR:
curr_attr = get_hex(&img);
display_attr_color(curr_attr, curr_fg_color, curr_bg_color);
continue;
case LTS_CHAR_FG_COLOR:
curr_fg_color = get_hex(&img);
display_attr_color(curr_attr, curr_fg_color, curr_bg_color);
continue;
case LTS_CHAR_BG_COLOR:
curr_bg_color = get_hex(&img);
display_attr_color(curr_attr, curr_fg_color, curr_bg_color);
continue;
case LTS_CHAR_CURSOR:
cursor_x = x;
cursor_y = y;
continue;
}
}
literal = 0;
if (ch != 0) {
byte cbuf[UNICODE_MAX_BYTES];
byte* cp = cbuf;
store_wchar(&cp, ch);
fwrite(cbuf, 1, cp-cbuf, stdout);
}
if (++x >= screen_width) {
printf("\n");
x = 0;
if (++y >= screen_height)
break;
}
}
printf("%s", tgoto(terminfo.cursor_move, cursor_x, cursor_y));
fflush(stdout);
}
// Print a given screen image on stderr.
// Unlike display_screen which prints escape sequences to change color etc,
// display_screen_debug only prints printable ASCII.
void display_screen_debug(const byte* img, int imglen, int screen_width, int screen_height) {
int x = 0;
int y = 0;
int literal = 0;
while (imglen-- > 0) {
wchar ch = load_wchar(&img);
if (!literal) {
switch (ch) {
case '\\':
literal = 1;
continue;
case LTS_CHAR_ATTR:
case LTS_CHAR_FG_COLOR:
case LTS_CHAR_BG_COLOR:
x -= 3; // don't count LTS_CHAR or following 2 bytes
break;
case LTS_CHAR_CURSOR:
x -= 1; // don't count LTS_CHAR
break;
}
}
literal = 0;
if (is_ascii(ch))
fwrite(&ch, 1, 1, stderr);
else
fprintf(stderr, "<%lx>", (unsigned long) ch);
if (++x >= screen_width) {
fprintf(stderr, "\n");
x = 0;
if (++y >= screen_height)
break;
}
}
fflush(stderr);
}
// Print a list of strings.
void print_strings(const char* title, char* const* strings) {
if (1) return; ///
fprintf(stderr, "%s:\n", title);
char* const* s;
for (s = strings; *s != NULL; ++s) {
fprintf(stderr, " ");
const char* p;
for (p = *s; *p != '\0'; ++p) {
if (is_ascii(*p))
fprintf(stderr, "%c", (char) *p);
else
fprintf(stderr, "\\x%04x", *p);
}
fprintf(stderr, "\n");
}
fprintf(stderr, "%s- end\n", title);
}

149
lesstest/env.c Normal file
View file

@ -0,0 +1,149 @@
#include "lesstest.h"
extern TermInfo terminfo;
// EnvBuf has a char buffer (env_buf) which holds both the env var
// string table and also the array of pointers to individual strings (env_list).
// env_estr points to the end of the string table.
// The env_list array grows backwards from the end of env_buf.
void env_init(EnvBuf* env) {
env->env_estr = (char*) env->env_buf;
env->env_list = env->env_buf + sizeof(env->env_buf)/sizeof(char*);
*--(env->env_list) = NULL;
}
static void env_check(EnvBuf* env) {
if (env->env_estr >= (const char*) env->env_list) {
fprintf(stderr, "ENVBUF_SIZE too small!\n");
abort();
}
}
// Add a char to the string table.
static void env_addchar(EnvBuf* env, char ch) {
*(env->env_estr)++ = ch;
env_check(env);
}
// Add a delimited string to the string table.
static void env_addlstr(EnvBuf* env, const char* str, int strlen) {
while (strlen-- > 0)
env_addchar(env, *str++);
}
// Add a null-terminated string to the string table.
static void env_addstr(EnvBuf* env, const char* str) {
env_addlstr(env, str, strlen(str));
}
// Add an env variable name/value pair to an EnvBuf.
// The name is delimited and the value is null-terminated.
static void env_addlpair(EnvBuf* env, const char* name, int namelen, const char* value) {
*--(env->env_list) = env->env_estr;
env_check(env);
env_addlstr(env, name, namelen);
env_addstr(env, "=");
env_addstr(env, value);
env_addchar(env, '\0');
}
// Add an env variable name/value pair to an EnvBuf.
void env_addpair(EnvBuf* env, const char* name, const char* value) {
env_addlpair(env, name, strlen(name), value);
}
// Add an env variable name/value pair to an EnvBuf where the value is an integer.
void env_addintpair(EnvBuf* env, const char* name, int value) {
char buf[64];
snprintf(buf, sizeof(buf), "%d", value);
env_addpair(env, name, buf);
}
// Is a given env var name one which should be passed to less?
static int is_less_env(const char* name, int name_len) {
static char* const less_names[] = {
"LESS*", "COLUMNS", "LINES", "LANG", "LC_CTYPE", "MORE", NULL
};
char* const* n;
for (n = less_names; *n != NULL; ++n) {
int ln = strlen(*n);
if (ln == name_len && strncmp(*n, name, ln) == 0)
return 1;
if ((*n)[ln-1] == '*' && strncmp(*n, name, ln-1) == 0)
return 1;
}
return 0;
}
// Create a list of env vars to be given to an instance of less,
// as an EnvBuf.
static void env_setup(EnvBuf* env, char* const* prog_env, int interactive) {
char* const* envp;
struct tcvar { char const* name; char const* value; } tcvars[] = {
{ "LESS_TERMCAP_am", "1" },
{ "LESS_TERMCAP_cd", "\33S" },
{ "LESS_TERMCAP_ce", "\33L" },
{ "LESS_TERMCAP_cl", "\33A" },
{ "LESS_TERMCAP_cr", "\33<" },
{ "LESS_TERMCAP_cm", "\33%p2%d;%p1%dj" },
{ "LESS_TERMCAP_ho", "\33h" },
{ "LESS_TERMCAP_ll", "\33l" },
{ "LESS_TERMCAP_mb", "\33b" },
{ "LESS_TERMCAP_md", "\33[1m" },
{ "LESS_TERMCAP_me", "\33[m" },
{ "LESS_TERMCAP_se", "\33[m" },
{ "LESS_TERMCAP_so", "\33[7m" },
{ "LESS_TERMCAP_sr", "\33r" },
{ "LESS_TERMCAP_ue", "\33[24m" },
{ "LESS_TERMCAP_us", "\33[4m" },
{ "LESS_TERMCAP_vb", "\33g" },
{ "LESS_TERMCAP_kr", terminfo.key_right },
{ "LESS_TERMCAP_kl", terminfo.key_left },
{ "LESS_TERMCAP_ku", terminfo.key_up },
{ "LESS_TERMCAP_kd", terminfo.key_down },
{ "LESS_TERMCAP_kh", terminfo.key_home },
{ "LESS_TERMCAP_@7", terminfo.key_end },
};
if (interactive) {
int i;
for (i = 0; i < countof(tcvars); ++i) {
struct tcvar* tc = &tcvars[i];
env_addpair(env, tc->name, tc->value);
log_env(tc->name, strlen(tc->name), tc->value);
}
}
for (envp = prog_env; *envp != NULL; ++envp) {
const char* ename = *envp;
const char* eq = strchr(ename, '=');
if (eq == NULL) continue;
if (!interactive || is_less_env(ename, eq-ename)) {
env_addlpair(env, ename, eq-ename, eq+1);
log_env(ename, eq-ename, eq+1);
}
}
}
// Return the value of a named env var.
const char* get_envp(char* const* envp, const char* name) {
for (; *envp != NULL; ++envp) {
const char* ename = *envp;
const char* eq = strchr(ename, '=');
if (eq != NULL && strlen(name) == eq-ename && strncmp(name, ename, eq-ename) == 0)
return eq+1;
}
return NULL;
}
// Return a list of env vars to be given to an instance of less,
// as an array of strings.
char* const* less_envp(char* const* envp, int interactive) {
static EnvBuf less_env;
static int init = 0;
if (!init) {
env_init(&less_env);
env_setup(&less_env, envp, interactive);
init = 1;
}
return less_env.env_list;
}

81
lesstest/lesstest.c Normal file
View file

@ -0,0 +1,81 @@
#include <setjmp.h>
#include "lesstest.h"
extern TermInfo terminfo;
int verbose = 0;
int less_quit = 0;
int details = 0;
int err_only = 0;
char* lt_screen = "./lt_screen";
char* lt_screen_opts = NULL;
static char* testfile = NULL;
static int usage(void) {
fprintf(stderr, "usage: lesstest -o file.lt [-w#] [-h#] [-eEdv] [-S lt_screen-opts] [--] less.exe [flags] textfile\n");
fprintf(stderr, " or: lesstest -t file.lt less.exe\n");
return 0;
}
static int setup(int argc, char* const* argv) {
char* logfile = NULL;
int ch;
while ((ch = getopt(argc, argv, "deEo:s:S:t:v")) != -1) {
switch (ch) {
case 'd':
details = 1;
break;
case 'e':
err_only = 1;
break;
case 'E':
err_only = 2;
break;
case 'o':
logfile = optarg;
break;
case 's':
lt_screen = optarg;
break;
case 'S':
lt_screen_opts = optarg;
break;
case 't':
testfile = optarg;
break;
case 'v':
verbose = 1;
break;
default:
return usage();
}
}
if (logfile != NULL && !log_open(logfile)) {
fprintf(stderr, "cannot create %s: %s\n", logfile, strerror(errno));
return 0;
}
return 1;
}
int main(int argc, char* const* argv, char* const* envp) {
if (!setup(argc, argv))
return RUN_ERR;
int ok = 0;
if (testfile != NULL) { // run existing test
if (optind+1 != argc) {
usage();
return RUN_ERR;
}
ok = run_testfile(testfile, argv[optind]);
} else { // gen; create new test
if (optind+2 > argc) {
usage();
return RUN_ERR;
}
log_file_header();
ok = run_interactive(argv+optind, argc-optind, envp);
log_close();
}
return ok ? RUN_OK : RUN_ERR;
}

84
lesstest/lesstest.h Normal file
View file

@ -0,0 +1,84 @@
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include "lt_types.h"
#include "wchar.h"
#define ENVBUF_SIZE 4096
typedef struct EnvBuf {
char** env_list;
char* env_estr;
char* env_buf[ENVBUF_SIZE/sizeof(char*)];
} EnvBuf;
typedef struct TestSetup {
char* setup_name;
char* textfile;
char** argv;
int argc;
EnvBuf env;
} TestSetup;
typedef struct LessPipeline {
int less_in;
int screen_out;
int screen_width;
int screen_height;
pid_t less_pid;
pid_t screen_pid;
const char* tempfile;
int less_in_pipe[2];
int screen_in_pipe[2];
int screen_out_pipe[2];
} LessPipeline;
typedef struct TermInfo {
char backspace_key;
char* enter_underline;
char* exit_underline;
char* enter_bold;
char* exit_bold;
char* enter_blink;
char* exit_blink;
char* enter_standout;
char* exit_standout;
char* clear_screen;
char* cursor_move;
char* key_right;
char* key_left;
char* key_up;
char* key_down;
char* key_home;
char* key_end;
char* enter_keypad;
char* exit_keypad;
char* init_term;
char* deinit_term;
} TermInfo;
int log_open(char const* logfile);
void log_close(void);
int log_file_header(void);
int log_test_header(char* const* argv, int argc, const char* textfile);
int log_test_footer(void);
int log_env(const char* name, int namelen, const char* value);
int log_tty_char(wchar ch);
int log_screen(byte const* img, int len);
LessPipeline* create_less_pipeline(char* const* argv, int argc, char* const* envp);
void destroy_less_pipeline(LessPipeline* pipeline);
void print_strings(const char* title, char* const* strings);
void free_test_setup(TestSetup* setup);
TestSetup* read_test_setup(FILE* fd, char const* less);
int read_zline(FILE* fd, char* line, int line_len);
void raw_mode(int tty, int on);
int setup_term(void);
void display_screen(const byte* img, int imglen, int screen_width, int screen_height);
void display_screen_debug(const byte* img, int imglen, int screen_width, int screen_height);
const char* get_envp(char* const* envp, const char* name);
int run_interactive(char* const* argv, int argc, char* const* envp);
int run_testfile(const char* testfile, const char* less);
void env_init(EnvBuf* env);
void env_addpair(EnvBuf* env, const char* name, const char* value);
char* const* less_envp(char* const* envp, int interactive);

126
lesstest/log.c Normal file
View file

@ -0,0 +1,126 @@
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdarg.h>
#include <time.h>
#include <sys/stat.h>
#include "lesstest.h"
static FILE* logf = NULL;
int log_open(const char* logfile) {
if (logf != NULL) fclose(logf);
logf = (strcmp(logfile, "-") == 0) ? stdout : fopen(logfile, "w");
if (logf == NULL) {
fprintf(stderr, "cannot create %s\n", logfile);
return 0;
}
return 1;
}
void log_close(void) {
if (logf == NULL) return;
if (logf == stdout) return;
fclose(logf);
logf = NULL;
}
int log_file_header(void) {
if (logf == NULL) return 0;
time_t now = time(NULL);
struct tm* tm = gmtime(&now);
fprintf(logf, "!lesstest!\n!version %d\n!created %d-%02d-%02d %02d:%02d:%02d\n",
LESSTEST_VERSION,
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
tm->tm_hour, tm->tm_min, tm->tm_sec);
return 1;
}
int log_env(const char* name, int namelen, const char* value) {
if (logf == NULL) return 0;
fprintf(logf, "E \"%.*s\" \"%s\"\n", namelen, name, value);
return 1;
}
int log_tty_char(wchar ch) {
if (logf == NULL) return 0;
fprintf(logf, "+%lx\n", ch);
return 1;
}
int log_screen(const byte* img, int len) {
if (logf == NULL) return 0;
fwrite("=", 1, 1, logf);
fwrite(img, 1, len, logf);
fwrite("\n", 1, 1, logf);
return 1;
}
#if 0
int log_debug(char const* fmt, ...) {
va_list ap;
va_start(ap, fmt);
fprintf(logf, "D ");
vfprintf(logf, fmt, ap);
fprintf(logf, "\n");
va_end(ap);
fflush(logf);
return 1;
}
#endif
int log_command(char* const* argv, int argc, const char* textfile) {
if (logf == NULL) return 0;
fprintf(logf, "A");
int a;
for (a = 1; a < argc; ++a)
fprintf(logf, " \"%s\"", (a < argc-1) ? argv[a] : textfile);
fprintf(logf, "\n");
return 1;
}
int log_textfile(const char* textfile) {
if (logf == NULL) return 0;
struct stat st;
if (stat(textfile, &st) < 0) {
fprintf(stderr, "cannot stat %s\n", textfile);
return 0;
}
FILE* fd = fopen(textfile, "r");
if (fd == NULL) {
fprintf(stderr, "cannot open %s\n", textfile);
return 0;
}
fprintf(logf, "F \"%s\" %ld\n", textfile, (long) st.st_size);
off_t nread = 0;
while (nread < st.st_size) {
char buf[4096];
size_t n = fread(buf, 1, sizeof(buf), fd);
if (n <= 0) {
fprintf(stderr, "read only %ld/%ld from %s\n", (long) nread, (long) st.st_size, textfile);
fclose(fd);
return 0;
}
nread += n;
fwrite(buf, 1, n, logf);
}
fclose(fd);
return 1;
}
int log_test_header(char* const* argv, int argc, const char* textfile) {
if (logf == NULL) return 0;
fprintf(logf, "T \"%s\"\n", textfile);
if (!log_command(argv, argc, textfile))
return 0;
if (!log_textfile(textfile))
return 0;
fprintf(logf, "R\n");
return 1;
}
int log_test_footer(void) {
if (logf == NULL) return 0;
fprintf(logf, "Q\n");
return 1;
}

BIN
lesstest/lt/chinese1.lt Normal file

Binary file not shown.

531
lesstest/lt/colorbars.lt Normal file

File diff suppressed because one or more lines are too long

324
lesstest/lt/github216.lt Normal file
View file

@ -0,0 +1,324 @@
!lesstest!
!version 1
!created 2022-10-20 20:18:17
E "LESS_TERMCAP_am" "1"
E "LESS_TERMCAP_cd" "S"
E "LESS_TERMCAP_ce" "L"
E "LESS_TERMCAP_cl" "A"
E "LESS_TERMCAP_cr" "<"
E "LESS_TERMCAP_cm" "%p2%d;%p1%dj"
E "LESS_TERMCAP_ho" "h"
E "LESS_TERMCAP_ll" "l"
E "LESS_TERMCAP_mb" "b"
E "LESS_TERMCAP_md" ""
E "LESS_TERMCAP_me" ""
E "LESS_TERMCAP_se" ""
E "LESS_TERMCAP_so" ""
E "LESS_TERMCAP_sr" "r"
E "LESS_TERMCAP_ue" ""
E "LESS_TERMCAP_us" ""
E "LESS_TERMCAP_vb" "g"
E "LESS_TERMCAP_kr" "OC"
E "LESS_TERMCAP_kl" "OD"
E "LESS_TERMCAP_ku" "OA"
E "LESS_TERMCAP_kd" "OB"
E "LESS_TERMCAP_kh" "OH"
E "LESS_TERMCAP_@7" "OF"
E "COLUMNS" "102"
E "LINES" "28"
E "LESS" "R"
E "LESSCHARSET" "utf8"
E "LANG" "C"
E "LC_CTYPE" "en_US.UTF-8"
T "github216"
A "github216"
F "github216" 49
694:#ifdef USE_SMT3
R
=@01$21694@00$FF:\#ifdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@04github216 (END)@00#___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+2f
=@01$21694@00$FF:\#ifdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________/#_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+66
=@01$21694@00$FF:\#ifdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________/f#________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+a
=@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________
+2f
=@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/#_____________________________________________________________________________________________________
+34
=@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/4#____________________________________________________________________________________________________
+2e
=@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/4.#___________________________________________________________________________________________________
+2e
=@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/4..#__________________________________________________________________________________________________
+2e
=@01$21694@00$FF:\#i@04f@00de@04f@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/4...#_________________________________________________________________________________________________
+a
=@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________
+2f
=@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/#_____________________________________________________________________________________________________
+66
=@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f#____________________________________________________________________________________________________
+2e
=@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f.#___________________________________________________________________________________________________
+2e
=@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f..#__________________________________________________________________________________________________
+2e
=@01$2169@054@04$FF:\#i@00fdef $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f...#_________________________________________________________________________________________________
+a
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________
+2f
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/#_____________________________________________________________________________________________________
+66
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f#____________________________________________________________________________________________________
+20
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f #___________________________________________________________________________________________________
+2f
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f /#__________________________________________________________________________________________________
+8
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f #___________________________________________________________________________________________________
+2e
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f .#__________________________________________________________________________________________________
+2e
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f ..#_________________________________________________________________________________________________
+2e
=@01$21694@00$FF:\#i@04fdef@00 $1E!2BUSE_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________/f ...#________________________________________________________________________________________________
+a
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@04(END)@00#_________________________________________________________________________________________________
+2d
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________-#_____________________________________________________________________________________________________
+2d
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--#____________________________________________________________________________________________________
+75
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--u#___________________________________________________________________________________________________
+73
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--us#__________________________________________________________________________________________________
+65
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--use#_________________________________________________________________________________________________
+2d
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--use-#________________________________________________________________________________________________
+63
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________--use-color#___________________________________________________________________________________________
+a
=@01$21694@00$FF:\#ifde@04f $1E!2BUSE@00_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!67Use color (press RETURN)$FF!FF#_____________________________________________________________________________
+a
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+31
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________:1#____________________________________________________________________________________________________
+1b
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________:1#____________________________________________________________________________________________________
+4f
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________:1#____________________________________________________________________________________________________
+43
=@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+43
=$1E!2BT3$FF!FF____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!2BT3$FF!FF____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!2BT3$FF!FF____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!2BMT3$FF!FF___________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!2BSMT3$FF!FF__________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!2B_SMT3$FF!FF_________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66E!2B_SMT3$FF!FF________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66SE!2B_SMT3$FF!FF_______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66USE!2B_SMT3$FF!FF______________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66 USE!2B_SMT3$FF!FF_____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=e$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=de$1E!66f USE!2B_SMT3$FF!FF__________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=fde$1E!66f USE!2B_SMT3$FF!FF_________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=ifde$1E!66f USE!2B_SMT3$FF!FF________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=\#ifde$1E!66f USE!2B_SMT3$FF!FF_______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=:\#ifde$1E!66f USE!2B_SMT3$FF!FF______________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=@01$214@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF_____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=@01$2194@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF____________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+1b
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESC#__________________________________________________________________________________________________
+4f
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________ ESCO#_________________________________________________________________________________________________
+44
=@01$21694@00$FF:\#ifde$1E!66f USE!2B_SMT3$FF!FF___________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________@01~@00_____________________________________________________________________________________________________$1E!6A(END)$FF!FF#_________________________________________________________________________________________________
+71
Q

71
lesstest/lt/github265.lt Normal file

File diff suppressed because one or more lines are too long

91
lesstest/lt/github329.lt Normal file
View file

@ -0,0 +1,91 @@
!lesstest!
!version 1
!created 2023-01-31 03:09:47
E "LESS_TERMCAP_am" "1"
E "LESS_TERMCAP_cd" "S"
E "LESS_TERMCAP_ce" "L"
E "LESS_TERMCAP_cl" "A"
E "LESS_TERMCAP_cr" "<"
E "LESS_TERMCAP_cm" "%p2%d;%p1%dj"
E "LESS_TERMCAP_ho" "h"
E "LESS_TERMCAP_ll" "l"
E "LESS_TERMCAP_mb" "b"
E "LESS_TERMCAP_md" ""
E "LESS_TERMCAP_me" ""
E "LESS_TERMCAP_se" ""
E "LESS_TERMCAP_so" ""
E "LESS_TERMCAP_sr" "r"
E "LESS_TERMCAP_ue" ""
E "LESS_TERMCAP_us" ""
E "LESS_TERMCAP_vb" "g"
E "LESS_TERMCAP_kr" "OC"
E "LESS_TERMCAP_kl" "OD"
E "LESS_TERMCAP_ku" "OA"
E "LESS_TERMCAP_kd" "OB"
E "LESS_TERMCAP_kh" "OH"
E "LESS_TERMCAP_@7" "OF"
E "COLUMNS" "79"
E "LINES" "34"
E "LANG" "C"
T "github329"
A "github329"
F "github329" 26
a]8;;link\text]8;;\ok
R
=a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@04github329 (END)@00#________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+2d
=a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________-#______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+52
=@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04Display ANSI sequences directly, other control characters as ^X (press RETURN)@00#_______________________________________________________________________________
+a
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04(END)@00#__________________________________________________________________________
+2d
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________
+52
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04Display control characters as ^X (press RETURN)@00#_______________________________
+a
=a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04(END)@00#__________________________________________________________________________
+2f
=a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________/#______________________________________________________________________________
+b
=a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________Keep-pos /#_____________________________________________________________________
+38
=a@04ESC@00]8;;link@04ESC@00\\text@04ESC@00]8;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________Keep-pos /8#____________________________________________________________________
+a
=a@04ESC@00]@048@00;;link@04ESC@00\\text@04ESC@00]@048@00;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04(END)@00#__________________________________________________________________________
+2d
=a@04ESC@00]@048@00;;link@04ESC@00\\text@04ESC@00]@048@00;;@04ESC@00\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________
+52
=@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04Display ANSI sequences directly, other control characters as ^X (press RETURN)@00#_______________________________________________________________________________
+a
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@04(END)@00#__________________________________________________________________________
+2d
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________
+2d
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--#_____________________________________________________________________________
+75
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--u#____________________________________________________________________________
+73
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--us#___________________________________________________________________________
+65
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--use#__________________________________________________________________________
+2d
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--use-#_________________________________________________________________________
+63
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________--use-color#____________________________________________________________________
+a
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!67Use color (press RETURN)$FF!FF#______________________________________________________
+2d
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________
+52
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!67Display control characters as ^X (press RETURN)$FF!FF#_______________________________
+a
=a$1E!65ESC$FF!FF]$1E!668$FF!FF;;link$1E!65ESC$FF!FF\\text$1E!65ESC$FF!FF]$1E!668$FF!FF;;$1E!65ESC$FF!FF\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________
+2d
=a$1E!65ESC$FF!FF]$1E!668$FF!FF;;link$1E!65ESC$FF!FF\\text$1E!65ESC$FF!FF]$1E!668$FF!FF;;$1E!65ESC$FF!FF\\ok______________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________-#______________________________________________________________________________
+52
=@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!67Display ANSI sequences directly, other control characters as ^X (press RETURN)$FF!FF#_______________________________________________________________________________
+a
=atextok________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________@01~@00______________________________________________________________________________$1E!6A(END)$FF!FF#__________________________________________________________________________
+71
Q

BIN
lesstest/lt/hdr-unicode.lt Normal file

Binary file not shown.

BIN
lesstest/lt/hdr-unicode1.lt Normal file

Binary file not shown.

252
lesstest/lt/proc-special.lt Normal file
View file

@ -0,0 +1,252 @@
!lesstest!
!version 1
!created 2023-02-11 18:55:06
E "LESS_TERMCAP_am" "1"
E "LESS_TERMCAP_cd" "S"
E "LESS_TERMCAP_ce" "L"
E "LESS_TERMCAP_cl" "A"
E "LESS_TERMCAP_cr" "<"
E "LESS_TERMCAP_cm" "%p2%d;%p1%dj"
E "LESS_TERMCAP_ho" "h"
E "LESS_TERMCAP_ll" "l"
E "LESS_TERMCAP_mb" "b"
E "LESS_TERMCAP_md" ""
E "LESS_TERMCAP_me" ""
E "LESS_TERMCAP_se" ""
E "LESS_TERMCAP_so" ""
E "LESS_TERMCAP_sr" "r"
E "LESS_TERMCAP_ue" ""
E "LESS_TERMCAP_us" ""
E "LESS_TERMCAP_vb" "g"
E "LESS_TERMCAP_kr" "OC"
E "LESS_TERMCAP_kl" "OD"
E "LESS_TERMCAP_ku" "OA"
E "LESS_TERMCAP_kd" "OB"
E "LESS_TERMCAP_kh" "OH"
E "LESS_TERMCAP_@7" "OF"
E "COLUMNS" "93"
E "LINES" "34"
E "LANG" "C"
T "proc-special"
A "proc-special"
F "proc-special" 79
here are _b_a_c_k spaces.
And an extra return
and some tabs here ok.
bye
R
=here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@04proc-special (END)@00#____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+2f
=here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/#_____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+61
=here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/a#____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+63
=here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/ac#___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+6b
=here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/ack#__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+20
=here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/ack #_________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+73
=here are @02back@00 spaces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________/ack s#________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
+a
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+55
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print backspace as ^H (press RETURN)@00#________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________
+70
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--p#__________________________________________________________________________________________
+72
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pr#_________________________________________________________________________________________
+6f
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pro#________________________________________________________________________________________
+63
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc#_______________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-#______________________________________________________________________________________
+62
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-backspace#_____________________________________________________________________________
+61
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-backspace#_____________________________________________________________________________
+a
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Display underline text in underline mode (press RETURN)@00#_____________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+55
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Display underlined text in underline mode (press RETURN)@00#____________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return _________________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+75
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Backspaces cause overstrike (press RETURN)@00#__________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________
+70
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--p#__________________________________________________________________________________________
+72
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pr#_________________________________________________________________________________________
+6f
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pro#________________________________________________________________________________________
+63
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc#_______________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-#______________________________________________________________________________________
+74
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-tab#___________________________________________________________________________________
+a
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Expand tabs to spaces (press RETURN)@00#________________________________________________________
+a
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________
+50
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--P#__________________________________________________________________________________________
+52
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PR#_________________________________________________________________________________________
+4f
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PRO#________________________________________________________________________________________
+43
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-#______________________________________________________________________________________
+54
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some tabs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-TAB#___________________________________________________________________________________
+a
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print tabs as ^I (press RETURN)@00#_____________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+55
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print backspace as ^H (press RETURN)@00#________________________________________________________
+a
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________
+50
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--P#__________________________________________________________________________________________
+52
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PR#_________________________________________________________________________________________
+4f
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PRO#________________________________________________________________________________________
+43
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________
+5f
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC_#______________________________________________________________________________________
+8
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________
+2d
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-#______________________________________________________________________________________
+62
=here are @02b@06ack@04 s@00paces.________________________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-BACKSPACE#_____________________________________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print backspaces as ^H (press RETURN)@00#_______________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2f
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/#____________________________________________________________________________________________
+6d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/m#___________________________________________________________________________________________
+65
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/me#__________________________________________________________________________________________
+2e
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/me.#_________________________________________________________________________________________
+74
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and some@04^I@00tabs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________/me.t#________________________________________________________________________________________
+a
=and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+6b
=And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+6b
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+6b
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+6b
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________
+50
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--P#__________________________________________________________________________________________
+52
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PR#_________________________________________________________________________________________
+4f
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PRO#________________________________________________________________________________________
+43
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-#______________________________________________________________________________________
+54
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-TAB#___________________________________________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Tab handling is specified by the -U option (press RETURN)@00#___________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me^It@00abs@04^I@00here@04^I@00ok.____________________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+55
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Display underlined text in underline mode (press RETURN)@00#____________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________
+70
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--p#__________________________________________________________________________________________
+72
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pr#_________________________________________________________________________________________
+6f
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--pro#________________________________________________________________________________________
+63
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc#_______________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-#______________________________________________________________________________________
+72
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-return#________________________________________________________________________________
+65
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--proc-return#________________________________________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Delete carriage return before newline (press RETURN)@00#________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+75
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Backspaces cause overstrike (press RETURN)@00#__________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________-#____________________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--#___________________________________________________________________________________________
+50
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--P#__________________________________________________________________________________________
+52
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PR#_________________________________________________________________________________________
+4f
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PRO#________________________________________________________________________________________
+43
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC#_______________________________________________________________________________________
+2d
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-#______________________________________________________________________________________
+52
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return _________________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________--PROC-RETURN#________________________________________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04Print carriage return as ^M (press RETURN)@00#__________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+a
=here are _@04^H@00b_@04^H@00a_@04^H@00c_@04^H@00k spaces.____________________________________________________________And an extra return @04^M@00_______________________________________________________________________and so@04me t@00abs here ok.__________________________________________________________bye__________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@01~@00____________________________________________________________________________________________@04(END)@00#________________________________________________________________________________________
+71
Q

271
lesstest/lt/seq200.lt Normal file
View file

@ -0,0 +1,271 @@
!lesstest!
!version 1
!created 2022-11-13 18:04:26
E "LESS_TERMCAP_am" "1"
E "LESS_TERMCAP_cd" "S"
E "LESS_TERMCAP_ce" "L"
E "LESS_TERMCAP_cl" "A"
E "LESS_TERMCAP_cr" "<"
E "LESS_TERMCAP_cm" "%p2%d;%p1%dj"
E "LESS_TERMCAP_ho" "h"
E "LESS_TERMCAP_ll" "l"
E "LESS_TERMCAP_mb" "b"
E "LESS_TERMCAP_md" ""
E "LESS_TERMCAP_me" ""
E "LESS_TERMCAP_se" ""
E "LESS_TERMCAP_so" ""
E "LESS_TERMCAP_sr" "r"
E "LESS_TERMCAP_ue" ""
E "LESS_TERMCAP_us" ""
E "LESS_TERMCAP_vb" "g"
E "LESS_TERMCAP_kr" "OC"
E "LESS_TERMCAP_kl" "OD"
E "LESS_TERMCAP_ku" "OA"
E "LESS_TERMCAP_kd" "OB"
E "LESS_TERMCAP_kh" "OH"
E "LESS_TERMCAP_@7" "OF"
E "COLUMNS" "115"
E "LINES" "39"
E "LANG" "C"
E "LC_CTYPE" "en_US.UTF-8"
T "seq200"
A "seq200"
F "seq200" 692
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
R
=1__________________________________________________________________________________________________________________2__________________________________________________________________________________________________________________3__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________13_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________23_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________30_________________________________________________________________________________________________________________31_________________________________________________________________________________________________________________32_________________________________________________________________________________________________________________33_________________________________________________________________________________________________________________34_________________________________________________________________________________________________________________35_________________________________________________________________________________________________________________36_________________________________________________________________________________________________________________37_________________________________________________________________________________________________________________38_________________________________________________________________________________________________________________@04seq200@00#_____________________________________________________________________________________________________________
+2f
=1__________________________________________________________________________________________________________________2__________________________________________________________________________________________________________________3__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________13_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________23_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________30_________________________________________________________________________________________________________________31_________________________________________________________________________________________________________________32_________________________________________________________________________________________________________________33_________________________________________________________________________________________________________________34_________________________________________________________________________________________________________________35_________________________________________________________________________________________________________________36_________________________________________________________________________________________________________________37_________________________________________________________________________________________________________________38_________________________________________________________________________________________________________________/#__________________________________________________________________________________________________________________
+33
=1__________________________________________________________________________________________________________________2__________________________________________________________________________________________________________________3__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________13_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________23_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________30_________________________________________________________________________________________________________________31_________________________________________________________________________________________________________________32_________________________________________________________________________________________________________________33_________________________________________________________________________________________________________________34_________________________________________________________________________________________________________________35_________________________________________________________________________________________________________________36_________________________________________________________________________________________________________________37_________________________________________________________________________________________________________________38_________________________________________________________________________________________________________________/3#_________________________________________________________________________________________________________________
+a
=@043@00__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________1@043@00_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________2@043@00_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________@043@000_________________________________________________________________________________________________________________@043@001_________________________________________________________________________________________________________________@043@002_________________________________________________________________________________________________________________@0433@00_________________________________________________________________________________________________________________@043@004_________________________________________________________________________________________________________________@043@005_________________________________________________________________________________________________________________@043@006_________________________________________________________________________________________________________________@043@007_________________________________________________________________________________________________________________@043@008_________________________________________________________________________________________________________________@043@009_________________________________________________________________________________________________________________40_________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________
+26
=@043@00__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________1@043@00_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________2@043@00_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________@043@000_________________________________________________________________________________________________________________@043@001_________________________________________________________________________________________________________________@043@002_________________________________________________________________________________________________________________@0433@00_________________________________________________________________________________________________________________@043@004_________________________________________________________________________________________________________________@043@005_________________________________________________________________________________________________________________@043@006_________________________________________________________________________________________________________________@043@007_________________________________________________________________________________________________________________@043@008_________________________________________________________________________________________________________________@043@009_________________________________________________________________________________________________________________40_________________________________________________________________________________________________________________&/#_________________________________________________________________________________________________________________
+39
=@043@00__________________________________________________________________________________________________________________4__________________________________________________________________________________________________________________5__________________________________________________________________________________________________________________6__________________________________________________________________________________________________________________7__________________________________________________________________________________________________________________8__________________________________________________________________________________________________________________9__________________________________________________________________________________________________________________10_________________________________________________________________________________________________________________11_________________________________________________________________________________________________________________12_________________________________________________________________________________________________________________1@043@00_________________________________________________________________________________________________________________14_________________________________________________________________________________________________________________15_________________________________________________________________________________________________________________16_________________________________________________________________________________________________________________17_________________________________________________________________________________________________________________18_________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________20_________________________________________________________________________________________________________________21_________________________________________________________________________________________________________________22_________________________________________________________________________________________________________________2@043@00_________________________________________________________________________________________________________________24_________________________________________________________________________________________________________________25_________________________________________________________________________________________________________________26_________________________________________________________________________________________________________________27_________________________________________________________________________________________________________________28_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________@043@000_________________________________________________________________________________________________________________@043@001_________________________________________________________________________________________________________________@043@002_________________________________________________________________________________________________________________@0433@00_________________________________________________________________________________________________________________@043@004_________________________________________________________________________________________________________________@043@005_________________________________________________________________________________________________________________@043@006_________________________________________________________________________________________________________________@043@007_________________________________________________________________________________________________________________@043@008_________________________________________________________________________________________________________________@043@009_________________________________________________________________________________________________________________40_________________________________________________________________________________________________________________&/9#________________________________________________________________________________________________________________
+a
=9__________________________________________________________________________________________________________________19_________________________________________________________________________________________________________________29_________________________________________________________________________________________________________________@043@009_________________________________________________________________________________________________________________49_________________________________________________________________________________________________________________59_________________________________________________________________________________________________________________69_________________________________________________________________________________________________________________79_________________________________________________________________________________________________________________89_________________________________________________________________________________________________________________90_________________________________________________________________________________________________________________91_________________________________________________________________________________________________________________92_________________________________________________________________________________________________________________9@043@00_________________________________________________________________________________________________________________94_________________________________________________________________________________________________________________95_________________________________________________________________________________________________________________96_________________________________________________________________________________________________________________97_________________________________________________________________________________________________________________98_________________________________________________________________________________________________________________99_________________________________________________________________________________________________________________109________________________________________________________________________________________________________________119________________________________________________________________________________________________________________129________________________________________________________________________________________________________________1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________& @04(END)@00#____________________________________________________________________________________________________________
+6e
=@043@009_________________________________________________________________________________________________________________49_________________________________________________________________________________________________________________59_________________________________________________________________________________________________________________69_________________________________________________________________________________________________________________79_________________________________________________________________________________________________________________89_________________________________________________________________________________________________________________90_________________________________________________________________________________________________________________91_________________________________________________________________________________________________________________92_________________________________________________________________________________________________________________9@043@00_________________________________________________________________________________________________________________94_________________________________________________________________________________________________________________95_________________________________________________________________________________________________________________96_________________________________________________________________________________________________________________97_________________________________________________________________________________________________________________98_________________________________________________________________________________________________________________99_________________________________________________________________________________________________________________109________________________________________________________________________________________________________________119________________________________________________________________________________________________________________129________________________________________________________________________________________________________________1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________& @04(END)@00#____________________________________________________________________________________________________________
+6e
=9@043@00_________________________________________________________________________________________________________________94_________________________________________________________________________________________________________________95_________________________________________________________________________________________________________________96_________________________________________________________________________________________________________________97_________________________________________________________________________________________________________________98_________________________________________________________________________________________________________________99_________________________________________________________________________________________________________________109________________________________________________________________________________________________________________119________________________________________________________________________________________________________________129________________________________________________________________________________________________________________1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________& @04(END)@00#____________________________________________________________________________________________________________
+6e
=1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________& @04(END)@00#____________________________________________________________________________________________________________
+26
=1@043@009________________________________________________________________________________________________________________149________________________________________________________________________________________________________________159________________________________________________________________________________________________________________169________________________________________________________________________________________________________________179________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________@01~@00__________________________________________________________________________________________________________________&/#_________________________________________________________________________________________________________________
+a
=1@043@009________________________________________________________________________________________________________________140________________________________________________________________________________________________________________141________________________________________________________________________________________________________________142________________________________________________________________________________________________________________14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________
+2f
=1@043@009________________________________________________________________________________________________________________140________________________________________________________________________________________________________________141________________________________________________________________________________________________________________142________________________________________________________________________________________________________________14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________/#__________________________________________________________________________________________________________________
+e
=1@043@009________________________________________________________________________________________________________________140________________________________________________________________________________________________________________141________________________________________________________________________________________________________________142________________________________________________________________________________________________________________14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________Non-match /#________________________________________________________________________________________________________
+8
=1@043@009________________________________________________________________________________________________________________140________________________________________________________________________________________________________________141________________________________________________________________________________________________________________142________________________________________________________________________________________________________________14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________
+6e
=14@043@00________________________________________________________________________________________________________________144________________________________________________________________________________________________________________145________________________________________________________________________________________________________________146________________________________________________________________________________________________________________147________________________________________________________________________________________________________________148________________________________________________________________________________________________________________149________________________________________________________________________________________________________________150________________________________________________________________________________________________________________151________________________________________________________________________________________________________________152________________________________________________________________________________________________________________15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________177________________________________________________________________________________________________________________178________________________________________________________________________________________________________________179________________________________________________________________________________________________________________180________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________
+6e
=15@043@00________________________________________________________________________________________________________________154________________________________________________________________________________________________________________155________________________________________________________________________________________________________________156________________________________________________________________________________________________________________157________________________________________________________________________________________________________________158________________________________________________________________________________________________________________159________________________________________________________________________________________________________________160________________________________________________________________________________________________________________161________________________________________________________________________________________________________________162________________________________________________________________________________________________________________16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________177________________________________________________________________________________________________________________178________________________________________________________________________________________________________________179________________________________________________________________________________________________________________180________________________________________________________________________________________________________________181________________________________________________________________________________________________________________182________________________________________________________________________________________________________________18@043@00________________________________________________________________________________________________________________184________________________________________________________________________________________________________________185________________________________________________________________________________________________________________186________________________________________________________________________________________________________________187________________________________________________________________________________________________________________188________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________:#__________________________________________________________________________________________________________________
+6e
=16@043@00________________________________________________________________________________________________________________164________________________________________________________________________________________________________________165________________________________________________________________________________________________________________166________________________________________________________________________________________________________________167________________________________________________________________________________________________________________168________________________________________________________________________________________________________________169________________________________________________________________________________________________________________170________________________________________________________________________________________________________________171________________________________________________________________________________________________________________172________________________________________________________________________________________________________________17@043@00________________________________________________________________________________________________________________174________________________________________________________________________________________________________________175________________________________________________________________________________________________________________176________________________________________________________________________________________________________________177________________________________________________________________________________________________________________178________________________________________________________________________________________________________________179________________________________________________________________________________________________________________180________________________________________________________________________________________________________________181________________________________________________________________________________________________________________182________________________________________________________________________________________________________________18@043@00________________________________________________________________________________________________________________184________________________________________________________________________________________________________________185________________________________________________________________________________________________________________186________________________________________________________________________________________________________________187________________________________________________________________________________________________________________188________________________________________________________________________________________________________________189________________________________________________________________________________________________________________190________________________________________________________________________________________________________________191________________________________________________________________________________________________________________192________________________________________________________________________________________________________________19@043@00________________________________________________________________________________________________________________194________________________________________________________________________________________________________________195________________________________________________________________________________________________________________196________________________________________________________________________________________________________________197________________________________________________________________________________________________________________198________________________________________________________________________________________________________________199________________________________________________________________________________________________________________200________________________________________________________________________________________________________________@04(END)@00#______________________________________________________________________________________________________________
+71
Q

3147
lesstest/lt/subsearch.lt Normal file

File diff suppressed because it is too large Load diff

1168
lesstest/lt/table-50x200.lt Normal file

File diff suppressed because it is too large Load diff

BIN
lesstest/lt/utf8-2.txt.lt Normal file

Binary file not shown.

1071
lesstest/lt/version.c.lt Normal file

File diff suppressed because it is too large Load diff

524
lesstest/lt_screen.c Normal file
View file

@ -0,0 +1,524 @@
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <signal.h>
#include "lt_types.h"
#include "wchar.h"
static const char version[] = "lt_screen|v=1";
#define ERROR_CHAR ' '
#define WIDESHADOW_CHAR ((wchar)0)
static char const* osc8_start[] = { "\033]8;", NULL };
static char const* osc8_end[] = { "\033\\", "\7", NULL };
#define NUM_LASTCH 4 // must be >= strlen(osc8_*[*])
static wchar lastch[NUM_LASTCH];
static int lastch_curr = 0;
int usage(void) {
fprintf(stderr, "usage: lt_screen [-w width] [-h height] [-qv]\n");
return 0;
}
// ------------------------------------------------------------------
#define MAX_PARAMS 3
typedef struct ScreenChar {
wchar ch;
Attr attr;
Color fg_color;
Color bg_color;
} ScreenChar;
typedef struct ScreenState {
ScreenChar* chars;
int w;
int h;
int cx;
int cy;
Attr curr_attr;
Color curr_fg_color;
Color curr_bg_color;
int param_top;
int params[MAX_PARAMS+1];
int in_esc;
int in_osc8;
} ScreenState;
static ScreenState screen;
static int ttyin; // input text and control sequences
static int ttyout; // output for screen dump
static int quiet = 0;
static int verbose = 0;
// ------------------------------------------------------------------
// Initialize ScreenState.
static void screen_init(void) {
screen.w = 80;
screen.h = 24;
screen.cx = 0;
screen.cy = 0;
screen.in_esc = 0;
screen.in_osc8 = 0;
screen.curr_attr = 0;
screen.curr_fg_color = screen.curr_bg_color = NULL_COLOR;
screen.param_top = -1;
screen.params[0] = 0;
}
static int num_params(void) {
return screen.param_top+1;
}
static void param_print(void) {
int i;
fprintf(stderr, "(");
for (i = 0; i < num_params(); ++i)
fprintf(stderr, "%d ", screen.params[i]);
fprintf(stderr, ")");
}
static void param_clear(void) {
screen.param_top = -1;
}
static void param_push(int v) {
if (screen.param_top >= (int) countof(screen.params)-1) {
param_clear();
return;
}
screen.params[++screen.param_top] = v;
}
static int param_pop(void){
if (num_params() == 0)
return -1; // missing param
return screen.params[screen.param_top--];
}
static int screen_x(int x) {
if (x < 0) x = 0;
if (x >= screen.w) x = screen.w-1;
return x;
}
static int screen_y(int y) {
if (y < 0) y = 0;
if (y >= screen.h) y = screen.h-1;
return y;
}
// Return the char at a given screen position.
static ScreenChar* screen_char(int x, int y) {
x = screen_x(x);
y = screen_y(y);
return &screen.chars[y * screen.w + x];
}
// Step the cursor after printing a char.
static int screen_incr(int* px, int* py) {
if (++(*px) >= screen.w) {
*px = 0;
if (++(*py) >= screen.h) {
*py = 0;
return 0;
}
}
return 1;
}
// Set the value, attributes and colors of a char on the screen.
static void screen_char_set(int x, int y, wchar ch, Attr attr, Color fg_color, Color bg_color) {
ScreenChar* sc = screen_char(x, y);
sc->ch = ch;
sc->attr = attr;
sc->fg_color = fg_color;
sc->bg_color = bg_color;
}
static int screen_clear(int x, int y, int count) {
while (count-- > 0) {
screen_char_set(x, y, '_', 0, NULL_COLOR, NULL_COLOR);
screen_incr(&x, &y);
}
return 1;
}
static void store_hex(byte** pp, int val) {
char hexchar[] = "0123456789ABCDEF";
*(*pp)++ = hexchar[(val >> 4) & 0xf];
*(*pp)++ = hexchar[val & 0xf];
}
// Print an encoded image of the current screen to ttyout.
// The LTS_CHAR_* metachars encode changes of color and attribute.
static int screen_read(int x, int y, int count) {
Attr attr = 0;
int fg_color = NULL_COLOR;
int bg_color = NULL_COLOR;
while (count-- > 0) {
byte buf[32];
byte* bufp = buf;
ScreenChar* sc = screen_char(x, y);
if (sc->attr != attr) {
attr = sc->attr;
*bufp++ = LTS_CHAR_ATTR;
store_hex(&bufp, attr);
}
if (sc->fg_color != fg_color) {
fg_color = sc->fg_color;
*bufp++ = LTS_CHAR_FG_COLOR;
store_hex(&bufp, fg_color);
}
if (sc->bg_color != bg_color) {
bg_color = sc->bg_color;
*bufp++ = LTS_CHAR_BG_COLOR;
store_hex(&bufp, bg_color);
}
if (x == screen.cx && y == screen.cy)
*bufp++ = LTS_CHAR_CURSOR;
if (sc->ch == '\\' || sc->ch == LTS_CHAR_ATTR || sc->ch == LTS_CHAR_FG_COLOR || sc->ch == LTS_CHAR_BG_COLOR || sc->ch == LTS_CHAR_CURSOR)
*bufp++ = '\\';
store_wchar(&bufp, sc->ch);
write(ttyout, buf, bufp-buf);
screen_incr(&x, &y);
}
write(ttyout, "\n", 1);
return 1;
}
static int screen_move(int x, int y) {
screen.cx = x;
screen.cy = y;
return 1;
}
static int screen_cr(void) {
screen.cx = 0;
return 1;
}
static int screen_bs(void) {
if (screen.cx <= 0) return 0;
--screen.cx;
return 1;
}
static int screen_scroll(void) {
int len = screen.w * (screen.h-1);
memmove(screen_char(0,0), screen_char(0,1), len * sizeof(ScreenChar));
screen_clear(0, screen.h-1, screen.w);
return 1;
}
static int screen_rscroll(void) {
int len = screen.w * (screen.h-1);
memmove(screen_char(0,1), screen_char(0,0), len * sizeof(ScreenChar));
screen_clear(0, 0, screen.w);
return 1;
}
static int screen_set_attr(int attr) {
screen.curr_attr |= attr;
if (verbose) fprintf(stderr, "[%d,%d] set_attr(%d)=%d\n", screen.cx, screen.cy, attr, screen.curr_attr);
return 1;
}
static int screen_clear_attr(int attr) {
screen.curr_attr &= ~attr;
if (verbose) fprintf(stderr, "[%d,%d] clr_attr(%d)=%d\n", screen.cx, screen.cy, attr, screen.curr_attr);
return 1;
}
// ------------------------------------------------------------------
// lt_screen supports certain ANSI color values.
// This simplifies testing SGR sequences with less -R
// compared to inventing custom color sequences.
static int screen_set_color(int color) {
int ret = 0;
switch (color) {
case 1: ret = screen_set_attr(ATTR_BOLD); break;
case 4: ret = screen_set_attr(ATTR_UNDERLINE); break;
case 5:
case 6: ret = screen_set_attr(ATTR_BLINK); break;
case 7: ret = screen_set_attr(ATTR_STANDOUT); break;
case 21:
case 22: ret = screen_clear_attr(ATTR_BOLD); break;
case 24: ret = screen_clear_attr(ATTR_UNDERLINE); break;
case 25: ret = screen_clear_attr(ATTR_BLINK); break;
case 27: ret = screen_clear_attr(ATTR_STANDOUT); break;
// case 38: break;
// case 48: break;
default:
if (color <= 0) {
screen.curr_fg_color = screen.curr_bg_color = NULL_COLOR;
screen.curr_attr = 0;
ret = 1;
} else if ((color >= 30 && color <= 37) || (color >= 90 && color <= 97)) {
screen.curr_fg_color = color;
ret = 1;
} else if ((color >= 40 && color <= 47) || (color >= 100 && color <= 107)) {
screen.curr_bg_color = color;
ret = 1;
} else {
fprintf(stderr, "[%d,%d] unrecognized color %d\n", screen.cx, screen.cy, color);
}
if (verbose) fprintf(stderr, "[%d,%d] set_color(%d)=%d/%d\n", screen.cx, screen.cy, color, screen.curr_fg_color, screen.curr_bg_color);
break;
}
return ret;
}
// ------------------------------------------------------------------
static void beep(void) {
if (!quiet)
fprintf(stderr, "\7");
}
// Execute an escape sequence ending with a given char.
static int exec_esc(wchar ch) {
int x, y, count;
if (verbose) {
fprintf(stderr, "exec ESC-%c ", (char)ch);
param_print();
fprintf(stderr, "\n");
}
switch (ch) {
case 'A': // clear all
return screen_clear(0, 0, screen.w * screen.h);
case 'L': // clear from cursor to end of line
return screen_clear(screen.cx, screen.cy, screen.w - screen.cx);
case 'S': // clear from cursor to end of screen
return screen_clear(screen.cx, screen.cy,
(screen.w - screen.cx) + (screen.h - screen.cy -1) * screen.w);
case 'R': // read N3 chars starting at (N1,N2)
count = param_pop();
y = param_pop();
x = param_pop();
if (x < 0) x = 0;
if (y < 0) y = 0;
if (count < 0) count = 0;
return screen_read(x, y, count);
case 'j': // jump cursor to (N1,N2)
y = param_pop();
x = param_pop();
if (x < 0) x = 0;
if (y < 0) y = 0;
return screen_move(x, y);
case 'g': // visual bell
return 0;
case 'h': // cursor home
return screen_move(0, 0);
case 'l': // cursor lower left
return screen_move(0, screen.h-1);
case 'r': // reverse scroll
return screen_rscroll();
case '<': // cursor left to start of line
return screen_cr();
case 'e': // exit bold
return screen_clear_attr(ATTR_BOLD);
case 'b': // enter blink
return screen_set_attr(ATTR_BLINK);
case 'c': // exit blink
return screen_clear_attr(ATTR_BLINK);
case 'm': // SGR (Select Graphics Rendition)
if (num_params() == 0) {
screen_set_color(-1);
} else {
while (num_params() > 0)
screen_set_color(param_pop());
}
return 0;
case '?': // print version string
write(ttyout, version, strlen(version));
return 1;
default:
return 0;
}
}
// Print a char on the screen.
// Handles cursor movement and scrolling.
static int add_char(wchar ch) {
//if (verbose) fprintf(stderr, "add (%c) %lx at %d,%d\n", (char)ch, (long)ch, screen.cx, screen.cy);
screen_char_set(screen.cx, screen.cy, ch, screen.curr_attr, screen.curr_fg_color, screen.curr_bg_color);
int fits = 1;
int zero_width = (is_composing_char(ch) ||
(screen.cx > 0 && is_combining_char(screen_char(screen.cx-1,screen.cy)->ch, ch)));
if (!zero_width) {
fits = screen_incr(&screen.cx, &screen.cy);
if (fits) {
if (is_wide_char(ch)) {
// The "shadow" is the second column used by a wide char.
screen_char_set(screen.cx, screen.cy, WIDESHADOW_CHAR, 0, NULL_COLOR, NULL_COLOR);
fits = screen_incr(&screen.cx, &screen.cy);
} else {
ScreenChar* sc = screen_char(screen.cx, screen.cy);
if (sc->ch == WIDESHADOW_CHAR) {
// We overwrote the first half of a wide character.
// Change the orphaned shadow to an error char.
screen_char_set(screen.cx, screen.cy, ERROR_CHAR, screen.curr_attr, NULL_COLOR, NULL_COLOR);
}
}
}
}
if (!fits) { // Wrap at bottom of screen = scroll
screen.cx = 0;
screen.cy = screen.h-1;
return screen_scroll();
}
return 1;
}
// Remember the last few chars sent to the screen.
static void add_last(wchar ch) {
lastch[lastch_curr++] = ch;
if (lastch_curr >= NUM_LASTCH) lastch_curr = 0;
}
// Do the last entered characters match a string?
static int last_matches_str(char const* str) {
int ci = lastch_curr;
int si;
for (si = strlen(str)-1; si >= 0; --si) {
ci = (ci > 0) ? ci-1 : NUM_LASTCH-1;
if (str[si] != lastch[ci]) return 0;
}
return 1;
}
// Do the last entered characters match any one of a list of strings?
static int last_matches(const char* const* tbl) {
int ti;
for (ti = 0; tbl[ti] != NULL; ++ti) {
if (last_matches_str(tbl[ti]))
return 1;
}
return 0;
}
// Handle a char sent to the screen while it is receiving an escape sequence.
static int process_esc(wchar ch) {
int ok = 1;
if (screen.in_osc8) {
if (last_matches(osc8_end)) {
screen.in_osc8 = screen.in_esc = 0;
} else {
// Discard everything between osc8_start and osc8_end.
}
} else if (last_matches(osc8_start)) {
param_pop(); // pop the '8'
screen.in_osc8 = 1;
} else if (ch >= '0' && ch <= '9') {
int d = (num_params() == 0) ? 0 : screen.params[screen.param_top--];
param_push(10 * d + ch - '0');
} else if (ch == ';') {
param_push(0);
} else if (ch == '[' || ch == ']') {
; // Ignore ANSI marker
} else { // end of escape sequence
screen.in_esc = 0;
ok = exec_esc(ch);
param_clear();
}
return ok;
}
// Handle a char sent to the screen.
// Normally it is just printed, but some control chars are handled specially.
static int process_char(wchar ch) {
int ok = 1;
add_last(ch);
if (screen.in_esc) {
ok = process_esc(ch);
} else if (ch == ESC) {
screen.in_esc = 1;
} else if (ch == '\r') {
screen_cr();
} else if (ch == '\b') {
screen_bs();
} else if (ch == '\n') {
if (screen.cy < screen.h-1)
++screen.cy;
else
screen_scroll();
screen_cr(); // auto CR
} else if (ch == '\7') {
beep();
} else if (ch == '\t') {
ok = add_char(' '); // hardware tabs not supported
} else if (ch >= '\40') { // printable char
ok = add_char(ch);
}
return ok;
}
// ------------------------------------------------------------------
static int setup(int argc, char** argv) {
int ch;
screen_init();
while ((ch = getopt(argc, argv, "h:qvw:")) != -1) {
switch (ch) {
case 'h':
screen.h = atoi(optarg);
break;
case 'q':
quiet = 1;
break;
case 'v':
++verbose;
break;
case 'w':
screen.w = atoi(optarg);
break;
default:
return usage();
}
}
int len = screen.w * screen.h;
screen.chars = malloc(len * sizeof(ScreenChar));
screen_clear(0, 0, len);
if (optind >= argc) {
ttyin = 0;
ttyout = 1;
} else {
ttyin = ttyout = open(argv[optind], O_RDWR);
if (ttyin < 0) {
fprintf(stderr, "cannot open %s\n", argv[optind]);
return 0;
}
}
return 1;
}
static void set_signal(int signum, void (*handler)(int)) {
struct sigaction sa;
sa.sa_handler = handler;
sa.sa_flags = 0;
sigemptyset(&sa.sa_mask);
sigaction(signum, &sa, NULL);
}
int main(int argc, char** argv) {
set_signal(SIGINT, SIG_IGN);
set_signal(SIGQUIT, SIG_IGN);
set_signal(SIGKILL, SIG_IGN);
if (!setup(argc, argv))
return RUN_ERR;
for (;;) {
wchar ch = read_wchar(ttyin);
//if (verbose) fprintf(stderr, "screen read %c (%lx)\n", pr_ascii(ch), ch);
if (ch == 0)
break;
if (!process_char(ch))
beep();
}
return RUN_OK;
}

32
lesstest/lt_types.h Normal file
View file

@ -0,0 +1,32 @@
#define LESSTEST_VERSION 1
typedef unsigned long wchar;
typedef unsigned char byte;
typedef unsigned char Attr;
typedef unsigned char Color;
#define NULL_COLOR ((Color)0xff)
#define ATTR_BOLD (1<<0)
#define ATTR_UNDERLINE (1<<1)
#define ATTR_STANDOUT (1<<2)
#define ATTR_BLINK (1<<3)
#define ESC '\33'
#define LESS_DUMP_CHAR '\35'
#define UNICODE_MAX_BYTES 4
#define MAX_SCREENBUF_SIZE (16*1024)
#define RUN_OK 0
#define RUN_ERR 1
#define LTS_CHAR_ATTR '@'
#define LTS_CHAR_FG_COLOR '$'
#define LTS_CHAR_BG_COLOR '!'
#define LTS_CHAR_CURSOR '#'
#define is_ascii(ch) ((ch) >= ' ' && (ch) < 0x7f)
#define pr_ascii(ch) (is_ascii(ch) ? ((char)ch) : '.')
#undef countof
#define countof(a) (sizeof(a)/sizeof(*a))

71
lesstest/maketest Executable file
View file

@ -0,0 +1,71 @@
#!/usr/bin/env perl
use strict;
# Create a test file.
# Wrapper for lesstest, using most common options.
my $usage = "usage: maketest [-o lt-file] [-l less.exe] [-s lt_screen] [-t lesstest] [-w width] [-h height] [-O lesstest-opts] [-S lt_screen-opts] textfile\n";
use Getopt::Std;
exit main();
sub main {
my %opt;
die $usage if not getopts('h:l:o:O:s:S:t:w:v', \%opt);
my $textfile = shift @ARGV;
die $usage if not defined $textfile;
my $lesstest = ($opt{t} or "./lesstest");
my $lt_screen = ($opt{s} or "./lt_screen");
my $less = ($opt{l} or "../obj/less");
my $lines = ($opt{h} or $ENV{LINES}-1);
my $columns = ($opt{w} or $ENV{COLUMNS}-1);
my $verbose = ($opt{v} or 0);
my $lt_opts = opts($opt{O} or "");
my $ls_opts = opts($opt{S} or "");
my $ltfile = $opt{o};
my $linked = 0;
if (not less_is_test($less)) {
print "$less is not compiled to support LESSTEST\n";
my ($dir) = $less =~ m|^(.*)/[^/]*$|;
print "To fix: cd $dir; make clean; make LESSTEST=1\n";
exit 1;
}
if ($textfile =~ m|/|) {
my ($basename) = $textfile =~ m|^.*/([^/]+)$|;
if (not link $textfile, $basename) {
print "cannot link $textfile to $basename: $!\n";
exit 1;
}
$linked = 1;
$textfile = $basename;
}
if (not defined $ltfile) {
for (my $i = 0;; ++$i) {
my $suffix = $i ? $i : "";
$ltfile = "lt/$textfile$suffix.lt";
last if not -e $ltfile;
}
}
$ls_opts = "-S$ls_opts" if $ls_opts;
my $cmd = "LINES=$lines COLUMNS=$columns $lesstest $lt_opts $ls_opts -s '$lt_screen' -o '$ltfile' -- $less '$textfile'";
print "$cmd\n" if $verbose;
my $err = system($cmd);
if ($err) {
unlink $ltfile;
} else {
print "created $ltfile\n";
}
unlink $textfile if $linked;
exit $err;
}
sub opts {
my ($opts) = @_;
$opts = "-$opts" if $opts =~ /^[^-]/;
return $opts;
}
sub less_is_test {
my ($less) = @_;
my $ver = `$less -V`;
return $ver =~ /LESSTEST/;
}

155
lesstest/parse.c Normal file
View file

@ -0,0 +1,155 @@
#include <stdio.h>
#include "lesstest.h"
extern int verbose;
// Return the interior string of a quoted string.
static char* parse_qstring(const char** s) {
while (*(*s) == ' ') ++(*s);
if (*(*s)++ != '"') return NULL;
const char* start = *s;
while (*(*s) != '"' && *(*s) != '\0') ++(*s);
char* ret = strndup(start, (*s)-start);
if (*(*s) == '"') ++(*s);
return ret;
}
static int parse_int(const char** s) {
return (int) strtol(*s, (char**)s, 0);
}
// Parse a quoted name and value,
// and add them as env vars to the Setup environment.
static int parse_env(TestSetup* setup, const char* line, int line_len) {
char* name = parse_qstring(&line);
char* value = parse_qstring(&line);
env_addpair(&setup->env, name, value);
free(name);
free(value);
return 1;
}
static int parse_command(TestSetup* setup, const char* less, const char* line, int line_len) {
setup->argv = (char**) malloc(32*sizeof(const char*));
setup->argc = 1;
setup->argv[0] = (char*) less;
for (;;) {
const char* arg = parse_qstring(&line);
setup->argv[setup->argc] = (char*) arg;
if (arg == NULL) break;
setup->argc++;
}
return 1;
}
static int parse_textfile(TestSetup* setup, const char* line, int line_len, FILE* fd) {
const char* filename = parse_qstring(&line);
if (access(filename, F_OK) == 0) {
fprintf(stderr, "%s already exists\n", filename);
return 0;
}
int fsize = parse_int(&line);
int len = strlen(filename)+1;
setup->textfile = malloc(len);
strcpy(setup->textfile, filename);
FILE* textfd = fopen(setup->textfile, "w");
if (textfd == NULL) {
fprintf(stderr, "cannot create %s\n", setup->textfile);
return 0;
}
int nread = 0;
while (nread < fsize) {
char buf[4096];
int chunk = fsize - nread;
if (chunk > sizeof(buf)) chunk = sizeof(buf);
size_t len = fread(buf, 1, chunk, fd);
fwrite(buf, 1, len, textfd);
nread += len;
}
fclose(textfd);
return 1;
}
static TestSetup* new_test_setup(void) {
TestSetup* setup = (TestSetup*) malloc(sizeof(TestSetup));
setup->textfile = NULL;
setup->argv = NULL;
setup->argc = 0;
env_init(&setup->env);
return setup;
}
void free_test_setup(TestSetup* setup) {
if (setup->textfile != NULL) {
unlink(setup->textfile);
free(setup->textfile);
}
int i;
for (i = 1; i < setup->argc; ++i)
free(setup->argv[i]);
free((void*)setup->argv);
free(setup);
}
// Read a newline-terminated line from a file and store it
// as a null-terminated string without the newline.
int read_zline(FILE* fd, char* line, int line_len) {
int nread = 0;
while (nread < line_len-1) {
int ch = fgetc(fd);
if (ch == EOF) return -1;
if (ch == '\n') break;
line[nread++] = (char) ch;
}
line[nread] = '\0';
return nread;
}
// Read the header of a .lt file (up to the R line).
TestSetup* read_test_setup(FILE* fd, const char* less) {
TestSetup* setup = new_test_setup();
int hdr_complete = 0;
while (!hdr_complete) {
char line[10000];
int line_len = read_zline(fd, line, sizeof(line));
if (line_len < 0)
break;
if (line_len < 1)
continue;
switch (line[0]) {
case '!': // file header
break;
case 'T': // test header
break;
case 'R': // end of test header; start run
hdr_complete = 1;
break;
case 'E': // environment variable
if (!parse_env(setup, line+1, line_len-1)) {
free_test_setup(setup);
return NULL;
}
break;
case 'F': // text file
if (!parse_textfile(setup, line+1, line_len-1, fd)) {
free_test_setup(setup);
return NULL;
}
break;
case 'A': // less cmd line parameters
if (!parse_command(setup, less, line+1, line_len-1)) {
free_test_setup(setup);
return NULL;
}
break;
default:
break;
}
}
if (setup->textfile == NULL || setup->argv == NULL) {
free_test_setup(setup);
return NULL;
}
if (verbose) { fprintf(stderr, "setup: textfile %s\n", setup->textfile); print_strings("argv:", setup->argv); }
return setup;
}

167
lesstest/pipeline.c Normal file
View file

@ -0,0 +1,167 @@
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include "lesstest.h"
#define RD 0
#define WR 1
extern int verbose;
extern char* lt_screen;
extern char* lt_screen_opts;
static const int run_less = 1;
// Make 2 specified file descriptors be stdin and stdout.
static void dup_std(int fd0, int fd1) {
if (fd0 >= 0) dup2(fd0, 0);
if (fd1 >= 0) dup2(fd1, 1);
}
static const char* basename(const char* path) {
const char* slash = strrchr(path, '/');
if (slash == NULL) return path;
return slash+1;
}
// Exec an instance of less in the current process.
static void become_child_less(char* less, int argc, char* const* argv, char* const* envp, const char* tempfile, int less_in_pipe[2], int screen_in_pipe[2]) {
if (verbose) fprintf(stderr, "less child: in %d, out %d, close %d,%d\n", less_in_pipe[RD], screen_in_pipe[WR], less_in_pipe[WR], screen_in_pipe[RD]);
close(less_in_pipe[WR]);
close(screen_in_pipe[RD]);
dup_std(less_in_pipe[RD], screen_in_pipe[WR]);
char** less_argv = malloc(sizeof(char*) * (argc + 6));
int less_argc = 0;
less_argv[less_argc++] = less;
less_argv[less_argc++] = "--tty";
less_argv[less_argc++] = "/dev/stdin";
while (--argc > 0) {
char* arg = *++argv;
less_argv[less_argc++] = (argc > 1 || tempfile == NULL) ? arg : (char*) tempfile;
}
less_argv[less_argc] = NULL;
if (verbose) { print_strings("less argv", less_argv); print_strings("less envp", envp); }
execve(less, less_argv, envp);
fprintf(stderr, "cannot exec %s: %s\n", less, strerror(errno));
exit(1);
}
// Exec an instance of lt_screen in the current process.
static void become_child_screen(char* lt_screen, int screen_width, int screen_height, int screen_in_pipe[2], int screen_out_pipe[2]) {
if (verbose) fprintf(stderr, "screen child: in %d, out %d, close %d\n", screen_in_pipe[RD], screen_out_pipe[WR], screen_out_pipe[RD]);
close(screen_out_pipe[RD]);
dup_std(screen_in_pipe[RD], screen_out_pipe[WR]);
char* screen_argv[10];
int screen_argc = 0;
char sw[16];
char sh[16];
screen_argv[screen_argc++] = lt_screen;
if (screen_width >= 0) {
snprintf(sw, sizeof(sw), "%d", screen_width);
screen_argv[screen_argc++] = "-w";
screen_argv[screen_argc++] = sw;
}
if (screen_height >= 0) {
snprintf(sh, sizeof(sh), "%d", screen_height);
screen_argv[screen_argc++] = "-h";
screen_argv[screen_argc++] = sh;
}
if (lt_screen_opts != NULL) {
screen_argv[screen_argc++] = lt_screen_opts;
}
if (1)
screen_argv[screen_argc++] = "-q";
screen_argv[screen_argc] = NULL;
if (verbose) print_strings("screen argv", screen_argv);
char* const screen_envp[] = { NULL };
execve(lt_screen, screen_argv, screen_envp);
fprintf(stderr, "cannot exec %s: %s\n", lt_screen, strerror(errno));
exit(1);
}
// Create an empty LessPipeline.
static LessPipeline* new_pipeline(void) {
LessPipeline* pipeline = malloc(sizeof(LessPipeline));
pipeline->less_in_pipe[RD] = pipeline->less_in_pipe[WR] = -1;
pipeline->screen_in_pipe[RD] = pipeline->screen_in_pipe[WR] = -1;
pipeline->screen_out_pipe[RD] = pipeline->screen_out_pipe[WR] = -1;
pipeline->less_in = pipeline->screen_out = -1;
pipeline->tempfile = NULL;
pipeline->screen_pid = 0;
pipeline->screen_width = pipeline->screen_height = 0;
return pipeline;
}
// Create a LessPipeline.
LessPipeline* create_less_pipeline(char* const* argv, int argc, char* const* envp) {
// If textfile contains a slash, create a temporary link from
// the named text file to its basename, and run less on the link.
LessPipeline* pipeline = new_pipeline();
const char* textfile = argv[argc-1];
const char* textbase = basename(textfile);
if (textbase != textfile) {
pipeline->tempfile = textbase;
if (link(textfile, textbase) < 0) {
fprintf(stderr, "cannot link %s to %s: %s\n", textfile, textbase, strerror(errno));
return NULL;
}
textfile = textbase;
}
if (pipe(pipeline->screen_in_pipe) < 0) {
destroy_less_pipeline(pipeline);
return NULL;
}
const char* w = get_envp(envp, "COLUMNS");
const char* h = get_envp(envp, "LINES");
if (w != NULL) pipeline->screen_width = atoi(w);
if (h != NULL) pipeline->screen_height = atoi(h);
if (verbose) fprintf(stderr, "less out pipe %d,%d\n", pipeline->screen_in_pipe[0], pipeline->screen_in_pipe[1]);
if (run_less) {
if (pipe(pipeline->less_in_pipe) < 0) {
destroy_less_pipeline(pipeline);
return 0;
}
if (verbose) fprintf(stderr, "less in pipe %d,%d\n", pipeline->less_in_pipe[RD], pipeline->less_in_pipe[WR]);
char* less = argv[0];
if (verbose) fprintf(stderr, "testing %s on %s\n", less, textfile);
pipeline->less_pid = fork();
if (pipeline->less_pid < 0) {
destroy_less_pipeline(pipeline);
return NULL;
}
if (!pipeline->less_pid)
become_child_less(less, argc, argv, envp, pipeline->tempfile, pipeline->less_in_pipe, pipeline->screen_in_pipe);
if (verbose) fprintf(stderr, "less child %ld\n", (long) pipeline->less_pid);
close(pipeline->less_in_pipe[RD]); pipeline->less_in_pipe[RD] = -1;
close(pipeline->screen_in_pipe[WR]); pipeline->screen_in_pipe[WR] = -1;
}
if (pipe(pipeline->screen_out_pipe) < 0) {
destroy_less_pipeline(pipeline);
return NULL;
}
if (verbose) fprintf(stderr, "screen out pipe %d,%d\n", pipeline->screen_out_pipe[RD], pipeline->screen_out_pipe[WR]);
pipeline->screen_pid = fork();
if (!pipeline->screen_pid) // child: lt_screen
become_child_screen(lt_screen, pipeline->screen_width, pipeline->screen_height, pipeline->screen_in_pipe, pipeline->screen_out_pipe);
if (verbose) fprintf(stderr, "screen child %ld\n", (long) pipeline->screen_pid);
close(pipeline->screen_out_pipe[WR]); pipeline->screen_out_pipe[WR] = -1;
close(pipeline->screen_in_pipe[RD]); pipeline->screen_in_pipe[RD] = -1;
pipeline->less_in = run_less ? pipeline->less_in_pipe[WR] : pipeline->screen_in_pipe[WR];
pipeline->screen_out = pipeline->screen_out_pipe[RD];
if (verbose) fprintf(stderr, "less in %d, screen out %d, pid %ld\n", pipeline->less_in, pipeline->screen_out, (long) pipeline->screen_pid);
return pipeline;
}
void destroy_less_pipeline(LessPipeline* pipeline) {
close(pipeline->less_in);
close(pipeline->screen_out);
close(pipeline->less_in_pipe[RD]); close(pipeline->less_in_pipe[WR]);
close(pipeline->screen_in_pipe[RD]); close(pipeline->screen_in_pipe[WR]);
close(pipeline->screen_out_pipe[RD]); close(pipeline->screen_out_pipe[WR]);
if (pipeline->tempfile != NULL)
unlink(pipeline->tempfile);
free(pipeline);
}

227
lesstest/run.c Normal file
View file

@ -0,0 +1,227 @@
#include <time.h>
#include <errno.h>
#include <setjmp.h>
#include <errno.h>
#include <signal.h>
#include <sys/wait.h>
#include "lesstest.h"
extern int verbose;
extern int less_quit;
extern int details;
extern int err_only;
extern TermInfo terminfo;
static pid_t less_pid;
static jmp_buf run_catch;
static void set_signal(int signum, void (*handler)(int)) {
struct sigaction sa;
sa.sa_handler = handler;
sa.sa_flags = 0;
sigemptyset(&sa.sa_mask);
sigaction(signum, &sa, NULL);
}
static void child_handler(int signum) {
int status;
pid_t child = wait(&status);
if (verbose) fprintf(stderr, "child %d died, status 0x%x\n", child, status);
if (child == less_pid) {
if (verbose) fprintf(stderr, "less died\n");
less_quit = 1;
}
}
static void set_signal_handlers(int set) {
set_signal(SIGINT, set ? SIG_IGN : SIG_DFL);
set_signal(SIGQUIT, set ? SIG_IGN : SIG_DFL);
set_signal(SIGKILL, set ? SIG_IGN : SIG_DFL);
set_signal(SIGPIPE, set ? SIG_IGN : SIG_DFL);
set_signal(SIGCHLD, set ? child_handler : SIG_DFL);
}
// Send a command char to a LessPipeline.
static void send_char(LessPipeline* pipeline, wchar ch) {
if (verbose) fprintf(stderr, "lt.send %lx\n", ch);
byte cbuf[UNICODE_MAX_BYTES];
byte* cp = cbuf;
store_wchar(&cp, ch);
write(pipeline->less_in, cbuf, cp-cbuf);
}
// Read the screen image from the lt_screen in a LessPipeline.
static int read_screen(LessPipeline* pipeline, byte* buf, int buflen) {
if (verbose) fprintf(stderr, "lt.gen: read screen\n");
send_char(pipeline, LESS_DUMP_CHAR);
int rn = 0;
for (; rn <= buflen; ++rn) {
byte ch;
if (read(pipeline->screen_out, &ch, 1) != 1)
break;
if (ch == '\n')
break;
if (buf != NULL) buf[rn] = ch;
}
return rn;
}
// Read screen image from a LessPipeline and display it.
static void read_and_display_screen(LessPipeline* pipeline) {
byte rbuf[MAX_SCREENBUF_SIZE];
int rn = read_screen(pipeline, rbuf, sizeof(rbuf));
if (rn == 0) return;
printf("%s", terminfo.clear_screen);
display_screen(rbuf, rn, pipeline->screen_width, pipeline->screen_height);
log_screen(rbuf, rn);
}
// Is the screen image in a LessPipeline equal to a given buffer?
static int curr_screen_match(LessPipeline* pipeline, const byte* img, int imglen) {
byte curr[MAX_SCREENBUF_SIZE];
int currlen = read_screen(pipeline, curr, sizeof(curr));
if (currlen == imglen && memcmp(img, curr, imglen) == 0)
return 1;
if (details) {
fprintf(stderr, "lt: mismatch: expect:\n");
display_screen_debug(img, imglen, pipeline->screen_width, pipeline->screen_height);
fprintf(stderr, "lt: got:\n");
display_screen_debug(curr, currlen, pipeline->screen_width, pipeline->screen_height);
}
return 0;
}
// Run an interactive lesstest session to create an lt file.
// Read individual chars from stdin and send them to a LessPipeline.
// After each char, read the LessPipeline screen and display it
// on the user's screen.
// Also log the char and the screen image in the lt file.
int run_interactive(char* const* argv, int argc, char* const* prog_envp) {
setup_term();
char* const* envp = less_envp(prog_envp, 1);
LessPipeline* pipeline = create_less_pipeline(argv, argc, envp);
if (pipeline == NULL)
return 0;
less_pid = pipeline->less_pid;
const char* textfile = (pipeline->tempfile != NULL) ? pipeline->tempfile : argv[argc-1];
if (!log_test_header(argv, argc, textfile)) {
destroy_less_pipeline(pipeline);
return 0;
}
set_signal_handlers(1);
less_quit = 0;
int ttyin = 0; // stdin
raw_mode(ttyin, 1);
printf("%s%s", terminfo.init_term, terminfo.enter_keypad);
read_and_display_screen(pipeline);
while (!less_quit) {
wchar ch = read_wchar(ttyin);
if (ch == terminfo.backspace_key)
ch = '\b';
if (verbose) fprintf(stderr, "tty %c (%lx)\n", pr_ascii(ch), ch);
log_tty_char(ch);
send_char(pipeline, ch);
read_and_display_screen(pipeline);
}
log_test_footer();
printf("%s%s%s", terminfo.clear_screen, terminfo.exit_keypad, terminfo.deinit_term);
raw_mode(ttyin, 0);
destroy_less_pipeline(pipeline);
set_signal_handlers(0);
return 1;
}
// Run a test of less, as directed by an open lt file.
// Read a logged char and screen image from the lt file.
// Send the char to a LessPipeline, then read the LessPipeline screen image
// and compare it to the screen image from the lt file.
// Report an error if they differ.
static int run_test(TestSetup* setup, FILE* testfd) {
const char* setup_name = setup->argv[setup->argc-1];
//fprintf(stderr, "RUN %s\n", setup_name);
LessPipeline* pipeline = create_less_pipeline(setup->argv, setup->argc,
less_envp(setup->env.env_list, 0));
if (pipeline == NULL)
return 0;
less_quit = 0;
wchar last_char = 0;
int ok = 1;
int cmds = 0;
if (setjmp(run_catch)) {
fprintf(stderr, "\nINTR test interrupted\n");
ok = 0;
} else {
set_signal_handlers(1);
(void) read_screen(pipeline, NULL, MAX_SCREENBUF_SIZE); // wait until less is running
while (!less_quit) {
char line[10000];
int line_len = read_zline(testfd, line, sizeof(line));
if (line_len < 0)
break;
if (line_len < 1)
continue;
switch (line[0]) {
case '+':
last_char = (wchar) strtol(line+1, NULL, 16);
send_char(pipeline, last_char);
++cmds;
break;
case '=':
if (!curr_screen_match(pipeline, (byte*)line+1, line_len-1)) {
ok = 0;
less_quit = 1;
fprintf(stderr, "DIFF %s on cmd #%d (%c %lx)\n",
setup_name, cmds, pr_ascii(last_char), last_char);
}
break;
case 'Q':
less_quit = 1;
break;
case '\n':
case '!':
break;
default:
fprintf(stderr, "unrecognized char at start of \"%s\"\n", line);
return 0;
}
}
set_signal_handlers(0);
}
destroy_less_pipeline(pipeline);
if (!ok)
printf("FAIL: %s (%d steps)\n", setup_name, cmds);
else if (!err_only)
printf("PASS: %s (%d steps)\n", setup_name, cmds);
return ok;
}
// Run a test of less, as directed by a named lt file.
// Should be run in an empty temp directory;
// it creates its own files in the current directory.
int run_testfile(const char* ltfile, const char* less) {
FILE* testfd = fopen(ltfile, "r");
if (testfd == NULL) {
fprintf(stderr, "cannot open %s\n", ltfile);
return 0;
}
int tests = 0;
int fails = 0;
// This for loop is to handle multiple tests in one file.
for (;;) {
TestSetup* setup = read_test_setup(testfd, less);
if (setup == NULL)
break;
++tests;
int ok = run_test(setup, testfd);
free_test_setup(setup);
if (!ok) ++fails;
}
#if 0
fprintf(stderr, "DONE %d test%s", tests, tests==1?"":"s");
if (tests > fails) fprintf(stderr, ", %d ok", tests-fails);
if (fails > 0) fprintf(stderr, ", %d failed", fails);
fprintf(stderr, "\n");
#endif
fclose(testfd);
return (fails == 0);
}

107
lesstest/runtest Executable file
View file

@ -0,0 +1,107 @@
#!/usr/bin/env perl
use strict;
# Run one or more test files.
my $usage = "usage: runtest [-eE] [-d lesstest-dir] [-l less.exe] [-r temp-dir] [-s lt_screen] [-t lesstest] [-O lesstest-opts] [file.lt | dir]...\n";
use Getopt::Std;
use Cwd;
my $rundir;
my $lesstest;
my $lt_screen;
my $less;
my $lt_opts;
my $err_only;
my $num_tests = 0;
exit main();
sub main {
my %opt;
die $usage if not getopts('d:eEl:O:r:s:t:', \%opt);
die $usage if not @ARGV;
my $cwd = getcwd();
my $srcdir = ($opt{d} or $cwd);
$rundir = (rfile($opt{r}, $cwd) or "$srcdir/.runtest_dir");
$lesstest = (rfile($opt{t}, $cwd) or "$srcdir/lesstest");
$lt_screen = (rfile($opt{s}, $cwd) or "$srcdir/lt_screen");
$less = (rfile($opt{l}, $cwd) or "$srcdir/../obj/less");
$lt_opts = ($opt{O} or "");
$err_only = $opt{E} ? 2 : $opt{e} ? 1 : 0;
$lt_opts = "-$lt_opts" if $lt_opts =~ /^[^-]/;
$lt_opts .= ($err_only == 2) ? " -E" : $err_only ? " -e" : "";
die "cannot execute $lesstest: $!" if not -x $lesstest;
die "cannot execute $lt_screen: $!" if not -x $lt_screen;
die "cannot execute $less: $!" if not -x $less;
die "$less is not compiled to support LESSTEST" if not less_is_test($less);
die "cannot create $rundir: $!" if system "rm -rf '$rundir' && mkdir -p '$rundir'";
die "cannot chdir to $rundir: $!" if not chdir $rundir;
my $errs = 0;
foreach my $file (@ARGV) {
$errs += run(rfile($file, $cwd));
}
system "rm -rf '$rundir'";
print STDERR "RAN $num_tests tests with $errs errors\n" if $errs > 0 or $err_only != 2;
return ($errs > 0);
}
# Run a test as directed by a lt file.
sub run {
my ($file) = @_;
if (-d $file) {
return run_dir($file);
}
if ($file !~ /\.lt$/) {
print STDERR "SKIP unknown file suffix: $file\n";
return 0;
}
if (not -f $file) {
print STDERR "ERR cannot open $file: $!\n";
return 1;
}
my ($basename) = $file =~ m|^.*/([^/]+)$|;
if ($file =~ /'/) {
print STDERR "ERR invalid character in $file\n";
return 1;
}
print STDERR "TEST $basename\n" unless $err_only;
my $cmd = "$lesstest $lt_opts -s '$lt_screen' -t '$file' '$less'";
my $err = system $cmd;
++$num_tests;
if ($err) {
print STDERR "ERR status $err from $cmd\n";
return 1;
}
return 0;
}
sub run_dir {
my ($dir) = @_;
my $errs = 0;
my $dd;
if (not opendir($dd, $dir)) {
print STDERR "ERR cannot open directory $dir: $!\n";
return 1;
}
while (my $entry = readdir($dd)) {
next if $entry =~ /^\./;
$errs += run("$dir/$entry");
}
closedir $dd;
return $errs;
}
sub rfile {
my ($file, $cwd) = @_;
return undef if not defined $file;
$file = "$cwd/$file" unless $file =~ m|^/|;
return $file;
}
sub less_is_test {
my ($less) = @_;
my $ver = `$less -V`;
return $ver =~ /LESSTEST/;
}

127
lesstest/term.c Normal file
View file

@ -0,0 +1,127 @@
#include <string.h>
#include <fcntl.h>
#include <termios.h>
#include <termcap.h>
#include <sys/ioctl.h>
#include "lesstest.h"
TermInfo terminfo;
static void set_termio_flags(struct termios* s) {
s->c_lflag &= ~(0
#ifdef ICANON
| ICANON
#endif
#ifdef ECHO
| ECHO
#endif
#ifdef ECHOE
| ECHOE
#endif
#ifdef ECHOK
| ECHOK
#endif
#if ECHONL
| ECHONL
#endif
);
s->c_oflag |= (0
#ifdef OXTABS
| OXTABS
#else
#ifdef TAB3
| TAB3
#else
#ifdef XTABS
| XTABS
#endif
#endif
#endif
#ifdef OPOST
| OPOST
#endif
#ifdef ONLCR
| ONLCR
#endif
);
s->c_oflag &= ~(0
#ifdef ONOEOT
| ONOEOT
#endif
#ifdef OCRNL
| OCRNL
#endif
#ifdef ONOCR
| ONOCR
#endif
#ifdef ONLRET
| ONLRET
#endif
);
}
// Enable or disable raw mode on the given tty.
void raw_mode(int tty, int on) {
struct termios s;
static struct termios save_term;
if (!on) {
s = save_term;
} else {
tcgetattr(tty, &s);
save_term = s;
set_termio_flags(&s);
s.c_cc[VMIN] = 1;
s.c_cc[VTIME] = 0;
}
tcsetattr(tty, TCSADRAIN, &s);
}
// Initialize the enter & exit capabilities for a given terminal mode.
static void setup_mode(char* enter_cap, char* exit_cap, char** enter_str, char** exit_str, char** spp) {
*enter_str = tgetstr(enter_cap, spp);
if (*enter_str == NULL) *enter_str = "";
*exit_str = tgetstr(exit_cap, spp);
if (*exit_str == NULL) *exit_str = tgetstr("me", spp);
if (*exit_str == NULL) *exit_str = "";
}
static char* ltgetstr(char* id, char** area) {
char* str = tgetstr(id, area);
if (str == NULL) str = "";
return str;
}
// Initialize the terminfo struct with info about the terminal $TERM.
int setup_term(void) {
static char termbuf[4096];
static char sbuf[4096];
char* term = getenv("TERM");
if (term == NULL) term = "dumb";
if (tgetent(termbuf, term) <= 0) {
fprintf(stderr, "cannot setup terminal %s\n", term);
return 0;
}
char* sp = sbuf;
setup_mode("so", "se", &terminfo.enter_standout, &terminfo.exit_standout, &sp);
setup_mode("us", "ue", &terminfo.enter_underline, &terminfo.exit_underline, &sp);
setup_mode("md", "me", &terminfo.enter_bold, &terminfo.exit_bold, &sp);
setup_mode("mb", "me", &terminfo.enter_blink, &terminfo.exit_blink, &sp);
char* bs = ltgetstr("kb", &sp);
terminfo.backspace_key = (strlen(bs) == 1) ? *bs : '\b';
terminfo.cursor_move = ltgetstr("cm", &sp);
terminfo.clear_screen = ltgetstr("cl", &sp);
terminfo.init_term = ltgetstr("ti", &sp);
terminfo.deinit_term = ltgetstr("te", &sp);
terminfo.enter_keypad = ltgetstr("ks", &sp);
terminfo.exit_keypad = ltgetstr("ke", &sp);
terminfo.key_right = ltgetstr("kr", &sp);
terminfo.key_left = ltgetstr("kl", &sp);
terminfo.key_up = ltgetstr("ku", &sp);
terminfo.key_down = ltgetstr("kd", &sp);
terminfo.key_home = ltgetstr("kh", &sp);
terminfo.key_end = ltgetstr("@7", &sp);
return 1;
}

52
lesstest/unicode.c Normal file
View file

@ -0,0 +1,52 @@
#include "lt_types.h"
typedef struct wchar_range { wchar first, last; } wchar_range;
static wchar_range wide_chars[] = {
#include "../wide.uni"
};
static wchar_range compose_table[] = {
#include "../compose.uni"
};
static wchar_range fmt_table[] = {
#include "../fmt.uni"
};
static wchar_range comb_table[] = {
{0x0644,0x0622}, {0x0644,0x0623}, {0x0644,0x0625}, {0x0644,0x0627},
};
static int is_in_table(wchar ch, wchar_range table[], int count) {
if (ch < table[0].first)
return 0;
int lo = 0;
int hi = count - 1;
while (lo <= hi) {
int mid = (lo + hi) / 2;
if (ch > table[mid].last)
lo = mid + 1;
else if (ch < table[mid].first)
hi = mid - 1;
else
return 1;
}
return 0;
}
int is_wide_char(wchar ch) {
return is_in_table(ch, wide_chars, countof(wide_chars));
}
int is_composing_char(wchar ch) {
return is_in_table(ch, compose_table, countof(compose_table)) ||
is_in_table(ch, fmt_table, countof(fmt_table));
}
int is_combining_char(wchar ch1, wchar ch2) {
int i;
for (i = 0; i < countof(comb_table); i++) {
if (ch1 == comb_table[i].first &&
ch2 == comb_table[i].last)
return 1;
}
return 0;
}

70
lesstest/wchar.c Normal file
View file

@ -0,0 +1,70 @@
#include <unistd.h>
#include "lt_types.h"
// Return number of bytes in the UTF-8 sequence which begins with a given byte.
int wchar_len(byte b) {
if ((b & 0xE0) == 0xC0) return 2;
if ((b & 0xF0) == 0xE0) return 3;
if ((b & 0xF8) == 0xF0) return 4;
return 1;
}
void store_wchar(byte** p, wchar ch) {
if (ch < 0x80) {
*(*p)++ = (char) ch;
} else if (ch < 0x800) {
*(*p)++ = (byte) (0xC0 | ((ch >> 6) & 0x1F));
*(*p)++ = (byte) (0x80 | (ch & 0x3F));
} else if (ch < 0x10000) {
*(*p)++ = (byte) (0xE0 | ((ch >> 12) & 0x0F));
*(*p)++ = (byte) (0x80 | ((ch >> 6) & 0x3F));
*(*p)++ = (byte) (0x80 | (ch & 0x3F));
} else {
*(*p)++ = (byte) (0xF0 | ((ch >> 18) & 0x07));
*(*p)++ = (byte) (0x80 | ((ch >> 12) & 0x3F));
*(*p)++ = (byte) (0x80 | ((ch >> 6) & 0x3F));
*(*p)++ = (byte) (0x80 | (ch & 0x3F));
}
}
wchar load_wchar(const byte** p) {
wchar ch;
switch (wchar_len(**p)) {
default:
ch = *(*p)++ & 0xFF;
break;
case 2:
ch = (*(*p)++ & 0x1F) << 6;
ch |= *(*p)++ & 0x3F;
break;
case 3:
ch = (*(*p)++ & 0x0F) << 12;
ch |= (*(*p)++ & 0x3F) << 6;
ch |= (*(*p)++ & 0x3F);
break;
case 4:
ch = (*(*p)++ & 0x07) << 18;
ch |= (*(*p)++ & 0x3F) << 12;
ch |= (*(*p)++ & 0x3F) << 6;
ch |= (*(*p)++ & 0x3F);
break;
}
return ch;
}
wchar read_wchar(int fd) {
byte cbuf[UNICODE_MAX_BYTES];
int n = read(fd, &cbuf[0], 1);
if (n <= 0)
return 0;
int len = wchar_len(cbuf[0]);
int i;
for (i = 1; i < len; ++i) {
int n = read(fd, &cbuf[i], 1);
if (n != 1) return 0;
}
const byte* cp = cbuf;
wchar ch = load_wchar(&cp);
// assert(cp-cbuf == len);
return ch;
}

7
lesstest/wchar.h Normal file
View file

@ -0,0 +1,7 @@
int wchar_len(byte ch);
void store_wchar(byte** p, wchar ch);
wchar load_wchar(const byte** p);
wchar read_wchar(int fd);
int is_wide_char(wchar ch);
int is_composing_char(wchar ch);
int is_combining_char(wchar ch1, wchar ch2);

View file

@ -196,7 +196,7 @@ public void opt_j(int type, char *s)
error("Position target at screen line %d", &parg);
} else
{
char buf[24];
char buf[INT_STRLEN_BOUND(long)+2];
SNPRINTF1(buf, sizeof(buf), ".%06ld", jump_sline_fraction);
len = (int) strlen(buf);
while (len > 2 && buf[len-1] == '0')
@ -213,7 +213,7 @@ public void calc_jump_sline(void)
{
if (jump_sline_fraction < 0)
return;
jump_sline = muldiv(sc_height, jump_sline_fraction, NUM_FRAC_DENOM);
jump_sline = (int) muldiv(sc_height, jump_sline_fraction, NUM_FRAC_DENOM);
}
/*
@ -256,7 +256,7 @@ public void opt_shift(int type, char *s)
error("Horizontal shift %d columns", &parg);
} else
{
char buf[24];
char buf[INT_STRLEN_BOUND(long)+2];
SNPRINTF1(buf, sizeof(buf), ".%06ld", shift_count_fraction);
len = (int) strlen(buf);
while (len > 2 && buf[len-1] == '0')
@ -273,7 +273,7 @@ public void calc_shift_count(void)
{
if (shift_count_fraction < 0)
return;
shift_count = muldiv(sc_width, shift_count_fraction, NUM_FRAC_DENOM);
shift_count = (int) muldiv(sc_width, shift_count_fraction, NUM_FRAC_DENOM);
}
#if USERFILE

44
os.c
View file

@ -48,6 +48,7 @@ static int use_poll = TRUE;
#endif
#if USE_POLL
#include <poll.h>
static int any_data = FALSE;
#endif
/*
@ -88,10 +89,10 @@ extern char *ttyin_name;
public void init_poll(void)
{
char *delay = lgetenv("LESS_DATA_DELAY");
int idelay = (delay == NULL) ? 0 : atoi(delay);
if (idelay > 0)
waiting_for_data_delay = idelay;
char *delay = lgetenv("LESS_DATA_DELAY");
int idelay = (delay == NULL) ? 0 : atoi(delay);
if (idelay > 0)
waiting_for_data_delay = idelay;
#if USE_POLL
#if defined(__APPLE__)
/* In old versions of MacOS, poll() does not work with /dev/tty. */
@ -113,6 +114,15 @@ static int check_poll(int fd, int tty)
{
struct pollfd poller[2] = { { fd, POLLIN, 0 }, { tty, POLLIN, 0 } };
int timeout = (waiting_for_data && !(scanning_eof && follow_mode == FOLLOW_NAME)) ? -1 : waiting_for_data_delay;
if (!any_data)
{
/*
* Don't do polling if no data has yet been received,
* to allow a program piping data into less to have temporary
* access to the tty (like sudo asking for a password).
*/
return (0);
}
poll(poller, 2, timeout);
#if LESSTEST
if (ttyin_name == NULL) /* Check for ^X only on a real tty. */
@ -193,6 +203,11 @@ public int iread(int fd, unsigned char *buf, unsigned int len)
sigmask(~0);
#endif
#endif
#endif
#if !MSDOS_COMPILER
if (fd != tty && !ABORT_SIGS())
/* Non-interrupt signal like SIGWINCH. */
return (READ_AGAIN);
#endif
return (READ_INTR);
}
@ -207,7 +222,7 @@ public int iread(int fd, unsigned char *buf, unsigned int len)
* available, because that makes some background programs
* believe DOS is busy in a way that prevents those
* programs from working while "less" waits.
* {{ This code was added 12 Jan 2007; still needed? }}
* {{ This code was added 12 Jan 2007; still needed? }}
*/
fd_set readfds;
@ -234,11 +249,18 @@ public int iread(int fd, unsigned char *buf, unsigned int len)
}
#else
#if MSDOS_COMPILER==WIN32C
if (win32_kbhit() && WIN32getch() == intr_char)
if (win32_kbhit())
{
sigs |= S_INTERRUPT;
reading = 0;
return (READ_INTR);
int c;
c = WIN32getch();
if (c == intr_char)
{
sigs |= S_INTERRUPT;
reading = 0;
return (READ_INTR);
}
WIN32ungetch(c);
}
#endif
#endif
@ -282,6 +304,10 @@ public int iread(int fd, unsigned char *buf, unsigned int len)
#endif
return (READ_ERR);
}
#if USE_POLL
if (fd != tty && n > 0)
any_data = TRUE;
#endif
return (n);
}

View file

@ -68,9 +68,17 @@ extern int fd0;
#endif
#endif
#if HAVE_NCURSESW_TERMCAP_H
#include <ncursesw/termcap.h>
#else
#if HAVE_NCURSES_TERMCAP_H
#include <ncurses/termcap.h>
#else
#if HAVE_TERMCAP_H
#include <termcap.h>
#endif
#endif
#endif
#ifdef _OSK
#include <signal.h>
#endif
@ -141,6 +149,8 @@ static WORD curr_attr;
static int pending_scancode = 0;
static char x11mousebuf[] = "[M???"; /* Mouse report, after ESC */
static int x11mousePos, x11mouseCount;
static int win_unget_pending = FALSE;
static int win_unget_data;
static HANDLE con_out_save = INVALID_HANDLE_VALUE; /* previous console */
static HANDLE con_out_ours = INVALID_HANDLE_VALUE; /* our own */
@ -160,8 +170,8 @@ static void win32_deinit_term();
#define MAKEATTR(fg,bg) ((WORD)((fg)|((bg)<<4)))
#define APPLY_COLORS() { if (SetConsoleTextAttribute(con_out, curr_attr) == 0) \
error("SETCOLORS failed", NULL_PARG); }
#define SET_FG_COLOR(fg) { curr_attr |= (fg); APPLY_COLORS(); }
#define SET_BG_COLOR(bg) { curr_attr |= ((bg)<<4); APPLY_COLORS(); }
#define SET_FG_COLOR(fg) { curr_attr &= ~0x0f; curr_attr |= (fg); APPLY_COLORS(); }
#define SET_BG_COLOR(bg) { curr_attr &= ~0xf0; curr_attr |= ((bg)<<4); APPLY_COLORS(); }
#define SETCOLORS(fg,bg) { curr_attr = MAKEATTR(fg,bg); APPLY_COLORS(); }
#endif
@ -321,7 +331,7 @@ static void set_termio_flags(
#ifdef ECHOK
| ECHOK
#endif
#if ECHONL
#ifdef ECHONL
| ECHONL
#endif
);
@ -1694,7 +1704,7 @@ static void ltputs(char *str, int affcnt, int (*f_putc)(int))
#endif /* MSDOS_COMPILER */
/*
* Configure the termimal so mouse clicks and wheel moves
* Configure the terminal so mouse clicks and wheel moves
* produce input to less.
*/
public void init_mouse(void)
@ -2791,7 +2801,7 @@ public int win32_kbhit(void)
INPUT_RECORD ip;
DWORD read;
if (keyCount > 0)
if (keyCount > 0 || win_unget_pending)
return (TRUE);
currentKey.ascii = 0;
@ -2896,6 +2906,13 @@ public int win32_kbhit(void)
/*
* Read a character from the keyboard.
*
* Known issues:
* - WIN32getch API should be int like libc (with unsigned char values or -1).
* - The unicode code below can return 0 - incorrectly indicating scan code.
* - UTF16-LE surrogate pairs don't work (and return 0).
* - If win32_kbhit returns true then WIN32getch should never block, but it
* will block till the next keypress if it's numlock/capslock scan code.
*/
public char WIN32getch(void)
{
@ -2904,6 +2921,12 @@ public char WIN32getch(void)
static int utf8_size = 0;
static int utf8_next_byte = 0;
if (win_unget_pending)
{
win_unget_pending = FALSE;
return (char) win_unget_data;
}
// Return the rest of multibyte character from the prior call
if (utf8_next_byte < utf8_size)
{
@ -2919,19 +2942,18 @@ public char WIN32getch(void)
}
do {
while (win32_kbhit() == FALSE)
while (!win32_kbhit())
{
Sleep(20);
if (ABORT_SIGS())
return ('\003');
continue;
}
keyCount --;
keyCount--;
// If multibyte character, return its first byte
if (currentKey.ascii != currentKey.unicode)
if (currentKey.unicode > 0x7f)
{
utf8_size = WideCharToMultiByte(CP_UTF8, 0, &currentKey.unicode, 1, &utf8, sizeof(utf8), NULL, NULL);
if (utf8_size == 0 )
utf8_size = WideCharToMultiByte(CP_UTF8, 0, &currentKey.unicode, 1, (LPSTR) &utf8, sizeof(utf8), NULL, NULL);
if (utf8_size == 0)
return '\0';
ascii = utf8[0];
utf8_next_byte = 1;
@ -2948,6 +2970,15 @@ public char WIN32getch(void)
return ascii;
}
/*
* Make the next call to WIN32getch return ch without changing the queue state.
*/
public void WIN32ungetch(int ch)
{
win_unget_pending = TRUE;
win_unget_data = ch;
}
#endif
#if MSDOS_COMPILER

View file

@ -944,6 +944,8 @@ static void hilite_line(POSITION linepos, char *line, int line_len, int *chpos,
do {
char *lep = sp[0];
int i;
if (sp[0] == NULL || ep[0] == NULL)
break;
for (i = 1; i < nsp; i++)
{
if (sp[i] == NULL || ep[i] == NULL)

View file

@ -981,6 +981,18 @@ v629 2/26/23 Delay "waiting for data" message for 500 ms.
v630 3/18/23 Add LESS_DATA_DELAY.
v631 3/26/23 Fix input of dead keys on Windows.
v632 4/6/23 Make lesstest work on MacOS; minor fixes.
v633 5/3/23 Fix build on systems with ncurses/termcap.h or ncursesw/termcap.h.
v634 5/29/23 Allow program piping into less to access tty;
fix search modifier ^E after ^W.
v635 6/2/23 Fix crash with ! search modifier.
v636 6/18/23 Fix -D in MS-DOS build; fix mouse wheel in MS-DOS build.
v637 6/28/23 Fix early EOF when SIGWINCH is received.
v638 6/29/23 Fix compile error with ECHONL.
v639 6/29/23 Fix SIGWINCH while reading tty.
v640 7/10/23 Add lesstest to release.
v641 7/10/23 Fix release.
v642 7/10/23 Fix release.
v643 7/20/23 Fix crash on Windows with -o.
*/
char version[] = "632";
char version[] = "643";

8
xbuf.c
View file

@ -93,7 +93,7 @@ static int help_fixup(void *r, uintmax val, int rsize, int rsigned)
int *pr = r;
if (INT_MAX < val)
return TRUE;
*pr = val;
*pr = (int) val;
#ifdef LLONG_MAX
} else if (rsize == sizeof (long long))
{
@ -114,19 +114,19 @@ static int help_fixup(void *r, uintmax val, int rsize, int rsigned)
long *pr = r;
if (LONG_MAX < val)
return TRUE;
*pr = val;
*pr = (long) val;
}
} else {
if (rsize == sizeof (unsigned)) {
unsigned *pr = r;
if (UINT_MAX < val)
return TRUE;
*pr = val;
*pr = (unsigned) val;
} else if (rsize == sizeof (unsigned long)) {
unsigned long *pr = r;
if (ULONG_MAX < val)
return TRUE;
*pr = val;
*pr = (unsigned long) val;
#ifdef ULLONG_MAX
} else if (rsize == sizeof (unsigned long long)) {
long long *pr = r;