0707070000020073541006440001450001440000010611240373775626600000500000000004Size250 0707070000020104661006440001450001440000010425150373775626600000700000002652README This package is a loadable driver which essentially fixes all the (known) bugs and adds one major new feature. These have been extensively tested on tty000 and slightly less well tested in conjunction with the COMBO card. Certainly the two together do not break, and I think that the bug fixes apply throughout, but I don't that the feature appears on combo card tty ports. The package is installable as it comes. The bugs removed are: 1) Line no longer open()s in CLOCAL mode. 2) close() doesn't hang any more. 3) Longstanding generic UNIX bug in close fixed. 4) Flow control works better. The feature is: Hardware flow control on /dev/tty000. Now you can use your UNIX PC for both uucp and terminal emulation over an RS232 line. Everyone in Middletown wants this, so will everyone in Freehold once the ISN gets installed. It has been tested using an Ungermann-Bass Net/One, a Sytek LocalNet, and an ISN. This is turned ON at open(), and replaces the regular XON/XOFF flow control, so make sure that whatever you have connected to tty000 understand hardware flow control. It works by dropping RTS (instead of sending XOFF, ^S) when it wants the DCE to suspend transmission, then raising RTS again when it is ready. It responds to the DCE raising and lowering CTS in the same fashion. These are not inter-dependant. Credits: Jonathan Clark and Chun Liew Further information from: Jonathan Clark HO 1J332 834 4486 mtung!jhc, olorin!jonathan 0707070000020104711006440001450001440000010611320373775626500000600000000161Files./Size ./README ./Files ./Install ./Name ./Remove ./hfc.o ./MAKEflop ./MAKEcpio ./9600bps:A2 ./stty ./async_main 0707070000020104721007770001450001440000010611720374001211100001000000017157Install# HFC Installation script # bjc 9/86 DRIVERNAME="hfc" PRETTYNAME="hardware flow control + fixed tty driver" # set DEVNAME to null if no /dev entry needed DEVNAME= MASTERPREFIX="hfc_" # MASTERCALLS should be a combination of: # init release # open close read write ioctl pwr print strategy fix flt # char block required supp nocnt once MASTERCALLS="init release once nocnt" DRVLIST=/etc/lddrv/InstDrv CURDIR=`pwd` Name=`cat ./Name` RET=`grep "$Name" /usr/installed/CONTENTS| awk ' length > 6 { print $1 } '` cnt=`expr \`echo $RET |wc -w\`` if [ "$cnt" -gt "1" ] then message "The $Name package has been installed before. If you want to reinstall it, first uninstall the current package." grep -v "^$Name" /usr/installed/CONTENTS >/tmp/cnt$$ mv /tmp/cnt$$ /usr/installed/CONTENTS set $RET echo "$1 $Name" >>/usr/installed/CONTENTS exit 1 else Remove=/usr/installed/${RET}.un echo "Installing the $Name package." fi chmod +x $Remove #------ if [ ! -s /etc/lddrv/lddrv ] then message "You need to install a 3.0 UNIX System release before installing the $Name Package. Contact AT&T Support for information. Aborting $Name installation." message "Please select 'Remove Installed Software' and remove this package. IGNORE the message that installation is complete. The installation of this package has been ABORTED!!" exit 1 fi # Don't let them install this if running 3.5, it'll crash their system VER=`uname -v | cut -c1-3 | awk ' { n = $1 * 10; print n } '` if [ $VER -gt 31 ] then echo " This package is compatible only with systems running 3.0 UNIX. It CANNOT be used with later versions. Installation ABORTED. Press RETURN to continue." read X exit 1 fi echo Installing "$PRETTYNAME" echo "Adding $DRIVERNAME driver /etc/master entry" # someone ELSE's driver, also # by chance called $DRIVERNAME cd $CURDIR masterupd -d $DRIVERNAME >/dev/null 2>&1 RET=`masterupd -a -p $MASTERPREFIX $MASTERCALLS $DRIVERNAME 2>&1` retcode="$?" if [ "$retcode" = "255" ] then message "The maximum number of loadable character drivers has already been added. You must uninstall a loadable driver in order to install this package. Aborting $Name Installation." message "Please select 'Remove Installed Software' and remove this package. IGNORE the message that installation is complete. The installation of this package has been ABORTED!!" exit 1 elif [ "$retcode" != "0" ] then message "There is a problem adding the $DRIVER driver master entry --" $RET. "Aborting $Name Installation." message "Please select 'Remove Installed Software' and remove this package. IGNORE the message that installation is complete. The installation of this package has been ABORTED!!" exit 1 fi echo "Updating Loadable Drivers tables" if [ -f $DRVLIST ] then cp $DRVLIST $UA/tmp$$ uaupd -r "$PRETTYNAME" tmp$$ mv $UA/tmp$$ $DRVLIST fi cat >>$DRVLIST </tmp/ld$$ mv /tmp/ld$$ /etc/lddrv/drivers echo "$DRIVERNAME" >>/etc/lddrv/drivers cat >>$Remove </tmp/drv$$ mv /tmp/drv$$ /etc/lddrv/drivers END if [ "$DEVNAME" ] then MAJDEV=`masterupd -c $DRIVERNAME` echo "Adding devices" rm -f ${DEVNAME}* mknod $DEVNAME c $MAJDEV 0 if [ "$?" != "0" ] then message "Can't create $DRIVERNAME device ($DEVNAME).\n\nAborting $Name Installation." message "Please select 'Remove Installed Software' and remove this package. IGNORE the message that installation is complete. The installation of this package has been ABORTED!!" exit 1 fi chmod 666 $DEVNAME chown root $DEVNAME chgrp sys $DEVNAME fi cat >>$Remove <>/usr/adm/drv.log END echo "Installing $DRIVERNAME object module" #rm -f /etc/lddrv/${DRIVERNAME}.o if [ -f /etc/lddrv/${DRIVERNAME}.o ] then mv /etc/lddrv/${DRIVERNAME}.o /tmp fi mv ${DRIVERNAME}.o /etc/lddrv # turn off gettys while loading driver INITTAB=/etc/inittab TMPINIT=/tmp/init$$ #cp $INITTAB $TMPINIT #GETTYON=`grep getty $INITTAB | grep -v window | cut -f1 -d:` #for i in $GETTYON #do # ed - $INITTAB < /dev/null #1,\$s/^ $i:/:$i:/ #w #q #! #done #init q # now start load sequence #cd /etc/lddrv; ./lddrv -dv $DRIVERNAME # load driver #echo "Loading $DRIVERNAME driver" #cd /etc/lddrv ; ./lddrv -av $DRIVERNAME >>/usr/adm/drv.log 2>&1 # savereturn code for later testing #LDRET=$? # put back inittab and restart gettys #cp $TMPINIT $INITTAB #init q #rm -f $TMPINIT # now test if load was successful #if [ "$LDRET" != "0" ] #then # message "Cannot load $DRIVERNAME driver.\ # (Check /usr/adm/drv.log file for status information.)" #fi cd $CURDIR echo "Installing stty" mv stty /bin echo "Installing async_main" mv async_main /usr/bin echo "Installing new profiles" for i in `grep ":/u/" /etc/passwd | cut -f1 -d:` do mv /u/$i/Filecabinet/Profiles/9600bps:A2 /u/$i/Filecabinet/Profiles/old9600bps:A2 2> /dev/null cp 9600bps:A2 /u/$i/Filecabinet/Profiles chown $i /u/$i/Filecabinet/Profiles/9600bps:A2 chgrp users /u/$i/Filecabinet/Profiles/9600bps:A2 chmod 644 /u/$i/Filecabinet/Profiles/9600bps:A2 done # don't forget the one down in /usr/lib/ua mv /usr/lib/ua/9600bps:A2 /usr/lib/ua/old9600bps:A2 2> /dev/null mv 9600bps:A2 /usr/lib/ua GETTYDEFS=/etc/gettydefs echo # can only enable HFC on tty000, so don't even ask about others #echo "Please indicate if you need hfc on any of the following tty ports." echo "Please indicate if you want hfc enabled on tty000." echo "y = hfc desired, n or hfc not desired." #for i in `ls /dev | grep "tty..."` #do #echo "$i: \c" read ANS if [ "$ANS" = "y" ] then # HFCTTY="$HFCTTY$i " HFCTTY="tty000" fi #done if [ -n "$HFCTTY" ] then # for i in $HFCTTY # do # Baud=`grep $i $INITTAB |cut -f1 -d'#' | awk ' { f = NF; print $f } '` Baud=`grep "tty000" $INITTAB |cut -f1 -d'#' | awk ' { f = NF; print $f } '` if [ -z "$Baud" ] then # echo "Warning: HFC cannot be added for $i" echo "Warning: HFC cannot be enabled on tty000" else # BAUD="$BAUD$Baud\n" BAUD="$Baud" fi # done if [ -n "$BAUD" ] then echo "Updating gettydefs" UBAUD=`echo "$BAUD" | uniq` ed - $GETTYDEFS < /dev/null \$a HFC . 1,\$s/ HFC//g \$d w q ! for i in $UBAUD do ed - $GETTYDEFS < /dev/null /^$i\#/ s/\# /\# HFC /g w q ! done fi fi cat >>$Remove < /dev/null 1,\\\$s/HFC //g w q ! echo "stty and async_main not restored because old versions not saved" # shut the system down to unload and avoid disaster echo " ***** The system will now be shut down ***** Press RETURN to continue \c" read X sync;sync;sync /etc/shutdown END echo echo "Installation of HFC complete" echo echo " 1. The old profile 9600bps:A2 has been moved to old9600bps:A2" echo " 2. This driver provides hardware flow control on /dev/tty000." echo " There are also some bug fixes to the tty driver for all " echo " RS232 ports." echo " 3. Address questions or problems to Jonathan Clark X2586 " echo " mtunf!jhc or Barbara Cours X2577 mtune!cours" echo echo " ***** The system will now be shut down *****" echo " Press Enter to continue" read X sync;sync;sync /etc/shutdown 0707070000020104741006440001450001440000010611500374026320700000500000000074NameHFC - MT-V2.4 from the Dist Prog Tools Group via THE STORE! 0707070000020104731007770001450001440000010611510373775626600000700000000001Remove 0707070000020104751006660001450001440000010764130373775627200000600000014102hfc.oRԌM.text  .data  0 @.bss B BNVH # FN$# B 9"瀐"|A"y Bd$ y B f`pѹ B` y B g` y B z y B!| y F# N y F!| v # J SJg, y J f y J 6` U J`.NL N^NuNVHN$ y B y B!| y F!y N y J 6f y J .NLN^NuNVH0. ym N`0. H"|$q*Eg`0*>Hr€f,.N5|:%|.n Fp./.NXN*:f p./</.NPg ?`j>.f(*?f?p.A /NX`.*BHH"| qNNLN^NuNVH$. H"|$q././. / N Jg(p./N(X*:gp.// NPLN^NuNVH<4. 0H"|$q0H"|&q(kJyfNRyp&*:f"*6f *6g 9` F9p0*:&N*Jng6 Bn 8`&8 N0Hgp@` <8N8x@gD fD8g D `D @H8xgx8p0Ѐ"| :01H @H88 ( @H8N8JBf @r2ҁ |20H ` @r2ҁ y20H (p@H8.N `*?gp./<0H/NP` | `z |0 JBf, |KAH'H kBPN0H.N`&N./ / yNP0H. yN` gJgX`8N8*?g,Jg./+0H/NP`0H.N.NLp.p//NP`t0*"j$Bj"j>p"F9p"F9*?g4Jg.N-@ k "kRH0S.N```0*>H@ g`*>gJjfj>A8.NIJg Jlf&.*BHH"| qNf`@?p0,.//NP`">p"㨁9` j>?*?g j>`2*:gp.p//NP`. 8/NX`*?f`j>*?g >`2*:gp.p//NP`. 6/NX`\p.p//NP?p./ /<NP`, b"@0; NJ hj\LN^NuNVH 4. 0H&0@40H"|$q0*>Hr€f`gF9gp.0H// NP`$*:fp.0H// NP`:g2*:g(9gp./ NX`p./ NXL N^NuNVH $n0*,j*=@5j,*Jnf`p0*6&*>g=n&j&0.ye @g0.SnJ@gp$p fg t `$p fg`Jgt  gpAmpZn ./NXJg`RR`r&j&`pN @-Hg`. rF/NXrF/NX"yA/NXp0.ѹ nA%H&5y*5y, Rc4*?fp./ j.NX Rcp./ NX`\p*=&Jg0.SnJ@gp$gvp*Gf0p.0*@H/NXfp./ NX`p*Hf0p.0*@H/NXfp./ NX`rgp fgCR*C`p*Lgp*MfR*C*>fp\f>p*IfPgHgp.p/p// N Cp.p/p // N t`Zp*Jf:g2g p.p/ r2// N Ct `p*Kf pƀR*C`p\f gj>g.p.p/ r2// N p./ j.NX`f:j>0BA*KAe |C`J*Lg*>f .NJ*Cg*?gj>.NL N^Nu@(#) s4(jhc) hfc.c 1.10 5/17/86 %V%@ "(6@LRdnt&,28@FNT^dl !"%X&p|'!()!+,,6-<,h.v./00&d012%33"/.48/D5T6x078+%,9::Pr;79X%dl<%<%=>`!?))@ \A B C D E &F 2G :E FH TC fA nA I J I ,J BI K K .K K L ;.fileghfc.c.text .data 0.bss Bi8274_c hfc_xon 6hfc_xoff 8dev_p Blsw_p Fstintptr Jlsw_optr Nhfc_initlineswspl5cdevswcdevcntserioctluhfc_openzhfc_iocthfc_in tx8274sertinthfc_tint6splxhfc_releseropenser_cntsterenxipser_ttyttinithfc_prochfc_parasermodemsleepspl0ttiocomserwakeucsizeval :ser_addrser_scanserscanserixonspl6sdelayserspdtbpexpsertser_portclkselpprog853pexpclkssersendserxintserinxofsertxblkwakeupserxsendttrstrttimeoutsercdserctscfreelisputcsysinfogetcfcfreeldiv__lmul__putcbttyflushsignalttxputtttimeo0707070000020104761007770001450001440000010764220373775626600001100000000045MAKEflopcat Files | cpio -ocBv > /dev/rfp021 0707070000020104771007770001450001440000010764230373775626500001100000000040MAKEcpiocat Files | cpio -ocBv > HFC+IN 07070700000201050010066600014500014400000107642403737756265000013000000015149600bps:A2WD=0707070000020105011007550001450001440000010764250373775627300000500000030310sttyR(# "0 .text" .data  @.bss  0.lib  /< N1X OQ./HJf/H#0NX. JN1LN^NuNVH$nHH$p^f.HH$p?ft`p-f $<`pĀ `LN^NuNVHR . /< LN1X . f./< ON1X`. ZN1. g. ^N1. . f./< `N1X`8 . d. fN1.` .p. //< hN1PLN^NuNVHJg./. /< mN1PLN^NuNVH . "| ././< sN1PLN^NuNVHp9 .p9 /p9 /p9 /p9 /p9 /p9 /p9 /p09 /p09 /p09 /p09 //< N10LN^NuNVHHnHnHnHnHnHnHnHnHnHnHnHn/< /.N18-@ gp`\3 3 3 3 B l& .XC1"| R`p`LN^Nu D F I L P T Z ^ b f j o t y ~   00 00 00  0  0  0     00  0 0 0 @ @         #00 ' 0 , 0 3 0 8 < A E J Q Y ` h o w ~   @ @                  & %& ,& 1 6 < C K Q X ^ e k r w }  @ @    +            $ + 1 8 > E( I L R Y _ f m u@ z @ @ @             @ @@        " & , 1 82Kn,X `%05075110134134.515020030060012001800240048009600extaextb-parity-evenp-oddpparityevenpoddpparenb-parenbparodd-paroddcs8cs7cs6cs5cstopb-cstopbhupclhup-hupcl-hupclocal-clocalcread-creadraw-rawcookedsanehfc-hfchdx-hdxignbrk-ignbrkbrkint-brkintignpar-ignparparmrk-parmrkinpck-inpckistrip-istripinlcr-inlcrigncr-igncricrnl-icrnl-nlnliuclc-iuclclcase-lcaseLCASE-LCASEixon-ixonixany-ixanyixoff-ixoffraw-rawcookedsaneisig-isigicanon-icanonxcase-xcaselcase-lcaseLCASE-LCASEecho-echoechoe-echoeechok-echoklfkc-lfkcechonl-echonlnoflsh-noflshraw-rawcookedsanestflush-stflushstwrap-stwrapstappl-stapplopost-opostolcuc-olcuclcase-lcaseLCASE-LCASEonlcr-onlcr-nlnlocrnl-ocrnlonocr-onocronlret-onlretfill-fillnul-filldel-fillofill-ofillofdel-ofdelcr0cr1cr2cr3tab0tabstab1tab2tab3-tabsnl0nl1ff0ff1vt0vt1bs0bs1raw-rawcookedtty33tn300ti700vt05tektty37sanestty: usage: stty [-ag] [modes] %seraseintrquiteofmineoltimekilleklineraw-rawcookedsanectabsaneunknown mode: %s iuclc -iuclc olcuc -olcuc tab3 xcase -xcase stflush -stflush stwrap -stwrap stappl -stappl speed oddp evenp -parity cs%c cstopb hupcl cread clocal line = %d; intr; quit; erase; kill; eof; eol; ignbrk brkint -inpck ignpar parmrk -istrip inlcr igncr icrnl iuclc -ixon -ixany ixoff -opost olcuc onlcr ocrnl onocr onlret del-fill nul-fill crnltabbsvtff -isig -icanon xcase -echo -echoe -echok echonl noflsh speed line = %d; intr; quit; erase; kill; eof; eol ctab -parenb -parodd cs%c -cstopb -hupcl -cread -clocal -hfc -hdx -ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr -icrnl -iuclc -ixon -ixany -ixoff -isig -icanon -xcase -echo -echoe -echok -echonl -noflsh -stflush -stwrap -stappl -opost -olcuc -onlcr -ocrnl -onocr -onlret -ofill -ofdel crnltabbsvtff %s %s = -DEL%s^%c%s%s%d %s%d baud; %x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x %x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x0707070000020105021007550001450001440000010764430373775627100001300000234254async_mainRAb MC> .text .data M@.bss M MC>.lib  /< N1X OQ./HJf/H#0N09 Ry "| {B By 3 B ` g fJy gJ. {BN`>Jy g . {BN09 Ry "| {B09 Ry "| {vHH"y } qN` y | fdJy 6gZ y }R }Sy 6fj } y }B. }09 }HR"| A/N1X# $ }N`(Jy gJy }f~ y }NR }NSy f y }NB }R }S }I }T }K }U. $/< }VN1X09 }JHX./< }R/9 fN1P` y |(gbJy gN&~ | {B B 4 p./< 0 | {B /N1PZy N&,. {BN.`(Jy gN&~09 Ry "| {B 09 Ry "| {vN&,`Jy gJ*f. {BN. fN1J*fp.p/N(&X0H./< {/9 N1,P8nr {p./< {/9 fN1Pp.N1xL0.H./9 fN1X`&|Ap.Hn/9 fN1Pp.N1x. `/9 fN1r`d. fN1=@ @gRn|np.Hn/9 fN1PJy jg nl0.H./9 fN1X`|Ap.Hn/9 fN1Pp.N1xN^NuNV.Hp/N1nX."p/N1nXJ9 jg. znN1J9 mJfJ9 sgN` .g .f(p.Hn/9 fN1,Prg . gNKp. gH gt Ag. g fzp..N`Jp..N`<. `.p.Hn/9 fN1,PJy *f | ` | .NKp.Hn/9 fN1,Prg"`p../< /9 fN1P. fN1. `NV. 5NKN^NuNVBnp.Hn/9 fN1,Prg . VNKp.Hn/9 fN1,Prg . wNKBn.H=@`6p.0.RnCA//9 fN1,Prg . NK0.SnJ@f.HHCB1p.Ѐ"| 3Hnp.rR/N1X"| $A/N1PN^NuNVBnp.Hn/9 fN1,Prg . NK.H=@Bn`6p.0.RnCA//9 fN1,Prg . NK0.SnJ@f.HHCB1J9 jfpN^NuRnCqNJg09 R"| mJA P . d .\fLRy 09 RA P .cf| `P .nf| `@.  NK`2 .^f*Ry 09 R"| mJA @..fRy 0..HAmN Jf` NVH09 R"| mJA P .\fN09 R$09 HRq .qg .Qg .eg .Ef.N`J.f. znN1Jy fJy fJ9 sgR09 R"| sJ1gNRy By 09 R"| mJJ1f>09 R"| sJ1f(.p/N1nXB9 jNpLN^Nup`NV||p.Hn/9 fN1PN^NuNVHt` .\fb09 R( R"| sq.HHJg ng rf| `L| `D. J`. {NK`. .^f&09 R"| sA"RA@p.Hn/9 N1Prf . NK09 R& R"| sqf LN^NuNVN^NuNV . fFJ #Tg. }/< #TN0LXN[p.N1. fN\np.N16` . fp./<T/9 N1` . f NMN^Nu . d . f8 y |(g*p./< /9 N1PJl. NK` . fn y |Jfb y |(f p./9 ` p./9 /9 N1P`h y |Jfp. .N`Np. .N`>p.Hn /9 N1PJl". NK`NVp. U bB@0; NJ(8FTb (4> y |N^Nu y |(` y |` y |(`p./9 /9 N1PJl. `\ y |Jf.p./9 /9 N1PJl. 9NK`xp./9 /9 N1PJlZ. ZNK`Jp.Hn/9 fN1,Pp.Hn/9 fN1,P.HH 0 .HHr .N10 .HH 0 .HHr .N10 p./< /9 N1PJl. {`@N`N`N`z }`nB9 }`d y |(`T y |`DN` .Ѐ"| Bq. pR/ .N1X"| $A/N1XR oN^NuNVxp-@Hn|NX-@N^ y |Jfp g.. N1 ./9 /9 N1PJl:. `,. N1 ./9 /9 N1PJl . NKN^Nu g4. N1 ./9 /9 N1PJl. NK`. N1 ./9 /9 N1PJl. `NVHt .  bh@0; NJ$.8@JR$| 5`~$| 9`t$| =`j$| A``$| E`$| Gt`L$| I`$| K` y |(fp. r"| b$q`p. r"| b$qJBgX y |(g O `[  $| `*p. J//9 N1Prf . MNKJfLN^NuNVHp. r"| b$q . e . bB@. @=@HЀ"| JqgfJ9 }g\0.R"| $A.N1 Jg>0.R"| $E`*p. J//9 N1Prf . nNKJfLN^NuNVJ #Tg. }/< #TN0LXN[p.N1. fN\nNZp.N16N^NuNVH . $y 09 Ry "| {B*HH b@@0; NJR`* f(|%|  {B3 L N^NuHH"|  qN` [f|%|  B*` #f|` (f|` )f |` 0m 9nHH.N+`~ =g >fHH.N'T`` g<HH.N&`F ?g> ;fB*p@HHCB1` 0m 9nB*0@|` gJ*fB*R*HH.N&` g 0mD 9n>*HHCA&H K"K*HHCA0` ;f(R** fN9*HHCB1`TR*HH.N&`>N'~`4 8f N-`$ f N'~`N9` Af 3 `< BfBy `. 0f 3 ` 1f 3 ` 2f3 Jy fN>N:` Af 3 `< BfBy `. 0f 3 ` 1f 3 ` 2f3  y fN?>`NVJy g009 ʰy n"Ry 09 ʰy o 3  N^NuRy  y o3 `NVJy gSy 09 ʰy l 3  Sy  y l3 N^NuNVRy  yP oN;^p# N^NuNVBy B Sy  y l3 N^NuNVJy g,09 ʰy fN<3 By B N^Nu09 Ry "| {B Jy g y g09 Ry "| {B N`NVH. $y B*jB* @e ~cNLN^Nu0r@"j qN`NV .> fp.p`p.p/NXNN^NuNVH$y |%|  {B3 LN^NuNVH 4. $y A0 H6g *H@m pL N^Nu0H`NVH$y *H4gJ*f pLN^Nu0H`NV 0.H./< /9 fN1PN^NuNVH $y p.NN4p.ND6 CfvCl3 3  Bf CfBy `\3 0H 0 0Hr .N10 0H 0 0Hr .N10 NNL N^NuNVH$y `S**HHC1H0H gD gH gH gL gP fLJfBp.p/NX`2p.`*`Jf`N<`J*fbNRLN^NuNVH$y `S**HHC1H0H g> gD gD gD gH fF*p.p/NX`0*p.p`*`*`*N`*J*fjNLN^NuNVH$y  *fJ*fp.p/NpXN^LN^NuNVp.p/NPXN>N^NuNVH$y  *f Jfp.p` *g *f" fp.p /NXNLN^Nu *fzHnHn/9 fN1B RR*g4 .29 Hm$ .29 Hn .29 HR-@  p.p`jN6`jNVH. $y  7f 09 H.09 H//< NP3  ~3  ~3  ~3  ~# $ (3  ,*gp`p        '  ~  ~  - p .p/NXN rLN^Nu 8fJ9 gJ9  g`"*`p.09 H//< NP3 ~ 3 ~ . /9 fN1X# ( $B` . b@0; NJ >Pb9 +g`. `9 +gL. /9 fN1X`69 +g,. `9 +g. `9 +g. `R mb3 ~ 3 ~ Jy ,fN`NJ`NVH. /9 fN1Xt`.  /9 fN1XRB Bm. fN1N LN^NuNVH$y  *f@Jf3 N"p.09 H//<  NP.  /9 fN1XN^NuN`NVH$y p.Nn3  @PlBy B ` yP oNp.N>-@ro-A` lp-@Jy g*g09 nS@3 ʰy o 3  `09 ʰy l 3  09 H.09 H//<  NP.  /9 fN1XNLN^Nu3 N `NVNN^NuNV3 B By Jy g09 ʰy nNx-@09 ʰy l>H-@`Z09 H././<  NP.  /9 fN1X. /9 fN1X. /9 fN1XR .29 Hl .SJf0.S@3 09 H.09 H//<  N^P.  /9 fN1X`NN^Nu. /9 fN1X. /9 fN1X. /9 fN1X09 H.09 H//<  NP.  /9 fN1X .SJfN<`xNVNXN^NuNVNLN^NuNVH$y B` g$ g0 fF. `. /9 fN1X3 NN^Nu. `. `. `. `NVH . $y 09 Ry "| {B*HH b@@0; NJRl F f(|%| 8 {B3 L N^NuHH"|  qN` [f|%| 4B*` #f|` (f|` )f |` 0m 9nHH.N+`~ ?f NC`n *HHCA&H K"K*HHCA0`v ;f(R** fN9*HHCB1`HR*HH.N&`2N'~`( 8f N-` 2f NE` f N'~`N9` Af 3 `< BfBy `. 0f 3 ` 1f 3 ` }f3 Jy fN>N:` Af 3 `< BfBy `. 0f 3 ` 1f 3 ` }f3  y fN?>`NVH$y *H3 HЀ"Ё"| ~A# }# }3 6*H3 }H*HH$` AB0(Rpm*H3 }J3 * H3 }N:LN^NuNVN:BN^NuNVFHBnN`AN APN RnN nPNm=|N`0.NHS b^@0; NJ (08@H=|L`6=| L`.=|L`&=|L`=|(L`=|4L`=|=L`=|FLBnJ`h0.NR"| AJ0.LH2.JHЁC0.NR(0.JHP"| 10.LH2.JHЁCPRnJ nJmRnN nNoB.B.HnPHnp//9 fN1|| p.Hn/9 fN1Prg . 8NKN:LN^NuNVp./p///9 fN1|| p.Hn/9 fN1Prg . SNKN:N^NuNVH$y 09 ʰy mjy n`*gX3  3 09 H.09 H//<  N;P.  /9 fN1XN:LN^Nu3 `NV09 HUP@3 J@lBy N'-@Jnp-@09 ".牐AR@3 J@n3 09 H.09 H//<  N;P.  /9 fN1XB By N:N^NuNVH$y 3 B By N'=@J@n=|N:`JN<`BRy  y o3 09 Ry "| {B 09 Ry  0.SnJ@gJy g09 ʰy f`LN^NuNVH$y 3 B By N'=@J@n=|N:`Jy gN09 ʰy f@N<09 H.09 H//<  N;P.  /9 fN1X`xSy  y l0. /9 fN1X. n/9 fN1X3 09 H.09 H//<  N;P.  /9 fN1X0.SnJ@f(LN^NuNVH$y N'=@J@n=|t`Jy g^*gV09 Ry "| {B 09 Ry  3 By B Ry  y o3 09 Ry "| {B N&, y1 f . {BNhR0.HmXJy g . {BNhN:LN^NuNVN'3  @lH3 09 H.09 H//<  N;P.  /9 fN1XN:N^Nu yP o3P `NVH$y N'=@ @l=|` no=|Jy g*gx09 nS@3 ʰy o 3  09 H.09 H//<  N;P.  /9 fN1XBy B N:LN^Nu3 `NVJ l*. |N/< N/.X-@fp.p/N(&XN:N^NuNVJ o$p.p/N(&X. |N/< N0LXN:N^NuNVH$y t`,A 0 (f RC 1f*`T*HHmN:LN^NuNVN:BN^NuNVN[J o . N1B.p//p/N14 . fN\np.N16N^NuNVN[.N16N^NuNVp.NN^NuNVJ fo0p./9 fN1Xp.N1-@ ffp# fN^NuNVJ fo0p./9 fN1Xp.N1-@ ffp# fN^NuNVJ fl.J #dn&J #hnN1# ffN Lp.N16N^NuNVHJ l6 f,N. }/< #TN0LXJ lN^NN^NuJ o. 'p//p/N14 `NV  #pl:./< /< (>N1P# #p`p.R//9 #pN1P nJfN^NuNVJl&./< (GHnN1PHnNXpN^Nu g g g fp`./< (gHnN1PHnN2Xp./9 fN1X. fN1`NVH n /f./.N1`ZJ9 f0$| p'./9 f/ N1PJf "/g` "/fRB. /.N1X. /.N1XLN^NuNVHv3 0. H b @0; NJx(| # &| `(| #&&| $y #Hx`p./ N1(X.HnNX./HnN1P$lp n f@pLN^Nu(| "&| $y #H(< `~(| "&| 6$y #@x`f./ /< (/< (p/N14C`> `.N-@rg f3 p./ N1(Xp``./ N1(X-@pƀ f`NVp.p(/p /p/p/N1# . /.HnN1PHn/9 N1PN^NuNVp -@J g . (p//p/N14 -@J l fp.N-@oNN# #P. ZHnN1X. ZN1 =@. /< (/< ZN1P np./< ^N1X# #`Jl&. ^/< )p//p/N14N^NuJ #PoN. ^/< )HnN1PHn/9 fN1rPN1# #hJf.[p/N1nXp.Hn/9 #`N1,P-@g(p.Hn/9 N1PJl. )NK`|p.Hn/9 N1PJl . )NKp./<T/9 N1P. #`N1BJ #Po | Z` | *./9 fN1rXN1-@p./.N1XN1x`. #`N1B.[p/N1nX`NVn3 n f^0. H.N,-@zmFJzo .zN1Bp -@rJzo . *p//p/N14 -@r rgN^Nup.Ns-@z gNtN1# #dJf n fZ. *=HnN1X y !` (Jg g g"`. *@`. *BHnN1X`. *D` rfd. Hn~N1X. *GHnN1X y !` (Jg g f". *P`. *J`. *MHnN1X y ! (S b2@0; NJ t~. *T`. *XHn~N1XHn~/< ^NPN1p./9 f/< ^Hn/< *u/< *eN1Tp.N16`j. *\`. *_`. *b`.[p/N1nX`6NVJ #do..p/N1nXp./9 #dN1XB #dN^NuJ #ho.p/N1nXp./9 #hN1XB #h`NV| |p.Hn/9 N1PJl . *NKp./<T/9 N1P. #`N1BJ #Po | Z./9 fN1rXN1xN^Nu | *`NV.p/N1nXB #l. 4N1B #dB #hN^NuNVJ9 fVJ fop ./9 fN1XJ fop ./9 fN1X. N1B. #pN1Bp.NJN^NuNV`R nJf nA-H./< */< N1P. N1bN^NuNV y *o<`R nJf nA-H./< */< N1P. N1bN^NuNV fp./9 fN1X# . fN1 r l3 * f . *NKHn/<T/9 N1 rf . *NK09 j@ =@=y j09 j@=@=y j|B.p0.rr c|3( }`"p0.rrc 3 }`3 }Hn/<T/9 N1 rf . +NKN^NuNVH N |.p//9 fN1P# irfJ9 f2. +4NKp.Hn/9 iN1,P=@J@l. +F`.L N^Nu nWCfB` nWDfp-@` . +\NKJfp.//9 iN1P.Hn/9 iN1,P=@A-HJ@l. +l` n mx nT PWCg. +NK` nf. +` nT=P nT=P nT=P-| fBn`" @l nT"nT0`TRn0.nmJy ff y |B#"X }#  }`4 y ff* y | y |#? }#  }-n-| fBn`" @l nR"nR`RRn0.nm3WD ip9 fЀ"| 0N3 jBy j09 fHЀ"| 14109 fHЀ"| 001@0B3 jBy jB9 jBn` | j BRn nmBn`0.HЀ"| jBqRn nmB9 jy j3 f jBy jJ9 fg f j | f./(/(/(/( /(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(/(|/(x/(t/(p/(l/(h/(d/(`/(\/(X/(T/(P/(L/(H/(D/(@/(p.//9 iN1P.L/< i/9 iN1,P=@J@l. +` nLl . +NKJy jf y |B#"X }#  }`X y jf, y | y |#? }#  }`" y jf y |` . +NKN`fNVBB | j*.HnN1XHnN1 X-@RѮJgN^NuNVJ il2./</9 fN1P# irf . ,NKp.//9 iN1P3WD i.L/< i/9 iN1P-@ Lg . ,(NKN^NuNV. fN1 "y fA-Hp. ,B/.N1X-@3 jBy jJf 3- jBy j3 jB9 jN^Nu3) j`NVNnJN^NuNV. -/< -/< -p/N14 pN^NuNVpN^NuNV`*. n /(0H//.N1  n JPfN^NuNVhHN". -Np<./9 N$X$l. -N|pLN^Nupf. -N`p@q2-Al|p`x`0RCCs Cm.qF@rv0@`As00.RC Cm .l./.l/< -NP.Hnp/9 N1Pp ./9 N^X$l. .`pg pf. .N`./< .`. .:NR.qRl.Hns/9 N1,P6n p./9 N8Xp<./9 NX$pg. .>N0p`. .`N p`p./9 NX$o./< .)NX`. .,NRD D l0H./< ./NX`p`PNVdH|N8. .bNx`|p./9 NXp ./9 N$X$pg^Jl0H./< .xNlX`../< .`p./9 NX$m./< .N>X`. .N00RD @ m| D m. .NpL|N^Nu. .Nz0-@h8./.h/< .NPp./9 NdX$l. .`*0gB hm0Sg. .N`p.p//9 N1PSShp./9 NX$l. / `F2g ./< /'N0X`v0`&p./9 NX$mAl"0 RC Cmp./9 NX$mp0f. /IN.Hnl/9 N1Pp./9 NXRRhx`HpgJl0H./< /NxX`p./9 NXJlp./9 N4X D lJJDg0H./< /\N4XRD .h./.h/< /gNPp ./9 NX$pfj D mp`. /M`V./< /`Dpfp./9 NX. /Np`p./9 N@X$m./< /NX`. /N`8NV.mp/N1nXN^NuNV . R.N1p.Hn/.N1,P-@p.N1 gpN^Nup.`NVp.Hn/.N1PN^NuNVJ g./. /./9 N1 N^NuNVNNN1$p.p/N1 Xp./< # .N|B @*H 9 "ЀЁ"y #f pL$N^Nup`p`NVH $nN^# JR m8&y B 9 l./N1XJf K L N^Nu` R `NVH $nN# JR m:&y B 9 l ./+N1XJf K L N^Nu` R `NVH $nN# JR mD.N1 &y t l*.N1 "J./N1XJf K L N^Nu` R`NVH $nN# JR m0&y t l ./+N1XJf K L N^Nu` R`NVH $n.`RHH&g\pampzop0mp9o pAm pZnp`pf&&| JJg HHfxJf Jgp*fxJfHHL N^NuNVH$n.N1 R$ 9 Jΰl.N1B @# .f&. Jp//p/N14 p.N16J Jf # J` y J # J y JB# Jpѹ ./9 N1X$y չ • J J LN^NuNVB nA-H nA-HB-nRp-@F.N1 "nAA-H` /fR`S nRf nR /f.HnVN1X`. N1 "n A-HN`pN nN /fRN-nRJ nJ /f nNJg(BF`" nN"nJgBF nNJg nJJf$JFg< nJRJ /f.J/. /< J`,RJRN`. HnVN1X`.R/. /< JHnVN1 nB nBHnHnVN1tPJlRHnVN1 XCVAA-H`S n /f nRBHnHnVN1tPJlpN^NuJf>.f6HnVN1 XCVAA-H`S n /f nRB.HnV/.NP nJf nJf nJ(fp`p`./.N1XHnV/.N1Pp`ZNVH pd-@Hn nA/N1tPJl pL N^Nu. J nA/N1RX @-H.fp`BB .Ѐ"Ё.N1B @-H"n"Q#HrJfp` nJ(gA./N1XJf. nA/N1XHn nA/N1P.HnN1X .*fHnHn` nJ(gA.HnN1XJfjHn nA//< KHnN1HnHnN1tPJlp`.g. KHnN1X`R nJ(fp0.rI€g. K`. K"HnN1X n|/Hn nA/N1PR .찮f2d .Ѐ"Ё./.N1NX @-H"n"Q#Hr .SЀ"Ё"nEHn/< K0HnfN1 HnHnfN1PHnfNlX @$%nB*`".N1F .Ѐ"Ё"nEBBB*B nA.N1 "nCAA-H n /fR g n"nCgS` f nA./< K9HnN1P` nA.HnN1XHnNX @"n"Q" n P!nr n P!nv n PB( n PB( ..p //./.N1 p`.p/p/HnN1d rfJng ..gHnHnN1PHnNzX @&H g HnN1 X$.N1 C“-I IB nJ(g~A.HnN1XJgf`\NVH Hn/. N1tPJl pL N^Nu. KC/. N1RX @-H.fp` nB` nJ(g`x nJg.HnN1XJf\ g. nA/N1X` nB(Hn nA/N1P nR (ro.N1Fp`H.p/p/HnN1d rfJng ..gHnHnN1PHnNzX @&H g(HnN1 X&.N1 CÓ-I IB nJ(gA./N1XJg``NV n . n/N1XN^NuNVHB. n-P`"N1` ."n^g pLN^Nup ./.N1.X-@ fN1-@l` f nJnf"A./.NX-@ f` n$hr`./.NX Jg*g. KE RA/N1XJfB n ng$.n/< KQp//p/N14`p./HnN1Pp-@` CB1S .C 1 gHn/.N"P-@ gJg .`NVB n-P. A//.N8P-@Jf<.N np./.N1.X.Nfp./.N1.X`P f. K` f". Kp//p/N14 -@` f. K` nB( gB .N^NuNVH $n p./HnN1Pp-@` CB1S .C 1 gHn nA/N1P nB(. K RA/N1XJgl. K RA/N1XJgP RA.N{X @&H f" R|* RA.N{X @&H R|  g. nA/N1XL N^NuNV n PJrg n P.rN1H n PBr-y J` n-P.N1H-nJf# J# JB JN^NuNVH $n&n `R  g  g  gt Am zn RCpmJgpm pL N^NuAB0(`Hn/N1PJgPJf +`NVH$n`R  g  g  gt Am zn R"| dppm | dpB0( LN^NuNVH$n`R  g  g  g Am znR`R  g  g  gt =f,R  g  g  gJg R"| dpom | dB0( LN^NuNVH `|N`tt`LpgL l R"| dA" y Sm y "hRp` . N1&p f | dB0(Jn L N^Nu y Sm y "hRp` . N1&p gp gp gp#fJ`>NVH y Sm y "hRp` . N1$p g2 y Sm y "hRp` . N1$pfLN^NuNVH$nJfp./ N1(X-@Jm>B..p/N1nX @-Hf$.pp/N1nX|`LN^Nu.p/N1nX%j`N1` . g`tJml g` gT f`H flJ g. n N-@fp -@` g g fVp./ N1(XJ.g.p/N1nX .`$ fJg./.N1X`Njp./ N1(X-@ f N1-@l`NVH$nJfB*B* B* p./ N1.X-@JmFB..p/N1nX @-Hf,.pp/N1nX|`$N1`LN^Nu.p/N1n`p ./ N1.X-@ fN1-@m .^g`Jm g g g g gv gj g^ gRBJ g. n N-@ g0 g> fHJgB./.N1X`p./ N1.XJ.g.p/N1nX .`JfN|`NV./. /.N}P-@Jf n g.N|-@Jfp n P(p. n/N1.X-@JmH n PB(B..p/N1nX @-Hf.pp/N1nX|`N^Nu.p/N1n`.NJ-@ g g gJlF n P(p. n/N1.X.NJ.g.p/N1nXp`x f./.N1X`p gN`^ n PJnn . Lp//p/N14 `2 n P(p. n/N1.X.N nA./.N1X. L/.N1X nA./.N1X nA./.N1X nA./.N1XJ.g.p/N1nX n fp`^p`XNV.p/.N1nXN^NuNVp.090 H/N1XN^NuNVp./< LN`XJl. L3p//p/N14 fp./< LSN$XJl. Lip//p/N14 p./< LNXJl. Lp//p/N14 p./< LNXJl. Lp//p/N14 N^NuJfp./< LNXJl. Mp//p/N14 p./< M1NZXJl. MHp//p/N14 p./< MjN*XJl. Mp//p/N14 `bNV.HnN1X=nHn/<W/9 fN1 -@lpN^Nup`NVJ Mg. MN1FB MN^NuNVNJgpN^Nu.N&-@rg. /.N1XJf .`NVJ Mf NzJfp. MN1# M. Mp//</.N1d rf6p./< M/.N1 X"nAA/N1PJgpN^Nup`NVJ Mf$. M/< MN1RX @# MfpN^Nu. MN1. MN1# Mp`Attempt failed when terminal emulator tried to set the group file access privilege to the login user's.Attempt failed when terminal emulator tried to set the user file access privilege to that of the login user's.Async VT100 EmulatorAsync BCT513 EmulatorAsync native modestty -ixon -ixoff/usr/spool/uucp/LCK..No profile or line device provided. Both are needed for emulation.No profile or line device provided. Both are needed for emulation.Cannot use the line now because another user is logged onto the system on the same line.Cannot use the line now because it is being used by another program.FilecabinetFilecabinet/Profiles/bin/mkdirmkdir/HOMEw1w2//usr/spool/uucp/LTMP.%d/usr/spool/uucp/LTMP.%dsomething is wrong with the pipesomething is wrong with the pipeFile control failure.failed to fork the keyboard managerfailed to fork the communications manager    b [=w COMM died on FCNTLreceived unknown message from pipe_loop.Use Shift-Exit to exit Emulator and Shift-Cmd to access local commands.                                                        ! $ % & ' ) + - / 0 1 2 4 6 8 : ; = ? A C E G H I J K O S W [ _ c g k l m n o p q r s t u v w x y z { | }                                                                                                      ! % ) - 1 5 9 = > ? @ A B C D E F G H I J K L M N O P T X \ ` a b c g k o s t v z ~                                                           " & * . 2 6 : > B F J N R V Z ^ b f j n r v z ~                                             " & ) - 1 2 3D b 5 = D I P U \ a cf1f2f3f4f5f6f7f8f9f0f-f=!@#$%^&* 741-8520 ,963.OcOdOeOAOBOCODOj741-8520 ,963.br OwOtOqOmOxOuOrOp OlOyOvOsOnOPOQOROSOAOBOCODOwOtOqOmOxOuOrOp OlOyOvOsOnPaPbPcPdPePfPgPhPiPjPkPlOCODOEOFOGOHOIOJOAONOSOXNCNENIOBOOOTOYNDNFNJOKOPOUOZNBNGNKOLOQOVNMOMOROWNNNHNLOcOdOeOfOgOhOiOjOaOnOsOxNcNeNiObOoOtOyNdNfNjOkOpOuOz9NgOlOqOvNaOmOrOw0Nh[?1;0c[?13n[?2[?10n[?0 OMproblem reading data from the pipeLeaving terminal emulator, press any key to exit.Line terminated, press any key to exit.Line disconnected, press any key to exit.unknown %x unknown header in the pipeTimeout trying to login to Host.Can't read pipe function key no.Can't read pipe char count.Can't read pipe data during saving of syspf string.Can't read pipe char count.Can't read pipe data during auto-logon.Receive string in auto-logon contains unknown control sequenc.Unexpected end-of-string found in send sequence.Illegal escape sequence found in send sequence.problem writing data to the host0x0d,0x0aproblem writing data to the hostproblem writing data to the hostproblem writing data to the hostproblem writing data to the hostproblem writing data to the hostproblem writing data to the host problem writing data to the hostproblem writing data to the hostproblem writing data to the hostproblem writing data to the hostOPOQOROSABDCproblem writing data to the hostproblem writing data to the host99999999332N1 1f1?>>999999999999999999991299999993999999999999*99999999=P9999999999999999999999999999334849995299j96<6H99C999799999999999999*99529).R99)7*999(R999999999999 .EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE Printer/Spooler not online./tmp/PR%dFailed to open printer file.lp -awLine Printer spool failure.Failed to queue to spooler.   99999999332N1 1f1?>>99J9K:9999999999999991299999993999999999999*99999999=P999999999999999999999999999K33484FGI5299j96<6H99C997799999F@99999I48H*J03529).R99)7*9C 9(R999999999Kt99[1@ Error in writing via pipe.Error in writing via pipe. #t # # # # # $ $ $" $2 $A r r $S $Z $h $v $ $ $ $ $ $ $ | | $ % %%'  %3 T %B'  %Z'  %h T %w h !h %' 6 % ! ! % " " % " " % "T "T % & &? &m Record Screen to File Stop Recording to File Transmit File - ASCII Receive File - UMODEM Transmit File - UMODEM*Terminate File Transfer Start Printer Stop Printer Emulator ResetLocal Commandsavailable choicesBinaryASCII (8-bit)ASCII (7-bit)StandardModem ProfileRS232 ProfileWord ProcessorSpread SheetBusiness GraphicTransfer ModeSelect transfer mode from list.DescriptionSelect file description from list.Name of File:Transfer Mode:Name of File/Directory:Name of File:Transfer Mode:Description:Name of File:Record Screen to FileTransmit File - ASCIITransmit File - UMODEMReceive File - UMODEMFile %s not found in the Filecabinet.File %s not found in the specified directory.File %s cannot be created in the Filecabinet.File %s cannot be created in the specified directory.File transfer in progress. Execute command at later time.te.hlpLocal CommandCommunication processor is processing data. Some data might be lost if continued.Host printing is in progress. Initiate printer at a later time.*PRINTING**PRINTING* Communication processor is processing data. Some data might be lost if continued.Host printing is in progress. Terminate printing at a later time./tmp/logError returned from menu is %d Bad key returned from menu is %d User ErrorCommunication processor is processing data. Some data might be lost if continued.Recording on file : %s*PRINTING*Host printing is in progress. Initiate file capturing at a later time. *PRINTING*Host printing is in progress. Cancel file capturing at a later time.Can't open file %s.Transmitting ASCII file : %sFile transmit error, bad writeFile transmit error, bad writeFile Exists, do you want to overwrite?-sbtt7-rbmtmt7m:Am:A2:W:S:P/usr/bin/umodem/usr/bin/umodemFile transmit error, bad write/usr/bin/getoff.sh %s/usr/bin/geton.sh %scan't open host communicationscan't open host communicationscan't open host communicationsProfile not founderror reading profilecorrupt profileerror reading profilecorrupt profileprofile overflowerror reading profileprofile underflowUndefined terminal type in profile.Can't open auto-logon capture filecouldn't open profileError in writing profile.:A2 -. -= ,F ,F -J -Y -b -q -y - - -nJpLHq"qNTerminal SetupEdit Profileterminalset-upterminaluser pf set-upuser pftabs/ marginsruler quit quitPlease select a menu entry or SLKWaiting for receiver...TIMEOUT OK Sending block %d or %d bytes TIMEOUTBADUNEXPECTED REPLY: %c%c Retry %d, OK TIMEOUT on receiver termination Waiting for sender...TIMEOUT %dUNEXPECTED REPLY: %c%c TIMEOUT after 10 retries OK Receiving block %d or %d bytes TIMEOUT on block # MISMATCH on block # TIMEOUT on reverse block # MISMATCH on reverse block #: %x OK BAD CHECKSUM Retry %d, Receiving block %d or %d bytes TIMEOUT %dUNEXPECTED REPLY: %c%c < < < < / < < < < 0R  = = = =% =0 =; =F =R =[ 0 =m =r =y = = 1 = = = = = 2v = = 3 = = = = 3 > > > >0 >! >4 4T >F >L >R >] 5 >o >u >{ > 5 > > > > 6< > > > > 6 ? ?@ ? ? 7t 1L j 0p j 1 j 2 j 3 j 4 j0 7 j@ 5" j 5 j 6Z j 6 j / j ?1  ?I 1L ?V  ?n 1 ?{ ? 0p ?  ? 2 ? ? 3 ? ? 4 ? @ 7 @ @. 5" @6 @N 5 @V  @n 6Z @v  @ 6 @  @ / @ R @ @( @ A A A[%* H A` A A A%* A B > B BS%* BX B B B%* 4 B C C CK%* CP C * C C%* | C C D DC%* DH Dz r D D%* D D   D E; %* h E@ Er  Ex E %* E E  ^ E F6 %* F< Fn   Ft F %* F F  F G2 %* G8 Gj 9 9 G 8 8 No Yes Auto Logonavailable choices No Yes Check Parityavailable choices 110 bps 300 bps 1200 bps 2400 bps 4800 bps 9600 bps 19200 bps Baudrateavailable choices No Even Odd Parityavailable choices VT100 513BCT UNIXPC Terminal Typeavailable choicesscrollpage Off On Modem Control (CLOCAL)available choices 5 6 7 8 Bits per Characteravailable choices No Yes Local Echoavailable choices No Yes Flow Control To Hostavailable choices No Yes Flow Control From Hostavailable choices No Yes Hardware Flow Controlavailable choices 1 2 Stop Bit(s)available choices Baudrate : Send Parity : Check Parity : Terminal Type : Modem Control (CLOCAL): Character Size: Stop Bits: Character Echo : Flow Control to Host: Flow Control from Host: Hardware Flow Control: Auto Login : Timer:Enter receive timer in seconds.File Name:Enter the name of file to capture screen data.RS1:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS1:Enter send sequence. Use \r for CR and \n for LF.RS2:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS2:Enter send sequence. Use \r for CR and \n for LF.RS3:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS3:Enter send sequence. Use \r for CR and \n for LF.RS4:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS4:Enter send sequence. Use \r for CR and \n for LF.RS5:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS5:Enter send sequence. Use \r for CR and \n for LF.RS6:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS6:Enter send sequence. Use \r for CR and \n for LF.RS7:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS7:Enter send sequence. Use \r for CR and \n for LF.RS8:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS8:Enter send sequence. Use \r for CR and \n for LF.RS9:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS9:Enter send sequence. Use \r for CR and \n for LF.RS10:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS10:Enter send sequence. Use \r for CR and \n for LF.RS11:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS11:Enter send sequence. Use \r for CR and \n for LF.RS12:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS12:Enter send sequence. Use \r for CR and \n for LF.RS13:Enter receive sequence. Use \E, \e, \q, or \Q to Exit Emulator.SS13:Enter send sequence. Use \r for CR and \n for LF.Auto-Logon SequencesTerminal SetupUser PF keys not implemented yetTabs and soft margins not implemented yet/bin/shshno match for menu initializationpage mode not implemented yet Ip I H*File to AccessSelect the file you wish to access or enter file name or folderRead permission denied for file %s.Read permission denied for file %s.File %s does not exist.Empty file folder or file folder does not exist. Jv J{ JNameSuffixDescription/usr/lib/ua/SuffixesrLOGDIRLOGDIR/Suffixesr!#%+,-.:_~heap_cpy: out of memory%s/%s%s/%sr%s/%sFile folderExecutable fileStandard file%-14s - System/%srFile folderYou may only open a folder if it is your only selection (you have made %d selections)Empty folderFile does not existFile folder does not existStandard fileExecutable fileNo filename was specified//usr/lib/wfont/UK.ftCan't load /usr/lib/wfont/UK.ft/usr/lib/wfont/BLD.ftCan't load /usr/lib/wfont/BLD.ft/usr/lib/wfont/ELD.ftCan't load /usr/lib/wfont/ELD.ft/usr/lib/wfont/VBM.ftCan't load /usr/lib/wfont/VBM.ft/usr/lib/wfont/SCLD.ftCan't load /usr/lib/wfont/SCLD.ft/usr/lib/wfont/ROMC.ftCan't load /usr/lib/wfont/ROMC.ft/usr/lib/wfont/ROMG.ftCan't load /usr/lib/wfont/ROMG.ft_R/usr/spool/lp/pstatusr.text<.data .bss MXX1.filegasync_main.c.text<.data .bss M.fileginit_tam.c.text.data P.bss M.filegm_getargs.c.textR.data ..bss M.file'gulockf.c.text,.data 8.bss M(.file/gforkmgrs.c.textZ.data .bss M.file7gasync_comm.c.text L .data .bss M.file?gasync_kbd.c.textR.data J.bss M.fileJgpipe_loop.c.text|.data b..bss Mpvt100se bpvtappse bp513seq b.fileRgvansi.c.text"XN.data .bss M.fileZgvansisub.c.text&.data (.bss M.filebgbansi.c.text?T%.data .bss M.filejgbansisub.c.textC .data .bss M.filergfatal.c.textKR.data r.bss M.filezgexit.c.textL0(.data r.bss M.filegcommand.c.textLXl..data r 4?.bss M.filegkillmgrs.c.text[.data *..bss M.filegset_comm.c.text\2.data *`.bss M.filegrdprf.c.text] .data +4.bss M.filegem_cntrl.c.textg.data ,F|.bss M.filegxfer.c.texthlE.data -.bss M.filegterm_setup.c.textnJ).data /.bss M.filegupf_setup.c.textp,.data G$.bss M.filegruler.c.textq",.data G,.bss M.filegsh_exec.c.textqND.data G .bss M.filegmenu_list.c.textq~.data G".bss M.fileginit_mem.c.texts.data H .bss Mlbufs M.filegfilesearch.c.texts7.data H*(.bss dp.filegfm_suf.c.textv~8^.data JRp.bss dp.filegchk_fnam.c.text{.data J .bss dp.filegfilemenu.c.text|B q.data J4.bss dp.filegfm_tok.c.text.data L.bss dp .file gmenu_lp.c.text1.data L.bss ez.filegfontsub.c.text.data L.bss ez.filegpstat.c.text^:.data M$.bss ezrp Mpoffset Mtimezone0tzname0patblack0patwhite04patgray0Tpatltgra0t_iob0_bufendt0_ctype0 sys_errl0_dbase0errno0environ0PC0BC0 UP0ospeed0LINES0COLS0wncur0 optind0"optarg0&opterr0*optopt0.sys_nerr02_sibuf0`_sobuf0d_tbase1shlbat1shlbatid1access1 alarm1brk1ibrk1sbrk1$chdir1*chmod10chown16chroot1<close1Bcreat1Hdup1Nexecl1Texecv1Zexecle1`execve1fexeclp1lexecvp1rexit1x_exit1~fcntl1fork1getpid1getpgrp1getppid1getuid1geteuid1getgid1getegid1gtty1ioctl1kill1link1locking1lseek1mknod1mount1msgctl1msgget1msgsnd1msgrcv1nice1open1openi1pause1pipe1profil1 ptrace1&read1,semctl12semget18semop1>setpgrp1Dsetuid1Jsetgid1Pshmctl1Vshmget1\shmat1bshmdt1hsignal1nstat1tstty1zfstat1stime1swrite1sync1syslocal1time1times1ulimit1umask1umount1uname1unlink1ustat1utime1wait1write1abort1abs1atof1clock1crypt1setkey1encrypt1ctermid1 ctime1localtim1gmtime1asctime1"tzset1(cuserid1.ecvt14fcvt1:gcvt1@fclose1Ffflush1Lfopen1Rfreopen1Xfdopen1^fread1dfwrite1jfrexp1pldexp1vmodf1|fseek1rewind1ftell1ftw1fgetc1getw1getcwd1getenv1getgrent1getgrgid1getgrnam1setgrent1endgrent1getlogin1getopt1getpass1getpw1getpwent1getpwuid1getpwnam1setpwent1endpwent1gets1getchar1 fgets1getutent1getutid1getutlin1$pututlin1*setutent10endutent16utmpname1<malloc1Bfree1Hrealloc1Ncalloc1Tcfree1Zmemccpy1`memchr1fmemcmp1lmemcpy1rmemset1xmktemp1~monitor1perror1popen1pclose1printf1fprintf1sprintf1fputc1putw1putpwent1puts1putchar1fputs1scanf1fscanf1sscanf1setbuf1sleep1ssignal1gsignal1strcat1strncat1strcmp1strncmp1strcpy1strncpy1strlen1 strchr1&strrchr1,strpbrk12strspn18strcspn1>strtok1Dstrtol1Jatol1Patoi1Vswab1\system1btmpfile1htmpnam1ntempnam1tttyname1zisatty1ttyslot1ungetc1_filbuf1_flsbuf1lmul__1lmul1ldiv__1ldiv1lrem__1lrem1aldiv1almul1alrem1ulmul1uldiv__1uldiv1ulrem__1ulrem1qsort1l3tol1ltol31tgetflag1tgetent1 tgetstr1tgetnum1tgoto1tputs1"form1(menu1.message14setattr1:pb_open1@adf_gtxc1Fadf_gtwr1Lpb_gets1Rpb_check1Xpb_weof1^pb_seek1dpb_puts1jpb_name1ppb_empty1vpb_gbuf1|adf_gtto1wrefresh1track1wcreate1initscr1cbreak1attroff1nl1attron1flushinp1noecho1inch1getch1savetty1resetty1echo1nocbreak1nonl1wdelete1wprexec1wpostwai1wgetc1kcodemap1keypad1 wsigintr1wind1wsigcatc1winit1$wsetbuf1*iswind10wexit16endwin1<wgetpos1Bwgoto1Hwinstr1Nwreadmou1Twsetmous1Zwgetmous1`wnl1fwndelay1lwprompt1rwguser1xwcmd1~wslk1wlabel1wuser1wprintf1printw1wputc1wputs1wrastop1wselect1wgetsel1wsetstat1wgetstat1setty1fixterm1physclr1resetter1setterm1getterm1baudrate1parselin1slkcol1setjmp1longjmp1afmulf1afdivf1afaddf1_cvfd1 _cvif1&fltused1,syment12fmul18fdiv1>fadd1Dfsub1J_cvdf1P_cvdi1V_cvid1\_cvfi1bafadd1hafsub1nafsubf1tafmul1zexhelp1tolower1wicon1wicoff1toupper1l64a1a64l1_bufsync1setuname1auldiv1eprintf1dbsub__1dbadd__1dbdiv__1dbmul__1ltodb__1dbtol__1dbtofl__1fltodb__1ltofl__1fltol__1ultodb__1ultofl__1aulmul1 afdiv1dbtst__1fltst__1plock1"dial1(callout1.undial14drand481:erand481@lrand481Fmrand481Lsrand481Rjrand481Xseed481^lcong481drand1jsrand1pftok1v_startmain<_end mmode ezs e~commpath fprfpath fedit_s rdpipefd fwrpipefd fcommfd cpkprdfd fcpkpwrfd fkbdpid fcommpid fwn fp_vls fp_fls fp_str fprffd ip_new ir_seq mJs_seq sal_filen zal_timer znal_fd prfd cur_seq seq_chct lnptr zrpwptr zvsyspf syspfstr $m_getargrdprf]em_cntrlginit_tamset_comm\forkmgrsZpipe_looem |procid .lfd 2lckfile 6pfdesc zzdirname z~profdir zprofpathfatalKulockffgetty *rmgetty\*rmlockJgetdirLockfile zNlocks stlockonelockcommproc LkbdprocRcommbuf {dispbuf {Brealbuf {vcaptbuf {albuf {header |Kcode |Lrec_head gt80 topbuf bottombu posntop posnbott pdeletel pinsertl pwrapoff fcr prevchar freset line column fscrollr fwrap dispinde realinde paramind scrollto scrollbo vidcntrl emcntrl bpipebuf prfile |NG0 G1 cacs keyno }Hpfstrct }Jpfptr }Npfbuf }Rpfct whom }pflabel debuf }flushtoshnchars }loadfontrcvdeadcommexitspoolfiltellpipe(&parsepro }alf2Nctrldisp }slkcnt 6pslk }pfload }pslknum }dowrap&~insert 0inccolum&,aldonecapt_fd #Pc_prfd #Tmovecup  formcup;resetdisjpipereadoff_prin0Lprompt savebuf }kbdbuf cupbuf poption boption pstatus v_proff b_proff v_pron b_pron nurbuf appbuf comm_pro atimeoutHlogout"peek_seqkbdproceBhostcommfphone *savepfst\autologoXsendaldosend_seq>auto_tim:cpfile }killmgrs[putgetty\nlocalcomMvt100kbd b513kbd!Bpowerresprinters pronlineOprofflinPXsaveline ~savecolu ~frelmode  sgrmode (saveG0 ~saveG1 ~scacs ,fsavecup getpentendpent^txferZvt100par"Xincline%vescdisp vctrldis vcsidisp  vdecsq+vkeypad'Tfinal&aerror9checkesc'~vmaint-scsg0>areset:scsg1?>decline%deccolum&Rsetwrap;^scrollup<anul9aflush9beep9abacks3aht3avt1 aff1facr1aindex1anel2ari3voption*vris=Pacuu3acud3acuf48acub4acup52aed9jael9ail6<adl6HbdelchCasd7vsetmd)vprop.Rvrstmd)asgr7vreport*vscrlrg(Rcursave p80Es  grmode $apn'apn0'cuphome<vident*on_print/.scrolldo<flushesc:Bmovecurs:asu7doel9b513pars?bescdisp 8bctrldis bcsidisp 4bspfonCbspfoffENbchdEbpronJbproffK:binschKbcnlFbcplGbchaIbcbtF@brepeatHbvpaJ0bsetslkC bwrapKtfinsert ~slk ~slknum a_exitL0c_exitLHcmd_i rcmd_m homedir captfile xmitfile recvfile dumpfile 6fullpath ^umode Tdesc hrecpromp Zoperr item_umo |item_des menu_umo menu_des !hcapt_f !xmit_f "recv_f "Tdump_f "capt_t "dump_t "xmit_t # recv_t #&pxmiterr #@ptxerr #Dprecverr #Hprxerr #Lfcapture xmitfd #Xrecvfd #\dumpfd #`umodempi #dasciipid #hyesexit #llogfd #pkillcommLXprkillcoLforkcommLcatchsigO screencaT`screenstUxmodemXZsendfileVstartpriO@stopprinPpwrresetO$logQ*keycanceQformpathRgetfilefRmsgwindoT verbose filesearsasciiexi[xferdone[gettydev shcmd dir logon_sedprf_dfltgvpchk_t 0Npgen_t 1spd_t 0wrprffmn_items ,Fmain_men ,Zmn_slk ,mn_disp - term_setnJupf_setuprulerq"sh_execqNmn_bdselgresumeh&multi_slh0r_chn w_chn f_chn sndhlrcvjVacatchmsaynr_charmw_charnlogn_i /logn_m /pchk_yes 0Rpchk_m 0pspd_i 0spd_m 1Lpgen_i 1pgen_m 1term_i 2vterm_m 2mpage_i 3mpage_m 3:clocal_y 3clocal_m 3bpc_i 4Tbpc_m 4echo_yes 5echo_m 5"sx_yesno 5sxonoff_ 5rx_yesno 6<rxonoff_ 6Zhfc_yesn 6hfc_m 6stopbits 7tsb_m 7mlst_ter 8dumb_b setup_l 8rs_seq Rlogon_l 9login_f <|setup_f <loginseqnsetup_fipsetup_sapf_setup_osave_logpmlist_inqsetup_fdpmlist_dur&setup_dfpmlist_dfrmlist_blrinit_pagsinit_scrs,blanksrdmenu H*anyfilmn Hfhomedir "lastdir retpath formlabe good Ilopen_cmdtopen_chku<form_lpfil_mnu_suf_tab tok_file sufstate JRmax_fst_ cur_fst_ parse_st fskw_tbl JVin_sufv~parse_suwlast_hea Jfirst_he Jheap_roo Jfsp_namexfsp_sufytk_gtvalheap_cpy|Btk_gtlinftk_gttokgt_name_zzgt_suf_szgt_file_zgt_desc_{Xchk_fnam{heap_ptr parsenam}fmopen|namematcitemcmp.fminputJnewfoldeitem_to_fmfreetk_gtnamxskp_tnl8menu_lpPsigcpkb_beepufdata readfontgetpdestsetpentF_etextetext_edata Medata Mend 0707070000020105021007550001450001440000010764430373775627100001300000000000TRAILER!!!ogQ*keycanceQformpathRgetfilefRmsgwindoT verbose filesearsasciiexi[xferdone[gettydev shcmd dir logon_sedprf_dfltgvpchk_t 0Npgen_t 1spd_t 0wrprffmn_items ,Fmain_men ,Zmn_slk ,mn_disp - term_setnJupf_setuprulerq"sh_execqNmn_bdselgresumeh&multi_slh0r_chn w_chn f_chn sndhlrcvjVacatchmsaynr_charmw_charnlogn_i /logn_m /pchk_yes 0Rpchk_m 0pspd_i 0spd_m 1Lpgen_i 1pgen_m 1term_i 2vterm_m 2mpage_i 3mpage_m 3:clocal_y 3clocal_m 3bpc_i 4Tbpc_m 4echo_yes 5echo_m 5"sx_yesno 5sxonoff_ 5rx_yesno 6<rxonoff_ 6Zhfc_yesn 6hfc_m 6stopbits 7tsb_m 7mlst_ter 8dumb_b setup_l 8rs_seq Rlogon_l 9login_f <|setup_f <loginseqnsetup_fipsetup_sapf_setup_osave_logpmlist_inqsetup_fdpmlist_dur&setup_dfpmlist_dfrmlist_blrinit_pagsinit_scrs,blanksrdmenu H*anyfilmn Hfhomedir "lastdir retpath formlabe good Ilopen_cmdtopen_chku<form_lpfil_mnu_suf_tab tok_file sufstate JRmax_fst_ cur_fst_ parse_st fskw_tbl JVin_sufv~parse_suwlast_hea Jfirst_he Jheap_roo Jfsp_namexfsp_sufytk_gtvalheap_cpy|Btk_gtlinftk_gttokgt_name_zzgt_suf_szgt_file_zgt_desc_{Xchk_fnam{heap_ptr parsenam}fmopen|namematcitemcmp.fminputJnewfoldeitem_to_fmfreetk_gtnamxskp_tnl8menu_lpPsigcpkb_beepufdata readfontgetpdestsetpentF_etext