add.hd100700 0 2 17436 4247047555 6366 37777777777 : # shell script to add or upgrade additional hard disks to a 386 box # # documentation & install.part2 requires a Del/Rubout to terminate clean # if invoked with -d option, only creates /dev files and adds to /etc/fstab trap "exit 0" 2 # PATH=/bin:/usr/bin:/etc; export PATH abort() { echo "\nThe $1 add-on disk is not properly configured." echo "\nTry adding the hard disk again. If it fails again," echo "call your dealer or distributor." exit 1 } edfstab() { # # note that if ed doesn't find the patterns it won't write the file # no point in grepping to see if it's there first! # ed - /etc/fstab > /dev/null < /dev/null < /dev/null case $? { 0) CHANGE=Upgrading ADD=upgrade DONE=upgraded;; *) CHANGE=Installing ADD=add DONE=installed;; } # # Check for parameters # PARTIAL=False if test $# -ge 1 -a "$1" = "-d" >/dev/null 2>&1 then PARTIAL=True; shift fi # if [ $# -eq 0 ] then while echo "\nWould you like to $ADD disk #2 or disk #3? (2/3) \c" read answer do case "$answer" in [23]) set $answer break;; *) echo "\nInvalid number; please answer 2 or 3." continue;; esac done fi # # Set parameters # case "$1" in 2) NO=1 # logical hard disk number PHYSICAL=second # physical hard disk number USR=usr2 # mount point BASE=16 # base minor number [16-31] ;; 3) NO=2 # logical hard disk number PHYSICAL=third # physical hard disk number USR=usr3 # mount point BASE=32 # base minor number [32-47] ;; *) echo "usage: $0 [-d] [2]|[3]" exit 1 ;; esac if [ "$PARTIAL" = True ] then set `drive /dev/rhd$NO.drinfo magic megabytes` >/dev/null 2>&1 MAGIC=$1 if test "$MAGIC" = d6d1 > /dev/null then MEG=$2 else abort $PHYSICAL fi mkdevices $NO $BASE $PHYSICAL edfstab $NO $USR exit 0 fi # # check if disk has been installed # if grep /dev/hd${NO}b /etc/fstab > /dev/null 2>&1 then echo "\nThe $PHYSICAL add-on disk has been installed." while echo "\nDo you want to install again? (y/n) \c" read answer do case "$answer" in [yY][eE][sS]|[yY]) break;; [nN][oO]|[nN]) echo "\nThe $PHYSICAL add-on disk is NOT installed." exit 1;; *) echo "Please answer \"yes\" or \"no\"" continue ;; esac done fi # mkdevices $NO $BASE $PHYSICAL set `drive /dev/rhd$NO.drinfo magic megabytes` >/dev/null 2>&1 MAGIC=$1 if test "$MAGIC" = d6d1 > /dev/null then MEG=$2 else abort $PHYSICAL fi # echo "\n$CHANGE a $MEG megabyte $PHYSICAL add-on disk..." SCRATCHBLKS=200 # size of fsck scratch area SWAPBLKS=0 # size of swap area # allocate swap and spare area. # Spares are only for dynamic sparing on [23]086, all spares on [68]86 case "$MEG" in 20) TSWAPBLKS=6400 SPAREBLKS=0 ;; 40) TSWAPBLKS=6400 SPAREBLKS=0 ;; 50) TSWAPBLKS=6400 SPAREBLKS=0 ;; 70) TSWAPBLKS=6400 SPAREBLKS=0 ;; 80) TSWAPBLKS=10112 SPAREBLKS=0 ;; 89) TSWAPBLKS=10112 SPAREBLKS=0 ;; 90) TSWAPBLKS=10112 SPAREBLKS=0 ;; 140) TSWAPBLKS=12880 SPAREBLKS=0 ;; 145) TSWAPBLKS=12880 SPAREBLKS=0 ;; 150) TSWAPBLKS=12880 SPAREBLKS=0 ;; 170) TSWAPBLKS=12880 SPAREBLKS=0 ;; 190) TSWAPBLKS=12880 SPAREBLKS=0 ;; 310) TSWAPBLKS=12880 SPAREBLKS=0 ;; 320) TSWAPBLKS=12880  SPAREBLKS=0 ;; *) echo "$0: $MEG megabyte disk unknown" exit 1 ;; esac YorN=false while test $YorN = false do echo -n " Do you want a swap area on this drive ? (y/n) " read ANS case $ANS { [yY]|[yY][eE][sS]) YorN=true while : ; do echo -n " How many 512-byte blocks do you want in the swap area? (Default = $TSWAPBLKS) "; read ANS if test -z "$ANS" ; then ANS=$TSWAPBLKS ; fi # RETURN accepts default if test "$ANS" -gt 3200 -a "$ANS" -lt 32768 then SWAPBLKS=$ANS break else echo "$ANS" not valid, must be between 3201 and 32767 fi done # with swap while loop ;; [nN]|[nN][oO]) YorN=true;; *) YorN=false echo "Please answer \"yes\" or \"no\"";; } done /etc/umount /dev/hd${NO}b > /dev/null 2>&1 # echo "\nWriting the layout information on the $PHYSICAL hard disk..." layout -o $NO /dev/rhd${NO}.layout $SPAREBLKS $SWAPBLKS >/dev/null # sync # echo "\nChecking the $PHYSICAL hard disk..." #badblock -q -i $NO if [ $? != 0 ] then abort $PHYSICAL fi sync # SECTORS=`sizefs /dev/hd${NO}.layout 2` TYPE=`drive /dev/hd${NO}.drinfo type` if test "$TYPE" -eq 0 >/dev/null then # this means the drive is an st506 GAP=5 SPC=128 else # this means the drive is an esdi GAP=9 SPC=280 fi if test "$TYPE" -eq 2 >/dev/null then #this is a SCSI drive # if /etc/layout -c $NO > /dev/null 2>&1 then set `/etc/layout -c $NO` else echo "\nBad drive configuration information." abort fi SPC=$5 GAP=$7 #echo "the gap is $GAP " fi #SPC=`expr $HEADS \* $SPT` TOTAL=`expr $SECTORS \* 512` INODES=`expr $TOTAL / 3072` YorN=false while test $YorN = false do echo -n " Do you want a standard number of files? (y/n) (Default number of files is $INODES) (Normally, you will want to answer \"yes\" to this question.) " read ANS case $ANS { [nN]|[nN][oO]) YorN=true while : ; do echo -n " How many files do you want ? (Default = $INODES) "; read ANS if test "$ANS" = "" ; then break; fi # RETURN accepts default if test "$ANS" -gt 160 -a "$ANS" -lt 65501 then INODES=$ANS; break else echo "$ANS" is not valid, must be between 161 and 65500 fi done # with inode while loop ;; [yY]|[yY][eE][sS]) YorN=true;; *) YorN=false echo "Please answer \"yes\" or \"no\"";; } done # echo "\nMaking the file system on the $PHYSICAL hard disk...\n" /etc/mkfs /dev/hd${NO}b ${SECTORS}:${INODES} ${GAP} ${SPC} if [ $? != 0 ] then abort $PHYSICAL fi labelit /dev/hd${NO}b /${USR} hd${NO}b >/dev/null 2>&1 fsck -y /dev/hd${NO}b # mkdir /${USR} > /dev/null 2>&1 chmod 755 /${USR} chown bin /${USR} chgrp bin /${USR} /etc/mount /dev/hd${NO}b /${USR} if [ $? != 0 ] then abort $PHYSICAL fi # make lost+found directory exactly 2K echo "Making the /${USR}/lost+found directory" mkdir /${USR}/lost+found > /dev/null 2>&1 cd /$USR/lost+found && for i in A B C D do for j in a b c d e f do > $j$i 2> 2$j$i 3> 3$j$i 4> 4$j$i 5> 5$i$j done > $i done && > zz 2> ZZ && rm -f * cd / sync # edfstab $NO $USR case "$CHANGE" { Upgrading) echo "\n\nTar the backup of the standard file system onto the hard disk. Place the $PHYSICAL drive backup tape in the tape drive and press RETURN: \c" read line cd /${USR} tar xvfb /dev/rct 120 tarresult=$? ;; Installing) tarresult=0; ;; } # trap 2 if test $tarresult -eq 0 ; then echo "\nThe $PHYSICAL hard disk is correctly $DONE." fi exit 0 # in a b c d e f do > $j$i 2> 2$j$i 3> 3$j$i 4> 4$j$i 5> 5$i$j done > $i done && > zz 2> ZZ && rm -f * cd / sync # edfstab $NO $USR case "$CHANGE" { Upgrading) echo "\n\nTar the backup of the standard file system onto the bin/adb100755 3 3 155454 4235427270 6574 37777777777 L-v" 4P;|@.text4 .data@@P;ܟ@.bss,[@,[@|ÐET,[@RU RP9 PjÐUuu ujÐUEffEE@Eju ujEju EPjEMEÐUju ujjUju ujVÐUVu u<^ÐUVu u;^ÐU=Bu ÐEEE$;Et E EEaju bdP5BuEB t EEE=BuE @EMEEMEEE9E|}uEju cP5Bu虃EB t EEE=BÐU]?5@6@ B=Bt= Btf=Bt ^_Ð3^_ÐU EEtB!@E pBjEPhBg @tE@%@@u 3xG@tG@lBh)@EPtBBÐUfBfEtBtBP*E5pBEPU fBfE5tBY*E5pBEPLEtBEÐUfBfE5tB*E5pBEPEtBfBfE5tB)E5pBEPEtBE\@E\@\@ÐU$EEE E h\C@P jujh!@Epɀ - Eju^=pBu h!@]gE詀tM BtBEfBfE܋EEh!@jEP(g Ðju=pBu h!@olE BtBEfBfE܋EEh!@juEP58@'0h!@0jujkEEfEfE܋EEh!@0ju2PE%4G@(h8"@(uE PuE Ph:"@(EuuuusEt h<"@h@"@R(E$=uEP58@/(ÐhD"@juvjujEtjE@otpt2qtAE%PhH"@'E%PE%PhP"@֐E%PhX"@E%Pj0cE@otpt!qt4ÐE%Ph`"@E%Phh"@E%Php"@-Epuuhx"@&Ã4o|׃qyÐE Ex#E%MI;uϋE@b.$<llll$llH<tlW3ju}u]EEE@#E%MI;E@ xr(S: ]f5`eZz{|A}8/}uEuuh"@$ tBÐUWVf}uh#@$^_Ð;fffff%fEE%.$(Et dsPE4$@h$@M$ f%0t h $@)$%Ph$@$^_f=t8=t==tF=tK=tP=tUEPhP$@멐h$@%Ph$$@h0$@h8$@h@$@hH$@E4$@h`$@_#PjQ9E4\%@hh$@֐fu hl$@aE4<%@ht$@벐fu.=tEPh$@hx$@E4\%@h$@gfth$@"Tf}tf}u h$@%PE4$@h$@z" ^_Ðfu.=tEPh$@1h$@wE4|%@h$@@8^_U=xG@tu uB[E %EE %EE t  aÐu ua}u3B|Bf$^@fE|BEh%@jEPW ÐE4%@E!E4&@3!Ðu uAEtME4%@ }| h%@ =@Bt =4Bu}}h%@ E؉Euy_u ueE4%@ :E ~ h%@i =@Bt =4Bu}}h%@놐uu[UEu(E %=uE %=u h0&@!tG@9lBt t<&@H&@PU=!@| =!@~3Ð!@4G@hT&@UEpjEphX&@)o tjEph`&@o u hd&@Extxt hf&@7ÐU=@Bu uhh&@=4Bu uhl&@ uhp&@ÐU BuE}Q\@E*#tZ%&)[mE PE\@뚐E PE+\@[E Pm5\@u\7E PIE-\@E P-E=\@\@E P E!\@E PE \@E PE=\@\@@u BEBEÐ} t586@CfEfBjjY\@BLBEu5X6@ B} u\@닐+w-:]^0| 뼐U(*t"-tU@t@~tc BujjjhB\@Ðjj{j֋E P\@̐E Pm\@봐jj;B8)t5,6@뒐BU0WVEjT tu,h ^@TE u4=@Bt ^@PN t(5D6@Ef@fBE@B\@ B=@Btu2@P u;u2@Pj u'E=u2@#%P \@=u2@0t =4Bt=@Bu}t  EE}tu2@PPu2@P E-\@\@u2@PEE;E|5(6@OE\@V=\@u%u2@ xuEE/c=\@Tu2@ ttu2@ d4EE 뺐=u2@.h} t =\@U}K\@]EE $EM]Eu2@0EEE]P u E}]EM uE=u2@.u_Fj t4DBPBBBhXBjhXBkBB Br=u2@"uB,BB\@=u2@+u5Bݐ=u2@^u BP=u2@3EEfLBfE܋EEjEPcEEq%=u E%8tBEffE܋E@EjEP fBfEܡBEjEPEBEjEPEB EjEP%=u*3EE}u$fEfE܋EEj>L6@B}u?fBfE܃}uEBEEjEP;I@u BjhBB%? u E Eu)fBfE܋EBEjEP,u+fBfE܋EBEjEP+u}u ^_Ð^_ÐUWVEQE E}u2uhBOH u=$BtBp hx1@}BEE8tp=BugEP tCE mEE0EEEEP uM EE8u5 B+EBBu襥=Bt?}}+B^_ÐuuuuSE75B Mt5BN B=Bt j }^_ÐUDWVE E}HE EEuujK j  uh2@Ef+M Ph$2@E$h,2@ Buh42@ Bj y YBE8tEPT E8"uE8UEME BP Bu搐Eې+t-tAB\5<6@Dw.$L6$5,6h5,6,6,6,6,6,6,654,6423l2@3X w.$684T4,6,6,6,65,6,623X35,6@5,6,64,6,6,6,6542p423l2(3,64(4}t5BG BMUBE=u2@ uQE uR5Bjg5BjgBjuh@2@hD2@hH2@IQjgÐ}u56@OjjWgEP\E;Etu5Bj.ghP2@  BÐUe} | }~}@u(}@u @E4`PhT2@ÐuÐUE BEjh ^@hB< @u506@x=Bu>=(Bu ^@@ ^@@ ^@A;E|}}56@1EÐU} t};u Ð3U=u2@ t=u2@ tu2@ÐU=lBtu2@u2@Ã=BujB ]@j5B5`BZ أlB=Bt j=lBuBB8 uBB ]@Bu2@ tBu2@ÐU$P t B3Ðu2@ÐU\uÀ=u2@'u3Ðu2@ÐUVuE}t u}u,P uu2@F<"ù}uE B9utF^ÐUhBhTj,` hBhTj` }~WE ph|2@ tBME АE ph2@ tME E @2@ː}~ E @T>@}~ E @X>@EB B$B-/$BBPfBBfBfBB\@Bf(^@fB\@BB$B\@,B\@TB\@\Bjj.cBtB=h=j cjjbBh\@LB=Bt'5Bh2@BBB=Bt!Bj fh2@=52@WP52@jVb jh2@jEb AB" B=lBt3=`Bt" lBjh\@WKS B5!@j=B=u2@ 56@Uh=uajj5`B^] BÐU=Bu =Bt5BTÐUuh2@\5 BBPh2@AÐUuh2@,jaUEB| jh\@;JÐUh2@B ÐUEE H} E EÐUj v5BaÐUWVu} FEGt9uw ^_ÐF8Ft3^_ÐUWVu3GF~u^_ÐUV=B6@M EExBE' FM} FM}EFE6@-xB9E}3ExBEEu}t EE} uE뾐 F-xBPhxB56@T_ 6@xB^À} u"6@6@ 6@-xBtߐ}t6@^ÐU6@-xBÐU=6@xBt j ÐU|WVEEu E E}%tEPE8-u ElEErEPsE8.uEEPZE EEBuuƋEEEEEEEEED4.$Cj EPu) juEEjPuu,yj EPuu juJԐjuu\릐EE-EPEPuEVW_^2OE}t-+ BB}0 EE BB}~MBB. EM tBBME E8u BB80t+Ń| B}tBBej jdu EE}}Tu} (+EPxACACCCCCCBCACACCBxACCAdACCCCCCCCCAACACCCCCCCC4ACHACABACCTA}uBEEuE9E} }|EEE+}ru( j O EEPEM u j O EBEEE ^_UWVEP[<BB 7F|BB 7F|^_ÐUuh6@HÐUj UE}9 kE M0EEE<0}ڋEEUDWVu} }3} du-؋BB-+u+u uE;u/$E< 0WE BBE;u^_ÐUVEE} t- }؉EBB-} ~BB+3E$D5}F ~eE N ||5tF }^áBBL50N }^UVEEBB0BBx3E$D5}F~N ~ |5tWD5 BBN | |5 0^ÐU0E؉EE6@EEEE }NBB-E6E%EЋE%E}UЋEMEE}E}uE9Eu*EE0E9EuÐBBMM E9EuÐU=`Bt5`BR`BÐU=6@t?56@R6@ÐU ;B| h6@&ÐUWVEBBES;BtvCSDtKoRE5<6@h7@A^_ÐU(WVB%? uE+EET}E=Btf8BfE<BfLBfE@B$EfDBHBB%? u EEEEEPUE=BtBp hX8@+h`8@fEfEEEE}}E؉EEEB%? u=MxjEP腴P58@MxSEEhl8@ɐMx3EEhp8@jEP芴P58@oMyht8@fBfEءBEh|8@jEP) j DBuB%? ujEP軳 jEP$E t+B%? u EtB B N^_ÐU=Bu BEVvB _%t?C5<6@0E}@h`:@5T>@hh:@5T>@hp:@j hx:@h:@h:@h:@j |} uÐE @P58@h:@E p58@xh:@kE p58@Wh:@JE p 58@6h:@)E p58@j E @E } IÐU0 BB$EkEtE%M E%M@EE%=uB%? u[E@uPEB9EfE EEj EPEPj跪@]uh:@ÐE EfEfEEjEPEP @tEЋM9HrHjjCEfEfMfHE@EMHE@ ju5^@ ÐUWV=Bt* 5\@h:@N5B5BVh:@4 B %EBE3Uww ww7Vh;@EM%40;@h(;@E}|EF|^_ÐUVfBfE쾄@@EhL;@EA@sQ8tPh@;@gF EP58@PhH;@CEEEtj o^U WVBE@@ F ^_ÐA@s1>GG9Eu?tGO;tO?tȋEBƐEB3^_ÐUWVBBhT;@jhB jhB迧Pjjv j 0^_ÐUh\;@B48@j ÐUjj4 t \@ËEÐUWVE B=Bt BBm=Bt# 5T>@h|;@B=BhBhTj6@ ;@} u/hB1 tu hB P5Bju hB{ P5Bu!+=;@t"EBE fBB=;@bTfBfEBHE=BEPzE ttB𥥿BBj:P茩 `BExtH t"EH tuE B#EȋIH E"EBE fBBB B [E^_UV=BtPjj5Bj)BfBB5B~tFvX u^ÐU5B=B},B uHjjjjW)E5BjDB5Bj4BuYjBq=Bu 56@Z{B B@5B5T>@tAB=Bt"5T>@h;@jÐUWVuV}襥^vEPP5Bju(EhBhTj= V}u襥^jEPP5Bj 5(jEPeP5Bj (FE*̉EPEP:P5Bj'F^_ÐU}u& 4<@4<@  uj$8 t$t u2@8uы}h;@P$l u h;@lHxll)(E9rh;@t ul%Ph;@xpEEE T>@E8 t8 t8t8 uڋ8t E@E8 }^h <@j(??E8>u.j9hP" }h <@뱃E8EEpP5T>@(UVB%? E5BvX t+~tEN9Huff9t}tf?uf8u΋^ÐU V5B u^Ã~tJBjVP5Bj$EFEPVP5Bjs$vX u^ÐUWVBxV}^BjEPpP5Bj$MA*̋VEPDP5Bj#=Bt?h8<@5BhP<@h[<@ h\<@ju7 E@XE ?^_ÐU Vjjx<EP1;5BtuEEEE5Bj@<hBhTj7 hBhTj7 uB6@B^ÐE%tSE%B t}Et h`<@v5B7B6@뚐EBuc;@ u!=Bt  BI^ÐUfE EjEPEPj@u hp<@E@BÐUVfEEjEP5P5Bj!E@@F A@sLE%NEEP=tjEPP5Bjx!N 뫐fHBfB`BBDB BB0[@PB$^@^ÐUWVfEE<jEPPP5Bj \@B@-ujEPP5Bj wr0[@^_UVfEEjEPP5Bjp E@@4FEEF 0EPP5Bj5 A@r3^ÐU =<@tOfEEjEPAP5BjE tu <@<@<@<@ÐUB%? uE@M EËE@UH}B,^@u>4B u h<@h<@5T>@-E u5T>@h<@+ \@BEBEEE\@9E}}BvEPu @u h<@Ef}uEЉEẸ\@jPu t h<@JEE9Eu}BhujjEP_t h<@EEEfMffEfMfHEMH=Bu=BuEf8u f BfHEf8!s f8r(f8w"E%rfEff%f3MfAE)EEMH ujjuuMEEE8u\@EEBf@}t h=@B}Br h8=@,uG-h\=@E tf@fdBE@hBÐU`j5T>@B\=Bt=@=@P5BBj EP5Bv* ~EB=EBE\@E\@E\@E% BE%@BE%BEu h=@f}u h=@j,EP5B) ,t h=@Eu h=@E(^@Eԣ\@Eأ\@ \@EtEУ\@ujBjj5B0 jEP5B%) u'f}Ptf}Luh >@j4B=BuULWVj5X>@#B }(BBB^_Ð(BEXujh\@ @u h\>@P%\@ E\ujh\@t @u ht>@ %\@ EujEPE @u h>@EujEP @u h>@E`ujh\@ @u h>@%\@ E̠ujEP @u h>@q@@AE%NEPjv  @u6h>@rj2A@rfHBfB`BBVBB^Exuj EP) @u h?@EȉEE EE؋EȉEEEB%? uẼ}~E3\@EEE9Eju5BQ- @tjEP5Bb& @u h0?@2E:E+B%? uFE@u;E%%MEuu CE@"ÐUWV} t?F EF F F3҉VDZ@=at=rt=wt3u}ÀN jju N G=+uf N ȸ*L$Q3ÐBXÐUPWV}g G 9E}qtkG u`7E E}ujjG PU +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P ECG t8WYG t g GGuu G P E9Eus3lUWV}uWYG uG tO G Dt1 W@"u}F @tVY;5@Z@rGGG tG DZ@+GPwG P | GG듸9tO O G tg aD$Xpxh Z`P+␋T$D$;j tZrzj bu@bWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ÍD$Pt$Ð5,[@t$ t$  Ð;sRt3ÐUW(E+S@EEPY=S@iGQiWkW<E=\@u=\@uWEPEP< \@E\@EE9E|)E9E}!E+S@EEPYG Nj}UWVEQUEE}} EQME< \@E$\@ƙ5(\@Ep8\@}| FFFtmnEN}|ۉ54\@}=<\@ƹtmn=nu fS@3 uS@+FuS@;}fS@G,\@50\@@\@ \@u}Ëƹtmn)EFƹtmn9E}h~PWJ =uh~PhPT@ 3W YkUjuuuu u#Ujuuuu uU$WVS}D\@ED\@ExV@s3UtE]D\@EV@EV@EV@r5EV@rV@EV@AEW@s6EE]@)EEW@r݋EE 9P܃}t؁D\@\@v\@EW@tU\@r05}fEf fEmE]mE܉E@0Ee W@];r&=5|+D\@uD\@1}tCF0N<9D\@]Ћuԋ}ËEE0]@EEsEE 9P EEEEV@MU]vEu}fEf fEm]mE܉EFUR0EMm]EV@E5V@]UWVS},[@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3r ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WDZ@UW W@;=@Z@r3}ÃG uUW W@ WY;=@Z@r}UWV}tlG t6G t3WVYG PY}BG twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG DZ@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G DZ@+G?}3W DZ@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G DZ@+G?}3W DZ@+W;}WY3UWV}G G u}}&uBBGW DZ@*h!YGt@O G WDZ@GGVYtG uO @u}G  BWRDZ@UWV}G DZ@+G}G DZ@Wu};7}7𐐐3ÐUBEEPhTu } EB3ø6ÐÐU WVSE9ET= [@u<$[@  [@ [@ $[@[@$[@[@ [@[@[@E@3؋=[@E&;5[@ [@E@E=w=[@j Y[@@;t?3Ee ƹ3tL3+‰EEE2[@+[@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5[@[@0E+E-[@@;t[@[@[@ [@~Љ[@;5[@v[@[@[@ 9=[@u [@[@G(=[@95[@u=[@7tލ;r;l%;UWV}5[@%[@9u5[@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ[@Nj]u}WV|$ t$L$Njʁ^_øÐT$([@Ru ([@+D$øT$([@3øvÐ0NL$0:L$0+L$0L$0 L$0 ÃBÐT$@(#)access.c 1.2 87/10/06 Not in write mode:%16t=%8t:%16tThis version of adb does not support execution of 286 binaries. adb @(#)command.c 1.2 88/03/07 Ax"= "^i= @(#)dis286.c 1.2 87/02/25 rep??,bdwb d w Exchg ,,,,,,,,,,eaxax,%s,cl,,eaxax,%s,cl,,,,,cl,@,,,cl,*1cr%d,dr%d,tr%d,,cr%d,dr%d,tr%d%x %x %s %x %x ??? faddfmulfcomfcompfsubfsubrfdivfdivrfldILLEGALfstfstpILLEGALfldcwILLEGALfstcwfiaddILLEGALILLEGALILLEGALILLEGALILLEGALILLEGALILLEGALfildILLEGALILLEGALfistpILLEGALfldILLEGALfstpfldILLEGALfstfstpILLEGALILLEGALILLEGALfstswf16ldILLEGALfistf16stpILLEGALILLEGALILLEGALf32stpfwait%s%c ST,ST(%d)fld ST(0)fxch ST(%d)fchsfabsfxtractfrndintUNKNOWN (%x)%ss %s ILLEGAL%s fstp ST(0)UNKNOWN (%x)%sd ILLEGALILLEGAL%s ST(%d),STfstsw axUNKNOWN (%x)%s "@"@"@"@"@"@"@"@"@"@"@"@"@"@"@#@#@#@#@ #@(#@0#@8#@@#@H#@P#@X#@`#@h#@p#@t#@|#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@[bx[bx[bp[bp[si[di[bp[bx]+[si]]+[di]]+[si]]+[di]]]]]+-+-%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@Byte Ptr Dword Ptr Word Ptr %s:calljmp %X%OQ%D.movmovmovmovmovmovmovpushpushpushpushpushapoppoppoppopanopxchgxchgininoutoutxlatlealdsleslahfsahfpushfpopfaddaddaddadcadcadcincincaaadaasubsubsubsbbsbbsbbdecdecnegcmpcmpcmpaasdasmulimulimulaamdividivaadcbwcwdnotshlshrsarrolrorrclrcrshlshrsarrolrorrclrcrandandandtesttesttestorororxorxorxorreprepnemovscmpsscaslodsstosinsoutscall nearcall nearcall farcall farjmp nearjmp nearjmp nearjmp farjmp farretretretiretijejljlejbjbejpjojsjnejgejgjaejajnpjnojnslooploopeloopnejcxzintintintoiretclccmcstccldstdclistihltwaitesclocksegpresegboundleaveenterarpl @(#)dis286tab.c 1.1 86/12/08 t&@x&@|&@&@&@&@&@0&@P &@5&@h&@` &@3&@Ǐ&@X &@5&@a &@ &@&@ &@&@&@&@&@ &@&@&@'@ '@ '@ '@ '@$'@ǀ('@,'@0'@ǀ4'@8'@<'@@ @'@7 D'@' H'@(L'@ǀ(P'@,T'@X'@ǀ\'@`'@d'@H h'@l'@8p'@ǀ8t'@<x'@? |'@/ '@ '@('@i4'@ '@0'@8'@ '@ '@ '@'@ '@( '@8 '@ '@ '@ '@ '@ '@( '@8 '@ '@ '@ '@ '@ '@ǀ '@$'@'@(@ (@(@ǀ(@ (@0 (@ǀ0$(@4((@ ,(@ 0(@8(@@(@H(@P(@X(@l`(@nd(@l(@x(@(@(@(@ (@ (@(@((@ (@(@ (@(@t (@| (@~ (@r (@v (@z (@p )@x )@u )@} )@ )@s )@w )@{ )@q )@y $)@ ()@ 0)@ 8)@ @)@H)@ L)@ P)@ X)@ `)@ d)@ h)@ l)@ p)@ t)@ x)@ |)@ )@)@ )@&)@ff)@`e)@b)@ )@)@c)@ @(#)expr.c 1.1 88/03/07 brcodlsr %W% %D% %Q% %.8s:%16t @(#)format.c 1.3 87/06/23 %16m%T%M:%16t:%16t%16t%-8u%-16U%-8o%-8x %-16X%-24Y%-8q%-16Q%-8o%-16O%-8d%-16D%-16.8f%-32.17F-csh/bin/sh!@%c @(#)input.c 1.3 87/02/25 *-w-padb: %s adb @(#)main.c 1.1 87/02/02 x2@%s Dot = %x:%X adb: %s Localsym: VERSION sys 3.0 DATE 1983 Nov 30 segment already present in mapbad digit for required baseuneven number of '(' and ')'bad segment numbersegment number requiredbad addressbad modifierbad commandsymbol not foundautomatic variable not foundc routine not foundcannot locate valueno breakpoint setunexpected ')'address expectedno processbad variabletext address not founddata address not foundodd addresstoo many breakpointsbad framebad linkaddress wrap aroundunexpected `='wait error: process disappeared!process terminatedtry againsyntax errornewline expectedbkpt: command too longbad file formatnot enough space for symbolsfilename too longcannot openbad core magic numbercant modify sp and stay healthy @(#)message.c 1.1 86/12/17 2@3@(3@D3@d3@x3@3@3@3@3@3@3@4@4@(4@84@L4@X4@h4@4@4@4@4@4@4@4@4@5@05@<5@L5@`5@x5@5@5@5@5@5@ @(#)output.c 1.1 86/12/17 xB%s0123456789abcdef %d: killedbreakpoint%16tstopped at%16t @(#)pcs.c 1.1 86/12/17 %d.%D.hangupinterruptquitillegal instructiontrace/BPTIOTEMTfloating exceptionkilledbus errormemory faultbad system callbroken pipealarm callterminateduser defined signal 1user defined signal 2death of child processpower-fail restart%.8s(????????(, , ) from @(#)print.c 1.4 88/03/07 @7@D7@H7@L7@T7@`7@h7@|7@7@7@7@7@7@7@7@7@7@7@7@8@,8@D8@%o%O%d.%D.%x%Xvariables = :Segment # = Type = TextData???%s File position = Virtual Size = Physical Size = Reloc Base = adb: illegal segment number Text SegmentsData Segmentspcs id = %d no process %.8s:%12t_endbreakpoints count%8tbkpt%24tcommand %-8.8d%24t %s Memory - File - '%s''%s''%s'Seg # File Pos Vir Size Phys Size Reloc Base Can't read ldt %x ValidZeroNANEmptyfper = %x fpsr = %x fpctl = %x st(%d) %x %x %x %x %x %s :@:@:@:@%s%8t%8t%16t:%16t @(#)runpcs.c 1.3 88/03/07 %s: running %s: cannot execute echo rCan't perform popen WARNING: command line expansion too big for buffer COMMAND LINE %s %s: cannot open %s: cannot create ;@cannot set breakpoint: err # %d - core dumped Can't read number of ldtsNot enough room for the symbol tablercannot fopen %s bad segment read bad seek to symbol segmentbad symbol readadb: symbol table problem - proceeding anyway adb: beware, symbol table overflow main @(#)setsym.c 1.1 86/12/17 a.outcorer+rBad object module formatNo extended headerBad extended header sizeCan't handle nonsegmented programsadb does not support coff executables. @(#)setup.c 1.7 88/03/07 =@=@Bad read of text sizeBad read of data sizeBad read of user stack sizeBad read of user stack sizeBad read of stack sizeBad read of r0 pointeradb: Bad read of %s register Can't read ldt table sizeCan't read ldt entryMiddle model program with multiple data segments -adb: cannot open `%s' Not enough space for segment tableCan't read ldtinfo entry%s+ @(#)sym.c 1.1 86/12/17 :%s+ @(#)ptrace.c 1.1 86/12/17 eaxeflebxecxcseipedxdsssespesiesedifsebpgs @(#)reg.c 1.3 88/03/07 (@@ (B(B,@@dBdB0@@,B,B4@@ 0B0B8@@HBHB<@@`B`B@@@ 4B4BD@@PBPBH@@LBLBL@@DBDBP@@8B8BT@@TBTBX@@<B<B\@@XBXB`@@@B@Bd@@\B\Bg@@lgdtsgdtlidtsidtlldtsldtltrstrlmswsmswlarlslverrverwctsmovsxmovzxpushpoplfslgslssimulshldshrdbsfbsrbtbtbtcbtcbtrbtrbtsbtsibtsxbtsjojnojbjaejejnejbejajsjnsjpjnpjljgejlejgsetosetnosetbsetnbsetesetnesetbesetasetssetnssetpsetnpsetlsetgesetlesetgmovmovmov @(#)dis386tab.c 1.1 86/12/08 A@A@A@A@A@A@A@A@0A@ A@A@A@ A@(A@ A@}A@}B@85B@85B@B@B@B@ B@y(B@y0B@8B@S@WS@aS@qS@S@S@S@S@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-cDT@HT@W`/Lw/K:/JMFw/GMT TZ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ B B@Z@( B!Bbin/acctcom100755 3 3 114440 4201127113 7427 37777777777 Lb! (u"@.text(u .data@@"u@.bss8@8@.commentHؘÐET8@RU RP PtjÐUWhB@h4@BhF@h@5"@4 hF@h@5"@4 hF@h@5"@4 hF@h@5"@i4 dG@\G@hG@h@5"@64 =u tG@d5"@$YG@u5"@h@7G@f@fG@tG@ lG@ lG@  lG@ lG@5"@ YP@ lG@ lG@D@5"@YfL@"@=?u xG@m"@=#u G@ShG@h@5"@2 =u pG@)5"@+YG@u"5"@E 0h@h4@0G@f@fG@pG@hG@D@dG@5"@ YTG@5"@ YLG@`G@5"@ YHG@s5"@ YPG@`"@G@H@h@5G@1gG@u4h@3/Y|G@!|G@-?|=7w |$T@h@u u}' u=|G@t1jjqY"뱋E "@4sYG@"@E9"@|׃=G@u jlYu th@3Yj Y}G@@@3\G@jYUWB@EEEE}t3h4@h,@uf uuh.@h4@. }Ã=\G@t;\G@&t\G@E jEPh4@/ th4@K.YuEGQG+£$G@G+t/@G+t/@+‰EEPBYEQE+9$G@}GPWYPhG@h4@. =LG@t(LG@EEEP&YPhe@h4@- =HG@t(HG@EEEPYPhs@h4@- =TG@t(TG@EEEPYPh@h4@- =PG@t(PG@EEEPYPh@h4@Z- }}E9E}EQqGP1Y(G@<WЉXG@}u}u }u}tj}tE9XG@}=\G@}tE9XG@~=\G@}t E9G}t E9G=G@t%=GPbY,G@G PRY0G@,G@0G@4G@=4G@u 4G@GPY8G@jjhB@GPGPY=D@t3j@@Ph4@) th4@)YD@3Nj}Uh@h4@)h@h@h4@) lG@th@h@h4@( lG@ t.h@h@h4@( h@h@h4@( lG@th @h@h4@( lG@th@h@h4@d( =lG@t lG@th@h@h4@8( lG@th*@h$@h4@( h0@h4@(h2@h4@'lG@t#hp@hj@h4@' hz@ht@ h@h@h4@' lG@ t.h@h@h4@' h@h@h4@q' lG@th@h@h4@N' lG@th@h@h4@+' =lG@t lG@th@h@h4@& lG@th@h@h4@& =`G@th@h4@&h@h4@&h4@_YU WB@=hG@u%=thB@EP]$}h@EP]hB@EPAEPh@h4@1& GP YPEP\E=?t EPh@ GPh@h4@% G=t GPY@Ph@h4@% GPY@ Ph@h4@% hXG@Y@ Ph@h4@{% (G@5H@\$h@h4@V%lG@t?,G@5P@\$h@h4@%%0G@5X@\$h@4G@5`@\$h#@h4@$lG@ t5@G@5298@}fEfG j h;@W. 8@uUY;@kujjh;@t=tuUY @=UWVSf} %%NË]u}ÐU j uh @g- EPh @7=tE%= uEøUWV;@EW;u Nju}à k;@ ;@;rEPYu !@Ǹ29;@}fEfGj6W, ;@뛐UWVS}EE] GOt CF҈uuE ]u}ÐUWVSEEG@G@E 9E|H@u uEEEEEG@t2EFYPE 0jI h"@]>YPh"@jH jEPjH E "@ "@@"@u"@"@?F=:"@@U "@t"@@U "@"@"@@"@;E|l="@tOLjEE E 0=YPE 0j/H h"@z=YPh"@jH jEPjH "@?GE "@"@ "@"@8E "@ "@@"@u"@"@"@UWt7uuNj}ÐUWEE EP$CYtujW2 Nj}UuEYÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwuF ÉE)G?}3W 7@+W;}WAY+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ PA E}|EE}øUWV}t9~u=Ƌu}U="@uh"@h"@:"@5"@YU="@t5"@<Y"@UW}G?t=:t = u= u ?tGNj}U="@uh"@h"@R:"@u35"@YUWuhh=@_ =A@WQY=A@WBY=:j EPWb EW9YPj:W(9 9Eu`WY}| `9E~aEA@t4=:t*j EPW EWB9YPj:W8 9Et3}WY}| `9E~aEA@=A@=A@W^Y=A@WOY=B@W@Y=A@G?t =,u?tG=A@A@oUWVS} uEE~,F t!O>(V+Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V 7@+V;}V=Y}u +gEEvUWV"@H%@98@s 8@< #@u7YtVuj3B jh#@j"B Wq7YPWjB jh #@jA u}ÐUWVS}u ]GF:u Nj]u}M}3UW}Wp9YjjG Pp= GGg G tg }ÐUPWEEE@ uE@ t(EH uuu { E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P< +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P,< ECG t8W7YG t g GGuu G P; E9Eus3lUPE EPuh4@d UPEEPu uI UW}EEEljEEW4YEE2uu EP }ÐUWVS}u DžB@ B@ B@Wa=~*uDžF DžDžk -0F1@u؃u DžÉ=lt h9uF؅[uPV1@tDžl2@؃nt_= B@uVctQ[tLB@} W@ Y GG1@u B@W"=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfB@fl9uEEPB@{EEPB@dEPWSt'= B@tu /$Fu 1@td= B@uB@} W Y GG1@u B@Wl=u B@y%uF؃%B@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$P.@EE EEB@}WyY3]u}ËGG=+t=-t =0t8EMB@} W(Y GG؃0i9E }9EoB@} WY GGEh~PW =uh~Ph1@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}G Dt+G uEE Pj u tWYEEWUWVS}8@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W7@UW4@;=7@r3}ÃG uUW4@ WY;=7@r}UWV}tlG t6G t3WVYG PY}8@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 7@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 7@+G?}3W 7@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 7@+G?}3W 7@+W;}WY3UWV}G G u}}&uI@M@GW 7@*h!YGt@O G W7@GGVYtG uO @u}G Q@WR7@UWV}G 7@+G}G 7@Wu};7}7𐐐3ÐU8@EEPhTu } E裸8@3ø6FÐ2ÐU WVSE9ET=8@u<8@ 8@8@ 8@8@8@8@8@8@8@E@3؋=8@E&;58@8@E@E=w=8@jY8@@;t?3Ee ƹ3tL3+‰EEE28@+8@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή58@8@0E+E-8@@;t8@8@8@8@~Љ8@;58@v8@8@8@ 9=8@u 8@8@G(=8@958@u=8@7tލ;r;l%;UWV}58@%8@9u58@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ8@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$8@Ru 8@+D$ø!T$8@3øÐ8@ÐT$@@(#)acctcom 5.3b of Jan 27, 1988@(#)acctcom.c 1.1 87/08/13 "CCC+CCCeCCCCCHCCCCCCCCCCCCCCCCCC&5CDSbCkxN@N@N@N@N@N@@ @@N@N@N@N@C:E:H:I:O:S:abe:fg:hikl:mn:o:qrs:tu:v%lf%lf%lf%lf%huUnknown group%hu%s: Unknown user %s wopen error on output file/usr/adm/pacctracctcom: cannot open %s ACCOUNTING RECORDS FROM: %sSTART AFT: %sSTART BEF: %sEND AFTER: %sEND BEFOR: %sCOMMAND START END REAL%8.8sCPU%8.8s(SECS)%8.8sCHARS%8.8sBLOCKS%8.8sCPU%8.8sHOG%8.8sMEAN%8.8sKCORE NAME USER TTYNAME TIME TIME (SECS)%8.8sSYS%8.8sUSER%8.8s(SECS)%8.8sTRNSFD%8.8sR/W%8.8sFACTOR%8.8sFACTOR%8.8sSIZE(K)%8.8sMIN F STAT #%-9.9s %-8.8s %-8d %-8.8s?%.9s%.9s %8.2lf%8.2lf%8.2lf%8.2lf%8ld%8ld%8.2lf%8.2lf%8.2lf%8.2lf %1o %3o %ld:%ld:%ldacctcom: bad time:pattern syntaxcmds=%ld Real=%-6.2f CPU=%-6.2f USER=%-6.2f SYS=%-6.2f CHAR=%-8.2f BLK=%-8.2f USR/TOT=%-4.2f HOG=%-4.2f No commands matched acctcom: cannot stat stdin /dev/nullacctcom: cannot stat /dev/null acctcom: %s %s Usage: acctcom [options] [files] Where options can be: %s -b read backwards through file %s -f print the fork/exec flag and exit status %s -h print hog factor (total-CPU-time/elapsed-time) %s -i print I/O counts %s -k show total Kcore minutes instead of memory size %s -m show mean memory size %s -r show CPU factor (user-time/(sys-time + user-time)) %s -t show separate system and user CPU times %s -v don't print column headings %s -a print average statistics of selected commands %s -q print average statistics only %s -l line show processes belonging to terminal /dev/line %s -u user show processes belonging to user name or user ID %s -u # show processes executed by super-user %s -u ? show processes executed by unknown UID's %s -g group show processes belonging to group name of group ID %s -s time show processes ending after time (hh[:mm[:ss]]) %s -e time show processes starting before time %s -S time show processes starting after time %s -E time show processes ending before time %s -n regex select commands matching the ed(1) regular expression %s -o file do not print, put selected pacct records into file %s -H factor show processes that exceed hog factor %s -O sec show processes that exceed CPU system time sec %s -C sec show processes that exceed total CPU time sec %s -I chars show processes that transfer more than char chars/devr??/dev/xxxxxxxx?ln<ln9999X""""stack overflow Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/grouprr: option requires an argument -- : illegal option -- --/etc/passwdrrUnknown error: L%@T%@^%@x%@%@%@%@%@%@%@%@ &@&@.&@@&@L&@b&@n&@z&@&@&@&@&@&@&@&@'@'@"'@:'@G'@]'@l'@x'@'@'@'@'@'@(@(@ (@9(@V(@q(@(@(@(@(@(@(@(@)@)@1)@B)@O)@e)@z)@)@)@)@)@)@)@)@ *@*@3*@C*@Q*@m*@|*@*@*@*@*@*@*@*@*@*@+@'+@N+@s+@+@+@+@,@ ,@,@,@%,@.,@7,@@,@I,@R,@[,@d,@n,@x,@,@,@,@,@,@,@,@,@,@,@,@,@,@-@-@-@"-@,-@6-@@-@J-@T-@^-@h-@r-@|-@-@-@-@-@-@-@-@-@-@-@.@.@#.@;.@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error6:3:3:3:b:6:b:b:b:b:b:?:b:b:b:b:b:6:b:b:H:??GA>???/@/@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFR\\R\\\\\\SR\RR\ASQSQSQSQSQSQSQSQSQS\\\\\\\\\\\hU\Y\\\\\\\\\\\\\\\\T\\\\\\\\\\\pShUWYkSpS\\dS\\T\\\=\\T\\T-+ 0x0X--+ --+ --+  ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ Q@ Q@7@(Q@R@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS07@(Q@bin/asa100755 3 3 33034 4201127245 6547 37777777777 L! + l @.text+ .datal @l @ l,@.bss @ @ .comment 6ÐET @RU RP PQ+jÐUPE `@9Euh @YEE P=-E PB=su~ @E9Eugh @YZh@h @E U4 u)E U45`@h @h@ @E U4JYEE9E|@ t"5`@h @h@j  @5 @**YUPWE3 @ @} h@Y@@u u5`@h @h@} @h @j !E= = t7= a=+=-=0=1 @h @j A!@ @ @} h@Y@@u @h @j },= n= o @%h @j @ @ @ @ @G @}h @j ^ @ @ @}h @j 7 @ @ @|g@ @E @|E@ @ @} h @j (@ @ @ @}h @j v@ @c@ @ @} h @j @ @1E% @} h @P덡@@׈@ @= @<= @/u5 @5`@h @h@ UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1@"u}F @tVY;5@rGGG tG  @+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph,@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@ET@s3UtE]@E\@Ed@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@^@v^@E@t!@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W @UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&ud@l@GW  @*h!YGt@O G W @GGVYtG uO @u}G t@WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$p @@(#)asa 5.3b of Jan 27, 1988standard inputstandard inputr%s: cannot open %s %s: output error %s: empty file [%s] %s: %ld invalid input lines in %s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFZ f  B N r    es  e  ]  s -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@@@ @3.1bS03.1bS0@@bin/banner100755 3 3 32130 4201127253 7243 37777777777 L1! & P l@.text& .datal@l@ l'@.bssH@H@P .commentH4ÐETH@RU RP PQ&jÐUP9E}h @Yj &YE15@E U4/5@8YhP @YEE9E|j%YUEEE Eu  @P7E+E= ~E+EEk@EuuEEEEuUEEE/EUM# @tkEUU ЋE  @ E9E|E9E|3UE+EkEUU ЋEM ET9E|E9E|UEcEkUUDTES.kEUUЋE @;ukEUUЋEM}}kEUURhR @E9E|ÐUPWE ET@uT@t* T@hH@uu T@ t }ËUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  \@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlD @Dž\9PtP؉PNKPPoY Ek E-0GEi @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlJ @Dž\?E2ETMDžlM @Dž\EE C~u~E܉TMs؍gh݅H @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H @u+-hJhEi @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hp@YEt Eu =l@t3txEy@l@h@EPbuEPSjEP |>h~PW =uh~Phh @ 3W YkUjuuuu u#Ujuuuu uU$WVS}L@EL@E@s3UtE]L@E@E@E@r5E@r@E@AE@s6EE]@)EE @r݋EE 9P܃}t؁L@@v@E(@t]@r05}fEf fEmE]mE܉E@0Ee 0@];r&=5|+L@uL@1}tCF0N<9L@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G \@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W \@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}H@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW8@ WY;=X@r}UWV}tlG t6G t3WVYG PY}(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG \@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O  G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G \@+G?}3W \@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G \@+G?}3W \@+W;}WY3UWV}G G u}}&u@@GW \@*h YGt@O G W\@GGVYtG uO @u}G @WR\@UWV}G \@+G}G \@Wu};7}7𐐐3ÐU(@EEPhTu } E(@3ø62ÐU WVSE9ET=<@u<@@ <@<@ @@0@@@,@<@0@8@E@3؋=,@E&;50@<@E@E=w=8@jY0@@;t?3Ee ƹ3tL3+‰EEE20@+8@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή58@0@0E+E-0@@;t0@0@0@<@~Љ,@;5,@v,@4@,@ 9=8@u ,@8@G(=,@958@u=8@7tލ;r;l%;UWV}5,@%0@9u58@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ4@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$D@Ru D@+D$ø!T$D@3øÐ(@ÐT$p@@(#)banner 5.3b of Jan 27, 1988@ww">IH> I>qRt%G$8EB9   "">> @"AAA"(>>A>@@>A>A>@BBB@@~A>>A@~AA>B>AA>AA>>AA?A> >>>A>A]]^@>"AAA~AA~AA~>A@@@A>~AAAAA~@@|@@@@|@@@>A@OAA>AAAAAAAA>BDHpHDB@@@@@@AcUIAAAAaQIECAAAAAA~AA~@@@>AAAEB=~AA~DBA>A@>A>AAAAAA>AAAA"AIIIII6A""AA" > >@ >>" !?!!>!>!!>! !>!!!!>? > ?? > ! '!!!?!!!!!"<$"! ?!3-!!!!1)%#!!!!!>!!> !!%">!!>"! !!!!!!!!!! !!!-3!! ! ?? ` 0I #@Usage: banner "up to 10 char arg string" . . . %s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF<9&iyyyyyyyyy 'A  e'-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@X@@ @3.1bS03.1bS0X@@bin/csh100755 3 3 165434 12542054 6545 37777777777 L " $#`@.text .data`@`@$#`@.bss*@*@.commentÐET*@RU RP PjÐUWVEEEEEEj'Y2@M} h@7͸uED/@=-u3/@=/@t hH/@gYh@h@*2@! 2@^h@׼YE}uEuh@h@讼YtV衚YPh@͜=D/@u @@h1@h@7xYPh@ h@WYtVYh@h@rP^Y@/@5@/@h@*x8/@jjp/@5p/@jjjt/@5t/@jMF=nti=ct.=VtZhC@E -E,9EujT YM$/@@E/@h@՝Y=Xh@躝Y=ft=e/@E=i/@E -E=vt4l=st/=qugEaEL/@PYtL-EE?=tu8(/@L/@PYt-@E =xuE>M}~7=-i}t jj3}uP}~Jj7E}}/@7FY,/@ju{wfL/@@M=/@uL/@PYt3/@r=/@u =p/@uE -Eи9u0Eh1@WxYPh@B Eh1@Wh@# =@t#=D/@u$@'@Ph@/E =-u0/@}u jjjjjjhT/@跳Y/@}u|}uvE=/@th+@h*@h;@h6@ǗYPz}u=$/@u=(/@u=/@thH@hC@舗YP;}t hP@讚Y}t hX@蝚Y/@PY=/@t5h]@BYL/@PY/@`jhTj /@h}@YPpYP Yu}UPWVS3u =:uGF>ujGPq؋u3 FE:FE=:t}uEt@P YG}uh1@She@艗 ]u}UWVu urjjWzPdtW苔YjV u}UlWVS}E/@E1@El/@E$/@E(/@E蠐/@E|7} tqYjh1@51@t E=0/@t 50/@YuYh1@PYu|Y1@1@1@1@1@@EhT/@Y/@=/@th jh1@(PYuB|YE=/@2@;u2@@Ph@)=\uG2@;uG PB}YG?uUWVS}7BGYjjVPmVY}VY/@jSr]u}U0WV=@tKh@茏Yt:EP;Y7V kYE}t&6nYtMƃ0聎Y uȋ}ø,E9E}EH/@E;E̍EP6#}E9EH/@9E}9E}uBEH/@UWuYu }wu73U/@/@jjOlfL/@jj=lfN/@jj+lfP/@jL/@PlfR/@jUuCYUW}=/@uHf1@hw Cf1@ft$w Yw aiY1@G 1@}UW}=/@t3}É}EEPIY1@=t= 2@h@Y1@0RY51@hY1@UT P[7YE 2@2@@2@j2@Y$2@,2@u51@lY1@UWVSDžƅRC h @ YC׈Ph @AjY== t= = t="t*='t#=\=`C׈"u3PiY;tR tuVh@" %=uK="t#='t9=`tD뚃`uq`Cc`u` ӈCjCׁʀXC׈LjY π=2@ƅjY\u!j}YtO u πt8h @We=2@5@We;u3W2@YUWV}1@t=,2@~'(2@(2@0rY ,2@ u}$2@=,2@~(2@(2@08Y ,2@$ubt^2@t2@뛃=1@t>1@1@F5@Vct [T=$2@Y$2@$2@U0WVSEEEEE42@302@jYEE{9Eu jYEE%=#uEjyYE?9EuEj_YEE=w= l=$t1=*uPh @EP;h% @YE_}*}t5@/@YrEuRbY}EkE E-0EjYEPbYuuE2@Y}u}uQ}t&=,/@t* @ R @, @$2@=,/@u h. @ Y5,/@Y}uOh= @Yui@uaYu%GUjYEP|aYtE;rhB @Y΋GuE2@YEP谆Y}t$7EPY%T @'u1EPզYEЃ}tuMY]ċuȋ}ÍEPQfYjEYE6aYE؊Eׄ}[9EEjYE]9Et1 9E9EE;GUE=$2@=,2@?P`Y3K}~!E9E~EE EE؉EuE2@Y}t&E+E@PуYEPKYuaYjYE:9Euqj YE42@g9EujYE42@'hr @u_u hx @YE02@q9Eu42@' uE2@YEHЉ(2@E+E@,2@{9EzE}9Esk G-0P^Yu|;]~(hV @P^uF 2@hY @Y]܀?u E܉Eؿp @=*uG\=-]GP:^Yt+3k G-0P^Yu|;];]} EHE]؃}u}aE? UWV}02@t =42@u=$2@u}02@PW$Qt 42@VIYV=WIY$2@ @UE2@UW2@t2@Nj}Ã=2@t2@2@tڡ 2@8u2@뿡 2@ 2@2@ UW}h @W']t f1@}UW}h @W]t f1@}U$WVSh58/@} 58/@Yj[Yj58/@}.4/@58/@4Y4/@58/@eY58/@YEEEf1@hUEPI8hEP71@Dž4 F7C׈u(hPjq DžFu2@E 2@Džg\u5jYh @Wn[u 2@\π׈u 2@ @h @UYjOYt u狅Pj`ZtjP8EEEJCu(hPj Dž8u Cu(hPj躧 Dž8Q=1@t51@[Y1@DžjSY}E 2@h @Y t.tҋF׈} 2@ @h @}YuPxu?+PPjצ jjj= À=/@KUWVk/@ /@1@t1@WYY1@t1@WYY}tu u菉h @肉Y/@0/@t=82@t82@V{Y82@V=/@u =/@tjYh1@h @h @~ hT/@՘Yu}UW=/@u=4/@jP/@Po[=4/@uQYjY}Uj/@5 2@h @計uYU=0/@uE0/@82@U=0/@uu uY0/@82@UPE EEEPu=0/@uuuX0/@82@ÐU WVS}G 0j/WEG 0~3YG U<2@։@2@u:zYh @{YE}u9@2@=/t*@2@ 2@=<2@t 5<2@Yh @Y1@Ef1@G @EhGUu1f=1@tu$YE}u h @9YG UEuEP XEhUu2uhQ @'{Yt'h/@uqVYhV @ƆY/@YX}tE:t}t @EE0h @7WE=D2@tE0:YH2@EE}u0=/u$=D2@tEʸU#tOth @32uuE0"u3VuVVIxYE;lu1xYu(xY@2@ 2@=<2@t 5<2@Yh @Y]ԋu؋}U@2@ 2@=<2@t 5<2@Yh @YUWVS} Wu4/@=t6=t:= =<2@u$@<2@uwY@2@]u}h1@h. @kyuvjuE @h4 @xYt h: @xY@ @9Et)jEPu =uE=#tI @uYEWSQUEWuWvYu$Y.UW} /@5p/@jjw PWWY}UhQ @ xYt'e/@ujSYhV @迃Y/@U<WVSDžhX @wYD2@3ƆH2@F|tË=/uDj0k|,EPWH|E%=@W藞Y@8uj؋ƹ3?fft3CPP&PLYH2@NhPW莗 sRUD2@UPWV}3G?u}؋ƹU‹u}ÐUW}jW}UWVS}E PWa8tQhp @0Ցu>} ut3PW؅ut]u}3UWVS}u Wa8tQhs @0bu>} uu3PW؅tt]u}3UWVS}E PWE8t5hv @0u"E PW؋ Ë]u}ËUWVS}E PWE8t5hx @0蔐u"E PW؋3Ë]u}ËUWVS}E PWE8t5hz @0;u"E PW؋#Ë]u}ËUPWVS}E PWj0Et^E PWo؀} u;E=t=u*SV讏tSV螏u3EVqYS V YEVqYE]u}UWVS}E PW j0E8th| @0u ME PW؀} E-|z=ws|o$` @VYESY9E~MHVYESY9E}.VYESY9E|VYES|Y9E~3EVpYSpYuqY]u}ËU WVS}E PWU}h~ @EPLEUR;usE PW؋E=<uSYEVYMSYEVYMEVoYSoYu/pY]u}ËU WVS}EE PWj0 UE PW؀} uHE=+t"=-u4VYESYU+ЉUVYESYUЉUVoYSoYuhoY]u}ËU WVS}EE PWj0FUE PW؀} E=%tU=*t2=/upS5YE}u h @YVY}EEV YESYUЉU)SYE}u h @YVY}UV nYSnYuZnY]u}ËU,WVS}h @0肋u6u WVmYEVmY}h @07u9u WV"YEV`mYEPmY]ȋű}h @0uCu WE?t8t =)t h @YuPmYh @0葊E8u h @Yh @0[uփ} t @BE}} h @Y}u2=/@t jj觖-uYh @u6wuWsYh @mYPYq3PflYj0qt @0=-uh @FPXH[j0&t h @dY} t @1S$YEF=rt%=wt==xuLjujuju؋tEPutujY @F=dt0=etK=ft=otF=zt*RE%=t;E%=@k%}_EE;D/@D3EuljYujY Vt#YUWVS}E/@h @h @lƉFF @-j jFEXEpC]ǃ0jY?uΉ^EPKYjEPuO E=0/@t 50/@NYu5ZYEP+Yu+WY]u}UWV}u u3u}ÊGu[th @PEth @PEuxth @PEu[t9h @PEu>h @W臆t,h @Wutt8h @W[u 1h @W?u t(=<u =>u 3UW}?t#=-tPnDYu h @YWiY}UWVS}WFY=:u]u}û@);uWV}u; u3UPWV}@G 0FY=:u@w !Yh @G 0!tG xt h @Yu}ËG 03YtEh @6܄uGu'Guh @6賄u G xt3w Y 2@w =DYHEF9E} h @YF 9E~ h @tYWw FЃEh @6?th @6,uEUWVEp9p/@tH=/@t=/@t h @Y=l/@l/@WfYu1/@t u}3Pj5l/@VGYh @V~ujjl/@ @VeYl/@h jۏU=/@t h @EY/@u jj譏UUWVS}t S_Yh" @fY؊u h' @YS yY}=/tuh/ @fYE}taEUOE0P踇h6 @PSP谅PxY} EE8u}*SUfYtSfYE=/u u[xY?tSZdY}SYUh1@TYUWVS}Njuh1@SY]u}Ã?u0h1@SEYPft6AYh8 @ZqYh: @Slth@ @SZu 2@hH @\Yh1@WzAYPS7EYP1f iUh1@u5gU=/@u h @YUjjujjijj]jEphk @hd @wjEph~ @hr @ jEph @h @jjjjjjU=/@u h @,YUWVEEPYu>tHh @6u5>t h @Y 2@ @u jj u}ÅtE +P ¹PE p Bu YAUW}fGWlRY}Ujj5UPW=1@#ujjG w<YuًEpYEPjj  unaY }UWVS}?tB=(t1=)u @=)t?t h @YVYSjj\ S`Y]u}U=1@tDh @YUEE8t2EPtPN<Yu>u79Y=| h @Y7=(uWa=YH=)t h @Yf1@hGUWW Yu h! @yYjjg<؋ljC C1@:V_YC1@C1@=/@t]u}UWVS=1@t1@/@9u xu3؃E=/@tujEP EPYu3E8t h* @YuHjj;/@F1@F51@=/@t]u}ÅtUW1@@=/@th j螈jj=/@t Wj|[91@B}U=1@u h< @Y191@B U=1@u hQ @YU졘1@xu 08Yá1@Pzu=1@t h @aYѡ1@P@2]YP1@p_1@0K8YUWVEpO^Y=/@tjj~ju >"=/@th jUu YO<=/@t Vj.u}Ujj>UWV}@6Wgzu Fu}Ã>uݸUWVS} EG4@EH4@ 9EujF7Y=/@t/@9x/@uhf @iYKVSYVXY-=$$ @  9Eø 9Et9EO}}O9Et9EG9Et9EtOn 9E`VoYQuVx=3 9Et9EtV9Y=:V}YH 9EuuVxt$9Ehn @V`x9EVYVk9Y=:u V~}YHVYP<YSutS:ZYG9Eu=u92VAYu 9Et 9Euhi @VwuGjYUPWVS}3jJ0YEVhy @zYh @oYh @dYh @YYH4@ 2@h @DY]u}j/Y؃ t t u 3S/Yj/Y؃\uj/Y؃ u hv @S5t}u] 9]uE|>tGӈ}u t t uYS./YtO.G4@=$h @U졘1@xu"jj3H1@Bá1@p33YUPWVg3EQ=1@w9E|tG9E}u}à t w 5Yt wWYWWY51@=1@uUuj Uuj 0GUPWVS} =/@th jׁE?tBf1@hGUWf=1@t,WYh @Y]u}hUWhE= u0>t+\u&F؃cuF뾃nu j\EY PEYFu?tE PEYuր}tj EY=/@t uj؀=1@A51@C4Y1@&UPW}wwYEPw.h @wsu uYu%VY}U WVS=*@}+uFC>t ;tu ==t[?uh @u 4EEEP5*@A4*@uUYu uw]u}u h @37oUYVu3VZUYhUW UWVS}wu*j`vYSWvYSh @b]u}3F-0P61Yt=8t =9uʀ>u |~ h @YSuY떐U W}`P4@T4@P4@X4@ P1@h4@f1@f1@YL4@h@ VYt3`4@h@UYt3a4@`4@a4@ £L4@ ǃ0zY?u=L4@u.1@t 51@1Y1@351@5Y1@UE1@h4@f1@f1@UWV}Wj`/tjW2 3W=`4@th@W u}W^Y=`4@th@1@4g 1@4.YF1@;|ƃ=1@t51@0Y1@UWV}1@P4@T4@\4@WY1@;u$=a4@th@W u}UPWVS1@1@ЉU=h4@'67o~;urE-;r͋Eh4@]u}U WVS5T4@}=~P4@9T4@j~X4@9T4@r hr@IYT4@T4@UЈT4@YG6GPX4@9T4@r hr@YT4@T4@UЈT4@YPe-YuP-Yu=-t?t=/P4@@9T4@t5T4@P4@@P|YtP4@@Ph@P4@@ h%@YRYP5P4@s5P4@W2YT4@uf=\4@uh*@5P4@EPP4@t @PKqh+@5P4@L4@GPX4@9T4@r hr@YT4@T4@UЈT4@Y5 @P,DO T4@;}v =/u=/uGT4@T4@={ujWq]ԋu؋}WY5T4@T4@U0WVSjP4@t @P:y}=\4@tCÍEPWo|E%=@4/@5P4@Y믍؋ƹ3PfftDCPPhuPytP5P4@L4@NhPWJq uWwYUWVS}u G֊ FKu]u}UWVSDžU EE={u݋E@ER=[t'={t=}u9t6( G?t =]u?u h,@6YG?uu?u h6@Yu%=,t$=[={t =}t$=t$t SoGPPm} u(T4@PYT4@/Pu tF F>t =]u>u h@@YF;3UPWV\4@EE=.uE =.t 3u}Ë5d4@Ed4@u u5d4@E\4@U4WVS}u \4@G%FEЅtm=*tJ=/tx=?td=[t"={u{GPFPG]uċ}EEn>=/uF'O}3뺅i|t=d4@T4@ED9]CVGPX4@9T4@r hr@YT4@T4@UT4@Y?uj/X4@9T4@r hr@OYT4@T4@UT4@YEPP4@t @P]ku8E%=@u(uhT@5P4@L4@VHYET4@3]9Eu}tk1-9Eu9]F;E ẺE;tFEu}hJ@qYVWt 7G?u3*UWVS}u G%FEt4=*t=?t;=[u=EEs>O3]u}ÅuE%;t{]9Eu}tk1-9Eu9]F;E EE;tFEu}=hU@Y-VWt iG?u3\UPWV}u WkYEVkYUBf)1@f1@f~f1@f@f1@=U| h_@Y1@1@VWk&1@ 1@Iu}UX4@9T4@r hr@YT4@T4@UT4@UWVS}VGU9E uC=~u f 1@.h@VUet%h@VCeu PU YFuu]u}UWVS}PU YֈFuu]u}US]5 @P#t{uf 1@Ë]UE%UWVS}}Ef1@hGUEPf=1@taEPYu= 2@h@QYƋu@>t= 2@h@)Y51@UFY1@hUEPuZFY؋Ë]u}U`WV=1@tY51@#Y1@1@1@f1@f1@}nu11@91@t51@'Y1@Pf1@fHf1@f h@ Y1@1@YG=`uG=\uF>tF>t =`u>u h@YW:EYE+E PuFE!U(WVS} u Et3E3ƅjjnEEP=YeE}} h@KY}/@ujnumYju $jP/@P$E$/@ EE E8uP8Y=0/@t 50/@YP%YjP!) =0/@t 50/@\Yt fH+4Yh@uNu~CYujmulYDž`ƅW}u  u EPf1@fHf1@f h@Y1@1@Yu&hSue 'uOC%t ]Otu} thƅukYuIYUf1@fHf1@f h@Y1@1@UUjf1@fHf1@f h@Y1@1@UY1@=Uu h@|Y51@AY1@f 1@f1@ɉ1@1@1@1@f1@ÐUPWVSh@CY؊u E@C;tPYu;th@h@Ch@BYP-BYEEP= t1@/]u}á2@+F;E}}uFGVYGuju2@@2@P UWV} jjmEFF }t WVGFpGFp1@F51@Ƌu}UW}WYWO@Y}Uh@AYP4AYt 51@YUW}tGwYWY}UW}w h@zMWY}ÐUPWVS}x/@/@ljGG@|4@4@j!YE 9Et 9Et 2@9Eu=/@t u uEn4@Yj j؉s{^= u։w4@]u}UWEx7h@L;}t h@LY܋}UWVS}E PU j j؉s{^E 0>YE PU = uʼnw]u}UWV}wFG6q>YVj>Y9uu}UWVSj?Y=(=" %=  = t"= t=&V=#=/@;t l4@2ۈ]jY= uE=\u6M='=>d.=;t =)G4=<9h=`tD =\Pj)Y؀ 9(/@(/@GN]"uPYU;t" u(EPh%@l4@~LjGN=\uIjY2@;t$ u E=`u="t ='uˀl4@\NGV2@;t\GNˀ;=|u4LjGjYE;u GUEl4@l4@jY=\uBjY؀ u9(/@(/@v2@;t\GNˀ/@ @RPt l4@h0@Pt%N~ LjG]h4@YP:;YUWS}:1@./@ @RP`tˀË]}àl4@t l4@=1@t1@1@u든m4@t m4@뮃=p4@t]p4@p4@u=t4@t- x4@|%t4@Pt4@t4@0~Y \p4@t4@=t4@t7t4@Pt4@ x4@}t4@"t4@0%YjAY=$ut 02@;jYU0WVEE؋$Gj_YEԋhB@VtƢm4@l4@uȋ}Ã{uGֈjY#t?uEӋGֈjYGֈ= =$t=*u}4VYuVY3E;sGֈjYVYu#E;sGֈjvYVYu݃[uDGֈjUY u Ƣm4@OE;Gֈ]uj"Y:uBGֈj YguGֈjYGֈhF@Vpu 'Ƣm4@{9Eu*jY}tƢl4@hL@薼YGֈEPYRU=1@t8u~ZY51@lZYЁr h\@3YÃ=1@t51@PYuh/@Y=1@tPh/@W1@/@U WVSEujYE<{t El4@E5@2@2@EPf Yt!4@E;=1@uGp]u}ËGpEv;wuEEEE 2@;u"l4@s 2@PEn4@Y:jYhp@SEE:u8jYSEn4@YSYu&u:EEEgâl4@uEPEP jY؃*u âl4@--u%uEPEPU jMY؋E+E@x4@M}E 2@;t:uW_YjY؃:tSEn4@YE={ujY؃}t hw@ɹY=t4@UEv;51@u`ULWVEt4@jYugu EjY=&tT=h=pt7=qt(=r=stY=tn=xE[/@4@uh@Yhh4@h4@V jYEPYu!uYuh@uXtuEn4@YaVEn4@YU4@jY t;ut.4@w4\uj{Y;ut \t\GGֈ뾁4@tG-4@h@1Y4@u h@Y~4@WEPUj Y u VEn4@Y;ut5@vOh@ѷY7Gh4@h4@U=x4@tEPuuT EEu}Ã\ujY;ut\GGֈe u VEn4@YVh@蒷UWVSEEE5x4@}Uj j؉{EC_E PU }uEuEPuE 0K E 02YN}Eu h@¶YExjEPh ]u}UWVSE =ht=qt=rt=tt=xu0u u6tPENjÍDžuh4@Vt]!F>uu51Y뭋Gӊ C;r4@\=&t$=\u C=&uC|}G-h4@SY)|ah4@WQW5YC;uh4@SYVSY)|%VW`QEP{0Yh@5Y@UWVSE =ht2=qt=rtn=tt=xu(0Yuj/~ teu{YO=/uh9E tIGP/YƋ]u}uBY =/tO;}r =.u;}s3u/Y+E뭃 t u q9E uFuߋUWV}u GF?t>t ;tu u}3UWVS}u jY؃?}3E=$=%t3=*=-tJ=^?}95@?}5@5@?}EHSEn4@Y]u}Ã?}EEb?}E9}LSD Yt E?} EEHSEn4@Y}t*jYSEn4@Yh@S< M9 E9uEUW}= t=p4@}UEn4@UWn4@tn4@Nj}Ã1@=|4@t8|4@|4@1@8t1@|4@ 볃=1@t1@|4@u 듸9$/@t9(/@u }uO,=$/@t,$/@$/@$/@ >}t h.@B*YEPhTL/@PQ unEu7fMEPhTL/@PQ h8@5Yh]@5Y!=/@t hq@5Y h@}5YhT/@6EY/@hT/@$EY u=(/@t (/@LUWVS=/@|/@9x/@| /@9x/@~'x/@/@|/@j5x/@L/@PP /@9x/@uD|/@h/@0L/@PI ؅} 94/@tх /@/@x/@+|/@x/@Ë]u}j/@@PE=/@t5/@u15/@&YE/@jhH/@ /@f/@z/@9x/@/@+P/@ЋPL/@PH ؅} 94/@t /@x/@/@;hx/@U/@Ex/@UWV=/@u!=1@ux/@H~3u}á/@4]%YF;|/@R5/@ )x/@ )/@f)/@UWEx/@=/@u=1@t=1@}ËuE9~EUx/@UjjL/@P[N /@x/@^U/@=$/@=(/@=/@jjL/@PN |h94/@t[jj/@f/@jh/@jjL/@PM /@|/@x/@/@ÐUS]a|z~A|Z~_u ]3US]0|9 ]3US]PYuPYt ]3UWV}u F;u u}À>u3UWVS}E W.Yu/@h@豦Yޅ~COuƋ]u}UuU0YUW}?uNj}UW}#7h@K0t h@80Y?u؋}UWV}3Fǃ8uƋu}UWV} uƋ҉uEu}Uu u]YPEUW} ǃ0""Y?uu"Y}UPWVS}WcY@jV؉]ǃ0"YӉ?uE]u}UPWVS}u WDYEVDYUBRjUWShDVSzB]u}UPWVS}u WYEjVYUBRWSVSuu@YPE]u}UW}?u3}GuUW34L/@;t(N/@;tP/@;tR/@;tWIYG|Nj}UW=/@u2/@fL/@fN/@fP/@fR/@ }WIYG|UjIYjIYjwIY/@UWV}u ;t} Nju}Å|VW)4VW;tW(IYUWV}u ;t | }~ Nju}Å|VW3VHYVWUWVS}u W3Y؅}]u}Ãu;tVSSHYЋUWVS}u ]t G֊ FKu]u}UWVS}u Ã0Y;tN}SWz]u}UE=-uEEEP Yu3EE8tPYuEu3UWV}jWY@P6WVu}UW}G?uNj}UW}G uE}UE 2@h@YÐUW}EjhT/@EP hT/@";Y=/@tjEPhT/@ hT/@;YMu h(@SYWwjEPhT/@L }UWV}u h3@Pt;uu}VWUWVS} 3ۋu= t*=&t#=(tC=)t?=;t=>tC=|uZuVVujWv_]u}C0K}+h7@mY9~thD@F0f:uvv;euWuUWVS} 9}E=(=h1@E0uEP1@=1@1@EPQY1@31@1@=0/@tEPoY50/@荟YE:t:E0E09u$EURhF@UuYt]u}ËE@PuEE9EtAEPEHJPEHJEUPEUPE0BYu9YhT/@8Y늋=)uE;xoWp^;}uTUWVS}u _7YwY;us^Ë]u}UWV}u hH@P1t;u3u}uVW UPWVSE}=&to=(tQ=)tO=>t=|@=|E 9GhY@G07ujeE`M}[hL@ܞYN}uH@=&t;uWu =uNjjmffFa^4;} +}uTuu uU ]u}fKajjffF^uu W Fh[@Y3UPWVE}= t=(tj=)th=;ud}u^jjfuWu^ Fuu w F~u FFFƋu}EM;} ouu u UWVS3ۋ}~=(tk=)tg=|ua@=|uTuPjjfuWuP Fuu w FfFƋ]u}CK;} yuu u UWVS33ۋ}=&t=(t =)ucK`C]@=&uPuLjj5fuWuL Fuu w FfFƋ]u}Ë;} wuu u UWVSE}=(=)=|}jj؋E Ew;u t=&u MfKfuWug C;u t=&uE Pu w@ CË]u}EM;} 1uu u UWVSEE 9Et2}7+Y-| =w|$@;} tEE3ۋ}=(t$=)t)=<t=>uOt#}tREM}tECA}tEK5E 9Gt-5@GPuM }uuE;} w}}EjjjE@PEF EE =)ufFEE3ۋ} E=(=)=<=>e@=>ufNE 9Gt,h|@G02ufNE E 9Gth~@G01u fNE 9Gu=u}t}u hm@YGECK}5@PfEt Et~th@虘Y7YFuW@=<ufNE 9GtD5@Pu)Et-Ft"h@+Ye}u8]h@YPEu~t h@Y47&YF't}t=0/@u7YUME;} }t1}u+}t h@蛗Yfjuu F}u h@pYfƋ]܋u}UWV}tH|N=wG|C$@u}Ëw CwYw&YwYwYwYWY6Y>uw UEE<¹PE<Ph@A UWEtOWh@Eǹ<PAYǹ<h@YW#Y}Ë}ǹ<Ph@UW}ǹ RǙPh@ }UW}ǀu.t }$ t tj^Yu?@ @ @׈ t F5@9 @r}U @5@UW=/@tU/@tP/@5@9 @t# @-5@Ph5@Wd:  @5@}à/@uN/@UPWV}=/@th j6:u=/@t Vj:u}7)YEwGYh$@<Y9Etj(Y7Y9Etj)Yh&@Y념UWVS}EtH|=w |$(@]܋u}ËG %=u CPS1GuW+YG 8tGEEt uY=/@t0E u'=l/@th@@5l/@j,t3EEu3EEtj7Yw$Y=/@tEj7YhI@hB@E=G 0YE t!EuEPEP]EE}uu Wi Et(E07YEp6YE@=/@tD}t>}tjj7jj75t/@j7E t/@uu W襥 t1}t{=/@G}uEuEPEP[E}/@u EtE 06YE p5Y=/@tGuQE@t'uhK@ u YPhO@=uG 0hU@uXE ulY/@uu W EtE0N5YEpB5Y=/@t>}tjj16jj%65t/@j6E t/@=uvwE% f FjjfR/@jjfN/@jjfP/@L/@P4YfL/@/@/@VYyhX@G 0(uTG Xh]@PtS YP$Yj j$Yjw fGWjY-yh`@G 0u(u@/@u jj4jj4jw tfGWYxWYGEwE% f FEPu V wE%y f FuEPV G% EGtfEf FVYGG%0f FVoYG% EGtfEf FVFYhf@4 YP Yu3E=u39Ex.UPWVS}G؀=/@ut ]u}jo2YGt;V}YEP7Yu YV YjV2}dVyY[t$E 0YE 0 2YE p2Y/ tj1Yjhm@2R/@PYj1YGV|YEPYudYV]YtjV'2|jjj1 fu%hw@ YttV藌YV:YhV!}'VwYtE@N/@PYj1YÀtP/@PY/@LUPWjj1E'}uj1h@Yu3/@Et3EPj1} ujjx1 uji1Nj}UW}W!Y|.j7jwG?| |}h@qYU W}EPW'|E%= tWh@8}UWVS}Nj0u8]u}EuFPYu9u=[uEEPVEt$FuE?t@=(u4Nj0+?t&h@7#uE=?tNj0}tE==t h@Yh@VZ#u ߀}u}tVYPuuL VYPuh@u#u'u ǃUNjUEPԋYE8t h0@YV~Yu܋}U2@9Es3U}t 2@9Erj)Y9Es uYUW}uB@WW"Y@PjtP"}UW}*@*@}؋*@-*@u*@*@2lWY*@h*@qY}UW} ~ǹ PYǹ R0‹*@*@}UPWV}E=+utG=-uEGPYt93k G-0PYu?u}t؋u}hC@IY3Uh1@uUWu upt8u W@}ËUh1@u@UWE *@x"uw\tNj}É=*@u3UPWE *@x-uwvE}uNj}Ã} =*@u3UWjjPu 2@9Es3Yt!u Yh1@Wu }ËE UW} f1@hGUWRf=1@t8WiYE } uhX@΁YWY}WY1@uu u UWuuu(j jtuYG*@PWx?t7RYhUu E }UW}h1@W0ha@h1@ucYu2@! 2@^}UPWVS},Eu sCEu Vu݋uɋ]u}Uh1@uUWu uu utY*@xWP7YYw}t 2@9Erjd%Y9Es upYYW}t 2@9Erj<%Y9Es uHYY}Uhk@uUWVS}ul@SYSh1@uYuSY8u hq@Yj6]u}UW}Wh1@uYtWh1@uY}UWVEh@EPcE0h@Vt VEP?EEth@VuEPh@x|UE U@+BU B U+B UhN08=*@u%=*@j0.YEP#Y-*@ NEN0`E=ct>=XEE@RRu؊RtxEs=d[=uC=stE=o8EEpu@}}EEb=xWEuE؊EuV!kE G0‰E=0=9~EF8tE9E|Nu؋E+UWV} }u 0E mʚ;E}| EEEE-ʚ;E}E@0G OE R0ˆEE9EڋuOƹ R0ˆƙE @=0tO0E @;wONju}UWV}E +Nj;5*@~5*@=*@~ 0E=-u=*@}GPYN *@*@+ƉE=*@u EPYM} GPYN}=*@t EPkYM}u}ÐUPjjEtuj@@@=u jPÐ 3Ð)ÐUPjju\ =t} | 29E |4/@ ËE 9Eu4/@Eu YE4/@u ju UE PuUWVS3h@k YEuE@j/ut@E|PuW u |P' 4/@=td=t$= tV= t8=u2FwBVYDž|@|DžxTCwt 4/@ hlpø9x|4/@xxt|xBM t ɉ u|Ph@4 xUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3/ÐUW+t7uu=Nj}ÐU=@uh @h@} @5@YU=@t5@Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@ @u35@YUWuhh*@_ =.@WQY=.@WBY=:j EPW EW YPj:W 9Eu`WY}| `9E~aE.@t4=:t*j EPW EW YPj:WL 9Et3}WY}| `9E~aE.@=.@=.@W^Y=.@WOY=.@W@Y=.@G?t =,u?tG=.@.@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuOEtE+E؋E)F>}3V )@+V;}VOY}u +gEEvÐÐ"ÐUWV@`@94/@s 4/@<$@uYtVuj jh@j WYPWj jh!@j u}Ð>BÐ*.L$Q3ÐWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W YjjG P GGg G tg }ÐUWV}uW YG uG tO G Dt1&@"u}F @tV Y;5)@rGGG tG )@+GPwG P | GG듸9tO O G tg aU}u3jYEhj EEE}t6E9Ev)EE&E+EEEEEMuj h.@Yuj YufYj YjVYE}| ujj } }}}t EEP!YEE'Ujh.@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_U WVS}uE} tE 8$Ei$@u5GEEi$@uE=+t =-u EGEu309Et "G=xt G=XuEi$@tEEi$@t E-0#Ei$@t E-WE-7E;| 3]u}Ãu;09Eu1Gi$@tG=xt G=Xu EEi$@t E-0#Ei$@t E-WE-7+EGEi$@tEEi$@t E-0#Ei$@t E-WE-7E;|} tE 8}tD$Pt$Ð5*@t$ t$  Ð; ^ t3Ð T$tÐ+* Ð! Ð 3Ð 3ÐV|$3O|$ ыt$ D$^ø< Ð  3ÐUWV}u;hp&@YEt Eu =l&@t3txEy&@l&@h&@EP"uEPjEP|>h~PW =uh~Phh$@ 3WYkUWVS}*@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_ÐÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐL$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W)@UW&@;=)@r3}ÃG uUW&@ WY;=)@r}UWV}tlG t6G t3WVYG PY}4/@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG )@9GGGU= uQWY=E}G %=u7EEjEPG P =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G )@+G?}3W )@+W;}W{Y~'SVG P ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G )@+G?}3W )@+W;}WY3UWV}G G u}}&u|5@9@GW )@*h YGt@O G W)@GGVYtG uO @u}G =@WR)@UWV}G )@+G}G )@Wu};7}7𐐐3ÐU4/@EEPhTu } E4/@3ø6>Ð*ÐWV|$ t$L$Njʁ^_øÐT$*@Ru *@+D$øT$*@3øÐ0 NL$0 :L$0+L$0L$0 L$05Ã%3ÐÐ4/@Ðd@@(#)csh RTS 5.3b of Jul 8, 1988@@@@../usr/ucb/bin/usr/bina.outstatus0HOMEhomeMAILmail/etcpathPATHshell/bin/csh/tmp/shverboseechoargvargvprompt# % /etc/cshrchome/.cshrchome/.loginverboseechologout pathhomehome/.logoutstatus prompt%d? verbosemailYou have %smail. new %s in %s. New mailMail@@ @\'`"AmbiguousUnmatched %c '`" Word too longargvargvargv10No file for $0argvVariable syntax10-*Subscript out of range*htrqxBad : mod in $$\'`"\'`"<< terminator not found<<Line overflow$\`<<Line overflow1 @. status%s: @% @pathNo match/.Command not found/bin/cshshellshellshell/bin/csh/bin/shecho pathT+q+++||&&|^&=<>Divide by 0Mod by 0!~(Expression syntax{Missing }}fork{}statuserwxfdzoMissing file name0status0+-*/%()!~^|&<<>>==!=Expression syntaxA>Bt@@@@RA@RASBARARA@RARA@BBBBBBBBBBBBBBBB:No args on labelstimenohupToo few argumentsToo many argumentstimeniceCan't from terminal--Can't from terminalhomeNo homecdpath/ aliasunaliasToo dangerous to alias thatnewgrpnewgrp/bin/newgrpnewgrp/usr/bin/newgrpnewgrpNot login shellthenImproper thenthenSyntax errorNot in while/foreachstatusExpression syntaxInvalid variableWords not ()'edNo matchExpression syntaxNot in while/foreachNot in while/foreach? thendefault'"then/endif not foundendif not foundendsw not foundend not foundlabel not foundNo matchPATH==%o Improper mask @ @`{[*?.noglobnonomatchUnknown user: %shomeMissing ]Missing }Missing ]Missing ]Missing ]Arguments too longPathname too long{{}No matchAmbiguousUnmatched `No more processes``Word too longToo many words from ``historyhistory10historyhistory%6d @%s # '`" ;&<>()| Unmatched "'`Word too long htrqxVariable syntaxExpansion buf ovflo:^$*-%Bad ! formNo prev sub Bad substituteNo prev lhsRhs too longBad ! modifier: Modifier failedSubst buf ovflo-$*Bad ! arg selector(=: \ }No prev search: Event not foundignoreeofThe terminal was found in raw mode. It has been reset. Use "logout" to logout. Use "exit" to leave csh. Out of memory%s Undefined variableh@9>[[[[Alias loop;& Too many )'s&;& Too many )'s&Too many ('s<>()Badly placed (&!Missing name for redirectAmbiguous output redirectCan't << within ()'sAmbiguous input redirectBadly placed ()'sInvalid null command5@%d.%d%d:%d:%d%d ;vQ-status0%d child()nice+-nohupstatus/dev/nullnoclobberNo more processesCan't make pipe%s: File exists1=Syntax error(Missing )pathpathhistcharshistcharsSubscript errorSubscript out of range+-<>Syntax errorpathExpression syntaxBadly formed numberNo matchhistcharsargvNo more words.):PATH+-childchild%d: %s: Sig %d -- Core dumped -statusstatus0%s: Exit status %s statustimetimeu s %d%%Interrupted%6d %s @@K8@;@?@7@7@7@~>@7 @D@:@R>@7@7#@%(@;-@<5@D:@:?@,\G@9J@9Q@79X@B]@6c@6j@O&q@?x@|@ F@R@=@;@@)G@9@'@@@"=@ @@@@@@@@@@ @ @ @ @@@ @'@,@@@O@X@a@t@{@@@@@@aliasbreakbreakswcasecdchdircontinuedefaultechoelseendendifendswexecexitforeachglobgotohistoryiflogoutnewgrpnicenohuponintrrehashrepeatsetsetenvshiftsourceswitchtimeumaskunaliasunhashunsetwaitwhile@breakbreakswcasedefaultelseendendifendswexitforeachgotoiflabelsetswitchwhileHangupQuitIllegal instructionTrace/BPT trapIOT trapEMT trapFloating exceptionKilledBus errorSegmentation violationBad system callAlarm clockTerminated(null pointer)/bin/shPATH:/bin:/usr/binsh/etc/passwdrrUnknown error: d@l@v@@@@@@@@@#@5@F@X@d@z@@@@@@@@@ @@+@:@R@_@u@@@@@@@@@*@8@Q@n@@@@@@@@ @ @4@I@Z@g@}@@@@@@@@ @$ @5 @K @[ @i @ @ @ @ @ @ @ @ @ @ @ !@(!@?!@f!@!@!@!@"@"@""@+"@4"@="@F"@O"@X"@a"@j"@s"@|"@"@"@"@"@"@"@"@"@"@"@"@"@"@#@#@#@&#@0#@:#@D#@N#@X#@b#@l#@v#@#@#@#@#@#@#@#@#@#@#@#@#@ $@$@*$@;$@S$@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/=@=@)@=@$?@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0)@=@bin/cal100755 3 3 35500 4201127270 6540 37777777777 Li! / |@.text/ .data|@|@ |0@.bss0@0@ .comment0;ÐET0@RU RP Pa/jÐUPWVSE=t1= =uXE pEYEE p6YLhd@Yd@hd@Y`@PBU`@PlhN@Yj.Y9E 9E'WEH4@hk@ h@hu@jh@Wu 3j@P|j,.YE pCY|'~h@"Y]u}hy@ YWh}@h@Y33ƃ@C|4@h@F4@h@F4@h@h@h@h@h@|jHh@WFPjHh@WFPjHh@WFP3jH@PpH| &h@Yj,YUWVS3]#0|9~ 3]u}k -0CuӋUWVu} FuF OuE @ N= uOuFuh@qu}UWVS]u Y@@E @PY@+ǹ=t=t@@ @F;u|ǹkؾauE@=u E @ ~ƹ @0Cƹ R0‹ӈCCGu 3EE؉]FE@;~]u}UWV}GWЋ~"-d+-A~ƹ‹u}ÐUPWE E<@u<@t* <@h0@uuy <@ t }Ë T$tÐUW(E+@EEPY=@iGQiWkW<E=4@u=8@uWEPEP< 4@E8@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<<@E@@ƙ5D@EpT@}| FFFtmnEN}|ۉ5P@}=X@ƹtmn=nu f@3 u@+Fu@;}f@GH@5L@\@<@u}Ëƹtmn)EFƹtmn9E}@Dž\sEtC0UE}u Et E.EE艅@ E@uEE E -ݝHN%=L%uBHu9O%=u Dž Dž,@CEO%=uDžl@@Dž\L% H ‰PDž(Dž0Dž4Dž<@Dž$@@PDP<9E}E<PLHQ ؃@t-E9D~ =0tDžlB@Dž\ Ek E-0GEQ@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl2@Dž\?E2ETMDžl5@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhEQ@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hX@YEt Eu =T@t3txEa@T@hg@EPbuEPSjEP |>h~PW =uh~PhP@ 3W YkUjuuuu u#Ujuuuu uU$WVS}`@E`@Ex@s3UtE]`@E@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁`@@v@E@tq@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+`@u`@1}tCF0N<9`@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G D@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W D@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}0@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;=@@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG D@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G D@+G?}3W D@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G D@+G?}3W D@+W;}WY3UWV}G G u}}&uh@p!@GW D@*h YGt@O G WD@GGVYtG uO @u}G x%@WRD@UWV}G D@+G}G D@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø62ÐU WVSE9ET=$@u<(@ $@$@ (@@(@@$@@ @E@3؋=@E&;5@$@E@E=w= @jY@@;t?3Ee ƹ3tL3+‰EEE2@+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @@0E+E-@@;t@@@$@~Љ@;5@v@@@ 9= @u @ @G(=@95 @u= @7tލ;r;l%;UWV}5@%@9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$,@Ru ,@+D$ø!T$,@3øÐ@ÐT$À@@(#)cal 5.3b of Jan 27, 1988 S M Tu W Th F S@@ @@@@@#@*@4@<@E@JanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberusage: cal [ [month] year ] %s %u %s %u %.3s %.3s %.3s %s %s %s Bad argument %s 4@8@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF*LI6y)7Q)!u7-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@%@%@@@%@'@3.1bS03.1bS0bin/cat100755 3 3 44140 4201127274 6554 37777777777 L! 1 |@.text1 .data|@|@|2@.bssP(@P(@ .commentPHÐETP(@RU RP Pa1jÐULWVEEE_=?=etE=st.=tt/=ut=vuI@'jhP$@% @@@h@u u u}t#=@uh@h`$@j0YEP]$@P }#=@uh@h`$@OjU0YE9@uEE@E Eo}uE =-uE Bu@$@jh@E 0H%uR=@E 0h@h`$@ =@E 0h @h`$@ EPG P |E%= t|E%=`tlEU;u`EU;uT=@u%}tG@E Ph@h`$@  W.&YthI@h`$@ET=@tWPWYE@$@t1hP$@h&YW%Yt=@uh[@h`$@@E E9@}\$@ RhP$@&Y\$@% @t3=@u#5@hm@h`$@+ h@YEu.Yu}UWVE@ SVh(@j- @;t:=@u$V5@h@h`$@h@0Yu}hh(@W" 3UWgq!@Wubq!@ uT P$@}hP$@jM]%T$@MT$@ P$@}hP$@j-6%T$@-T$@q!@Wt P$@T$@T$@׈ t uv=@u P$@T$@T$@׈ P$@}hP$@j^$T$@^T$@ P$@T$@T$@ׁ@I ud=@t' P$@}hP$@j$M$T$@$T$@ P$@}hP$@P"$T$@T$@׈}c P$@}hP$@j^#T$@^T$@ P$@}hP$@5@P#T$@T$@ׁ@u P$@}hP$@jM#T$@MT$@ P$@}hP$@j-`#T$@-T$@ P$@}hP$@jx9#T$@xT$@E} ufY EP@p3}ÐUPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWuE=@tOLjEE E 0`YPE 0j) h@EYPh@j) jEPj) E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0}YPE 0j) h@bYPh@j( jEPj( @?GE @@ @@8E @ @@@u@@@UWV@X@90(@s 0(@<@uYtVuj3( jh@j"( WqYPWj( jh@j' u}ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW!YG uG tO G Dt1@$@"u}F @tVY;5`'@rGGG tG d'@+GPwG P  | GG듸9tO O G tg aUWV}G tG t w %Yg E GuaO }8u,@0@GW d'@GGu}G 4@WRd'@G Wd'@Vw!YtO @UWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸%3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  d'@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlL!@Dž\9PtP؉PNKPPoYh~PW =uh~Php!@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}T(@ET(@E#@s3UtE]T(@E#@E#@E#@r5E#@r$@E$@AE $@s6EE]@)EE($@r݋EE 9P܃}t؁T(@(@v(@E0$@te(@r05}fEf fEmE]mE܉E@0Ee 8$@];r&=5|+T(@uT(@1}tCF0N<9T(@]Ћuԋ}ËEE0]@EEsEE 9P EEEE$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E$@E5$@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G d'@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W d'@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}P(@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wd'@UW@$@;=`'@r3}ÃG uUW@$@ WY;=`'@r}UWV}tlG t6G t3WVYG PY}0(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG d'@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G d'@+G?}3W d'@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G d'@+G?}3W d'@+W;}WY3UWV}G G u}}&u,@0@GW d'@*h!YGt@O G Wd'@GGVYtG uO @u}G 4@WRd'@UWV}G d'@+G}G d'@Wu};7}7𐐐3ÐU0(@EEPhTu } E0(@3ø6FÐ2ÐU WVSE9ET=D(@u@P@\@r@~@@@@@@@@@@#@2@J@W@m@|@@@@@@@@"@0@I@f@@@@@@@@@@,@A@R@_@u@@@@@@@@@@-@C@S@a@}@@@@@@@@@@@ @7@^@@@@@@@#@,@5@>@G@P@Y@b@k@t@~@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@@"@3@K@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFj**v*****R*^*************u**************************u****m****"**-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@4@4@`'@4@L6@3.1bS03.1bS0`'@4@bin/chgrp100755 3 3 43760 4201127275 7120 37777777777 L! 02H @.text02 .data@@3@.bss'@'@H .commentGÐET'@RU RP P1jÐUW9E}h$@h#@? j1YE pYtE pY>E pSYT(@u E phF@h#@ jZ1YT(@f@fx(@LhX(@E 4 x(@P`(@PE 4 }E 4Y|(@G;}|5|(@0Y}UW!@u3}ËEEuܸUPWVS}3fEf<-0k fU;sh`@h#@jd0YfuGuƋ]u}ø*03ÐUWV}+ tW60 u?Ƌu}ÐU=@uh@h@5%@5@ YU=@t5@&Y@U='@t5'@-Y'@='@t5'@-Y'@=@t5@f&Y@UEEt;E uEtEEU=@uh@h@O$@u35@YUE='@u''@j5'@'@ EuYEu5'@5'@/ Eu3u#YE'@9EEUJ= uE8%'@5'@5'@,'@|juu }bE'@j:uEEt;EuEtEEE'@j:uEEt;EuEtEEEPY'@j:uEEt;EuEtEEEj uEEt;EuEtEE='@u#(@j5(@'@tT'@'@E(@H9EE%(@(@P5'@>+'@uJ='@t5'@*Y'@='@t5'@*Y'@3'@'@EEE8uEEEUj,uEEt;EuEtEEEE E'@eUPWVS}E!@uJG!@u=+t =-u EG!@u 3]u}ø0+Ëk 0+G!@uރ}t뾋븐UWEE EP&YtujW Nj}UuQ)YÐUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P& E}|EE}øUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V &@+V;}V$Y}u +gEEvUWV@@9'@s '@<@u}YtVuj) jh@j) WQYPWj( jh@j( u}ÐUWVS}u ]GF:u Nj]u}M}3UW}WP YjjG PP$ GGg G tg }ÐUPWEEE@ uE@ t(EH uuu [ E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG Pu# +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P # ECG t8WYG t g GGuu G P" E9Eus3lUWV}uW5!YG uG tO G Dt1#@"u}F @tV6Y;5&@rGGG tG &@+GPwG PQ | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}u ;u 3u}F;t N+Gu׸%3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  &@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoYh~PW =uh~Ph!@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}(@E(@E(#@s3UtE](@E0#@E8#@E#@r5E#@r#@E#@AE#@s6EE]@)EE#@r݋EE 9P܃}t؁(@R(@vR(@E#@t(@r05}fEf fEmE]mE܉E@0Ee #@];r&=5|+(@u(@1}tCF0N<9(@]Ћuԋ}ËEE0]@EEsEE 9P EEEE#@MU]vEu}fEf fEm]mE܉EFUR0EMm]E#@E5#@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G &@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W &@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}'@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W&@UW#@;=&@r3}ÃG uUW#@ WY;=&@r}UWV}tlG t6G t3WVYG PY}'@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG &@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G &@+G?}3W &@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G &@+G?}3W &@+W;}WY3UWV}G G u}}&u(@,@GW &@*h!YGt@O G W&@GGVYtG uO @u}G 0@WR&@UWV}G &@+G}G &@Wu};7}7𐐐3ÐU'@EEPhTu } E'@3ø6FÐ2ÐU WVSE9ET='@u<'@ '@'@ '@'@'@'@'@'@'@E@3؋='@E&;5'@'@E@E=w='@jY'@@;t?3Ee ƹ3tL3+‰EEE2'@+'@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5'@'@0E+E-'@@;t'@'@'@'@~Љ'@;5'@v'@'@'@ 9='@u '@'@G(='@95'@u='@7tލ;r;l%;UWV}5'@%'@9u5'@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ'@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$'@Ru '@+D$ø!T$'@3øÐ'@ÐT$@@(#)chgrp 5.3b of Jan 27, 1988chgrp: usage: chgrp gid file ... chgrp: unknown group: %s chgrp: numeric group id too large /etc/grouprrUnknown error: @@@@(@@@J@d@v@@@@@@@@@@@,@;@K@Z@k@@@@@@@@@ @@/@@@[@n@@@@@@@@ @D@^@g@p@y@@@@@@@@@#@,@@@R@`@x@@@@@@@ @@%@.@A@J@S@f@o@x@@@@@@3@q@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@@&@0@:@D@N@X@b@{@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFIYYYYYYYYYp!xpsxlE-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@0@0@&@0@(2@3.1bS03.1bS0bin/chmod100755 3 3 32064 4201127277 7104 37777777777 L! ) \ @.text) .data\ @\ @ \*@.bss$@$@ .comment$4ÐET$@RU RP PA)jÐUPWVE9E}h @h4@h(YE 4h,@V=uWVh @jjE4 @h' @h4@` uuh4@M }t u(YEE P(@V0@PPV=uRVh @jjE4 @h' @h4@ uuh4@ }t u (YEG;}u'Yu}UWVSEE(@=0T(@=9A]u}Á$V˒NIE? E0( (@E-r|=w|$ @}t'#ދ=+t,=-t,==u,!E E(@(@몋 E!E (@(@=,td(@H(@8tLjh @jjE4 @h' @h4@K uuh4@8 }t u{&YE$l3EE3EE(@=gt"=ot*=utE% E%8 E%؁ (@EUWV3׃0‹(@(@0|7~֡(@8tLjh @jjE4 @h' @h4@$ uuh4@ }t uT%YƋu}UW3(@=at-=gt=ot=uu& 8(@붅uNj}U(@=+t=-t ==t3á(@(@UE4 @h' @h4@B uuh4@/ } t u r$YÐN$3ÐUPWEEE@ uE@ t(EH uuu E@ t }Ë#3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  8@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY @Dž\Dž  Ek E-0GEE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl& @Dž\?E2ETMDžl) @Dž\EE C~u~E܉TMs؍gh݅H @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H @u+-hJhEE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hL@YEt Eu =H@t3txEU@H@h[@EPbuEPSjEP |>h~PW =uh~PhD @ 3W YkUjuuuu u#Ujuuuu uU$WVS}L@EL@El@s3UtE]L@Et@E|@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁L@@v@E@t]@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+L@uL@1}tCF0N<9L@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G 8@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 8@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}$@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=4@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 8@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 8@+G?}3W 8@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 8@+G?}3W 8@+W;}WY3UWV}G G u}}&u@@GW 8@*h YGt@O G W8@GGVYtG uO @u}G @WR8@UWV}G 8@+G}G 8@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø62ÐU WVSE9ET=@u<@ @@ @ @@@@ @@E@3؋=@E&;5 @@E@E=w=@jY @@;t?3Ee ƹ3tL3+‰EEE2 @+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@ @0E+E- @@;t @ @ @@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@% @9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ @Ru @+D$ø!T$ @3øÐ@ÐT$` @@(#)chmod 5.3b of Jan 27, 1988 @ @ @& @Usage: chmod [ugoa][+-=][rwxstugo] file ... can't access %s can't change %s invalid mode invalid mode ERRORWARNINGchmod: %s: 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF ,)  Y i i i i i i i i i    1  |  U  -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@4@@D@3.1bS03.1bS04@@bin/chown100755 3 3 42514 4201127301 7115 37777777777 L̶! /P`@.text/ .data`@`@`0@.bss<%@<%@P.commentE pSY)@u E ph@hL!@ j.Y)@f@f)@Lh)@E 4)@P)@PE 4 }E 4'Y)@G;}|5)@G.Y}UW]@u3}ËEEuܸUPWVS}3fEf<-0k fU;sh@hL!@j-YfuGuƋ]u}ø-3ÐUW+t7uvu=Nj}ÐU=@uh@h@"@5@YU=@t5@,$Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@!@u35@YUWuhh@%@_ =B)@WQY=F)@WBY=:j EPW^ EWN!YPj:W 9Eu`WY}| `9E~aEJ)@t4=:t*j EPW EW YPj:Wt 9Et3}WY}| `9E~aEN)@=V)@=Z)@W^Y=^)@WOY=b)@W@Y=F)@G?t =,u?tG=R)@B)@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V P$@+V;}Vk%Y}u +gEEvUWV@D@9%@s %@<@uIYtVuj) jh@j) WYPWj) jh@j) u}ÐUWVS}u ]GF:u Nj]u}M}3UW}W!YjjG P% GGg G tg }ÐUPWEEE@ uE@ t(EH uuu ' E@ t }ËUWV}uW%#YG uG tO G Dt1,!@"u}F @tV& Y;5L$@rGGG tG P$@+GPwG PA | GG듸9tO O G tg aUWV}u ;u 3u}F;t N+GuU WVS}uE} tE 8$E]@u5GEE]@uE=+t =-u EGEu309Et "G=xt G=XuE]@tEE]@t E-0#E]@t E-WE-7E;| 3]u}Ãu;09Eu1G]@tG=xt G=Xu EE]@t E-0#E]@t E-WE-7+EGE]@tEE]@t E-0#E]@t E-WE-7E;|} tE 8}t%3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  P$@EEts%9EtiGEt %9Eu+EE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl8@Dž\9PtP؉PNKPPoY@Dž\?E2ETMDžlA@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE]@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hd @YEt Eu =` @t3txEm @` @hs @EPbuEPSjEP|>h~PW =uh~Ph\@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}h)@Eh)@E @s3UtE]h)@E @E @E @r5E @r @E @AE !@s6EE]@)EE!@r݋EE 9P܃}t؁h)@)@v)@E!@ty)@r05}fEf fEmE]mE܉E@0Ee $!@];r&=5|+h)@uh)@1}tCF0N<9h)@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5!@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G P$@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W P$@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}<%@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WP$@UW,!@;=L$@r3}ÃG uUW,!@ WY;=L$@r}UWV}tlG t6G t3WVYG PY}%@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG P$@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G P$@+G?}3W P$@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G P$@+G?}3W P$@+W;}WY3UWV}G G u}}&u)@-@GW P$@*h!YGt@O G WP$@GGVYtG uO @u}G 1@WRP$@UWV}G P$@+G}G P$@Wu};7}7𐐐3ÐU%@EEPhTu } E%@3ø6FÐ2ÐU WVSE9ET=0%@u<4%@ 0%@0%@ 4%@$%@4%@ %@0%@$%@,%@E@3؋= %@E&;5$%@0%@E@E=w=,%@jY$%@@;t?3Ee ƹ3tL3+‰EEE2$%@+,%@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5,%@$%@0E+E-$%@@;t$%@$%@$%@0%@~Љ %@;5 %@v %@(%@ %@ 9=,%@u %@,%@G(= %@95,%@u=,%@7tލ;r;l%;UWV}5 %@%$%@9u5,%@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ(%@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$8%@Ru 8%@+D$ø!T$8%@3øÐ%@ÐT$d@@(#)chown 5.3b of Jan 27, 1988usage: chown uid file ... chown: unknown user id %s chown: numeric user id too large /etc/passwdrrUnknown error: H@P@Z@t@@@@@@@@@@*@<@H@^@j@v@@@@@@@@@@@6@C@Y@h@t@@@@@@@@@5@R@m@|@@@@@@@@@-@>@K@a@v@@@@@@@@@@/@?@M@i@x@@@@@@@@@@ @#@J@o@@@@@@@@!@*@3@<@E@N@W@`@j@t@~@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@@7@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFN Z |y 6 B f  Yg Y  Qg-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@2@2@L$@ 2@3@3.1bS03.1bS0bin/chroot100755 3 3 36154 4201127303 7302 37777777777 L޶! & h@.text& .datah@h@h'@.bss\@\@ .comment\<ÐET\@RU RP PM&jÐU9E}h@Yj&YE UEHU и9uE UJE pY}E pYj%Yth@aYj%Yh@vY}h@?Yj%YE @PE px=<@~ d @9<@<@4(@h@ 5<@h@j.%YÐ  %3Ð=$ÐU5\@u u ÐÐUWV@d @9<@s <@<(@uYtVujs$ jh"@jb$ WeYPWjO$ jh%@j>$ u}ÐUPWE Eh@uh@t* h@h\@uu h@ t }Ë;#UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  p@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlX@Dž\9PtP؉PNKPPoY Ek E-0GE}@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl^@Dž\?E2ETMDžla@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE}@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph|@ 3W YkUjuuuu u#Ujuuuu uU$WVS}`@E`@E@s3UtE]`@E@E@E@r5E@r@E @AE,@s6EE]@)EE4@r݋EE 9P܃}t؁`@@v@E<@tq@r05}fEf fEmE]mE܉E@0Ee D@];r&=5|+`@u`@1}tCF0N<9`@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5$@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G p@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W p@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}\@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWL@ WY;=l@r}UWV}tlG t6G t3WVYG PY}<@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG p@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G p@+G?}3W p@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G p@+G?}3W p@+W;}WY3UWV}G G u}}&u@ @GW p@*h YGt@O G Wp@GGVYtG uO @u}G $@WRp@UWV}G p@+G}G p@Wu};7}7𐐐3ÐU<@EEPhTu } E<@3ø62ÐU WVSE9ET=P@u @V @c @y @ @ @ @ @ @ @ @ @. @< @U @r @ @ @ @ @ @ @ @ @$@8@M@^@k@@@@@@@@@@(@9@O@_@m@@@@@@@@@@@@,@C@j@@@@@@&@/@8@A@J@S@\@e@n@w@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@.@?@W@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF 85"euuuuuuuuu #=   a#-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$@$@l@$@X&@3.1bS03.1bS0l@$@bin/cmp106755 0 2 33310 4201127316 6560 37777777777 L"! L,   @.textL, .data @ @ -@.bss@@ .comment6ÐET@RU RP P,jÐUWV9E}h @h@j+YE P@@=-u@@=su @ @E ME P@@=-u@@=lu @ @E M9Eth @h@fj4+YE P@@=-u@Pu  @@EhL @5@H  @u)=@ @t5@h @h@ j*YE P@hN @5@@u)=@ @t5@h @h@ jk*Y9E~E p KY@9E~qE p0Y @^ @}5 @Y @P@=u,E P@5@h @h@  j)Y @=@u^@}5@=Y@P@=u,E P@5@h @h@ jr)Y @= @u uD @=@tj9)Yj1)Y=@ @uj)Yu,E P@5@h @h@ j(Yu 5@h @h@ j(Y9@ @u-5D @5H @5@E phP @]j(Y@VW5H @hr @6H @ @}5 @Y @P@@}5@Y@P@;UEE E=0u#EEEUE-0EE@uҋEUh @h@j'YU=@ @t5@h @h@ jc'YU5@h @h@p j>'YÐUPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@EX@r5E`@rl@Eh@AE@s6EE]@)EE@r݋EE 9P܃}t؁@ @v @E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEp@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ex@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u$@,@GW @*h!YGt@O G W@GGVYtG uO @u}G 4@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裘@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$ @@(#)cmp 5.3b of Jan 27, 1988rr%s %s differ: char %ld, line %ld %6ld %3o %3o usage: cmp [-l] [-s] file1 file2 cmp: cannot open %s cmp: EOF on %s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF  85  " e u u u u u u u u u  # =    a # -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@D@D@@L@ @3.1bS03.1bS0@L@bin/comm100755 3 3 33240 4201127320 6727 37777777777 L4! `,`  0 @.text`, .data0 @0 @` 0-@.bss@@ .comment6ÐET@RU RP P,jÐU@T @@U @@W @9EE P=-E PBEE P=1t=2tK=3uh@v=@um@EM@3Ɉ @>=@u5@@UMhx @h@1j*YE PBP:ME M9E}hx @h@j*YE pY@E pY@P5@}jy*YjP5@[}j6*Y P5@7}FjP5@t}j)Y PPt$=tP=ujPcjPP5@5jPP5@VajP5@}j(Y UWV3-E ֈ= t~E 3u}GE E} u*Y EP@uUE =t=t=u=@tÃ=@t =@uuE H4@hZ @ Uuu u u)}j(YUWVEHEE HE u 3u}GF;t;}۸UPE=-uEPu E@4h` @uEuuhb @h@ j]'YEUhx @h@mj;'YUPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E0@r5E8@rD@E@@AE`@s6EE]@)EEh@r݋EE 9P܃}t؁@@v@Ep@t@r05}fEf fEmE]mE܉E@0Ee x@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEH@MU]vEu}fEf fEm]mE܉EFUR0EMm]EP@E5X@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}p@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@ @GW @*h!YGt@O G W@GGVYtG uO @u}G @WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUp@EEPhTu } Ep@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @x@@t@@x@@E@3؋=t@E&;5x@@E@E=w=@jYx@@;t?3Ee ƹ3tL3+‰EEE2x@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@x@0E+E-x@@;tx@x@x@@~Љt@;5t@vt@|@t@ 9=@u t@@G(=t@95@u=@7tލ;r;l%;UWV}5t@%x@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ|@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐp@ÐT$4 @@(#)comm 5.3b of Jan 27, 1988 %s%s rcomm: cannot open %s usage: comm [ - [123] ] file1 file2 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF * LI   6 y  )7 Q )  ! u 7 -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$@$@@,@ @3.1bS03.1bS0@,@bin/copy100755 3 3 40760 4201127321 6754 37777777777 LN! 4h x@.text4 .datax@x@h x5@.bss!@!@.commentAÐET!@RU RP P]4jÐUWVSE '@j{Yf'@'@PgYfE'@f'@AE =-uE BUEE UEM M MG;}|EHE=}0}t 5@h@h@ j3YEE@3|$@E FC҈uN5&@N=/u|$@w|%@]FC҈uN5&@N=/u|%@w9E~'9x$@uh@h@U j2Y@9t$@u9x$@tF'@|$@F=/u'@Cuh|$@h@5'@W tG;}jZ2Y]u}ËE=O=atE=lt~=m=ntx=ot}=r=v'@E@=duE'@'@'@'@u'@i'@]'@Q'@E'@9EPh@h@ 5@h@h@ j=1YEEkUh4$@h|$@ =u t$@8$@%t$@hT$@h|%@ =u x$@X$@%x$@U Wx$@E8$@%E<$@E>$@EH$@EL$@E9x$@uWh)@h&@&h|%@h&@f h&@I Yth&@h0@h@ j0Y@9x$@tB9x$@uh|%@hD@h@Z }h|%@h^@h@> jh|$@.uh|$@h{@h@ 볡&@E졐&@Eh'@h@F h'@h@, Et$@==tJ= tC=@t_=Pt5=`t.={h|$@h@5'@ tTMh|$@h@5'@ t1Y*='@t!h|$@h@5'@} tE죌&@E裐&@Wjh'@u$ =t3f'@ftظYW$)Y9ENuh|%@=uh|%@h @h@z ='@t1uuh|%@ =uh|%@h$@h@@ ='@EPh|%@& h|$@h@h@ 5t$@h|$@h@h@U@$@P8$@Ph|%@3 =uC='@t!9!@uh>@h@h|%@hm@h@w ='@t;>$@P<$@Ph|%@ =uh|%@h@h@1 ='@thH$@h|%@ox$@9t$@u18$@'@#X$@;u@$@`$@;Ch|%@h@h@ h|%@YUjh'@u;" =t3f'@ftظUWV&@@=|%@vh|$@h@h@O j+Y=&@'@/GGF҈uO=&@&@@=|&@vh|%@h@h@ j}+Y=&@'@/GGF҈uO=&@u}U WVS@9x$@u 5&@/F'@FC҈u9x$@='@t"h|%@h@h@f ]u}4$@T$@;uF6$@V$@;tу='@t+h|%@ Y=uh|%@h!@h@ 띸P9t$@='@th|%@h|$@#= 8$@Ph|%@E=uh|%@h9@h@ +u$Y='@9x$@>$@P<$@Ph|%@ =h|%@h^@h@+ g='@th|%@h|$@W=Ajh|$@(E=uh|$@hr@h@ e8$@Ph|%@BE}%h|%@h@h@ u#Y$='@9x$@>$@P<$@Ph|%@ a}$h|$@h@h@2 h|%@YTWh!@u( ;t$h|%@h@h@ h|%@Yhh!@u{ uu6#Yu-#Y='@LhH$@h|%@5UPW}truu h@h@xjEPj  =t3}E=yu3E= tjEPj =tދ뿃='@tuu h@ 뜸(b'ÐN'3Ð6'3Ð '3ÐÐ&3Ð&ÐUPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}u ;u 3u}F;t N+GuUEu$juh@h@h@ujYjj1%Ejj"%EEP YE;Et 9Euuj$uj$9EuEËEU5!@E Pu Ð;%$t3Ð$3ÐUWVS}u ߋG8uOGF҈uË]u}ø<$Ð ~$3Ðf$ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVKYF Dt*F uuj E+EP` tVCYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}#@E#@E(@s3UtE]#@E0@E8@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁#@2$@v2$@E@t#@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+#@u#@1}tCF0N<9#@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}!@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øj L$tÐUW@ WY;= @r}UWV}tlG t6G t3WVYG PY}!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u'@+@GW  @*h YGt@O G W @GGVYtG uO @u}G 0@WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐU!@EEPhTu } E!@3ø6ÐU WVSE9ET=!@uFF-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@0@0@ @0@1@3.1bS03.1bS0bin/cpio100755 3 3 140640 4201127323 6754 37777777777 L! *<\@.text .data\@\@*\@.bss@@@@<.commentÐET@@RU RPb PAjÐUF@=F@tEfPfF@fEffF@fPfF@F@UWVSE 01Yh@8Yj22Yjj E P=-tLfL@jJmYfB@@y5+@DY@=@[hh1@15+@uh8@j7,fB@ifB@fB@ofB@pfB@fB@fB@fB@fB@hW@h@^D@hY@h@GD@=D@t =D@yhh[@0h@hb@j6 NfB@fB@;fB@fB@(fB@fB@fB@ fB@fB@fB@+@@f@`B@Pu5D@  5@@Yj5+@v;@th}@5+@+@D@hB@Pu5D@ 5@Yhh5+@ ;@th@5+@6fB@ h@u uB E=B@=i=o=pf=B@t!h@h@R.h@j4f=B@t h@,Y9@h@,Y@E-69=@.&$@@LPjI0LzB@~B@e5@j'0zB@~B@hhLhj@@!E PE =IuioPhq@j'E =Iu E=iuE =Ou6E=ot+hOh@ EPE Ph@jh'}t!hSh@ h@jA'UhZh@ u uh@j'U WVC@Eh<@hW: u 3u}WwYE9E}EH G=/t=.u G=/tWhvA@{wh@@Wj# {EA@@#ff@u3fL@f`tf tfu3fL@f\A@qhvA@!wY@fpA@fA@fdA@fA@ffA@f@@f^A@f@@f`A@fA@fbA@F@=F@tA@F@fF@flA@fF@A@F@fF@flA@fF@fnA@fA@fhA@bA@%=u A@3EF@=F@tEF@fF@frA@fF@EF@fF@frA@fF@ftA@fA@fjA@f=B@t u YUhvA@uhvA@uY@P5A@A@%PA@PA@PA@PA@P@@%P@@%Phqh@hD@L8UhB@hpA@hB@hjA@hhA@hfA@hdA@hbA@h`A@h^A@h\A@hW@hD@>4F@=F@tB@F@fF@frA@fF@B@F@fF@frA@fF@ftA@F@=F@tB@F@fF@flA@fF@B@F@fF@flA@fF@fnA@UWh@hvA@RLu3}bA@@#ff@u3fL@f`tf tfu3fL@UW}5@Wu3B@3t 3f=B@f=L@Wh@5D@< 5D@vY5D@hP6 D@@ tj~YP@sYHh@PKu"PWrh@9Y3,h@PJu h@9YPWrUPWVS}jh@WV uf=L@f=B@f=B@h@WOJh@W9JhA@WV=hEWYt=E9E} W\Ytݸ9Eu$Wh@3]u}EҸ9EWh@3hA@=~SW u3hA@W^Uf=B@t< A@t f=L@t fL@fuWUY}Wh@jf=B@ufhlA@F@=F@tEfPfF@fEffF@fPfF@F@Y;4A@Sh@3B@=puE`A@A@;u3^A@A@;u!hh6@h=@jXf=L@bA@@#=u fjA@EjA@PbA@PW3 }7E9E} SeYt˸9EuWh[@%3Eظ9EuWh|@3bA@PWj) fL@fufA@PdA@PWj?hlA@F@=F@tEfPfF@fEffF@fPfF@F@YPhlA@F@=F@tEfPfF@fEffF@fPfF@F@YPW 3EbA@PWk2}7E9E} S YtѸ9EuWh@3Eظ9EuWh@3fL@fufA@PdA@PWjUUWVS}u F@EEE9@u @3f=B@4F u5@j @i9Ef=B@EE= ~!@@4+@h@@jxYjE35@Eu@ E@P5@s E9EuA9Et'E35@t@9EvE35@UEEvEmhh@ h@jJ@9EuB@ EB@E9E~E+E@zB@E@E)E=@t=@u}~u@@@5@5zB@5@k E}I9EX9@@*9@@695@ @EuuSWv E+)E)@7=@*F@E]؋u܋}UWVS3EB@=u-@jjhD@ =u h @Y=F@WY==F@@9@|B@=tB@=u;jh7@WbN u'jLWhD@u \pA@@LEfB@ftB@=ufEGEE=quPvA@-\A@PWh\A@t 3vA@-\A@pA@‰EpA@u3Eu G @hA@=|(hrA@\Y|fpA@f~pA@=|3=uDG @f=B@tZh>@YMWsY=u =F@=F@EE9@|уt.ETtG @C=u hl@'Yuf=B@,~ h@YuRB@=u#hh@Rh@j!hh@/h @juWpA@PGLPhvA@s fB@pA@@ЋEEEF@E)@]u}pA@EPvA@-\A@RhvA@r fB@vA@-\A@@UE5@uzB@+@P% @E@jjhD@ E=tE@)F@EUhA@=|fhrA@F@=F@tEfPfF@fEffF@fPfF@F@Y|fpA@f~pA@=|3UWVS}u ~B@f=B@7F#@+@E;uWSGf=B@tluǹ3҉Ut#} EUE+E9UrG3EffUfHffUfPEOu܋]܋u}ÊF^Ouf=B@t׋}EEǹ3҉Ut:EtGEi} EUE+E9UrG3EffUfHffUfPEOuIEUE+E9UvUW}f=B@tE G@EG@hG@WA}U(W@@Pu @%= tt}t[9EuQ=t=uhi!@Y;hC!@xY.hh!@h!@js  h!@HYjgY}t$9Eu<9t 9u"}t"@%"@Ph!@(}tG"@N"@Ph+"@Aj}gY=D@uhT"@h@j D@u aY@(Ph"@=@@t h"@ZY=D@hV"@YY5D@hP P_[YHujfY}t3PPeHNj5@5@5D@hP = t=quj=fY5D@P|ZfUWVS}c=/uX;tThA@WR>=u9f=B@tWYt"/Ë]u}h"@Y/F>uu3ۋUPh"@h"@@Euh"@YjleYuhhB@ u$YtjBeYhB@YYD@ƀB@/U=@uE@B@=u8uj. @@@=2|@uj uu uj UB@=u#=@t5@j @EEEPUuuh=@= h=@N[YUB@=u#=@t5@j ,@EEEPUuuh=@G= 5@@h#@h=@O! h=@ZYh#@YUB@=u#=@t5@j @UE@U R;uEU ;u3UE&@ÐUE$&@E &@ÐUEEEPUh=@h#@O=&@t+=&@t"h=@5&@*h=@j uuh=@< h=@j h Yjd YÐUP(&@EE(&@EÐUPWVS}u ];v;wSVW a ]u};u};rG֊ FKu ONKuE빐UPuu E=uuu h.#@uh$#@uEUPuuu  E=uu uuhf#@uh\#@3EÐUPu \YE=uu h#@uh#@EUPWuu UunE@=+u E#@h4%@'u=&@&@&@&@&@&@&@&@h;%@w'u=&@&@&@&@&@&@&@&@hC%@#'u=&@&@&@&@&@&@&@&@BhJ%@&u &@hO%@&u &@hV%@&u &@hZ%@f&u &@h`%@C&u &@he%@ &u &@phl%@%u &@Mhr%@%u &@*hz%@%u &@h%@%u &@h%@q%u &@h%@N%u &@h%@+%u &@~h%@ %u &@^h%@$u &@>h%@$u &@h%@$u&@h$@jVCUE=dt=t=,5(&@WYUE=w|$P&@ød,𐐐UE=w |$`&@ÐUWVS}u G@Etu W&Ћu 3]u}u V%u  G@ C G@ɐUPjjgVEtujSVp&@@p&@=u;MjVPVÐUu(YPu u UWVSE,} t E u#hM*@ JYE t E uT'@E }W%GNEPR4&@vEPR4&@qEP4&@oEPR 4&@jjWEp I uhT*@W1 E 9P } GjWp  jWEp  jWEp wjWE 9P~ @- E@P GjWEPBR -jWEPBRw jWEp_  GE 9P| 5\'@W5X'@_uh]*@W uhi*@W jWE0  Guho*@W gEЋ@+BE9EE@@EE|pEkjWEpw Exu @- EЋ@+B@E9E| E@@EE| EE4jWu u5P'@W u5L'@W |jWEp gjWEPlR KEP 47@GFu,GGU J-%|=Tw|$`'@GE E u+EEE]u}À%uӋE E 믋GFu뻋GFu뫋GFu뛋GFu닋GFuxGFueUWVhx*@EYPt Pu#(@t DžPt&@% ht&@PtPh(@LFjh(@P$=t(P$*u8@PLYHu8H$E ;8tHEOYBH8L L@H*F+} T<8@Pj W.E GuЃ+uNhTPh&@O j@Pht&@ =(@t 5(@NYH(@$aKYUWVS}u ]H|m=wf|b$8)@ǹ@0FǙi+ǹd@0FǙkd+ǹ @0F R0‹FƋ]u}ÐP3ÐO3ÐUW} }WEP=G}ËGGUUPWVS}E:@uJG:@u=+t =-u EG:@u 3]u}ø0+Ëk 0+G:@uރ}t뾋븐UPWV9*@ueE9*@}#E *@ =-u E Au u}h*@E *@4$u *@΋E *@ *@=+@:tWu=*@tOLjEE E 0BYPE 0j~M h*@BYPh*@jcM jEPjSM E *@ *@@*@u*@*@?F=:*@@U *@t*@@U *@+@*@@*@;E|l=*@tOLjEE E 0AYPE 0jL h*@AYPh*@jL jEPjpL *@?GE *@*@ +@*@8E *@ *@@*@u*@*@+@UWVS} 3G %=utG9Gu!?uG DuWEY 3G  @@UG u;u@YEPuG PhK E]u}WDY=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W  @@+W;}WFY}t*G @tW)DY=u ]VEg JK3ÐUWV}t9~u=Ƌu}U=*@uh*@h*@?*@5*@,YU=*@t5*@XAY*@UW}G?t=:t = u= u ?tGNj}U=*@uh*@h*@*?*@u35*@YUWuhhG@_ =K@WQY=K@WBY=:j EPW EWZ>YPj:W= 9Eu`WY}| `9E~aEK@t4=:t*j EPWr EW=YPj:W= 9Et3}WY}| `9E~aEK@=&K@=*K@W^Y=.K@WOY=2K@W@Y=K@G?t =,u?tG="K@K@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vukEtE+E؋E)F>}3V  @@+V;}VBY}u +gEEvÐG3ÐGÐUWV+@X-@9@@s @@<+@u<YtVujF jh+@jF W;YPWjF jh+@jF u}ÐUWVSEPfYE =ruEEE =ruEE:E8K@?t-8K@PzAYL@rڋE =ru3EVOAYuFAYujS S1AYjuhl6@hh6@h`6@ojY9Eu 3]u}ËE8K@S@Yu VUWVE@ u<Yjj_EEjjPEEjjAEEEPv:Y;48K@tu9@@tكuEujDujDujD8K@Eu}Ð>REÐUWV} ;t?F EF F F3҉V @@=at=rt=wt3u}ÀN jju@ N G=+uf N ȸ*DL$Q3ÐUPWE E=@u=@t* =@h<@uu =@ t }ËUWVS3=@%=u-==@t$=@9<@u,=<@u#=@Duh<@=Y 3=@ @@Uh<@e<Y=u<@E+Å~VjuSEtE+Ë)<@<@=<@}3<@=@ @@+<@;} h<@=Y}t=<@@ =@Dt"h<@;Y=u]u}ËE@UWVS}u ]GF:u Nj]u}M}3UW}W9YjjG P= GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh<@d UPEEPu uI UW}EEEljEEWF6YEE2uu EP }ÐUWVS}u DžL@L@ L@W1=~*uDžF DžDžk -0F:@u؃u DžÉ=lt h9uF؅[uPV:@tDžl;@؃nt_=L@uVctQ[tLL@} W@ Y GG:@u L@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfL@fl9uEEPL@{EEPL@dEPWSt'=L@tu /$Fu :@td=L@uL@} W Y GG:@u L@W<=uL@y%uF؃%L@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$p6@EE EEL@}WyY3]u}ËGG=+t=-t =0t8EML@} W(Y GG؃0i9E }9EoL@} WY GGEh~PW =uh~Ph:@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}4L@E4L@E@<@s3UtE]4L@EH<@EP<@E<@r5E<@r<@E<@AE<@s6EE]@)EE<@r݋EE 9P܃}t؁4L@L@vL@E<@tEL@r05}fEf fEmE]mE܉E@0Ee <@];r&=5|+4L@u4L@1}tCF0N<94L@]Ћuԋ}ËEE0]@EEsEE 9P EEEE<@MU]vEu}fEf fEm]mE܉EFUR0EMm]E<@E5<@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G  @@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}@@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øF L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W @@UW<@;=@@r3}ÃG uUW<@ WY;=@@r}UWV}tlG t6G t3WVYG PY}@@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @@+G?}3W  @@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @@+G?}3W  @@+W;}WY3UWV}G G u}}&uL@P@GW  @@*h!YGt@O G W @@GGVYtG uO @u}G T@WR @@UWV}G  @@+G}G  @@Wu};7}7𐐐63ÐU@@EEPhTu } E@@3ø6ÐÐU WVSE9ET=@@u<@@ @@@@ @@@@@@@@@@@@@@E@3؋=@@E&;5@@@@E@E=w=@@jY@@@;t?3Ee ƹ3tL3+‰EEE2@@+@@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@@@0E+E-@@@;t@@@@@@@@~Љ@@;5@@v@@@@@@ 9=@@u @@@@G(=@@95@@u=@@7tލ;r;l%;UWV}5@@%@@9u5@@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@@Ru @@+D$øT$@@3øÐ0NL$0:L$0+L$0L$0 L$05%3ÐÐ@@ÐWT$`@@(#)cpio 5.3b of Jan 27, 1988@/dev/ttyzGGGGGGGGGGGGGGGGGGGkGGGGGG]GGGGGGGGGG$VdG.GG G>p|G:HG7COLChange to part %d and press RETURN key. [q] notag,notofixaBC:ifopcdklmrSsbtuvVM:6eI:O:cpio.cIllegal argument to -%c, '%s'.rwcpio.cCannot rename (%s missing)inputoutput`k' option is irrelevant with the `-o' option cpio.cPass and Rename cannot be used together.`k' option is irrelevant with the `-p' option `B' or `C' option is irrelevant with the '-p' option cpio.cOptions must include one: -o, -i, -p.<%s> ? Cannot read %s TRAILER!!!TRAILER!!!%s skipped: exceeds ulimit by %u bytes cpio: i/o error, %s is corrupt Cannot write %s %s truncated cpio.ccannot write in <%s>cpio.c<%s> not a directory./Use `-d' option to copy <%s> cpio: cannot create directory for <%s>: %s cpio: cannot unlink <%s>: %s Cpio: cannot link <%s> to <%s>: %s cpio: cannot link <%s> to <%s>: %s Cannot read %s Cannot write %s %ld blocks %s %s %s %s %s %s %s %s %s -o[acvVB] [-Cbufsize] [-Mmessage] collection-o[acvVB] -Ocollection [-Cbufsize] [-Mmessage] for %s.%.6o%.6ho%.6ho%.6ho%.6ho%.6ho%.6ho%.6ho%.11lo%.6ho%.11lo%s%6ho%6ho%6ho%6ho%6ho%6ho%6ho%6ho%11lo%6ho%11loTRAILER!!!Rename <%s> Skipped .Same name ./...Cannot create directory for <%s>Cannot create directory <%s>cannot unlink current <%s>current <%s> newer or same age cpio.cAttempt to pass file to self!Cannot create directory for <%s>Cannot mknod <%s>Cannot create directory for <%s>Cannot create <%s>cpio: cannot recover from I/O error, %s cpio.cRead() in bread() failed cpio: I/O error, searching to next header 070707cpio: header corrupted. File(s) may be lost cpio: out of sync. searching for magic number/header cpio: re-synchronized on magic number/header cpio.cThis is not a cpio file. Bad header.cpio.cOut of sync. bad magic number/header.cpio.cImpossible return from write(), %d Unable to write this medium. Try again. %s linked to %s Cannot create directory for <%s>Cannot link <%s> & <%s>No memory for links (%d) %-7o%-6s%-6s%-6d%7ld %b %e %H:%M:%S %Y %s %s /bin/mkdirmkdirCannot fork, try again cpio: ulimit reached for output file cpio: no space left for output file cpio.cwrite() in bwrite() failed Can't read input: end of file encountered prior to expected end of archive. Reached end of medium on %s. outputinputEncountered an error on %soutputinputrIf you want to go on, type device/file name when ready. That didn't work, cannot open "%s" missing 'd' option pwdrcpio: popen() failed, cannot determine working directory , errno %d, Usage: UXzchmod1Cannot change the mode of file "%s" to %d.UXzchown1Cannot change owner to %d and group to %d for file "%s".UXzclose1Cannot close file descriptor %d.updatingreadingwritingappendingUXzfopen1Cannot open file "%s" for %s.UXzmalloc1Cannot allocate a block of %d bytes.UXzopen1Cannot open file "%s".UXzrealloc1Cannot reallocate %d bytes.UXzstat1Cannot obtain information about file: "%s"., ERRVERBERRSOURCE%s: %s: HELP FACILITY KEY: , line %d UXerrno%dTo Fix: %s nochangesilentverboseexpertbellnobelltagnotagtextnotexttofixnotofixsyserrnosyserrdefsyserrsourcenosourcesevmsgnosevmsgprefixnoprefixRefer to help error database or manual.,&@5&@?&@G&@%@%@INFORM: WARNING: ERROR: HALT: >>>>>>>>usa_englishH)@L)@P)@T)@X)@\)@`)@d)@h)@l)@p)@t)@x)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@*@ *@*@*@#*@,*@5*@G*@J*@? C C C C C C C C C C C C C C C C C C C C C C C C C C C?%@ CR@ C C C@@ C C C$A C C C CAAAA C$BBBB C C C C C C?@ C:@j@ C C@ C@ C C A.@P.@\.@r.@~.@.@.@.@.@.@.@.@/@/@#/@2/@J/@W/@m/@|/@/@/@/@/@/@/@0@"0@00@I0@f0@0@0@0@0@0@0@0@1@1@,1@A1@R1@_1@u1@1@1@1@1@1@1@1@2@2@-2@C2@S2@a2@}2@2@2@2@2@2@2@2@2@2@3@ 3@73@^3@3@3@3@4@4@4@#4@,4@54@>4@G4@P4@Y4@b4@k4@t4@~4@4@4@4@4@4@4@4@4@4@4@4@4@5@ 5@5@5@(5@25@<5@F5@P5@Z5@d5@n5@x5@5@5@5@5@5@5@5@5@5@5@5@6@6@"6@36@K6@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-cXXXXXXXXXXXXXXXXXXXXX??GA>???7@8@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFrN|N|rN|{N|N|N|N|rvrN|rrN|rrrrrrrrrrN|N|N|N|N|N|N|N|N|N|N|uN|yN|N|N|N|N|N|N|N|N|N|N|N|N|N|N|N|tN|N|N|N|N|N|N|N|N|N|{su*wyssN|N| sN|N|tN|N|N|{N|FtN|N|t-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@T@T@@@T@4V@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0bin/at104755 0 3 116760 4177534120 6446 37777777777 LP! q0+@.textq .data@@0+r@.bss=@=@.comment0ÐET=@RU RP PuqjÐUDž`*EP#Yppu[9E@u(hh@Xh@h9@/ jqYY&h@Xh@h9@. jpYYphpC@4eh@h@hpC@# u&h@Xh@h9@. jpYYh+@E p=h.@$Y=u&hE@Xh@h9@I. j3pYYEEPE U4HtE U4hp@h9@. NE9Et#}tE U4h@h9@- "E U4jd!E U4VIYEE9EmjoYjh@E pG Yh@#Y=u&h@Xh@h9@M- j7oYY9Eh@cYE@PRjYlu&h@Xh@h9@, jnYYh@l=cj/l]GhEPh@GuEPluGt&h5@Xh@h9@|, jfnYYhe@'YEVh|@Xh@h9@@, j*nYY+E@ PGYEE U MEPYdt E=.t E U4h@h9@+ EPE U4FtE U4h@h9@+ WE9Et#}tE U4h@h9@g+ +dP>YP!YPE U4h@) EE9EjmYjh@E pVE uRE PBu&h@Xh@h9@* jlYYE PB-af`@Dž`9Eu4`@=t&h@Xh@h9@* jmlYYhD@=Y`@=t@C@`EqD@D@D@9D@}&h$@Xh@h9@* jkYYkPh-@vP8 h2@m`Y\hI@\`Y\ЍRR&YE@vPhf@hd@hM@5E@_PDPyDPpDhN jj=u jjjhN jj=u jjjhN jj=u jj~jhN joj=u jj\jh$ h5E@i E}&hj@Xh@h9@( jjYY Pu5E@H =u25E@/DYh@Xh@h9@l( jVjYYjeYu YudYh@h@hC@6 `@@aPh@h@h$D@6H5D@>Y|P5E@=u25E@}CYh@Xh@h9@' jiYY5E@KCYj/|%B@Pja 9E@uh@h9@j'hD@YPj/|A@Ph/@h9@:'D@+d-<=}h@@h9@'jhYu$&YEEU9tU9tٍEPE@ PA}t E;EuE@ EEPYdtE=.u}uSEPyYEtAdP9YPYPE@ PE0h@$:ujYdP9YPYPE@ Ph@$ E U45@@h"@5@@EE9E|hD@S9YD@p Y@@hD@hD@hD@YD@=@<\4@D@hD@8Yx -D@ UPEEUPL?YUM Eu[Y9E|E:E U4u4tjE U4u%? uEEE9E|U(hYEEA`@@aPuh@hv@u3EPuK?tEEEd9E|h@uh@h9@@$ j*fYYU5E@?YjfYUuh@h9@$ jeYUUh@uh@h9@# jeYYUPWV}u =<|<FGEV<|G<FGEEGEV|GF GEEFGGEV |G GGEEF G 7GG@)G 9G~GG@GP Y@@G@9G u}UEu%EduEu3UPWV}EƹtmnEFGl;|ՋGtmn=nu 9G|E3 0@EF;w|G HEkEGEkE<GEkE<Eu}UWVSf`@ft@@Ph@& =@uj'0W0uXj=0A0t<00h@H=8uh@h$D@Wu>h@hC@Wu&h@h@h9@ jbYYj;Yd$t 9@/9@9@׈?} V-Y FF===<y=dt9=l=m=t5D@h8@h9@ YYƅP\Yt&h@h@h9@ jaYYf3=u&h @h@h9@ joaYY\YP-Yh@h@?tMPh!@S S9Yh$@؍Ph&@S SxWYj`Y[Yh)@؍Ph+@S/ Ph.@2SWY]jj9Ph1@GA>???4@4@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFNXXNXXXXXXONXNNX5OEOEOEOEOEOEOEOEOEOXXXXXXXXXXX\QXUXXXXXXXXXXXXXXXXPXXXXXXXXXX XdO\QvSU_OdOXXXOXXPXXX1XXPXXP-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@W@W@<@ W@X@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0bin/crontab104755 0 3 50554 4177534147 7461 37777777777 Lg! B|\@.textB .data@@|B@.bssL@L@\.comment LQÐETL@RU RP PAjÐU0EEE7E=?t%=lt=ruM}uEM}tEEh@u u E=u}u9E9Eu/}u}t#h@uh@h\ @# j@YYP` YE؃}uU9@u%h*@uh@h\ @ j@YY#hf@uh@h\ @ j@YYu؍EP5h@h@EPG u#h@uh@h\ @m j;@YYh@4YEЍEP4YUЍRRg Y@EPh)@h@5@4PP}t"5@YEPjdj?Y}t{h+@5@u4Eu7h-@uh@h\ @ jv?YYhL @h@Wuhh@ uu5Yj7?Y9Eu h< @Y\jE puhK@E p3Eu%hM@uh@h\ @ j>YY u8YEPjaw9@uhk@h\ @j>YUe>Ph@EP h@3YEh@ 3YUЍRR Y@EPh@h@h@5@2PPPh8 jj==u jjW=h8 jH==u jj5=h8 j&==u jj=h8 j==u jj<h$5@E=u#h@uh@h\ @r j@=YYh@uEu/5@Yh@uh@h\ @, j<YY@:@@@@= t@@= tԡ@@=#j;j~jjjjjVj jBjj.@@@@u,hV@uh@h@h\ @-@YFuh@ =u/5@Yhn@uh@h\ @ j;YYuhh@i u 2Yu2Y=@uV5@@Y5@5@ =u/5@Yh@uh@h\ @U j#;YY5@YU@@@= t@@= tԡ@@u1h@uh@h@h\ @@Yá@@=*ue@@@= /@@= h@uh@h@h\ @d@Y놡@@m @u4h@uh@h@h\ @@Y8EkE @@0‰E@@@@m @uNjE9E|E 9E~4h@@uh@h@h\ @@Y@@=-@@@@m @u4hV@uh@h@h\ @*@YIEkE @@0‰E@@@@m @uNjE9E|E 9E~4hz@uh@h@h\ @ @Y@@= t@@= u3@@u4h@uh@h@h\ @6 @YU@@@=,h@uh@h@h\ @ @YUuh@h@h\ @ @U5@BYjf7YUuh@h\ @v jD7YUPE@9@uZjh@%6@}B9,@t 9,@uh@h\ @ hM@h\ @ EcUPju @P  ju5@5 =thn@h\ @ UPuYEu@3h@Ep 6 t(h@Ep  t@E뿋EUh@u uu uNtCh@ukuuu!th@u t3Uh@u m*Eua3E$EUm @t EEEU uuEP) uu+YujEP uu+Y3|UPEkE U 0‰EEEm @uыEUE9EuE9E u E9Eu3ËE9EuE9E }+E Huu9EuEu3U@Ћƒ+E UJ‰EEH}uEuu9EuEu3U@ЋƒEE@ UE9EuE:U9EuE u3U@ЋUPu.YEu#uh@hL @*Yj7v3YEUPWV9,@ueE9P@}#E P@ =-u E Au u}h0@E P@4 u P@΋E P@ ,@=T@:tWu =L@tOLjEE E 0X'YPE 0j1 h@='YPh@j1 jEPj1 E P@ ,@@,@uP@,@?F=:,@@U P@t,@@U P@X@P@@P@;E|l=L@tOLjEE E 0u&YPE 0j1 h@Z&YPh@j0 jEPj0 ,@?GE P@P@ X@,@8E P@ ,@@,@u,@P@X@UWVS} 3G %=utG9Gu!?uG DuW*Y 3G `@UG u;uF%YEPuG P/ E]u}W)Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W `@+W;}W*Y}t*G @tW(Y=u ]VEg /3ÐUWV}t9~u=Ƌu}U=D@uhH@h4@9$D@5D@4YU=D@t5D@%YD@UW}G?t=:t = u= u ?tGNj}U=D@uhJ@h4@#D@u35D@YUWuhhP@_ =R@WQY=V@WBY=:j EPW EW"YPj:Wt" 9Eu`WY}| `9E~aEZ@t4=:t*j EPWB EW"YPj:W" 9Et3}WY}| `9E~aE^@=f@=j@W^Y=n@WOY=r@W@Y=V@G?t =,u?tG=b@R@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vusEtE+E؋E)F>}3V `@+V;}V 'Y}u +gEEvÐ2,ÐUWV} w"t?F EF F F3҉V`@=at=rt=wt3u}ÀN jju& N G=+uf N UPWE EX @uX @t* X @hL @uu  X @ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W,"YjjG P,& GGg G tg }ÐUPWEEE@ uE@ t(EH uuu 7 E@ t }ËUWV}uW5$YG uG tO G Dt1< @"u}F @tV6!Y;5\@rGGG tG `@+GPwG PQ | GG듸9tO O G tg aUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$Em @u5GEEm @uE=+t =-u EGEu309Et "G=xt G=XuEm @tEEm @t E-0#Em @t E-WE-7E;| 3]u}Ãu;09Eu1Gm @tG=xt G=Xu EEm @t E-0#Em @t E-WE-7+EGEm @tEEm @t E-0#Em @t E-WE-7E;|} tE 8}t!j&ÐV&3ÐUWVS}u ߋG8uOGF҈uË]u}ø &3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  `@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlH @Dž\9PtP؉PNKPPoYh~PW =uh~Phl @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}x@Ex@E @s3UtE]x@E @E @E @r5E @r @E @AE @s6EE]@)EE$ @r݋EE 9P܃}t؁x@@v@E, @t@r05}fEf fEmE]mE܉E@0Ee 4 @];r&=5|+x@ux@1}tCF0N<9x@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G `@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W `@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}L@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3j ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W`@UW< @;=\@r3}ÃG uUW< @ WY;=\@r}UWV}tlG t6G t3WVYG PY},@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG `@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G `@+G?}3W `@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G `@+G?}3W `@+W;}WY3UWV}G G u}}&u@@GW `@*h!YGt@O G W`@GGVYtG uO @u}G "@WR`@UWV}G `@+G}G `@Wu};7}7𐐐3ÐU,@EEPhTu } E,@3ø6ÐÐU WVSE9ET=@@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ "@ "@\@("@#@3.1bS03.1bS03.1bS03.1bS0bin/batch100755 3 3 371 4112657745 7040 37777777777 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # @(#)batch.sh 1.3 87/08/19 at -qb #@3.1bS03.1bS03.1bS03.1bS0bin/ed100755 3 3 112230 4201161302 6377 37777777777 L4! $$@.text .data@@@.bss4@4@$$.commentÐET4@RU RPl P~jÐU0WVS} ]EEE/';t uL u5`7@4@u&=H7@uj)d7@L7@us%YY]ċuȋ}ÍEEL7@3E\7@^u\7@5`7@;}rj2d7@L7@u%YY&*t\us&`7@={t};u2GE9Emj*d7@L7@u$YYK= =$r=*0=.=[=\%= <=(=)=n8={4}iEEEEԅtj,d7@L7@u#YYd%\G9G=H7@uB5`7@G4@E9E7j*d7@L7@u#YYj$d7@L7@uk#YY}E=E=vE$`7@;t$`7@= HGG;Erj2d7@L7@u"YY GEE 9L7@|j+d7@L7@u"YYEEL7@GGL7@L7@=E9Ewj*d7@L7@uS"YYGGUJU E5`7@#E0|9kE -0Ejd7@L7@u!YYY#\t,u9E~j d7@L7@u!YYGU؈,#=}tj-d7@L7@u|!YY}u GU؈.G%W;j.d7@L7@u1!YYj$d7@L7@u!YY ?1|:951;u|jd7@L7@u YY$GGֈ}GGֈ{EEظ9E|E"^uE!Et uj1d7@L7@uN YYƀtS}tMEG ;Erj2d7@L7@u YYGE EEظ 9E|-}K!]u @Gƀtr}tlEG ;Erj2d7@L7@uYYGE EEظ 9E|EЋE% @E9u|މu܋Ћ% @ ]}t EE }t 9Eu EG(EE4EE9E|'UWVS}u =\7@t=P7@VWd]u}=u4F;uVW8t =P7@ËG8u3VWuًG8uUWVS}u EF-|=)w|$!@FG;͋G8뿊볉=T7@]u}GEU @# oEGEEu%EU @#t3U3X F<4@F<4@FEVKYUV?YF P0YEFPYA4@UF4@+EEPWuO E4@UF4@+EEWߋG8uG;tFqGEU @#uރ HEGEEu%EU @#t3U3uO;=X7@VW;wG;E4@ 4@u G;Eu4@ 4@u=4@}G둊G4@ 4@uGEU @#G4@ 4@uˋ"GEU @#t4@ 4@uσ=4@}G"GEEuEU @#u3U34@ 4@u?GEEuEU @#u3U3u4@ 4@u=4@}G>EuWu_M tVWt 1E+;s3!NJGO4@ 4@u;UW}G%4@=u N4@}%+4@UjYUPWVjjq@hC*@IYpI@x%Euh%j$o8A@uh%j oh|N@GY G u}UWVSTA@=!@!@4@0YTA@s=?@u>@?@>@?@9>@vj4Y>@9>@v >@9?@vjY{= ?@uB?@-Ph(?@-9>@ >@ =?@u>@>@@?@=?@u>@?@>@?@9>@vj}Y>@9>@v >@9?@vjVY= ?@uIA&P a|z~j%Y=?@u>@?@>@?@9>@vjY>@9>@v >@9?@vjY-a?@|M@ M@ j+Y =?@u >@@?@?@>@ N@ N@=?@u>@?@>@?@9>@vj2Y>@9>@v >@9?@vjY=>@= N@t"+>@A@R-j \.Yǃ0@YPt-Y;=?@v?@>@N@ N@N@ M@=?@tj{YV(YN@>@9>@t3!@jh8@54A@}/d8@ =N@tN@N@jY=N@t8N@h$N@h8@qF} N@ @@>@>@?@>@9>@u>@!0A@>@9>@t3E= ?@u ruQ>5?@h)Y=xN@t5xN@FYxN@54A@6Y4A@=!@t e+j o,YN@EM@ =?@u>@?@>@?@9>@vjY>@9>@v >@9?@vjY= ?@u==hI@t3P#Yr j_(Ye =?@u>@?@>@?@9>@vj&Y =?@u]=j YM@ j Yj1Y=!@t!@M@j=Y=?@u)>@@>@>@?@>@9>@u>@ >@9>@v >@9?@vjbY>@9>@t">@9>@v >@9?@vj3YV Y=!@t jh8@24A@EhDN@5!@pCh$N@h8@vC}Nhh8@,?4A@}jYh$N@54A@$C !@jY!@h8@E8@uS@E*N@=I(N@%=2jh8@fP?bY}j YEEu'=N@t=@9>@t @9>@u>@9?@u3M@9M@}EM@=?@tj YHA@(hdC@hXA@U)PA@c=?@u)>@@>@>@?@>@9>@u>@?@+>@%A@^%j h&Y=DA@tj; Y=?@tj Y#=M@tM@M@=gz=Q&=Et>=!r= :=/]u}M@eM@=?@tj Y=!@t=M@tM@j YVYN@K>@?@Vj]Y==W=Ht@=Gj*Y=?@tjl Y=TA@=PsC=ct#=X2=V8>@-Ph(=a=?@u>@?@>@?@9>@vj Y/= ?@u55?@h(=et=d|z=fg=?@tj] YVY=N@u0h$N@h8@<} N@ @?@>@^=M@t$=hI@uh!@VYPh!@j_ >@?@,u >@@>@>@?@{;u>@>@>@?@Y5`7@?@>@Ku "=?@p;u ,=>@,t=>@u ?@>@@}E؉EE3EutE=.t3=$tq=t(X= ~/>@`>@U=DA@ g=?@tjY5DA@1= &=+t15='!a|z~jY>@"G=-=?t l=/uyVhd8@hd7@jz>@/u;>@v>@;>@s>@Sjub;>@uj Y=^u OuR>@J5`7@u 3]u}Í;>@r;>@vjYЃ}tjY049+-a9|M@t;>@vU=?@u>@?@>@?@9>@vj5YU=?@u)>@@>@>@?@>@9>@u>@=?@u>@?@>@?@9>@vjYU=?@tjYU>@9>@v >@9?@vjYUWpt ltnu#N@luN@nu N@ tjHY}UPWVSEA@؃ tuTh8@uf9EtjYf9EuN@8@FG҈uhh8@(Y]u}à tjY%؃ t!u !@؃ ujY8@E@E=@|jsYGӈt u=!@ujQY؃ uG=!@tf9EY !@j9Yh8@te9Et f9Euh8@8@GF҈uh8@'YU=xN@t5xN@5YxN@54A@u:UY=!@t!@jPYY4A@=!@t j YUh%jYj Yd8@  ?@=8@t h8@5Y=N@th*@YM@jYUPjj0Yjj$Y>@9>@9M@>@@>@>@?@hh*@/4A@=4A@}k= N@tbj5 N@vOY@Pt/E}t?5 N@u*Oh*@u3hu/4A@uVY=4A@~M@ UWV}u=!@uM@!@N@!@ N@3N@N@=xN@t5xN@y3YxN@j?Yu h8@"j YA@jjjTS =hI@t d8@ hI@d8@`7@=d8@t tu=4A@~554A@uRY=!@t!@jNYY4A@=!@=TA@t=!@|!@4@XYu 3u}jh|N@/UP`7@d8@t`7@d8@Ã=hI@t/hI@hI@d8@td8@hI@jEPjL d8@E%d8@UWVS:@5hI@;ut=`7@Nj]u}ÁtC׈<@rjY uC:@=.u:@u:@=\u%:@=.u:@u:@.:@3nUPWVSE:@(A@ 0A@hh?@54A@K H0A@}]u}û?@CtE0A@?@;r߃}t2=PA@t!5A@0A@@Ph?@hdC@ jY?@CtjxY0A@?@;r޻?@<@rd8@ jJYC%F׈uNA@ N(A@=N@t=N@tvhN@h:@{&}`jh*@j T A@N@>@>@+>@%A@->@ N@A@j Y3UWVS?@>@EEE0Y=N@t=N@tvhN@h:@%}`jh*@jPS A@N@>@>@+>@%A@->@RN@A@j RYK}^-?@E=PA@tA@+EPuh?@hdC@%uh?@54A@R ;Etj~Y?@>@8tA@GFuG ?@9E-?@E=PA@tA@+EPuh?@hdC@uh?@54A@+R ;EtjY]u}UPWVSM@E >@>@9>@r.hQY=ud8@ jY>@\EM@>@>@G>@>@ ;wEUp]u}UWVSDžDž=?@tjY=M@tjYL!9uU4@u j8YBDž4@҈uDž`7@= t%9t \9u%9uRh8@u jYDžh8@҈uDžT\9u=#%9t\ Dž99u PYPh4@Ef)uT58A@jGO53Yj+Y5pI@*Y=!@tPNY3U=?@u>@?@>@?@9>@vjY=>@9>@v >@9?@vjY= ?@u!5?@5>@UWVS}E @>@+ǹ)>@Nj֋ ;v};=>@v=>@=>@M@]u}UWVS>@>@@;stG,]u}t =>@Nj֋ ;vۋ->@9>@v >@>@M@UWVS:@juxM@e!KujEEPxM@FG҈uӸ:@]u}UPWVSM@:@lI@EjuxM@e8G= u O5,A@*KujEEP>xM@FulI@-:@@%lI@Ë]u}UWVSE%EE%|d8@ jEY+ƣxM@;=!@uE tM@tI@]u};=!@utK@} =tM@t:=LA@tjhhtI@hdF@VhhtI@5!@ tM@=!@huhtI@W =LA@tjhhtI@hdF@ tI@H=!@|6=LA@ttK@EdA@E6hhtK@5!@^ =!@tK@EEӊ CEMujhhdA@hdF@n hhdA@5!@ UjE P5!@E hu 5!@U =t>@9>@tj YUPW5!@EYlI@|M@ M@rM@M@!@!@tM@?@j$YEh5pI@Y PDYu$Yj5pI@H!@=HA@tLA@hdF@hXA@]5>@HY>@?@?@>@>@>@!@3!@>@-@>@}UWVS=hI@tj!?Y=?@u)>@@>@>@?@>@9>@u>@>@9>@v >@9?@vjYR ujYVhd8@hd7@j8ujY\u t\GGֈE;rj"vY u;upG GG>@/#;>@r;?@wSj ;Eu ;>@v=du1= u#uË>@At6#>@hI@ ?@ ?@>@;>@vUWVS?@9>@t ?@>@5]u}3YG=A@rj8YFu;?@vξ:@?@FG҈u>@?@9>@s5?@>@@PW>@>@mUWVEE$A@$A@5>@VjwA@ A@M=A@t!jj8tT7@8u= A@tr M@&=M@t(E|M@E9uM@EM@9ErM@Vh <=M@?@;5?@}u}uj#Y=$A@uj#Yu}UPWVS t uj$mYWhd8@hd7@j|<@\u u894@u4@j$Y=hI@t-hI@8t#΀;t%Cֈ>@rj&Y뎉5`7@N@C<@=%u5<@u,!@=th!@h<@v:j7Yh<@h!@X:3`7@g9`7@u`7@19`7@|f99`7@Y`7@-0`7@'99E/k E-0~jYgE09E}NjE`7@JƋ]u}UWV:@,A@u u}ËGF҈u,A@3UPWVS=A@~ 9A@}A@A@9A@u A@$A@:@?@<@]u}ÊFG;=P7@r&9Eu5T7@5P7@V jEtIe19E|8L7@@19E}+E-144@E-144@V FUA@rjYC%E_=T7@-?@:@T7@A@rj]YFG҈u:@?@GF҈uUWVS}u ]G֊ FA@rj Y;rNj]u}UWVS=?@u>@?@>@?@9>@vjY>@9>@v >@9?@vjYuj'Y= ?@u}t!5>@ƃPh?|>@#?@5>@ ƃ ;v5>@;sO+ƹЉ>@;t VWfSV\SWRA]u};r*ǣ>@SV-WS#WVj'YM@UWVS}u ;v lj]u}U?@9>@vá>@>@0Y3Ud7@L7@u$YUWVS24@4@= |؃}t=\7@u=T7@=X7@.>@9E u 3]u}ËE 0YX7@hd7@WUWA@ A@A@=A@tG0PY}UW}=N@=N@hN@EPh8@WE=u-N@%Ph8@j#> j lYjh+@uh8@j> j IY9Euj h +@j= 3}dI@ GPY?uj YUPWV=#@u=N@dI@H9dI@|dI@\G G u> u<-GGGֈ; }/ t*\GGR0GցR0dI@Gֈ tN@rM#@N@-N@fEDA@tjEPj< EPhN@j< u}É=#@UWVSEEEEEE%E%؋} PEU΁ Ӂ+%EEU+ƈFu 3Cu3GEMu]u}U$jj<EEPhTj7 EEfeEPhTjz7 jh+@j; EXA@aA@9Es EEU܈E=t 9EuҋEjh0+@j_; fEfEEPhTj7 ujK;U8WVS=DA@tj;Y} ǍE ؋Eu 3]u}juEP EEE8uEӈEۊEԈE܍EPY}j{YE9EujaY}uZj5Yj5Yu<Yu3YjjjhC+@h2+@=jjjhR+@hE+@%j:Yj EPu: j 1Y=tj EPu0 = thT+@gYj:Yu?5Yu65YE{EEӋUUЋEEE 9E|EEUE9E|EE UkEUӋM ‰E̹3U+EE@EȋE%3uȉUmEEEU  EUEu3E%3uE@}UuEUEUE9ECEE%UE9E|UW3EU E 8G |EPY8E3EǍʋU0G|u EP}UWVS=DA@tj;Y=hI@tj!Y=?@u)>@@>@>@?@>@9>@u>@>@9>@v >@9?@vj^Y ujJYF Vhd8@hd7@jT>@/#;>@r;?@wSj;Eu ;>@vES>@#>@3(YP\Yuj4Yat itcuj5Y u>@o&tGֈ tj6JYhI@}t ?@~ ?@j8YhI@>@;>@Ã\uJ t\GGֈE;rj"Y$ u GGENUE=M@t=!@t!@jgY=!@uJu u(5E=M@hh8@u+ EE8@%EP Y}jYBE58A@j55^5t1N@@=>tO@O@u}ÅtN@N@8t= UW3k N@-0N@@N@=0|N@=9~ N@Nj}UWN@@N@=-uAN@@=0|&N@@=9uqPK}uiYN@=0|N@=9 uYO@ N@UWV3 }E ׈0F|E 0u}UPN@@N@UN@@=0|&N@@=9N@@N@UEEuEPO@UWVS N@3ۋy;~|O@]u}ËECΈ N@@N@=,tE N@UWVSEHuO@= E CJ G?t= t|΋E Et$= tE S ]u}ËE S ExtCUR;vO@F>t;}uO@E S C;|OUE3ɈJUJJ@UWVSEHu = tUCG?t= t|݊t = uE xtCU R;v]u}3F>t;}C;|UPE E#@=uEPMtu uEEUE҈uEE8uE8uE t3øUEUE EEEU ;u}uߋEUEuE uÀ}t EE8uEU3UE E UE҈uUP>@?@>@?@>@@EEЋ HE>@9Ev?@U>@E?@>@E?@>@E?@>@E?@>@@EEUHUPE?@9>@v>@?@9EvÐ+3Ð+3Ð)+ÐUE PuUWVS3h+@ YEuE+@j/ut+@E|PuW u |P_h4@=td=t$= tV= t8=u2FwBV\YDž|+@|DžxTCwt h4@ hlpø9x|h4@xxt|xBM t ɉ u|Phx+@lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U54@u u4 ÐUWEE EP$YtujW Nj}Uuq'YÐ f)3ÐN)Ð*:)L$Q3ÐUPWE E0@u0@t* 0@h0@uu 0@ t }ËUPWVS}] u}GN}E]u}ÐU}u3jYEhWj'EEE}t6E9Ev)EE&E+EEEEEMuj'h6@YuubYljUYE}| ujm'} }}}t EEP YEE2Ujh6@EÐ'ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU54@E Pu Ð;{&f&t3Ð T$tÐUWVS}3$&ujYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!%ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐2%3Ð%3ÐUWVS}u ߋG8uOGF҈uË]u}ø<$Ð $3Ðjt$t$9r3ãh4@ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  3@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVKYF Dt*F uuj E+EP` tVCYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl-@Dž\9PtP؉PNKPPoYh~PW =uh~Ph-@ 3W YkUjuuuu u#Ujuuuu uU$WVS}6@E6@E/@s3UtE]6@E/@E/@E(0@r5E00@r<0@E80@AEX0@s6EE]@)EE`0@r݋EE 9P܃}t؁6@F7@vF7@Eh0@t 7@r05}fEf fEmE]mE܉E@0Ee p0@];r&=5|+6@u6@1}tCF0N<96@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@0@MU]vEu}fEf fEm]mE܉EFUR0EMm]EH0@E5P0@]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G 3@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 3@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}4@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUWx0@ WY;=3@r}UWV}tlG t6G t3WVYG PY}h4@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 3@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 3@+G?}3W 3@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 3@+G?}3W 3@+W;}WY3UWV}G G u}}&uO@ S@GW 3@*h!YGt@O G W3@GGVYtG uO @u}G W@WR3@UWV}G 3@+G}G 3@Wu};7}7𐐐3ÐUh4@EEPhTu } Eh4@3ø6ÐÐU WVSE9ET=|4@u<4@ |4@|4@ 4@p4@4@l4@|4@p4@x4@E@3؋=l4@E&;5p4@|4@E@E=w=x4@jYp4@@;t?3Ee ƹ3tL3+‰EEE2p4@+x4@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5x4@p4@0E+E-p4@@;tp4@p4@p4@|4@~Љl4@;5l4@vl4@t4@l4@ 9=x4@u l4@x4@G(=l4@95x4@u=x4@7tލ;r;l%;UWV}5l4@%p4@9u5x4@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹt4@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$4@Ru 4@+D$øT$4@3øÐ0NL$0:L$0+L$0L$0 L$0ÃÐh4@ÐoT$@@(#)ed 5.3b of Jan 27, 1988P$@m$@$@$@$@$@$@$@$@%@%%@1%@J%@Z%@r%@t%@%@%@%@%@%@%@%@&@(&@O&@e&@o&@}&@&@&@&@&@&@'@'@!'@>'@@'@\'@u'@w'@'@'@'@'@'@'@(@"(@2(@N(@g(@x(@(@(@(@(@(@)@))@Q)@)@ @ q  b  T  "     = P  *)@)@N@a $Ha2 (Hc 7c2 1c3 "&*.26:>Cf p !%)-159=s 7u ,write or open on pipe failedwarning: expecting `w'mark not lower casecannot open input filePWB spec problemnothing to undorestricted shellcannot create output filefilesystem out of space!cannot open filecannot linkRange endpoint too largeunknown commandsearch string not found-line out of rangebad numberbad rangeIllegal address countincomplete global expressionillegal suffixillegal or missing filenameno space after commandfork failed - try againmaximum of 64 characters in file names`\digit' out of rangeinterruptline too longillegal character in input filewrite errorout of memory for appendtemp file too bigI/O error on temp filemultiple globals not allowedglobal too longno matchillegal or missing delimiter-replacement string too longillegal move destination-no remembered search string'\( \)' imbalanceToo many `\(' smore than 2 numbers given'\}' expectedfirst number exceeds secondincomplete substitutenewline unexpected'[ ]' imbalanceregular expression overflowregular expression errorcommand expecteda, i, or c not allowed in Gend of line expectedno remembered replacement stringno remembered commandillegal redirectionpossible concurrent updatethat command confuses yedthe x command has become X (upper case)Warning: 'w' may destroy input file (due to `illegal char' read earlier)Caution: 'q' may lose data in buffer; 'w' may destroy input fileSHELL/bin/rshHOMEed: -p arg missing usage: ed [-] [-s] [-p string] [-x] [file]file name too longr/tmp/eXXXXXXed: failed get ustat of deviceU.f_tfree: %d Tf.st_size>>9: %d read may be incomplete - beware!ed.hup/ed.hupline too long: lno = line too long: lno = /bin/shsh-c!too longtab count Enter file encryption key: /usr/lib/makekey-/lib/makekey-ed: -x option illegal/bin/shsh-c/bin/shPATH:/bin:/usr/binsh 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF]gg]gfgggg]]g]]g^-^-^-^-^-^-^-^-^-^gggggggggggD`gdgggggggggggggggg_ggggggggggfL^D`^bdG^L^gg@^gg_gggggz_gg_-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$W@$W@3@,W@X@3.1bS03.1bS03@,W@bin/csplit100755 3 3 53100 4201127341 7272 37777777777 L! F8@.textF .data@@G@.bss0@0@8.comment0VÐET0@RU RP PFjÐU4WVS} E@EEEEEEF;]t u= u N|@u=@u5@h@]uċ}ÍEE@3Eࣼ@^u@N;}r5@h@EF؃*t\u ={t};]u$GE9Et5@h@o= =$K=* =.=[K=\F= =(V=)=n={}EEEEЅt5@h( @E F=\jGG=@u3NG|@E9En5@h@ V5@h @ })E=E=E?;Et= GG;Er5@h( @`  GEE 9@|5@h @) EE@GG@@E9Ew5@h @ GGUJU EoNFE0|9kE -0E5@h @ F؃\t,uø9E~5@h @d GUԈ,F=}t5@hH @5 }u GUԈG%W;5@hh @ 5@h @  51|09+1;]|5@h @ $GGӈC}GGӈ0EEԸ9E|EF؃^u EFEt u5@hH @1 ÀtI}tCEG ;Er5@hh @ GE EEԸ 9E|-}F؃]u @GÀth}tbEG ;Er5@h @ GE EEԸ 9E|EЋE%@E9]|މ]؋Ћ%@F؃]}t EE }t 9Eu EG(EyE4EE9E|'UWVS}u =@t=@VWd]u}=u4F;uVW8t =@ËG8u3VWuًG8uUWVS}u EF-|=)w|$@FG;͋G8뿊볉=@]u}GEU@# oEGEEu%EU@#t3U3X F<4@FEuWu tVWt 1E+;s3!NJGO@ @u;UW}G%@=u N@}%+@U E=?t~=ft=kth=suo@g5 @h@\/j/5 @4Eu @EEuU/Y= ~ uh @ @@h @u u E=Q @E  @)E9E~ =@tjh @h @E 0u@hh\ @E 0.@uE 0h^ @OE @hrj#9E @=%tE=/t ={uUuE 0EXE@E 0Y:E@E 0YE@E 0%YE E 8\@jY5@hjh@+uC9@uh @h@@e j8Yh7 @h@@I j8Yh @hjh@ u5@ YUWV}E 3= tK= tD=+t=-uFE k у0Gut E ډu}G=0| =9~U=@u:=@t1jj5@ 5@p YPhn @h0@G =@t 5@.YUWVu uh@@ =@u=@t!5@-Y@=@tXj/7Yu}GuWYVhs @W h@YN}UW}E5@ YE9@u =@t jYM@XEj h@@t@Wh@6t#ju5@h @EE }j"Yuju5@9 @EE @U=@t5@h@U=@t=@u!@@ 3@@uc9@~5@hy @"@@Ph @5@ h @h@F*Eu@h@EP)@-Ph @5@T EPh @EMUP}t@5@hh@[ EUPEPu=uuh @KuYUWV}E:E;u5@h @u5@h @FG=}uEPEP=t}}5@h @9E u@@E^9E t85@h @u}5@h@PYM}ӡ@EuYM}UWSE}$=\uGu5@h, @G;uGh@W=uuhC @Ph@h@u5@h@8P0Y]}Uhrjw25@hW @sU@}t E9@~_5@h @@JjYuK5@h @joYu5@h @XE9@|Fj9Yu뵐UPWVS}EQ@uJGQ@u=+t =-u EGQ@u 3]u}ø0+Ëk 0+GQ@uރ}t뾋븐UPWV9 @ueE9 @}#E  @ =-u E Au u}h @E  @4u  @΋E  @ @= @:tWua= @tOLjEE E 0%YPE 0j&0 h @q%YPh @j 0 jEPj/ E  @ @@ @u @ @?F=: @@U  @t @@U  @ @ @@ @;E|l= @tOLjEE E 0$YPE 0jC/ h @$YPh @j(/ jEPj/  @?GE  @ @ @ @8E  @ @@ @u @ @ @UWVS} 3G %=utG9Gu!?uG DuW:(Y 3G D@UG u;uz#YEPuG P. E]u}WQ'Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W D@+W;}W(Y}t*G @tW&Y=u ]VEgUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu], ÉE)G?}3W D@+W;}W'Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P' E}|EE}øUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vucEtE+E؋E)F>}3V D@+V;}Vw&Y}u +gEEvUWVS}u ]GF:u Nj]u}M}3UW}W"YjjG P& GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P% +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G Pd% ECG t8W6!YG t g GGuu G P% E9Eus3lUWV}uW#YG uG tO G Dt1 @"u}F @tV Y;5@@rGGG tG D@+GPwG P | GG듸9tO O G tg aUWEEEEEE2EEEPuu O ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUWEP0Yh @EPu3}ÍEPY퐐UWV}u@Eh6 @Wfh @Wph$ @Wb @aF=zttWYNju}ÐUWVS}3`'u&Yƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!&ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUWVS}u ߋG8uOGF҈uË]u}ø &3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  D@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl,@Dž\9PtP؉PNKPPoY@Dž\sEtC0UE}u Et E.EE艅@ E@uEE E -ݝHN%=L%uBHu9O%=u Dž Dž, @CEO%=uDžl@@Dž\L% H ‰PDž(Dž0Dž4Dž< @Dž$ @@PDP<9E}E<PLHQ ؃@t-E9D~ =0tDžlB@Dž\h~PW =uh~PhP@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@Ex@s3UtE]@E@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G D@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W D@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}0@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3j ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WD@UW @;=@@r3}ÃG uUW @ WY;=@@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG D@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G D@+G?}3W D@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G D@+G?}3W D@+W;}WY3UWV}G G u}}&u@ @GW D@*h!YGt@O G WD@GGVYtG uO @u}G $@WRD@UWV}G D@+G}G D@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET=$@u<(@ $@$@ (@@(@@$@@ @E@3؋=@E&;5@$@E@E=w= @jY@@;t?3Ee ƹ3tL3+‰EEE2@+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @@0E+E-@@;t@@@$@~Љ@;5@v@@@ 9= @u @ @G(=@95 @u= @7tލ;r;l%;UWV}5@%@9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$,@Ru ,@+D$øT$,@3øÐ0`GNL$0`G:L$0+L$0L$0 L$0ÃÐ@ÐoT$è@@(#)csplit 5.3b of Jan 27, 1988xx @  u  C !-! ^ q  %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression %s: Illegal Regular Expression skf:Prefix %s too long Usage: csplit [-s] [-k] [-f prefix] file args ... -csplit: No space left on device csplit: Bad write to temporary file rCannot open %s %ld %.02d100 file limit reached at arg %s %.02dw%.02dCannot create %s %s: bad line number %s: Repeat count too large %s: missing '}' Illegal repeat count: %s No operation for %s %s: missing delimiter %s: illegal offset Interrupt - program aborted at arg '%s' %s - out of range %s - out of range %s - out of range : option requires an argument -- : illegal option -- --/usr/tmp/w+aaaXXXXXX/usr/tmp//usr/tmp/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF$--$-<-----9$#-$&$-i$y$y$y$y$y$y$y$y$y$-----------&-+----------------'&----------A-$&(+$$--$--&---e--%--'&-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$@$@@@$@h&@3.1bS03.1bS0@@$@bin/date100755 3 3 45270 4213304321 6720 37777777777 L +" =$ x @.text= .data@@$ >@.bss*@*@x .commentJÐET*@RU RP Pi=jÐUWVSE3EEE9EE Pp+@p+@=+YEFE;rEPYEPYE܋E xG%G=hm=S=Hto=Dtr=%g%FjVE܋PBR /FjVEp  /FjVEp 8jVEp jVE0 E-=MjVEp[ =atR\=TjVEp/ :FjVEp :FjVE0 E=dHjVEp  R=rtR=mt+=j jVE܋PBR jVE܋PBRz E܋@E= |EE ҉UuE jVu9 :FjVEp" :FjVE0  F}tPFAFMFv=nuM Fi=wt"=tu7 FSjVEp >=yujVEp "OPhD@h&@ j9YFG +BRPj9 j9Yp+@=-u E xGe5p+@&YE}u ht+@Yht+@Yp+@j5p+@j69 ht+@qYP P!@tjj9 jp+@@Pj8 }u 9E}3P8YøދEk@@ U FE9E|Ek@@ U FE9E|G=ct=mt=suE*E%E 5@he@h&@ j18Yu}tQ9E~E Pp+@5p+@YE*PYp+@ht+@j5p+@ E}tQE}3PYp+@5p+@8YE U5@he@h&@ jq7YUWVS}] u=t8=t!=u>ǹd@0CǙkd+ǹ @0Cǹ R0‹CË]u}UPWj5@w6}2h@h&@c 5@he@h&@K j6Yj uWI- E= }2h@h&@ 5@he@h&@ jg6YW1Y 9Eu E@ 0@ 0E@ }UWht+@ju? }2h@h&@ 5@he@h&@ j5Y]th@h&@j 3}j5@O5}2h@h&@; 5@he@h&@# j5Yul,YPuWU5 W0YUWht+@jue }2h@h&@ 5@he@h&@ j5Yh @ Yht+@ Y}h @h&@ 3}h0@ Ynh@QY^h@AYjh# @54|$jjWR0 jHh@Wf4 W/YUWVS3ۍEPq YEP Y@ EEPJYht+@jWK }2h- @h&@5@he@h&@ j3Yht+@ Y~u9F uCFFu-9Fu#9F u9EuCF FtjjWF@P" jWv  jWv jWv jWv EPY]u}øUEuEduEunømU(WV; EPEPEE*@kE| ~ ^_ÐOE|=Eu EE&E |; }Ex*@8puE }|}ElVEF;|W=nu}|E E@ @EMuEHEܸm܉E܋EEܸ<m܉E܋EEܸ<m܉EaEt ;}uEEE܃} u!D!@E܍EPx tmEM܉3^_U WV*@E8u ^_Ð ME)xdۋE8tE0 |ă E*@^_ÐUuYPYUWVS*@t @GF҈uEk@ @*@GFGFGFGE@k @GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW*@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐÐU WV= @}uEPh @y u$E$3t*@3u؋}hhh @. @}jh @. @}3j$h*@5 @% =$t 3*@+jj5 @* -$*@*@qGF$r*@3VUWV}f*@fG=$ !@G*@[f5*@ftftft =uI*@W;u:*@W ;u+*@W ;u*@W ;u *@u}aM3UWV}*@fFft6F=t F=u j F PG Pf u Ƌu}u3U,WVE}Թ = @|+jj5 @ E=tE%=t 3ű}ÍEPYuBEPpYuE Pj5 @e &jj5 @( jj5 @}( j$EP5 @, =$t E*@uԋ E*@uj5 @ E?UWV9 @tjj5 @( 3*@GF$r*@u}UWV9 @t 5 @S'Y @*@3*@GF$ru}Uu"Y=O~3uh @a"Ujh @CÐ>f+ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËD$D$*3Ð T$tÐUW(E+D!@EEPY=L!@iGQiWkW<E=*@u=*@uWEPEP< *@E*@EE9E|)E9E}!E+H!@EEPYG Nj}UWVEQUEE}} EQME<*@E+@ƙ5+@Ep+@}| FFFtmnEN}|ۉ5+@}=+@ƹtmn=nu fZ!@3 uX!@+FuX!@;}fZ!@G+@5 +@+@*@u}Ëƹtmn)EFƹtmn9E} Ek E-0GE#@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl#@Dž\?E2ETMDžl#@Dž\EE C~u~E܉TMs؍gh݅H("@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H0"@u+-hJhE#@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h%@YEt Eu =%@t3txE%@%@h%@EPJuEP;jEP|>h~PW =uh~Ph#@ 3W YkUjuuuu u#Ujuuuu uU$WVS} +@E +@E%@s3UtE] +@E%@E&@EH&@r5EP&@r\&@EX&@AEx&@s6EE]@)EE&@r݋EE 9P܃}t؁ +@n+@vn+@E&@t1+@r05}fEf fEmE]mE܉E@0Ee &@];r&=5|+ +@u +@1}tCF0N<9 +@]Ћuԋ}ËEE0]@EEsEE 9P EEEE`&@MU]vEu}fEf fEm]mE܉EFUR0EMm]Eh&@E5p&@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G )@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W )@+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}*@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð> ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW&@ WY;=)@r}UWV}tlG t6G t3WVYG PY}*@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG )@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G )@+G?}3W )@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G )@+G?}3W )@+W;}WY3UWV}G G u}}&ux+@/@GW )@*h!YGt@O G W)@GGVYtG uO @u}G 3@WR)@UWV}G )@+G}G )@Wu};7}7𐐐3ÐU*@EEPhTu } E裈*@3ø6:Ð&ÐU WVSE9ET=*@u<*@ *@*@ *@*@*@*@*@*@*@E@3؋=*@E&;5*@*@E@E=w=*@j Y*@@;t?3Ee ƹ3tL3+‰EEE2*@+*@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5*@*@0E+E-*@@;t*@*@*@*@~Љ*@;5*@v*@*@*@ 9=*@u *@*@G(=*@95*@u=*@7tލ;r;l%;UWV}5*@%*@9u5*@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ*@Nj]u}WV|$ t$L$Njʁ^_øVÐT$*@Ru *@+D$ø!T$*@3øÐ*@ÐT$È@@(#)date 5.3b of Mar 1, 19884@9@JanFebMarAprMayJunJulAugSepOctNovDecSunMonTueWedThuFriSatold timenew timedate/dev/clockdate: bad format character - %c %s [-cms] [ mmddhhmm[yy] ] [ +format ] date: no TOY clock date: broken TOY clock date: bad conversion date: no permission date: no TOY clock date: bad conversion date: no permission /etc/wtmpdate: bad conversion Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/utmp    !@!@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF2&&>&`&&&&&]&&J&&&&&&&&&&&&&=$&&&&&&&&&&&&&&&&K&&&&&&&&&&e&!=$&&&&5&&&&&&&K-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@3@3@)@3@ 5@3.1bS03.1bS0)@3@bin/dc100755 3 3 111644 4201127354 6416 37777777777 L!  @.text .data@@ @.bss@@.commentÐET@RU RP PɄjÐUu u=0U,WVSW@9`@t`@8tHUĈ5@EP]Y3V@9@u h@#[Y @@@UĉY{=^t`Y=IV=-t8=!"= 2=!2Nx@,@9@u@3@-@@=@thl@DZY@@JIJthy@ZY,@9@u@3@-@@=@tQ5@@9@u h@YY @@@UĉYh@YY @@R9u3u<@@R9u @J}x@5@6Y@@@+B=|h@ YY@@JIJ@5@5@+5@WY@@JR9u @u3K@@R9u3u,@@R9u @kdNj@ljE5@ WY=x@@9h@|h@@E؋E9E}j+EPVI؋C 9CuSSYCCU؈S@9@u h@WY @@@UĉYF 9FuVJSYFFUԈV@9@u h@`WY @@@UĉYVF 9FuVRYFFUԈV@9@u h@WY @@@UĉY=x@X,@9@u@3@-@j?OY؋C 9CuSXRYCCC 9CuS@RYCCS@9@u h@XVY @@@UĉYV@9@u h@VY @@@UĉYM@@@+B@P5@|OF 9F7+_J=0U=   =*=%!j/5Y,@9@u@3@-@VTY=l@d@d@R 9Pu 5d@PYd@P@t@h@5d@@9@u h@TY @@@UĉY,,@9@u@3@-@@=@th1@hTY,@9@u@3@-@@=@tQ5@@9@u h@ TY @@@UĉYh>@SYY@@JIJE@@JIJEj* 4Y,@9@u@3@-@FHFEEܢ@@;h@~T@;E~H@;E~t "==cWqBY=_ =?A`@`@=`@uh$@LY)`@@#@@@r=Xtg=P=L9=K @ @@+B@P5 @EF 9F ,@9@u@3@-@=@th@KYQ FF9uHEVJYj@DY ,@9@u@3@-@=@th3@\KY F 9FuVGYFFvh@@1KVJY (*%|@|#@=|#@uh@JYr |#@|@#@#@pQF3=O% @@@+B@P5@;DF 9F =S =Q ,@9@u@3@-@=@th@"JY F+F=~h@JY FF9u}h@IYP VHYI ,@9@uhP@IY' (%|@|#@#@|@E#@=#@tQE|#@,@9@u@3@-@=@t h\@#IY hi@IY * jVBE =Zt\=YC @0h@$C5#@5#@5#@h@H5#@h%@H ,@9@u@3@-@=@th@EHY F+FHEE؋FF9tF9u3ugF9uH}FmF9u3=tF9uHuEZ~ M |VwFYj3@Yظd9E|-C 9CuSBCYEعd‹SCEؙE؋C 9CuSCYCCU؈C 9CuSBYCCS@9@u h@GY @@@UĉYk=[REjm?Y%]u }B M؋F 9FuVmBYFF׈[uE=otW>=f-=cV @=_FHF@V#Y<,@9@u@3@-@=@th@EYoV8YEF+FEPVu?؋CC9uH}9E}7ES@#YC+CE؋CC9uH}9E7,@9@uh@6EY@E=d,@9@uhC@EY|@C+CEP@0>V@9@u h@DY @@@UĉY=ktw/=i,@9@u@3@-@=@th@@DYV7Y5@BY5@,@9@u@3@-@=@th@CYUV6YF+F=~h@CY/FF9u u 3t3F9uh@5 @@BY5 @=l:=vtC=q=p,@9@h&@CY~,@9@u@3@-@=@thK@BY8FHF@F+FF9uH}hX@tBY@9h@} @E"h@E@+‰Eؠh@@uVB@5@Y@@R 9Pu 5@=Y@P@@5@@9@u h@AY @@@UĉY@9`@wjjY`@8t0O@Y-`@`@8t06@Y-`@@0"Y=s,@9@uh@AY %|@|#@=|#@t|#@p8F#@|@|#@#@=#@|#@,@9@u@3@-@|#@p=zt[=x,@9@u@3@-@=@h@@Yj8Y@+@Eظd9E|+F 9FuV;YEعdVFEؙU؋F 9FuVn;YFFU؈F 9FuVT;YFFV@9@u h@l?Y @@@UĉY@9`@t?`@8t5I9 u 0=Y'`@`@=`@uh@>Yx`@`@0tF_ tSW@9`@t`@8tHUĈ5@EPAY=tWh3@>0| 9A| F.YC9uHkUdЉUC9u3tu6Y#@E#@5@<Y9Eu Eأ#@5@#@H9Eu?}u94#@-G#@#@#@FSj<Y E9EuEj 6YF 9FuV&9YFFSV+EЋ@+BEE؋EHЋR9u EJ= ~Eu;YS;YV;YEأ#@H#@#@F#@9#@KF=#@#@#@.@9`@u h@<Y`@8t0Z;Y-`@OEm0Y,@9Ew,@9@u@3@-@=@uV:Y=@tC 9CuS7YCCEظ9ErV:YEpMV:YP:YF9u3tV|:YV:Y؅tSc:YF9u3tV@9@u h@^;Y @@@UĉY#@#@F 9#@rj/!tj3YF 9FuV6YFF׈:F 9FuV6YFF׈\uF 9FuV{6YVF u#@@`@0U4WVSd@j3YE Ћ@+BuYu @9@u h@A:Y @@@UYhH@:Y]uċ}E3E] CC9uH=u(E Ћ@+BPu d3ShYEЉEEЋ@+BPu<3FF9u3u4F9uH=uV YEЉEEЉEF+FS+S+‰E}eE@PW3F 9FuV4YFFECC9uHEظ 9E}EC9u u 3t3C9uHkUdЉU؃}8C9u u 3t3C9uHkUdЍUEعEFF9uHkdEԋF9u u 3t3F9uHE܋EEkdEԋF9u u 3t3F9uHEEԋE؉EЃ}uEEЃ}teEԙ}ЉEC(@(@JExC9uEEEdE(@(@R 9u 5(@2YEd‹(@ (@R9v (@ HC9u3p(@(@R 9u 5(@r2Y(@E(@(@R9v (@ H(@(@JuV+1EF9uE(@(@R9u u 3t3%(@(@R9u (@U+Ћ+EEE}} EdEF 9uV1YUF9vFF9u3>EEG9tG 9uW@1YUG9vGG9tM|N}}t\G 9uW0YUJG9vGF 9uV0YF9vFVSD#EV3YűGEXG9uEEEd9E| mdEG 9uW]0YUG9vGG9u3t}t#G 9uW 0YUG9vGGG9uHuGG9u3t̓}}WYFF9uHuFF9u3t̓}}VmY;] tS2Y5d@UPWVS,@9@u@3@-@=@thU@V3Y]u}ø,@9@u@3@-@=@tQhb@3YV@9@u h@2Y @@@UYnGHGp@FHFt@F9u3=t2F9u3F9uHunF 9FuV.YFFt@V@9@u h@2Y @@@UYho@1Yh@+p@t@E}}EPW<uW l@@5@h@@3/UPWVSEHE @EP)Y8G 9GuW-YEЋR9u EWGm 9E j)Y4C 9CuS,YEЋR9u ESCEЋR9u3tu/Y9E 5@SSe/Yd@d@JR9u3uF9uEGCEEG9uEC9u u 3t3C9uEEEEEEdEC 9uSYEd‹C9vCG9u3VE}tXC9u u 3t3C9uEC 9uSsYUUC9vCF9u3}}S&Y;}tW=+t=/uF5@5@.5@5@ 5@5@-5@Y5@YG 9GuWYGG@W@9@u h@Y @@@UY}UWVSEH1EЋR9u E=c~ EHEЋR9u3tEHЋR9u EJEEЋR9u3th@Y]u}á#@#@EЋ@+BPuGHGGG9uH}3WlYj-h@ #@uh@Y#@#@=#@t 9#@ujduW& N9#@uj1uW . 9#@uuW$@$@ $@IJ#@EE E=#@EuWruW+5@W9WYj5d@#@G+GuWiY$@$@JQ$@$@R9u $@JPh@M #@uh@8Y#@#@$@$@R9u3t}uSYh@Y$@$@ $@IJj.h@ #@uh@Y#@#@ES5@SfYuVuV jW#@E@E;E|S+Y$@$@JP$@$@R9u $@Ph@ #@uh@Y#@#@$@$@R9u3th @YEЋR9u EPh@EЋR9u3th@sY[UPWVSEHЋ@+BE;E }$EЋ@+BPu]u}ËEЋ@+BPY8G 9GuWYEЋR9u EWGm 9E }} t15@WG+GEPDYWwYF3_C 9CuSHYF9uSCEMʋC 9CuSYCCVY5@SSY5d@YUWVEH3cEЋR9u EJ } uWh @Wh @-#@h @Y#@#@EЋR9u3uEЋ+BHE;E i} u h @EЋ+BE;E EЋR9u EJ Ph @ -#@h @Y#@#@ǹ R0Rh @ #@uh @Y#@#@M ,j.h @ #@uh @Y#@#@EЋ+BE9E /j0h" @Y #@uh% @DY#@#@M EЋ+BE9E ]EЋR9u EJ }Wh( @Wh, @m -#@h/ @Y#@#@9E 9E uTEЋR9u EJ @0Ph2 @~ #@uh5 @iY#@#@h8 @TYu#Yu}UWu u>$@$@ $@IJR 9Pu 5$@Y$@P@KW5$@2EWY}EPh: @ #@uh= @Y#@#@G+GWpYh@ @Y}UWEHЋR9u3t;$@$@R 9Pu 5$@ Y$@P@0uY}ËEЋR9u EuY| hB @Y$@$@R 9Pu 5$@Y }G0G7$@JBUPWVS9E u j8 Y =$@$@$@@+B#@HEEЋ@+BEHЋR9u EJEuY5@uuYud@d@JG 9GuWYd@d@R9u u 3t0(d@d@R9u d@@0WG5d@TYEЋ@+BKu:Y9E uNG+G#@+Ћڃ}t.K$@$@R 9Pu 5$@Y$@P-@G$@$@@+B+-$@$@R 9Pu 5$@Y$@P0@K̃}t6$@$@JIJR 9Pu 5$@YY$@P-@$@$@R 9Pu 5$@,Y$@P@ ]u}á$@$@R 9Pu 5$@ Y$@P0@KC$@$@R 9Pu 5$@ YG9uH$@JBG9u3tWY/UWVSEЋ@+BU ʋR+Q;~EE Ћ@+BEP YEHE ЋJ3EЋR9u u 3t3EЋR9u EEE ЋR9u u 3t3E ЋR9u E EEEƋ؃d| d} d3G 9GuWf YGGӈM3tG 9GuW@ YGGֈGG9u3u_G9u3uG9uHEtσ}t#G 9uW YUG9vGGGG9u3uxG9uH=u[ 9Et G9uHE=ct֋G9tG 9uWE YG9vGGNj]u}UPWVS,@9@u@3@-@=@thQ @Y]u}ø,@9@u@3@-@=@tQh^ @YW@9@u h@Y @@@UYnGHG؋FHFE;]u=@5@â@32;]}E@E+PW?â@+EPV'=@5@3UWVEHEЋR9tm 9E j_Y4G 9GuWv YEЋR9u EWGEЋR9u3t9E u&5@WW( Y5d@ Yu YNju}UWEЋJIJWuE}UWVSu u jYG 9GuWYGGU W5@W YVS%Sw YVp Y5d@d YG 9GuWCYGGU Nj]u}U,@9@u@3@-@@=@thk @ Yá@@JIJ@5@Y@@R 9Pu 5@Y@P@@5@@9@u h@ Y @@@UYt Rj+Y3CUtWVYE=<t==t!=>u$jYu}jYjYEEEEUE= uE u%jEPh @h @hx @ j@3Yjj3EEPT(Y;tuuj2h @ Y3KUWV t u}ø,@9@u@3@-@GHGG+Gu5WYE=<tE=>tE=3E==uWY3gE=uWY}FGG9uHWaY}E=<tE=v~E=>cE=T UWVS6%|@|#@=|#@|#@p|F+FPY؋FF+FPV|S@9@u h@Y @@@UY]u}jY؋C 9CuS7YCCS@9@u h@OY @@@UYV/YE}u jS;$EЋ@+BPuEPSF9u3tS@9@u h@Y @@@UYUW}u3}ÿ}}Oe}OUWV#@E#@u+Yu%h @,Yuj+Yu h @Y@u#@ƉGGEG Nju}UWV#@#@h+Y=@=@u,h @Yh*Y@u h @"Y ǃ0@;r@u}UWVS#@E #@EЋ@+Bu Ep؅u=h @ Yu Epuuu h @h @yY@u@ÉGE G ƉG_C;_ rNj]u}UPE p pp0u uh @yE PUEEPh @WE @9Erh @?YUWVE@E E;x +P #@Ep+Yu Ep,uMEЋ@ +BPEp+UBh @Yu Ep+u h @9YEpЋM UJ Hu}ËE8;xvxUEЋR 9u u#YEE EЋR9vЋ HUWVEЋ@ +BEuǹ3#@Ep*YWEp+uKEЋ@ +BPEp*UBh @YWEp*u h @1YEЋM+Q։ЋR+Q։Pp׉P u}Uuh @[5#@5#@5#@h @<5#@h+ @)@0h7 @zUE E|@U}9E}PEPU@t uh; @uhF @ uYEU}uEPU‹UJEZE}tQE@th~PW =uh~Ph @v 3WW YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E4@r5E<@rH@ED@AEd@s6EE]@)EEl@r݋EE 9P܃}t؁@@v@Et@t@r05}fEf fEmE]mE܉E@0Ee |@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEL@MU]vEu}fEf fEm]mE܉EFUR0EMm]ET@E5\@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øF L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}t@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u#@'@GW @*h!YGt@O G W@GGVYtG uO @u}G +@WR@UWV}G @+G}G @Wu};7}7𐐐63ÐUt@EEPhTu } Et@3ø6ÐÐU WVSE9ET=@u<@ @@ @|@@x@@|@@E@3؋=x@E&;5|@@E@E=w=@jY|@@;t?3Ee ƹ3tL3+‰EEE2|@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@|@0E+E-|@@;t|@|@|@@~Љx@;5x@vx@@x@ 9=@u x@@G(=x@95@u=@7tލ;r;l%;UWV}5x@%|@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øÐ0NL$0:L$0+L$0L$0 L$05Ã%3ÐÐt@ÐWT$@@(#)dc 5.3b of Jan 27, 1988stkall %ld rel %ld headmor %ld nbytes %ld stack empty stack empty stack empty sqrt of neg number stack empty exp not an integer stack empty exp too big stack empty stack empty stack empty stack empty scale too big stack empty stack empty Q? neg Q readstk? empty stack empty stack stack empty %sempty stack save: args stack empty symbol table overflow save:args L? stack empty neg index index too big index too big stack empty stack empty neg index index too big index too big stack empty nesting depth nesting depth %o is unimplemented divide by 0 stack empty stack empty divide by 0 rcan't open file %s %s cannot be a directory out of stack space 2 decimal pts. - 2nd ignored. %c 0 %c\ %c\ %c\ %c\ 0%d%d\ %d.\ %c\ %c\ %c\ 0%d%d\ %c\ %c\ hex digit > 16stack empty stack empty stack empty /bin/shsh-c! sallocsallocmorehdheaderscopycopy size %d copy%s %o rd %o wt %o beg %o last %o %d seekcseekcmoremoreout of space: %s all %ld rel %ld headmor %ld nbytes %ld stkstring %o odd begarray %o elt %d odd tmps %o p %o eltodd ptr %o hdr %o redef-baddummyredef 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFbkk"bkDkkkkkAbak b.bkqbbbbbbbbbbkkkkkkkkkkkdk!ikkkkkkkkkkkkkkkk/dkkkkkkkkkkIkbdf!ibbkkbkkdkkkmkkckk/d-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@+@+@@+@h-@3.1bS03.1bS0bin/dd100755 3 3 54310 4213036615 6375 37777777777 Lu=," 4:h @.text4: .data@@;@.bss8@8@h .commentXÐET8@RU RP P9jÐU WVS8@8@9@E(EEEE 8@t E8@E8@t E{8@kE_8@t EG8@7E+8@t E8@E8@t E8@E8@t E8@E8@t Ew8@gE [8@t EC8@3E'8@t E 8@E 8@ N= tFKu F8@+H)8@8@i =8@ 8@+8@8@8@Z E-8 =- % $ @E  D@E D@E 8@8@3 E 1D@E%D@E-|=w |$!@FUKu78@98@v*8@ 8@N8@8@8@98@s8@rE=8@t)GE= u 8@KKuÅ8@t8@+8@@;v8@+8@@؋)8@8@8@E-Q =F > $d!@=$!@E 9@h"@ Yth Y8@h!"@j Yth Y8@h&"@F Yth{ Y8@h+"@" YthW Y8@gh/"@ Yt9@9@Ih3"@ Yt9@9@+h7"@ Yth Y9@h="@ Yth Y9@hD"@z YuhK"@k Yth Y 9@hQ"@G Yth| Y9@hX"@# YthX Y9@hh_"@ Y59@Ahg"@ Yt Ehm"@ Yt E hu"@ Yt Eh|"@ Yt Eh"@l Yt Eh"@Q Yt 8@jh"@6 Yt 8@Oh"@ Yt 8@4h"@ Yt 8@h"@ Yt 8@he"@ Y59@h"@h4@ jz2YC;]=8@t8@8@8@=8@t =8@uh"@h4@ j,2Y}u?=8@th"@h4@i j2Y=8@t 8@tE=8@uE- |= w |$$ @EH|=w |$X @8@=9@tj59@09@#@j' Y8@98@uA&@98@v(#@ 8@$@P59@h#@h4@ j 1Y8@=9@th59@ 9@)#@j Y8@98@uA&@98@vD#@ 8@$@P59@h*#@h4@ j0Y8@@ P+Y 9@}u 9@8@8@@ P+Y$9@= 9@t =$9@uhE#@h4@ j,0Yjj/=h j/58@5 9@58@& 8@98@u48@@8@=~h\#@ Yj/Y5hl#@ Y(=8@uh#@i Yj/Y 8@ 9@=9@e=9@t7j9@8@P58@* =uh#@ Yj&/Y= 9@t7j 9@8@P58@J* =uh#@ Yj.Y8@8@8@8@5$9@=9@t8@8@;9@8@t0 9@8@8@tOt OOKu58@5 9@58@t$ 8@98@uBh#@ Y8@8@@8@=.8@8@ 8@8@9@=8@u(E- =$ @8@98@u8@I8@8@t78@u+8@+8@ء 9@8@OKu8@8@8@t<= 9@8@t 8@8@@GEGGUKu= 9@ER8@+8@;v 8@+8@؋)8@8@EH|= w |$!@8@98@r8@u8@+8@;v 8@+8@؋)8@8@8@E- |=w |$L!@8@98@uI8@N= tFKu F8@+H)8@8@Z8@98@s8@OGE= TFUKuKGE= 2FU$@Ku#GE=  FU$@KuGE= FU$@KuGE= FU$@$@KuGE= FU$@$@KuxGE= tcFU$@KuWGE= tBFU$@$@Ku/GE= tFU$@$@KuE}C8@8@+8@8@8@+8@8@Erz=8@uj!Y,_8@98@s!FUKu<8@98@s 9@jYfF׊ GKuFG$@KuFG$@KuFG$@KuFG$@$@KuFG$@$@KukFG$@KuTFG$@$@Ku6FG$@$@KuFG$@KuFG$@$@KuFG$@$@KuF׊ GKu#FG$@Ku FG$@KuFG$@KuFG$@$@KuFG$@$@KuUW=9@ EEtGU;tEt3}O=9@UWE =9@EkE G-0E=0|=9E9E~Gt==*t=btp=kt[=wtZ=xud=9@hzYUЉUE9E}}uh#@h4@@ j&YE}e eze q59@h$@h4@ j&YLUPWVS=8@8@98@r E8@8@E8@u5$9@58@% ;]th$@YjMYE)8@=$9@=8@t $9@8@8@G֊ FKuNj]u}á$9@U u%YU58@58@h/$@h4@ 58@58@hA$@h4@=8@t298@tk$@m$@P58@hT$@h4@Ð).%Ð%ÐUWVp$@&@98@s 8@<$@uqYtVujS$ jh~$@jB$ WEYPWj/$ jh$@j$ u}ÐUPWEEE@ uE@ t(EH uuu E@ t }ËUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSqYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  7@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl1@Dž\9PtP؉PNKPPoY Ek E-0GE1@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl1@Dž\?E2ETMDžl1@Dž\EE C~u~E܉TMs؍gh݅H80@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@0@u+-hJhE1@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h3@YEt Eu =3@t3txE3@3@h3@EPJuEP;jEP|>h~PW =uh~Ph1@ 3W YkUjuuuu u#Ujuuuu uU$WVS}(9@E(9@E4@s3UtE](9@E4@E4@EX4@r5E`4@rl4@Eh4@AE4@s6EE]@)EE4@r݋EE 9P܃}t؁(9@v9@vv9@E4@t99@r05}fEf fEmE]mE܉E@0Ee 4@];r&=5|+(9@u(9@1}tCF0N<9(9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEp4@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ex4@E54@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 7@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 7@+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}8@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW4@ WY;=7@r}UWV}tlG t6G t3WVYG PY}8@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 7@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 7@+G?}3W 7@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 7@+G?}3W 7@+W;}WY3UWV}G G u}}&ux9@=@GW 7@*h!YGt@O G W7@GGVYtG uO @u}G A@WR7@UWV}G 7@+G}G 7@Wu};7}7𐐐3ÐU8@EEPhTu } E裘8@3ø6ÐÐU WVSE9ET=8@u<8@ 8@8@ 8@8@8@8@8@8@8@E@3؋=8@E&;58@8@E@E=w=8@j Y8@@;t?3Ee ƹ3tL3+‰EEE28@+8@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή58@8@0E+E-8@@;t8@8@8@8@~Љ8@;58@v8@8@8@ 9=8@u 8@8@G(=8@958@u=8@7tލ;r;l%;UWV}58@%8@9u58@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ8@Nj]u}WV|$ t$L$Njʁ^_ÐT$8@Ru 8@+D$øT$8@3øvÐ0:NL$0::L$0+L$0L$0 L$0 Ã8@ÐT$@@(#)dd 5.3b of Mar 2, 1988    .<(+|&!$*);~-/,%_>?`:#@'="abcdefghijklmnopqr^stuvwxyz[]{ABCDEFGHI}JKLMNOPQR\STUVWXYZ01234567897-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|ཚmyO_ !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwxjJ7-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|_myOС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~H' ' T' ' H' ' `' ' lx? ? H? ? ? ? ? ? ? ? ? ? ? ? |? ? LLLLLLDVm *A_}>f2Z%%%...:::VVVVVVVVVVVVibs=obs=cbs=bs=if=of=skip=iseek=oseek=seek=count=files=conv=,blockunblockebcdicibmasciilcaseucaseswabnoerrorsyncdd: bad arg: "%s" dd: buffer sizes cannot be zero dd: cbs must be zero if no block conversion requested dd: cannot open %s: %s dd: cannot create %s: %s dd: not enough memory dd: skip faileddd: read error during skipdd: cannot skip past end-of-filedd: input seek errordd: output seek errordd: read errordd: argument out of range: "%lu" dd: bad numeric arg: "%s" dd: write error%u+%u records in %u+%u records out %u truncated record%s sUnknown error: &@&@&@&@'@'@"'@<'@N'@`'@p'@'@'@'@'@'@'@'@'@(@(@#(@2(@C(@W(@k(@|(@(@(@(@(@(@(@(@)@)@3)@F)@b)@{)@)@)@)@)@)@)@*@6*@?*@H*@Q*@i*@*@*@*@*@*@*@*@*@+@+@*+@8+@P+@n+@+@+@+@+@+@+@+@+@,@,@",@+,@>,@G,@P,@k,@,@,@,@,@ -@I-@p-@y-@-@-@-@-@-@-@-@-@-@-@-@-@-@-@.@.@.@".@,.@6.@@.@J.@T.@^.@h.@r.@|.@.@.@.@.@.@.@.@.@.@.@.@.@.@/@/@/@&/@0/@:/@S/@]/@m/@{/@/@/@/@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF>""J"l"""""i&"2V"""""""""""""I """"""""""""""""W""""""""""q"I """"A"""""""W-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@A@A@7@A@ C@3.1bS03.1bS07@A@bin/df104755 0 3 47120 4201127363 6377 37777777777 L! 5t@.text5 .data@@6@.bss@.@@.@t.comment@NÐET@.@RU RPb Pq5jÐUPEEEEuEHE=/uE@EMߋEHEU8WVEE 0YEjhd@ul rh0@E E 0=uhj@hP*@wE:A E؊tE 0uhr@ E 0hy@ EMuu`4YRE=ft&=lt=tu 2@.2@"2@h@hP*@ j 4Yh@u u E=ujh@n3h@h@hP*@ j3Y=2@t0@hP0@h@EP h@EP&uh@h@EP @9E~Eh0@hp0@=u f0@hp0@EP~EjHhP0@W) =HA5@E :th@4=EF;u|W.Yu2Yu}ËE Ű h0@E 4S=u f0@j EPE U4 tj hp0@E U4 u"hp0@EPEȋE Ű v0@%=@ucj hP0@Pz uJh0@E U4 =u f0@E U4EP&EȋE Ű E̋E9EUE 8t0@t =2@E 8t =2@ju02@}(uh@hP*@ 52@i,Yh0@u }(uh@hP*@ 52@-,Y0@%=t0@%=u&uh@ 52@+Yv jh52@*, |hh0@52@& =t52@+Y# ~92@u 92@u 2@92@2@2@2@ 0@90@vP@90@|A@@352@0@;r"0@2@@3=uh@Uuh@;jj(h2@u }*uh&@hP*@ h<@Y@2@f2@fPjh2@@P jh2@@@ P 2@=2@uyE 8u hh2@hD@u hN@uhS@t *E@@PEP@2@Ph]@?EE(uE2@Puu hy@}52@O)Y=2@tfh@[YE 8t=2@u52@52@h@/0@-2@@3P0@2@Ph@ 3uU0@=tl=/@t</@#0@/@UD.@;u3/@/@9/@|и9/@}/@/@f0@fED.@Uf0@fHf0@E}| 29E|5@h@+3ËE0@U}u30@9Er 0@9E|uh@3f0@fchPuW E@ff0@E"@U E 0@E29E|ԋEGUPj 2@EP52@' }h@Yj+Yuu 52@Y" E;EtO9Eu"uh @hP*@^ h8@qYuuuh9@hP*@6jd+YUP/@f=X@u5E"jE4L@*UfP@E9E|f0@f/@EEfP@f|p4L@OYu_/@PEP@P^t?E4L@h/@Z!h~@h/@xjh2@h/@ E9Eo/@UjjEP& f=2@h0@h2@=uh2@h@hP*@ 3E 0@;u?0@%=`u,h@h2@th@h2@yu#jh2@EPI =Q3델놸 v)3ÐUPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWua=@tOLjEE E 0YPE 0j( h@mYPh@jg( jEPjW( E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0YPE 0j' h@YPh@j' jEPjt' @?GE @@ @@8E @ @@@u@@@UWV@H@9 .@s .@< @uYtVuj& jh@j& WYPWj& jh @j& u}ÐUPWE EL*@uL*@t* L*@h@*@uu L*@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWEEEEEE2EEEPuu c ENj}Ð#r%3ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}Ð$ÐUPWVS}u ]C}G8uO KuO GF҈uE]u}ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐$3ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  T-@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl<'@Dž\9PtP؉PNKPPoY'@Dž\EtDžl@'@Dž\P 9u E@u K@0E@FE+ËU+Љ)ETMEE E PP~؉]PJKPPkY5Dž0Dž4Dž0Dž4EE E PPX9Eu%@%@<Dž$%@Dž<%@E@uEE E -ݝHN%=L%uUHuLO%=u Dž Dž,E9Eu%@%@؍CEO%=uDžlH'@Dž\L% H ‰PDž(Dž0Dž4E9EDž$%@Dž<%@@PDPE@=}E@PLH* HE能@tDžlJ'@Dž\h~PW =uh~Ph`'@ 3W YkUjuuuu u#Ujuuuu uU$WVS}0@E0@E)@s3UtE]0@E)@E)@E)@r5E)@r)@E)@AE*@s6EE]@)EE*@r݋EE 9P܃}t؁0@N0@vN0@E *@t0@r05}fEf fEmE]mE܉E@0Ee (*@];r&=5|+0@u0@1}tCF0N<90@]Ћuԋ}ËEE0]@EEsEE 9P EEEE)@MU]vEu}fEf fEm]mE܉EFUR0EMm]E*@E5*@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G T-@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W T-@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@.@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW0*@ WY;=P-@r}UWV}tlG t6G t3WVYG PY} .@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG T-@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G T-@+G?}3W T-@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G T-@+G?}3W T-@+W;}WY3UWV}G G u}}&u 3@7@GW T-@*h!YGt@O G WT-@GGVYtG uO @u}G ;@WRT-@UWV}G T-@+G}G T-@Wu};7}7𐐐3ÐU .@EEPhTu } E .@3ø6FÐ2ÐU WVSE9ET=4.@u<8.@ 4.@4.@ 8.@(.@8.@$.@4.@(.@0.@E@3؋=$.@E&;5(.@4.@E@E=w=0.@jY(.@@;t?3Ee ƹ3tL3+‰EEE2(.@+0.@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή50.@(.@0E+E-(.@@;t(.@(.@(.@4.@~Љ$.@;5$.@v$.@,.@$.@ 9=0.@u $.@0.@G(=$.@950.@u=0.@7tލ;r;l%;UWV}5$.@%(.@9u50.@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ,.@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$<.@Ru <.@+D$ø!T$<.@3øÐ .@ÐT$Ð@@(#)df 5.3b of Jan 27, 1988b2@ (%-10.32s): is not a file system, directory, or mounted resource Usage: df [-lt] [-f] [{ }] ... f@o@t@devnmdevnm: %s %s devnm: %s not found tfl/etc/mnttabdf: cannot open %s /etc/mnttab%.32sroot%.32s/dev/rootdf: cannot open %s df: cannot stat %s (%-12s): bad block type df: cannot statfs %s statfs %-6.6s %-9s (%-10s): %8ld blocks%c %7u i-nodes %-10s(%-10s): %8ld blocks total: %8ld blocks %7u i-nodes %8ld blocks %7u i-nodes bad free count, b=%ld bad free block (%ld) bread: seek errorread error block 0x%x: read error at block 0x%x, wanted %d, got %d /dev/dsk/dev/dev/rdsk/devnm: cannot stat %s swappipe: option requires an argument -- : illegal option -- --Unknown error: L@T@^@x@@@@@@@@ @@.@@@L@b@n@z@@@@@@@@@@"@:@G@]@l@x@@@@@@@@ @9@V@q@@@@@@@@ @ @1 @B @O @e @z @ @ @ @ @ @ @ @ !@!@3!@C!@Q!@m!@|!@!@!@!@!@!@!@!@!@!@"@'"@N"@s"@"@"@"@#@ #@#@#@%#@.#@7#@@#@I#@R#@[#@d#@n#@x#@#@#@#@#@#@#@#@#@#@#@#@#@#@$@$@$@"$@,$@6$@@$@J$@T$@^$@h$@r$@|$@$@$@$@$@$@$@$@$@$@$@%@%@#%@;%@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF&HE2u%3M%q3-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@,;@,;@P-@4;@<@3.1bS03.1bS0P-@4;@bin/diff3100755 3 3 1010 4201127372 6744 37777777777 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "@(#)diff3:diff3.sh 1.3" e= case $1 in -*) e=$1 shift;; esac if test $# = 3 -a -f $1 -a -f $2 -a -f $3 then : else echo usage: diff3 file1 file2 file3 1>&2 exit fi trap "rm -f /tmp/d3[ab]$$" 0 1 2 13 15 diff $1 $3 >/tmp/d3a$$ diff $2 $3 >/tmp/d3b$$ /usr/lib/diff3prog $e /tmp/d3[ab]$$ $1 $2 $3 right (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "@(#)diff3:diff3.sh 1.3" e= case $1 in -*) e=$1 shift;; esac if test $# = 3 -a -f $1 -a -f $2 -a -f $3 then : else echo usage: diff3 file1 file2 file3 1>&2 exit fi trap "rm -f /tmp/d3[ab]$$" 0 1 2 13 15 diff $1 $3 >/tmp/d3a$$ diff $2 $3 >/tmp/d3b$$ /usr/lib/diff3prog $e /tmp/d3[ab]$$ $bin/drive100755 3 3 40310 4237421300 7105 37777777777 L"~" (4 @.text( .data @ @4)@.bss @ @ .comment@ÐET @RU RP Pi(jÐUPWV9E}h @Yj6(YME jE 0'}h @Yj(Yhh !@W =th @Yj'Y!@%=th4 @HYj'Y&!@=y!@E EJ9E}69E| E@9E}9E| Er/9E&9E| E(UI9E}C9E| EF8e9E}W9E| EZ9E}9E|EfEf"!@E  @E 06tF=tS==Bh @6h&!@=6h @#ha @6+t&hk @6thq @6u"&!@=u6hu @F !@%Pv dh @6t&h @6th @6u&!@=u6h @ PF !@%Pv 4F !@v vh @ >iMRj%Yu}Uh @Yj$YÐUWVp @@9 @s @< @uYtVuj$ jh~ @j$ WYPWjs$ jh @jb$ u}ÐUPWE E@u@t* @h@uu) @ t }ËWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSqYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS} @E @E@s3UtE] @E@E@EX@r5E`@rl@Eh@AE@s6EE]@)EE@r݋EE 9P܃}t؁ @ !@v !@E@t @r05}fEf fEmE]mE܉E@0Ee @];r&=5|+ @u @1}tCF0N<9 @]Ћuԋ}ËEE0]@EEsEE 9P EEEEp@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ex@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð* ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW@ WY;=@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG P7 =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u #@'@GW @*h YGt@O G W@GGVYtG uO @u}G +@WR@UWV}G @+G}G @Wu};7}7𐐐z3ÐU @EEPhTu } E裘 @3ø6&ÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @j Y @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}WV|$ t$L$Njʁ^_øVÐT$ @Ru @+D$ø!T$ @3øÐ @ÐT$È @@(#)drive 5.3b of May 3, 1988h @r @v @| @ @ @ @ @ @ @ @ @ @  @ @ @ @ @ @ @ @ @cylinders%d heads%d spt%d secsize%d skew%d interleave%d magic%x megabytes%d type%d manutype%d nblocks%d Can not open drive configuration informationCan not read drive configurationNo drive configuration information present. cylindersheadsspt%s: not defined for SCSI drives. cylindersheadsspt%s: not defined for SCSI drives. nblocks%s: only defined for SCSI drives. Can't handle size %d usage: drive device [magic cylinders heads spt nblocks skew interleave secsize megabytes type ] Unknown error: @@@@@@"@<@N@`@p@@@@@@@@@@@#@2@C@W@k@|@@@@@@@@@@3@F@b@{@@@@@@@@6@?@H@Q@i@@@@@@@@@@@*@8@P@n@@@@@@@@@@@"@+@>@G@P@k@@@@@ @I@p@y@@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@@&@0@:@S@]@m@{@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFFRtq.:^ Q_ y QI  _ -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@,+@,+@@4+@,@3.1bS03.1bS0@4+@bin/dtype100755 3 3 55700 4273151231 7135 37777777777 L|" CL d@.textC .datad@d@LdD@.bss@@ .comment[ÐET@RU RP PICjÐU9Eh@h@ jCY9E~E P=-uoE PB=su^@ME K=@uE E 0h@ 9@uE E 0 Y5t$@9YM5x$@xBYU WVh@u7t$@u&=@u h@ Yx$@<u}ÿ$@FO5t$@hjh$@X$@t$@@ u=$@u =@u h@ Yx$@=Q=@u h@ YEPh@h%@ EPh@h%@ %@t=@uuuh@\ =@u h@F Yx$@Ggt+=@u5$@h@ x$@F{t\$@=0u'x$@I=@h@Yx$@H=@kh@Y[t}=$@u#=@u h%@xYx$@^&=@u-9|$@u`@e@P5$@h<@5 9|$@u3@ZXZtx=@u-9|$@u@@P5$@hl@ 9|$@u3@dE 9$@u3UЉx$@TStS=@u'9|$@u@@Ph@`9|$@u3@Px$@tU=@u)=$@u@@P5$@h@ 9$@uxx$@dtA=@u)=$@u@)@P5$@h@ x$@P=@h*@{YUWV9$@| $@u 3u}jh(%@EP% E(%@ F0%@rf3$@fFf&@rjEPh(%@ EPh=@EP f;}u |3uUWVk9$@t 3u}f3$@fFf,@rfIu3UP$@=qt'fEEPhA@h$@s E=qu3UWS&@%=ugG=u\G=uQét|$@$@$@=t ]}G(@r3UWSpt$@$@;t 3]}G&@rUPWVS$@Ef3fE%f}fGf|fuO$@E%=u8f$@$@ ff;=$@}$@U;t 3]u}Et|$@Et $@Et3$@UPDU+9(@tA$@.@@tajh.@EP umYtAL(@C$@(@@t jh(@EPW u,Yu3P(@=Fu3$@UjE P5t$@ u5t$@jjEP=t3E=uhF@EPu3UHjh5t$@ 5t$@jhP=uq ~9Eugjh5t$@ 5t$@jj@PC=u,$@EE=8&|u3$@3UWVS}}~EE ;ur;u s 3]u}Ã?'WnY=uE H3u U+ЋO;7sSwu8 ÉE)G?}3W @+W;}W4Y+Å{EhUWVSu] 3 FC FCFӊ CCG;}|]u}UWVSu] 3 FC FCFӊ CFG;}|ދ]u}ÐUWVH@@9p$@s p$@<\@u-YtVuj8 jhV@j8 Wi-YPWj7 jhY@j7 u}ÐUPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P2 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P42 ECG t8W.YG t g GGuu G P1 E9Eus3lUPE EPuh@d UPEEPu uI UW}EEEljEEW+YEE2uu EP }ÐUWVS}u Dž@@ @W}=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_=@uVctQ[tL@} W@ Y GG@u @W>=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf@fl9uEEP@{EEP@dEPWSt'=@tu /$Fu @td=@u@} W Y GG@u @W =u@y%uF؃%@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE@}WyY3]u}ËGG=+t=-t =0t8EM@} W(Y GG؃0i9E }9Eo@} WY GGEh~PW =uh~Ph@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E @ET@r5E\@rh@Ed@AE@s6EE]@)EE@r݋EE 9P܃}t؁@ @v @E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEl@MU]vEu}fEf fEm]mE܉EFUR0EMm]Et@E5|@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}p$@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u/@3@GW @*h!YGt@O G W@GGVYtG uO @u}G $7@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUp$@EEPhTu } Ep$@3ø6:Ð&ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@j Y@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}WV|$ t$L$Njʁ^_øVÐT$@Ru @+D$ø!T$@3øÐp$@ÐT$h@@(#)dtype RTS 5.3b of Jul 26, 1988usage: dtype [-s] device ... %s: rempty tar format%lo%lo, extent %d of %d dump format, volume %d cpio character (-c) format cpio format MS-DOS 2.x fixed disk MS-DOS 2.x, %d sec/track, %s sided dualsingleMS-DOS data disk, %d sec/track, %s sided dualsingleMS-DOS 1.x, 8 sec/track, %s sided dualsingleXENIX %d.x filesystem%s -- needs cleaningSystem %d filesystem%s -- needs cleaningunrecognized data %lo%6ho.Unknown error: @@@@@@@ @& @8 @H @[ @m @~ @ @ @ @ @ @ @ @ @ @ @/ @C @T @c @r @ @ @ @ @ @ @ @ @ @: @S @b @p @ @ @ @ @ @ @ @ @) @A @X @l @ @ @ @ @ @ @ @ @ @ @( @F @\ @m @ @ @ @ @ @ @ @ @ @@@@(@C@`@w@@@@!@H@Q@Z@c@l@u@~@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@+@5@E@S@b@s@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFr!2+2+~!2+*2+2+2+2+!Z!2+f!!2+!!!!!!!!!!2+2+2+2+2+2+2+2+2+2+2+#2+}(2+2+2+2+2+2+2+2+2+2+2+2+2+2+2+2+#2+2+2+2+2+2+2+2+2+2+*!#&}(!!2+2+!2+2+u#2+2+2+*2+*#2+2+#-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@47@47@@<7@8@3.1bS03.1bS0bin/du100755 3 3 33060 4201127410 6404 37777777777 Lȼ! 8+  @.text8+ .data @ @ ,@.bss @ @.comment 6ÐET @RU RP P*jÐUPEME P=-urE PBteE OE =at=rt=su4 @*, @"0 @h8 @h0@jW*YE B:uM}uYEE @U @FE E 0hd@ hd@6YE=4 @thd@uhW @ EMuj)YU WVSEDžhD@u}K=0 @uh_ @h0@ =0 @uh @h0@ xJ@=H@%=@9( @DžNv@F@;u/t@D@;u3( @9~fD@ft@fF@fv@( @9( @~hv @h0@jl(Y5T@YEH@%=@t$=, @tuuh @0 EHuF>u}9T@~uh @h0@U T@Dž+=~ +ju!' tj# P }Q=0 @t5uh @h0@ =0 @tuh @h0@k E"Y39~7%"YDžPT |ffh @GP;h @GP"u~=tt/FGDž;tFӊ C9|@;uGPh @h0@Q 3 u YE09t Y=4 @Quuh% @n 9UE EE 9E~E- @E 9EvE- @E 9EvEEÐUPWE E,@u,@t* ,@h @uu ,@ t }ËUPWEEE@ uE@ t(EH uuu # E@ t }ËUWV}u ;u 3u}F;t N+Gu׸#3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  4@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoY(uj1(9EuEËED$Pt$Ð5\0@t$ t$  Ð;w(V(t3ÐUPjjE0f# u3ËEЋ@ BE@V|$3O|$ L$Oϋt$ +D$^Ð T$tÐ!'ÐUW}})@t ~*@Nj}ÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_ø'3Ð&3ÐV|$3O|$ ыt$ D$^ø<&Ðjjt$ 9rã<0@ÐUW} 9EtFG tG9GwG9Gu+?u&GuW YGHGUE}øUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  p/@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlX)@Dž\9PtP؉PNKPPoYh~PW =uh~Ph|)@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}h?@Eh?@E+@s3UtE]h?@E+@E+@E+@r5E,@r,@E ,@AE,,@s6EE]@)EE4,@r݋EE 9P܃}t؁h?@?@v?@E<,@ty?@r05}fEf fEmE]mE܉E@0Ee D,@];r&=5|+h?@uh?@1}tCF0N<9h?@]Ћuԋ}ËEE0]@EEsEE 9P EEEE,@MU]vEu}fEf fEm]mE܉EFUR0EMm]E,@E5$,@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G p/@UEE ;ur;u s 3]u}ËG9GreG urRVuG P  ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W p/@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}\0@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wp/@UWL,@;=l/@r3}ÃG uUWL,@ WY;=l/@r}UWV}tlG t6G t3WVYG PY}<0@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG p/@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G p/@+G?}3W p/@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G p/@+G?}3W p/@+W;}WY3UWV}G G u}}&u,@@4D@GW p/@*h!YGt@O G Wp/@GGVYtG uO @u}G /dev/tty?? No utmp entry. You must exec "login" from the lowest level shell. login: Looking at a login line. Password: Sorry, the maximum number of users (%d), are logged in. Currently logged in users are: whomlogin: ioctlpri=Unable to change directory to "%s" /dev/No utmp entry. You must exec "login" from the lowest level "sh". /etc/wtmpr+No Root Directory Subsystem root: %s /bin/loginlogin/etc/loginloginNo /bin/login or /etc/login on root Your password has expired. Choose a new one /bin/passwdCannot execute /bin/passwd PATH=:/bin:/usr/bin:/etc/bin/shbshL%d=%sBad group id. Bad user id. System V Release %c %s /bin/shshNo shell /etc/dialupsr/etc/d_passwdr/bin/shDialup Password:sysconsysttySHELL=HOME=LOGNAME=MAIL=CDPATH=IFS=PATH=TERMunknown/etc/systemid/etc/systemid/dev/ttyr/etc/passwdrr.netaccess Checking network access permissions. - No system named "%.14s". - Access already permitted on %s. HOME/r %15s-*?@/dev/nsnet%s? @system not availableusername not found%.14s password:bad passworduserid/groupid don't match- Access permitted on %.14s. - Access not permitted on %s: %s. @@@(#)login RTS 5.3b of Jun 9, 1988:2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'(08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 1991)! :2*" ;3+# <4,$?7/'>6.&=5-%      )4%/7(3-!0,1'8"5.*2$                                                                                                                                      >@<>@/etc/utmp{)(((())))Unknown error: 4@<@F@`@p@@@@@@@@@@(@4@J@V@b@t@@@@@@@@@ @"@/@E@T@`@w@@@@@@@ @! @> @Y @h @ @ @ @ @ @ @ @!@!@*!@7!@M!@b!@k!@t!@!@!@!@!@!@!@"@"@+"@9"@U"@d"@m"@v"@"@"@"@"@"@"@"@"@#@6#@[#@{#@#@#@#@#@#@$@ $@$@$@($@1$@:$@C$@L$@V$@`$@j$@t$@~$@$@$@$@$@$@$@$@$@$@$@$@$@%@ %@%@%@(%@2%@<%@F%@P%@Z%@d%@n%@x%@%@%@%@%@%@%@%@%@%@%@ &@#&@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error5555255252525252552525252525525255??GA>???/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFKvUvUKvUTvUvUvUvUKKvUKKvUL!L!L!L!L!L!L!L!L!LvUvUvUvUvUvUvUvUvUvUvU8NvURvUvUvUvUvUvUvUvUvUvUvUvUvUvUvUvUMvUvUvUvUvUvUvUvUvUvUT@L8NRPR;L@LvUvU4LvUvUMvUvUvU UvUnMvUvUM-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@LH@LH@l/@TH@I@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0l/@TH@bin/egrep100755 3 3 54660 4201127416 7115 37777777777 L[! $G@.text$G .data@@G@.bss@@.commentYÐET@RU RPZ PFjÐUuh<@h@O jFYU S>=.t'j=(tE/= 3]ø=$tc=*t=)tϸ=+]=^t%[=[t=?1 늳 #EE@@Ap=^uEX؄uhG@h@;jEY-u1}~+@K@tEt@K@^9@|h\@h@j8EY@@L@E=]\AUL@E=\u%؄uhG@h@sjDYãAN=|u=^9@|h\@h@)jDYá@@L@EU;|9UW=At3A}5A7YAP@u3}áAAUhG@h@jCYU^9@|h\@h@fjCY@Ut@@d@@UWu^9@| @Ut@@d@@YAd@Nj}U^9@|h\@h@jCY@Ut@U @Ud@E @ܬ@Eܬ@@@U^9@|h\@h@AjBY@Ut@U @d@E @ܬ@@@Uh\@h@j=BYUWE<@uAME=?EAA@AA=cA=htV`=fAh@5@&.A=Auj5@h@h@D j8YH @<=iu5A-=st=nuAA =vuAh@u u @)E}u}/=Au&=Auuh@h@ j7Y=Au$=AuE @ A@M=At$=Au5A PYFu@HPMYEA@E }*=AtjT7YjGYE 0:YE M}9AuP"7Yu}Ã=Au3U WVS}tRjuu6A}F=Auuh@h@^ AAAAAhW5AV+ +@@t\=Au@&%PKY@@G= u-=AA@tpKi;whW5Az* HQE;u$hW5AO* &E+PW5A2* ~ A5A_0Y=AT9A~uh/@+ 5Ah3@ G= =Ah9AuA=At A;=At!uh@ 5A/Y9A~= @tuh!@z =At5Ah%@^ =At5Ah*@B ;B @}h@P+@@ E9rB @}h@Py+@@ 9rA@KU;whW5A ( RE;u'hW5A' $E+PW5A' AU WVSAAAPAAAAAA5AAAEAr3h8@uh<@h@ j2YY]u}ËEAE( @E==A},A} AEAE|Z9E|NE @EA9,@u2AAAEE=A AE@E=M=A}A} AE$@hL@uh<@h@ j0YYA=AA7j^9@|S@Ut@U@d@E@ܬ@@@ @7wh^9@|@U܉t@U@Ud@E@ܬ@Eܬ@@@ Awwh^9@|x@U܉t@U@Ud@E@ܬ@Eܬ@@@ A#h^9@| @Ut@@d@@YA5Ah^9@|@Ut@U@d@E@ܬ@@@Ar7^9@|^@Ut@@d@@YA(h^9@|@Ut@@d@@YAhYAhYA7wh^9@|@U܉t@U@Ud@E@ܬ@Eܬ@@@ A@wh^9@|&@Ut@U@d@E@ܬ@@@Awh^9@|@Ut@U@d@E@ܬ@@@Atwh ^9@|Z@Ut@U@d@E@ܬ@@@AGAH=$@EE9uU9PuEE8| EA9uE@E}3}uA=w |$@EA @UE}E+ЋFAE+ЋڋE @E @@E9E}E @EU9,@E @ @E}E+ЋFAE+ЋڋE @E @@E9E}E @EU9,@tE @ @EEAA5AA5( @U}|49E}*E @9,@uE @UTAsUPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWui=@tOLjEE E 0YPE 0j.) h@yYPh@j) jEPj) E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0YPE 0jK( h\@YPh\@j0( jEPj ( @?GE @@ @@8E @ @@@u@@@UPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu G E@ t }ËUWV}uWE!YG uG tO G Dt1@"u}F @tVFY;5@rGGG tG @+GPwG Pa | GG듸9tO O G tg aUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUW}@t @Nj}ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E@@r5EH@rT@EP@AEp@s6EE]@)EEx@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEX@MU]vEu}fEf fEm]mE܉EFUR0EMm]E`@E5h@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uA AGW @*h!YGt@O G W@GGVYtG uO @u}G AWR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裀@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$@@(#)egrep 5.3b of Jan 27, 1988       ( )   )                 ( )  yy\ Wy? qegrep: %s egrep: syntax error egrep: regular expression too long something's funny [ -bchilnsv ] [ -e exp ] [ -f file ] [ strings ] [ file ] ...bce:f:hilnsvregrep: can't open %s usage: egrep %s egrep: can't open %s %s %s:%ld:%ld:%s:%ld yacc stack overflowsyntax error: option requires an argument -- : illegal option -- -- 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF$..$...... %$.$$.=%M%M%M%M%M%M%M%M%M%...........d'.+................&...........l%d'~)+g%l%..`%..&...9..&..&-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@AA@ApA3.1bS03.1bS0bin/env100755 3 3 40320 4201127417 6570 37777777777 Ll! 8+  @.text8+ .data @ @,@.bss @ @ .comment@ÐET @RU RP P*jÐUWV} uM}t;h0 @7u(, @Mj=6t6nY>u ǃ0WY?tj=7uރ?ujP*Yu} @,!@W77Yj#*YUWV},!@6Wqu7>t"@r"@rh2 @h@_j)Y>u}UW,!@ǃ0hR @?u}UWV}u G==tF;tuF==u Ƌu}3UE PuUWVS3h` @YEuEe @j/uFtt @E|PuW u |P_ @=td=t$= tV= t8=u2FwBVYDž|u @|DžxTCwt  @ hlpø9x| @xxt|xBM t ɉ u|PhX @lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U5 @u u ÐUWVx @@9 @s @< @uYtVuj& jh @jz& W}YPWjg& jh @jV& u}ÐUPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËU}u3jYEhju%EEE}t6E9Ev)EE&E+EEEEEMuj(%h @YuubYljUYE}| uj$} }}}t EEP YEE2Ujh @EøÐ$ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸;G$UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoY Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅H@@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅HH@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS} @E @E@s3UtE] @E@E@E`@r5Eh@rt@Ep@AE@s6EE]@)EE@r݋EE 9P܃}t؁ @*!@v*!@E@t @r05}fEf fEmE]mE܉E@0Ee @];r&=5|+ @u @1}tCF0N<9 @]Ћuԋ}ËEE0]@EEsEE 9P EEEEx@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u"@&@GW @*h YGt@O G W@GGVYtG uO @u}G *@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU @EEPhTu } E裠 @3ø6ÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$ @Ru @+D$øT$ @3øvÐ0+NL$0+:L$0+L$0L$0 L$0 à @ÐT$ @@(#)env 5.3b of Jan 27, 1988-too many values in environment %s /bin/shPATH:/bin:/usr/binshUnknown error: @@@@@ @*@D@V@h@x@@@@@@@@@ @@+@:@K@_@s@@@@@@@@@@ @;@N@j@@@@@@@@$@>@G@P@Y@q@@@@@@@@@ @ @2@@@X@v@@@@@@@@@@!@*@3@F@O@X@s@@@@@@Q@x@@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@[@e@u@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF6 B da  * N   AO i A  9  O -+ 0x0X--+ --+ --+ (((((  H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@*@*@@*@d,@3.1bS03.1bS0@*@bin/expr100755 3 3 20274 4201156540 6763 37777777777 L! <Xx@.text .datax@x@<x@.bss @ @X.comment ÐET @RU RP# PUjÐU4WVS} uEEEEEF;]t u/ u N!@u=\%@u]uċ}ÍEE`%@3Ep%@^up%@N;}r F؃*t\u ={t};]uGE9Et뎋= =$!=*=.=[!=\sF= /=(=)M=n={},EECEEЅt F=\$GxG=\%@u%NG!@E9E }E=E=E;Et= hGlG;ErF  GEEV 9`%@| EE`%@GG`%@`%@E9Ew GGUJU ENFE0|9kE -0E F؃\t,uѸ9E~ GUԈ,aF=}ta }u GUԈgG%W;L. B$ '1|"91;]| $GGӈ}GGӈEEԸ9E|EF؃^u EFEt u Àt;}t5EG ;Ers GE EEԸ 9E|-}tF؃]u }@GÀtZ}tTEG ;Er GE EEԸ 9E|EЋE%x@E9]|މ]؋Ћ%x@F؃]}t EE }t 9Eu EG(EsE4EE9E|'UWVS}u =p%@t=d%@VWd]u}=u4F;uVW8t =d%@ËG8u3VWuًG8uUWVS}u EF-|=)w|$@FG;͋G8뿊볉=h%@]u}GEUx@# oEGEEu%EUx@#t3U3X F< @F< @FEVKYUV?YF P0YEFPYA @UF @+EEPWu E @UF @+EEWߋG8uG;tFqGEUx@#uރ HEGEEu%EUx@#t3U3uO;=l%@VW;wG;E!@ !@u G;Eu!@ !@u=!@}G둊G!@ !@uGEUx@#G!@ !@uˋ"GEUx@#t!@ !@uσ=!@}G"GEEuEUx@#u3U3!@ !@u?GEEuEUx@#u3U3u!@ !@u=!@}G>EuWu, tVWt 1E+;s3!NJGO!@ !@u;UW}G%!@=u N!@}%+!@UWV|%@9%@| u}át%@%@<=(t =)u Gu3W4(@u l@F(@8uָUWV} uhv@Wt-h@VtWYEVYU+ЉU VWNEE-|J=wC|?$@}u-(}}}}|}~}u3E}t @u}ø@UWh@u th@uu h@Yu YEuYEE- |f=w_|[$@EELE)EDEEE8}u h@DYE}E}u h@'YE}Uj YuPYPW* Nj}UWE=t==h@u th@u uk@h@u th@u u4h@utth@u`u@<}7} 2h@u;th@u'u@} Nj}UWjYu uGP7YPW=`%@t#h%@#Y@PSYh%@WNj}UWV} jh %@h !@W9`%@~ h@Yh !@utV9`%@u9= @ @+Nj} h@;YVWh%@b Ɔ%@h%@+Eu}3Uh @YUjh)@j u4YPuj| jh0@jk j YUWVST%@3۸9Eu2@]u}Ã}} CE؉EX%@E OV0EE}u܅tO-GUE9E|9E} h>@Y9Eut%@%@%@ M%@EEE%@E-U9@>G%@9E u hK@Y} t %@%@%@(9Eu%%@%@5%@j'E %@5E9E~9EVE)9EiE9E~9EpE9%@}EE%@E=u5j-4@EjE-4@mEE=uuEE-= $@jE-4@PuuE EjE-4@Puug EUjE-4@Puu E(jE-4@{PuE9%@t' %@6kE9Eu %@EUE|%@%@%@%@E t%@jjx%@%@9|%@u =%@t hX@Y5x%@YYP5x%@j jhe@j hg@5x%@t x%@8uP~Y3󐐐UPWVS}Em@uJGm@u=+t =-u EGm@u 3]u}ø0+Ëk 0+Gm@uރ}t뾋븐UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWV}u;ht @YEt Eu =p @t3txE} @p @h @EPuEPjEP|>h~PW =uh~Phl@ 3WYkUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø63ÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ @Ru @+D$ø!T$ @3øÐ @ÐT$UÐ @ug5PcL@N@P@R@T@V@X@Z@\@^@a@c@f@h@k@n@t@     ` } m u ( 0 < Y ..^^^^^^|&+-*/%:===<<=>>=!=match-\{0,1\}[0-9]*$-\{0,1\}[0-9]*$10-\{0,1\}[0-9]*$-\{0,1\}[0-9]*$non-numeric argumentdivision by zerodivision by zero0000000Too many '\('sParen problemRE errorexpr: -2147483648syntax errorsyntax errorsyntax error 0 ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/ &@3.1bS0   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~bin/ff100755 3 3 66460 4201127433 6406 37777777777 L!! RLH@.textR .data@@LR@.bss -@ -@H.comment mÐET -@RU RP PQjÐUPE 4@4@K@4@L@ 4@4@4@h4@_+YE=mt:=cb=It=?1%4@g@4@5@%Y4@5@h~@uuuu uuuuuuT(jPY@4@5@Y4@5@h@uuuu uuuuuu(jTPYi=aO@4@5@OY4@u<5@h_@uuuu uuuuuu(jOY4@(=itE=d 4@ 4@4@5@YjOY=l 4@=stNh=ptNo=nuhhP4@5@`)}h@sYj3OY4@h4@4@n 4@e 4@@4@R=uu 4@B5@54@h@uuu uuuuuuuO(jNY hM@u ur E=4E9@|B5@54@h@uuu uuuuuuu(jHNY E @4Y=4@t54@h@4@tJ5D4@544@5$4@54@h@u5@4@504@5 4@54@h6@PjMYUPS'E4@hP4@u'}+54@hX@h0)@! hc@YjeMYT4@%=`u3ET4@%= u3U u<54@hd@uuuu uuuuuu(jLYjuhL4@}<54@h@uuuu uuuuuu1(jLY3K= 4@uh@Y3=@4@~yhj 504@5,4@$ 5 4@h@4@t54@h@ pU$4@j_Y4@54@j4@EEEPUE-t4@E ~9u 9uKE9u4h@uuuuuuuuuu(j;KYY4@@3|4@t4@|4@x4@4@t#5|4@54@EpPh#@v}~}~=t4@~E9E9t4@~4hL@uuuuuuuuuu&(jJYY54@jt4@|4@$4@t4@|4@@4@E+E 44@D4@EEE=~4he@uuuuuuuuuu(jIYY4@ @}fEf fEm]mEܣ4@44@ @}fEf fEm]mEܣ44@$4@ @}fEf fEm]mEܣ$4@jj#EjHYU+Ё>Uk$4@ k4@k44@ kD4@‹t4@|4@Bk‰E9E}t h@{Yjt4@|4@@P 4@u4h@uuuuuuuuuu1(jHYYj54@ 4@u4h@uuuuuuuuuu(jKHYYk$4@ PDY4@4@u4h@uuuuuuuuuu(jGYYk44@ PCY,4@(4@u4h$@uuuuuuuuuuD(jGYYkD4@P`CY<4@84@u4hI@uuuuuuuuuu(j[GYY4@3@4@04@ 4@UfEj Y4@E54@E@P 4@EEgfEEfftQE=tFE%=@uuEPuEPtuEP7EE@|4@9E|Et4@9EX54@j U4@fUf} tU JHfJfH4@ 4@ 4@;$4@~!hp@5$4@uuh4@ U@E fft%=@tj E @ PEPm E PUExE̋Uȃ<ti4@9E~)EEPE̋U4EP(4@fUfUPUP(4@ 04@04@;44@~h@544@  Eȸ 9E} }t}u}u }5uuuE pEP`U(4@fUfU PUP(4@ 04@04@;44@~!h@544@uuh4@v U84@fUfUPUPUP U P84@@4@@4@;D4@~!h@5D4@uuh4@ UWVSf}fu ] 4@k4@f<k4@ftjSk4@ 4@ЍRRA 4@4@;4@~!h@54@uuh4@ ]u}UW3=4@!=4@t<4@P54@E 4@+P4¹QP t3=4@t<4@P54@E 4@+P8¹QP t3=4@t<4@P54@E 4@+P<¹QPr t3=4@tE 4@9P8~34@tEP Yt3;=4@u }3UWVS}u ]+u;&3]u}=-u k;|3;u3U jY4@,4@(4@Eb54@(4@p4@EE(4@PuFEE(4@@39ErE(4@ 04@9E|54@jUWVS}fu ffGPh@qGPh@Xf;x4@v:Ph@uu uuuuuuuu (j@Y4@kf fu@kfkftjGPk4@ЍRR ]u}ÍGPPPT UW4@4@3@jP4@Pf 54@4@PP G4@ ;= 4@|4@tW3Kk 4@ЍRRP 4@kDP j 4@kPP G;=4@|UPWVS}fu ]WPY=4@u h@4@tPh@ 4@tsh@4@t<CPYE=?uCPh#@uh'@h,@Y]u}UWVf}u Dž 4@t54@h.@V3}ju kP 29 ~#h0@j2h4@& 4@kf fu0h@@ kP34@jk4@ЍRR kP* 4@kf|=:2hO@Vj J kPV4 ŋUWV(-@EW ;u Nju}à k$-@ (-@;r? EP YuQ@Ǹ29$-@}fEfG j 6WL $-@U<4@84@E84@k4@ @+£4@84@xt?jYEP84@psj84@Pu uj84@xt?jYEP84@p)j84@Put uj84@x t?jYEP84@p j84@Pu* ujSE84@@4@9EUEE8EtS==jYEPE0NjE Pu uj4@94@~)4@4@PE0E P(4@fUfUPUP(4@ 04@04@;44@~h@544@( 8jHYEPE0jE Pu ujEE9EUPEt=u u 8Y54@6YEu4hS@uuuuu uuuuu(j!:YYEU 9E}E E4@Eju54@5 E54@u 54@. E}|}}E5-@uuuhf@uuuuuuuuuu(jx9Y4@tuE=4@Puh@EUP54@u54@'. E| 4@9EtW$@9-@}-@@@Ph@uuuu uuuuuu](j8YUEEjj@H4@L4@unh@Y3uYEuh @=L4@L4@fUfEE=@~h$@j@uuh4@ h@EEuE3PEwkUPWf}H4@EE;u }ÃEL4@9Er3Uu uh4@uuuu uuuuuu(jw7Y U54@54@h]@h0)@ u,u(u$u uuuuu uh0)@ ,Uu,u(u$u uuuuu u(j6YUEU @+BÐUPWVS}EA&@uJGA&@u=+t =-u EGA&@u 3]u}ø0+Ëk 0+GA&@uރ}t뾋븐UPWV9@ueE9@}#E @ =-u E Au u}h@E @4 u @΋E @ @=@:tWu =@tOLjEE E 0*YPE 0j65 h@*YPh@j5 jEPj 5 E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0)YPE 0jS4 hh@)YPhh@j84 jEPj(4 @?GE @@ @@8E @ @@@u@@@UWEE EP|/YtujWr Nj}Uu1YÐUWVSu] 3 FC FCFӊ CCG;}|]u}UWVSu] 3 FC FCFӊ CFG;}|ދ]u}ÐUWV}t9~u=Ƌu}U=@uh@h@%(@5@YU=@t5@)Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@'@u35@YUWuhh/@_ =3@WQY=3@WBY=:j EPW: EW&YPj:W`& 9Eu`WY}| `9E~aE3@t4=:t*j EPW EWz&YPj:W& 9Et3}WY}| `9E~aE3@=3@=3@W^Y=3@WOY=3@W@Y=3@G?t =,u?tG=3@3@oUWVS} uEE~,F t!O>(VKY=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V 4,@+V;}V*Y}u +gEEvUWV@$@9-@s -@<@u$YtVujk/ jh@jZ/ W$YPWjG/ jh@j6/ u}ÐUPWE E,)@u,)@t* ,)@h )@uu) ,)@ t }ËUWVS}u ]GF:u Nj]u}M}3U9Er=,$@u>E3@PT*Y,$@E3@E3@E EURu+ËE93@sˣ3@P5,$@,,$@UWVS3@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW3@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu3@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u 3@|?=,$@t6SW5,$@+ SVW+ S5,$@V+ ]u}ÊEGFUKuUWVS}u ]3@E9E|R=,$@tIuW5,$@z+ uSWm+ uVS`+ u5,$@VN+ ]u}ÊEGCFUMuӐUW}WT#YjjG PT' GGg G tg }ÐUPWEEE@ uE@ t(EH uuu _ E@ t }ËUWV}uW]%YG uG tO G Dt1)@"u}F @tV^"Y;50,@rGGG tG 4,@+GPwG Py | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐUWVS}u3@Etu WЋu 3]u}u V&u 3@ C3@ɐUWVS}u Ct ;ut Nj]u}ËG8u3UWVS} ]Ft ;utCuދ+E]u}U WVS}uE} tE 8$EA&@u5GEEA&@uE=+t =-u EGEu309Et "G=xt G=XuEA&@tEEA&@t E-0#EA&@t E-WE-7E;| 3]u}Ãu;09Eu1GA&@tG=xt G=Xu EEA&@t E-0#EA&@t E-WE-7+EGEA&@tEEA&@t E-0#EA&@t E-WE-7E;|} tE 8}t$ÐUPWVS}u ]C}G8uO KuO GF҈uE]u}Ð T$tÐ%3ÐUWVS}u ߋG8uOGF҈uË]u}ø?%ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  4,@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl&@Dž\9PtP؉PNKPPoY&@Dž\Dž,E+É\T(89E8EEEE t5EuM+8E E+8EE쉅8EE+8EPVjh0$@9؋E;EvEPVh0$@h0$@u E\tOE\;EvEPV\l, \lu E(tNE@;EvEPVj$j$un EDž(EEEPVjhH$@9؋E;EvEPVhH$@GhH$@u E~EE;EvEPVSSu EE؄EE܉EPVjhH$@9؋E;EvEPVhH$@_hH$@u EE؀tOEX;EvEPVXh Xhu EE89EE+8EPVjh0$@9؋E;EvEPVh0$@e6h0$@u Ek E-0GEA&@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl"&@Dž\?E2ETMDžl%&@Dž\EE C~u~E܉TMs؍gh݅H$@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H$@u+-hJhEA&@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hH(@YEt Eu =D(@t3txEQ(@D(@hW(@EPbuEPSjEP|>h~PW =uh~Ph@&@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}3@E3@Eh(@s3UtE]3@Ep(@Ex(@E(@r5E(@r(@E(@AE(@s6EE]@)EE(@r݋EE 9P܃}t؁3@4@v4@E)@t3@r05}fEf fEmE]mE܉E@0Ee )@];r&=5|+3@u3@1}tCF0N<93@]Ћuԋ}ËEE0]@EEsEE 9P EEEE(@MU]vEu}fEf fEm]mE܉EFUR0EMm]E(@E5(@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 4,@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 4,@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} -@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W4,@UW)@;=0,@r3}ÃG uUW)@ WY;=0,@r}UWV}tlG t6G t3WVYG PY}-@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 4,@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 4,@+G?}3W 4,@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 4,@+G?}3W 4,@+W;}WY3UWV}G G u}}&u4@8@GW 4,@*h!YGt@O G W4,@GGVYtG uO @u}G <@WR4,@UWV}G 4,@+G}G 4,@Wu};7}7𐐐3ÐU-@EEPhTu } E-@3ø6FÐ2ÐU WVSE9ET=-@u<-@ -@-@ -@-@-@-@-@-@-@E@3؋=-@E&;5-@-@E@E=w=-@jY-@@;t?3Ee ƹ3tL3+‰EEE2-@+-@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5-@-@0E+E--@@;t-@-@-@-@~Љ-@;5-@v-@ -@-@ 9=-@u -@-@G(=-@95-@u=-@7tލ;r;l%;UWV}5-@%-@9u5-@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ -@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$-@Ru -@+D$ø!T$-@3øÐ-@ÐT$@@(#)ff 5.3b of Jan 27, 1988@???[-Ilsu -i ilist -p path -n file -a # -m # -c #] /inputdevIsulda:m:c:n:i:p:ff: bad value %s for option a ff: bad value %s for option m ff: bad value %s for option c ff: n optionUsage: %s %s Usage: %s %s ff: NOTE! %d pathnames only partially resolved nLink=%d nIreq=%d nDb=%d nIb=%d nLink=%d nIreq=%d nDb=%d nIb=%d ff: %s - ff: %s is neither block nor character special ff: Open failed for input on %s ff: No files were selected. ff: %d files selected ff: %d link names detected ff: unknown filesystem BSIZE fstblk:%d lstblk:%d bsize:%d inopb:%d ff: Invalid super block ff: Insufficient memory. Giving up ff: Reducing memory demands. May fail. ff: insufficient memory for Dd area ff: insufficient memory for Link area ff: insufficient memory for Ireq area ff: insufficient memory for Db area ff: insufficient memory for Iblk area Ireq - selected file listDb - directory data block listIblk - indirect directory block listLink - linked file list...ff: Improbable inumber %d. Check filesystem. %d %d %d %8s .path components??unresolved??/?ff: out of memory ff: I/O failed for block %d. seek()=%d read()=%d,err=%d seek to %d (%dblks), read %d ff: read failed in getblk(), %s ?? errnoff: calloc failed in inodes() , ff: -i value, %d, ignored -i inumber listff: program limit of %d exceeded for %s %s: %s: : option requires an argument -- : illegal option -- --/etc/passwdrrUnknown error: (@0@:@T@d@|@@@@@@@@ @@(@>@J@V@h@w@@@@@@@@@@#@9@H@T@k@|@@@@@@@@2@M@\@@@@@@@@@ @@+@A@V@_@h@|@@@@@@@ @ @- @I @X @a @j @} @ @ @ @ @ @ @ @!@*!@O!@o!@!@!@!@!@!@!@"@ "@"@"@%"@."@7"@@"@J"@T"@^"@h"@r"@|"@"@"@"@"@"@"@"@"@"@"@"@"@"@#@#@#@&#@0#@:#@D#@N#@X#@b#@l#@v#@#@#@#@#@#@#@#@#@#@#@$@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF/99/989999//9//90-0-0-0-0-0-0-0-0-099999999999D2969999999999999999199999999998L0D2^46G0L099@099199999z1991-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@<@<@0,@<@h>@3.1bS03.1bS0bin/fgrep100755 3 3 40640 4201127436 7111 37777777777 LN! 64 H\@.text6 .data\@\@4 \7@.bss!@!@H.commentAÐET!@RU RP PA6jÐUWEE@8=ltK=et)]=bt>=? EEE@,EE=cE=htZd=fEh@5@*(E=(E5@h@h@- jC5Yb@V=itIM=xt"7=st=nu4E,E$E=vu E =yuEh@u u @)E}u}/=Eu&=Euuh@h@h j~4Y=Eu$=EuE @ ,E@MEEh0Eh@W @E }5=Etj4YjPYE 0CYh@+YE M}=@t@P3Y}Ã= Eu3UWVS}tSju3}F=Euuh@h@K @Dž3DžE$EE!@KE;u;vE+PhW' ~ESvN-Y=E;9E~uh,@ 5$Eh0@ =EtT@t P Y@t Pc Y9;~8v Džv!@v=EtP@t P Y@t P Y9t ;uv~u~G= F= EE!@DžKXE;u;vE+PW% -hW% ~EG= u= Et=E= Eu=Et o E=Et $EQ=Et!uh@z+Y9E~=@tuh@=EtE+HPh"@b=Et5Eh'@F;B @}h@P'@@ E9rB @}h@P9'@@ 9rh@&YE!@DžUW=(Et*(E}5(EY}á(EP@,E,EuЋUWVE!@!@=Et ;uvF!@f ~uDE9Erh5@h@j.YEEF5Ev;uvtL~uAE9Erh5@h@j-YEEF5Ev럋LjE9Erh5@h@Yjo-YEEF5El tu=Et< E9Erh5@h@j-YEEFE@!@tt _u}Uh5@h@j,YULWS!@t7WE9rh5@h@8jN,YGu;8E9uWE9s0E9r9t0<3;uh5@h@|j+YG u Dž!@;uAEJH PB=u E@E@Eu@uG9UPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWu%=@tOLjEE E 0PYPE 0j) hp@5YPhp@j) jEPj) E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0mYPE 0j) hL@RYPhL@j( jEPj( @?GE @@ @@8E @ @@@u@@@UPWE E@u@t* @h@uua @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW"YG uG tO G Dt1@"u}F @tVY;5 @rGGG tG  @+GPwG P | GG듸9tO O G tg aUWV}G tG t w%Yg E GuaO }8u0E8 EGW  @GGu}G @EWR @G W @V!YtO @UWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUW}@t @Nj}ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}!@E!@E@s3UtE]!@E@E@E0@r5E8@rD@E@@AE`@s6EE]@)EEh@r݋EE 9P܃}t؁!@!@v!@Ep@t!@r05}fEf fEmE]mE܉E@0Ee x@];r&=5|+!@u!@1}tCF0N<9!@]Ћuԋ}ËEE0]@EEsEE 9P EEEEH@MU]vEu}fEf fEm]mE܉EFUR0EMm]EP@E5X@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}!@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W @UW@;= @r3}ÃG uUW@ WY;= @r}UWV}tlG t6G t3WVYG PY}p!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u0E8 EGW  @*h!YGt@O G W @GGVYtG uO @u}G @EWR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐUp!@EEPhTu } Ep!@3ø6FÐ2ÐU WVSE9ET=!@ub             U                c          }U    M      c-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@PEPE @XEE3.1bS03.1bS0bin/file100755 3 3 71550 4201127440 6724 37777777777 Ln! dT$d 4@.textdT .data4@4@$4U@.bssX3@X3@d .commentXsÐETX3@RU RP PTjÐUWVSEEEh=?t\=ct=ft=muJ@X@>E9Ehu@5@Hu5@hw@hh/@ >Eho@u u z}u1}u+}u E9@uh@hh/@Cj)SY}jYh@4Y3@pp@ Pp@PppPh@p@=upp h@pp h@pph@p@ @t h@Yh@Ypp9PAj5RY}tMShtPk uE @_W1GYpp~pH E @tj t%ppu(uth@hh/@LpptYFpp= tꋅptj ty$ppu(uuth@hh/@Uppt=sut@=huF"Ft=lu Fpp= tꋅptj t#ppu(uth@hh/@ppF=txtto=&tH=<t5==t"=>t!=^t2=xt=|u*F *F $F F F F  F tF =tLF=ttYF 0td@Y@PFYF tv "@pp= tꋅp8u F@hp@Y@PFYFt0p=%uN @ttp pp= ut;xrh@hh/@qjWJYSh|P sF`dhUPWV}N@E=0uG=xuGR@V@EPVW Eu}UWVEEE=@uj2Y@=3@Pw >YPw V# /G @tw w  wu YEEEEG 9EG EqG 9EG 9E|E#G ;G G #EE=E#G uE#G ;G G ЋU#ЉU=w |$D@G8tQ}t' X/@}hX/@j @\/@ \/@G @tuw  wt YE@E9Gt(}tUt}t9;E~1EEEE;} X/@}hhX/@j ?e;E}EE;EEG3@=}G=w |$ @G %\/@\/@ u܋}3UWV}33$jh3@4 t u}F<u3UW3@=u*3@=hu3@y,@u3}G~޸UWVS}3EDž29E Q3F|37Ey,@t2Ey,@tEPYEUE=.t`E= t!= t = t ~= uwo=)t- =%t$]=,tT=;t =:t B=?u;EE H;}0tFy,@tFy,@uCF;u k;E/E;Ex;E~3ËpEEEEEEEpEEEEEEEEEEԉEkEU +;|E9E|3|UPWVE3@5@3@G=.t;r;s(3@t G= uGy,@tEG;s 9E|9E| u}3UWVS3@5@3@3_?t tO3@=@u)3@=uhZ@1Y]u}C~hh@YG;r3UPWVS3@%=u^3@3@ @@9@|65@9@)E@H@3@E=@u}t 3]u}hn@pY3ۍC;5@3@%3@ |e;5@Y3@%=u3@%=t듾!3@=ltI=mt5=st!FG;| X/@}8hX/@j :5h@Yh@Yh@Y\/@\/@ UPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWuA=@tOLjEE E 06YPE 0jVA h@6YPh@j;A jEPj+A E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 05YPE 0js@ h@5YPh@jX@ jEPjH@ @?GE @@ @@8E @ @@@u@@@UWEE EP;YtujW. Nj}Uu>YÐUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V l2@+V;}V:Y}u +gEEvUPWE Ed/@ud/@t* d/@hX/@uu d/@ t }ËUWVS}u ]GF:u Nj]u}M}3UWVSEE5@6@E 9E|7@u uEEEEE5@t2E<6@|%6@ C֊ FE;45@rE 9E|=7@uE9E u 3]u}ËEEUPWVS} u7@7@ 7@<6@= u+=6@FVWEtE]u}ËE =uJ^;u07@7@ 7@<6@VWQEt =6@E멋G8uE 7@7@ 7@<6@VWEuËG8uU WVS}u EF-v=?kc$D(@FG;LŋNj]ԋu؋}FjYFVjf= t?t G닊tG37@F%%EFE@Pj EEPEPEPi FEVEPEPM VEPEP7 >%REPEP [jjGPV 8F<5@<5@V6@yNJGEG;G;tFFPW#F%‰EFEPjSF=u3PGPV SF=t F=u3PGPV u}uOjvYVW]EtE;wVW;EMuSVWEt}WjEMujYhGU;utEMuGU;u EMu}}G%Gt8EMuF=u3PGPV u3EMuȋ'F=u3PGPV t EMuσ}}G@G?t = uGv}WjVWEujYEANJGEMuUWVS}] tGP=u;GW+} 3]u}G;G;EGG G;tNu}u3U}t 7@ 7@ 7@-7@U U}t <6@9 7@r 7@- 7@ø7@97@v37@7@UEUEE=u E  NE UM+ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuhH/@d UPEEPu uI UW}EEEljEEWn+YEE2uu EP }ÐUWVS}u Dž`3@d3@ `3@W=~*uDžF DžDžk -0Fy,@u؃u DžÉ=lt h9uF؅[uPVy,@tDžlz-@؃nt_=d3@uVctQ[tL`3@} W@ Y GGy,@u `3@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf`3@fl9uEEP`3@{EEP`3@dEPWSt'=d3@tu /$Fu y,@td=d3@u`3@} W Y GGy,@u `3@W =ud3@y%uF؃%`3@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$D)@EE EE`3@}WyY3]u}ËGG=+t=-t =0t8EM`3@} W(Y GG؃0i9E }9Eo`3@} WY GGEh~PW =uh~Phx,@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}h3@Eh3@E.@s3UtE]h3@E.@E.@E.@r5E/@r /@E/@AE(/@s6EE]@)EE0/@r݋EE 9P܃}t؁h3@3@v3@E8/@ty3@r05}fEf fEmE]mE܉E@0Ee @/@];r&=5|+h3@uh3@1}tCF0N<9h3@]Ћuԋ}ËEE0]@EEsEE 9P EEEE/@MU]vEu}fEf fEm]mE܉EFUR0EMm]E/@E5 /@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G l2@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W l2@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}X3@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wl2@UWH/@;=h2@r3}ÃG uUWH/@ WY;=h2@r}UWV}tlG t6G t3WVYG PY}83@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l2@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l2@+G?}3W l2@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l2@+G?}3W l2@+W;}WY3UWV}G G u}}&u7@;@GW l2@*h!YGt@O G Wl2@GGVYtG uO @u}G $?@WRl2@UWV}G l2@+G}G l2@Wu};7}7𐐐3ÐU83@EEPhTu } E83@3ø6FÐ2ÐU WVSE9ET=L3@u. fmt error, no tab after %son line %d fmt error, no tab after %son line %d fmt error, no tab after %son line %d file: magic tab overflow - increase NENT in file.c. %ld%lx%lotroff output data xenix object file, Small model, Middle model, Large model: option requires an argument -- : illegal option -- --@@H@R@l@|@@@@@@@@ @" @4 @@ @V @b @n @ @ @ @ @ @ @ @ @!@!@.!@;!@Q!@`!@l!@!@!@!@!@!@!@"@"@-"@J"@e"@t"@"@"@"@"@"@"@"@#@%#@6#@C#@Y#@n#@w#@#@#@#@#@#@#@$@$@'$@7$@E$@a$@p$@y$@$@$@$@$@$@$@$@$@%@%@B%@g%@%@%@%@%@%@&@&@&@"&@+&@4&@=&@F&@O&@X&@b&@l&@v&@&@&@&@&@&@&@&@&@&@&@&@&@&@'@ '@'@ '@*'@4'@>'@H'@R'@\'@f'@p'@z'@'@'@'@'@'@'@'@'@'@'@(@(@/(@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error       E6x              ))))   oooo   /"XXXX"""""#""#"#"#"#"#""#"#"#"#"#""#"##??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF"2;;.2;P;;;;;M2 2;2:2;}2222222222;;;;;;;;;;;4;-9;;;;;;;;;;;;;;;;;4;;;;;;;;;;U;246-922;;2;;%4;;;y;;3;;;4-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@4?@4?@h2@Y=u&@4 @hL@h,@6 jdYha@h]@2E}uhc@h,@q6jodYuhht.@0 t.@uh@h,@96j7dYu2Yth@h,@6j dYht.@XYƀs.@E,,@E 8,@9E},h@h,@5h@h,@5jcYE0,@[8,@0,@ =-tOh@8,@49t6h @8,@0,@49u0,@EEH90,@|9E^oEuh"@h,@ 5jcYE90,@}h7@h,@4jbY4,@R@8,@4,@4hp&@9Wp&@=/t ht.@$Ytp&@$,@=.@tChT.@hp&@Q<}!hp&@hT@h,@J4 jHbY T.@.@5$,@PVuPhp&@ 4,@E94,@&=<,@t!hj@hp&@dVd.@jaYUWhu@P8u^ l&@PWhik ,@ Up'@k ,@ Ut'@k ,@ Ux'@ ,@ ,@k p'@ }á,,@90,@ 0,@UWVhx@Vk7ui 0,@ l&@PWh6k ,@ U쉐p'@k ,@ Ut'@k ,@ Ux'@ ,@ ,@k p'@ u}h{@V6th}@V6q=-uh@V6Q,,@90,@ 0,@U=l&@th@h,@2j`Yl&@h@ P`6uVjiPhk ,@ Up'@k ,@ Ut'@k ,@ Ux'@ ,@ ,@k p'@ á,,@90,@ 0,@UWVSQ h@W5u9 l&@E* h@W5 E]u}h@W5uRjjhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h@W5u_D@jjhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h@W4u_.@jjhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h@W=4u\.@jjh k ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ Ah@W3u\.@jjhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ =+uFh@WM3uTjVhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ Yh@W2u]PV$YPh[k ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h@Wx2u]PVo$YPhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ {h@W 2u]PV$YPhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h@W1VjE=h@Vu$h@Vuh@Vt]PV>#YPhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ Jh @h,@d,jbZYPuhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h+@Wf0u]PV]"YPhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ ih1@W/Vj'E=h8@Vu$hI@VuhT@Vt]PV!YPh)k ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ hZ@h,@*jXYPuh)k ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ 5hy@W.PV YPhlk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ E=+t =-uF=@u=cu ,@Hk ǀp'@Eyh@W.u]PVYPhJk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h@W-u EUh@Wz-du@>lu2bu`&cu pufu3Ejuhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ 3h@W,uv0,@HEh@P,ujuhqk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h@W9,uv0,@HEh@P,ujuhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ #h@W+hV"<,@}Vh@h,@' j UYh.TY@,@hTYD,@H,@D@jjhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ Wh@W*hV!<,@}Vh@h,@C& jATYhbSYL,@hRSYP,@T,@L.@D@jjhk ,@ Up'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ h@W*hT.@Vy-}Vh@h,@v% jtSYl.@P.@jjh_k ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ Wh@h,@$ h @h,@$jRY=-te-0EF>uPuhk ,@ U؉p'@k ,@ U܉t'@k ,@ Ux'@ ,@ ,@k p'@ :Uk ,@ Up'@k ,@ U t'@k ,@ Ux'@ ,@ ,@k p'@U9H@uh7 @h,@#jQY,,@90,@|H@@0,@S @á8,@0,@0,@UW}wGYtwGYt }3UW}wGYuwGYt }3UW}wGYu }3UW}w5$,@}Uhp&@!YUT.@Ѕ}3UU X.@%=@u$EPhp&@uEt3øUW}ww(,@+l.@QP }UW}ww(,@+h.@QP }UW}ww(,@+p.@QP }UW}ww\.@P{ }UW}wwV.@PY }UW}^.@9Gu }3UW}wwZ.@P }UW}wwd.@P }UW}ww5d.@ }UWV}-9GuGX.@#%;Gu u}3U W}9GuEEPhp&@&thp&@hT @h,@ 3}E%;Gt3X.@%;Gu3UW}h@EYw4Y}UEh@EYhp&@8,@UJ4hp @h,@% h,@YEY @} h @!Y@@E=yuCE:9Eu jMY& @} h @?!Y@@E 9Eu}tEp[Y3U 0@= 0@tEfPf 0@fEff 0@fPf"0@ 0@UUWVSjh @hp&@& ur&@p&@Ph/@Af/@qh/@AY@f/@f\.@f /@f^.@f/@fT.@f/@fV.@f/@fX.@f /@ 0@= 0@tl.@ 0@f"0@f/@f 0@l.@ 0@f 0@f/@f"0@f/@fZ.@f/@ /@%=ud.@3 @ 0@= 0@t @ 0@f"0@f/@f 0@ @ 0@f 0@f/@f"0@f/@f`.@f/@=L.@t 5 @Yh @h/@"uI=L.@t/@@LP58@O /@-/@/@Ph/@ 34h/@ 0@= 0@tEfPf 0@fEff 0@fPf"0@ 0@YuP=L.@t$/@@LP58@ ]u}ø/@-/@/@Ph/@ j5$,@I}h/@h @h,@ 룃=L.@t/@@LP58@: /@-/@/@Ph/@~ h/@ 0@= 0@tEfPf 0@fEff 0@fPf"0@ 0@Y @9 @~ @V=L.@tL,@@,@PW5> }h/@h @h,@ )=L.@tV5L,@\ V5@,@- @= @mW?DYj=L.@th5L,@ h5@,@YC |1Uh/@uh/@=Y@P5l.@`.@%PZ.@P^.@P\.@PX.@PV.@%PT.@%Phqh @58@8UP.@9l.@~3UWVS}u ]+u;"3]u}À-u ;|3;u3UWV3= @>h @VtIh @VuuG$ @p&@ G4$ @EE8,@Ћҋu$ @u u} @u4ht.@ YWh$ @5$ @ jGY= @t3h @7<Y; @u޸UW9Eu"u SYEt29Et(Ex u ! YEt9EtExNj}U(WVSEEhT.@u }uY3À=.@tT.@;.@uy=D@u uEYX.@%=@t=D@t uEY뒀=.@t `t%=.@t#T.@Ѕ}3u3TuF>u+E=rh @h,@jEYF=/uN}9d.@~uh @h,@ d.@Dž+=~ +E}uJjuqDE}uhC @h,@5 ~tjud@ uPuw9 uhY @h,@ ) 9E9uu?YEEEffG=.u GG=.uG=.uGt~/FGDž;tFӊ C9|@;tC@$,@uPu8uPu M}39%}t u>Y9Ej/hp&@-=p&@u ho @Y[t ht.@`Yhp&@UY=uhq @h,@"j CYt /=D@ChT.@u }!@4 @u h @h,@$,@j/u ^t0u T7Y=~ u D7YHU 9t @E $,@uEY$,@UWVS}u Gt uFEtf=*tO=?t7=[u]EEE=!EFua3]u}ÊO3E%;VWC3E=]u}t VW3E=-u*}t9]F;~oE:9]5F;-E(}tE%E;u@E%E;tFEt VGPt  ?u3UWVS}u H,@Fi=<@uJ5<,@j<,@h5D,@5<,@? |<@ D,@/@Ëf f <@NuH,@]u}UWVS}u T,@c=@@uJ5<,@jc<,@h5P,@5<,@V? |@@P,@/@C׊ G @@NuT,@]u}U@W}t @ @Ph @h,@t EPu 9E%= t%jS?Yh @h,@9u5Yu :Yh @h,@h @h @3EPjEPq EP3YHEEU}uj>Y}t3PEP=ZNj}UhT.@u }#@4 @uh" @h,@`X.@%=uhPu E=t+UPuh? @h,@uhl @h,@ 눐 =3ÐUE PuUWVS3h @s1YEuE @j/ut @E|PuW u |PC@=td=t$= tV= t8=u2FwBVYDž| @|DžxTCwt @ hlpø9x|@xxt|xBM t ɉ u|Ph @PxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3UWV}+ tW6<u?Ƌu}ÐU= @uh @h @0 @5 @@ YU= @t5 @$2Y @U= @t5 @R9Y @= @t5 @39Y @= @t5 @1Y @UEEt;E uEtEEU= @uh @h @/ @u35 @YUE= @u' !@j5 !@ @ EuYEu5 !@5 @ Eu3u.YE !@9EEUJ= uE8% !@5 !@5 @8 @|juu }bE @j:uEEt;EuEtEEE!@j:uEEt;EuEtEEEPY!@j:uEEt;EuEtEEEj uEEt;EuEtEE= @u#!@j5!@ @tT @!@E!@H9EE%!@!@P5 @6 @uJ= @t5 @G6Y @= @t5 @(6Y @3 @!@EEE8uEEEUj,uEEt;EuEtEEEE E @eUPWVS}E=@uJG=@u=+t =-u EG=@u 3]u}ø0+Ëk 0+G=@uރ}t뾋븐UWt7u. uNj}ÐUWEE EP1YtujW Nj}Uuy4YÐUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P<1 E}|EE}øU= @uh @h @* @5 @XYU= @t5 @<,Y @UW}G?t=:t = u= u ?tGNj}U= @uh @h @* @u35 @YUWuhh!@_ =%@WQY=%@WBY=:j EPWZ EWF)YPj:W( 9Eu`WY}| `9E~aE%@t4=:t*j EPW EW(YPj:Wx( 9Et3}WY}| `9E~aE"%@=*%@=.%@W^Y=2%@WOY=6%@W@Y=%@G?t =,u?tG=&%@%@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuwEtE+E؋E)F>}3V 0@+V;}V{-Y}u +gEEv&2Ð2ÐUWVSEPfYE =ruEEE =ruEEf E<%@?t-<%@P,Y&@rڋE =ru3EV,Yu,YujS S,Yjuh(@h$@h@ j Y9Eu 3]u}ËE<%@S],Yu VUWVE@ u(Yjj0Ejj0Ejj0EEP%Y;4<%@tu9@tكuEujj0uj]0ujP0<%@Eu}Ð>0ÐUWV} &t?F EF F F3҉V0@=at=rt=wt3u}ÀN jjuz+ N G=+uf N ȸ*/L$Q3ÐUWVS3(@%=u-=$@t$$@9 @u,=@u#(@Duh@(Y 3)@0@Uh@=(Y=u @E+Å~VjuSEtE+Ë)@ @=@}3@)@0@+ @;} h@)Y}t= @@ (@Dt"h@'Y=u]u}ËE@WV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_ø&B.ÐUW}Wx%YjjG Px) GGg G tg }ÐUPWEEE@ uE@ t(EH uuu w E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P( +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P4( ECG t8W$YG t g GGuu G P' E9Eus3lUWV}uW]&YG uG tO G Dt1 @"u}F @tV^#Y;5,@rGGG tG 0@+GPwG PU | GG듸9tO O G tg aW|$D$ L$~% ‹ʁD$_ÐU}u3jYEh{;j*EEE}t6E9Ev)EE&E+EEEEEMuj|*h&@Yuj*YufYju*YjVYE}| uj6*} }}}t EEP!YEE'Ujh&@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_U WVS}uE} tE 8$E=@u5GEE=@uE=+t =-u EGEu309Et "G=xt G=XuE=@tEE=@t E-0#E=@t E-WE-7E;| 3]u}Ãu;09Eu1G=@tG=xt G=Xu EE=@t E-0#E=@t E-WE-7+EGE=@tEE=@t E-0#E=@t E-WE-7E;|} tE 8}tD$Pt$Ð5 @t$ t$  Ð;&&t3Ð T$tÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_ø&3Ð%3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  0@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph<@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}&@E&@Ed@s3UtE]&@El@Et@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁&@j&@vj&@E@t-&@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+&@u&@1}tCF0N<9&@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 0@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 0@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ðr ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W0@UW @;=,@r3}ÃG uUW @ WY;=,@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 0@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 0@+G?}3W 0@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 0@+G?}3W 0@+W;}WY3UWV}G G u}}&u$0@,4@GW 0@*h!YGt@O G W0@GGVYtG uO @u}G 48@WR0@UWV}G 0@+G}G 0@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @j Y @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}WV|$ t$L$Njʁ^_øÐT$ @Ru  @+D$øT$ @3øvÐ0eNL$0e:L$0+L$0L$0 L$0 Ã@ÐT$@@(#)find 5.3b of Mar 3, 1988X,@ find: time() %s pwdrfind: popen() cannot open pipe to `pwd' find: fgets() cannot read `pwd' output find: cannot execute `pwd' find: insufficient number of arguments Usage: find path-list predicate-list (!find: parsing error find: missing conjunction find: cannot stat %s TRAILER!!!-o-a(!-ofind: operand follows operand !()-print-depth-local-mount-nosym-name-mtime-atime-ctime-user[0-9][0-9][0-9]*[0-9][0-9][0-9]find: cannot find -user name -inum-group[0-9][0-9][0-9]*[0-9][0-9][0-9]find: cannot find -group name -size-links-perm-type-exec;-ok;-cpiofind: cannot create %s -ncpiofind: cannot create %s -newerfind: cannot access %s find: bad option %s Usage: find path-list predicate-list find: incomplete statement find: unable to lstat-- %s < %s ... %s >? ./TRAILER!!!find: cannot copy %s find: cannot read %s %.6ho%.6ho%.6ho%.6ho%.6ho%.6ho%.6ho%.6ho%.11lo%.6ho%.11lo%s;{}find: pathname too longfind: huge directory %s --call administrator find: cannot open %s find: cannot read %s /find: bad directory tree find: stat failed: %s: %s find: can't %s write outputread inputIf you want to go on, type device/file name when ready /dev/ttyrThat didn't workfind: stat() failed: %s: %s find: %s is symlink to non-existent file %s find: bad symbolic link-- %s /bin/shPATH:/bin:/usr/binsh/etc/grouprr/etc/passwdrr@ @*@D@T@l@v@@@@@@@@ @@.@:@F@X@g@w@@@@@@@@@@)@8@D@[@l@@@@@@@@"@=@L@p@@@@@@@@@@@1@F@O@X@l@~@@@@@@@@@9@H@Q@Z@m@v@@@@@@@@@?@_@@@@@@@@@@ @@@'@0@:@D@N@X@b@l@v@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFBNLNLBNLKNLNLNLNLBvBNLBBNLBBBBBBBBBBNLNLNLNLNLNLNLNLNLNLNLENLINLNLNLNLNLNLNLNLNLNLNLNLNLNLNLNLDNLNLNLNLNLNLNLNLNLNLKCE*GICCNLNL CNLNLDNLNLNLKNLFDNLNLD-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@D8@D8@,@L8@9@3.1bS03.1bS0,@L8@bin/getopt100755 3 3 32344 4201127473 7313 37777777777 L,! p* @ @.textp* .data@ @@ @ @+@.bss@@ .comment4ÐET@RU RP P%*jÐU WE9E}h@hd @j)YE PЋ HE Mƅq?uEgE-LjEE EEPPW@=:u)5 @PVh @PBu u p}tj)Yh @&E  @ @4Ph @PE9 @|Ph @j(YÐUPWV9 @ueE9 @}#E  @ =-u E Au u}h @E  @4u  @΋E  @ @= @:tWu= @tOLjEE E 0YPE 0j' h @YPh @j' jEPj' E  @ @@ @u @ @?F=: @@U @t @@U  @ @ @@ @;E|l= @tOLjEE E 0YPE 0j& h @YPh @j& jEPj&  @?GE  @ @ @ @8E  @ @@ @u @ @ @UWVS} 3G %=utG9Gu!?uG DuWY 3G @UG u;uYEPuG P% E]u}WY=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W @+W;}Wb Y}t*G @tWuY=u ]VEgUPWE E@u@t* @h@uu @ t }ËUWVS}u ]GF:u Nj]u}M}3UWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY Ek E-0GE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl @Dž\?E2ETMDžl @Dž\EE C~u~E܉TMs؍gh݅HT @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H\ @u+-hJhE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h @EPbuEPSjEP |>h~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E$@E,@Et@r5E|@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@&@v&@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u(@0@GW @*h YGt@O G W@GGVYtG uO @u}G 8@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裴@3ø62ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$D @@(#)getopt 5.3b of Jan 27, 1988usage: getopt legal-args $* -- %s : option requires an argument -- : illegal option -- -- 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF    = M M M M M M M M M d  l d ~g l `  9  -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@H@H@@P@@3.1bS03.1bS0@P@bin/gets100755 3 3 30370 4201127475 6752 37777777777 L;! ' @.text' .data@@ '@.bss@@ .comment0ÐET@RU RP P&jÐUh @hPY u49Eujm&YhE pP E EPh@j/&YUWVS} uEE~,F t!O>(V3Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V Y}u +gEEvUPWE E @u @t* @h @uu  @ t }ËUWVS}u ]GF:u Nj]u}M}3UWV}uWYG uG tO G Dt1 @"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY Ek E-0GE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl @Dž\?E2ETMDžl @Dž\EE C~u~E܉TMs؍gh݅Hh@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅Hp@u+-hJhE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h @YEt Eu = @t3txE @ @h @EPbuEPSjEP |>h~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E0 @s3UtE]@E8 @E@ @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁@:@v:@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u<@D@GW @*h YGt@O G W@GGVYtG uO @u}G L@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø62ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$@@(#)gets 5.3b of Jan 27, 1988%s  000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFr22~22222Z2f2222222222222} 22222222222222222222222222 } 2222u2222*22-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@\@\@@d@@3.1bS03.1bS0@bin/grep100755 3 3 45770 4201127505 6751 37777777777 L!  @ @.text @ .data@@ @@.bss @ @.commentKÐET @RU RP P?jÐUW @}5 @Y @P@u3}ËUS]5 @Pl]U4WVS} uEEEEE= @tqF;]t uA u= @t SYN4 @u= @up]uċ}ÍEE @3Eࣨ @^u @= @t S&YN;}r!= @tF؃*t)\u!= @tPY={t};]uGE9EXN= tU=$=*=.t-=[=\= @)G5= @u7= @t S?YNG4 @E9E%}E=E=oE= @tPY;Et%= @tpPY=  GjG;Er GEEF= =(tE=)tx=n={}EESYw 9 @|EE @GG @ @E9EwGGUJU E '1|"91;]|$GGӈU}GGӈBEEԸ9E|E= @tF؃^uE= @tFEt uÀt;}t5EG ;ErGE EEԸ 9E|-}= @tTF؃]u @GÀtZ}tTEG ;Er_GE EEԸ 9E|EЋE%@E9]|މ]؋Ћ%@= @tF؃]}t EE }t 9Eu E.G(Er= @tHFE0|9kE -0Ea = @t F؃\t,u9E~2 GUԈ,u0EEЅt = @tF؃\uG= @t= @N5F=}t }u GUԈG%W;i _E4EE9E|'UWVS}u = @t= @VWd]u}=u4F;uVW8t = @ËG8u3VWuًG8uUWVS}u EF-|=)w|$@FG;͋G8뿊볉= @]u}GEU@# oEGEEu%EU@#t3U3X F< @F< @FEVKYUV?YF P0YEFPYA @UF @+EEPWu E @UF @+EEWߋG8uG;tFqGEU@#uރ HEGEEu%EU@#t3U3uO;= @VW;wG;E8 @ 8 @u G;Eu< @ < @u=< @}G둊G8 @ 8 @uGEU@#G8 @ 8 @uˋ"GEU@#t< @ < @uσ=< @}G"GEEuEU@#u3U38 @ 8 @u?GEEuEU@#u3U3u< @ < @u=< @}G>EuWu tVWt 1E+;s3!NJGO< @ < @u;UW}G%8 @=u N< @}%+8 @U WVEE@+=ltK=et]=bt*>=?E@@@@@=c@=htV`=f @h@5@L( @= @u{5@h@h@v j2YY@M=iuF@>=vt(=st,=nu%@@@ =yu@h@u u< }uE9@u8=@u/= @u&uh@uuh@ j2Y=@u!= @uE @ @@j 5@ tU=@tx= @tohf-Y@E5@>F׈;ur%jh&@uuh@ j^1Y @t u=@t:5@Y@u%jhI@uuh@ j0Y=@t5@ PX YFujh@h@5@nE+@@=@u"jY#E @4yY@E9@|ݸ9@uPe0Yu}Ã=@u3UPWVur%Y@P+YE}u 3u}Ëu}=\u"G֊ F>G֊ F=[uBF=^u G֊ FtF=]u G֊ Ftz=]un @t![GP YGG֊ F]G< @t![GPYGG֊ F]G G֊ FEUP}tZhb@uR$Eu*=@uuhd@h@} @uu u%Yh@uUPWV @@@89@~uhy@5@h}@u} @E @"u =@tEGֈ@s%E } u $Y E P@ uG=@t 3@J @h@W3@tu u3E@@U @PYFG;u~@U9@u@=@t@Ã=@t+uh@v}jju  ʸ9@~=@tuh@5=@t@Ph@=@t5 @h@h @h@ME } u Y E P@=u#Ujh@uuh@ jE,YUu uh@ j",YÐUPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWu=@tOLjEE E 0 YPE 0j"+ h@m YPh@j+ jEPj* E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0YPE 0j?* h@YPh@j$* jEPj* @?GE @@ @@8E @ @@@u@@@UPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu ; E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PU$ +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P# ECG t8WYG t g GGuu G P# E9Eus3lUWV}uW"YG uG tO G Dt1@"u}F @tVY;5 @rGGG tG  @+GPwG P1 | GG듸9tO O G tg aUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUW} @t  @Nj}ÐUW} @t  @Nj}ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UW} 9EtFG tG9GwG9Gu+?u&GuW YGHGUE}øUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@ @E@ @E0@s3UtE]@ @E8@E@@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@ @ @v @E@tQ @r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@ @u@ @1}tCF0N<9@ @]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W @UW@;= @r3}ÃG uUW@ WY;= @r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u@@GW  @*h!YGt@O G W @GGVYtG uO @u}G @WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐU @EEPhTu } E @3ø6FÐ2ÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ @Ru @+D$ø!T$ @3øÐ @ÐT$@@(#)grep 5.3b of Jan 27, 1988 @\ |. ||  |  k | > | ||l ||||||||||| || g | [ -bchilnsvy ] [ -e expr ] [ -f file ] [ expr ] [ file ... ]bce:f:hilnsvyrgrep: can't open %s usage: grep %s grep: expression in file too long grep: argument too long rgrep: can't open %s %s:%ld %s %s:%ld:%ld:%s RE error : option requires an argument -- : illegal option -- -- 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF'''&''''''%555555555'''''''''''L '$''''''''''''''''''''''''''&TL f"$OT''H'''''!''''-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@ @@@3.1bS03.1bS0bin/grpck100755 3 3 36530 4201127507 7116 37777777777 L! X2 P(@.textX2 .data(@(@ (3@.bssH@H@P.commentH=ÐETH@RU RP P 2jÐU9Eu E @L@$9EtE 0hW@j1Yhm@E p'%@(E pho@_j1Y!@= !@7!@!@!@#@#@= u !@ƀ#@,!@!@!@u!@ƀ#@!@9!@~!@!@!@!@!@-@!@1!@!@=:u!@!@%@!@!@!@!@u9!@th@Y!@=:u h@YY!@&!@!@i@Wu!@!@!@!@=:uǃ=!@~ h@Y%@+%@H!@9!@ =!@uh@[Y%@@!@Q!@!@i@u!@)=!@u k-@ !@!@-0-@!@%@9!@|=!@~ h@Y!9-@ =-@} h@Y%@#@%@%@`%@%@uh@~Y%@:5%@;Yu!@h@QY%@@%@%@@j,5%@s%@u5%@hh!@^ U=!@u!h!@h@hX@ !@=!@t'u5!@h#@hX@!@Ã=!@t!uh+@hX@ !@ԃ=!@t'u5%@h0@hX@U!@uh:@hX@4 덐UW+t7uu=Nj}ÐU=P@uhT@h@@"P@5P@YU=P@t5P@ $YP@UW}G?t=:t = u= u ?tGNj}U=P@uhV@h@@!P@u35P@YUWuhhL@_ =N!@WQY=R!@WBY=:j EPWj EWB!YPj:W 9Eu`WY}| `9E~aEV!@t4=:t*j EPW  EW YPj:Wh 9Et3}WY}| `9E~aEZ!@=b!@=f!@W^Y=j!@WOY=n!@W@Y=R!@G?t =,u?tG=^!@N!@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V \@+V;}V_%Y}u +gEEvUPWE ET@uT@t* T@hH@uu T@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W0!YjjG P0% GGg G tg }ÐUPWEEE@ uE@ t(EH uuu ; E@ t }ËUWV}uW9#YG uG tO G Dt18@"u}F @tV: Y;5X@rGGG tG \@+GPwG PU | GG듸9tO O G tg aUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuU WVS}uE} tE 8$Ei@u5GEEi@uE=+t =-u EGEu309Et "G=xt G=XuEi@tEEi@t E-0#Ei@t E-WE-7E;| 3]u}Ãu;09Eu1Gi@tG=xt G=Xu EEi@t E-0#Ei@t E-WE-7+EGEi@tEEi@t E-0#Ei@t E-WE-7E;|} tE 8}tUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  \@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlD@Dž\9PtP؉PNKPPoYh~PW =uh~Phh@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}t!@Et!@E@s3UtE]t!@E@E@E@r5E@r@E@AE@s6EE]@)EE @r݋EE 9P܃}t؁t!@!@v!@E(@t!@r05}fEf fEmE]mE܉E@0Ee 0@];r&=5|+t!@ut!@1}tCF0N<9t!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G \@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W \@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}H@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W\@UW8@;=X@r3}ÃG uUW8@ WY;=X@r}UWV}tlG t6G t3WVYG PY}(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG \@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G \@+G?}3W \@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G \@+G?}3W \@+W;}WY3UWV}G G u}}&u-@1@GW \@*h!YGt@O G W\@GGVYtG uO @u}G 6@WR\@UWV}G \@+G}G \@Wu};7}7𐐐3ÐU(@EEPhTu } E(@3ø6FÐ2ÐU WVSE9ET=<@u<@@ <@<@ @@0@@@,@<@0@8@E@3؋=,@E&;50@<@E@E=w=8@jY0@@;t?3Ee ƹ3tL3+‰EEE20@+8@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή58@0@0E+E-0@@;t0@0@0@<@~Љ,@;5,@v,@4@,@ 9=8@u ,@8@G(=,@958@u=8@7tލ;r;l%;UWV}5,@%0@9u58@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ4@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$D@Ru D@+D$ø!T$D@3øÐ(@ÐT$,@@(#)grpck 5.3b of Jan 27, 1988/etc/group usage: %s filename r cannot open file %s Too many/few fieldsNo group nameBad character(s) in group nameInvalid GIDInvalid GIDInvalid GIDNull login nameLogname not found in password file %s %d %s %s %s - %s %s /etc/passwdrr 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF"DA .q!/I!m/-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@6@6@X@6@7@3.1bS03.1bS0bin/hd100755 3 3 41254 4201127511 6375 37777777777 L! 6 8 @.text6 .data@@ 7@.bss"@"@8 .commentBÐET"@RU RP P6jÐUWVSE #@G=/u=#@?uME E 83ۋu=otH=ct%S=at';=Ap@=bu}z=lt=duebZ=nuNMJ=wt-=tt3=su,M( l@=xu Guguc}E E 0i*Y=u EM=} 9EuE 0o Yd@E 0Z Yh@tu#@=ouu#@=ou "@6E#tM#t E "@E9E|Ӹ9E~E P=-"@ "@ "@ "@u1#@=ou "@7"@p@!=l@t5#@h@h@ t@3V4"@E;M#t(ET@ЋU;t@~Et@E9E|C|=#@u #@=ou#@5#@EEM#tE@(#@="@tt@@%t@="@tt@@%t@=h@t d@h@9E~9E~3E=l@tj2Y]u}jE E 0 }E 05#@h@ h@h @E 0' u E 05#@h@ j2Y}tE 0h%@ =l@t8m}t9E~ h*@d YEM=4UPWVS3d@pFu6S5(#@  @}h@j s)@ @C%=uWh,@ǀt. @}h@j~)@~@F }+@ @}h@j^(@^@F=\t=^t=~u( @}h@j\(@\@F @}h@P~(@@׈ 9EtD~) @}h@j G(@ @3;h@| =h@u3 @} h@ Y@@E=Qt' @}h@j '@ @S5(#@F @}h@j ']u}á@@ UPWVSd@EI=h@th@+E=} h@+Eh@Wjh#@|7u23#@#@;uF|uIh0@rY7u5(#@\Wh#@~33 #@#@F|Eh@9E5=h@(u5(#@ @}h@j _&]u}á@@ UWVSp@E3RT@Ht@E4"@3-ϸ#tuWuSu u!EG|C|]u}UWVSE @}h@j %@ @E@U3ME@EET@rR E ME+EEEu E uEE +;=t=t#=u+E8U E8%EE8%E}uEEPuuu*h7@EEPh3@7 uuu& EEE;} 5}txh<@t@+E@Ph8@ 3JE8%؃ |~~. @}h@P$@@ӈG;} | @}h@j #]܋u}á@@ UWV u |~~A\= wX|T$x@0!bfn rtVWhJ@E-PhB@u}hA@E+E Ph=@ uu u UWV@Pr&Yu&j5d@h@K }19|"@uH5d@3N~4 @}h@:Y3u}á@@uŃu3UPWVS} =0uG=xu =0uEW@t7~tRE-0E,u;@t @ƋUЃWUG@u=*uG@t @tS=bt =kt=lt =wue2e,e &e 5#@hK@h@] jc)YE]u}U5#@hg@h@, j2)YÐUWVS}}~EE ;ur;u s 3]u}Ã?'WfY=uE H3u U+ЋO;7sSwu( ÉE)G?}3W !@+W;}W#Y+Å{EhUPWE E@u@t* @h@uuQ @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P # +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P" ECG t8WvYG t g GGuu G PY" E9Eus3lUWV}uW YG uG tO G Dt1@"u}F @tVY;5!@rGGG tG !@+GPwG P | GG듸9tO O G tg a!%ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  !@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}"@E"@E@s3UtE]"@E@E@E<@r5ED@rP@EL@AEl@s6EE]@)EEt@r݋EE 9P܃}t؁"@"@v"@E|@t"@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+"@u"@1}tCF0N<9"@]Ћuԋ}ËEE0]@EEsEE 9P EEEET@MU]vEu}fEf fEm]mE܉EFUR0EMm]E\@E5d@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G !@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W !@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}"@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W!@UW@;=!@r3}ÃG uUW@ WY;=!@r}UWV}tlG t6G t3WVYG PY}|"@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG !@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G !@+G?}3W !@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G !@+G?}3W !@+W;}WY3UWV}G G u}}&u,#@4'@GW !@*h!YGt@O G W!@GGVYtG uO @u}G <+@WR!@UWV}G !@+G}G !@Wu};7}7𐐐3ÐU|"@EEPhTu } E|"@3ø6FÐ2ÐU WVSE9ET="@u<"@ "@"@ "@"@"@"@"@"@"@E@3؋="@E&;5"@"@E@E=w="@jY"@@;t?3Ee ƹ3tL3+‰EEE2"@+"@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5"@"@0E+E-"@@;t"@"@"@"@~Љ"@;5"@v"@"@"@ 9="@u "@"@G(="@95"@u="@7tލ;r;l%;UWV}5"@%"@9u5"@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ"@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$"@Ru "@+D$ø!T$"@3øÐ|"@ÐT$@@(#)hd 5.3b of Jan 27, 1988@@@@@@    @@@4@ P P P P P P P &  P   %0*lx%*lu%0*lo%04lx%05lu%06lo%s: -t flag overrides other flags %s: cannot access %s r%s: open of %s failed %s: \%o* %*s%*s%*s%*s%c%c%s: bad count/offset value usage: %s [-abwlxdoc] [-t] [-A] [-[sn] count[*][wlbk]] [file] ... 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFjjjjjjjjjjjjjjjjjjjj,jjjjjjjjjjjjjjjjjjjjjjjjjjj4,F/4jj(jjjjjjbjj-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@L+@L+@!@T+@,@3.1bS03.1bS0!@T+@bin/hdr100755 3 3 70760 4201127513 6565 37777777777 L! \X ,@.text\X .data,@,@,Y@.bss1@1@ .commentqÐET1@RU RP PXjÐUWE 2@G=/u=2@?u4@E pYE M9E~E P=-tɃ=4@t2@9EuE @Em EH2@2@UE E 2@h@52@L2@u52@h@p-S52@'NYEM=52@VY}UW}=pt:=St8j=Kt:O=IfP@PfT@X2@3@fP@fT@ =Mu{3@=ht=du`3@s2@k=muI 3@3@V=st#=ru+3@3@3@23@*=tu3@52@h@C-jUYG?}U(52@jjh2@uuuuG,;Et52@h(@+32@2@=e92@~52@h @,Eju52@?- 52@jjh2@+E9EuC2@2@u6EP2@@ P*/E92@~52@h@+Ã=4@u =2@tE@Puh2@h @+E2@t2@=4@u uY2@E!jYU02@3@EE6@ju52@7, 52@j jh42@*E}u52@h;@.*EEf42@f2@fu4 9Es52@hJ@)EX@ff2@2@= === = 9Es52@he@~)KEP2@@t3=t52@h@A)62@2@=,v 2@,=2@tU52@j52@hT2@uuuuI);Et52@h(@(3R2@Q2@%EܡD2@E62@@ 82@<2@EEQ2@%E62@@ 82@<2@D2@EE62@@ 82@<2@D2@T2@EE92@s#3@ EEМ@H2@EET2@EX2@E2@@"2@@2@@ 2@@9E9Es52@h@'RE\@@E\@fPft\@R \@I@EEE0\@fPft3 \@@E\@@@\@REE\@fPft3 \@@E\@fPft3 \@@\@RR \@IЋEEkEX@PUPR PEEE X@PUPR PPEEX@PUPR PPPEE=2@u92@=2@2@~42@%=uu(Y=2@u52@h @&92@~52@h@&h2@h$@&P2@Ph8@&=2@t9=2@u0Et=t=uxY}uwR2@ti=3@tBx2@=u4=t2@t+h@hN@%j5t2@5p2@u u)Yh>@%Y~=2@tA=2@u8Et=t!=uYu Y uYP2@%?= u uY=3@tn}th=2@u_ju52@% E=$8@h\@%YuYuY u-Y}}=2@uh|@$ju52@a% E؅tL=t:=tP= tT=0uh(@j$YYAhl@\$YuVY&h ,uu+"Y u0Y=3@}=2@h@#Yju52@$ E؅tN=t9=tU= t\=0ucuh(@#YYkh@#Y[uYMh ,u8uk!Y*umYh@S#Y U52@2@Ph@2# \@@Ph@#\@@Ph@#\@@Ph@"\@@Ph@"\@@ Ph)@"\@@ Ph=@"\@@PhM@"UW}GPhh@w"\@@@Phy@["\@@@\@RPh@3"\@fPft3 \@@\@RR \@IЋPh@!\@fPft\@R \@I@Ph@!\@fPftB\@R \@I@\@RPh@Z!}øU52@2@Ph@0! X@ph@!X@ph@!X@p h@ X@ph)@ X@phC@ X@phZ@ X@phq@ UW}G Ph@ X@PR Ph@f X@PR PPh@F X@PR PPPh@# X@PR PPPPh@X@PR PPPPPh@}UW2@Ph@62@Ph @62@=,v h@Y582@h;@u5<2@hN@b5@2@h`@O5D2@hq@<5H2@h@)R2@u8Q2@%=`u%fL2@PL2@Ph@ KR2@t**92@r5L2@|2@Ph@ 5L2@h@P2@%=@t(=t=u%h@jYh@]Y h@PYP2@%?=t:|=t'G=t0 @ @) @< @=u}! @{=t=uf/ @d4 @]=uQ8 @O= t 3= t=u1@ @/F @(X @!= uR @=)uL @^ @Whf @dR2@Q2@%t1=t1= t1=0t1=@t1=Pt1=`u1 @/t @( @! @ @ @ @ @Wh @Q2@%=w<|8$L@ !@/#!@(5!@!I!@Y!@i!@ z!@!@Wh!@rh!@eYR2@%=@t4=t:=ug{2@t5=t;=uAh"@ YLh!@Y?h!@Y2h!@Y%h!@Yh"@Y h*"@YR2@t h?"@YR2@t hR"@YR2@t hp"@YR2@t h"@nYh"@cYR2@t h"@JYR2@%`t[= tG=@t3=`t=`t h"@Yh"@Y2h"@Y%h"@Yh"@Y h"@YR2@t h#@YR2@t h#@YR2@t h#@YR2@t h+#@pYR2@t h<#@WYhI#@LY92@|p=T2@u =X2@t&5T2@hK#@5X2@ha#@ =\2@u =`2@t&5\2@hw#@5`2@h#@92@rMR2@t5d2@h#@*R2@u =d2@t5d2@h#@w*92@}4R2@t h#@OY=2@uh#@9Y}ø92@|*Eh2@Ph$@5l2@h$@%92@|H=t2@t?Ep2@Ph#$@5t2@h3$@x2@PhC$@*92@|o=y2@t y2@ Py2@PhP$@t z2@=tz2@Phj$@Q{2@=t{2@Phw$@.,92@f=~2@~2@Ph$@UW}G Ph$@62@@ Ph$@62@@ 82@Ph$@62@@ 82@<2@Ph$@}62@@ 82@<2@D2@Ph$@Q62@@ 82@<2@D2@H2@Ph$@92@|^62@@ 82@<2@D2@Ph$@62@@ 82@<2@D2@T2@Ph%@}U WVS(92@s=2@u h%@Y]u}Ã=2@u@=2@t7Eh2@Ph7%@Q=t2@tEp2@PhG%@1=l2@t3@ 3@ 2@ 3@tE`@ EE @9Er=3@th@hW%@jEh2@P52@z Eh2@l2@Ep2@t2@;}=l2@E52@jj h2@uuuu;Et52@h(@63E2@2@2@;}=3@u =2@t= 3@t2@tqE2@=tR=t]=t =t+=HuX=3@tOEF=3@t=E4=3@t+E"=3@tE=3@tE}|h2@kE `@P =2@tVhi%@#E`@jEp52@ EpE@Phy%@ uEPYtEpEp52@h%@EUJ u:YEEuE @9ErUW=3@u =2@2@=3@th@h%@Ef2@f2@=@2@t f 2@fP@f2@62@@ 82@E2@<2@2@@2@2@R2@u!82@)2@2@2@C}9H2@%tQ2@%=`t{R2@@t h%@vYf2@f2@R2@t f 2@fT@f2@62@@ E2@82@2@2@XT@PW62@@ 82@<2@D2@@ %PuUWfEfEjEE P52@r 52@jj EPuuuu;Et52@h(@]3t*m E%uf2@f2@R}f2@t"R2@t f 2@f2@t f 2@f2@fEf2@fEE%U ‹UЉ2@E%EtEE2@2@ 9EDU2@t>=tD=tJ=tP=tV=t\=tb=Duhh&&@,Yph%@Ych%@YVh%@YIh&@YtE;r -@}h-@j t(-@ -@G}UWE%=tdK=t!4=tUTAMDF=ufT8=uXB*=t=uASR =u,FE u W YWhU'@ }hQ'@YUPjhl'@Y2hz'@Y%h'@Yh'@Y h'@Y -@}h-@j <'-@ -@m}52@jjEPuuuu;Et52@h(@13t:EPEPEPhZ'@E=IA$|@U3@52@jjh2@uuuu;Et52@h(@3t#2@t/=3@u3@ø93@t h'@[Y2@t-=3@u 3@93@t h'@ Y93@u92@%2@ 2@ f2@h2@{Ym}GUZ52@jjh2@uuuu;Et52@h(@h3th2@U Ym}UW}wGPPh'@7%t"=@t(=t.=u2h'@ Y%h'@Yh'@Y h'@Y%0t=t!= u'h(@Y%h(@Yh(@Y h(@Yt h(@Y -@}h-@j $}á-@-@ UWV}%t=@t=t=uEt dbwVGPGPPh'(@%0t=t!= u'hM(@Y%hC(@YhH(@Y hR(@Y%t(=t=u'hW(@Y%ha(@uYhk(@hY hu(@[Yt h(@FY -@}h-@j "u}á-@-@ Uh(@ YU52@jjh2@uuuu";Et52@h(@3t&52@h(@2@t h(@h(@Y2@@th(@h(@aYm}TUuuu u;Et52@h(@3øU2@2@52@h(@h-@R uuuuu uh-@3h(@h-@!UWVS}}~EE ;ur;u s 3]u}Ã?'WfY=uE H3u U+ЋO;7sSwuA( ÉE)G?}3W 0@+W;}W#Y+Å{EhUPWE E-@u-@t* -@h-@uu} -@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P9# +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P" ECG t8WYG t g GGuu G P" E9Eus3lUWV}uW YG uG tO G Dt1-@"u}F @tVY;50@rGGG tG 0@+GPwG P | GG듸9tO O G tg aUW}+@t ,@Nj}Ð%3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  0@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl*@Dž\9PtP؉PNKPPoYh~PW =uh~Ph+@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}1@E1@E(-@s3UtE]1@E0-@E8-@E-@r5E-@r-@E-@AE-@s6EE]@)EE-@r݋EE 9P܃}t؁1@22@v22@E-@t1@r05}fEf fEmE]mE܉E@0Ee -@];r&=5|+1@u1@1}tCF0N<91@]Ћuԋ}ËEE0]@EEsEE 9P EEEE-@MU]vEu}fEf fEm]mE܉EFUR0EMm]E-@E5-@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 0@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 0@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}1@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W0@UW-@;=0@r3}ÃG uUW-@ WY;=0@r}UWV}tlG t6G t3WVYG PY}1@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 0@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 0@+G?}3W 0@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 0@+G?}3W 0@+W;}WY3UWV}G G u}}&u 3@(7@GW 0@*h!YGt@O G W0@GGVYtG uO @u}G 0;@WR0@UWV}G 0@+G}G 0@Wu};7}7𐐐3ÐU1@EEPhTu } E1@3ø6FÐ2ÐU WVSE9ET=1@u<1@ 1@1@ 1@1@1@1@1@1@1@E@3؋=1@E&;51@1@E@E=w=1@jY1@@;t?3Ee ƹ3tL3+‰EEE21@+1@+U3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή51@1@0E+E-1@@;t1@1@1@1@~Љ1@;51@v1@1@1@ 9=1@u 1@1@G(=1@951@u=1@7tލ;r;l%;UWV}51@%1@9u51@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ1@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$1@Ru 1@+D$ø!T$1@3øÐ1@ÐT$0@@(#)hdr 5.3b of Jan 27, 1988'?42@42@@>#@d$@$@ %@P# type attr seg filpos psize vsize rbase align noff sid typ seg value typ name desc sid/seg pos size reftype pc-rel s ~  s ! !!))))string tablegroup definitionssymbol tablerelocationstring tablea.outrcan't read "%s"Usage: %s [-dhmprIKSst] [files] %s: %s: word swapped %.14s %04lx(%04lx) text%s: file empty%s: unexpected end of file%s: unexpected end of file%s: incorrect word orderingcombinedFMAGIC, normalNMAGIC, pure textIMAGIC, separate I/DOMAGIC, text overlay%s: unexpected end of file%s: not executable %s: %s: non executable %s: bad header typeLdt table: %sbad header typebad symbol type%s relocation: bad reloc typedata relocation: bad reloc typemagic number: 0%o %s (a.out) text size: %04x data size: %04x bss size: %04x symbol table size: %04x entry point: %04x unused: %04x reloc stripped flag: %04x text pos: %08lx data pos: %08lx reltext pos: %08lx reldata pos: %08lx sym pos: %08lx end pos: %08lx magic number: 0%o %s (b.out) text size: %08lx data size: %08lx bss size: %08lx symbol table size: %08lx text rel size: %08lx data rel size: %08lx entry point: %08lx text pos: %08lx data pos: %08lx sym pos: %08lx reltext pos: %08lx reldata pos: %08lx end pos: %08lx magic number: %03x (x.out) ext size: %04x WARNING, > sizeof(struct xext) text size: %08lx data size: %08lx bss size: %08lx symbol size: %08lx reloc table: %08lx entry point: %04x:%04x entry point: %04x:%04lx entry offset: %08lx bytes swapped words swapped bytes and words swapped NONEpdp1123fixedZ8000808668kZ80VAX1603280286802868038680186BAD CPUcpu type: %s x.out, long formx.out, exec formatb.out, bitfieldsa.out, old format8086 rel format8086 abs format80286 ldt formatBAD REL FORMATrelocation: %s x.out, trailing stringsb.out, 6 byte syma.out, asym (nlist)8086 rel format8086 abs format80286 abs formatUCB VAX formatBAD SYM FORMATsymbols: %s run-time environment: Xenix version 2 Xenix version 3 Xenix version 2 Xenix version 3 Xenix System 5 bad version number bad version number segmented format contains iterated text/data contains huge data item hardware floating point required standalone Inconsistent Huge modelLarge modelMiddle modelCompact modelSmall model, overlay, fixed stack, pure text, separate I & D, executable text rel size: %08lx data rel size: %08lx text rel base: %08lx data rel base: %08lx load address: %08lx stack size: %08lx warning: truncated extended header no extended header segpos: %08lx segsize: %08lx mdtpos: %08lx mdtsize: %08lx mdttype: %d pagesize: %d * 512 = %ld ostype: %d osvers: %d lseg: %04x xext pos: %08lx text pos: %08lx data pos: %08lx sym pos: %08lx rel pos: %08lx end pos: %08lx reltext pos: %08lx reldata pos: %08lx truncated extended header segpos: %08lx mdtpos: %08lx Segment table: %send pos: %08lx segment %02x %s: %s: bad %s format at 0x%08lxFabricated segment table: %sMiddle model requires LDT in reloc area null text data syms rel sestr group debug %04x M xseg xseg %04x %04x %06lx %06lx %06lx %06lx %02x %04x %04x %08lx %s: can't handle 8086 rel filesout of memory%06lx bytes %04lx: unexpected EOF group seg %04x %04x %3d: %02x %02x %08lx %3d: %02x %08lx %3d: %02x %04x ? %c %02x %02x:%04x code to code code to data data to code data to data bad srtyp bad reloc record: bad reloc record: %04x %3d %08lx text:data:bss: EXT:  byte word long ???? relative%04x %3d/%02x(%c) %08lx bytewordlong???? seg:off segment offset ??????? relativecan't handle a.out relocation %08lx text: data: long short %s: unexpected end of file%s: 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF6??&6?H?????E66?626?u6666666666???????????8?%=????????????????38??????????M?68:%=66??6??8???q??7??38-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@;@@;@0@H;@<@3.1bS03.1bS0bin/id100755 3 3 40310 4201130315 6362 37777777777 L*! 6h DP@.text6 .dataP@P@h P7@.bss @ @D.comment@ÐET @RU RP P56jÐUh @h@  E;E#E Euhp@tuht@E9Etuhy@LE9Etuh@v @}h@j -j~5Yá@@ UPu uh@ u sYE}tE0h@ UPu uh@ u QYE}tE0h@t Ð/ÐÐ/ÐUWV}t9~u=Ƌu}U=@uh@h@)@5@t YU=@t5@X+Y@U=$@t5$@2Y$@=$@t5$@g2Y$@=@t5@*Y@UEEt;E uEtEEU=@uh@h@(@u35@YUE=$@u'$@j5$@$@ EuYEu5$@5$@ Eu3u%(YE$@9EEUJ= uE8%$@5$@5$@N1$@|juu }bE$@j:uEEt;EuEtEEE$@j:uEEt;EuEtEEEPY$@j:uEEt;EuEtEEEj uEEt;EuEtEE=$@u#$@j5$@$@tT$@$@E$@H9EE%$@$@P5$@/$@uJ=$@t5$@{/Y$@=$@t5$@\/Y$@3$@$@EEE8uEEEUj,uEEt;EuEtEEEE E$@eUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWEE EP`+YtujW Nj}Uu-YÐUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P* E}|EE}øUWV}t9~u=Ƌu}U=@uh@h@#@5@YU=@t5@x%Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@J#@u35@YUWuhh$@_ =(@WQY=(@WBY=:j EPW EW"YPj:W " 9Eu`WY}| `9E~aE(@t4=:t*j EPWb EW:"YPj:W! 9Et3}WY}| `9E~aE(@=(@=(@W^Y=(@WOY=(@W@Y=(@G?t =,u?tG=(@(@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V&Y}u +gEEvÐUPWE E@u@t* @h@uuY @ t }ËUWVS}u ]GF:u Nj]u}M}3UW}Wx"YjjG Px& GGg G tg }ÐUPWV}g G 9E}qtkG u`7E E}ujjG P% +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P% ECG t8Wf!YG t g GGuu G PI% E9Eus3lUWV}uW#YG uG tO G Dt1@"u}F @tV Y;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}G tG t w&Yg E GuaO }8uT)@\-@GW @GGu}G d1@WR@G W@V#YtO @U WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}tUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS})@E)@E@s3UtE])@E@E@EX@r5E`@rl@Eh@AE@s6EE]@)EE@r݋EE 9P܃}t؁)@R)@vR)@E@t)@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+)@u)@1}tCF0N<9)@]Ћuԋ}ËEE0]@EEsEE 9P EEEEp@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ex@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uT)@\-@GW @*h!YGt@O G W@GGVYtG uO @u}G d1@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU @EEPhTu } E裘 @3ø6FÐ2ÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ @Ru @+D$ø!T$ @3øÐ @ÐT$T@@(#)id 5.3b of Jan 27, 1988uid gid euid egid%s=%u(%s)%s=%u(%s)/etc/grouprr/etc/passwdrr 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF>Jli&2VIWqIAW-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@t1@t1@@|1@2@3.1bS03.1bS0@|1@bin/ipcrm100755 3 3 34150 4201130327 7110 37777777777 L! 8-P @.text8- .data@@P .@.bssX@X@ .commentX8ÐETX@RU RP P,jÐUPWVS3=?=M:=Q=Sx=m=qtE=s5d@$YjjSW =ShH@Fr5d@YjjS =LSh<@F85d@YjjSU =ShB@^F5d@YEjup؃tjjSs =uhN@F5d@EYEjju ؃tjjS =uduhU@FQ5d@YEt=jju ؃tjjS =uuh\@^FFh,@u u u E9\@}h@hc@hh@" FV*Y]u}UP8@=t2=t=u-E@uu uh@hh@E@E@UPW}WYEuWh@7E}UPWVS}Ey@uJGy@u=+t =-u EGy@u 3]u}ø0+Ëk 0+Gy@uރ}t뾋븐UPWVS}Ey@uJGy@u=+t =-u EGy@u 3]u}ø0+Ëk 0+Gy@uރ}t뾋븐UPWV9P@ueE9\@}#E \@ =-u E Au u}hT@E \@4u \@΋E \@ P@=`@:tWu=X@tOLjEE E 0YPE 0j' h8@YPh8@j' jEPj' E \@ P@@P@u\@P@?F=:P@@U \@tP@@U \@d@\@@\@;E|l=X@tOLjEE E 0YPE 0j& h@YPh@j& jEPj& P@?GE \@\@ d@P@8E \@ P@@P@uP@\@d@Uu ujj1>Uuu ujj1$Uuuuu ujj1Uuuu ujj1ÐUPWE Ed@ud@t* d@hX@uui d@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUML$uu ujj5Uuu ujj5Uuu ujj5Uuu ujj4Uuu ujj4Uujj4 Uuu ujj4kÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuZXRT$R#ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  l@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlT@Dž\9PtP؉PNKPPoY Ek E-0GEy@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlZ@Dž\?E2ETMDžl]@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhEy@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =|@t3txE@|@h@EPbuEPSjEP |>h~PW =uh~Phx@ 3W YkUjuuuu u#Ujuuuu uU$WVS}\@E\@E@s3UtE]\@E@E@E@r5E@r @E@AE(@s6EE]@)EE0@r݋EE 9P܃}t؁\@@v@E8@tm@r05}fEf fEmE]mE܉E@0Ee @@];r&=5|+\@u\@1}tCF0N<9\@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G l@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W l@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}X@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWH@ WY;=h@r}UWV}tlG t6G t3WVYG PY}8@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l@+G?}3W l@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l@+G?}3W l@+W;}WY3UWV}G G u}}&u@@GW l@*h YGt@O G Wl@GGVYtG uO @u}G  @WRl@UWV}G l@+G}G l@Wu};7}7𐐐3ÐU8@EEPhTu } E8@3ø62ÐU WVSE9ET=L@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ @ @h@ @T"@3.1bS03.1bS0h@ @bin/ipcs100755 3 3 63424 4201130330 6734 37777777777 L! LL @.textLL .data @ @M@.bss'@'@.commentgÐET'@RU RP PLjÐUWVS =ote=at!=Ct@\=?,@,@+@+@+@+@D@ @+@=ND@@=ct=buy+@m+@a=muZ+@N=st*4=qt<=pu5+@)+@,@=tu ,@h@u u ؃=,@u E9<@}hf@h#@.jtJY+@+@,@u,@+@+@h@ @0 Y=D @uh@h#@jJYj5 @I}h@h#@jIYhD @ YP5 @h@ =+@=T @3j5 @V jlPV x> ;th@Yj_IY j5T @VP =,@t)@E@P=+@t@(@P=+@t@@P=+@t@@P=+@t @@Ph @h@ xhF@Yj0EPV = ;th@YjtHY EuGxGPEPhm@jq=+@tEPEPhy@ =+@tEPh@=+@tEPEPh@ =,@tuYuYuzYh@Y;x=+@=t @w3j5 @V jEPV ]< ;th@YjDGY j5t @V5 j PV  < ;th@QYjFY j V =+@u(=+@u=,@u=+@t =T @=,@t@@P=+@t@@P=+@t@@P=+@t@@P=+@t @@Ph @h@h@Y}h@Yj0EPV : ;th@-YjEY EԩuGuGPEPh@jm=+@tEPh@^=+@tuh @E=+@tEPEPh$@% =,@tuYuYuYh+@Y;} =,@=d @3j5 @V j($PV 9 ;th@YjDY j5d @V =+@u-=,@u$=+@t =T @uf=+@t =t @uT=,@t@@S@P=+@t8@?@P=+@t @7@Ph @h-@hT@Y(ha@Yj LPV 8 ;th@YjCY TuGj(GPLPh@js=+@t`Ph@,=,@tdYhYh@Y;(7jCYUPuu u> E=uh@,YjBYUuu u7 ;Eth@YjBYUWVS}w  t@@PG UЋEPEPh@2(G#tE -Ph@E uP' YEu Ph@ E0h@GPYEu GPh@ E0h@=+@tTGP YEu GPh@ E0h@hGPYEuGPh@D]u}ËE0h@'UW}t&EPY7wwh@}h @YUh#@h@M6Huh%@h#@j@HjhLPh =thJ@h#@Kj@Y5jOYUBEU؉PUPDUP4UPdU܉P$UPTHh7YÐUuYPYUWVS'@p@GF҈uEk@@'@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW'@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUWV}t9~u=Ƌu}U=@uh@h@4@5@ YU=@t5@5Y@U=$'@t5$'@<Y$'@=('@t5('@<Y('@=@t5@65Y@UEEt;E uEtEEU=@uh@h@3@u35@YUE=$'@u'<'@j5<'@$'@ EuYEu5<'@5$'@ Eu3ue2YE<'@9EEUJ= uE8%<'@5<'@5$'@;$'@|juu }bE,'@j:uEEt;EuEtEEE0'@j:uEEt;EuEtEEEPY4'@j:uEEt;EuEtEEEj uEEt;EuEtEE=('@u#@'@j5@'@7('@tT('@8'@E@'@H9EE%@'@@'@P5('@:('@uJ=$'@t5$'@9Y$'@=('@t5('@9Y('@3('@8'@EEE8uEEEUj,uEEt;EuEtEEEE E,'@eUPWVS}E% @uJG% @u=+t =-u EG% @u 3]u}ø0+Ëk 0+G% @uރ}t뾋븐UPWV9@ueE9<@}#E <@ =-u E Au u}h@E <@4 u <@΋E <@ @=@@:tWu =8@tOLjEE E 0\.YPE 0j8 h@A.YPh@j8 jEPj8 E <@ @@@u<@@?F=:@@U <@t@@U <@D@<@@<@;E|l=8@tOLjEE E 0y-YPE 0j8 h@^-YPh@j7 jEPj7 @?GE <@<@ D@@8E <@ @@@u@<@D@UWEE EP<3YtujW Nj}Uu5YÐUWVS}}~EE ;ur;u s 3]u}Ã?'WFY=uE H3u U+ЋO;7sSwu56 ÉE)G?}3W &@+W;}W1Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P1 E}|EE}øUWV}t9~u=Ƌu}U=0@uh4@h @+0@50@YU=0@t50@,Y0@UW}G?t=:t = u= u ?tGNj}U=0@uh6@h @j*0@u350@YUWuhhD'@_ =F+@WQY=J+@WBY=:j EPW: EW)YPj:W@) 9Eu`WY}| `9E~aEN+@t4=:t*j EPW EWZ)YPj:W( 9Et3}WY}| `9E~aER+@=Z+@=^+@W^Y=b+@WOY=f+@W@Y=J+@G?t =,u?tG=V+@F+@oUWVS} uEE~,F t!O>(V{Y=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V &@+V;}V-Y}u +gEEvUWVH@@9&@s &@<\@u'YtVujK2 jhV@j:2 W'YPWj'2 jhY@j2 u}ÐUPWE E#@u#@t* #@h#@uu #@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W()YjjG P(- GGg G tg }ÐUPWEEE@ uE@ t(EH uuu 3 E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PM, +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P+ ECG t8W'YG t g GGuu G P+ E9Eus3lUWV}uW *YG uG tO G Dt1"@"u}F @tV'Y;5&@rGGG tG &@+GPwG P)$ | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuU WVS}uE} tE 8$E% @u5GEE% @uE=+t =-u EGEu309Et "G=xt G=XuE% @tEE% @t E-0#E% @t E-WE-7E;| 3]u}Ãu;09Eu1G% @tG=xt G=Xu EE% @t E-0#E% @t E-WE-7+EGE% @tEE% @t E-0#E% @t E-WE-7E;|} tE 8}t T$tÐUW(E+@EEPY=@iGQiWkW<E=l+@u=p+@uWEPEP< l+@Ep+@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<t+@Ex+@ƙ5|+@Ep+@}| FFFtmnEN}|ۉ5+@}=+@ƹtmn=nu f@3 u@+Fu@;}f@G+@5+@+@t+@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph$ @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}+@E+@EL"@s3UtE]+@ET"@E\"@E"@r5E"@r"@E"@AE"@s6EE]@)EE"@r݋EE 9P܃}t؁+@+@v+@E"@t+@r05}fEf fEmE]mE܉E@0Ee "@];r&=5|++@u+@1}tCF0N<9+@]Ћuԋ}ËEE0]@EEsEE 9P EEEE"@MU]vEu}fEf fEm]mE܉EFUR0EMm]E"@E5"@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G &@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W &@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}'@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W&@UW"@;=&@r3}ÃG uUW"@ WY;=&@r}UWV}tlG t6G t3WVYG PY}&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG &@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G &@+G?}3W &@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G &@+G?}3W &@+W;}WY3UWV}G G u}}&u ,@0@GW &@*h!YGt@O G W&@GGVYtG uO @u}G 4@WR&@UWV}G &@+G}G &@Wu};7}7𐐐3ÐU&@EEPhTu } E&@3ø6FÐ2ÐU WVSE9ET=&@u<&@ &@&@ &@&@&@&@&@&@&@E@3؋=&@E&;5&@&@E@E=w=&@jY&@@;t?3Ee ƹ3tL3+‰EEE2&@+&@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5&@&@0E+E-&@@;t&@&@&@&@~Љ&@;5&@v&@&@&@ 9=&@u &@&@G(=&@95&@u=&@7tލ;r;l%;UWV}5&@%&@9u5&@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ&@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$'@Ru '@+D$ø!T$'@3øÐ&@ÐT$ @@(#)ipcs 5.3b of Jan 27, 1988 @&@.@4@;@D@M@T ID KEY MODE OWNER GROUP CREATOR CGROUPV@\@abcmopqstC:N:_time_msgque_sema_shmem_msginfo_seminfo_shminfo/unix/dev/kmemusage: ipcs [-abcmopqst] [-C corefile] [-N namelist] ipcs: no namelist ipcs: no memory file IPC status from %s as of %s%s%s%s%s%s%s Message Queues: CBYTES QNUM QBYTES LSPID LRPID STIME RTIME CTIME Message Queue facility not in system. SRrw-rw-rw-%7u%6u%7u%6u%6u %s%s%s%s%s%s NATTCH SEGSZ CPID LPID ATIME DTIME CTIME Shared Memory: Shared Memory facility not in system. DCrw-rw-rw-%7u%7d%6u%6u %s%s%s%s NSEMS OTIME CTIME Semaphores: Semaphore facility not in system. --ra-ra-ra-%6u ipcs: seek erroripcs: read error%c%7d%s%#8.8lx 0x%c%9d%9.8s%9d%9.8s%9d%9.8s%9d%9.8s %2d:%2.2d:%2.2d no-entry/dev/sys/varripcs: could not open /dev/sys/var. ipcs: error on read of /dev/sys/var. Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/grouprr: option requires an argument -- : illegal option -- --/etc/passwdrrUnknown error: @@@@@@@@&@8@H@[@m@~@@@@@@@@@ @@/@C@T@c@r@@@@@@@@ @@:@S@b@p@@@@@@@@ @)@A@X@l@@@@@@@@@@@(@F@\@m@@@@@@@@@@@@@(@C@`@w@@@@!@H@Q@Z@c@l@u@~@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@+@5@E@S@b@s@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error@ @W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF *33*38333335*)3)"*3e*u*u*u*u*u*u*u*u*u*33333333333,313333333333333333#,3333333333=3*,.1**33*33 ,333a33+33#,-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@,4@,4@&@44@5@3.1bS03.1bS0bin/join100755 3 3 40120 4201130332 6723 37777777777 L! 5 @.text5 .data@@ 6@.bss@ @@ @.comment@@ÐET@ @RU RP P5jÐU4E PBAE PB=at==et{=j=ot~=tE PB@@E PB=1t=2u *@ *@ *@E P@E Mt*@jE PB=1uE peY@:E PB=2uE pAY@E p.Y@@ME ME 9E~E P=-E E D)@E*@9E|9Et h@aY @ @@(@<)@@(@@)@E P=-u  @0@/h"@E p( @uE ph$@h2@E p( @uE ph4@jYE5 @YEjYE}~*}~$@4(@@4(@}u8*@t ujt5 @YEjYE}~*}~$@4(@@4(@B|}uQ*@t juj)YE(uu5 @YEjYE}~$@4(@@4(@tju5 @ jYEjYEuukjYE}~*}~$@4(@@4(@Mt}~.}~(@4(@@4(@X}Nju5 @e EEjYE}~ }=*@t EEj0YËE P=1u@E PB=.u/*@)@E PRRY*@D)@VE P=2JE PB=.5E PRRBY*@D)@*@)@ME *@(9*@ YEPuG P* E]u}W$Y=u~GEU+Ѕҋ~SjuuLEt E+EH؋)G?}3W T@+W;}W%Y}t*G @tW#Y=u ]VEgUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ Pl% E}|EE}øUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V T@+V;}V#Y}u +gEEvUPWE EL@uL@t* L@h@@uu L@ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P1# +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P" ECG t8WYG t g GGuu G P}" E9Eus3lUWV}uW YG uG tO G Dt10@"u}F @tVY;5P@rGGG tG T@+GPwG P  | GG듸9tO O G tg aUWV}u ;u 3u}F;t N+GuUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  T@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl<@Dž\9PtP؉PNKPPoY@Dž\EtDžl@@Dž\P 9u E@u K@0E@FE+ËU+Љ)ETMEE E PP~؉]PJKPPkY5Dž0Dž4Dž0Dž4EE E PPX9Eu@@<Dž$@Dž<@E@uEE E -ݝHN%=L%uUHuLO%=u Dž Dž,E9Eu@@؍CEO%=uDžlH@Dž\L% H ‰PDž(Dž0Dž4E9EDž$@Dž<@@PDPE@=}E@PLH* HE能@tDžlJ@Dž\h~PW =uh~Ph`@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}D @ED @E@s3UtE]D @E@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁D @ @v @E @tU @r05}fEf fEmE]mE܉E@0Ee (@];r&=5|+D @uD @1}tCF0N<9D @]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G T@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W T@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@ @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WT@UW0@;=P@r3}ÃG uUW0@ WY;=P@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG T@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G T@+G?}3W T@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G T@+G?}3W T@+W;}WY3UWV}G G u}}&u*@.@GW T@*h!YGt@O G WT@GGVYtG uO @u}G 2@WRT@UWV}G T@+G}G T@Wu};7}7𐐐3ÐU @EEPhTu } E @3ø6FÐ2ÐU WVSE9ET=4 @u<8 @ 4 @4 @ 8 @( @8 @$ @4 @( @0 @E@3؋=$ @E&;5( @4 @E@E=w=0 @jY( @@;t?3Ee ƹ3tL3+‰EEE2( @+0 @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή50 @( @0E+E-( @@;t( @( @( @4 @~Љ$ @;5$ @v$ @, @$ @ 9=0 @u $ @0 @G(=$ @950 @u=0 @7tލ;r;l%;UWV}5$ @%( @9u50 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ, @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$< @Ru < @+D$ø!T$< @3øÐ @ÐT$ð@@(#)join 5.3b of Jan 27, 1988 @usage: join [-an] [-e s] [-jn m] [-tc] [-o list] file1 file2rcan't open %srcan't open %s%cjoin: 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ$6$ZZZZZZZZRZZ-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@2@2@P@2@<4@3.1bS03.1bS0P@2@bin/kill100755 3 3 30664 4201130333 6734 37777777777 L! D' @.textD' .data@@ (@.bss@@ .comment1ÐET@RU RP P&jÐUWVSEEE9Eh@h @]j&Yj7YE P=-uE PBRmYME E E =-uEE =0uEE 0%Yu}t}}t}}h@h @j%YWV%؅}fVYE8@39@u EU@9@u Eg@Ev@uVh@h @8EME E3E9EuY%Y]u}Uh@h @j1%YÐUW}|Nj}ËUPWVS}E @uJG @u=+t =-u EG @u 3]u}ø0+Ëk 0+G @uރ}t뾋븐"J$ÐUPWEEE@ uE@ t(EH uuu E@ t }ËUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY Ek E-0GE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl @Dž\?E2ETMDžl @Dž\EE C~u~E܉TMs؍gh݅H$ @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H, @u+-hJhE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h @YEt Eu = @t3txE @ @h @EPbuEPSjEP |>h~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E @E @ED @r5EL @rX @ET @AEt @s6EE]@)EE| @r݋EE 9P܃}t؁@@v@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE\ @MU]vEu}fEf fEm]mE܉EFUR0EMm]Ed @E5l @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3J ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h YGt@O G W@GGVYtG uO @u}G @WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裄@3ø6JÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}ønÐT$@Ru @+D$ø9T$@3øÐ%3Ð@ÐT$@@(#)kill 5.3b of Jan 27, 1988not a killable process grouppermission deniedinvalid signalno such processkill: %d: %s usage: kill [ -signo ] pid ... 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF^^^^^^^^^         ^^^^^^^^^^^ ^ ^^^^^^^^^^^^^^^^^^^^^^^^^^( : #(^^^^^^^^V^^-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@@ @@3.1bS03.1bS0bin/line100755 3 3 1230 4201130452 6675 37777777777 LA! ,\@.text .data\@\@,\@.bss@@.commentÐET@RU RP P9jÐUWVS@E';uhPj LjGn@;uč+RPj jh@j} 9@ujYj~YUPjEPj$ =t@@EÐÐ@ÐT$UÐ`@@(#)line 5.3b of Jan 27, 1988 3.1bS03.1bS0.commentÐET@RU RP P9jÐUWVS@E';uhPj LjGn@;uč+RPj jh@j} 9@ujYj~YUPjEPj$ =t@@Ebin/ls100755 3 3 45020 4201163357 6423 37777777777 L! =4 $@.text= .data@@4 >@.bss*@*@$.commentJÐET*@RU RP P=jÐULWV/@ 0@$u3/@hXD@h&@(j*YE-N0@E@<0@EPhTj8 u3/@0@@=/@u/@ 0@ /@Eu 0@E U6/@0@/@0@/@0@/@/@/@/@/@h/@0@O/@D=/@u3/@(/@0@ 0@ 0@@/@ 0@$0@/@/@/@/@ 0@$0@@/@ 0@/@0@@/@/@{/@/@ /@ 0@a/@Y0@Q/@I /@/@ 0@5hr!@h&@j:Y-1|=Gwօ|$(@E B:tM~E P=-2=/@u=0@u =0@t0@@=/@t8/@/@/@/@ 0@$0@=/@/@0@0@@F=/@ =/@2h!@h@W/@uh@hH @h&@ =/@ =/@~2h!@h@/ @uh@hH @h&@ }uEE @m E[E E =/@t E 0.YE,@@9E~E,@@jE 0 t E fOEE9E|=/@u ,@@0@@,@@(@@h~j@+@P5@5@@EE8G=du =/@t =/@tV9E~3P7 vWYm/@/@P/@/@/@P/@=/@uѡ/@/@P/@Vj/@0_ /@0|6Y5/@p6Y=/@u=/@uE9u-=4@@t$@},5$@j /5$@X/Yj7Yu}á$@P@ EȋEȀ8txuE 9Eu&E=lu0@/@E=cto=ftJ=lt=rtK=xt&a/@/@ 0@$0@@/@1/@"/@/@0@UPWVS,@@E/@} tuh!@E@ujY=/@u ,@@0@@,@@(@@=/@u#h~j@+EPu=/@@-EE0F=dh!@V!h!@V!jjau3Vh&=$+@uuh"@h&@ $+@wV5/@S*Y@Pj?u3Sh+=$+@uuh"@h&@) $+@S77*/@G=/@mE9E=/@u =/@t50@h!@5@u]u}UWVS}u = 0@t0 9(@@ (@@9(@@ (@@P=(@@E9Et =/@u=/@t=$0@t+ǹH}@EEk}u=$0@t3E/EEЋEЋ;s3r YEE9E|Ƀ=4@@t h!@YEE9E|]u}35 Y;r3$ Y;rUPE= t= u&4@@4@@@%4@@E= |E==/@t E?=/@4@@$@}5$@j\*$@P\@E%@0E$@}5$@EP*$@P@EE%@0E$@}5$@EPf*$@P@EE%@0E4@@$@}5$@EP#*á$@P@EU=4@@t$@}5$@j )4@@á$@P@ U=4@@t$=0@t{$@}5$@j,)á$@P,@4@@4@@(@@@=P$@}5$@j V)$@P @4@@렃=/@u1$@}5$@j )y$@P@ f4@@=(@@@(@@=P~8$@}5$@j ($@P@ 4@@= 0@9(@@9(@@~U4@@}C4@@+4@@$@}5$@j ?($@P @4@@+4@@$@}5$@j 'Y$@P@ F4@@$@}5$@j '$@P @4@@=(@@uUE EE 9E~E- @E 9EvE- @E 9EvEEUWE0@0!@ ǃ0YT!@r}UWV}70@#;u N$@}5$@P&u}á$@P@UWVS*@u G֊ F>t+@r>u:G=/t/Gu 3 G֊ FC}+@r>t"}u uhT!@h&@ *@*@]u}UWVSh!@u\#/@uuh!@ ]u}h|+@5/@ 0@=/@th+@"Y;5,@@~5,@@=/@u=/@u =0@t3Ph+@uP؅t(C=t f+@fC3 +@;G|5/@jjh+@=u]f+@ft׃=/@:+@=.(=/@t+@t+@=.+@5/@#YU0WEj(K(Yu@uhh=$+@uh"@h&@B $+@3ø(@@9@r(-@=+@uh!@h&@+@@8@fGfGG-G$} u = 0@=0@tDEPubE؃}u$E%=uEPuEE؉EEPuEܸ9Eun=0@uEPuE؃}u#=0@uDE%=u4uh"@uh8"@h&@ -@Wp)Y3fEfGEGE%== ti=@tI=Ptt=`tD==/@hP}ucjhF"@aGdGbEGGcEGGpE=t=GmGsjhJ"@PF hPu EЃ}|.PYEЍ@PR YG$=0@tGl!EEԅuEPuE%fGfEfGfEfGfEfG=/@tEG =/@tEG EG uY0@UWVE8E 0=/@uVGt.G=du#Ft F=dt*u}FtF=duۃ=/@t$G 9F u3ƋG 9F ~@뷡@FtPGtPf@ЋrUWV|+@}G=k=/@t8=0@t=/@uGPhN"@=GPhR"@)=/@G=bt=cu4=0@t=/@ujhW"@Sjh\"@B=0@t"=/@uwYPhb"@wYPhg"@=/@ZGPYGPYGPhm"@_=/@ =/@>jh8D@GPK uh8D@hr"@#GPhy"@=/@ =/@~>jhHD@GP uhHD@h~"@GPh"@G=bt G=cu$G%PG%Ph"@ wh"@uG P{ Y0@9G | 0@9G ~FPFPh"@@ FPh"@-Gt h7jWh|+@G =0@u=/@u =0@=0@u =/@tG=duh"@h|+@t=/@uG=luh"@h|+@L=/@tGIth"@h|+@$=0@u=/@uh"@h|+@h|+@h"@3=/@tr=0@ti$tc=/@u 3@Ew$YEh|+@YU;U~ w$h"@w$h"@w$"YG$u"Yu}U4@@E$@EEEEE$@u uuuuu bE4@@E$@EU4@@E$@EE$@u uuuuu E4@@E$@UWVEEExEEP&YGE<%uE+@=-u+@G +@=0u +@G=*uQEEP+@=+@}1+@أ+@=+@uHL3+@G5+@k+@ G0£+@=0| =9~=.u+G=*uEEPUGEE=Ht=Lt=ht=lu EMGGE=it<;=Ut=It=DqEE@ E}~EEPU EEPUE=uEEE=ut }}3EtE؉E܍RPua}tN-= +@u  +@]E=OEEo}EEPUE=ouEEEEEE}t3E䍅`E#E= } NE#E@0 NE#E@WME#EEuE=ou }t>N08=+@u%= +@j0YEP Y-+@ NEN0`E=ct>=XEE@RRu؊RtxEs=d[=uC=stE=o8EEpu"@}}EEb=xWEuE؊EuV!kE G0‰E=0=9~EF8tE9E|Nu؋E+UWV} }u 0E mʚ;E}| EEEE-ʚ;E}E@0G OE R0ˆEE9EڋuOƹ R0ˆƙE @=0tO0E @;wONju}UWV}E +Nj;5+@~5+@= +@~ 0E=-u= +@}GPYN +@+@+ƉE=+@u EPYM} GPnYN}=+@t EPUYM}u}UPWVS=/@t uh"@u * 3]u}Ã}t = @}u =@tq}t@@9EuE@}t @@PY}t @ @333HE=u XE=:uF%uE GM uk U0‹؃}t @@PYE< u;]uE 8}8E@3UPuY@P'YE}u7uhB=$+@uuh"@h&@ $+@3uu'EU=$+@uu h"@h&@ $+@UPE EUEE 9E|ÐUu}YPYUWVS(+@"@GF҈uEk@#@(+@GFGFGFGE@k(#@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW(+@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUWEE EPYtujWR Nj}UuYÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu ÉE)G?}3W )@+W;}WY+Å{EhÐ&>ÐU9Er=P#@u>EL+@PYP#@EH+@ED+@E EURu+ËE9L+@sˣL+@P5P#@wP#@UWVSD+@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuWH+@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVuH+@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u D+@|?=P#@t6SW5P#@ SVW S5P#@Vq ]u}ÊEGFUKuUWVS}u ]D+@E9E|R=P#@tIuW5P#@ uSW uVS u5P#@V ]u}ÊEGCFUMuӐ&6ÐUW}W YjjG P GGg G tg }ÐUW}} WY}ËGGUWV}uWYG uG tO G Dt1%@"u}F @tV Y;5)@rGGG tG )@+GPwG P5 | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}G tG t w Yg E GuaO }8u`H@XD@GW )@GGu}G hL@WR)@G W)@VsYtO @UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐUPWVS}u ]C}G8uO KuO GF҈uE]u}Ð T$tÐUW(E+T#@EEPY=\#@iGQiWkW<E=P+@u=T+@uWEPEP< P+@ET+@EE9E|)E9E}!E+X#@EEPYG Nj}UWVEQUEE}} EQME<X+@E\+@ƙ5`+@Epp+@}| FFFtmnEN}|ۉ5l+@}=t+@ƹtmn=nu fj#@3 uh#@+Fuh#@;}fj#@Gd+@5h+@x+@X+@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph#@ 3WYkUWVS}*@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+u}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W)@UW%@;=)@r3}ÃG uUW%@ WY;=)@r}UWV}tlG t6G t3WVYG PY})@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG )@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G )@+G?}3W )@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G )@+G?}3W )@+W;}WY3UWV}G G u}}&u`H@XD@GW )@*h!YGt@O G W)@GGVYtG uO @u}G hL@WR)@UWV}G )@+G}G )@Wu};7}7𐐐3ÐU)@EEPhTu } E)@3ø6FÐ2ÐU WVSE9ET=)@u<)@ )@)@ )@)@)@)@)@)@)@E@3؋=)@E&;5)@)@E@E=w=)@jY)@@;t?3Ee ƹ3tL3+‰EEE2)@+)@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5)@)@0E+E-)@@;t)@)@)@)@~Љ)@;5)@v)@)@)@ 9=)@u )@)@G(=)@95)@u=)@7tލ;r;l%;UWV}5)@%)@9u5)@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ)@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$)@Ru )@+D$ø!T$)@3øÐ)@ÐT$@@(#)ls 5.3b of Jan 27, 1988(0@(0@p!@/etc/passwd/etc/group&@nu}US[A<%6%s file cannot be opened for reading r-w-@s@xS- r-w-sxS-r-w-txT-p @ @ @ @ @ @ @!@!@Filename %s/%s is too long .Usage: ls [-1ACFLRabcdfgilmnopqrstux] [files] rr %s: ...total %ld r%s unreadable ls: too many files. Only 1023 files will be displayed. %s: symbolic link to file which no longer exists %s not found -> -? %u %5u %ld %4ld %ld %4ld %4d %-9.9s%-9u%-9.9s%-9u%3d,%3d%7ld %-7.7s %-4.4s %-12.12s />* %s %.72s %s(null pointer)%uls: out of memory at %s Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec#@#@W`/Lw/K:/JMFw/GMT TZ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/xL@xL@)@L@N@3.1bS03.1bS0)@L@N@bin/logname100755 3 3 20354 4201130460 7417 37777777777 L! t D@.textt .dataD@D@D@.bss @ @ .comment ÐET @RU RP P)jÐUPj%YE}uu`YjYUWV}uE @MtVu u}PYt7u ҋE3ȐU$WV|Yjhl@|Djk$PV j$EPV= =$tVyY3uԋ}VhYE܄u3jEPh @$  @ @ŐUWV}t9~u=Ƌu}U=@uh@hx@ @5@YU=@t5@Y@UW}G?t=:t = u= u ?tGNj}U=@uh@hx@f @u35@YUWuhh @_ =$@WQY=$@WBY=:j EPW EW YPj:W< 9Eu`WY}| `9E~aE%@t4=:t*j EPW EWV YPj:W 9Et3}WY}| `9E~aE%@=%@=%@W^Y=%@WOY=%@W@Y=$@G?t =,u?tG= %@$@oUWVS} uEE~,F t!O>(V{Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}VY}u +gEEvÐUWVS3@%=u-=@t$@9@u,=@u#@Duh@ Y 3@@Uh@E Y=u@E+Å~VjuSEtE+Ë)@@=@}3@@@+@;} h@Y}t=@@ @Dt"h@ Y=u]u}ËE@UWVS}u ]GF:u Nj]u}M}3UW}W YjjG P GGg G tg }ÐUWV}uW YG uG tO G Dt1@"u}F @tV Y;5@rGGG tG @+GPwG P% | GG듸9tO O G tg aUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}tU(WVSjTYujFYuj8Yt,j/WuFjh@E}]̋uЋ}3ME=t!E=tE=t E=u j EPVA u u YCj$EPu =$tu YyUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUPWVup Yt8EPu|%E%= ujh@h } 3u}þfEft EU;uuh@h %@EPh %@EPh %@|=EU;u1E%= u!t EU;uWY %@\jEPW =TjjW NuWAY3  3Ð 3ÐUWVS}u ߋG8uOGF҈uË]u}UWV}u;h@YEt Eu =@t3txE@@h@EP:uEP+jEP |>h~PW =uh~Ph@. 3WYkUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@%@H)@GW @*h!YGt@O G W@GGVYtG uO @u}G P-@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU @EEPhTu } E裼 @3ø6FÐ2ÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ @Ru @+D$ø!T$ @3øÐ @ÐT$H@@(#)logname 5.3b of Jan 27, 1988/etc/utmp/etc/passwdrr/etc/utmp/dev/ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/`-@`-@@h-@.@3.1bS03.1bS0@h-@bin/ll100755 3 3 45020 4201163340 6404 37777777777 L! =4 $@.text= .data@@4 >@.bss*@*@$.commentJÐET*@RU RP P=jÐULWV/@ 0@$u3/@hXD@h&@(j*YE-N0@E@<0@EPhTj8 u3/@0@@=/@u/@ 0@ /@Eu 0@E U6/@0@/@0@/@0@/@/@/@/@/@h/@0@O/@D=/@u3/@(/@0@ 0@ 0@@/@ 0@$0@/@/@/@/@ 0@$0@@/@ 0@/@0@@/@/@{/@/@ /@ 0@a/@Y0@Q/@I /@/@ 0@5hr!@h&@j:Y-1|=Gwօ|$(@E B:tM~E P=-2=/@u=0@u =0@t0@@=/@t8/@/@/@/@ 0@$0@=/@/@0@0@@F=/@ =/@2h!@h@W/@uh@hH @h&@ =/@ =/@~2h!@h@/ @uh@hH @h&@ }uEE @m E[E E =/@t E 0.YE,@@9E~E,@@jE 0 t E fOEE9E|=/@u ,@@0@@,@@(@@h~j@+@P5@5@@EE8G=du =/@t =/@tV9E~3P7 vWYm/@/@P/@/@/@P/@=/@uѡ/@/@P/@Vj/@0_ /@0|6Y5/@p6Y=/@u=/@uE9u-=4@@t$@},5$@j /5$@X/Yj7Yu}á$@P@ EȋEȀ8txuE 9Eu&E=lu0@/@E=cto=ftJ=lt=rtK=xt&a/@/@ 0@$0@@/@1/@"/@/@0@UPWVS,@@E/@} tuh!@E@ujY=/@u ,@@0@@,@@(@@=/@u#h~j@+EPu=/@@-EE0F=dh!@V!h!@V!jjau3Vh&=$+@uuh"@h&@ $+@wV5/@S*Y@Pj?u3Sh+=$+@uuh"@h&@) $+@S77*/@G=/@mE9E=/@u =/@t50@h!@5@u]u}UWVS}u = 0@t0 9(@@ (@@9(@@ (@@P=(@@E9Et =/@u=/@t=$0@t+ǹH}@EEk}u=$0@t3E/EEЋEЋ;s3r YEE9E|Ƀ=4@@t h!@YEE9E|]u}35 Y;r3$ Y;rUPE= t= u&4@@4@@@%4@@E= |E==/@t E?=/@4@@$@}5$@j\*$@P\@E%@0E$@}5$@EP*$@P@EE%@0E$@}5$@EPf*$@P@EE%@0E4@@$@}5$@EP#*á$@P@EU=4@@t$@}5$@j )4@@á$@P@ U=4@@t$=0@t{$@}5$@j,)á$@P,@4@@4@@(@@@=P$@}5$@j V)$@P @4@@렃=/@u1$@}5$@j )y$@P@ f4@@=(@@@(@@=P~8$@}5$@j ($@P@ 4@@= 0@9(@@9(@@~U4@@}C4@@+4@@$@}5$@j ?($@P @4@@+4@@$@}5$@j 'Y$@P@ F4@@$@}5$@j '$@P @4@@=(@@uUE EE 9E~E- @E 9EvE- @E 9EvEEUWE0@0!@ ǃ0YT!@r}UWV}70@#;u N$@}5$@P&u}á$@P@UWVS*@u G֊ F>t+@r>u:G=/t/Gu 3 G֊ FC}+@r>t"}u uhT!@h&@ *@*@]u}UWVSh!@u\#/@uuh!@ ]u}h|+@5/@ 0@=/@th+@"Y;5,@@~5,@@=/@u=/@u =0@t3Ph+@uP؅t(C=t f+@fC3 +@;G|5/@jjh+@=u]f+@ft׃=/@:+@=.(=/@t+@t+@=.+@5/@#YU0WEj(K(Yu@uhh=$+@uh"@h&@B $+@3ø(@@9@r(-@=+@uh!@h&@+@@8@fGfGG-G$} u = 0@=0@tDEPubE؃}u$E%=uEPuEE؉EEPuEܸ9Eun=0@uEPuE؃}u#=0@uDE%=u4uh"@uh8"@h&@ -@Wp)Y3fEfGEGE%== ti=@tI=Ptt=`tD==/@hP}ucjhF"@aGdGbEGGcEGGpE=t=GmGsjhJ"@PF hPu EЃ}|.PYEЍ@PR YG$=0@tGl!EEԅuEPuE%fGfEfGfEfGfEfG=/@tEG =/@tEG EG uY0@UWVE8E 0=/@uVGt.G=du#Ft F=dt*u}FtF=duۃ=/@t$G 9F u3ƋG 9F ~@뷡@FtPGtPf@ЋrUWV|+@}G=k=/@t8=0@t=/@uGPhN"@=GPhR"@)=/@G=bt=cu4=0@t=/@ujhW"@Sjh\"@B=0@t"=/@uwYPhb"@wYPhg"@=/@ZGPYGPYGPhm"@_=/@ =/@>jh8D@GPK uh8D@hr"@#GPhy"@=/@ =/@~>jhHD@GP uhHD@h~"@GPh"@G=bt G=cu$G%PG%Ph"@ wh"@uG P{ Y0@9G | 0@9G ~FPFPh"@@ FPh"@-Gt h7jWh|+@G =0@u=/@u =0@=0@u =/@tG=duh"@h|+@t=/@uG=luh"@h|+@L=/@tGIth"@h|+@$=0@u=/@uh"@h|+@h|+@h"@3=/@tr=0@ti$tc=/@u 3@Ew$YEh|+@YU;U~ w$h"@w$h"@w$"YG$u"Yu}U4@@E$@EEEEE$@u uuuuu bE4@@E$@EU4@@E$@EE$@u uuuuu E4@@E$@UWVEEExEEP&YGE<%uE+@=-u+@G +@=0u +@G=*uQEEP+@=+@}1+@أ+@=+@uHL3+@G5+@k+@ G0£+@=0| =9~=.u+G=*uEEPUGEE=Ht=Lt=ht=lu EMGGE=it<;=Ut=It=DqEE@ E}~EEPU EEPUE=uEEE=ut }}3EtE؉E܍RPua}tN-= +@u  +@]E=OEEo}EEPUE=ouEEEEEE}t3E䍅`E#E= } NE#E@0 NE#E@WME#EEuE=ou }t>N08=+@u%= +@j0YEP Y-+@ NEN0`E=ct>=XEE@RRu؊RtxEs=d[=uC=stE=o8EEpu"@}}EEb=xWEuE؊EuV!kE G0‰E=0=9~EF8tE9E|Nu؋E+UWV} }u 0E mʚ;E}| EEEE-ʚ;E}E@0G OE R0ˆEE9EڋuOƹ R0ˆƙE @=0tO0E @;wONju}UWV}E +Nj;5+@~5+@= +@~ 0E=-u= +@}GPYN +@+@+ƉE=+@u EPYM} GPnYN}=+@t EPUYM}u}UPWVS=/@t uh"@u * 3]u}Ã}t = @}u =@tq}t@@9EuE@}t @@PY}t @ @333HE=u XE=:uF%uE GM uk U0‹؃}t @@PYE< u;]uE 8}8E@3UPuY@P'YE}u7uhB=$+@uuh"@h&@ $+@3uu'EU=$+@uu h"@h&@ $+@UPE EUEE 9E|ÐUu}YPYUWVS(+@"@GF҈uEk@#@(+@GFGFGFGE@k(#@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW(+@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUWEE EPYtujWR Nj}UuYÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu ÉE)G?}3W )@+W;}WY+Å{EhÐ&>ÐU9Er=P#@u>EL+@PYP#@EH+@ED+@E EURu+ËE9L+@sˣL+@P5P#@wP#@UWVSD+@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuWH+@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVuH+@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u D+@|?=P#@t6SW5P#@ SVW S5P#@Vq ]u}ÊEGFUKuUWVS}u ]D+@E9E|R=P#@tIuW5P#@ uSW uVS u5P#@V ]u}ÊEGCFUMuӐ&6ÐUW}W YjjG P GGg G tg }ÐUW}} WY}ËGGUWV}uWYG uG tO G Dt1%@"u}F @tV Y;5)@rGGG tG )@+GPwG P5 | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}G tG t w Yg E GuaO }8u`H@XD@GW )@GGu}G hL@WR)@G W)@VsYtO @UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐUPWVS}u ]C}G8uO KuO GF҈uE]u}Ð T$tÐUW(E+T#@EEPY=\#@iGQiWkW<E=P+@u=T+@uWEPEP< P+@ET+@EE9E|)E9E}!E+X#@EEPYG Nj}UWVEQUEE}} EQME<X+@E\+@ƙ5`+@Epp+@}| FFFtmnEN}|ۉ5l+@}=t+@ƹtmn=nu fj#@3 uh#@+Fuh#@;}fj#@Gd+@5h+@x+@X+@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph#@ 3WYkUWVS}*@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+u}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W)@UW%@;=)@r3}ÃG uUW%@ WY;=)@r}UWV}tlG t6G t3WVYG PY})@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG )@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G )@+G?}3W )@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G )@+G?}3W )@+W;}WY3UWV}G G u}}&u`H@XD@GW )@*h!YGt@O G W)@GGVYtG uO @u}G hL@WR)@UWV}G )@+G}G )@Wu};7}7𐐐3ÐU)@EEPhTu } E)@3ø6FÐ2ÐU WVSE9ET=)@u<)@ )@)@ )@)@)@)@)@)@)@E@3؋=)@E&;5)@)@E@E=w=)@jY)@@;t?3Ee ƹ3tL3+‰EEE2)@+)@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5)@)@0E+E-)@@;t)@)@)@)@~Љ)@;5)@v)@)@)@ 9=)@u )@)@G(=)@95)@u=)@7tލ;r;l%;UWV}5)@%)@9u5)@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ)@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$)@Ru )@+D$ø!T$)@3øÐ)@ÐT$@@(#)ls 5.3b of Jan 27, 1988(0@(0@p!@/etc/passwd/etc/group&@nu}US[A<%6%s file cannot be opened for reading r-w-@s@xS- r-w-sxS-r-w-txT-p @ @ @ @ @ @ @!@!@Filename %s/%s is too long .Usage: ls [-1ACFLRabcdfgilmnopqrstux] [files] rr %s: ...total %ld r%s unreadable ls: too many files. Only 1023 files will be displayed. %s: symbolic link to file which no longer exists %s not found -> -? %u %5u %ld %4ld %ld %4ld %4d %-9.9s%-9u%-9.9s%-9u%3d,%3d%7ld %-7.7s %-4.4s %-12.12s />* %s %.72s %s(null pointer)%uls: out of memory at %s Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec#@#@W`/Lw/K:/JMFw/GMT TZ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/xL@xL@)@L@N@3.1bS03.1bS0)@L@N@bin/lr100755 3 3 45020 4201163340 7573 1bin/ll37777777777 bin/lf100755 3 3 45020 4201163340 7557 1bin/ll37777777777 bin/lx100755 3 3 45020 4201163340 7601 1bin/ll37777777777 bin/lc100755 3 3 45020 4201163340 7554 1bin/ll37777777777 bin/l100755 3 3 45020 4201163340 7411 1bin/ll37777777777 bin/mv100755 3 3 66030 4213044136 6427 37777777777 L4H," OHT@.textO .dataT@T@TP@.bss,@,@H.commentlÐET,@RU RP P9OjÐUWVS} j/7)/@t/@/@h@5/@g'tPh@5/@P't9h@5/@9't"5/@h@h(@U% /@7@h:@w'u,h=@5/@&uGPE-Ph@@w&u#hC@5/@&u x@MhF@w&u:hI@5/@u&thL@5/@^&u t@MhO@w>&u#hR@5/@'&u x@M9E} h/@w$ }7h/@wP(}#w5/@hU@h(@#j?MY/@%=@hg@5/@%uo9Euehj@5/@r%tj 9Et[ jwwh}@hm@&5/@h@h(@`# jLY9Eh/@EH4*/@h/@EH4Q'/@=/@}0=/@}'EH45/@h@h(@"j)LY/@%=@t3۾EH44-FEH;|tPKY]u}3Up WVDžxh/@uQ||/@%=uxh/@u^&}7|}.u5/@h@h(@"Ã=x@u>xu5/@%=@u"u5/@h@h(@!h@5/@]#ujuYP-%=`f/@h/@u Mh/@u u%/@%=@/@%=@u\E=@uOj/u"/@t/@@/@u(u u5/@h@h(@ u @YHpE p=/uu#YPu h@uYPu h @EP!EE h/@u ;|:h@5/@!u#=t@uu h@_ h/@u -$/@/@;u:/@/@;u(u u5/@hK@h(@hh@5/@Z!ju -#(@PCY=t@/@%Pu 5/@hk@h(@* '@} h'@uY'@'@% '@} h'@LY'@'@ tuуyt"5/@h@h(@ u 0#Y}1u 5/@h|@h(@5/@Yph@5/@" tu uh@5/@u)Vu 5/@h@h(@ h@5/@xhPu }h@h(@u Pu h@h(@@ fY-juEp}%u5/@h @h(@ju =u3dhu lu 5/@h4@h(@5/@Yp@Ysh|#hdPlE ;htYu 5/@hJ@h(@)pG@Yl;@Y/@%=u u YhdPp; hSh^@5/@xuBjJ@Y`/@`/@P`u  `BYp?Yl|?Ydt/@Pu ha@5/@u>uY}1u5/@hd@h(@5/@Y3UPWVS}E ,@ ,@ /uCECG…u ,@9EuE=/uEE ,@t ,@]u}øz@UWV}F=/u>t>uNju}UWh|@5/@u@@h@5/@u@W5/@W5/@h@h(@h@5/@uh@h(@jBY}U =x@tH)!EEh/@u[|/@%=uE=x@uM=t@uD}u>h/@uY|*/@%=@uuh@Jh/@u |S/@%=@u@j/uE}uEEEuu h@h/@E /@=x@9|@u 3|@E=@0E=/t uAYE=|@tME=@t@u3@uE+h3@h4@M7E@Ph4@C4@YE=|@5|@h3@u E =@uD5|@h3@u b uouE=@uj/u EYEEE =/tɠ@u@=@u5|@h3@h@ tE=@t,E=/tuh@h(@ =|@uE=@E =@twh/@u}uYu uU}O9+@u +@9+@t$ju}uYQu 3EU3@jh@>E=t>jj u: jEPu(5 =ufEftEPT5Yu3h@h3@5EPh3@h@h3@h3@ 5YU h@h@0E}t }áL6@E 6@%E6@E6@E6@E 6@EjhP6@S8uhP6@h@h(@ 둡`8@Ed8@Eh9@h@ph9@h@V< hP6@YH6@=9=t.= t'=@t'=Pt=`t='==@tE`8@Ed8@Wjh9@u. =t3f9@ftظYW2Y9EuuhP7@[ =uhP7@h@h(@ =@t1uuhP7@9 =uhP7@h(@h(@K =@EPhP7@hP6@h@h(@ 5H6@hP6@h@h(@ U=9@t7hP7@59@=uihP7@59@h@@h(@ 6@P 6@PhP7@ =uC=9@t!9+@uh@h(@[ hP7@h@h(@B =@t;6@P6@PhP7@ =uhP7@h@h(@ =@th6@hP7@iL6@9H6@u1 6@9@#,6@;u6@46@;ChP7@h@h(@ hP7@ YUjh9@u+ =t3f9@ftظUWV`8@@=P7@vhP6@h@h(@ j\5Y=`8@9@/GGF҈uO=`8@d8@@=P8@vhP7@h,@h(@ j 5Y=d8@9@/GGF҈uO=d8@u}U WVS@9L6@u 5d8@/F9@FC҈u9L6@ta6@(6@;u 6@*6@;t2=9@t4hP7@Y=u"hP7@hG@h(@ ]u}øP9H6@ 6@PhP7@rE=uhP7@h]@h(@ u.Y=@9L6@6@P6@PhP7@7 =u]hP7@h@h(@I D=9@t;hP7@59@#=^hP7@59@h@h(@ jhP6@X2E=uhP6@h@h(@  6@PhP7@E}%hP7@h@h(@ u-Y=@9L6@6@P6@PhP7@" a}$hP6@h@h(@5 hP7@ YTWh,@u1 ;t$hP7@h@h(@ hP7@ Yhh,@u ( uu,Yu,Y=@h6@hP7@K UW9@@9H6@6@=E=9@% 6@;uG6@;uEu׃}d8@@-P7@E@9L6@uh9@x'Y@Ej ,Ytu,YGu*=@th+@h(@@}á9@G=9@f 6@ff6@fGhP7@w&@9L6@uhU@w jh9@w 뙋G9@UWV3u&Y=~uhW@h(@ jZ0Y=9@t@ht@P7&uP- PB Yf6ƅ3E8=/uGGE<8utVuP h{@P%jP jhAuO uPq%h}@Pe Pu} u Ygh@P0 PP}dP3%YP( Yu Yuh@h(@| j.Y3(.Ðv.3Ð^.3ÐÐ 6.3ÐUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vu+EtE+E؋E)F>}3V +@+V;}V/(Y}u +gEEvÐ&:-Ð&-3Ð-ÐUWV@@9+@s +@<@u#YtVujG, jh@j6, W"YPWj#, jh@j, u}ÐUWVSEPfYE =ruEEE =ruEEZE.@?t-.@P&YT/@rڋE =ru3EV&Yu&YujS S&Yjuh#@h#@h"@jY9Eu 3]u}ËE.@Si&Yu VUWVE@ u"Yjj*Ejj*Ejj*EEPn!Y;4.@tu9+@tكuEujv*uji*uj\*.@Eu}Ð>*ÐUWV} !t?F EF F F3҉V+@=at=rt=wt3u}ÀN jju% N G=+uf N ȸ**L$Q3ÐUPWE E(@u(@t* (@h(@uu (@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_ø&B)ÐUPWEEE@ uE@ t(EH uuu / E@ t }ËUWV}uW"YG uG tO G Dt1'@"u}F @tVY;5+@rGGG tG +@+GPwG P1 | GG듸9tO O G tg aUWEEEEEE2EEEPuu  ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_Ð&&ÐUEu$juh#@h#@h#@ujYjj&Ejj&EEPYE;Et 9Euuj%uj%9EuEËED$Pt$Ð5,@t$ t$  Ð;%%t3ÐV|$3O|$ L$Oϋt$ +D$^Ð!~%ÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_ø$3ÐV|$3O|$ ыt$ D$^ø<$Ð $3Ð$ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  +@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVcYF Dt*F uuj E+EP` tV[YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl%@Dž\9PtP؉PNKPPoYh~PW =uh~Ph(%@ 3W YkUjuuuu u#Ujuuuu uU$WVS}T/@ET/@EP'@s3UtE]T/@EX'@E`'@E'@r5E'@r'@E'@AE'@s6EE]@)EE'@r݋EE 9P܃}t؁T/@/@v/@E'@te/@r05}fEf fEmE]mE܉E@0Ee '@];r&=5|+T/@uT/@1}tCF0N<9T/@]Ћuԋ}ËEE0]@EEsEE 9P EEEE'@MU]vEu}fEf fEm]mE܉EFUR0EMm]E'@E5'@]UWVS}}~bG %=utG9Gu?uG Du WfYu)3u!G +@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WRY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu1 )G?}3W +@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS},@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð L$tÐUW'@;=+@r3}ÃG uUW'@ WY;=+@r}UWV}tlG t6G t3WVYG PY}+@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG +@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G +@+G?}3W +@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G +@+G?}3W +@+W;}WY3UWV}G G u}}&u9@=@GW +@*h!YGt@O G W+@GGVYtG uO @u}G A@WR+@UWV}G +@+G}G +@Wu};7}7𐐐3ÐU+@EEPhTu } E+@3ø6ÐÐU WVSE9ET=+@u<,@ +@+@ ,@+@,@+@+@+@+@E@3؋=+@E&;5+@+@E@E=w=+@j Y+@@;t?3Ee ƹ3tL3+‰EEE2+@++@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5+@+@0E+E-+@@;t+@+@+@+@~Љ+@;5+@v+@+@+@ 9=+@u +@+@G(=+@95+@u=+@7tލ;r;l%;UWV}5+@%+@9u5+@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ+@Nj]u}WV|$ t$L$Njʁ^_øÐT$,@Ru ,@+D$øT$,@3øvÐ0 PNL$0 P:L$0+L$0L$0 L$0 Ã+@ÐT$X@@(#)mv 5.3b of Mar 2, 1988cpmvln%s: command must be named cp|mv|ln--defaults to `cp' cp-rcp-sln-fmvln-sln%s: %s not found mvmv/usr/lib/mv_dirmv%s: cannot exec() /usr/lib/mv_dir %s: %s not found %s: cannot access %s %s : <%s> directory mv%s : <%s> machine name, %s exists %s%s%s/%slnln: %s exists. Use ln -f to overwrite existing file %s: %s and %s are identical cp%s: %s: %o mode %s: cannot unlink %s cpln%s: different file system %s: can't access %s for link mvmv: cannot follow symbolic link. mv: cannot make symbolic link from %s to %s: cannot open %s %s: cannot create %s %s: bad copy to %s mvmv%s: cannot unlink %s .cp [-f]ln [-f] [-s]Usage: %s%s f1 f2 %s%s f1 ... fn d1 mv mv [-f] d1 d2 %s is a directory %s/%s%s: Cannot find full pathname. @@/pwdrdestination must be an existing directory couldn't make directory %s %s exists and is not a directory Found recursive hierarchy at %s, not copying cp: could not open directory %s ...cp: %s does not exist cp: %s: funny file type %06o cp: Unable to chmod %s cp: Unable to chown %s cp: couldn't preserve link between %s, and %s, trying to create instead cp: Only super user can copy special files. cp: Unable to create %s Unable to chown %s cp: could not create special or name file %s cp: file name too long %s cp: file name too long %s cp: cannot remove %s cp: could not create name file %s Unable to chown %s cp: couldn't preserve link between %s, and %s, copying instead cp: cannot open %s cp: cannot create %s cp: read error on %s cp: write error on %s cp: Out of memory. Link information lost /directory name too long: %s mkdir ./..couldn't make directory %s Unknown error: @@@ @0@H@R@l@~@@@@@@@@ @@"@4@C@S@b@s@@@@@@@@@@ @7@H@c@v@@@@@@@@(@L@f@o@x@@@@@@@@ @"@+@4@H@Z@h@@@@@@@@@$@-@6@I@R@[@n@w@@@@@@ @; @y @ @ @ @ @ @ @ @ @ @ @ @!@ !@!@ !@*!@4!@>!@H!@R!@\!@f!@p!@z!@!@!@!@!@!@!@!@!@!@!@!@!@!@"@"@"@$"@."@8"@B"@L"@V"@`"@j"@"@"@"@"@"@"@"@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFB.88N.8p78888m.*.86.Z.8..........8888888888808M58888888888888888[08888888888u7.02M5..88.88E088878/88[0-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@A@A@+@A@PC@3.1bS03.1bS0+@A@bin/mail102755 3 6 64464 4201130576 6746 37777777777 L`! Z H@.textZ .data@@ [@.bss$)@$)@H.comment$iÐET$)@RU RP PmZjÐUWPh$%@a$h@(0Yh@3YS:@=:@u5 PYu :@$@:@h:@$Yt+=x:@uh@m3Y:@x:@PYY3:t4hWjX=tXG|h(@h@(N|:@=|:@uBh@h*@h4%@ =x:@uh@2Y:@x:@PYYPPh@ hh@qE =rt'9EtE P=-u u uj u u =x:@u}h@.2Y:@x:@PhXYUjuW=tu uWU=P#Y5:@h@h@6 E P=-E PB=qu@E PB=pu:@@E PB=fu*9EE ph@KE MeE PB=ru :@HE PBPhL@h4%@ =x:@u%h@0Y:@x:@PWYE M9Ehe@h@K:@=:@uhg@h$%@h@Y5|:@5:@5:@2MY5|:@&MY=:@t5:@5t:@ :@hq@h@-K|:@:@EE=:@tE @+EHEh:@!Yt E}tjh$%@ut E=:@h:@ Yhs@h$%@ph$%@LYh%@hh/@ /@=mt46=-=!tk= .E/@= /@= thj@YEEcE/@EPYh/@.#YuYh{@~YE=+:=^t%=?8!ME=dE0@d:@E/@=q=st]0=p=nE{=q~=xt=wt:@U=yurE/@= t(/@= th>@lYEE/@= tuhL@hG@h/@ E/@Fhv@h4%@Eh}@h4%@h@h4%@h@h4%@h@h4%@h@h4%@h@h4%@h@h4%@h@h4%@}h@h4%@kh+@h4%@YhM@h<:@bG:@=:@uh<:@hO@h$%@ E8/@=wuP5:@u 5:@HYuh<:@ Eq}uJE0@d:@EQh<:@uztEuh<:@f Eu҃}t EE0@d:@E@9E_=:@U$WVSEjjPjjPjjPh@w YEPh@*@0@9E,h~@h@E:@=:@uBh@h@h$%@ =x:@u h@|*Y:@x:@PPYj@40@5:@ 5|:@$GYh@h@RE|:@j@40@5|:@q 5|:@S5:@Y؃u5:@FY5|:@FYh@h@D|:@@@@U0@Eh@h@D:@=:@uBh<:@h@h4%@k =x:@u h@P)Y:@x:@POY33"0@=dtj5:@W FG;=@|5:@EY}th@h$%@=:@t5:@5t:@ :@]Ћuԋ}UPE3@0@Bh.@Yt@@U0@h.@KCYEu h.@ uhh.@ u@U0@UWV}jE40@5|:@k E@U0@+0@Et u VEM=~5|:@Y uσu Ph@u  Guh@u 0u+u V\5|:@GYu V@EEM=փu tu 5|:@YPEu}UWS]}  }7 t2 t-=t#Wj^ WÍ@@P ]}=u#WjD WjE WjL WP UWV}@GF;t 3u}À>uUhp:@Yhp:@YP5:@h@h@5|:@35|:@ Yp:@:@[.@=.u.@= tZh.@TYt5|:@h@< 5|:@h.@) :@h%@hh.@, u5|:@h@ @0@5|:@K Y0@5|:@Y=:@t5:@5t:@g:@PEpEP] UhujuF=tuuFh@h4%@=@tjh:@q=x:@u1h@ Y:@x:@PGYU=x:@u'=:@t5:@5t:@:@h@ Y:@x:@PFYU =:@u =:@tÍEPu|EtXjYUR<;|Fuh@h4%@ x:@=x:@uMh@Y:@x:@P8FYE%:@Et:@E PuXU=:@t5:@5t:@:@UEEE U EUE EE U<uEEU EUE EEU<u܋EUUWV}u F= t= t= tu3u}ËG֊ F= t= t= tuUWVS:@udj5 @Cff|%jh:@P9 fPy?Yf 3]u}ÿ:@= uG?u:@U Wh@aYhKYh@9E}tcWYjuu u:Yh@PR PKY| 9u 3yYUuYPYUWVS()@@GF҈uEk@*@()@GFGFGFGE@k@@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW()@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐJB3Ð2B3ÐUW} }WEP9}ËGGU/Ð/ÐUWVS} 3G %=utG9Gu!?uG DuW:Y 3G 8(@UG u;u6YEPuG P@ E]u}W9Y=u~GEU+Ѕҋ~Sjuu4Et E+EH؋)G?}3W 8(@+W;}Wf;Y}t*G @tWy9Y=u ]VEgUWt7uB uNj}ÐUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P; E}|EE}øU$WVo|Yjhh@>|Djk$PV: j$EPV3 =$tVA:Y3uԋ}V0:YE܄u3jEPhD)@H L)@D)@ŐUWV}t9~u=Ƌu}U=@uh@ht@3@5@,YU=@t5@\5Y@UW}G?t=:t = u= u ?tGNj}U=@uh@ht@.3@u35@YUWuhhP)@_ =R-@WQY=V-@WBY=:j EPW EW^2YPj:W1 9Eu`WY}| `9E~aEZ-@t4=:t*j EPW EW1YPj:W1 9Et3}WY}| `9E~aE^-@=f-@=j-@W^Y=n-@WOY=r-@W@Y=V-@G?t =,u?tG=b-@R-@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vukEtE+E؋E)F>}3V 8(@+V;}V6Y}u +gEEvÐUWVSEPfYE =ruEEE =ruEE Ex-@?t-x-@P*6Y@.@rڋE =ru3EV5Yu5YujS S5Yjuh@h@h@ j Y9Eu 3]u}ËEx-@S5Yu VUWVE@ u?1Yjj:Ejj:Ejj9EEP&/Y;4x-@tu9)@tكuEuj9uj9uj9x-@Eu}Ð>9ÐUWV} /0t?F EF F F3҉V8(@=at=rt=wt3u}ÀN jju4 N G=+uf N ȸ*J9L$Q3ÐUPWE E0%@u0%@t* 0%@h$%@uu 0%@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W/YjjG P3 GGg G tg }ÐUW}} WY}ËGGUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P2 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P\2 ECG t8W..YG t g GGuu G P2 E9Eus3lUWV}uW0YG uG tO G Dt1%@"u}F @tV-Y;54(@rGGG tG 8(@+GPwG P* | GG듸9tO O G tg aUWV}G tG t w3Yg E GuaO }8u:@>@GW 8(@GGu}G B@WR8(@G W8(@V 0YtO @맸.53Ð43ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$EE"@u5GEEE"@uE=+t =-u EGEu309Et "G=xt G=XuEE"@tEEE"@t E-0#EE"@t E-WE-7E;| 3]u}Ãu;09Eu1GE"@tG=xt G=Xu EEE"@t E-0#EE"@t E-WE-7+EGEE"@tEEE"@t E-0#EE"@t E-WE-7E;|} tE 8}tUEu$juh@h@h@ujYjj0Ejj0EEP&YE;Et 9Euuj0uj09EuEËEU5$)@E Pu Ð;00t3Ð T$tÐUW(E+@EEPY=@iGQiWkW<E=@.@u=D.@uWEPEP< @.@ED.@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<H.@EL.@ƙ5P.@Ep`.@}| FFFtmnEN}|ۉ5\.@}=d.@ƹtmn=nu f@3 u@+Fu@;}f@GT.@5X.@h.@H.@u}Ëƹtmn)EFƹtmn9E}"@Dž\Dž h~PW =uh~PhD"@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}.@E.@El$@s3UtE].@Et$@E|$@E$@r5E$@r$@E$@AE$@s6EE]@)EE$@r݋EE 9P܃}t؁.@.@v.@E%@t.@r05}fEf fEmE]mE܉E@0Ee %@];r&=5|+.@u.@1}tCF0N<9.@]Ћuԋ}ËEE0]@EEsEE 9P EEEE$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E$@E5$@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 8(@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 8(@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}$)@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W8(@UW%@;=4(@r3}ÃG uUW%@ WY;=4(@r}UWV}tlG t6G t3WVYG PY})@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 8(@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 8(@+G?}3W 8(@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 8(@+G?}3W 8(@+W;}WY3UWV}G G u}}&u:@>@GW 8(@*h!YGt@O G W8(@GGVYtG uO @u}G B@WR8(@UWV}G 8(@+G}G 8(@Wu};7}7𐐐3ÐU)@EEPhTu } E)@3ø6ÐÐU WVSE9ET=)@u<)@ )@)@ )@ )@)@)@)@ )@)@E@3؋=)@E&;5 )@)@E@E=w=)@jY )@@;t?3Ee ƹ3tL3+‰EEE2 )@+)@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5)@ )@0E+E- )@@;t )@ )@ )@)@~Љ)@;5)@v)@)@)@ 9=)@u )@)@G(=)@95)@u=)@7tލ;r;l%;UWV}5)@% )@9u5)@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ)@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$ )@Ru )@+D$øT$ )@3øÐ0D[NL$0D[:L$0+L$0L$0 L$0ÃÐ)@ÐoT$Ì@@(#)mail 5.3b of Jan 27, 1988/tmp/maXXXXXX/usr/spool/mail//usr/spool/mail/xxxxxxxxxxxxxxxxxxxxxxxdead.letter forwarded From @???wmail: cannot open %s for writing mail: unknown option %c rNo mail. r? usage q quit x exit without changing mail p print s[file] save (default mbox) w[file] save without header - print previous d delete + next (no delete) m user mail to user ! cmd execute cmd illegal mboxamail: cannot append to %s invalid command ! rmail: can't re-read %s arwmail: can't rewrite %s new mail arrived remote from %s %s%s %s> rmail: cannot reopen %s for reading wmail: cannot open %s Mail saved in %s null name mail %suux - %s!rmail \(%s\)uux - %s!rmail %swmsgsmail: can't send to %s amail: cannot append to %s %s busy; try again in a minute /etc/systemid/tmp/mmsgsXXXXXXw/bin/cat %s | /usr/bin/msgs -sDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/utmp/etc/passwdrr/bin/shsh-c/bin/shsh-c @ @W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF7AA7AAAAAA77A77A-8=8=8=8=8=8=8=8=8=8AAAAAAAAAAAT:A>AAAAAAAAAAAAAAAA9AAAAAAAAAAA\8T:n<>W8\8AAP8AA9AAA)AA9AA9-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@B@B@4(@B@lD@3.1bS03.1bS0bin/mesg100755 3 3 33270 4201130602 6727 37777777777 L! , @ @.text, .data @ @ ,@.bss@@@ .comment6ÐET@RU RP P+jÐUEEEuY<@u E9E~h@5<@$}#h @uh? @h@ j4+YY9E @th @hYEh @QYrE=?te=nt/=yuZhu5<@} hI @5YY2hu5<@} hI @ YYEEh @u uh E=m}t#h @uh? @h@ j8*YY @9E~wE  @ =nt/=yuWhu5<@} hI @jYY2hu5<@} hI @BYYEE}t#h) @uh? @h@T j)YYu)YUuh? @h@( jb)YUu5<@.}#hI @uh? @h@ j&)YYÐ)3ÐUPWV9 @ueE9 @}#E  @ =-u E Au u}h @E  @4u  @΋E  @ @= @:tWu= @tOLjEE E 0YPE 0j( h @YPh @j' jEPj' E  @ @@ @u @ @?F=: @@U @t @@U  @ @ @@ @;E|l= @tOLjEE E 01YPE 0j+' h\ @YPh\ @j' jEPj'  @?GE  @ @ @ @8E  @ @@ @u @ @ @UPWE E@u@t* @h@uu% @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVu Yt8EPu|%E%= ujh @$} 3u}þfEft EU;uuh @h@EPh@EPh@|=EU;u1E%= u!t EU;uWY@\jEPW =TjjW NuWY3 2$3Ð$3ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@EH@r5EP@r\@EX@AEx@s6EE]@)EE@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE`@MU]vEu}fEf fEm]mE܉EFUR0EMm]Eh@E5p@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@H@GW @*h!YGt@O G W@GGVYtG uO @u}G P@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裈@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$ @@(#)mesg 5.3b of Jan 27, 1988cannot statis y is n ynusage: mesg [-y] [-n]usage: mesg [-y] [-n]mesg: %s cannot change mode: option requires an argument -- : illegal option -- --/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFb ""n """"" J "V z " """"""""""" "m""""""""""""""""{ """""""""" m "" ""e """" ""{ -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@`@`@@h@ @3.1bS03.1bS0@h@bin/mkdir100711 3 3 42734 4204626471 7120 37777777777 L-" L/ @.textL/ .data@@0@.bss%@%@ .commentEÐET%@RU RP P/jÐU0EEEEE7E=?t*=mt =puEE졔@EEEh@@u u E=u9E|}thT@h!@jH.Y@)EE E E UE܉EEEuEj/u Euԃ}t?uu w%@4@uh@h!@xENj/u Eu@jh@ %@4@uh@h!@$EE9EuE5juIu E9%@tEE}w}Ej/u Et Ejuu-E$Eu!Yuh?@u!}u9%@t }tE/uuU!Eup!YEud!Y9Et&}u]uP!Y~Pu uE=u uEEu!YEEU/u uEu YEu Y9Eu븐/ÐUPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWuu=@tOLjEE E 0 YPE 0j( hh@YPhh@j( jEPj( E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0YPE 0j' hD@YPhD@j' jEPj' @?GE @@ @@8E @ @@@u@@@ÐP:'ÐUPWEEE@ uE@ t(EH uuu  E@ t }Ë.&3Ð&3ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_U WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}t!#ÐW|$3OъD$ u@_3_ø<#ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSqYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  $@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}%@E%@E!@s3UtE]%@E!@E$!@El!@r5Et!@r!@E|!@AE!@s6EE]@)EE!@r݋EE 9P܃}t؁%@&@v&@E!@t%@r05}fEf fEmE]mE܉E@0Ee !@];r&=5|+%@u%@1}tCF0N<9%@]Ћuԋ}ËEE0]@EEsEE 9P EEEE!@MU]vEu}fEf fEm]mE܉EFUR0EMm]E!@E5!@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G $@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W $@+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}%@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð* ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW!@ WY;=$@r}UWV}tlG t6G t3WVYG PY}%@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG $@9GGGU= uQWY=E}G %=u7EEjEPG P7 =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G $@+G?}3W $@+W;}W{Y~'SVG P ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G $@+G?}3W $@+W;}WY3UWV}G G u}}&u &@(*@GW $@*h YGt@O G W$@GGVYtG uO @u}G 0.@WR$@UWV}G $@+G}G $@Wu};7}7𐐐z3ÐU%@EEPhTu } E裬%@3ø6&ÐU WVSE9ET=%@u<%@ %@%@ %@%@%@%@%@%@%@E@3؋=%@E&;5%@%@E@E=w=%@j Y%@@;t?3Ee ƹ3tL3+‰EEE2%@+%@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5%@%@0E+E-%@@;t%@%@%@%@~Љ%@;5%@v%@%@%@ 9=%@u %@%@G(=%@95%@u=%@7tލ;r;l%;UWV}5%@%%@9u5%@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ%@Nj]u}WV|$ t$L$Njʁ^_øVÐT$%@Ru %@+D$ø!T$%@3øÐ%@ÐT$ @@(#)mkdir 5.3b of Feb 12, 1988m:p?Invalid mode. mkdir: usage: mkdir [-m mode] [-p] dirname ... mkdir: "%s": %s .mkdir: "%s": %s /mkdir: "%s": %s mkdir: "%s": %s mkdir: Failed to set effective user/group ids to real user/group idsmkdir: Failed to make directory "%s"; %s //: option requires an argument -- : illegal option -- --@@@@@,@6@P@b@t@@@@@@@@@@@'@7@F@W@k@@@@@@@@@@@,@G@Z@v@@@@@@@ @0@J@S@\@e@}@@@@@@@@@@,@>@L@d@@@@@@@@@@@-@6@?@R@[@d@@@@@@@]@@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@@&@0@:@D@N@g@q@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF  9IIIIIIIII`h`zch\5-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@.@@.@$@H.@/@3.1bS03.1bS0bin/ln100755 3 3 66030 4213044136 7612 1bin/mv37777777777 bin/cp100755 3 3 66030 4213044136 7603 1bin/mv37777777777 bin/sh100755 3 3 144460 4220304211 6432 37777777777 L?," | L @.text| .dataL @L @ L@.bssX(@X(@.commentXÐETX(@RU RP P-jÐUWj-YEH,@X(@%&9H,@v }uYUPWVSE@%E5L,@uLt+;r4ǣL,@;L,@v L,@L,@ F]u}Ëދ%;wEEtWYzUWV=X,@uhYT,@P,@\,@9`,@tF\,@\,@@%`,@-d,@5d,@P,@ׁ=P,@x @EH!EP,@L,@P,@UP,@P,@T,@B@\,@9X,@t(W5X,@W\,@ǣX,@`,@u}É=\,@UWEt;=P,@s;=T,@v %}ÐUWVE@%=X,@X,@ƣX,@\,@Nju}UH,@+X,@=}55x @Y=u h@SY9x @s x @X,@UX,@UWV}G5X,@G%\,@X,@Ƌu}UW}5d,@Yd,@d,@9=d,@w;=`,@vǣX,@\,@WTY}á`,@UH,@+`,@=~ hYUH,@+X,@=}55x @Y=u h@RY9x @s x @X,@Pu}PYÐU=h,@t uuNYUWj =h,@t u|u*YYE E GGNj}UW} t}u 2j =h,@t u&uYYEE GEGNj}UWVS}u Y 9l,@uE t#l,@;uE ux l,@=&t=;t)=u^ uY[tVh< E PWhtSVj0 u WV YuƋ]u}UWVu_Y#jUYPWtP t)&9l,@u3u|9l,@tNju}UWfp,@Et!fp,@= tl,@jYtb^9l,@t |9l,@uHWhEjYPh(EPuj Pj}ËUWVS} fp,@= tl,@9=l,@u 3]u}j =h,@t uukYY=h,@t/t,@CPY@PYt,@@PCP)t,@=l,@uQ=)t|9l,@t|9l,@tjj"F;9l,@u WYFWYFU WVSf}t jY3l,@=(V=8====s=j=h,@t ucuYYEE@jh$=UBjh(UBl,@jhj =h,@t uuYY؋t=h,@tt,@@PYt,@@Cfp,@= tl,@hY 9l,@u"(PMYCp,ul,@jDY3UB Nj]ԋu؋}j=h,@t uuYY؋C t=h,@tt,@@PYt,@@Cfp,@= tl,@= uut<x,@j|YC x,@ 9l,@t;9l,@t 9l,@u<5fp,@= tl,@hYj9l,@u!(PCj =h,@t uutYY؋9l,@uP`jhCjh!}CVjh(iCj=h,@t uOuYYjj)8CSjfp,@VYWjgwu3EE 9l,@a|,@=(,@E|,@:=)tPj =h,@t uxu&YYEE=h,@tt,@@P|YUBEt,@RPfp,@h,@( fp,@= tl,@jYUB h,@E9,@,@EXj=h,@t uunYY؋sCE=h,@t4t,@E@PY@P~Yt,@@PE@P$t,@E=,@t}t EUEEUEE,@% E!f}t sYC=l,@_EC E=x,@=h,@t,@@{C@E8E=$~s jux iEPUEU9Pu,@P,@,@E䣀,@5US fp,@: = tl,@UWVS=,@l,@=<tK=>t=<t5=>=,@u >9l,@u@@8=&uπ=>u  |,@ tHj=h,@t upuYY=h,@tt,@@PYE]u}át,@@FF>t,@F5,@ uYF U tUWE#l,@tE;l,@t}UWEt@Q9Euh@NY}Et uNY 9Eu h @NYuNYǃtE9Gu7gNYU+Nh@RNY,@ uh@;NYP @pOYh|@"NYj`DNY=l,@t 5l,@$t,@@PQYj'NYh@MYj NYjEYÐUWV}hWݘ u&5x @>Y=u h@{EYu}Ãu,@tE<,@tf ,@f } @u,@UjZYjRYjrYjBYj:Yj2Yj*Yj"Yj Yhj j Yj YjYjYjYjYUWVu ubVE4,@YE,@E @tEf$E @4 @u~Yh( @h@C+jV^=u3u f u @Nju}UW}} @u W@YuhW}UW}WYu4 @Wޖ}UWVh4,@t>tNWE4,@YE,@E @tEf$E @4 @upYf} @Ouf,@u}UE4,@uYE,@E @tEf$E @4 @uUPWVf%,@F} @t7f$} @,@t ,@EjV5E,@,@Ouu}ÐUWV EX,@jYqh\ @-YEt%Ep 7YPhb @uE}~usF,@u -@EU С-@+Љ-@ -@h-@規Y-@0h-@贔Ph-@衔PJY-@hC @h-@} -@hh@h @ ho @h0 @ 5< @(JYT @hs @YEhz @u f8 @f8 @f5-@W5Y=-uTh@hd@'6P @|WYh@hd@6P @|WY%,@}tu4-@ ,@F>t =ru=rt rF=-@t,5-@BYP @jPY@u},@t3 5-@BYP @P @8t 5-@=Y -@UWEEP @8~j0pP @,@u1,@5l@)YtxP @0Ytgt@@Ph @ h@h @  ,@$jY=t @t5l @Y"5$ @YE ,@%,@h-@ʌYtf}tP @0^Y}|,@3-@.@h,@x,@,@P @8|0?Yj;Y,@,@,@tTP @xuIfxuB=\(@t#EPYE+E;T @| EE5 @EY ,@f,@_-@P @fx%,@5.@jjj P  P @,@f P%U,@tP @xu 5 @DYU胐PEY-@hC @h-@_-@UWV}u |'VȎYVjW: W赎YjjV& u}U,WV=\(@X @E}3fE&=:t=%uuG fE?uՅtE8tUEPu|B}t2E8t*9Et#tFPCYj DY h@CYEUE8ut%f}t:GE?5ű}UPWV}5X @YE\(@t= =:uFG?uP'YX @EEENuu}ÐUWSE@E,@,@3= tuã-@é8@>#éu~@tm7E;uC l,@=< E<-u ,@xE |,@hE |,@ãl,@PÅl,@u l,@=,@t1éu'@0t5,@t>Y,@fp,@l,@]}déu@u=#='u}G=\uUG=u E ,@éuX@HuEéuT@@tC]!= u=\uG؋Gӄ҈t U;uzé6@>!WYE@uE@X@@u ,@ |,@EPuNPU©u>EX@t,=>t =<uE-0,@;fp,@ft'5X@h@E@P_ l,@ Et,@l,@\GG= ut ='u;}"G"GUS%éu@uË]UPS04E=\u"= t -@E]UWVS=|,@t|,@|,@Ë]u}Ã=-@t-@-@֋5P @F9F tVF F u~tFF08Yt2 ,@tP @xu P>Y u8F3f~u>}2fF26WY2fF7FF ljFWUWV=P @,@t4j !>Y,@tG=,@t,@P5Y),@t=.@~j =YG PGP7, }f=,@nƋu}ÐUWV}u FG҈uNƋu}UPS]E;u ]ËE E Eu3UWV}u Fu 3u}G;tO+UWEtG8u+E}UWVS}u ] F׊ GK~?uƋ]u}ÐU WVS}u tUtOEEHE7EEE4W5} EHE ~E@EE9E~3]u}ËEDUWV},@tLM CGPk/Yu V:?,@tV;Yt j ;Yj ;Yuu}UWV}uvX@@teGuX@Hu==u=uY=GE FE tljF Fu}WVRh@u2UW}7_Yu Y}UEx uu uUE@th@p12q,@t6 @9Eth| @EpruDh@Ep1/E@t#pjfYusYE@@0 @9Euu ;YT @u E@ P EH @9Eu cd,@t` @9Et @9Euރ=t @uՋEp ,YUWVSd3EE0Y`\,@+X,@\W4Yj$zYPu3Yjjj =uG 5 @Ptéu@0tȋE8t5 @Pu#é@0\,@X,@\P`X,@\\,@E8tE0Y` Dž`é"@0 =\u9ء\,@\,@é @0\,@X5 @XHXPu݋X@\,@hd@`E8tE0Y` Dž``uP @fxtjG +GPj +2ƋLPT5 @Péu@0tUu 8Yh-@uUW}t%uYPYWubNj}3UPWVS}5x @WYuAh@W.1vWtEu Ƌ]u}Ã}}F؋3uj1YF3WRYFF FFƉUW}uX@@u"3}uX@HtG?u߸UE`(@5x @YUW}t7YW`(@YwY}UW,@t=,@t,@P_-YE@t0px8Yh @m8YEp:pYh @V8Y}ËE@ tEp98Yj=}7YW*8Yj n7YUWV}5\,@wvVh @fVw XF+X,@P@Yu}UWV}wt4twYw YGw YwqYG uG td(@u}UW}Gt$h@J7Yj 6Yw97Yj }6Y}UW}Gt$h@7Yj U6Yw7Yj D6Y}UW=X(@jǃ0 ?u}UEx tuYh(@h(@UWd(@h*E`(@5x @YYd(@@PY=h(@h+E`(@5x @dYYh(@h(@Nj}UPWV}5x @WYu.3u}vWEu}}6vuUWV}WYFth@W* @t @t @t @t0 @uh@W),@t h @W"uh@W)FtW&^YVjv fYv]YF3F F,@t` @u5$ @4Yu}Á @u=t @ujYݐUPWVSu 9E~BF=-u5~G=-u FMG%,@9EF=+~v @C;t ;uh @PuJ;u@- @,@# @t*- @ @!,@=eu .@G?u9E-@=,@t- @!- @,@# @t EEC;uڋEE]u}û @C;t ;u;u[h @E 0uh @P- @ @ ,@,@tn.@b=cu(9E~=-@uF-@FM0=cu=9E3=-@u*h @E p&G?FMh@E p&UWV}3Fǃ8u!Vul(@F-@u}UWVl(@t#NuF 7OY?uV@Yu}UPWVS3EtO3CHCE;l(@u9Et1Ë]u}Ã}uC 7Y?uSYUWVSE @ P0YuGG؉-@ƃ09YӉE M uÃNj]u}UWVS3Et13;l(@u CC 71Y?uS"YƋ]u}U=t(@t=jjw uu w jjw uwYEE u-@@EE-.@E.@w YPYEEܣ.@.@7=A,@}tu|(@oEG5,@YE/=}pYE,@E@th@p ,@t4 @9Etht@EpLuh@EpE@t uUY)Ep YEp}YE@ `= .@tEPEUJHHpVHY,@,@,@t=,@t,@PYuY.@ ,@,@]u}3YE=}}| 9Euh@3Jf}t uY8uE̍,@PE8t uY uXY;wẼ<,@t,u Yh|@YE4,@Yj 2YE̸9E|c3YH;uG3YE@t h@YY ÉH;ukE Uă0‰Ẽ}} h@ YEEE=0| 99E~Ã}u }h@YEȍE-0EȋEEE=0| 79E~ubYuMȋE%@0PYm}}j YJ3FYuhD@3;u"3DGY;u3Y;uwEPY_R 9P(@u eE= ~8P(@= t= uh@Yh@Y h@Y,@t=,@t,@PYu `Y^j_Y`|(@=Y=|(@t ,@ t5|(@GYj Y tE0]cYEpQcYuj5|(@, G5|(@h$.@$ ,@@,@9Eu5,@YM }u ,@@ t jjcjjcj\YtjE0EpobYtE0\bYjEpt=.@ujh@YPjw6}tuE Pw 2;t-.@jw jYEPSauu w EPYEPuujwYuuEPuu w=puaaYuXaYYEE0uTujw =.@}.@t3f.@E8t f.@ft=.@~ .@t3f.@ .@}uY .@ujww E=.@}.@t3f.@f.@fu7jjw: u3EP9Eu39Et=.@~ .@t3f.@ .@E,@EZE@P"YEPu)uuYuuuujEp EEU}u}t EPU}uUdPY}t;uYE x,@%Pjjj P Ã} |u YUW3h@EG4Yj YE<uj Y}ÐUWVSf(.@fEE0p"Y%E?U,@E} t2(.@U,.@uYf(.@f(.@҉0.@t?EPlYSWYP",h< @Yh< @0\YƀtNWh@uu]YWAY؃ |hP@W4 kS]TY` u WYM,@th@W 1@t jW%^|jjS] WPY؅| uSEP U}uE]u}UPEEEE=/uuj/uߋEUWVSuj/t.,@th@u0 ]u}ød@ @ul@WYH؃~FC=:u8-=:t&SWV\ :@P[YWY{UWVS}u VW,j5\,@\}uڋË]u}UWVS}蠵 CF>t =:u;t/C=:uFt3u CF҈uNj]u}UWV}F>t =:u=:uFt Ƌu}3UPWVu,@uy(@D@6BY(@fE f~2E EWwYE 9EuVW56YVW!u5(@6=u}UWVS} 7u؋5\,@VY,@t=,@t,@PaY5(@WVW P(@===t= = .@,@-@-@.@3P @8t0YYV< YP @VYWjYjh-@7Vh,@Vh @V h @V(@4@Ë]u}UW(@ )@(@;v)@}UW(@}t'?u9)@|)@E}UWVSEE)@EuYoE(@EPXY=,@t-,@} tF9;u )@EE(@;vԃu&} t (@F 9P(@E%EE%uh@ Yu <\@th9}u ,@u WYj Y~h@ YV 4\@ YEt h@ Yj Y ,@u}u}tt EEE E;}u =)@}t,@t u)Y.@ ,@E,@,@]܋u}ÃE(@;w9Eu9Eu )@UPWVSEf/@Et0}\uf/@FtGGFu]u}UWuYWYNj}UWVS.@%E@PϯYEЋ0G6:Y?tt SVށűƋ]u}UWVSE +EE=~ ]u};u~uHESE+EE3A8E3E4XEUEE+}F;u|EEuwUWVS3Et"{jGPCYP?uƋ]u}UWVS}EE]u},@t=,@t,@PYa@2\uFӈF׊ G5 @S)uFӈGuġ\,@@;u luuOVUY,@ujFPtE V>YE.@ .@"U)@U=T @t`T @8tVj3QY/@h/@;QY)@Mf/@Jf/@jh/@urYP )@U=)@h/@PYE/@/@PtYf/@/@/@P\Yf/@E+)@PFYf/@hh 5T @S E=tj h/@uS uRYUWVS}33 F% }t G |F Nj]u}ÐULu? Y} th|@dYu [Yj }Y@9Et @9Eu,@.@ ,@jYUjuUE,@.@ ,@,@%p= t<!jAY  .@3.@f.@jh-@0NUW,@t,@jWWY蘼j*,@pOY,@p诪Y,@P,@E9,@wY,@pPOY,@P,@=,@uK=u"jhTj]Q jhTjLQ 5,@RY}U*,@pNY,@p Y,@P,@E9,@wU,@pNY,@P,@=,@uU(u Y} th|@@Yu 7Yj YY,@tjY.@ ,@,@,@,@UW=P @E,@u*G GGG GGfG}øUWV}5P @WY׉V ‰FFu3fFu}UW}P @GfGG=P @}UW=P @t?|7=OYGP @}3UE U/@P/@U=/@t"/@0NY/@P/@3Uu^JY|E8|x} h@|YUWju@O}h@u}ËUPWV}u ;tOjjVI EVXNYVjWI WENY9Eu jjVI u .@u}UWhu&H}ht@uP}ËUP-@-@PY5-@h-@6h< @YEuuEU/@P/@EU WVSEsYsYE%Ef=/@t#EPWYE=h,@t h< @ h< @軧YC,@C,@訦E}t4#EE= tuuuM u脽f=/@t~E}#"E}t<EE= t%FUE=\u /ֈFEEuE@0tP @fxuuWuW+EE~uuuL =/@t"/@0KY/@P/@3]ԋu؋} F+EE=nEE= tFUQEEuE@0t'U\Ep菤Y-@-@P Y5-@h-@h< @ YUBEppDEPU}uU"Ep&YEHH@PU}uUWj ju.F }UWVS}(.@H-0.@~4,.@S 4,.@hJYN;}ϋf(.@]u}ÐU,@u =-@t5-@Yh|@YUWEtWYHPW5l@J }U}tjEP5l@J UWVSEE2E<ڋEEEtWuuYh-@YYjhYVuWYh-@oYYjmYSu9Yh-@QYYjsY]u}UuYh-@YUWVS-@Eu'53EU Ѕ҉Ut GUR03ù 3؃uƋGV0G]u}UWVS}3k -0GéuX@tt}˅|;}uh$@u]u}ËUPE "E R0‹U-@EE}~M}-@E-@PYU=@t2@ƀ )@h )@YHPh )@jH @U}t^@@=|;=@t2@ƀ )@h )@tYHPh )@jYH @@@U )@Ã=@t2@ƀ )@h )@#YHPh )@jH @jEPjG UWuYH@=|;=@t2@ƀ )@h )@踿YHPh )@jG @|Wuj}G }á@ )@Pu@U@UWS )@0E }^GGӍR@u ^G?GGEEt *@rh )@Y]}UuYh-@YÐUPS]= *@E=\ub\,@\,@UlEuE@u\,@\\,@\,@\\,@\,@\,@Uc\,@\\,@\,@\,@UCE=\u(E\,@\\,@\,@\,@U\,@\,@Uu PE:t }\,@E;t h`@uY]UPS]AE="t=$t=`u(j`Yj"Y:={uj}Y&EtE:uE;t h`@Y]U,WVS} tWYt0@PuWE==}t'\,@+X,@E5\,@ÝYE_h`@tYG,@7hL@u"E -@18EuEX@mtEEEEE={u3ffEtEEu$EX@@t\,@+X,@EEX@ EUEEuDEX@t2E=@u}u= *@t *@EEE1m0Eu-@#E;-@w-@U E3E=$u5-@wE=!u5$.@dE=#u5-@Y-@FE=?u5,@Y-@(E=-u-@f}Hh`@eYfE=:uf}tfEGEfEEuEX@uf}t h`@Y3f}E=}\,@+X,@t f}t u3EEuEX@t3U3tu j}j}YX,@NjE -@EtSf}t>tGE=+= *@ \,@\\,@\,@\,@E=?7E=\u} t GU}t\,@\,@UGEu5\,@YEPuuYuu5X,@1@ X,@E\,@GU;t^=`u u =Y'="u?= *@u E*@5 *@)éu@AuË]ȋű}=${\,@\,@UֵEEuEX@Huˡ\,@X,@PYEX,@ǣ\,@E@t h`@tYEp PUE -@= *@uE=\u} t\,@\\,@\,@\,@UFEu}E@E;-@-@U4E=*u= *@t\,@\\,@\,@ \,@sU WSf*@f *@EPFYuY^ *@*@jj?=*@t$\,@9X,@u\\,@\,@\,@ *@Ǣ*@5\,@TY]؋}UWVS\,@+X,@`5\,@#Y\輖U=\u>ֳéu@t"u= *@u\,@\\,@\,@\,@苳=`tu5\,@蠖YdPYVYjh7Ph薗TPYX@T1YTPj,@%PjVX<Y@\4Y`\5X,@h< X,@`\,@/= *@u \u}t\,@\\,@\,@\,@sujjC\,@H\,@= t\,@HLPÀ= *@t \,@;=\,@uUWSdPYuY=\u5رéu@t"u\,@\\,@\,@\,@Ou_u \,@+X,@P5X,@X; ,@t \,@+X,@P5X,@5l@n; X,@\,@Yjj"4EuA3YEt,@tu-Y}t].@EEܣ.@}t/E E@PE@PEEU}uڃ}t EHE\E/}t}tE\E/E U WVS}u GFEtu=**=?t#=[t-=\uFUE;1u\3]u}EEfE=!EF3E=]ufEft VWE3E=-uF}~@=]t6}t:]rF;fED8]w?F;w4fE.E=\uFUEE}t tN:]uG:]tFEO2F=*ttOVGPt ?u3UWV@}}tFGuE@;u/F} =\uF\FGuEt/FGF҈uVYP Yu}UW}.@=.@}UE/@E /@/@h@0ou6h@E /@J/@4Kth@h@E /@9/@Wt3U/@9/@|"}t /@3h@h@d/@/@/@UEj/@9/@|"}t /@3(h@h@/@/@/@YE}t"h@uKuU Ћ /@EUh@jYPuu3 /@Ej/@9/@|"}t /@3(h@h@M/@/@/@YE}t"h@u艫uRU#Ћ /@EUh@j/@9/@|"}t /@3(h@h@/@/@/@YPuu3 /@UWj/@9/@|"}t /@3(h@h@J/@/@/@Yh@W菪u|Eh@j/@9/@|"}t /@3(h@h@/@/@/@YP-th@h@E}j/@9/@|"}t /@3(h@h@r/@/@/@YE /@}t0h@u訩h@u萩h@Wzugjhj/@9/@|"}t /@3(h@h@/@/@/@YP H 3h@Wugjhj/@9/@|"}t /@3(h@h@Y/@/@/@YP! 3h @W舨udjj@j/@9/@|"}t /@3(h@h@/@/@/@YP Y3 h @Wu[h@j/@9/@|"}t /@3(h@h@l/@/@/@YPHh@W襧u[h j/@9/@|"}t /@3(h@h@/@/@/@YP2h@W8u[h`j/@9/@|"}t /@3(h@h@/@/@/@YPnh@W˦u[hj/@9/@|"}t /@3(h@h@%/@/@/@YPXh@W^u[hj/@9/@|"}t /@3(h@h@/@/@/@YPdh@Wu[hj/@9/@|"}t /@3(h@h@K/@/@/@YP~h@W脥u[hj/@9/@|"}t /@3(h@h@/@/@/@YPh!@Wu[hj/@9/@|"}t /@3(h@h@q/@/@/@YPMh$@W誤uTj/@9/@|"}t /@3(h@h@ /@/@/@YPY>h'@WD/@9/@| jq+Yj/@9/@|"}t /@3(h@h@/@/@/@Yh*@Wʣth-@W踣u /@j*YW!YP*Yzh0@W耣ueh3@j/@9/@|"}t /@3(h@h@/@/@/@YP&P3h4@W ueh7@j/@9/@|"}t /@3(h@h@c/@/@/@YP询3j/@9/@|"}t /@3(h@h@/@/@/@YE}uh8@WAk3h9@u"th<@uu# /@h?@W 3h@@uסuaWj/@9/@|"}t /@3(h@h@5/@/@/@YP聡3^hB@ubuaWj/@9/@|"}t /@3(h@h@/@/@/@YP 63WYEj/@9/@|"}t /@3(h@h@V/@/@/@YPnYEhE@u葠uE9E3fhI@ujuE9E3?hM@uCuE9Ei3hQ@u uE9E|F3hU@uuE9E}#3hY@uڟuE9E 3uh@h@ U EPu$|E#E ;E u3U EPub$|E%;E u3U EPu0$}3Ã}~3UuY} th|@Yu YuYj YjYÐUWVSM}EGE x=-u=Gt6Gu/G=-t.=nt =ut EME }ME ,@t=,@t,@P5YE <=\G=nt)]=c?=\t%=0uu3ۉ]j ZYlj\PYb=buPj?YQ=fu?j .Y@=tt=ru%j Y&j Y=vu j Y OPYG?>;utj YF;u}tj Yw3]u}-0 G=0|=7 EE=|SuYO놐UEh{Y*@E*@UE@9E|*@ m*@}u*@- *@U E/*@U MEP UuUYEE}uE@9E|UuYiX *@E*@U<u&E*@Љ*@*@3ËE*@E*@U ME@ EEP U}t$E0u茛t3Euă}t }uE뎋E*@E*@3wUPj2zYEMM HMH*@UE*@P UEEEEEEE8uEEU WVS}uEEEfEVj/|t]ԋu؋}ViY؅CuftW^YEC%=u5=**@uC%;&*@~ C%&*@EfCsC t} tCCafCC5@h<@Vp EtE fEE+tWYEt  uV$E}u0EV諟YE ML$ML$ML$ fCfu2&*@9E}E fCE fC6*@C6*@E C$*@CClE_UEf`Uh_tY6*@UP6*@EEfHPU}u6*@U,@t=,@t,@PYE@trE@udE@PYE@tj*Yj YE@PnYj YE@%PE0j YUh@-YhqYUWV&*@'h@&=/uF'9&*@u*5&*@W+Yt?u**@u}**@Uu:YE}tE@u Ef@5@h<@u贗 EtE fEfEu+YEEE ML$ML$ML$ UPuYE}tE@t Ef@Uuj/gtu[YE}tZE@t E@ՋE@%=u#E.*@ EPUEU9PuJHuEf`Yjju3 {U WV}WYW-Yt6F%fEF%=tH=tN==t|5@h<@W* h@Yu}h@YWɛYEh@YWYh@YEp] Yh@yYF%=u8jjW= fEuh@AYpE%fEh@$YEPWh@ Y:jW>E~$h@YuWIj !Yh@YU WVS}EE$*@W舾Y} &*@ VʿYKu&*@9E ~DWVM\,@E$*@jj@u Eu&*@]u}ËE &*@DWV$*@\,@Ejj@u3 EtE9E~EEECu}tE듋U$W}9E u)jW=u 9P(@t }Ã=:*@u%>*@ B*@:*@E%E܍EPWE%Eܸ@9E u}t9Et놃=>*@u!9Eu@@9E u6EIt?)E9>*@t} E9B*@t} E#E t3, 9P(@u  UWV}W}Y WVнM tuWVU5\,@[Yu}UWVS}wGudX@@tSFuX@Hu==u+h@S谑u=]u}=?u3UPWVS}WY:=.uC=/uSCPC;t =/u;tC;uK=.u;vK=/uWY=.uGtg=/t =@ur=/uTh @YuE @t<H*@@hI*@h @_hH*@ڐYG*@]u}þH*@@=@thH*@蚐YG*@I*@/F=.uUG=.uJG=/tu;J*@vNuH*@v N=/uH*@uuF=/u+G(F׊ G?t =/u?t F׊ G?pNH*@=/U= @tj @hH*@Yj YUW}%=/uG=/uWGPG?uO;}v =/u}UDWVSEEDž=@uj/h @@ƀH*@@-P@P})h@YffEffEf}fujE}h@aYv렍Pu}h@4YIpffEffE;u3؅;@uYjh@@=teh @, YuV @tMh @\Y)H*@Ph @艍 HƀH*@@!9uHƀH*@/hH*@H*@P葌YEhuux =sh@Y3}uM ;t EU;t3EE9EuXEhuu =sh@Y*Q3}tMtI}t0NjUM  ;SNjU;=t@/j@PE@P訋 PA@9f;;u%YDžE@ t9|ڋH9~ h<@褿YB)H*@PE@Pʊ HƀH*@/ @9h<@=YUEpYUPWV}t t u}Ë%=ptR=0b=t*MXw}YwSYw JY8wY*wjYwzY= tf=PtZ+=@w@Yw7Yw .Y=`t&=t1=t }=wYwY}pwiYEpYEx tlP rYEP r^YEP r OYEp ,iY4=u-wRYwqY=uwhYwVYWhY`UWV} 7WhYuu}UWV}whYwhYw WhYuދu}UWV}7YwYwWphYuߋu}UPWVS},@t=,@t,@PƼY%=p=0t_=t.uw QYwHYweYUh@YwUYh @qY1wh@nY1=u*sZYh@OYsYh@;Y,@t=,@t,@PY]u}j JYCPYuh$@YEpYh)@Y돋E}t7E@PYEU hd@YE@PYEU}uhh@wYsGYhj@cY[uUW}GPDYj Y?u}UWVS}7_;%PYt hm@YYƀt" t hp@YYSYj Y \]u}UPWVS}E)&@uJG)&@u=+t =-u EG)&@u 3]u}ø0+Ëk 0+G)&@uރ}t뾋븐 6 3ÐUW}w bYWbY7 Y}ø& Ð) Ð/ÐÐ/ÐUPWVS}E)&@uJG)&@u=+t =-u EG)&@u 3]u}ø0+Ëk 0+G)&@uރ}t뾋븐UPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWum=@tOLjEE E 0xYPE 0j h@]YPh@j{ jEPjk E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0YPE 0j h|@zYPh|@j jEPj @?GE @@ @@8E @ @@@u@@@Ð 3ÐÐZÐ"FÐU WVjuF} 3u؋}ÍEPVA|0E%=@u j']Yth]YG u%E%=@t P(@V2Y3뒉7G3G뀐ÐUWV@ @9P(@s P(@<@uYtVuj jh@j WuYPWj jh@j u}Ð>Ð*L$Q3ÐUPWV}EtG GGEFGG9G| G3Gu/hw 7, GuEG3u}ËG GQJÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø;WBt3Ð T$tÐ+Ð!ÐW|$3OъD$ u@_3_ø3Ð3Ð?Ð<~Ð j3ÐUWV}u;h0(@YEt Eu =,(@t3txE9(@,(@h?(@EPuEPjEP|>h~PW =uh~Ph(&@ 3WYkUWVS}X(@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐL$tÐz3ÐUP(@EEPhTu } EP(@3ø6&ÐÐWV|$ t$L$Njʁ^_øÐT$T(@Ru T(@+D$øT$T(@3øÐ0NL$0:L$0+L$0L$0 L$0ÃÐP(@ÐT$ÐP @@(#)sh 5.3b of Mar 2, 1988%W% %D% %Q%%W% %D% %Q%%W% %D% %Q%newline or ;%W% %D% %Q%WWWWWWWWWWWWWWcannot trap 11/tmp/sh-,@SHELLrshrsh-rsh600OPTIND1%W% %D% %Q%H @@@ @` @@ @ @8@ @ @<@ @(@0@ @ @D@P@X@0 @SHELL(){ } =SHELLxnvtsierkuhfa @setsicrrequires argumentsicr:77707N6)::66;5L;6p;u6:<>^<;<<=)==>f==SHELL...OPTINDOPTARGunknown builtin ptrace: Signal %W% %D% %Q%/.%W% %D% %Q%  ""@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@bad option(s)you have mail no spaceno stack spacesyntax errorbad numberparameter null or not setparameter not setbad substitutioncannot createfork failed - too many processescannot fork: no swap spacefork failedrestrictedcannot make pipecannot open - core dumpedarg list too longtext busytoo bigcannot executenot foundbad file numbercannot shiftbad directorybad trapis read onlyis not an identifierBad ulimitcannot return when not in functioncannot export functionscannot unsetno home directoryexecute permission deniedsh error: pwd too longmissing argumentscan't access a needed shared libraryaccessing a corrupted shared library.lib section in a.out corruptedattempting to link in too many libstestunknown operator PATHCDPATHHOMEMAILIFSPS1PS2MAILCHECKSHACCTMAILPATH :/bin:/usr/bin: -end of file unexpected at line /dev/null+ > $ # .profile/etc/profile @%@(@!-@2@7@"<@?@C@F@ I@$N@T@Z@\@(^@e@j@~@@@@@@@@@@@@@@exportcannot dupreadonlyMultihop attemptednull directorynot a directorydoes not existpermission deniedremote link inactive@ @"@$@ *@-@ 6@;@ @@E@J@Q@Y@^@e@i@n@ w@~@@@@@@@@@@casedodoneelifelseesacfiforifinthenuntilwhile{}HangupQuitIllegal instructionTrace/BPT trapabortEMT trapFloating exceptionKilledBus errorMemory faultBad system callAlarm callTerminatedSignal 16Signal 17Child deathPower Fail.:[breakcdcontinueechoevalexecexitexportgetoptshashnewgrppwdreadreadonlyreturnsetshifttesttimestraptypeulimitumaskunsetwait[]test] missingtestargument expected-o-a!()test) expected=!=-r-w-x-d-c-b-f-u-g-k-p-s-t-a-o-n-z-a-o=!=-eq-ne-gt-lt-ge-le%W% %D% %Q%%W% %D% %Q%%W% %D% %Q%hits cost command is a shell builtin is a function (){ } not found is hashed () is a shell builtin is not found ../../../../../../../../../../../../../../../../../../../../../../../../../../xxxxxxxxxxxxxxpwd: cannot stat .pwd: cannot open ..pwd: cannot stat ..@pwd: read first error in ..pwd: read first error in ..(){  } &( ) | && || for in do donewhile until do doneif then else ficase | );;<<>&<&>>: option requires an argument -- : illegal option -- --Unknown error: $@,@6@P@`@x@@@@@@@@@@$@:@F@R@d@s@@@@@@@@@@@5@D@P@g@x@@@@@@@ @. @I @X @| @ @ @ @ @ @ @ @ !@!@'!@=!@R!@[!@d!@x!@!@!@!@!@!@!@ "@"@)"@E"@T"@]"@f"@y"@"@"@"@"@"@"@"@"@&#@K#@k#@#@#@#@#@#@#@#@$@$@$@!$@*$@3$@<$@F$@P$@Z$@d$@n$@x$@$@$@$@$@$@$@$@$@$@$@$@$@$@%@%@%@"%@,%@6%@@%@J%@T%@^%@h%@r%@|%@%@%@%@%@%@%@%@%@%@&@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/0@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~bin/ncheck100755 3 3 36720 4201131034 7232 37777777777 L,! 2\ >d@.text2 .datad@d@\ d3@.bss@@>.comment=ÐET@RU RP PI2jÐU8WVjE E =-u\E B=at=it=suRA1RA)3E BPh@h@ RAMuRARAfEH@}uJh@5@&uG5@h@h@ jm1Y%E E 0YEM'EPkYj2EPV[ =uVC(YRAu}ËE pYEȃ}>fEf}H@G=RAE M,|UWVjuU0RA=RA}#uh@h@ RAu}RAuh@6  jh5RA, hh@5RAH% =th@h@K 둸 ~9 @u9 @t9 @RARARA3RARA@3RARA3RA@-RAfEfRARAU;s6RAPh @W 3uh@ RAfEH@EAfRARAU;s!RAPh @WA 3E9E~5RA&*Y6RAU;s&fRA @PpYFRA;|˃RAU;sCfRA @%=@u @PuFRA;|UW}%=@t{9RAu%,9RA|RAh'@h@}%=`t%= t  tӡRARAfRAfEH@jRAPVUWVS} j G Ph@ Dž3VYRAPPu 3G9‰ffffHE=tL=3=RAuYfH@fu =RADžsjP@xYfRAfPDžEH@;tfEH@fujPhV@jRAP0@PhZ@jPzt ha@gYhd@\YC;RAlFG9"Ë@ @ 9|UPWVRA@f;rRARAfEH@=RAt RAu}UW}G=.u#GtG=.uGu }3UWE=t jEPXuhf@CY}ø 9E ~ hj@)YE @E PGPGPhn@UWE 3k@"U;uNj}ÃRAr@f?u؃} u3ۡRA@RA= |hu@h@j)YfEfUWjERAP5RAS% uu 5RA ;Et)uh@h@ 3E 8G;=RA|}U 9E} E@Ãm RA9E~RAPh@h@- 3ҡRAPP5<@0 UUWVSu EHЋ.u]u}@u ;sF׈E} uY EP@ u+E UPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWVSu] 3 FC FCFӊ CCG;}|]u}UWVSu] 3 FC FCFӊ CFG;}|ދ]u}ÐUPWE E@u@t* @h@uu) @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg a$ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E`@r5Eh@rt@Ep@AE@s6EE]@)EE@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEx@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uRAVAGW @*h!YGt@O G W@GGVYtG uO @u}G ZAWR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裠@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$h@@(#)ncheck 5.3b of Jan 27, 1988@/etc/checklistncheck: bad flag %c rCan't open checklist file: %s ncheck: cannot open %s %s: ncheck: read error super-block (%-10s): bad block type Too many special files (increase ilist array) %u /%.14s/. ???.../%.14sncheck: out of core-- increase HSIZE ncheck: read error %d ncheck: %u - huge directory 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFR^}:Fj]k]U k-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ZAZA@ZA|\A3.1bS03.1bS0bin/newgrp104755 0 3 50060 4201131036 7275 37777777777 L?! A l@.textA .datal@l@ lB@.bss @ @.comment PÐET @RU RP PQAjÐUWVEPYuh@uYj AYY9E~E P=-u EE M9E~VE pF FEvvN5Y@P;YP5E6605Y@P;YP4Ev 7Y|QP?Y}h@u9YjM@YYF 8u!h@3YEtEF F @}uh@uhD@@@D@u2Y8@@}u\@X@<@D@ @8@h@j:YP4Ev u0Ej/uE}tE@E@EPuEjuv  h@uYj.?YYu}ËF EUuh@h0 @s Uuuh@h0 @V Yj>YUWVuY u(h@uh@h0 @ Yku}ËE V9P ktx~ 7E 0bt`?uF8tX @P9Yuh@u Yj4>YYvh@ YPxPvuF`h@uh@h0 @X Y;UW}E8uNj}ËEE=/uܐ =3ÐUPWVS3&E$@J $@@@J @@G|33Q$@E3 %@$@F|E?@@@E3 A@@@F|E[@C\@;|37k0\@l@#@ 0Fk0\@@#@F|GV3 @\@G0|]u}UWVS3E@J @F@|EL3@0@F |3(@\@JkU0\@23ˆ @F0|3k @ @@@U@@‹@؍%@%@%@%@FK3#@@2@@3ш0F |3@@0F |E9E3'@0@@ 2 0@׈0F |3@HE@U E 0F@|ދ]u}UWVS3Ɔ<@FB|3'3+Ëȋ%<@CF|FEEt@|h<@Y3Ɔ<@FB|3oE E ~@Z~9~.3Aˋt3k\@Ekkӊt@\@kÊUt@C|F|3jh<@F|3833k<@ C|.9~Z~Lj@F |Ɔ@@u ~@@~@]u}ø/ÐUWV}+ tW6u?Ƌu}ÐU=@uh@h@-@5@ YU=@t5@$/Y@U=@t5@R6Y@=@t5@36Y@=@t5@.Y@UEEt;E uEtEEU=@uh@h@,@u35@YUE=@u'@j5@`@ EuYEu5@5@{ Eu3u+YE@9EEUJ= uE8%@5@5@5@|juu }bE@j:uEEt;EuEtEEE@j:uEEt;EuEtEEEPY@j:uEEt;EuEtEEEj uEEt;EuEtEE=@u#@j5@@tT@@E@H9EE%@@P5@3@uJ=@t5@G3Y@=@t5@(3Y@3@@EEE8uEEEUj,uEEt;EuEtEEEE E@eUPWVS}EA @uJGA @u=+t =-u EGA @u 3]u}ø0+Ëk 0+GA @uރ}t뾋븐UWVh@h@(Eu 3u܋}ju hj,3E@EPhTE@ P. fEfEfeEPhTE@ P. h0 @u@@sGֈ=@u/E} u6Y EP@ t tufEfEEPhTE@ P. 0 @}h0 @j S*4 @ 4 @uj)2 @9Et u:)Y=@tj2Pq2@U@ÐUWVS} 3G %=utG9Gu!?uG DuWn+Y 3G 4@UG u;u&YEPuG PD1 E]u}W*Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W 4@+W;}W+Y}t*G @tW*Y=u ]VEgUWEE EPX,YtujW Nj}Uu.YÐUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P+ E}|EE}øUWV}t9~u=Ƌu}U=(@uh,@h@$(@5(@4YU=(@t5(@p&Y(@UW}G?t=:t = u= u ?tGNj}U=(@uh.@h@B$(@u35(@YUWuhh@_ =@WQY=@WBY=:j EPW* EW#YPj:W# 9Eu`WY}| `9E~aE@t4=:t*j EPW EW2#YPj:W" 9Et3}WY}| `9E~aE@=@=@W^Y=@WOY=@W@Y=@G?t =,u?tG=@@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vusEtE+E؋E)F>}3V 4@+V;}V'Y}u +gEEvÐUWVS}u ]GF:u Nj]u}M}3UW}W#YjjG P' GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P& +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P& ECG t8W^"YG t g GGuu G PA& E9Eus3lUWV}uW$YG uG tO G Dt1 @"u}F @tV!Y;50@rGGG tG 4@+GPwG P | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}G tG t w'Yg E GuaO }8u8@@@GW 4@GGu}G H#@WR4@G W4@V$YtO @맸.")3Ð )3ÐUWV}u ;u 3u}F;t N+GuU WVS}uE} tE 8$EA @u5GEEA @uE=+t =-u EGEu309Et "G=xt G=XuEA @tEEA @t E-0#EA @t E-WE-7E;| 3]u}Ãu;09Eu1GA @tG=xt G=Xu EEA @t E-0#EA @t E-WE-7+EGEA @tEEA @t E-0#EA @t E-WE-7E;|} tE 8}tU5 @E Pu Ð;&UWVS}] 3;uG8uƋ]u}ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  4@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY @Dž\Dž,E+É\T(89E8EEEE t5EuM+8E E+8EE쉅8EE+8EPVjh0@9؋E;EvEPVh0@h0@u E\tOE\;EvEPV\l, \lu E(tNE@;EvEPVj$j$un EDž(EEEPVjhH@9؋E;EvEPVhH@GhH@u E~EE;EvEPVSSu EE؄EE܉EPVjhH@9؋E;EvEPVhH@_hH@u EE؀tOEX;EvEPVXh Xhu EE89EE+8EPVjh0@9؋E;EvEPVh0@e6h0@u Ek E-0GEA @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl" @Dž\?E2ETMDžl% @Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhEA @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hH @YEt Eu =D @t3txEQ @D @hW @EPbuEPSjEP|>h~PW =uh~Ph@ @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@Eh @s3UtE]@Ep @Ex @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁@6@v6@E @t@r05}fEf fEmE]mE܉E@0Ee  @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 4@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 4@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W4@UW @;=0@r3}ÃG uUW @ WY;=0@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 4@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 4@+G?}3W 4@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 4@+G?}3W 4@+W;}WY3UWV}G G u}}&u8@@@GW 4@*h!YGt@O G W4@GGVYtG uO @u}G H#@WR4@UWV}G 4@+G}G 4@Wu};7}7𐐐63ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@ @@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øÐ0BNL$0B:L$0+L$0L$0 L$05Ã%3ÐÐ@ÐWT$p@@(#)newgrp 5.3b of Jan 27, 1988newgrp: Passwordnewgrp: Sorrynewgrp: Permission deniednewgrp: Unknown groupnewgrp: You have no shellHOME=LOGNAME=`@t@PATH=:/bin:/usr/binPATH=:/bin:/etc:/usr/binSHELL/bin/sh-%s :2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'(08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 1991)! :2*" ;3+# <4,$?7/'>6.&=5-%      )4%/7(3-!0,1'8"5.*2$                                                                                                                                     @@/etc/grouprr/dev/ttyr/etc/passwdrr 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF~(~(~('~(~(~(~(~(~()))))))))~(~(~(~(~(~(~(~(~(~(~(@!~(%~(~(~(~(~(~(~(~(~(~(~(~(~(~(~(~( ~(~(~(~(~(~(~(~(~(~('H@!Z#%CH~(~(<~(~( ~(~(~((~(v ~(~( -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@X#@X#@0@`#@$@3.1bS03.1bS00@`#@bin/nice100755 3 3 37770 4201131037 6726 37777777777 LP! T* $ @.textT* .data$ @$ @$+@.bss@@ .comment?ÐET@RU RP P *jÐUPWE 9E~mE P=-u]E xG=-t.O+ @uhH @h@Zj)YG?uϋE PBR|YEME 9E}hi @h@jR)YuYE @PE pJE p@4 @h @h@j)Y}ÐUE PuUWVS3h @SYEuE @j/u&t @E|PuW u |P_@=td=t$= tV= t8=u2FwBVdYDž| @|DžxTCwt @ hlpø9x|@xxt|xBM t ɉ u|Ph @lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U5@u u ÐUPWVS}E @uJG @u=+t =-u EG @u 3]u}ø0+Ëk 0+G @uރ}t뾋븐":&ÐUPWEEE@ uE@ t(EH uuu g E@ t }ËU}u3jYEhj=%EEE}t6E9Ev)EE&E+EEEEEMuj$h@YuubYljUYE}| uj$} }}}t EEP YEE2Ujh@EøÐ$ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWS}] ;u Nj]}ËG8u3쐸;G$UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoY Ek E-0GE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅Hh@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅Hp@u+-hJhE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu = @t3txE@ @h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS} @E @E0@s3UtE] @E8@E@@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁ @R @vR @E@t @r05}fEf fEmE]mE܉E@0Ee @];r&=5|+ @u @1}tCF0N<9 @]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uT @\$@GW @*h YGt@O G W@GGVYtG uO @u}G d(@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ0*NL$0*:L$0+L$0L$0 L$0 Ã@ÐT$( @@(#)nice 5.3b of Jan 27, 1988nice: argument must be numeric. nice: usage: nice [-num] command %s: %s /bin/shPATH:/bin:/usr/binsh @ @@ @0@H@R@l@~@@@@@@@@ @@"@4@C@S@b@s@@@@@@@@@@ @7@H@c@v@@@@@@@@(@L@f@o@x@@@@@@@@ @"@+@4@H@Z@h@@@@@@@@@$@-@6@I@R@[@n@w@@@@@@@;@y@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFR ^ } : F j   ]k  ]  U  k -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@t(@t(@@|(@)@3.1bS03.1bS0bin/nl100755 3 3 46630 4201131041 6407 37777777777 Lr! A @.textA .data@@ B@.bss @ @ .commentMÐET @RU RP PAjÐU4WVS} uEEEEEF;]t u2 u N @u=0@uj)Y]uċ}ÍEE4@3ED@^uD@N;}rj2yYF؃*t\u ={t};]uGE9Etj*CY눋= =$*=*=.=[*=\F= M=(*=)\=n4={0}PEEUEEЅtj,YF=\3GG=0@u(NG @E9Ej*CYj$6Y}E=E=Ey;Et= GXG;Erj2Y GEEn 94@|j+YEE4@GG4@4@E9Ewj*jYGGUJU ENFE0|9kE -0Ej YF؃\t,uθ9E~j YGUԈ,IF=}tj-Y}u GUԈAG%W;&j.Yj$Y *1|%9 1;]|jvY$GGӈ}GGӈEEԸ9E|EF؃^u EFEt uj1YÀt>}t8EG ;Erj2YGE EEԸ 9E|-}F؃]u @GÀt]}tWEG ;Erj2lYGE EEԸ 9E|EЋE%@E9]|މ]؋Ћ%@F؃]}t EE }t 9Eu EG(E7E4EE9E|'UWVS}u =D@t=8@VWd]u}=u4F;uVW8t =8@ËG8u3VWuًG8uUWVS}u EF-|=)w|$@FG;͋G8뿊볉=<@]u}GEU@# oEGEEu%EU@#t3U3X F< @F< @FEVKYUV?YF P0YEFPYA @UF @+EEPWuF E @UF @+EEWߋG8uG;tFqGEU@#uރ HEGEEu%EU@#t3U3uO;=@@VW;wG;E @ @u G;Eu @ @u= @}G둊G @ @uGEU@#G @ @uˋ"GEU@#t @ @uσ= @}G"GEEuEU@#u3U3 @ @u?GEEuEU@#u3U3u @ @u= @}G>EuWu tVWt 1E+;s3!NJGO @ @u;UW}G% @=u N @}%+ @U8WVS3EnEtEnƅnƅnDžDžDžDžDžDžx @Dž @ƅp ƅqFU t%=at'=nt=pt"=tu@EtEnEaE 8@@@Dh@AYE 4hj@*j5YYqFU t=at=nt =pt"=tu@Et<Ea3En*E 8@@@+h@ YE 4hj@ j65YYFU t%=at'=nt=pt"=tu@EtEnEaE 8@@@h@ YE 4hj@ j4YY5FU u ƅyE 4hj@ jV4YYFU uDžE 4 YFU uDžE 4 YFU u@kE 4` Y@UFU uDž7E 4, Y FU =ltA=rNF=ntF=zu\FU @FU =nu @lE 4hj@7 j2YY~E 4hj@ j2YYW@nKE 8@@@FU „ @FU „@FU -b|=w |$@E 4hj@> j1YY8@@ p@ @@8@@ uōp@8h @E 4&uE 4h@ j]1YG;}|8EƅbDž[E 2=-uFU [8@@ @ @@8@@ uō@Ehjh@h,@PD@0@8@@ @ @@8@@ uō@Ebjh,@h@PdD@,@~8@@ @ @@8@@ uō@Efjh,@h@PD@4@@;aC@;NC@;unC@;u_C@;uPC@;uAC= u6=yt EƅhƅyC@;u[C@;uLC= uA=yt=ht Eƅbƅyg@;uYC@;uJC= u?=yt=fu Eƅfƅy=yuƅnh$@=atu=b=f`=h"=nt3=t= QpP5@opP5@U= u^9u0DžpPpP5@*DžpP_,@D@h@SiuipP5@0@D@h,@S3u3pP5@T4@D@h@St#pPpP5@8Ph&@ hP$ J"Yj+YUuh)@hD@YjR+YUW@=zu@03 @H@G;=@|졄@HPu`@=lu5%3 I@H@G;=@|롄@ƀG@ H@= tu hH@h`@ }U 9E}E UR0H@ËE R0‹U H@} ~ߋE HPEPUE8@@@c8@@=0|18@=9!8@ @<@@@uuhj@0j)YY8@@ u@ƀ<@h<@|Y@UW@ 3 @H@G;}|hH@he@3 hh@YGu Y;|}Uuhj@j:)YÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V  @+V;}V"Y}u +gEEvUPWE E @u @t* @h @uu  @ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW!YG uG tO G Dt1x @"u}F @tVY;5 @rGGG tG  @+GPwG P | GG듸9tO O G tg aUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS} @E @E@s3UtE] @E@E@E( @r5E0 @r< @E8 @AEX @s6EE]@)EE` @r݋EE 9P܃}t؁ @.@v.@Eh @t @r05}fEf fEmE]mE܉E@0Ee p @];r&=5|+ @u @1}tCF0N<9 @]Ћuԋ}ËEE0]@EEsEE 9P EEEE@ @MU]vEu}fEf fEm]mE܉EFUR0EMm]EH @E5P @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W @UWx @;= @r3}ÃG uUWx @ WY;= @r}UWV}tlG t6G t3WVYG PY}h @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u@@GW  @*h!YGt@O G W @GGVYtG uO @u}G @WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐUh @EEPhTu } Eh @3ø6FÐ2ÐU WVSE9ET=| @u< @ | @| @  @p @ @l @| @p @x @E@3؋=l @E&;5p @| @E@E=w=x @jYp @@;t?3Ee ƹ3tL3+‰EEE2p @+x @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5x @p @0E+E-p @@;tp @p @p @| @~Љl @;5l @vl @t @l @ 9=x @u l @x @G(=l @95x @u=x @7tލ;r;l%;UWV}5l @%p @9u5x @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹt @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ @Ru @+D$ø!T$ @3øÐh @ÐT$ø@@(#)nl 5.3b of Jan 27, 1988 @2D$ Ct0R^R?\: n i - ~IHEADER: BODY: FOOTER: rCANNOT OPEN FILE %s %s%d This is the error code Illegal Regular Expression %s%s%s INVALID OPTION (%s) - PROCESSING TERMINATED 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFb)b)b)(b)b)b)b)b)b) b)b)b)b)b)b)b)b)b)b)b)$"b)&b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)b)!b)b)b)b)b)b)b)b)b)b)(, $">$&' , b)b) b)b)!b)b)b)(b)Z!b)b)!-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@ @@l@3.1bS03.1bS0bin/nohup100755 3 3 41264 4201131042 7126 37777777777 L! L,  @.textL, .data @ @-@.bss"@"@ .commentBÐET"@RU RP P,jÐU 9E}h @h@j+YE Ujj0+jj$+j&Yh @h@ @f Eh @:YEuh @h@+jI+Yuh@ @h @h@ @h@h @h@ @ uutGNj]u}3U5"@u u ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËU}u3jYEhj!'EEE}t6E9Ev)EE&E+EEEEEMuj&h"@YuubYljUYE}| uj&} }}}t EEP YEE2Ujh"@EøÐ&ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWS}] ;u Nj]}ËG8u3쐸;+&UWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  !@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}"@E"@E@s3UtE]"@E@E@ED@r5EL@rX@ET@AEt@s6EE]@)EE|@r݋EE 9P܃}t؁"@#@v#@E@t"@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+"@u"@1}tCF0N<9"@]Ћuԋ}ËEE0]@EEsEE 9P EEEE\@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ed@E5l@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G !@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W !@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}"@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3Z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W!@UW@;=!@r3}ÃG uUW@ WY;=!@r}UWV}tlG t6G t3WVYG PY}"@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG !@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G !@+G?}3W !@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G !@+G?}3W !@+W;}WY3UWV}G G u}}&u#@'@GW !@*h!YGt@O G W!@GGVYtG uO @u}G  +@WR!@UWV}G !@+G}G !@Wu};7}7𐐐3ÐU"@EEPhTu } E裄"@3ø6ÐÐU WVSE9ET="@u<"@ "@"@ "@"@"@"@"@"@"@E@3؋="@E&;5"@"@E@E=w="@jY"@@;t?3Ee ƹ3tL3+‰EEE2"@+"@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5"@"@0E+E-"@@;t"@"@"@"@~Љ"@;5"@v"@"@"@ 9="@u "@"@G(="@95"@u="@7tލ;r;l%;UWV}5"@%"@9u5"@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ"@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$"@Ru "@+D$øT$"@3øvÐ0,NL$0,:L$0+L$0L$0 L$0 Ã"@ÐT$ @@(#)nohup 5.3b of Jan 27, 1988nohup.outusage: nohup command arg ... aHOMEnohup: cannot open/create nohup.out /nohup.outanohup: cannot open/create nohup.out aSending output to %s /dev/ttyw%s: %s: %s /bin/shPATH:/bin:/usr/binsh@@@@@@@(@:@L@\@o@@@@@@@@@@@@/@C@W@h@w@@@@@@@@@@2@N@g@v@@@@@@@"@+@4@=@U@l@@@@@@@@@@@$@<@Z@p@@@@@@@@@@@@*@3@<@W@t@@@@@5@\@e@n@w@@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@@&@?@I@Y@g@v@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF VV VVVVV ~ V V          VVVVVVVVVVV VVVVVVVVVVVVVVVVV VVVVVVVVVV  2 VV VV VVVVN VV -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@0+@0+@!@8+@,@3.1bS03.1bS0!@8+@bin/od100755 3 3 35754 4201131045 6411 37777777777 L! 1 ( \@.text1 .data\@\@ \2@.bss@@( .comment;ÐET@RU RP PA1jÐUPWVSE 3۸9EE 8=-G=bt=ctg=dt>=ht=ot=st:=xud P@S P@B P@1 P@ P@ P@ ;T@~T@OME =P@uT@P@9E~PE =+tAh@h@E 0l% uE 0h@h@ j/YE M9E~ E 0yYE}|83]@@]0@;u C|}uih@YEUF3Ph0@5X@ E3f]0@f]@@C|3 f]0@C|X@h@jjh0@Ej5|@5X@ @}"h@j &j.Y]u}á@@ UWVS#P@t>j5|@uX @}h@j X&@ @3' @}h@j -&@ @3cSE xPo @}'h@EH;u  P%"EH;u  @@G;}|ۅ]u}UPE =ty===== u]jYfEfEjjE%P @h@j %jYjju jnYjj u 9Ev?jKY @}h@j-$@-@E@%Ej Yjj ul jYjjuS gjYfEfEEPaY @}h@j 3$@@ EP/Y@ @jjE%P Ue9E~E9E};h@bY @}h@EP#á@@UE= wY|U$@h@Yh@Yh@Yh@Yh@Yh@Yjju uUW}tBEHPu E} P E} ~3 @}h@GWP"}á@@WW @}h@G0P"ˡ@@W0UPEE* @}h@j d"@ @ET@9E|UPWVS}=+uG=xu G|@8=0uG=xu|@=0u |@F=.u |@ >uEN؃0|9E|@-0(a|,f'9|@uE|@-WEG?u=.uG=bt =Bue juh@ EX@]u}ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WfY=uE H3u U+ЋO;7sSwu( ÉE)G?}3W @+W;}W~#Y+Å{EhUPWE E@u@t* @h@uu= @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P" +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P" ECG t8WbYG t g GGuu G PE" E9Eus3lUWV}uW YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E$@s3UtE]@E,@E4@E|@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@.@v.@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u\@d @GW @*h!YGt@O G W@GGVYtG uO @u}G l$@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裼@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$`@@(#)od 5.3b of Jan 27, 1988 rod: cannot open %s * \0 \b \f \n \r \t 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFJ  V x    u2 >b             U                c          }U    M      c-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@|$@|$@@$@&@3.1bS03.1bS0bin/passwd106755 0 2 52610 4201131050 7274 37777777777 L! D@.textD .data@@E@.bssx@x@.commentxUÐETx@RU RP PyDjÐUDE@9E}?NEuh@h@j"DYuh@h@ E PU5@tju@0 uE=@t}t$@@9Eth@h@nul@P:tx}trh"@4 YPh@7h@7YE̡@ph@ @@p5@th0@h@@@P@pY@%?@@%?@=@ jY: @9@}t0@@9@}5@h8@h@> E@9@A}7hb@h@ h@h@E}t.h@uth@h@EEEE@}hE@t}t MHE@t}uME!E@t MMEEEu9Et@ 9Et69Et,h@h@hR@h@E}t{E@E@E9E| EȉE+E ẺE+EȉEEEEUE;tEE؋E9E~ܸ9E}h~@h@ZEnh@8 YPh@4h@h@.@@@=~h@h@h@h@9E|h@h@h@ YPh@Y4h@t4YEȃ}9E{EPY?EE%?EE%?EE;EU@.Eܸ99E~EZ9E~EEUM܈ E9E|EPh@z@jjw>jjk>jj_>hYjh@e|h@h@h+@h@|3Eh-@h@krju@0V :E}t$@@9EthK@h@@@PPtK=@u @P5@@С@ Љ@5@ Y@Bu5@ @- u94Yh@lYt/jh@uh@h_@h@L h@h@a t!h@h@hq@h@h@Yth@h@h@ h@h@ tNh@h@h@h@h@h@ tLh@h@h@ h@hYth@h@h@[ j<Yh@8YMUpEu0YEEEEE+E@tEPYEEEUEEEuƋEEEE E+E@tEPqYEEEUEEEuƋEEEEhEEUEEEEE׉EEEU EMuEEUEE׉EEPu"uEE9E~EEEEEEHEU EEMuEMM3뵐UPWVS}E3!Z~9~-. EGuՋE]u}ÐUPWVS3&ET @J |@p @J @G|33Q|@E3 }@|@F|E@@E3 @@F|E@C @;|37k0@ @{@ 0Fk0@ @{@F|GV3 @@G0|]u}UWVS3E@J @F@|EL3 @0$@F |3( @@JkU0@23ˆd@F0|3kd@e@f@g@Uh@i@‹ @؍%D@%E@%F@%G@FK3# @ @2 @C@3ш0F |3 @$@0F |E9E3' @0 @ @ 2 0 @׈0F |3 @HE @U E 0F@|ދ]u}UWVS3Ɔ@FB|3'3+Ëȋ%@CF|FEEt@|h@Y3Ɔ@FB|3oE E @Z~9~.3Aˋt3k@Ekkӊ@@kÊU@C|F|3jh@F|3833k@ C|.9~Z~Lj@F |Ɔ@@u @@@]u}UWVh0 @h$ @*Eu 3u܋}ju# hj\5E@EPhTE@ P0 fEfEfeEPhTE@ P0 h@u@@sGֈ=@u/E} uY EP@ t tufEfEEPhTE@ P50 @}h@j ,@ @ujY4h@9Et uj+Y=@tj4P4@U@ÐUWVS} 3G %=utG9Gu!?uG DuW-Y 3G @UG u;u(YEPuG Pt3 E]u}W,Y=u~GEU+Ѕҋ~Sjuu@Et E+EH؋)G?}3W @+W;}W".Y}t*G @tW5,Y=u ]VEgUWVS}@?%?@.؃9~Z~Fӈ}  %?u@]u}Ð 23ÐU$WV |Yjh4 @1|Djk$PV- j$EPV' =$tVM-Y3uԋ}V<-YE܄u3jEPh@x @@ŐU=P @uhT @h@ @'P @5P @YU=P @t5P @(YP @UW}G?t=:t = u= u ?tGNj}U=P @uhV @h@ @f&P @u35P @YUWuhh @_ =@WQY=@WBY=:j EPWj EW%YPj:W<% 9Eu`WY}| `9E~aE@t4=:t*j EPW  EWV%YPj:W$ 9Et3}WY}| `9E~aE@="@=&@W^Y=*@WOY=.@W@Y=@G?t =,u?tG=@@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V)Y}u +gEEvÐUWV}u w7hX @VGtwh^ @V w www whb @V} Vj 4& F FF % u}UWVS}u ]GF:u Nj]u}M}3UW}Wt%YjjG Pt) GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW}'YG uG tO G Dt1h@"u}F @tV~$Y;5@rGGG tG @+GPwG P! | GG듸9tO O G tg aUWV}G tG t w*Yg E GuaO }8u@"@GW @GGu}G &@WR@G W@V'YtO @UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}t T$tÐ!j)ÐUW}@t @Nj}ÐU(WVSjTYujFYuj8Yt,j/WuFjht @'E}]̋uЋ}3ME=t!E=tE=t E=u j EPVA u u>#YCj$EPu =$tu#YyUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUPWVu"Yt8EPu|%E%= ujh @&} 3u}þfEft EU;uuh @h4@EPh4@EPh4@|=EU;u1E%= u!t EU;uW!Y4@\jEPWI =TjjW! NuWm!Y3 &3Ð&3ÐUWVS}u ߋG8uOGF҈uË]u}ø<:&Ð &&3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlt@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}T@ET@E@s3UtE]T@E@E@E@r5E @r,@E(@AEH@s6EE]@)EEP@r݋EE 9P܃}t؁T@@v@EX@te@r05}fEf fEmE]mE܉E@0Ee `@];r&=5|+T@uT@1}tCF0N<9T@]Ћuԋ}ËEE0]@EEsEE 9P EEEE0@MU]vEu}fEf fEm]mE܉EFUR0EMm]E8@E5@@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}x@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UWh@;=@r3}ÃG uUWh@ WY;=@r}UWV}tlG t6G t3WVYG PY}X@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@"@GW @*h!YGt@O G W@GGVYtG uO @u}G &@WR@UWV}G @+G}G @Wu};7}7𐐐63ÐUX@EEPhTu } EX@3ø6ÐÐU WVSE9ET=l@u6.&@80( 91)! ;3+# =5-% ?7/'(08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 1991)! :2*" ;3+# <4,$?7/'>6.&=5-%      )4%/7(3-!0,1'8"5.*2$                                                                                                                                     @@/dev/ttyr/etc/utmp/etc/passwdrr%s:%s,%s:%u:%u:%s:%s:%s/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF!++!++++++"!+!!+A"Q"Q"Q"Q"Q"Q"Q"Q"Q"+++++++++++h$+(++++++++++++++++#+++++++++++p"h$&(k"p"++d"++#+++=++#++#-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@'@'@@ '@(@3.1bS03.1bS0bin/pr100755 3 3 60034 4201131063 6415 37777777777 L! N\t@.textN .datat@t@tO@.bss @ @\.comment `ÐET @RU RPM PYNjÐU h!@h @jjM=thjM@P &Y!@t3EP5!@<'E%!@h5!@U9@!@@9Pu<=@u,hz @Yhz @h @h @ @ @@hB @!@p&hZ @h@h @  @Uuh*@h @ @U|EE!@u uExm9@uE 9@| h8@Y@@k !@RE 0Iu$EE 0@Yt !@0&CYEME }}u h@Y5@NLYUE EEEELE E E=+=-uE BEEEU EM}t$9@~h_@h@D}t$9@}h@h@=@u @B@9@ @@@+Љ%@m9@uE@@t/=t2=@u @=@u@ @=@u'9@t=@uH@=@ 9@uC=@u%@%@@+‰EC%@=@%@@+‰E%@-@Wt3%@Em9@uE E@)@@+@@=@%@=} h@Y9@tL=@uC%@=@@@B‰EPY@E補%@@@k PY%@=!@t;=@u =@t) @Po!Yuh@h@3>@EËE-@tE u Y@IE=m?=ft^=dtBz=atS=+u 1 Y@=@@@EE@EE@=e|h@u @}@n=it'Q=h<MQE P@@h@u d@#@=lu 3 Y@=rt[w=ot?_=n@h@u %@%@u Y@@=pu`@v=tt.8=suHE B@tE M@ A@5=wuu X Y@EPhG@h@l E BExE @9@E UPEBEtE-@u E UEu YEtEøU EEm9@t5!@u u3øm9@u)=@u 5!@u u h@ Y=@t!@0pe=@t @%@9@=@t%@jY=tw%@h @<Y%@@%@;@%=!@=@u=@@@ut @}%h@j<"@ @ @@}5@Y@P@E=t 9Euǃ=@tv}uE}u/=@t@9@} !@@@Eh@}Y@%@5%@uuh@WmUW@%@@%@3%@I=@t9@tru m9@t m9@tT@9%@|AP5@=@t%@k LD@P5%@h@@%@%@5@YW]Y 9@t 9@t 9@uƸ9@tuG;=@tl 9@uW Y=tQ=@t5@vY)%@+%@@%@Љ%@} %@ 9@9@u=@ubtj Y}ø 9@tDj Y9@u%@9%@}j Y%@9%@} jAY=@tj Yj Y@9%@|U WV=@5%@EljFk@ %@;t+Ƌ@ UP@+@=@Eu}%@!@ } 0YY!@BBE=uE-@Wt%@%@9%@~ 9EuEG;=%@r h@,Y 9EtE=t=cEMK=%@uO=%@9 %@.ljF k@ %@;vuYUWV=@5%@EE=@UE@H=@EEEG= uEE9E|E EE@ЉVljFE@E;EuM@H9E|u}UWVS=@t@@=@t3kE %@ЋG9r ؃|a9@u3Ek !@Ћ^u5k@ !@Ћ ;5!@r 9Ft;5!@r% } 6Y P@F=@t';@u%@%@=@@ h-@Wt%@R=t= t8= t= t*=u-=%@~$ %@9@t %@ã@]u}UPE== t_= = = == 9@| %@9%@} %@%@Ã=@%@9%@}䡴%@@=@@+‰E%@+%@9E}E %@+%@E%@E%@딃=%@t=%@~ %@ %@q%@9%@~ %@YEK%@%@%@%@%@E-@Wt3E@9%@=%@}~ E%@d9@|%@9%@ @}h @EP 4@@UE%@%@%@sUP=@~S%@=@@+‰E9%@|5 @}h @@P3C@@@.E @}h @j \3@ @E%@)%@=%@ZUWVS}3 k -0@-@uƋ]u}UW} EuG@@Yh @EGP0u?wuh*@h @ @YEPu/Y@PYP/E?th} 7 Y P@G=u m9@u}wh @w\/Y@PYEP 7 1Y@=@tm=!@t(jdY@@@UPh~PW =uh~Ph,@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}4!@E4!@ET@s3UtE]4!@E\@Ed@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁4!@!@v!@E@tE!@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+4!@u4!@1}tCF0N<94!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3Z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W @UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u%@)@GW  @*h!YGt@O G W @GGVYtG uO @u}G -@WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET= @u< @  @ @  @@ @@ @@@E@3؋=@E&;5@ @E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@ @~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$ @Ru  @+D$øT$ @3øvÐ0@ONL$0@O:L$0+L$0L$0 L$0 Ã@ÐT$x@@(#)pr 5.3b of Jan 27, 1988@B  @%b %e %H:%M %Y%b %e %H:%M %Ycan't open %stoo many filespr: unknown option, %c pr: only one of either -m or -column allowed pr: -a valid only with -column width too small/dev/ttyrcannot open stdin %s %s Page %d %*ld%cpage-buffer overflowr%s -- empty filepr: %sout of spacepr: %spr: %s[-column [-wwidth] [-a]] [-ect] [-ict] [-drtfp] [+page] [-nsk][-ooffset] [-llength] [-sseparator] [-h header] [file ...][-m [-wwidth]] [-ect] [-ict] [-drtfp] [+page] [-nsk][-ooffset] [-llength] [-sseperator] [-h header] file1 file2 ...usage: pr %s \ %s pr %s \ %s usa_englishL@P@T@X@\@`@d@h@l@p@t@x@|@@@@@@@@@@@@@@@@@@@@@@@@@@'@0@9@K@N@4___________________________Ry_______x____ $_x$@______=g___g_D__^_____`/lib/cftime/RB( JanFebMarAprMayJunJulAugSepOctNovDecJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberSunMonTueWedThuFriSatSundayMondayTuesdayWednesdayThursdayFridaySaturday%H:%M:%S%m/%d/%y%a %b %e %T %Z %YAMPMCFTIME%m/%d/%y%I:%M:%S %p%H:%M%H:%M:%SLANGUAGE/lib/cftime//lib/cftime/@ @W`/Lw/K:/JMFw/GMT TZ/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF+55+555555,+5+,5I,Y,Y,Y,Y,Y,Y,Y,Y,Y,55555555555p.525555555555555555.5555555555!5x,p.02s,x,55l,55-555E55-55.-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@-@-@@-@h/@3.1bS03.1bS0@-@bin/ps100755 3 3 66160 4235413411 6433 37777777777 Ls" [?h@.text[ .datah@h@h\@.bss`,@`,@?.comment`lÐET`,@RU RP PM[jÐUPu u9E)EEE F"6jZYUEP@Eb@##E'E=lt+=dt4W=at 4=?ET1@`1@d1@=c"@@=ft!=eX1@l1@=gp1@u5"@=tt8J=st\=puUh1@u5"@%x1@"@@/t1@u5"@=uu\1@u5"@2uu ub E=!}u E9"@} 5@h@hp(@% jTYY9@u=hi@5@h?!@hp(@x% uuuuuuhp(@Y%Y9@u=h@5@h?!@hp(@.% uuuuuuhp(@%Y9@u=h@5@h?!@hp(@$ uuuuuuhp(@$Y9@u=h@5@h?!@hp(@$ uuuuuuhp(@{$Y=`1@1=X1@$=d1@=\1@ =t1@=h1@=p1@j0YEuTj0YEuEh@5@hI!@hp(@# uuuuuuhp(@#joWYYj/u?0@Ejh@u/ uEu%YEP5@jh\V@9EtE9E|E؋UEM E@t1@=X1@t%d1@3`1@p1@h1@\1@t1@=`1@u =d1@t t1@"@jhe@u/ uEu$YEP5@jh\V@9EtE9E|EUEM E@uj%E}upu,YEP5@jhW@9EtE9E|E؋UEM E@uj$E}uuYEP5@jhLW@9EtE9E|E؋UEM E@uj1$E}uuE%@t uAuYYEPYPu#YEu5@jhV@9EtE9E|E؋UEM E@u5@jhV@9EtE9E|E؋UEM E@ujM#E}U5@h@hp(@ j:TYUEE-|=w |$@PP8t=uY!Ih@Y݃Pf@fu3-h51@ f @W@Yt`EPY-|=w |$@PPX =jPYUPW}UhX:@ YT:@UUj5@HR1@=uM5@hl@5@hI!@hp(@ u uuuuuhp(@jdRYj5@Q1@=uM5@h@5@hI!@hp(@p u uuuuuhp(@QjQYj5@vQ1@=uM5@h@5@hI!@hp(@ u uuuuuhp(@jQYU=l1@t=T1@t h@YÃ=l1@t h@Y=T1@t h6@Yh{@YUE8t=u u Yu uh@_YU =T1@t)E@PE@PEp$h@'E@ E=l1@t6u YE}uuh@+uh@=T1@tuh@E@Ph@=T1@u =l1@t"E@%PE@Ph@| =T1@tE@PE@Ph@V =l1@t h@@Y=T1@t h@,Yh@!YEЋ@LBP@2EPjjE<RuEPuh !@ h@YU,E@$%Eۃ=T1@t)E@PE@PEp$h@E@ E=l1@t6u YE}uuh@T+uh@B=T1@tuh@'E@Ph @=T1@u =l1@t"E@%PE@Ph @ =T1@tcE@PE@Ph @ E@H 3Ph @Ex4tp4h @ h @pY=l1@tE hL Yu PYEu@Euh$ @2E Ћ@2EPjjEй<RűEЙPuh !@ =l1@uE lPh+ @ËE ƀk `(@}h`(@j GEd(@ d(@EE EEu}tE lPh1 @TEE= }E@@Ph7 @'JE=u h; @ Y0 `(@}h`(@EPDd(@d(@U EE l9ELUPj5@KE=uM5@h> @5@hI!@hp(@d uuuuuuhp(@EjKYjh@u@ =tEhZ @5@hI!@hp(@ u uuuuuhp(@jKYYuFYjj51@ W@Uf@fu3hu51@ f @W@UEEE@ EE@EE@E9Eu=d1@=`1@E=X1@ur=d1@ui=h1@tu5@hW@ uF=\1@tu5@hV@ u#=p1@t!u5@hLW@ tE}t3Ã=t1@u =`1@tE=u=t1@tϸUPukYE=`1@t}t#=t1@t%u5@h\V@ u3UEt =u!hdu ]E=BE@$tbP\U1@EjE@Pu jEPuH> E=t hf @YeE|1@BEP\U}e Ue}}t u Y1@E|1@1@9Eumjuu hdu u= E=dt7}u*=x1@t!1@9Ethdu 5ø1@9Et1@9Et uCYUWV}u GNu}U0WVh @ Y=uEh @5@hI!@hp(@* uuuuuuhp(@ jGYYh @h @=uEh @5@hI!@hp(@ uuuuuuhp(@jXGYY3VfEftMEPEP!|9E%= u)EPUR)<EfMfLGVjjEPN=tV>Yh @ Y=h @h @<uXufEftMEPEP |9E%= u)EPUR;EfMfLGVjjEP =tV_=Yh @Y=uEh @5@hI!@hp(@X uuuuuuhp(@9jEYYNjuȋ}UWVf}3'f:@;uX:@u}F;5T:@|3UPWEE PYjh @W uG}jh @W ujh!@W u EJWU:Y=u<%@t+G%@tG%@tE}t)=0u&Whd,@9d,@sd,@J3Cd,@sWhe,@9d,@$UE%@t umuYUP=@t @0u<u @@u; YEuE@@UPu YEu3ËE@UE<Ru EPuh !@UL}u5@h!@ EPGYPEP8jRYEEP%YPEPj8j EPEP E؉E@EjEPEP jEPEP h!@EPOjEPEP} h!@EP,EPY@EEPY9Eu"jEPEP-  E߉E@EEuh!@ U9EtE 9E|ËEUEM EUPWE!@}t)3 uE42u }G;} |3U9EtE 9E|ËEUEM EUW3UЋE9u }G;} |3UPW}Wu u6 1@9Eul@E@9EuGh'!@5@hI!@hp(@ uuuuuuhp(@p jAYYOjAYEh3!@5@hI!@hp(@> uuuuuuhp(@ j@YYNj}UW} uWui< =u3t3}ËU5@h?!@hp(@ uuuuu uhp(@ U5@hD!@hp(@ uuuuu uhp(@b U5@hI!@hp(@E uuuuu uhp(@& j?YU jhN!@G?E=uh_!@ YEE9E}"jkEW@Puu4 E=tѸ9E|h!@ Yu:Y롃}th!@ Yuz:Yuj:Y3pU E EƀHZ@E9E|kEW@PQYEuh!@- YjhHZ@=>E=uhHZ@h!@ ̋EU(WVS}jh"@=Eƹ3E\Z@3Eff@Ph"@hHZ@ EPhHZ@]}hHZ@h"@hp(@F rE;ujE%=`uZh!"@hHZ@2h&"@hHZ@E@Ph("@hHZ@2YHZ@P* ]̋uЋ}CE;.hh\Z@uh2 3Ő 2=3ÐUu-YPYUWVSp,@0"@GF҈uEk@J"@p,@GFGFGFGE@k`"@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRWp,@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUPWVS}E%@uJG%@u=+t =-u EG%@u 3]u}ø0+Ëk 0+G%@uރ}t뾋븐UPWV9"@ueE9"@}#E "@ =-u E Au u}h"@E "@4u "@΋E "@ "@="@:tWuq="@tOLjEE E 0/YPE 0j>: h"@/YPh"@j#: jEPj: E "@ "@@"@u"@"@?F=:"@@U "@t"@@U "@"@"@@"@;E|l="@tOLjEE E 0.YPE 0j[9 h"@.YPh"@j@9 jEPj09 "@?GE "@"@ "@"@8E "@ "@@"@u"@"@"@UWt7uu%Nj}ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu7 ÉE)G?}3W t+@+W;}W3Y+Å{EhUWV}t9~u=Ƌu}U="@uh"@h"@-"@5"@YU="@t5"@.Y"@UW}G?t=:t = u= u ?tGNj}U="@uh"@h"@f,"@u35"@YUWuhh,@_ =0@WQY=0@WBY=:j EPWJ EW+YPj:WP+ 9Eu`WY}| `9E~aE0@t4=:t*j EPW EW^+YPj:W* 9Et3}WY}| `9E~aE0@=0@=0@W^Y=0@WOY=0@W@Y=0@G?t =,u?tG=0@0@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V t+@+V;}V/Y}u +gEEvUPWE El(@ul(@t* l(@h`(@uu l(@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W+YjjG P/ GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW-YG uG tO G Dt1P(@"u}F @tV*Y;5p+@rGGG tG t+@+GPwG P' | GG듸9tO O G tg aUWEEEEEE2EEEPuu w ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_UPu&Y@PP-YE}u3uu&WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐUWVS}u0@Etu WЋu 3]u}u V&u 0@ C0@ɐUWVS}u Ct ;ut Nj]u}ËG8u3UWVS} ]Ft ;utCuދ+E]u}U WVS}uE} tE 8$E%@u5GEE%@uE=+t =-u EGEu309Et "G=xt G=XuE%@tEE%@t E-0#E%@t E-WE-7E;| 3]u}Ãu;09Eu1G%@tG=xt G=Xu EE%@t E-0#E%@t E-WE-7+EGE%@tEE%@t E-0#E%@t E-WE-7E;|} tE 8}t T$tÐUW(E+"@EEPY="@iGQiWkW<E=0@u=0@uWEPEP< 0@E0@EE9E|)E9E}!E+"@EEPYG Nj}UWVEQUEE}} EQME<0@E0@ƙ50@Ep0@}| FFFtmnEN}|ۉ50@}=0@ƹtmn=nu f #@3 u#@+Fu#@;}f #@G0@50@0@0@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph%@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}1@E1@E'@s3UtE]1@E'@E'@E(@r5E(@r(@E(@AE0(@s6EE]@)EE8(@r݋EE 9P܃}t؁1@R1@vR1@E@(@t1@r05}fEf fEmE]mE܉E@0Ee H(@];r&=5|+1@u1@1}tCF0N<91@]Ћuԋ}ËEE0]@EEsEE 9P EEEE(@MU]vEu}fEf fEm]mE܉EFUR0EMm]E (@E5((@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G t+@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W t+@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}`,@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wt+@UWP(@;=p+@r3}ÃG uUWP(@ WY;=p+@r}UWV}tlG t6G t3WVYG PY}@,@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG t+@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G t+@+G?}3W t+@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G t+@+G?}3W t+@+W;}WY3UWV}G G u}}&u\b@df@GW t+@*h!YGt@O G Wt+@GGVYtG uO @u}G lj@WRt+@UWV}G t+@+G}G t+@Wu};7}7𐐐3ÐU@,@EEPhTu } E@,@3ø6:Ð&ÐU WVSE9ET=T,@u%8x %c %x%7d%7s%6d%6u%6u%3x%4d%3d%4d%9x %4.3s %.8s %.8s^%c^?cannot open nproc dev (%s) read error error in reading page table entry /devps: cannot change to /dev /devrps: cannot open /dev /dev/sxt/dev/sxtr/devps: cannot change to /dev ttyconsolesxt%*lu:%.*lu%9s%9sconsoleread error read error %s: %s: %s: /dev/sys/swaptabCould not open /dev/sys/swaptab Error too many swap devices Error while reading /dev/sys/swaptab Could not find swap device Could not open swap device %s /dev%.14sCould not stat %s /dev/%.14sDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec: option requires an argument -- : illegal option -- --/etc/passwdrr\#@`#@W`/Lw/K:/JMFw/GMT TZ/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFv96C6C96CB6C6C6C6C9^96Cj996C99999999996C6C6C6C6C6C6C6C6C6C6C;6C@6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C6C;6C6C6C6C6C6C6C6C6C6CB:;>@9:6C6C96C6Cy;6C6C6CB6C.;6C6C;-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@|j@|j@p+@j@l@3.1bS03.1bS0p+@j@bin/pwck100755 3 3 34200 4201131076 6740 37777777777 L! <-d  @.text<- .data @ @d .@.bssp@p@ .commentp8ÐETp@RU RP P,jÐUWVS9Eu Dž|4@ E P|h@@|!|hB@h@ jr,Y]3@Dž3@3)@=:u @@u h@-Y$k @-0G;|`9 } h@Y +H9 9} h@Yr@>@@u h@Y$k @-0G; |`9 } h@:Y3@@0FG;|獅PP=u h@Yu h9@Y3 0FP|@= tb3@@0FG;|獅PP=u hN@aY3 0FP|hh@ Y50@(YptxU=@u"h@hl@$0@@=@uuhp@u5@hu@ @UWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V"Y}u +gEEvUPWE E|@u|@t* |@hp@uue |@ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1`@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg a%3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžll@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}t@Et@E@s3UtE]t@E@E@E@r5E@r$@E @AE@@s6EE]@)EEH@r݋EE 9P܃}t؁t@@v@EP@t@r05}fEf fEmE]mE܉E@0Ee X@];r&=5|+t@ut@1}tCF0N<9t@]Ћuԋ}ËEE0]@EEsEE 9P EEEE(@MU]vEu}fEf fEm]mE܉EFUR0EMm]E0@E58@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}p@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW`@;=@r3}ÃG uUW`@ WY;=@r}UWV}tlG t6G t3WVYG PY}P@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h!YGt@O G W@GGVYtG uO @u}G "@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUP@EEPhTu } EP@3ø6FÐ2ÐU WVSE9ET=d@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@"@"@@"@t$@3.1bS03.1bS0@"@bin/pwd100755 3 3 21160 4201131077 6570 37777777777 L! x H@.textx .dataH@H@H@.bss`"@`"@ .comment`"ÐET`"@RU RP P-jÐUWVSEE$@ "@$@hd"@hl@}ht@LYjYff"@fEfd"@fEf}fuh@hp@Euh@YjYhd"@E@ Pe}h@YjXYff"@fEfd"@fEd"@f;u3f"@f;u~jh@=t)h$@Yu$@tj@h$@$@9"@u"@H"@/$@+"@P5"@j jYujjh"@E=}h@YjmY}uNf"@f"@ f"@ ;t!Ef"@"@;t3Ehp@Y}h@wYjYujjh"@=}h@IYjY}tEtA}t+"@ "@ ;uM"@;u=hd"@h"@z=jf"@f;Zd"@f;JuRYj/h"@1lU츘$@+"@P5"@j j YUWV}GN~?u+Ƌ"@+Ё"@s6$@+"@P5"@j j YO"@H"@F|ꡔ"@H"@U u}Ð R 3Ð&: ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu- ÉE)G?}3W t!@+W;}WY+Å{EhUWV@H@9@"@s @"@< @uYtVuj+ jh@j WiYPWj jh @j u}ÐUWV}uWIYG uG tO G Dt1P@"u}F @tVJY;5p!@rGGG tG t!@+GPwG P | GG듸9tO O G tg a! Ð 3Ð 3Ð ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wt!@UWP@;=p!@r3}ÃG uUWP@ WY;=p!@r}UWV}tlG t6G t3WVYG PY}@"@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG t!@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G t!@+G?}3W t!@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G t!@+G?}3W t!@+W;}WY3UWV}G G u}}&u$@(@GW t!@*h!YGt@O G Wt!@GGVYtG uO @u}G ,@WRt!@UWV}G t!@+G}G t!@Wu};7}7𐐐3ÐU@"@EEPhTu } E@"@3ø6FÐ2ÐU WVSE9ET=T"@u uu 5l}@7 ;Etuhr @ jBYUWV}u 9%9| 9Gu u}ø9Fuv w MUPW=`}@u=h}@tE3}hjh,hb@3b@t͋b@Ph @;=d}@tb@h @b@tb@h @b@h @G,lB(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V L@+V;}V7Y}u +gEEvUPWE ED@uD@t* D@h8@uu D@ t }ËUWVS}u ]GF:u Nj]u}M}3U9Er= @u>Ep@P7Y @El@Eh@E EURu+ËE9p@sˣp@P5 @K: @UWVSh@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuWl@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVul@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u h@|?= @t6SW5 @`9 SVWU9 S5 @VE9 ]u}ÊEGFUKuUWVS}u ]h@E9E|R= @tIuW5 @8 uSW8 uVS8 u5 @V8 ]u}ÊEGCFUMuӐUW}W0YjjG P4 GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh(@d UPEEPu uI UW}EEEljEEWb-YEE2uu EP }ÐUWVS}u Džt@x@ t@W=~*uDžF DžDžk -0FY@u؃u DžÉ=lt h9uF؅[uPVY@tDžlZ@؃nt_=x@uVctQ[tLt@} W@ Y GGY@u t@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPft@fl9uEEPt@{EEPt@dEPWSt'=x@tu /$Fu Y@td=x@ut@} W Y GGY@u t@W=ux@y%uF%t@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$$ @EE EEt@}WyY3]u}ËGG=+t=-t =0t8EMt@} W(Y GG؃0i9E }9Eot@} WY GGEh~PW =uh~PhX@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}|@E|@E@s3UtE]|@E@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁|@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+|@u|@1}tCF0N<9|@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G L@UEE ;ur;u s 3]u}ËG9GreG urRVuG P  ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W L@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}8@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WL@UW(@;=H@r3}ÃG uUW(@ WY;=H@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG L@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G L@+G?}3W L@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G L@+G?}3W L@+W;}WY3UWV}G G u}}&ux}@@GW L@*h!YGt@O G WL@GGVYtG uO @u}G @WRL@UWV}G L@+G}G L@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6FÐ2ÐU WVSE9ET=,@u<0@ ,@,@ 0@ @0@@,@ @(@E@3؋=@E&;5 @,@E@E=w=(@jY @@;t?3Ee ƹ3tL3+‰EEE2 @+(@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5(@ @0E+E- @@;t @ @ @,@~Љ@;5@v@$@@ 9=(@u @(@G(=@95(@u=(@7tލ;r;l%;UWV}5@% @9u5(@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ$@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$4@Ru 4@+D$ø!T$4@3øÐ@ÐT$ @@(#)quot 5.3b of Jan 27, 1988 @(#)quot.c 1.5 87/11/11 cannot open mount table /dev/%.10s/dev/%.10scannot open %s %s: could not read superblock %d%.7s %d read error %u %d %d %ld %d %d %ld %5ld %5ld %s #%d Usage: quot [ -c ] [ -f ] [ -n ] [ filsys ] /etc/mnttab/etc/mntlock/tmp/mntXXXXXX/etc/passwdrr??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF'r1r1'r10r1r1r1r1''r1''r1 ((((((((((r1r1r1r1r1r1r1r1r1r1r14*r1.r1r1r1r1r1r1r1r1r1r1r1r1r1r1r1r1)r1r1r1r1r1r1r1r1r1r10<(4*N,.7(<(r1r10(r1r1)r1r1r1 1r1j)r1r1)-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@H@@ @3.1bS03.1bS0H@@bin/rev100755 3 3 31164 4201131115 6570 37777777777 L8! h(, 8 @.texth( .data8 @8 @, 8)@.bssd@d@ .commentd2ÐETd@RU RP P(jÐUWV@T@9E~]h\ @E p;@uAE ph^ @ht@ j'Yhd@j h@ h@3>@}5@Y@P@@=t= tfG|[5@YYME 9E,u} d@}hd@@Ph@h@@O} d@<&UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1T@"u}F @tVY;5t@rGGG tG x@+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  x@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl` @Dž\9PtP؉PNKPPoYh~PW =uh~Ph @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}h@Eh@E @s3UtE]h@E @E @E@r5E @r@E@AE4@s6EE]@)EE<@r݋EE 9P܃}t؁h@@v@ED@ty@r05}fEf fEmE]mE܉E@0Ee L@];r&=5|+h@uh@1}tCF0N<9h@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E$@E5,@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G x@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W x@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}d@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wx@UWT@;=t@r3}ÃG uUWT@ WY;=t@r}UWV}tlG t6G t3WVYG PY}D@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG x@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G x@+G?}3W x@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G x@+G?}3W x@+W;}WY3UWV}G G u}}&u@@GW x@*h!YGt@O G Wx@GGVYtG uO @u}G @WRx@UWV}G x@+G}G x@Wu};7}7𐐐3ÐUD@EEPhTu } ED@3ø6FÐ2ÐU WVSE9ET=X@u<\@ X@X@ \@L@\@H@X@L@T@E@3؋=H@E&;5L@X@E@E=w=T@jYL@@;t?3Ee ƹ3tL3+‰EEE2L@+T@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5T@L@0E+E-L@@;tL@L@L@X@~ЉH@;5H@vH@P@H@ 9=T@u H@T@G(=H@95T@u=T@7tލ;r;l%;UWV}5H@%L@9u5T@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹP@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$`@Ru `@+D$ø!T$`@3øÐD@ÐT$< @@(#)rev 5.3b of Jan 27, 1988rrev: cannot open %s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF&2TQ>1 ?Y 1 )}?-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@t@@d@3.1bS03.1bS0t@@bin/rm100755 3 3 44274 4201131117 6422 37777777777 LM! 1 @.text1 .data@@2@.bss(@(@ .commentHÐET(@RU RP Pu1jÐUEJE=?t9=ft=it=ru+)@ )@)@Eh@u u/ E=u9E~}th@h$@ j0YX@)EE 9h@E 01 uh@h$@_ E 0*YE EM=)@tPY0Y3U EPu=u Ek E-0GE!@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl!@Dž\?E2ETMDžl!@Dž\EE C~u~E܉TMs؍gh݅H, @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H4 @u+-hJhE!@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h#@YEt Eu =#@t3txE#@#@h#@EPbuEPSjEP |>h~PW =uh~Ph!@ 3W YkUjuuuu u#Ujuuuu uU$WVS}(@E(@E#@s3UtE](@E#@E$@EL$@r5ET$@r`$@E\$@AE|$@s6EE]@)EE$@r݋EE 9P܃}t؁(@(@v(@E$@t(@r05}fEf fEmE]mE܉E@0Ee $@];r&=5|+(@u(@1}tCF0N<9(@]Ћuԋ}ËEE0]@EEsEE 9P EEEEd$@MU]vEu}fEf fEm]mE܉EFUR0EMm]El$@E5t$@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G '@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W '@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}(@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW$@ WY;='@r}UWV}tlG t6G t3WVYG PY}(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG '@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G '@+G?}3W '@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G '@+G?}3W '@+W;}WY3UWV}G G u}}&u)@-@GW '@*h YGt@O G W'@GGVYtG uO @u}G  1@WR'@UWV}G '@+G}G '@Wu};7}7𐐐3ÐU(@EEPhTu } E裌(@3ø62ÐU WVSE9ET=(@u<(@ (@(@ (@(@(@(@(@(@(@E@3؋=(@E&;5(@(@E@E=w=(@jY(@@;t?3Ee ƹ3tL3+‰EEE2(@+(@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5(@(@0E+E-(@@;t(@(@(@(@~Љ(@;5(@v(@(@(@ 9=(@u (@(@G(=(@95(@u=(@7tލ;r;l%;UWV}5(@%(@9u5(@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ(@Nj]u}UPWVS}u ]} G֊ FK}E]u}VÐT$(@Ru (@+D$ø!T$(@3øÐ(@ÐT$Ô@@(#)rm 5.3b of Jan 27, 1988friusage: rm [-fir] file ... ..rm: cannot remove .. rm: %s non-existent %s: mode %o? %s: mode %o? rm: %s not removed. rm: %s directory directory %s: ? rm: cannot open %s ...rm: Insufficient memory. rm: Path too long (%d/%d). %s/%srm: cannot open %s %s: ? rm: Unable to remove directory rm: Insufficient memory. ...%s/.2s..: option requires an argument -- : illegal option -- --Unknown error: @@@@@ @@0@B@T@d@w@@@@@@@@@@@&@7@K@_@p@@@@@@@@@ @'@:@V@o@~@@@@@@@*@3@<@E@]@t@@@@@@@@@ @@,@D@b@x@@@@@@@@@ @@@2@;@D@_@|@@@@@=@d@m@v@@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@G@Q@a@o@~@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF2>`]&J=Ke=5K-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@01@01@'@81@2@3.1bS03.1bS0'@81@bin/rmdir100755 3 3 41570 4201163627 7130 37777777777 L`! + @.text+ .data @ @,@.bssh#@h#@ .commenthCÐETh#@RU RP P+jÐUHE3EERPY=uMH#@44@h @hx@a j?+Y%E=?t=pt =su EEEh @u u E=u9E|}th @hx@j*Y(@)EE =E E U}E@P[&YEtE؍@PG&YEuh' @hx@jb*Yuu!uu !uuEu!}uh= @hh@, p}ujE=t>=t.=u79H#@u E] @!H#@4@UEq @E @uuuh @hh@u(Yu'Y uY=H#@=t/e=H=t%/=E@E @E@= uwE'@}=ugEI@m=t>E=uNEPuuE%=u E @1E @(E@=u En@H#@4@Uuuh@hx@EM=H#@tPZ(Y3Uu 1YU ЉUj/u $E}tEu Y~}tu YE=u9Eufj/u E}uE Eh@uth@umuø9H#@u3UPWV9@ueE9(@}#E (@ =-u E Au u}h @E (@4u (@΋E (@ @=,@:tWuq=$@tOLjEE E 0YPE 0j& h@YPh@jo& jEPj_& E (@ @@@u(@@?F=:@@U (@t@@U (@0@(@@(@;E|l=$@tOLjEE E 0YPE 0j% h@YPh@j% jEPj|% @?GE (@(@ 0@@8E (@ @@@u@(@0@Ð&$ÐO$ÐUPWEEE@ uE@ t(EH uuu  E@  t }Ëj$3ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUWVS}] 3;uG8uƋ]u}ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  |"@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžld@Dž\9PtP؉PNKPPoY Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlj@Dž\?E2ETMDžlm@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}l#@El#@E@s3UtE]l#@E@E@E@r5E@r@E@AE8@s6EE]@)EE@@r݋EE 9P܃}t؁l#@#@v#@EH@t}#@r05}fEf fEmE]mE܉E@0Ee P@];r&=5|+l#@ul#@1}tCF0N<9l#@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E(@E50@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G |"@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W |"@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}h#@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWX@ WY;=x"@r}UWV}tlG t6G t3WVYG PY}H#@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG |"@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G |"@+G?}3W |"@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G |"@+G?}3W |"@+W;}WY3UWV}G G u}}&u#@'@GW |"@*h YGt@O G W|"@GGVYtG uO @u}G +@WR|"@UWV}G |"@+G}G |"@Wu};7}7𐐐3ÐUH#@EEPhTu } EH#@3ø62ÐU WVSE9ET=\#@u<`#@ \#@\#@ `#@P#@`#@L#@\#@P#@X#@E@3؋=L#@E&;5P#@\#@E@E=w=X#@jYP#@@;t?3Ee ƹ3tL3+‰EEE2P#@+X#@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5X#@P#@0E+E-P#@@;tP#@P#@P#@\#@~ЉL#@;5L#@vL#@T#@L#@ 9=X#@u L#@X#@G(=L#@95X#@u=X#@7tލ;r;l%;UWV}5L#@%P#@9u5X#@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹT#@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$d#@Ru d#@+D$ø!T$d#@3øÐH#@ÐT$ @@(#)rmdir 5.3b of Jan 27, 1988rmdir: setuid(2) failed, %s psrmdir: usage: rmdir [-ps] dirname ... rmdir: Out of memory rmdir: %s: Whole path removed. Directory not emptyCan not remove . or ..Can not remove current directoryrmdir: %s: %s not removed; %s Directory not emptyIs a symbolic linkPath component not a directoryDirectory does not existSearch or write permission neededDirectory is a mount point or in useRead-only file systemI/O error accessing file systemCan't remove current directory or ..rmdir: %s: %s ...: option requires an argument -- : illegal option -- --t@|@@@@@@@@@ @3@E@V@h@t@@@@@@@@@@@,@;@J@b@o@@@@@@@@@+@:@H@a@~@@@@@@@@@0@D@Y@j@w@@@@@@@@@@4@E@[@k@y@@@@@@@@@@@@8@O@v@@@@ @)@2@;@D@M@V@_@h@q@z@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@ @@+@:@K@c@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF^ j  F R v   iw  i  a  w -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@+@+@x"@+@d-@3.1bS03.1bS0bin/sdiff100755 3 3 47150 4201131125 7072 37777777777 L! DAD @.textDA .data@@D B@.bssX@X@.commentXNÐETX@RU RP P@jÐUPWVSjjH@=th j2@jj&@=th j@jj @=th j ?jj?=th j?E @E B:tME E 0Y@9@}E 0hA@ 9@~L@@@8@0x@ME E |@E 0h^@ EHE=~E E =-29Eths@hh @yj[?YE E @E @5@5@C@5@5@*@@-@h@5@3@u5@h@ h@5@3@u5@h@ =x@=@uh@-Y@h@Y@h@5@'3@u5@h@G h@Y@h@5@2@u5@h@ h1@5|@2@u5|@h3@5@ht@"25@ht@'hI@ht@5@ht@hK@ht@@@3@32E B-l}= rj$@@ h@YE}@@+@@+@;~Njظc9EutK=@tXhX @h@D{c=@u' X @}hX @j 3\ @ \ @@KuE=at=ct#=d@@+@@+@;~Nj@| X @}hX @j T3\ @ \ @@Ku@<(h hM@hh @ 9x@ui}tch^@5@<0@u5@h`@\hz@5@ 0@u5@h|@-5@hh@y ?=@u' X @}hX @j S2\ @ \ @@u=@t 5@21Y=@t 5@;Y=@t 5@&Y=@t 5@Y5@Q:Y]u}  X @}hX @j 1\ @ \ @@@9@|m X @}hX @j a1\ @ \ @@@9@|% X @}hX @j 1\ @ \ @@@9@|@>60 X @}hX @j 0\ @ \ @@@9@|U5@hh@} h@j@=@t@= t!=@t5@h@hX @c =x@tN@= u!h@%-YPh@5@- h@-YPh@5@  @= tjY@3U5@hh@ h@@@R@= tS=x@th@f,YPh@5@n =@ujlY5@h@hX @E =@u=@u =@u@@@3UWV} E)E}uGP.EP@NJG ;rӋu}U E=>t'E=<tE=-t E=.u3ËEEEEEy@uu$Y@@E=,u0EEEEEy@uuY@EEEEEEEy@uuY@@E=,u0EEEEEy@uugY@E UPWVS@E]} W= u!ù+;@|)6@E;}*y@uEC@G= u}t Ë]u}3U@}t@+@Ph8@hX @ @@jh@hX @ U5@h@hh @ u uhh @ h @}Xhh @j +,=@t 5@KY=@t 5@6Y=@t 5@!Yje4Yál @l @ U=@t 5@ Y=@t 5@ Y=@t 5@ Y5@4YU=@t 5@ Y=@t 5@ Y=@t 5@u YU 5@C*Y5@7*YEk@\@M=@t 5@ Y=@t 5@ Y=@t 5@ Y5@,3Y5@5@5@M E5@5@5@' EE@E= tE= =<=>=bt!=l=r=|h@5@C'@u5@h@c5@5@5@r 5@5@5@X 5@(YE@EPYE@EPYE@EPhYhh@5@&@u5@h@5@(YE@EPYuh@hh @q }u+5@5@uy h@hh @@}u X @}hX @j%(\ @%\ @hH @j ht@] E-e|=w|$@Uh@u%E u$uh@uPu hP uu &YU E=t1t?jj/EEP$Y9Euuj/h#@h@juh,@h$@MU$WVSuE EEPV< =t4E%=@u$jd*YE؋CF҈uC/=-F=@h/@Y@Eh?@5@$@uC5@hA@=.@}5@P&@P@Lj H @} hH @\YL @L @u5@[%YE]Ћuԋ}ËE8t=/tE@=/uFUE҈u뽐UPWVS}Ey@uJGy@u=+t =-u EGy@u 3]u}ø0+Ëk 0+Gy@uރ}t뾋븐UWVS} 3G %=utG9Gu!?uG DuW&Y 3G l @UG u;u!YEPuG P, E]u}W%Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W l @+W;}WR'Y}t*G @tWe%Y=u ]VEgUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V l @+V;}Vc&Y}u +gEEvUWVSEPfYE =ruEEE =ruEEE\@?t-\@P&Y$@rڋE =ru3EV%Yu%YujS S%Yjuhd@h`@hX@7j]Y9Eu 3]u}ËE\@Sm%Yu VUWVE@ u!Yjj)Ejj)Ejj)EEPY;4\@tu98@tكuEuj)ujy)ujl)\@Eu}Ð>)ÐUWV}  t?F EF F F3҉Vl @=at=rt=wt3u}ÀN jju$ N G=+uf N ȸ*")L$Q3ÐUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu + E@ t }ËUWV}uWI"YG uG tO G Dt1H @"u}F @tVJY;5h @rGGG tG l @+GPwG PE | GG듸9tO O G tg aU5X@E Pu Ð;k'J't3ÐUWVS}3 'uYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!&Ðv&3ÐUWVS}u ߋG8uOGF҈uË]u}ø .&3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  l @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlT@Dž\9PtP؉PNKPPoYh~PW =uh~Phx@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}$@E$@E @s3UtE]$@E @E @E @r5E @r @E @AE( @s6EE]@)EE0 @r݋EE 9P܃}t؁$@r@vr@E8 @t5@r05}fEf fEmE]mE܉E@0Ee @ @];r&=5|+$@u$@1}tCF0N<9$@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G l @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W l @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}X@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wl @UWH @;=h @r3}ÃG uUWH @ WY;=h @r}UWV}tlG t6G t3WVYG PY}8@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l @+G?}3W l @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l @+G?}3W l @+W;}WY3UWV}G G u}}&u@@GW l @*h!YGt@O G Wl @GGVYtG uO @u}G @WRl @UWV}G l @+G}G l @Wu};7}7𐐐3ÐU8@EEPhTu } E8@3ø6ÐÐU WVSE9ET=L@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@h @@\@3.1bS03.1bS0h @@bin/enroll100755 3 3 55360 4273152443 7313 37777777777 ,+I Jd`@?H?+I+IDGP ~ã3"P#U-|*p u|,pphh@EP/hL +P/ahEP#t }hX,jF#t"h^EP?#xDžt#xt4t 0tt*|j"ÐUj uh,o. EEE8uEP,$ u\j"j"uV"uK"jhhG" jhh3" jA"j h,u. j.j h,uw, thh#j!ÐUEV55$5 +Mf,f3ȡ@f555 E}|55055 50552 08u @f8t55(5 ÐU j{EEjeMt E}*|3EE+@fu5E4t  E4t 5,u 50u5 EuEu50E4t  E4t 5$u7 _* Ifu5E4t l E4t 505u EE}*E%E4t 54t  E}*|E}*|ÐE4t 5054t  E}*|U E{EE,EEEE} |uC)K)f%f IfE} |#)Mf.ff?@f55p 5 555 E} |ÐUjjj(jj@p j,j$5,j-5& 5$j5 jVjG0ÐUu jju;#u E0jp&#EÐUu^u jju\hE0MAu E0jp/EÐUuhh jÐU 3EEEEEPuEPu 0EPEPEPEP EPEPEPEP}uuEPEPnEPbEPVEPJU4E3E܉EEEEEjEfEPu EPuEPEPEPEPGEPEPEPEPEP EPEPEP; EPEPEPEPEPEPE}suEPcEuuuu  EP0EP$EPEP EPEPÐUu E M EE }؉E}tNhuIM AEEE9E}!E @kMMIkUf fՐÐÐUkEPE uh  3ÐUuhh hj$ÐUE8tpEÐUEE td }؉EEEM}~E@kMfxtE9Et.}uuÐE8~M EMىUhjE}~.h$jMAE@fMfEÐ}}.Eh*jMAE@MƐE뻐U EM 9t M +ÐEEPu u EEEPEUh0E@P EEEEkEEfMfEE M9~^E@kM IkU EEfEtEkEEfM묐EkEEfMfEEM9~*@kEEfEtkEEfMǐ}ukEEfEMA EM EMHE8u uQUEEE@EE EE @EEE}|L}|.E9E|EPEPEP}tEPEPE萐E؉EEPEPEF}*E؉EE؉EEEPEPEPJE؉EEPEPEP uEMHEMMÐUfEEEEh6E0MAEE EE@kMfMfEE M9~fE@kM IkU +EEfEtEE@kMfMEE@kMfMfEEM9~1@kEEfEtE@kMfM}}DEE@kMf0EEM9EM uEPu EHEEMIÐM}|#E@kMf8~}uϋEMAϐEpUEEE EE@EE @EEE}|`}|>E9E|EPEPEP EEPEPEPݐE؉EEPEPEP}EE؉EE؉E밐E؉EEPEPEP EE9Eu }tuE9E u }tu uEMHEMMÐUEE@EE @EEE } E؉EE E }E؉EE؉Eu5u*uuEPEP}uEȋ ىEȋ ىÐUEEEE?EkMM M+kMM EkEEfMfEEEE 9E|kEEEEkEEfMfE u3ÐEEEkEEfMfEE 9E})kEEkMM EE }E뻸ÐUE9Eu EEE}EMiEMM+EEiM M+EE |΋EÐU:3EΉEƉE։EދE 8uh<2ÐE 8udhPjMAEpuE @Pu E@f8uEpEËEÐEM 9}dEEM hWE0bMAEEEM9@kMIkUf fӐEEEʋE EM IkUIAfEEPEPu~ EPEPu k kEE@EkEE@Eh^E+E@PEE+EEuEEkE@PEEkE@PEEkEPuuEkEEPuuu tMkEEfMfM}}EEƋEEʍEPEPEPEPEPEMΉEM҉HEMHE+E@E ~kEfxuMEM}u u}t EPEPdÐUEE@EE @EEE8}؉EE؉E EEE 8}؉EE؉E E EE9E}EPEPEEPEPEPK u(}} EMEME8uuÐEMHÐUhfEM PeMAEElE@kMEE+EkM AmEPEPEP EE@;EE@kMfMf}fEfEEE M9~~EE븐E@kMEE+EkM AmEPEPEP  EE@;EE@kMfMf}fEfEEEM9EM +@E밐E@kMEE+EkM AmEPEPEP EEM9E@kMfMf}fEfEEEM ;E~EE+@E밐E@kMfxtEM U  ËEM U  IÐUE ME f@t `EÐU3EEuEhnjMAE@fElE}}_EPuu uEPuEPefEftEPuuO uEPuEPqEE M9~#+kM A@EEnEPEPÐUEhrj3EfM fEE EhwP EEkEEfEE9EkEEf@u8uEPEPurEPEP U$uEEEEfE fEEEEEEHxEuE@E ty |~ ~'wEHx E몐u|뜐EM)EPM3ÐE؉EphuEM)΃-tσ\t}0|ԃ}9fEf-0fEuEPEP uEPup EPuÐUVEEE } ؉EE}uh~u? ^ÐEEhPEEkEEMIkUf fEE9E|kP EkEuNEE+}~(EPEPu EPjE0NE} |҃}~ N}}u-NFPhuo u }tuw E^ÐUEEEE@E} }E؉EE ؉E }}E؉EE؉EuEPu EP3uEMHEMMfEMf)fÐUEEEhPhEEHE7E@kMiME} kMMfE} UM}}ċEfMfkEEfxuMEMEMH}u u2 ÐUhj u*UhjuUhj uVUhjuBUu j u0ÐUu j uÐUV95Xw^ÐV95Xw^ÐUWVu u^_ÐF t5F t3 VRF P }F tv FF FF듐UVuF u'F2F t~t9FsV+F tF t^3^ÐUVu F $R N tF $<u~t9Fu~uF DuV3 u:F D>V:NxEVEP F t^E^ÐUSWVu~+؉>F Dt3F \+FFF \+N 3;} V? ~$SWF P@ ;tN ^_[Ð3^_[ÐUVuF $<tF u ^ÐF $ F ~u VJ9Fu:F Du4F \+FFF \+N 3;} V3^ÐUWVu~ F u?}F N5h6F tN F NאF @N \FW t F uN @^_UWVuF \+ }F \^_Ð9~~~^_UWVu~u V!F uF N F Dt$9=XvG @tWFF t F \+FPvF P FNx ^_Ð~tN N F tf F^_ÐU WVu 5 EV-=(AWVu ETE^_ÐUWVu>~u;u^_ÐUV  u^Ð u^UV  u^Ð u^UjP<Ðj.r 3YãYj. rYãYUjuÐU5(E PuÐUCuÐUPu u(ÐUVuVVu u ^ÐU SWVu t}tE8u 3^_[ÐE x+E at:rtQwu t؀hSu E }2 tf̐ t3븐FEF tE 8ruF E 8au ujju &F 3ɉN \^_[Ðj.s#u ,+YUVEEE@ u @ t H uuu E@ t^Ë^ÐUSWVu} ~}3^_[ÐEE ؃~*V@uE H+u ȋE+^_[ÐFF;rËW6u ljE)~>F \+N 3;} V,+wE^_[ÐUSWVE= u6            E؋5 Eu55 9= u5 >t;w ;K$;w9= u t3^_[E}v5 jb ;t=Ee ǹ t>Ǚ+ډUNjE% + +؉EEe E;dEE=vh@Cmu@uWa =  8E+ED ;t ȋ   u ;s    95 u  F^_[ÐUWVu= $ 9u= ^_ÐUSWV}Gt WG+Eu v t9uu^_[ÐE EE9EsEEEPuV ;sŋE;rE+  륐USWVu} ~<}~6F $<u~t9Fu~uF DuV3 t 3^_[ÐF \EEE 9FreF urWWuF P ;t N 3؋Ù} ^_[ÐV@uE H+u ȋE+^_[Ð]EM+ ~ɋ;rËSuu )^F \+N 3;} V+uF Dt!F uSj vA t V@E^_[ÐU,WV } 3^_Ðjh0u |jk$PW j$EPW0 $t WJ봐W>}tjEPh A   ^_ÐU(WVh<h@E u3^_Ðju^h|-jE EPhTE@ P fEfEހeEPhTE@ Pi hu 8EHx E؋ u tt sF= t x hj fEfEEPhTE@ P uj}؜t un= tjkP ^_ÐU ÐUWVu C t9wu ^_Ðj.rYãYUWV5q uL}tuY tWuj- jh\j V+PVj jh`j ^_ÐUVu |95 3^Ë( ^ÐU E@uËEMEMɉH3UEdÐUmNAd90d%Ðj.(rYãYU}u3j Eh/jEEE}t7E9Ev )EE'E+EEEEEMujuW jH E}| uj} }}}tEEP EEÐÐUVEEEEEE2EEEPuu  E^UVWSU ߎNj} ++ыڋ}~+ttف+U+~4~+ttف+E[_^UVu }u ^ÐF t9Fr9Fu~uMFE^ÐU E@uÃ}tEMɉEÐj.(rYãYUE%EE%EMEE0ÐUSWVu} ]{ 2t3E+)CESPSWjVE ^_[WVE0 NjM^_[ÐUSWVu}EG EE}2u  E\EE tV%tQFE t%u+ÉEEEE;EvEPWuSuSu EE}uqE+E)GEGE;Ev 2t WJG Dt'G uuj E+EP t WG t ^_[ÐE^_[3EȉEEEFFFEă91 .$7MɐMM빐M뱐M@E뢐E@u"E E @E }؉E؀uzE E @E b뵐EDuM Eă0EkE Eă0EFE uE@t EEEE MEE E @E]] }!EhE=؉E%Et EjEtElEEE  u>E@u@6EE EfEf f ŠM*Ȁ0K } KE0E@tEM++E ~ EЉEME+ÉEEEE9EhE#EE E @E]]FEP K2EEEEEE E @E}XupE]]EE uE@u6EЉEM%KE#EEE%ME uE@tEM++E ~ EЉEME}EăXt;ot xtfEEܘEEܜꐐE E E @E]@'E E X uE@uS ÉEF|||8tMyꋅ|HӐ3j7j73j76j7j7j7j73x3j733j73h!X0c3dNlos!uxːEEE t,fEu M+EE E+EEЋE؉EEE+ExEPWjhxx܋xEt;EvEPWxh!xhue tE}tAEEp;EvEPWuu2uuu pEfEEЉlEPWjhll܋lEh;EvEPWlh!lhu hE}~?EEd;EvEPWuS`uSuL dEfEȄEE9EE+E`EPWjh``܋`E\;Ev EPW`h``hu \E9j.YUV95Xv F u^Ð3^Ðj). rYãYj*.r  YãYj.r  YãYj.rYãYj.rD$ 3YãYU=uhhAÐ5!U=t51ÐUVu>:t > tF>u> u ^Ð>tF^ÐU=u hh u3Ð5U VuhhH 3 u3^Ð5$ VT5( VC tԀ>:tj EPV EVPj:V ;EuV}| }`~aE,  r>:ij EPVW EVwPj:V ;E9V}| }`~ aE0 58 5< Vb5@ VQ5D V@5( >,tF>u>tF54 $ ^Ðj;.(YUSWVu 3F $<u~t9Fu~uF Du VF3 t 3^_[ÐF \EF mSjuuE t+]K)^F \+N 3;} V}tF @t V2@t'^_[Ð]EM+ V @u^_[ÐuEPuF P E^_[Ðj.rYãYj6.(rYãYUEPhTu }3ÐÐj%. r 3YãYj.(rYãYUWM ~ߎNj}E uH+_UVWUߎNj}Nju ~+ttف+ ~_^j.(rYãYj.rYãYUEEP@u ËEÐUWVu~ ~tF t vf E F uѹO~+ttف+E_^UVWߎNj} +ы}ǃ~/ttف+_^j>.(rYãYj(.0rYãY@(#)enroll RTS 5.3b of Jul 26, 1988%s/%s.keyGimme key: fnamew@(#)enroll.c 1.1 88/06/08 /usr/spool/secretmail-/usr/lib/makekey-/lib/makekeyenroll: cannot generate key @(#)lib.c 1.1 88/06/08 nin%s movemp: no free space%s itomitom1itom2m_addm_submdiv divide by zerom_div1m_div2m_div3m_multpowrpowrpow20 m_out%s s_div8PPXX/etc/utmpr/dev/ttyUnknown error: -+ 0123456789ABCDEF0123456789abcdef0x0X(null) 00000000000000000000r/etc/passwdrError 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo childrenNo more processesNot enough corePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a character deviceText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeMath arg out of domain of funcMath result not representableFile system needs cleaningWould deadlockNot a name fileNot availableIs a name fileNo message of desired typeIdentifier removedNo record locks available$4LXt ,@P`p $4@` +/etc/utmp (((((  H /dev/d typeIdentifier removedNo record locks available$4LXt ,@P`p $4@` +/etc/utmp ((((( bin/xsend100755 3 3 66564 4273152472 7153 37777777777 ,Zt Jd`@?H?ZZDG`t &~ã3(PZ.U }t hT 65E u56Eu:@PN1uP1:E @05@h:50hp9hph^9hh$9 } hx/ 505@;thhl/hh.\& u h h5@-  u5@5j,50h49hh4y8EK5 jjhd&H/f=d&t)EPh4hf&7 uE9E~EE @ tEEE} };EEP505@hh46hh4& |} u h hh4,t&EP9EP&P5hh65@50hh\6h8jq+ÐUj.EE5\&E4E}*|5\&H EE}}}}zEtukEE4E M+ E M􋄈M E M􋄈MIHEE@pE}}EEEXE}} EѐÐU5 5 5 3 E}|Ð5 EE%M 5 L E}|ÐUj/  @ E8j ME@EE}*|E,E}}j M UE}} EɐEEƀE}|ÐUEEh5EE,kEPu5t&5 EE;EEmEEEMEE9E|}tjhPhuh( hHu\4 t\;EEE E}|EE ÐUj uh4 EEE8uEP*1) u\j"j"un'uc'jhLhP_' jhbhdK' jY'j hu5 j5j hu0 ththlp)j 'ÐUEV5`&55`& 0Mff3ȡx&@f5`&5x&5`& E}|5`&5 55`& 5 5`&52 8u @f8t5`&55`& ÐU j{EEjeME}*|3EE/x&@fu5x&E4 E45u 5 u5& EuEu5 E4 E45u7 . x&Ifu5x&E4l E45 5u EE}*E%E45`&4 E}*|E}*|ÐE45 54 E}*|U E{EEEEEE} |u--f%f IfE} |-Mfff?x&@f555 55x&5 E} |ÐUj`&jjj&j@jj5j-5&& 5j5& jVx&jG ÐUu jju)u E0jp(EÐUu^u jju4%hE0MAu E0jp%EÐUuhhl$ j5"ÐU 3EEEEEPuEPu 0EPEPEPEP EPEPEPEP}uuEPEPnEPbEPVEPJU4E3E܉EEEEEjEfEPu EPuEPEPEPEPGEPEPEPEPEP EPEPEP; EPEPEPEPEPEPE}suEPcEuuuu  EP0EP$EPEP EPEPÐUu E M EE }؉E}tNhuIM AEEE9E}!E @kMMIkUf fՐÐÐUkEP"E uh 3ÐUuhhl! h^jH)ÐUE8tp$EÐUEE td }؉EEEM}~E@kMfxtE9Et.}uuÐE8~M EMىUhjE}~.hjMAE@fMfEÐ}}.EhjMAE@MƐE뻐U EM 9t M +ÐEEPu u EEEPEUhE@P EEEEkEEfMfEE M9~^E@kM IkU EEfEtEkEEfM묐EkEEfMfEEM9~*@kEEfEtkEEfMǐ}ukEEfEMA EM EMHE8u u)"UEEE@EE EE @EEE}|L}|.E9E|EPEPEP}tEPEPE萐E؉EEPEPEF}*E؉EE؉EEEPEPEPJE؉EEPEPEP uEMHEMMÐUfEEEEhE0MAEE EE@kMfMfEE M9~fE@kM IkU +EEfEtEE@kMfMEE@kMfMfEEM9~1@kEEfEtE@kMfM}}DEE@kMf0EEM9EM uEPu EHEEMIÐM}|#E@kMf8~}uϋEMAϐEpUEEE EE@EE @EEE}|`}|>E9E|EPEPEP EEPEPEPݐE؉EEPEPEP}EE؉EE؉E밐E؉EEPEPEP EE9Eu }tuE9E u }tu uEMHEMMÐUEE@EE @EEE } E؉EE E }E؉EE؉Eu5u*uuEPEP}uEȋ ىEȋ ىÐUEEEE?EkMM M+kMM EkEEfMfEEEE 9E|kEEEEkEEfMfE u3ÐEEEkEEfMfEE 9E})kEEkMM EE }E뻸ÐUE9Eu EEE}EMiEMM+EEiM M+EE |΋EÐU:3EΉEƉE։EދE 8uh2ÐE 8udhjMAEpuE @Pu E@f8uEpEËEÐEM 9}dEEM h E0bMAEEEM9@kMIkUf fӐEEEʋE EM IkUIAfEEPEPu~ EPEPu k kEE@EkEE@EhE+E@PEE+EEuEEkE@PEEkE@PEEkEPuuEkEEPuuu tMkEEfMfM}}EEƋEEʍEPEPEPEPEPEMΉEM҉HEMHE+E@E ~kEfxuMEM}u u}t EPEPdÐUEE@EE @EEE8}؉EE؉E EEE 8}؉EE؉E E EE9E}EPEPEEPEPEPK u(}} EMEME8uuÐEMHÐUhEM PeMAEElE@kMEE+EkM AmEPEPEP EE@;EE@kMfMf}fEfEEE M9~~EE븐E@kMEE+EkM AmEPEPEP  EE@;EE@kMfMf}fEfEEEM9EM +@E밐E@kMEE+EkM AmEPEPEP EEM9E@kMfMf}fEfEEEM ;E~EE+@E밐E@kMfxtEM U  ËEM U  IÐUE ME f@t `EÐU3EEuEh"jMAE@fElE}}_EPuu uEPuEPefEftEPuuO uEPuEPqEE M9~#+kM A@EEnEPEPÐUEh&j3EfM fEE Eh+P EEkEEfEE9EkEEf@u8uEPEPurEPEP U$uEEEEfE fEEEEEEHxEuE@E ty |~ ~'wEHx E몐u|뜐EM)EPM3ÐE؉EphPuEM)΃-tσ\t}0|ԃ}9fEf-0fEuEPEP uEPup EPuÐUVEEE } ؉EE}uh2u^ÐEEh5PEEkEEMIkUf fEE9E|kPEkEuNEE+}~(EPEPu EPjE0NE} |҃}~ N}}u-NFPh;uG u`}tuOE^ÐUEEEE@E} }E؉EE ؉E }}E؉EE؉EuEPu EP3uEMHEMMfEMf)fÐUEEEh?PhEEHE7E@kMiME} kMMfE} UM}}ċEfMfkEEfxuMEMEMH}u u ÐUhPj u*UhPjuUh^j uVUh^juBUu j u0ÐUu j uÐUVP95 w^ÐV95 w^ÐUWVu u^_ÐF t5F t3 VRF P }F tvFF FF듐UVuF u'F2F t~t9FsV+F tF t^3^ÐUVu F $RV:NxEVEP F t^E^ÐUSWVu~+؉>F Dt3F +FFF +N 3;} V? ~$SWF P0 ;tN ^_[Ð3^_[ÐUVuF $<tF u ^ÐF $ F ~u VJ9Fu:F Du4F +FFF +N 3;} V3^ÐUWVu~ F u?}F HN5h F tN F NאF "N FW* t F uN @^_UWVuF + }F ^_Ð9~~~^_UWVu~u V!F uF N F Dt$P9= vG @tWFF t F +FPvF Px FNx ^_Ð~tN N F tf F^_ÐU WVu 5E|&V-=AWVu ETE^_ÐUWVu>~u;u^_ÐUVt t u^Ðt u^UVt t u^Ðt u^Uj'P(Ðj.r 3YãYj. rYãYUu PHÐUSWVE+EEPwtkt O98kt <kt @ESW\uWNE=4t6; ;u.|(9u 9uu}EEPUG ^_[ÐUWVu} :|vL-mF+F+^_ÐUSWVEQUEE}} EQM컐 E<EǙ{Ep }|*FGW;E/W)E㐐FGPcEO}|= u5 WA=nu 3 +4G94~F{  ^_[ÐU SWVt xGF uEk@ǔt GFGFGFF]kǬGFGFGF3VdPVdPVdPVzExd|F2F0E@dPVQt ^_[ÐUE uEd uE unÐmÐUVuF} |E 0 FE 0F^ÐUSWV=t~EPEk<E4j jEP#P5, j =4tjEPt#P50 h" >, 02҈QP=,>t Ku>-E tF3>9FFk 0؀>0}}t؋i>@4 t=0>t Ku^_[ÐUjuÐU5E Pu!ÐU+uÐU SWVu }EEG u 3^_[ÐNoGG;|ƋSj 7u#E t+]])_G +O 3;} W}tEE^_[Ð+ ~W@xE9Eu^UDPu u(ÐUVuV'Vu u ^ÐU SWVu t}tE8u 3^_[ÐE x+E at:rtQwu t؀hSu" E }2 tf̐ t3븐FEF tE 8ruF E 8au ujjuV! &F 3ɉN ^_[Ðj.s#u +YUVEEE@ u @ t H uuu E@ t^Ë^ÐUSWVu} ~}3^_[ÐEE ؃~*V@uE H+u ȋE+^_[ÐFF;rËW6u ljE)~>F +N 3;} VT+wE^_[ÐUSWVE= u6            E؋5 Eu55 9= u5 >t;w ;K$;w9= u t3^_[E}v5 j~  ;t=Ee ǹ t>Ǚ+ډUNjE% + +؉EEe E;dEE=vh@Cmu@uWS =  8E+ED ;t ȋ   u ;s    95 u  F^_[ÐUWVu= $ 9u= ^_ÐUSWV}Gt WG+Eu v t9uu^_[ÐE EE9EsEEEPuV ;sŋE;rE+  륐USWVu} ~<}~6F $<u~t9Fu~uF DuV3 t 3^_[ÐF EEE 9FreF urWWuF P ;t N 3؋Ù} ^_[ÐV@uE H+u ȋE+^_[Ð]EM+ ~ɋ;rËSuu )^F +N 3;} V'+uF Dt!F uSj v] t VhE^_[ÐU,WV[ } 3^_Ðjh |jk$PWr j$EPW $t Wr봐Wf}tjEPh    ^_ÐUV$ t6u u;^ÐUWVu t9wu^_Ðj.rYãYUWV5q u}tu tWuj jhj VPVjo jhj^ ^_ÐUVu |95( 3^Ë| ^ÐU'E@uËEMEMɉH3UEÐUmNA90%Ðj.(rYãYU}u3jEh9jEEE}t7E9Ev )EE'E+EEEEEMujuujE}| ujE} }}}tEEPSEEÐÐUVEEEEEE2EEEPuu h E^UE EPuhPF UEEPu u, ÐUVuEEEuuV4EE2uu EP ^Ðj. r 3YãYUVWߎNj} +ы}>ѹO~+ttف+E_^UVWߎNj}׋u +ыtHw_^UVWߎNj} +ы}ǃ~/ttف+_^UWߎNj}+H_UVWSU ߎNj} ++ыڋ}~+ttف+U+~4~+ttف+E[_^UWVE u&juhh hWjmjjAjj3EPE;EtuVj Wj}u E^_ÐE^_ÐUV}tE0^ÐUVu }u ^ÐF t9Fr9Fu~uMFE^ÐUzE@uÃ}tEMɉEÐj.(rYãYUE%EE%EMEE0ÐUSWVu} ]{ 2t3E+)CES`SWjVE ^_[WVE0 NjM^_[ÐUSWVu}EG EE}2u  EEE tV%tQFE t%u+ÉEEEE;EvEPWuSuSu EE}uqE+E)GEGE;Ev 2t WZG Dt'G uuj E+EP t WG t ^_[ÐE^_[3EȉEEEFFFEă91 .$E@u@6EE EfEf f ŠM*Ȁ0K } KE0E@tEM++E ~ EЉEME+ÉEEEE9EhE#EE E @E]]FEP K2EEEEEE E @E}Xu 4E]]EE uE@u6EЉEM%KE#EEE%ME uE@tEM++E ~ EЉEME}EăXt;ot xtfEEHEELꐐE E E @E]@'E E X uPE@uSÉEF|||8tMyꋅ|HӐ?CC?CBCCCC??C??C$@h!X0c3dNlos!uxːEEE t,fEu M+EE E+EEЋE؉EEE+ExEPWjhXxx܋xEt;EvEPWxhX!xhXui tE}tAEEp;EvEPWuu2uuu" pEfEEЉlEPWjhpll܋lEh;EvEPWlhp!lhpu hE}~?EEd;EvEPWuS`uSuP dEfEȄEE9EE+E`EPWjhX``܋`E\;Ev EPW`hX``hXu \E9USWVu} DžGG u ^_[Ð9 tCNx  V E9 uVP@@u몐%u GG؃%u7Nx  VE;hVP@ta*uDžGG DžEkE Ã0EGG9 u}uE]lthuGG [uPW 9 t El ct:[t5Nx  VE9 uVP@ct st[uEPVPuSEPVuuS=E t }_} ^_[ÐUhSWVu}EEEEEEE dw,.$IEE tEkE_3^_[ÐHHHHIIIIIIIHIIIIIHIIHNx  VN؃+t -u"EMNx  V"MxT9 u}9 9 t09 t7W+؉EE9E|L}&}}}ljEPE0 E}t}u EEEEEê}t.u EE tet Em}cEE UêNx  V9 u+t-"jF}t}tE؉E}lt}huE@fMfE@MVS@u EE^_[ÐU SWVu} ] tE@3EEcu uEHxE uE@t5su E9 u$[u EE8u tEMEK }t ~uu@u EE9Eu 3^_[Ð t ctE^_[ÐUSWVu} E>^uEFh}PW E]t-u_EM FS}u 3^_[Ð}-u2E]t'F;]}E+@PuPt 붐EM FFE]u^_[Ðj.YUVP95 v F u^Ð3^Ðj( .rYãYj). rYãYj*.r  YãYj .rYãYj.r  YãYj.rYãYj.rD$ 3YãYU=uhhQÐ5U=t5iÐUVu>:t > tF>u> u ^Ð>tF^ÐU=u hh u3Ð5U Vuhh  u3^Ð5 VT5 VC tԀ>:tj EPV EVPj:V1 ;EuV}| }`~aE  r>:ij EPV; EVPj:V ;E9V}| }`~ aE 5 5 Vb5 VQ5 V@5 >,tF>u>tF5  ^Ðj;.(YUSWVu=wV u?u3^_[ÐUWVu} G8Gu F~=u^_À>u=t3^_Ðj.rYãYUV} u~tF^Ð >t9Eu} t׃~tыF^Ð}}E؉EEEE<REPuhh^ÐUEPhTu }3ÐÐj%. r 3YãYj.(rYãYUVW+M ~[ߎNj} ыEt++ы}~-ttف+ t_^UWM ~ߎNj}E uH+_UVWUߎNj}Nju ~+ttف+ ~_^j.(rYãYj.rYãYUEEPs@u ËEÐj0. rYãYU4SWVj u+j uj u ^_[Ðj/V uGjh, E |3Ff}tf}tf}tf}u(j EPW4 uu^_[ÐCj$EPu $tuVUjh< j ÐUjhD j{ Ðj6.(rYãYUWSUߎNj}E ~'ف+  ~E[_UVuVjjF P FFf F tf ^ÐUVW+M ~ ߎNj}+ыʋu tHw_^UWߎNj}+OE u@+_USWVu}E} tE 0 |$~ 3^_[ÐE9 u, FEE9 u+t-u EFE u&}0t ~xt~XuE9 t9 t0E9 tW E7E;Qu(}0u"F9 t~xt~Xu EE9 t0E9 tW E7?E9 t0E9 tW E7E;}+EFE9 u} tE 0}t^_[Ð^_[ÐUXWVjju t 3^_Ðu tEPu  |fEf%f= ujhL  |jEPVj t"jjV O uVwf}t t fEf9EuhL h EPh EPh  yfEf9EkfEf%f= Y tfEf9EGVW ^_ÐUj#hT j_ jÐU"jPU"jPUE wn.$Zuu u Ð}u3EEPjuې}u3EEPjސ}u3EEPjƐÐYYYYYYYYÐj. r 3YãYj>.(rYãYj(.0rYãY@(#)xsend RTS 5.3b of Jul 26, 1988/usr/spool/secretmail/mail to exactly one person.keyaddressee not enrolledwarning: addressee's key file may be subverted raddressee's key weirdr.%d%s%s.%dcannot create mail filewFrom %s %smail %s <%snotice @(#)xsend.c 1.2 88/06/08 <. -/usr/lib/makekey-/lib/makekeyenroll: cannot generate key @(#)lib.c 1.1 88/06/08 nin%s movemp: no free space%s itomitom1itom2m_addm_submdiv divide by zerom_div1m_div2m_div3m_multpowrpowrpow20 m_out%s s_div T$"" " W`/Lw/K:/JMFw/Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDecTZ/etc/utmpUnknown error: -csh/bin/sh-+ 0123456789ABCDEF0123456789abcdef0x0X(null) 00000000000000000000r/etc/passwdrASTADTESTEDTCSTCDTMSTMDTPSTPDTJSTGMT+-GMT%s%d:%02d,hError 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo childrenNo more processesNot enough corePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a character deviceText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeMath arg out of domain of funcMath result not representableFile system needs cleaningWould deadlockNot a name fileNot availableIs a name fileNo message of desired typeIdentifier removedNo record locks availableHP\x   0 D P h t          ( 8 P ` x         0 L ` +/etc/utmp ((((( H atof:fltrd:/dev/ Floating Point Not Present lableHP\x   0 D P h t          ( 8 P ` x  bin/xget100755 3 3 65560 4273152455 6775 37777777777 ,Wp p Jd`@?H?WWDG`p ~ã3&P'U1<;/ u5<?1 jhT/Pt555 E=uhd1h|h' hPJh1hhh& t j&dt! t!&ji&h`85 E9E~E455h\h4hh{5 h0h7h05e3= t =uhh5EEEu琐EEuu5E@hu& u u7555i5[h6nyqfswtj$ÐUEM +ÐUh5b% u5.ji$5hZ4hh3m5jjh&@ uSf=t9EPhh03 u=d}%M @ t=uh.j#hj5h.ÐU555 5555EE}OE IfAfEE%Phu `% f}E%Phu A% u5bE@ AÐUj uh#3 EEE8uEP>-$ u\j"j"u2"u'"jhh#" jhh" j"j huk4 j-4j huk/ thh4$j!ÐUEV555 .Mff3ȡ@f555 E}|5555 5552 8u @f8t555 ÐU j{EEjeM@E}*|3EE-@fu5E4@ E4@5u 5u5 EuEu5E4@ E4@5u7 S- Ifu5E4@l E4@55u EE}*E%E4@54@ E}*|E}*|ÐE4@554@ E}*|U E{EEEEEE} |u7,?,f%f IfE} |,Mfff?@f5585 555 E} |ÐUjjjjj@8jj5j-5& 5j5 jVjGÐUu jju#u E0jp#EÐUu^u jjuh<E0MAu E0jpEÐUuh@h_ jÐU 3EEEEEPuEPu 0EPEPEPEP EPEPEPEP}uuEPEPnEPbEPVEPJU4E3E܉EEEEEjEfEPu EPuEPEPEPEPGEPEPEPEPEP EPEPEP; EPEPEPEPEPEPE}suEPcEuuuu  EP0EP$EPEP EPEPÐUu E M EE }؉E}tNhDuIM AEEE9E}!E @kMMIkUf fՐÐÐUkEPE uhI 3ÐUuh[h hj'ÐUE8tpqEÐUEE td }؉EEEM}~E@kMfxtE9Et.}uuÐE8~M EMىUh_jE}~.hdjMAE@fMfEÐ}}.EhjjMAE@MƐE뻐U EM 9t M +ÐEEPu u EEEPEUhpE@P EEEEkEEfMfEE M9~^E@kM IkU EEfEtEkEEfM묐EkEEfMfEEM9~*@kEEfEtkEEfMǐ}ukEEfEMA EM EMHE8u uUEEE@EE EE @EEE}|L}|.E9E|EPEPEP}tEPEPE萐E؉EEPEPEF}*E؉EE؉EEEPEPEPJE؉EEPEPEP uEMHEMMÐUfEEEEhvE0MAEE EE@kMfMfEE M9~fE@kM IkU +EEfEtEE@kMfMEE@kMfMfEEM9~1@kEEfEtE@kMfM}}DEE@kMf0EEM9EM uEPu EHEEMIÐM}|#E@kMf8~}uϋEMAϐEpEUEEE EE@EE @EEE}|`}|>E9E|EPEPEP EEPEPEPݐE؉EEPEPEP}EE؉EE؉E밐E؉EEPEPEP EE9Eu }tuE9E u }tu uEMHEMMÐUEE@EE @EEE } E؉EE E }E؉EE؉Eu5u*uuEPEP}uEȋ ىEȋ ىÐUEEEE?EkMM M+kMM EkEEfMfEEEE 9E|kEEEEkEEfMfE u3ÐEEEkEEfMfEE 9E})kEEkMM EE }E뻸ÐUE9Eu EEE}EMiEMM+EEiM M+EE |΋EÐU:3EΉEƉE։EދE 8uh|2ÐE 8udhjMAEpuE @Pu E@f8uEpEËEÐEM 9}dEEM hE0bMAEEEM9@kMIkUf fӐEEEʋE EM IkUIAfEEPEPu~ EPEPu k kEE@EkEE@EhE+E@PEE+EEuEEkE@PEEkE@PEEkEPuuEkEEPuuu tMkEEfMfM}}EEƋEEʍEPEPEPEPEPEMΉEM҉HEMHE+E@E ~kEfxuMEM}u uu}t EPEPdÐUEE@EE @EEE8}؉EE؉E EEE 8}؉EE؉E E EE9E}EPEPEEPEPEPK u(}} EMEME8uuÐEMHÐUhEM PeMAEElE@kMEE+EkM AmEPEPEP EE@;EE@kMfMf}fEfEEE M9~~EE븐E@kMEE+EkM AmEPEPEP  EE@;EE@kMfMf}fEfEEEM9EM +@E밐E@kMEE+EkM AmEPEPEP EEM9E@kMfMf}fEfEEEM ;E~EE+@E밐E@kMfxtEM U  ËEM U  IÐUE ME f@t `EÐU3EEuEhjMAE@fElE}}_EPuu uEPuEPefEftEPuuO uEPuEPqEE M9~#+kM A@EEnEPEPÐUEhj3EfM fEE EhP EEkEEfEE9EkEEf@u8uEPEPurEPEP U$uEEEEfE fEEEEEEHxEuE@E ty |~ ~'wEHx E몐u|뜐EM)EPM3ÐE؉EphuEM)΃-tσ\t}0|ԃ}9fEf-0fEuEPEP uEPup EPuÐUVEEE } ؉EE}uhu ^ÐEEhPEEkEEMIkUf fEE9E|kP EkEuNEE+}~(EPEPu EPjE0NE} |҃}~ N}}u-NFPhu u$ }tu E^ÐUEEEE@E} }E؉EE ؉E }}E؉EE؉EuEPu EP3uEMHEMMfEMf)fÐUEEEhPhEEHE7E@kMiME} kMMfE} UM}}ċEfMfkEEfxuMEMEMH}u u ÐUhj u*UhjuUhj uVUhjuBUu j u0ÐUu j uÐUV95w^ÐV95w^ÐUWVu u^_ÐF t5F t3 VRF P }F tv FF FF듐UVuF u'F2F t~t9FsV+F tF t^3^ÐUVu F $RV:NxEVEP F t^E^ÐUSWVu~+؉>F Dt3F +FFF +N 3;} V? ~$SWF P ;tN ^_[Ð3^_[ÐUVuF $<tF u ^ÐF $ F ~u VJ9Fu:F Du4F +FFF +N 3;} V3^ÐUWVu~ F u?}F N5hF tN F NאF N FW) t F uN @^_UWVuF + }F ^_Ð9~~~^_UWVu~u V!F uF N F Dt$9=vG @tWFF t F +FPvF P FNx ^_Ð~tN N F tf F^_ÐU WVu 5EV-=lAWVuC ETE^_ÐUWVu>~u;u^_ÐUVp p u^Ðp u^UVp p u^Ðp u^Uj&PD'Ðj.r 3YãYUju3"ÐU5lE Pu;%ÐU(gu!ÐU SWVu }EEG u 3^_[ÐNoGG;|ƋSj 7u&E t+]])_G +O 3;} W@}tEE^_[Ð+ ~WR@xE9Eu^U!Pu u(ÐUVuVcVu u ^ÐU SWVu t}tE8u 3^_[ÐE x+E at:rtQwu t؀hSu& E }2 tf̐ t3븐FEF tE 8ruF E 8au ujju% &F 3ɉN ^_[Ðj.s#u p+YUVEEE@ u @ t H uuu  E@ t^Ë^ÐUSWVu} ~}3^_[ÐEE ؃~*V3@uE H+u ȋE+^_[ÐFF;rËW6u$ ljE)~>F +N 3;} V+wE^_[ÐUSWVE=t u6x  t t  x | x p t |  E؋5p Eu55p 9= u5 >t;w ;K$;w9=| ut t3^_[E}v5 j>$| ;t=Ee ǹ t>Ǚ+ډUNjE%| + +؉EEe E;dEE=vh#@Cmu#@uW = | 8E+ED| ;t| ȋ | t up ;s p p  95 u p  F^_[ÐUWVu=p $| 9u= ^_ÐUSWV}Gt WG+Eu v t9uu^_[ÐE EE9EsEEEPuV! ;sŋE;rE+  륐USWVu} ~<}~6F $<u~t9Fu~uF DuV@3 t 3^_[ÐF EEE 9FreF urWWuF P ;t N 3؋Ù} ^_[ÐV>@uE H+u ȋE+^_[Ð]EM+ ~ɋ;rËSuu )^F +N 3;} Vc+uF Dt!F uSj v t VE^_[ÐU,WV! } 3^_ÐjhtQ  |jk$PW2 j$EPW $t W봐W}tjEPh Y   ^_ÐU(WVhhE u3^_Ðju: h1j E EPhTE@ P fEfEހeEPhTE@ P hu| 8EHx E؋ u tt sF= t x hj fEfEEPhTE@ P0 uj}t u= tjPI ^_ÐU ÐUWVu t9wu;^_Ðj.rYãYUWV5q u}tu tWuj  jhj VPVj jhj ^_ÐUVu |95( 3^Ë| ^ÐUvE@uËEMEMɉH3UVE Eut% huu  t^Ë^ÐUE E E EEPuU SWV E +EE;P+ÉEEEEu} +9uuV E u)]uVҐ}}dŐWu E uW]u9}~.9uuW]uV ]uWV+렐+9}r9uup=tEEEEE9ErE+EM +M;|u EPEE uuEÉEV)]uWC )]}^_[ÐUSWV Eu} FG_Mu^_[USWV Eu} ]EFCEMu^_[UEÐUmNA90%Ðj.(rYãYUVuV3jjF PU FFf F tf ^ÐU}u3jEh6jCEEE}t7E9Ev )EE'E+EEEEEMuju+jE}| uj} }}}tEEPEEÐÐUVEEEEEE2EEEPuu D E^UE EPuh" UEEPu u ÐUVuEEEuuVEE2uu EP ^Ðj. r 3YãYUVWߎNj} +ы}>ѹO~+ttف+E_^UVWߎNj} +ы}ǃ~/ttف+_^UWߎNj}+H_UVWSU ߎNj} ++ыڋ}~+ttف+U+~4~+ttف+E[_^UWVE u&juhhhjujjjjEPE;EtuVjWj}u E^_ÐE^_ÐUVu }u ^ÐF t9Fr9Fu~uMFE^Ðj .r 3YãYU0E@uÃ}tEMɉEÐj.(rYãYUE%EE%EMEE0ÐUSWVu} ]{ 2t3E+)CESSWjV?E ^_[WVE0 NjM^_[ÐUSWVu}EG EE}2u  EEE tV%tQFE t%u+ÉEEEE;EvEPWuSuSu EE}uqE+E)GEGE;Ev 2t WG Dt'G uuj E+EP t WG t ^_[ÐE^_[3EȉEEEFFFEă91 .$P@MɐMM빐M뱐M@E뢐E@u"E E @E }؉E؀uzE E @E b뵐EDuM Eă0EkE Eă0EFEuE@t EEEE MEE E @E]] }!EܼE=؉E%Et EܾEtEEEE  u>E@u@6EE EfEf f ŠM*Ȁ0K } KE0E@tEM++E ~ EЉEME+ÉEEEE9EhE#EE E @E]]FEP K2EEEEEE E @E}XuE]]EE uE@u6EЉEM%KE#EEE%ME uE@tEM++E ~ EЉEME}EăXt;ot xtfEEEEꐐE E E @E]@'E E X uE@uSÉEF|||8tMyꋅ|HӐ<@@<@?@@@@<<@<<@8=h!X0c3dNlos!uxːEEE t,fEu M+EE E+EEЋE؉EEE+ExEPWjhxx܋xEt;EvEPWxh!xhue tE}tAEEp;EvEPWuu2uuu pEfEEЉlEPWjhll܋lEh;EvEPWlh!lhu hE}~?EEd;EvEPWuS`uSuL dEfEȄEE9EE+E`EPWjh``܋`E\;Ev EPW`h``hu \E9USWVu} DžGG u ^_[ÐtCNx  VEuVP@u몐%u GG؃%u7Nx  V.E;hVP@ta*uDžGG DžEkE Ã0EGGu}uE]lthuGG [uPW t El ct:[t5Nx  VJEuVP@ct st[uEPVPuSEPVuuS=E t }_} ^_[ÐUhSWVu}EEEEEEE dw,.$FEE tEkE_3^_[ÐEEEEFFFFFFFEFFFFFEFFFNx  V؃+t -u"EMNx  VMxTu}t0t7W+؉EE9E|L}&}}}ljEPE0i E}t}u EEEEEê}t.u EE tet Em}cEE UêNx  Vzu+t-"jF}t}tE؉E}lt}huE@fMfE@MVS@u EE^_[ÐU SWVu} ] tE@3EEcu uEHxE uE@t5su Eu$[u EE8u tEMEK }t ~uu@u EE9Eu 3^_[Ð t ctE^_[ÐUSWVu} E>^uEFh}PWQ E]t-u_EM FS}u 3^_[Ð}-u2E]t'F;]}E+@PuP 붐EM FFE]u^_[Ðj.YUV95v F u^Ð3^Ðj). rYãYj*.r  YãYj.r  YãYj.rYãYj.rD$ 3YãYU=@uh,h0@Ð5@U=@t5@)@ÐUVu>:t > tF>u> u ^Ð>tF^ÐU=@u hDh09@ u3Ð5@U Vuhh ? u3^Ð5 VT5 VC tԀ>:tj EPV% EV5Pj:Vu ;EuV}| }`~aE  r>:ij EPV EVPj:V ;E9V}| }`~ aE 5 5 Vb5 VQ5 V@5 >,tF>u>tF5  ^Ðj;.(YUSWVu 3F $<u~t9Fu~uF Du V>3 t 3^_[ÐF EF mSjuurE t+]K)^F +N 3;} V}tF @t V*@t'^_[Ð]EM+ V@u^_[ÐuEPuF P E^_[Ðj.rYãYj6.(rYãYUEPhTu }3ÐÐj%. r 3YãYj.(rYãYUVW+M ~[ߎNj} ыEt++ы}~-ttف+ t_^UWM ~ߎNj}E uH+_UVWUߎNj}Nju ~+ttف+ ~_^j.(rYãYj.rYãYUEEP-@u ËEÐUWVu~ ~tF t vf E F u.(rYãYj(.0rYãY@(#)xget RTS 5.3b of Jul 26, 1988/usr/spool/secretmail/Key: %s%s.%dzero length mail file r? ! s mbox a@(#)xget.c 1.2 88/06/08 <r.%dno secret mail %c%c-/usr/lib/makekey-/lib/makekeyenroll: cannot generate key @(#)lib.c 1.1 88/06/08 nin%s movemp: no free space%s itomitom1itom2m_addm_submdiv divide by zerom_div1m_div2m_div3m_multpowrpowrpow20 m_out%s s_div ((((( H ((0/etc/utmpr/dev/ttyUnknown error: -csh/bin/sh-+ 0123456789ABCDEF0123456789abcdef0x0X(null) 00000000000000000000r/etc/passwdrError 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo childrenNo more processesNot enough corePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a character deviceText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeMath arg out of domain of funcMath result not representableFile system needs cleaningWould deadlockNot a name fileNot availableIs a name fileNo message of desired typeIdentifier removedNo record locks availableHP\x  0DPht  ( 8 P ` x         0 L ` +/etc/utmpatof:fltrd:/dev/ Floating Point Not Present ystemToo many linksBroken pipeMath arg out of domain of funcMath result not representableFile system needs cleaningWould deadlockbin/sed100755 3 3 61750 4201131132 6552 37777777777 LRe! U @.textU .data@@ V@.bss`"@`"@.comment`bÐET`"@RU RP PUjÐUh'@ElG@E @tG@d#@J@I@$@@J@l'@J@Y@Y@\@G@@Ā@SJ@G@lG@G@À@$@@@pG@`@ @@\#@d@|G@`@I@=lG@uojc@@8-uf@@eefgon@@Ph@hp@7/ jAT lG@=lG@=J@l'@u/-@lG@G@K@ lG@G@=`@th@hp@.jS$@ J@Hx=lG@jl`#@WlG@ lG@  j~Sh@@@0OIxG@ u#@0h@hp@-. j7So5xG@JG@QG@G@@@0 lG@yh`@`JjRU WV=G@h@P | =@#u(=@nu `#@h@ < Y@@Y@8 t8 u Y@鐐Y@8t8;tJ@0!95tG@u!h@h(@hp@, jRJ@90u2 t 8h@hp@,jQ uJ@0J@8Y@8,t 8;Y@J@p;5G@v!h@hD@hp@T, j^QJ@pB95tG@t u!h@h(@hp@, jQJ@9puxJ@xJ@@95G@s!h@h@hp@+ jPY@8 t 8 @ Y@J@@J@yوH`@`@ J@ #@J@ G@9J@r!h@h@hp@>+ jHPJ@0Y@8J@8t!h@hl@hp@* jP `@yh,@hp@*jO`@ #@ J@J@08J@@ J@x h@h@hp@x* jO J@8t!h@hl@hp@F* jPOY@Y@8 t Y@@E/@9Er!h@hX@hp@) jOEE Y@Y@  uME5@T E txtUh@h<@2@@ @E@@9@r!h@hT@hp@d) jnNE J@HJ@@J@xt!h@h@hp@) j&NY@8\uY@Y@Y@8 t!h@h(@hp@( jMJ@pJ@p  J@@뒐J@@WJ@@J@@J@@J@@J@@ J@@Y@Y@8 t Y@Y@8uK$@@ E t(EEE@E uE J@$@ J@H -@E0@9Er!h@hX@hp@' jLEE Y@Y@  u Y@ME5@ E t$jHIkI@(G@PI@HEDkE E0E=h@h@hp@# jHM}|;kE(G@PkI@(G@P uԡJ@M |G@Hh@kI@(G@Pu> J@A u)kI@(G@Ph@hp@I# jSHI@I@ J@I |G@xJ@@ Y@Y@8 t!h@h(@hp@" jG=I@ |h@hp@"jGkI@(G@P I@HEM}|+kE(G@PkI@(G@P uh@kI@(G@PQ= J@A kI@(G@Ph@J@@rJ@@Y@Y@G@J@pJ@p495tG@/h@h(@BNP aeb\cd>h@h@hp@z! jFJ@@Y@Y@g;Hx!tʃ:=DG냐hv.$ x   h < phxxJ@ G@9J@r!h@h@hp@| jEJ@0Y@Y@8Y@x;h@h(@hp@1 j;EJ@@=G@^_ÐUWVu=Y@95G@s!h@hD@hp@ jDG<\uUF95G@s!h@hD@hp@ jDGG@0;}>9 tG@^_ÐF{G@8uF=Y@^_ÐF~RŐU WVuN=G@ =G@~vG@lG@ lG@  jD@@8FG tO<\uFG ud"@^_Ð> u=d"@^_Ð=d"@ tFG u d"@ր>\uFG<0u뢐> u벐xG@H@E@tFE<\uJxG@y5xG@xG@H@EFExG@y5xG@q릀> uEUVY@8$uY@EEEEE^ÐY@8/t8\uAY@8\uY@Y@Y@G@G@P5G@uj^Ð5Y@E>9kE FN0E>0}95Y@siEEEE G@G@G@M h#@=G@|h@hp@jBEE5Y@3^ÐUWVuN} O>u3^_ÐFG8t^_ÐUWVu=Y@G<\uG>uO=Y@F^_ÐFڐU$@Euuy uEÐEE9Er3U $@E,EMIHEE@E uEMIHE@9Es6ExuPh @hp@ j@Ex tË@ 륐ÐUWVu;G@v!h@hD@hp@ j@Y@EGG@8t?\uG? t?utG@^_ÐGEEE:G@uG@8uG=Y@Ee}\uE8nuEE EG \u?nu E GE G@8 tE<uvE<uM E}|卆^_ÐUu=h'@u=Y@tG@^_É=Y@^_ÍE܉E3G@Eԣ<@}^u <@O9uvGGE*t \u?{tuE9EuFE9Et닐E t4$tk*tJ.t[tt\3uFE}w=h'@@OF"@뚐}tËE8t8tR9Et? u&F9E FEE EE}|EGGE^uEGGEEe} Et6}t0EF 9EfFE EE} |}-}GGE]u=@FEtV}tPEF 9EFE EE} |EMā8@ EċE9E|݋EEM8@ GGE]}t E E }t.} u!E E4EE9E|&F(urGGE  (t>)tin`{t19m1E9E$=G@ EE̊ G@FG@G@E9EFM̋E̊FE}EEGGEE}0Y}9OkE E0EGGE\t,ú}#EF},uEE  GGE\uFG}tOq}uEFF%N;E =UWVu} =<@t50@WVd^_Ð?u?GE9Eu WVA t50@^_ÐF~u3^_ÐWV uF~uUWVu} EGG)w.$x G8Gt3^_ÐF~t͐>uÐ54@^_ÐFFEM8@t EFFEu%M8@t 3M3eu=@uHExt>uFE @9 h#@ujV t tE@Ex[= @N @E@E El'@ d@d@F95 @v `@yh`@P+ `@yh`@j + d@d@=J@I@vo $@h@' E;tG@)5(@^.^_ÐUV} tE8t3^Ð54@58@@8@EE<@uVJ^UjEp u3Ð,@@Epp FExt4@8tjEpG u@ÐEpp ǐUWV} ~} },@,@9E @@ J@EE950@wn}&u54@50@W K}\u&EEE1|:}4!@4!@ƊEY@rhT@hp@ EEE u54@- J@@4@Y@rhl@hp@  uྼ@ J@GF uF @^_U WVu} EE"GFY@rh@hp@G 9}wۋ^_ÐUWVE@.$.J@J@M=J@J@r5@h@hp@ J@G$@Ext =@$Ex1 `@yh`@GGP,(G d@d@?u `@ph`@j '^_Ð@E? u%GEEG uEH @ @Gu$@~5@h@h`@ _@Ed@EE uG @^_Ð @ @ = @Ed@EE uǐd@E@EE uG\#@^_Ð\#@\#@ =\#@E@EE uǐEx1 `@yh`@GGP&G d@d@?u `@ d@d@U@E J@TJ@? ?uREL@/Ā@9Er$E\h J@h@h`@ E J@EEME  u@WEE\Ā@9Er$E\h J@h@h`@" E J@EE0Ā@9Er$E\h J@h@h`@ E J@EE0Ā@9Er$E\h J@h@h`@ E J@EEG0Ā@9EE\h J@h@h`@^ E J@EEGĀ@9EriE\h J@h@뽐@E/Ā@9Er$E\h J@h@h`@ E J@EEME  uMG?Eh J@h@=`#@ug@ d@d@G9= @v `@yh`@P$ `@yh`@j # d@d@=J@I@vh@E;tG@uEpG@$@^_ÐE0=J@I@v @ @ 5 @JE;tG@t@ d@d@G9= @% `@yh`@P#ؿ@:? `@yh`@GGP"G d@d@? u=`#@ug@ d@d@G9= @v `@yh`@P" `@yh`@j t" d@d@=J@I@v[h`@I!j)J@J@M=J@J@5@h@wu,Ext~=`#@tu tqx@ d@d@G9= @v `@yh`@P! `@yh`@j ! d@d@ <Ex/h@h@Ep=@ @ @^_Ð@E J@EEG ud@E@EEG uEH @ J@Ed@EEG uEH@E@EE tpGx&&{'P((,,-+`,*'-///.-+,/@'x.'''$(.^_U WVu=@9=@w:hh@5(@ E  tG@^_Ð@Eǣ@GGE ul9=@wOhh@5(@ E !5(@"=lG@u @@Eǣ@@=@^_Ã};95Y@/EF$UWVu EPuFPuF;u ^_Ð<@^_ÐUVJ@I@ J@xuwJ@p2 `@yh`@FFP d@d@>u `@yh`@j t d@d@h @J@pE tiEyuEH@E@t6EE `@yh`@EP붊E d@d@룐uJ@J@8J@I@J@^UVEEE@ uE@ t(EH uuu  E@ t ^Ð^ÐUWVu~u VeF uF N F Dt-P@9=p!@vG @tWpߐFFF tF t!@+FPvF P xFF^_Ð>tN N F tf ^_ÐUWVu} E;t mw }u3^_G8GuF~u鐐O+^_ÐUE%EE%EMEE0ÐUWVu} Ex 2t@M +J)EM Hu}uWjVVEMI^_WVE04" NjM^_ÐULWVu}EDž$EEG G2u t!@ E tz%tuuFE t%u+E܉E; vPWu%uH! }+G )G; v 2t WG Dt/G uuj +EP t WG t ^_ËE^_Ð3EEEEEFFFE X .$L@MܐMԐM̐MĐM@E뵐E@uE E @E }؉Eu덐E E @E u뵐EDuM E0k E0FE@uE@tEEMEE E @Eȍ3E܉E؃}}&E@E}E؉E,Et E@EtE@EEȉ  uWE@u_L ff f Š*Ȁ0M܋E܈ M܋E܊0E@: EM+M+ ! EEM EE E @Eȍ3E܉EE"EPNM܋M܈ EEEEEE E @Eȃ}Xuh@|@Eԍ3E܉E؋Eȉ uE@uDEEM3M܋E܋#MMԊ %M uE@tEM+M+ ~ EEME}EXt;ot xtEE@EE@ꐐE@uEE E VW}p_^E%=Eu=E%=uEDž$}Eu@@E܃rE%=uE @EE EEEE}EE@E|@8EPEP}}E@PVWu_^, E܃}t E"@'Et E$@EtE&@E(E؋E܀8tE܊0ME؈}u Et EE.E!E܀8tEE؋ME܊ ك~EEM(E܍EEE@thEH } ~ 0MEME䊍0 ME0E9Ew}E@u+-MME@tEeMM+EEEME@uEE E VW}p_^E%=Eu1E%=uEDž$Eܠ@EFE%=uE(@EE EEEEE|@E@EPEPE<|<PVWu_^ E܃}tE;E}E܀80t E*@%Et E,@EtE.@E(E؋EE~E܀8t}|0 EEE܊ME؈Eu}~ EE.E<|<9E~EME+EE0E}~E܀8t}|0 EEE܊ME؈yɍ(EE@u E}uEE E VW}p_^E%=EuDE%=uE}Gu@@E܃EDž$E%=uE0@EE EEEE}GE@Eh@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@7D@D@D@D@D@D@D@D@D@D@?x6$9;>r5x6D@D@l6D@D@7D@D@D@?D@7D@D@7$tT}tE2@EE-Et E4@EtE6@EDž$E+E܉EEEE9E EEEE t-Eu M+EE E+EEEEEE+EPWjh8@ً; vPWh8@'h8@ }tQE; vPWuu+"uu }tT; vPWjujuT EEE PWjhP@|ً; vPWhP@7'hP@ ~Y; vPWu$uL EsEEPWjhP@pً; vPWhP@+'hP@ EtRE; vPWuu#uuG EnE9EbE+EPWjh8@hً; v#PWh8@#h8@ UWV}u1h@E t8u=@t3^_ÐE@@h@tPiuPWjtP& |@hPV =uhPh@ 3V ^_ÐUWVjuuuu1^_ÐUWVjuuuu ^_ÐU$SWVu"@EljEEE @ t E]"@E @E@E(@r8E}]@E]vEE xE0@rq0@]E 0@U]wVW}u쥥_^0@}]EuAEE0EMm]E0@wIE8@s7EM]@)EM0@rۋEE x߃}tE}"@} #@vRE #@IEE0Ee 0@]9}w$}?5|G"@u4"@1}t0E+GE @t"@r0뺐0O?9E"@^_[Ð}fEf fEmmU]E]ÐUWVu}~=F %u~tF9Fu>uF Du V3 t3^_F t!@EEE 9}w9} wًF9FrqF ur^WuF P E;tN E 3EE+u ^_V@uE H+u ȋE+^_ÐEEENM+E ~;rljEPuu E)EFF t!@+F 3;} V+}uF Dt-F uEE Pj u t VE^_ÐUWVu`"@E u 3^_ÐE8tE0V t^_ÐUWVu} G8Gu F~=u^_À>u=t3^_ÐUWVu}FE 8FuN^_Oy3^_ÐN ÐUWVu} uGF uE^_ÐUWVuGF~u+^_ÐU<Pu u(ÐUVuVVu u ^ÐU WVu t}tE8u3^_ÐE x+E at>rtQwu tEhPu E }-뤐 tf ɐ t뽐3EF tE 8ruF E 8au ujju 1F 3ɉNN t!@^_ÐUVP@F t95p!@w3^Ð^ÐUVP@95p!@w^ÐV95p!@w^ÐUWVu u^_ÐF t<F t3 VVF P }@"@F tvFF FF낐UVuF u,BF t"~tF9FvVQF tF t^3^ÐUVu F %RBu<F N9 t!@FM V@F %u2EEjEPF P N F %u~tF9Fu>uF Du V3 uDF D)VAyVEP ENFF t ^ÐE^ÐUWVuF~+ljE~F Dt3F t!@+FF t!@+F 3;} Vp}~#uWF P ;Et N ^_3^_ÐUVuF %tF u^ÊF $ F ~u VNF9Fu>F Du3F t!@+FF t!@+F 3;} V3^UWVu~ F uV}) u @@H@FN t!@BhF tN F NF P@N t!@FFWt tF uN @^_ÐUWVuF t!@+F }F t!@F^_Ð9>~>^_Ð&3ÐU@"@EEPhTu }E@"@3ÐÐ6ÐÐUWVE}v3^_Ð=T"@u6X"@ T"@T"@ X"@H"@X"@D"@T"@H"@P"@EE5D"@Eu>5D"@9=P"@u5P"@>tދE;wE;R$;w9=H"@BT"@6E}v5P"@jlH"@;t?EEe ǹ t@Ǚ+ډUNjE'E H"@+ P"@+EEe E;EE=vh@|mu@u+EPT=P"@H"@8E+EDH"@;tH"@ȋ H"@T"@bED"@;sL"@D"@D"@ 95P"@u D"@P"@F^_ÐUWVu=D"@$H"@9u=P"@^_ÐUWV}Gt WG+Eu L t9uu^_ËE EE9EsEEEPuV6 E;sƋEE;rEE+ML"@띐UWVu} uGFMyE^_ÐZÐT$\"@R \"@+D$ø!T$\"@3øÐ@"@Ð_T$@(#)sed 5.3a x2 of Nov 13, 1987rCannot open pattern-file: %s Unknown flag: %c Too many {'sȀ@sed: command garbled: %s Too much text: %s Label too long: %s No addresses allowed: %s Only one address allowed: %s Suffix too large - 512 max: %s First RE may not be null Too much text: %s Unrecognized command: %s Too many commands: %s Too many }'s Duplicate labels: %s Too many labels: %s Too many labels: %s Too many files in w commands wcannot open %s Too many files in w commands wCannot create %s Too many commands, last: %s Too many line numbers Undefined label: %s  @\01\02\03\04\05\06\07-<-> \13\14\15\16\17\20\21\22\23\24\25\26\27\30\31\32\33\34\35\36\37Can't open %s @@D@H@L@P@T@X@\@`@d@h@l@p@t@x@|@@@@@@@@@@@@@@@@\177output line too long. Output line too long. Output line too long. Too many appends after line %ld %ld %s %s %s %s %s %s %s %s Too many reads after line%ld %s r-+ 0x0X--+ --+ --+ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFCHRCLASSascii/lib/chrclass/ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~nF 7yACחA@Y@$@@C$@?`@`@p!@h@@)#(@cbil83i-sc:6rc/us.1t1.1 )#(@cbil83i-ys:6er/ss.da1.1 )#(@cbil83i-ys:6lc/s.eso.1 s s)#(@cbil83i-eg:63i/nd_68.ata.1 s s)#(@cbil83i-ys:6oi/s.ltc.1 s s)#(@cbil83i-ys:6sl/s.kee.1 s s)#(@cbil83i-eg:6am/nd_ll.ata.1 s s)#(@cbil83i-ys:6po/ss.ne1.1 )#(@cbil83i-ys:6bs/ss.kr1.1 )#(@cbil83i-ys:6rw/s.eti.1 s s)#(@cbil83i-rc:6ec/trorr1 s.1..)#(@cbil83i-eg:6uc/ntixe1 s.1..bin/setpgrp100755 3 3 37570 4201131141 7466 37777777777 Lr! ) @.text) .data @ @*@.bssh@h@ .commenth?ÐETh@RU RP P)jÐUPE U9Euh @hx@ jB)YE Mu E 0HE 0uh @hx@h @ Yj(YÐUE PuUWVS3h @GYEuE @j/ut @E|PuW u |P_H@=td=t$= tV= t8=u2FwBVXYDž| @|DžxTCwt H@ hlpø9x|H@xxt|xBM t ɉ u|Ph @lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U5h@u u ÐUWV @p @9H@s H@<4 @uEYtVuj'& jh. @j& WYPWj& jh1 @j% u}ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËjP'%ËjP'%U}u3jYEh|j=%EEE}t6E9Ev)EE&E+EEEEEMuj$hl@YuubYljUYE}| uj$} }}}t EEP YEE2Ujhl@EøÐ$ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWS}] ;u Nj]}ËG8u3쐸;G$UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  |@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžld@Dž\9PtP؉PNKPPoY Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlj@Dž\?E2ETMDžlm@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E@r5E@r@E@AE8@s6EE]@)EE@@r݋EE 9P܃}t؁@@v@EH@t@r05}fEf fEmE]mE܉E@0Ee P@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E(@E50@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G |@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W |@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}h@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWX@ WY;=x@r}UWV}tlG t6G t3WVYG PY}H@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG |@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G |@+G?}3W |@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G |@+G?}3W |@+W;}WY3UWV}G G u}}&u@#@GW |@*h YGt@O G W|@GGVYtG uO @u}G '@WR|@UWV}G |@+G}G |@Wu};7}7𐐐3ÐUH@EEPhTu } EH@3ø6ÐU WVSE9ET=\@u<`@ \@\@ `@P@`@L@\@P@X@E@3؋=L@E&;5P@\@E@E=w=X@jYP@@;t?3Ee ƹ3tL3+‰EEE2P@+X@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5X@P@0E+E-P@@;tP@P@P@\@~ЉL@;5L@vL@T@L@ 9=X@u L@X@G(=L@95X@u=X@7tލ;r;l%;UWV}5L@%P@9u5X@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹT@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$d@Ru d@+D$øT$d@3øvÐ0l*NL$0l*:L$0+L$0L$0 L$0 ÃH@ÐT$ä @@(#)setpgrp 5.3b of Jan 27, 1988Usage: %s command [ arg ... ] %s: %s not executed. /bin/shPATH:/bin:/usr/binshUnknown error: t @| @ @ @ @ @ @ @ @@ @3@E@V@h@t@@@@@@@@@@@,@;@J@b@o@@@@@@@@@+@:@H@a@~@@@@@@@@@0@D@Y@j@w@@@@@@@@@@4@E@[@k@y@@@@@@@@@@@@8@O@v@@@@ @)@2@;@D@M@V@_@h@q@z@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@ @@+@:@K@c@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF) 9 9 9 9 9 9 9 9 9 P  X P j S X L  %  -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@'@'@x@'@|)@3.1bS03.1bS0bin/settime100755 3 3 43070 4201131142 7445 37777777777 L! /\P @.text/ .data@@\0@.bss(&@(&@P .comment(FÐET(&@RU RP P/jÐUPE9E}h@h8"@ljr/YE P=-uPE PB=fu?E Mh&@E p1 }fh@YE p,Yj/YEh&@jE p =uh@h8"@j.Y&@&@&@E M9E}Sh@h8"@j.Y7E h&@E 0 }h@ YE 0YEMuu[.YUh@h8"@6j<.YUEuEduEunømU(WVEP2EP>EE,&@kE| ~ ^_ÐOE|=Eu EE&E |; }Ex,&@8puE }|}ElVEF;|W=nu}|E E8@EMuEHEܸm܉E܋EEܸ<m܉E܋EEܸ<m܉EaEt ;}uEEE܃} u!@E܍EPx tmEM܉3^_U WV,&@E8u ^_Ð ME)xdۋE8tE0 |ă E,&@^_ÐUWVl@@9&@s &@<@u"YtVuj+ jhz@j+ W"YPWjo+ jh}@j^+ u}ÐUPWE E4"@u4"@t* 4"@h("@uu 4"@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }Ë T$tÐUW(E+@EEPY=@iGQiWkW<E=0&@u=4&@uWEPEP< 0&@E4&@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<8&@E<&@ƙ5@&@EpP&@}| FFFtmnEN}|ۉ5L&@}=T&@ƹtmn=nu f@3 u@+Fu@;}f@GD&@5H&@X&@8&@u}Ëƹtmn)EFƹtmn9E}@Dž\sEDDž8~t 98|0 8CUEEu}~ E.E<9E}E<9E ME+E܉T E@u E }uEE E -ݝHN%=9L%uUHuLO%=u Dž G9Eu@@؍CEDž, O%=uDžl@@Dž\L% H ‰PDž(Dž0Dž4G9E8Dž$@Dž<|@~؉]P[E@ETMl@PDP9E}EPLHJ ݅H@u DžDE艅ES*Y9xEE E @ss؍CEoE E XE@uSYЉUHtM}鋅HE- |=Xw |$@O,to t DžlB@Dž\Dž  Ek E-0GEI@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl*@Dž\?E2ETMDžl-@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhEI@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hP!@YEt Eu =L!@t3txEY!@L!@h_!@EPbuEPSjEP |>h~PW =uh~PhH@ 3W YkUjuuuu u#Ujuuuu uU$WVS}\&@E\&@Ep!@s3UtE]\&@Ex!@E!@E!@r5E!@r!@E!@AE!@s6EE]@)EE"@r݋EE 9P܃}t؁\&@&@v&@E"@tm&@r05}fEf fEmE]mE܉E@0Ee "@];r&=5|+\&@u\&@1}tCF0N<9\&@]Ћuԋ}ËEE0]@EEsEE 9P EEEE!@MU]vEu}fEf fEm]mE܉EFUR0EMm]E!@E5!@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G <%@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W <%@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}(&@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW"@ WY;=8%@r}UWV}tlG t6G t3WVYG PY}&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG <%@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G <%@+G?}3W <%@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G <%@+G?}3W <%@+W;}WY3UWV}G G u}}&u&@*@GW <%@*h YGt@O G W<%@GGVYtG uO @u}G .@WR<%@UWV}G <%@+G}G <%@Wu};7}7𐐐3ÐU&@EEPhTu } E&@3ø62ÐU WVSE9ET=&@u< &@ &@&@  &@&@ &@ &@&@&@&@E@3؋= &@E&;5&@&@E@E=w=&@jY&@@;t?3Ee ƹ3tL3+‰EEE2&@+&@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5&@&@0E+E-&@@;t&@&@&@&@~Љ &@;5 &@v &@&@ &@ 9=&@u &@&@G(= &@95&@u=&@7tލ;r;l%;UWV}5 &@%&@9u5&@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ&@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$$&@Ru $&@+D$ø!T$$&@3øÐ&@ÐT$@@(#)settime 5.3b of Jan 27, 1988settime: illegal time format settime: usage: settime date file ... Unknown error: @@@@@@@8@J@\@l@@@@@@@@@@@@.@?@S@g@x@@@@@@@@@@/@B@^@w@@@@@@@@2@;@D@M@e@|@@@@@@@@@@&@4@L@j@@@@@@@@@@@@'@:@C@L@g@@@@@@E@l@u@~@@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@@@@@"@,@6@O@Y@i@w@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error,@0@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFn..z.....V.b.............y.......................... y....q....&..-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@.@.@8%@.@x0@3.1bS03.1bS08%@.@bin/rsh100755 3 3 144460 4220304211 10000 1bin/sh37777777777 bin/make100755 3 3 141400 4201131156 6731 37777777777 L^! ${@.text .data@@$@.bssB@B@{.commentXÐETB@RU RPN7 PM^jÐUWVS}uE3PTXX'@t'u 'Yu wh@` h>@uYG%~"EWG%=u3EEEEWYE} u(X'@tu Yuwh@_ EEG% GDžpG%u)wh@OWYh0'@h@OW YX'@tu Yu h@^_EszFxEPE @Pvf EX'@tu YuFph @^ E9E~EEEE9E}FppPQ6uG%={*E9E|}u}t { `'@E`'@wh@NdthL@h@NpQYPh@mNDžpX'@uu W sYEh0'@h@-Nh0'@h @NE`'@WYEuEE<{t#}twh"@h>@] CEċE9E~EEE"X'@tu  Yu hC@\DžlDžhj(wtnt[GdhL@RBYGX'@tBu YhL@ha@\u Yh@ho@s\ Džḓ@CEE؋PBxPxwD X'@tu  Ywh~@[Džldt Džx@PP5LPRYjjPw ̭@E1EPEԋPBt|PxtC |P@YEEЃxXPtP{C j~tltBXPYH`X`XPPYu XPPYXP?YEt7XW;uwXPjl 3EԋUԃ}EU}9htE؋U؃}lbhUtGxBx8DžhX'@tu Yh@YYPh@wB Džx@DžlX'@t'u Yw|PXPh@uYẺxEPE @Pu EE9E}EppPLX'@tu )YuEph@Y E9E~EEE荅Ph@IXPh@mIEЋP}E9E|}}dth@h@!IhL@h@wh@IpKYPh@Hu WA}tuqYE}tuZYEG%=t X'@@t!G%X'@@h@<YEt@X'@tu Yu h@Wwh@+HEЋPX'@tjjw:R uwh@Ih0'@h"@Gh0'@h$@GX'@ uW\ YEuP EF}t} uwh&@V(X'@u} u}uwhI@VX'@t} u=\'@~3PrTYG`}t\`\% ЉE9E~EEEGEUh0'@h^@Fh0'@h`@FEE@EEU}uE@Et uYEEU}uoU '\'@X'@tT^hb@GYPUX'@uuhd@{UX'@ !uj8X'@uEho@Ep=I=tX'@ t H@H@PEpz>X'@t3EEE E=-u EEEE=-tӋE=@tuuu> t!}uX'@tj.GYEU} 3U WV}u 3u}X'@up}t X'@ t^d'@EljEEEuuhw@S E @EEuuh}@S h>@Yu WtGt Ph@Vh@yS} th@h@_SYh>@ņYEE8t = uE8a1UWVSEPkExZ7GXj*Sduj?Sduj[Sdt#jjS EtuWu" uEU}u]u}U WVS}u ]]EUE8uGEYE9puEUJEX]u}ËEPE90uEE؋EU}u݋EU}uUWVSEh@CYEPu E@B@B@h@CYpW$Bh@WBu390;4u-h@h>@QB@$(,C;]|0UE429E|h@h>@QB@vWAh @WxAvaUW} h @PYOu}ÐUPWVS}F= t= t>u]u}X'@ t H@u3WYtu W?WFYEUW}GЭ@t }À?u3UWVS}u dT'@u^j,YFh @AYXtu @jWt @ @Ph @S0dh @BY9T'@u h4 @yBY ]u}Uh<,Y9Eu hB @ABYEPkYE;T'@uT'@EUW=Ю@t wY?u}U$WVS}G= t= tuÍ؋@3F= t= tu>tFF= t= t>u#cT'@u2j+Y% EPWGWhP @@9T'@u h_ @AY3U(WV}u EPVnc}u}Vhm @h>@SN uЋ}Ã}t\jV6E|mjEPun~ =|'jju, jEPuK =} u衄Y#hVgME|u聄YsVh @h>@M [UPWVS}EG% @Gw/VW7t}tE_uÉE6u͋]u}UWVS} Ew)FEtj$EpV^t E6uӃ}u3\`dj 5YEj|5Y؋EWPXwFPUj$u]tDhPu5hP0YE}uhP1YP0YEEFC>u j4Y6yE3U$WEPUj(uN]tu;Y}ÍEPu`}3u?Yt(W1YUB EPEp `uE3UPEP_YEUW}DžDž} u_@IJ;upW\u3t 3Ëuj3Y@@W"0YBE}E=/uEEEEu}uE @E @}.E|Ph @Wt2 EE@E䍅|EEЮ@aEJ;upu[u%3tPUjjuhJ u}ujh @uzE @@ @= };j h2YЮ@Ю@UPu.YB Dž}u%uh @h>@dI h @;Y0uj jPrGEEUf fU@DžtC@ @9s uuhtC@tsPhtC@u0 P,Y uP-YP,Y } t%j 1YU PEEE9E 9E}tE/t uzYU WVSEEE EtM=*t(=?t=[t9uH3E @E Pu]u}Åu3=-t%=]uLtbE @E PE@EPV9u3EE @;3U# ڋljE;uCE @E u3iUWV}u u u}À?u3VGPtU WV}}EE=(uE+NjVWh@5X Ɔ@@uWh @8EE=(uQEEj)uWEuuvYEEE+EPuEPW EU+UEj)u>WEuupvYEEE+EVuhL@sW ƆL@EL@uWh @7j/hL@gZEtEEL@uuEPW EUuEP u؋}UPWV}u Eh@gY=u 3u}ÅtWWYE=@t 5@wYEU uiuYEj5خ@5@*E t3h@h !@6Ԯ@=t*==h@hz!@65@jj h@B=uuh@X u @s@E%Eju5@rD tI5@jj$h\@&B=uuh\@\X uhl@kAYh|@[AYE%Eju5@C t5@jjYEju5@A a5@jj=ujhA"@h@ U h@h!@2uuhP@T jhX@=YP5@@ 5@jj$h\@H>=ujh\@hL@Q hl@=YEPhD"@h@A =th@h@hH"@1 EL@E耯@V!pY@;u^yYh@uh!@1 j5ܮ@5@? th@h!@Y19Ԯ@yEEU EE8t=/t @9EruxYEU Whg"@P1Yu[oYE9E~Ejj5@? @E%EE@3@x5@jjh$@<=th@h"@b0,@ t t5@jj h@<=t35@<YE9@rr5@jjh@;=uT@=tX@=tJ@=t<@= t.@=t @=th@h"@9/ @@E="@ue@9E}ju5@L= Bh@h"@.UW}h"@W}m@=@:5@jjEP:=E=eu8Ԯ@5@O;Yخ@@3@ܮ@3}jj5@< 5@jjEPC:=jh"@EPyP Ԯ@jj5@-< \5@jjh4@9=:5@:Yܮ@hL@-9Y@k@ ܮ@Љخ@@3jj5@; 5@jjEP`9=jh"@EPO Ԯ@5@jj@7h0'@`*Y3gUPWVS}GF= t= tje YE=@uVYUBEį@ܯ@=@u^t'@8tt3uj@t'@t'@xtRP!&@;uh#&@t'@pHt&@؃ tt5@SEL]u}U0'WVSE@= u= uGu剽Gt= t= t = uۊtPh@h@P9 ;@u;@u t.u#E@=:t==tGu==4G@Ft =;uPh4G@t.F>uF@uꍅ4G@FG҈ut 4G@t!Eܯ@Džܯ@Dž=@u4t'@t'@Eu3@uh4G@$4G@4G@ G=\tu4G@= u GG Dž 9t 9t 9u4G@= uH9u 9u Dž5 9u DžG 9u@IP9u4G;=(#@v h%&@&Y 9u 3A;9t 9u4G@u똸#9u,u#4G@= tDž_ 9N@4G@;E4G@E= uuYh3&@ux&sE@= E@= OUW@}5@AY@P@u =Dn@uNj}5@dYDn@HDn@kHn@@kDn@Hn@@UWVS}u ]jWwFt"h0'@jW\, uWh;&@#X'@tWhQ&@c1WkDn@HHn@PFkDn@Hn@Dn@Dn@kHn@@he&@W7buWhg&@q#]u}UWVS@@@@@@@@@@5@@@E@rhv&@#Y]u}ËEȯ@E#@E==@}@} @E@E|^9E|RED#@E@9$@u6@ȯ@į@ EE=@- @"EH%@E==@}N@} @E,#@Eh&@m"Y@=@@=@zX'@@jC@P=.uj/C@p@>C@@/7wg)C@F@F@F@C@9F@h&@V!Y7:Yȯ@7?Yȯ@wYȯ@wYȯ@5@h&@ vF@ȯ@]jY̯@̯@P=F@uȯ@ F@̯@̯@F@F@F@ȯ@ȯ@ȯ@C@Gȯ@C@C@-=$%@EE9uU9PuEE8| E@9uE@E}3n}u@=w |$%@E@$@UE}E+Ћȯ@V E+ЋڋE8$@E $@@E9E}ED#@EU9$@E $@D#@E}E+Ћȯ@V E+ЋڋE8$@E $@@E9E}ED#@EU9$@tE $@D#@EE@@5@@)F@C@Я@Я@@%u+Я@@EȡF@% ЉЯ@@%;F@tЯ@ph&@h>@V+ j9F@u]Я@P=.tK?tFЯ@P,ԯ@xtЯ@ph&@h>@+ ԯ@ԯ@ԯ@8uj Yԯ@ԯ@WPPЯ@P&@;uh&@Я@p <u3tuЯ@@oЯ@xu ԯ@PYЯ@Pد@د@د@8u9F@uЯ@P=.u د@@د@ԯ@ F@*#@U}|49E}*ED#@9$@uED#@UD@sU WEE~'@EЭ@EE8uE'@EЭ@EE8u Э@ X'@@7 u u h'@h'@I X'@X'@t h'@(YE@O&jja%L'@jja%P'@h<=L'@u ujla=P'@u ujVaYEE[EU Ћ҉Ut@u# Yu u. YEEPjW X'@tjvYEE9E|}u=@uh[(@Yj"Y}ÍEPj5@{ X'@tjYU=`'@X'@ X'@h|(@sY@Etpu? YEt`uY~Su{YuFuYtuh~(@h>@$ "u4:Yuuh(@h>@u$ =Ĵ@t hĴ@:Yh(@h>@O$j!YUWVSh(@YtVwM^BESJ;uCpup5u3t]u}Ëu6u3U=L'@u uj_=P'@u uj _UUPE(@;uh(@u4uW3tOh>@E@@ܯ@t h(@Y=@t 5@UY3Yh(@uSEtlX'@tuh(@"uE@@ܯ@wt h(@*Y=@t 5@+UY3Y{} th@'@Ypju u LE BUE@@ܯ@t h(@Y=@t 5@TY3U}tJh(@h>@!Ю@E(EpPB Ph(@h>@!EU}u҃=@th(@h>@!@EE@ %uEpph(@! [Eph)@h>@V! EP EPrh)@h>@3! EU}uh)@h>@!EU}k@Euu)EU}uh!)@n Yh>@SYUPWVS}twh#)@C wh))@h>@ } tG%Ph.)@h>@k ;=@uh8)@h>@Q wFt>hF)@h>@. &{tCphT)@hX)@Yu֋FEt@hZ)@Yh\)@h>@Ephh)@fEU}uߋ6e]u}UPWVSEu}t EeE <t\=-uOjfE 40tE P9YFE 2u}t m)@ E G;}|]u}US]=kto =et@=btk=St6=B%X'@PPY]PAY%X'@P+Yف X'@PYÁ X'@@PY=dB X'@PY=gt)=fx X'@PYZ=i X'@PY6=qtHu=nt&V=m X'@PUY X'@ P<Y X'@P#Y=pug X'@=st/=ruH%X'@ X'@PY=tu X'@PY`Php)@JUWVShh'@mYh)@hh'@ GG % G % G jbY5B@h)@6Bu @ >u܋]u}PaYC;uUWVS]hh'@ Yw ;tF>uF]u}UWVS3]Cuƹ G@J jYh+@h>@.YjY𡼴@F~FF%F%F%FF5@WY4s@Ƌu}UW}E} EEEEuEdU@D@E@<@=D@jjLD@u?h)@}tuh*@h>@/ jYh+@h>@YjWJY@PD@u?h)@}tuh*@h>@ j;Yh+@h>@YWD@0JD@@E<@uD@@D<@D@P1WD@0*E}jj'@@u?h*@}tuh*@h>@  jtYh+@h>@YjWhIY@P@@u?h*@}tuh*@h>@ jYh+@h>@YW@@0H@@D@PE@9<@uE@@@<@@@P@@D@D@}áD@<@PD@UPWVS}u ]]EEG҈uEEF҈uË]u}UWVS}u ]}utu 3]u}ËG8uF8u+E+U;|;uvON;t‹CU E9}rUWV}Wj6t Ƌu}h0*@h>@ h>*@}tuh*@h>@ jjYh+@h>@YUhWVS}u )@@)@=d~?hL*@}tuh*@h>@ jYh+@h>@Y=$uGt =$uF׊ GE=(t ={u)=(u)}EG= tC׊ Ghh*@EPtEPV<EPhn*@'t}tEPVEPVC? )@Ƌ]u}Ê CG= tU;tuGU;tuU;;G5U WVS}3Eu F>t =:uuE Pht*@4&t E PU@u YEEp}tnjV@ jYh+@h>@hYE @PVS t>tE@PVW2 E:}t E UPtS9YNj]u}UWVS}u DžDž3EEE֋CE==u܍E֍S=~uKE]3EECE@E8uES=~uKE EP E t YEu it` ut Ytu ju  WEP WEPV$E NjUWVS}u 3= t= u. F׊ GC= t= t$F׊ GC?t= t = uË]u}UPWS}E X@u YEE X}t!EPtPEpW Nj]}UWVS}E= t E= uEPWOjj/EP&t5E=DuEu*@EFPW /!E=Du*@EPWE EPu xQNjtx|UPWVS}u ZYtCF %=u ~t^^F8tWv|F % F Nj]u}ËCEx tEp EpW! GuыF % F UWV}u uNju}ËG֊ F>uUWVS}u WY؅u W/Y؅t0'@C %X'@tC % C sX'@u X'@tC % C %C X'@t,5X'@C %PC %PsWh*@C %t1h*@WuX'@tWh*@h>@ ]u}UWV}*@&PWtW Yu}F>u3UWV}W9Yu(j Y@5@WYFF0'@Ƌu}UWV}5@1V;uvW}u3t Ƌu}Ë6u3Uduuu uEPEP}tuh*@h>@ j Yh+@h>@ YU}tuh*@h>@q j Yh+@h>@U U4u5@h+@EP/EP}tuh*@h>@ j~ Yh+@h>@ YUWVS}u jY؉s??u]u}UWVS}H@I_H@t FS"=YЁU@vh"+@h>@~ Fӊ C;u?uH@]u}UPWVS}u E}]Gt)F;tt|u EEu Ë]u}Ë}EUWVS}=/u Nj]u}h4+@FY؋Cu:+@shX@WV* jhX@ uX@명uѸUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3UWVS}G?uG=/uu 3G.GsO;s݃uG.GsƋ]u}UWV}==su2;u F=.tF=/uF=.u u}F>u3UWV}:=su/;u G=.tG=/uG=.u Nju}G?u3UWVS}F>uFNKK*K.$=/u*Nj]u}ËKN ;s*UWVS3=@tfjh,}}u?h<+@}tuh*@h>@r jYh+@h>@V Y@E]u}ËE@ %F,|?hW+@}tuh*@h>@ jhYh+@h>@YEpY9YEEpJ9YUЍRUjuu?hp+@}tuh*@h>@ jYh+@h>@jYEpǃ0]h+@SM؋EpS<؋EU}~EB@X'@Vh+@UWV=B@/7F>t ==u==u~t7Y?űu}UWVS}W=}uLG;@t:;t6G=$t+F>t ={ut+@PWG?u]u}UWVS}u ߅}؋GƊuG?u7ONuË]u}UE PuUWVS3h+@1YPU}t EuE+@h+@ YPU}t EuE+@j/ut+@E؍xPuS u xPB@=tk=t$= t]= t?=u9GIWY뷋E x-E +@u uFpt B@ lptUWVS}WPPYu PBYjPt"X'@u3ÍEX'@uh+@V} ujj/P.tUh+@VC;uK=/uPVh+@V/h+@ YpVh+@Vuh+@YpV\h+@VL]t<t6=-th+@V%SVh+@V PVEPBYu39=ش@u)j WYش@ش@ش@P2ش@Pj YPYBش@PUWX'@ u=ش@2}Ãt%X'@twh+@wY?uUW}@Et'@E@}EEt'@TE@Et'@}UXX'@t4uYÐUÐUWVS}3 G }Ƌ]u}ÐU5B@u u4 ÐUWEE EP,9YtujWb Nj}Uu;YÐUWVS}}~EE ;ur;u s 3]u}Ã?'W&Y=uE H3u U+ЋO;7sSwu%< ÉE)G?}3W A@+W;}W7Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P7 E}|EE}ø:<ÐUPWE E>@u>@t* >@h>@uu >@ t }ËUPWEEE@ uE@ t(EH uuu 3 E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG Pm6 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P6 ECG t8W1YG t g GGuu G P5 E9Eus3lUPE EPuh>@d UPEEPu uI UW}EEEljEEW.YEE2uu EP }ÐUWVS}u Džج@ܬ@ ج@W=~*uDžF DžDžk -0F;@u؃u DžÉ=lt h9uF؅[uPV;@tDžl<@؃nt_=ܬ@uVctQ[tLج@} W@ Y GG;@u ج@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfج@fl9uEEPج@{EEPج@dEPWSt'=ܬ@tu /$Fu ;@td=ܬ@uج@} W Y GG;@u ج@W =uܬ@y%uF؃%ج@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$8@EE EEج@}WyY3]u}ËGG=+t=-t =0t8EMج@} W(Y GG؃0i9E }9Eoج@} WY GGE@"u}F @tV$Y;5A@rGGG tG A@+GPwG P! | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐU}u3jYEh\rj+EEE}t6E9Ev)EE&E+EEEEEMujH+h@YuubYljUYE}| uj +} }}}t EEP YEE2Ujh@EøÐ+ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu ? ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU W}tE@9@uE}ÍEPu u ؅~8E=B@"EX9@sP9@H9@뫋E=}!B@"h9@E p9@]r؋ȸEE}^E `9@]wϸEEM3UW}Ex9@uE}E9@vEE]E9@rE 9@EE]E9@rE9@vEE뒐UEu$juh9@h9@h9@ujYjj'Ejj'EEPYE;Et 9Euuj'ujy'9EuEËEU5B@E Pu Ð;''t3Ð T$tÐ!R'ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}Ð&3ÐUWVS}u ߋG8uOGF҈uË]u}UW} 9EtFG tG9GwG9Gu+?u&GuW= YGHGUE}ø &3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  A@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl;@Dž\9PtP؉PNKPPoYh~PW =uh~Ph;@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}@E@E=@s3UtE]@E=@E>@EH>@r5EP>@r\>@EX>@AEx>@s6EE]@)EE>@r݋EE 9P܃}t؁@F@vF@E>@t @r05}fEf fEmE]mE܉E@0Ee >@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE`>@MU]vEu}fEf fEm]mE܉EFUR0EMm]Eh>@E5p>@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G A@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W A@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}B@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WA@UW>@;=A@r3}ÃG uUW>@ WY;=A@r}UWV}tlG t6G t3WVYG PY}B@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG A@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G A@+G?}3W A@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G A@+G?}3W A@+W;}WY3UWV}G G u}}&uܴ@@GW A@*h!YGt@O G WA@GGVYtG uO @u}G @WRA@UWV}G A@+G}G A@Wu};7}7𐐐3ÐUB@EEPhTu } E裈B@3ø6ÐÐU WVSE9ET=B@u! ` %ld%s is not an archiveDn@            222+2G202222#3L30d3}3333334Bad character %c (octal %o), line %d line too longincludeCannot read or get %sInclude file: "%s" rCannot open %syacc stack overflowsyntax errorInconsistent rules lines for `%s' Multiple rules lines for `%s' .SUFFIXES.SUFFIXESToo many leftsMust be a separator on rules line %dmakefileMakefileRELEASE@|'@MAKEFLAGS+@ #|=^();&<>*?[]:$`'"\ :=;{}&>|$$Reading "=" type args on command line. Reading internal rules. Reading environment. No description argument after -f flagCannot open %s.IGNORE.SILENT.SUFFIXESNo suffix list. No arguments or description file@ *** %s NOT REMOVED. *** %s removed. .PRECIOUS--rReading %s Description file errorOpen directories: %d: %s Macros: %s = %s Lookup chain: %s %s %s: %s done=%d (MAIN NAME) depends on: %s commands: %s -fUnknown flag argument %cZZZZZZZZZZZZZZZZMAKEFLAGS=Hash table overflowCannot allocate memoryCannot allocate memoryCannot allocate memoryCannot allocate memoryout of memoryout of memoryinfinitely recursive macro?*:*=*@*<%?@*<%?Cannot alloc mem/.setvar: %s = %s noreset = %d envflg = %d Mflags = 0%o [@* markfile.c $(CC) -c markfile.c rm -f markfile.cggggggggggggggggggggg??GA>???/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF2z>z`]zz&zJzzzzzzzzzzz|=K|ez|~=zzz5|{K|-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@A@@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0A@@bin/test100755 3 3 14234 4201164004 6755 37777777777 LO! pD@@.textp .data@@@@D@@.bss@@.commentÐET@RU RP PjÐUE@E @@hd@0u6hf@E @J@4thm@hh@E @9@Wt3U졌@9@|"}t @3h|@hw@V@@@UEj@9@|"}t @3(h|@hw@@@@YE}t]h@uuU Ћh@uu'h@ut5@h@  @EUh@jYPguu3 @Ej@9@|"}t @3(h|@hw@ @@@YE}t"h@uuRU#Ћ @EUh@j@9@|"}t @3(h|@hw@~ @@@YPhuu3 @UWj@9@|"}t @3(h|@hw@ @@@Yh@W u|Eh@j@9@|"}t @3(h|@hw@ @@@YP th@h@b E}j@9@|"}t @3(h|@hw@) @@@YE @}t0h@u h@u h@W upjj@9@|"}t @3(h|@hw@ @@@YPuu u3h@WM upjj@9@|"}t @3(h|@hw@ @@@YPuu( u3ph@W upjj@9@|"}t @3(h|@hw@ @@@YPuu u3h@WI u[h@j@9@|"}t @3(h|@hw@ @@@YPjh@W u[h j@9@|"}t @3(h|@hw@@@@YPh@Wo u[h`j@9@|"}t @3(h|@hw@+@@@YPh@W u[hj@9@|"}t @3(h|@hw@@@@YP#:h@W u[hj@9@|"}t @3(h|@hw@Q@@@YPh@W( u[hj@9@|"}t @3(h|@hw@@@@YP`h@Wu[hj@9@|"}t @3(h|@hw@w@@@YPh@WNuTj@9@|"}t @3(h|@hw@@@@YPYh@Wu[hj@9@|"}t @3(h|@hw@@@@YP  h@W{@9@| j Yj@9@|"}t @3(h|@hw@@@@Yh@Wth@Wu @j YoW#YPY\h@Wueh@j@9@|"}t @3(h|@hw@s@@@YP]P3h@W@ueh@j@9@|"}t @3(h|@hw@@@@YP3nj@9@|"}t @3(h|@hw@@@@YE}uh@Wxk3h@uYth@uEu# @h@W- 3h@uuaWj@9@|"}t @3(h|@hw@@@@YP3@h@uuaWj@9@|"}t @3(h|@hw@Y@@@YPC63WYEj@9@|"}t @3(h|@hw@@@@YPYEh@uuE9E3Hh@uuE9E3!h@uzuE9Ei3h@uWuE9E|F3h @u4uE9E}#3h@uuE9E 3u5@5@ oUu uu3U EPu|E#E ;E u3U EPu|E%;E u3U EPu}3Ã}~3Uu uPYUW} jhD@j WYPWj jhK@j hY}UWV} ujhM@ji WYPWjV VYPVjC jhT@j2 hEYu}UPWVS}EY@uJGY@u=+t =-u EGY@u 3]u}ø0+Ëk 0+GY@uރ}t뾋븐UPWVS}EY@uJGY@u=+t =-u EGY@u 3]u}ø0+Ëk 0+GY@uރ}t뾋븐UWV}u ;u 3u}F;t N+Gu׸!Ðz3ÐUWV}u;h`@YEt Eu =\@t3txEi@\@ho@EPuEPjEP|>h~PW =uh~PhX@^ 3WYkUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø3ÐU@EEPhTu } E裀@3ø6ZÐUPWVS}u ]} G֊ FK}E]u}øÐÐ@ÐT$UÐD@@(#)test 5.3b of Jan 27, 1988[]test] missingtestargument expected-o])test-a!()test) expected=!=-r-w-x-d-c-b-f-u-g-k-s-p-t-a-o-n-z-a-o=!=-eq-ne-gt-lt-ge-le @%@2@testsyntax errorunknown operator test: test: ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/3.1bS03.1bS03.1bS0   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~bin/size100755 3 3 53030 4201131171 6744 37777777777 L! G @.textG .data@@ H@.bss@@.comment`UÐET@RU RP PGjÐU0ME E EEEEE E+E=-EEU EME}σ}uhP @h/ @h@Z jFYh@h@9E~3E E@5@E0H @*@@ =Pt@@ =L@@ =eEP5@q=u[EPE0hQ @P9uPh[ @ PYh@=YE0h @h` @h@/ |9uE0h @ E0=YPE0h @h @h@ 5@kY@E0h @h @h@ 5@YME}kj"EYËE=VtW=dt4=ft9=nt:=ot=xuR@f@Z@N@F@>h@h@h@h@  EPh. @h @h@ EBJCUDžTDžPDžLDžH@@ =euh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@EX@r5E`@rl@Eh@AE@s6EE]@)EE@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEp@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ex@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@ @GW @*h!YGt@O G W@GGVYtG uO @u}G ("@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裘@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$ä@@(#)size 5.3b of Jan 27, 1988%ssize - %s System V/386 Release 3.0 4/20/87 (shared)%ssize: unknown option "%c" ignored usage: %ssize [-Voxd] file ... %s[%.16s]%s: %ssize: %s: cannot read archive header %s: %ssize: %s: bad magic %ssize: %s: cannot open @2 @d @ @ @ @ @ @ @ @ Section  Size Physical Address Virtual Address %-8.8s 0x%.8lx 0x%.8lx 0x%.8lx %-8.8s 0%.11lo 0%.11lo 0%.11lo %-8.8s %10ld %10ld %10ld %lx%lo%ld = 0x%lx = 0%lo = %ld %s:%s: cannot read section header.text.data.bsscannot read section header + (%.8s).text.data.bss + + %ssize: %s: %s ` %ld%d%d%o%ld` %ldr! ` %ld??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF%N/N/%N/.N/N/N/N/%v%N/%%N/%%%%%%%%%%N/N/N/N/N/N/N/N/N/N/N/(N/,N/N/N/N/N/N/N/N/N/N/N/N/N/N/N/N/'N/N/N/N/N/N/N/N/N/N/.&(**,&&N/N/ &N/N/'N/N/N/.N/F'N/N/'-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@8"@8"@@@"@#@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@@"@#@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0bin/sizefs100755 3 3 12064 4201131173 7301 37777777777 L! < @.text< .data @ @ @.bss$@$@.comment$ÐET$@RU RP PjÐUP9Etjhv@j jYjE pE}?h0@Yj|Yu'YE p/Y4,@hYjRYhh(@u =thT@Yj!YUjhv@j jYUuYUWVS EO }}-fE9EuE EO8@E؉E6fE.}u u'E E񊖒@8EEOf}t EO-G +PEPjV ]u}UPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWV@@9 @s @<@uYtVuj_ jh@jN WYPWj; jh@j* u}ÐUWV}u;h@YEt Eu =@t3txE @@h@EPuEPjEPy|>h~PW =uh~Ph@ 3WYkUWVS}$@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø^3ÐUPWVS}u ]} G֊ FK}E]u}øÐÐ @Ð@@(#)sizefs 5.3b of Jan 27, 1988Can't open layout information. openRead on layout device failed readusage: sizefs device area# 0123456789Unknown error: @@ @ @0 @H @R @l @~ @ @ @ @ @ @ @ @ @ @" @4 @C @S @b @s @ @ @ @ @ @ @ @ @ @ @7 @H @c @v @ @ @ @ @ @ @ @( @L @f @o @x @ @ @ @ @ @ @ @ @" @+ @4 @H @Z @h @ @ @ @ @ @ @ @@$@-@6@I@R@[@n@w@@@@@@@;@y@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error  ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/3.1bS03.1bS0   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~bin/sleep100755 3 3 30450 4201131175 7107 37777777777 L! &L  @.text& .data@@L '@.bss@@ .comment1ÐET@RU RP P&jÐU E9E}h@h( @vjp&YE PU=09E| 99E~h@h( @=j7&YkE E-0EEEEuukYj&YUPWEEE@ uE@ t(EH uuu ' E@ t }ËU}u3jYEhj$EEE}t6E9Ev)EE&E+EEEEEMuj$h@YuubYljUYE}| uju$} }}}t EEP YEE2Ujh@EøÐ$ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  ,@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY Ek E-0GE9 @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl @Dž\?E2ETMDžl @Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE9 @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@ @YEt Eu =< @t3txEI @< @hO @EPbuEPSjEP |>h~PW =uh~Ph8 @ 3W YkUjuuuu u#Ujuuuu uU$WVS}4@E4@E` @s3UtE]4@Eh @Ep @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁4@@v@E @tE@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+4@u4@1}tCF0N<94@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G ,@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W ,@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;=(@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG ,@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G ,@+G?}3W ,@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G ,@+G?}3W ,@+W;}WY3UWV}G G u}}&u@@GW ,@*h YGt@O G W,@GGVYtG uO @u}G @WR,@UWV}G ,@+G}G ,@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐU WVSE9ET= @u<@  @ @ @@@@ @@@E@3؋=@E&;5@ @E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@ @~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ0'NL$0':L$0+L$0L$0 L$0 Ã@ÐT$@@(#)sleep 5.3b of Jan 27, 1988usage: sleep time sleep: bad character in argument 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF(%Ueeeeeeeee| -|  xQ-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@(@@,@3.1bS03.1bS0bin/sort100755 3 3 67514 4201131176 7002 37777777777 L! p\d@@.textp\ .data@@@@@]@.bss@E E h8@80@E E =-)E U@Et+=T=oEPt:@X8@zE@=-hh8@d8@d8@>@KM~E E X8@.h[@h@@jZYME E 0OY@ =dvE 0h\@jZYE d@=>@~3PE BRE =+ui>@@>@;E|?E@ k(P5>@YX>@uh@hq@9jZYE jE BROE h8@ d8@d8@M">@Exk(>@E@9uaE@9PuS@9PuH@9P u=@9Pu2@9Pu'U JHJHJ H ЋMIJHG;=>@~=d8@uh8@d8@d8@@=P8@t'9d8@~h@h@jXY`jXY00@jj240@=H8@u<=P8@u3j580@@0@uh@h@jXY/@d@c^XP/@0h@(0@/@/@P*(0@(0@8u-(0@h5p@(}/@/@8u}h@h@jWYWRY5p@1YjjTW=th|j>Wjj2W=th|jWh|j WjjW=th|jVd8@,0@=H8@uR=P8@uI8+@ t+h@}u!@Ph!@8rEYh,+@MY=D8@u D8@kD8@@@0@L8@940@+00@9@0@r$D8@)@0@ L8@9L8@}9L8@|00@@0@PUYth@h@t=P8@t |@3x@=H8@u =P8@t3d8@,0@+ljE;L8@L8@HEE}҉Uu L8@HE9Etm6 hD4@5/@I'EPWE?L8@E,0@9E|E hD4@5/@'uW}L8@;,0@|=\8@t;=d8@|;=,0@tm=X8@t6h @5X8@I/@u5X8@h @%_ /@<+@hD4@5/@m&5,0@W@ }U,WVEEEE00@@0@EEEP- YEu E,+@0h@u;IEuuuh @c  YhD0@u%E-=00@ƃ8}Q GU EE9Er5u+PWi# u E WHYE}uhE@ t)u}u!@Ph!@  EY}u+d8@9EEEP YEuFE,+@mEH= uz+F;D8@~ +FD8@ƃ8Eh@uGEuuuh @ M YhD0@uk$E$G;s;}u h& @h @uh' @ G GGƃ8E FEG}+=9E@0@80@5@0@580@380@=80@u Ew80@3HUЉUE-EEmUm 9uw80@3E80@380@@0@+=}t!00@9Fuht @h\ @  E}t d8@9,0@tK=X8@t6h @5X8@#F/@u5X8@h @I  /@<+@hD4@5/@"uVL/@@ thu @uh!@ , Y5/@^GY}ű}UWVSE +E|u"E05/@uY]u}à | E ul9@3ۋZƃ}9@UЉU RuE El:@C9@+M]3&Kl:@l:@ FVW;u||@3x@uY:@T8@l9@05/@uYtUpt/ 9@,l:@99@~l:@Pt 9@~%l:@l:@ uWFM~-u>Y:@tu0t@h}=fUWVS}ߋNjU J‹|@9x@~9E ~u0E2t@|]:@x@]u}ËENj؋0E2t@Et)}} -+ǹE}+EEMwuƋENj֋ ME|@PUTWVS00@EL8@D8@00@ЉUD8@El9@3]S5YE}u E,+@3h} @u>BUuuuh @cYD8@UxuE4E0E4uGFEB t)u}u!@Ph!@#EYE4NCYC;]  SVC;|W Y:@l9@T8@E05/@uY}t0uX0E4#tdEB t3EPYP}u!@Ph!@IEYE4tBYO~9W Y:@ WV}tu0t@[(];d8@|S.YPS%YC;] |䡼/@@ th @uh!@lY5/@AY]u}UWV}u GF= uu}UWVS}u W5D8@Vx u3 V?Y؅u]u}ÍC= u3D8@H;}h @h @F 3h @h @U5/@uUWVSEEjYE}u E,+@0h @u?Euuuh @0jYhD0@u3E00@D8@P0uE@ t)u}u!@Ph!@EYu(@YjIYQE44t@؅}E4h @u=T8@tE4h @qߋE4utE@ t)u}u!@Ph!@JEYux?YjHY]u}UW} G= uu u}UW5,0@8Yh @WV=/@uWh @,0@}UW};=d8@}2h8@=-uh8@Bu3}áh8@d8@+ǹ@a(0@ǙRa‹(0@Bp@U=X8@t6h @5X8@</@u5X8@h @/@<+@U@W=H8@t =X8@u}ÍEP5X8@!=td8@-}>3:EPh8@4 =tEU;uEU;u\8@G;=d8@|Uuh @ DUWL+@Wh !@WuWu Wh!@}UWd8@9,0@u,0@=d8@W+YPP YG;=,0@~5@gFY}U8WVS=>@~3E kE(>@E̋}u }tDjuW EjuW juV EjuV~ WyYEVoYEE̺9Pu7@ EE=-u GE؉E=-u FE؉E}E̺9Pu4V YEW YU+ЋEP U}tE]u}ËE̋UXE>@9E=T8@t3u u7E܋E9EsE](@uuE؋E9EsE](@uE܉EԋE؉EEE9EuF#EHEUJU+…EtEE9}v9uwEHE=09}wEHE=09uw}u7}=.uGu=.uFE9EubFG+…Et EE;}s>](@t-;us(](@uG=0t Ef;}s&](@uF=0tE;;uM](@u7G<uF<u;}s = u";u = E̋@ ;us = u E̋@ EFUG +…E{E̋UP UWV}u G= u 3u}F;t= t!N= u >@@ ;~ >@@ 븡>@@ UWVS}E @U‹}WY]u}à`8@ta$= G;u}uGN}9G= t= t = tuG= t = uN}ȋE @U<t.9EuE @<~GG= t= tE @ U4GN~ = u"UW}G= uNj}UWVS@k>@(>@Ћ3Ë֋ G r]u}UWVSl8@l9@ Nj։K}]u}UWV}} 3u}G3FUWVSk>@(>@3E=it;=bt =.t(&GU ]3 GU º9u GU >@@ >@R+¹E@EMGU =M3=dt!=cP8@3=f`3#=tt4m=ntM=m<H8@|GGcE@E`8@`8@QMI=rG 2=yt =uT8@ E@E8tJE](@tEPY 80@h7!@h!@j>YM80@=zuME@E8t%E](@tEPoYD8@kh\!@h8!@Wj7>YOE](@tEP.YWM Ήh!@h]!@j=Yt@EEA]u}](@u3=@C|3=@>@=@G=@](@t ^)@È;@C|;@h](@Wu3<@C|G<@6](@t ^)@È;@C|GGUWVS}3k -0C](@uۋƋ]u}UWVS,u E@P] SuE@EE +EE=vZE3E9EEE-CE73t@E}}M]؋u܋}Ã}~E63t@E}}M }~EEEt(67t@Et}~E)EEEEE؉]}E -EE}EEUE}~:;u EEEUtEE=Y;u=T8@]tEEE-E;s37t@E; ;uv6E0t@EB#EEE9Er+EEE +E9EUETE@h@h!@EP EP.YE=~jE@PEPE4@8 E 9E|UPWVSE;@3:}4@u Ë]u}ËEGUF ;tC |U}u!@Ph!@_ËEUuh!@@zUEE E@9E} E@9E~EEEm00@E;00@v40@+00@9E~40@+00@EE 9Ev00@EP7Yt3ËE+E Uui YPu u UWVSE,} t E u#h%@+YE t E u"@E }W%GNEPR4!@vEPR4!@qEP4!@oEPR 4!@jjWEp I uh%@W1 E 9P } GjWp  jWEp  jWEp wjWE 9P~ @- E@P GjWEPBR -jWEPBRw jWEp_  GE 9P| 5"@W5"@_uh%@W uh%@W jWE0  Guh%@W gEЋ@+BE9EE@@EE|pEkjWEpw Exu @- EЋ@+B@E9E| E@@EE| EE4jWu u5"@W u5"@W |jWEp gjWEPlR KEP 4%@GFu,GGU J-%|=Tw|$"@GE E u+EEE]u}À%uӋE E 믋GFu뻋GFu뫋GFu뛋GFu닋GFuxGFueUWVh%@'YPt Pu#$@t DžP!@% h!@P?tPh$@,(jh#@2$=t(P$ u8@P.YHu8H$' ;8tH1YBH8L L@H*F+} T<8@Pj W' GuЃ+uNhTPh!@x1 j@Ph!@K =#@t 5#@\0YH#@$!-YUWVS}u ]H|m=wf|b$t$@ǹ@0FǙi+ǹd@0FǙkd+ǹ @0Fǹ R0‹FƋ]u}ÐUWVS} 3G %=utG9Gu!?uG DuW*Y 3G P.@UG u;u&YEPuG P0 E]u}W)Y=u~GEU+Ѕҋ~SjuudEt E+EH؋)G?}3W P.@+W;}WF+Y}t*G @tWY)Y=u ]VEgUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuwEtE+E؋E)F>}3V P.@+V;}VW*Y}u +gEEv/ÐUWVS}u ]GF:u Nj]u}M}3UWV}uW!)YG uG tO G Dt1,+@"u}F @tV"&Y;5L.@rGGG tG P.@+GPwG P=# | GG듸9tO O G tg aUWV}G tG t w=,Yg E GuaO }8u>@C@GW P.@GGu}G G@WRP.@G WP.@V(YtO @UWEEEEEE2EEEPuu ' ENj}ÐUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐUW(E+%@EEPY=%@iGQiWkW<E=@/@u=D/@uWEPEP< @/@ED/@EE9E|)E9E}!E+%@EEPYG Nj}UWVEQUEE}} EQME<H/@EL/@ƙ5P/@Ep`/@}| FFFtmnEN}|ۉ5\/@}=d/@ƹtmn=nu f%@3 u%@+Fu%@;}f%@GT/@5X/@h/@H/@u}Ëƹtmn)EFƹtmn9E}(@Dž\?E2ETMDžlA(@Dž\EE C~u~E܉TMs؍gh݅H&@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H&@u+-hJhE](@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hd*@YEt Eu =`*@t3txEm*@`*@hs*@EPbuEPSjEP|>h~PW =uh~Ph\(@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}l/@El/@E*@s3UtE]l/@E*@E*@E*@r5E*@r*@E*@AE +@s6EE]@)EE+@r݋EE 9P܃}t؁l/@/@v/@E+@t}/@r05}fEf fEmE]mE܉E@0Ee $+@];r&=5|+l/@ul/@1}tCF0N<9l/@]Ћuԋ}ËEE0]@EEsEE 9P EEEE*@MU]vEu}fEf fEm]mE܉EFUR0EMm]E*@E5+@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G P.@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W P.@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G P.@+G?}3W P.@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G P.@+G?}3W P.@+W;}WY3UWV}G G u}}&u>@C@GW P.@*h!YGt@O G WP.@GGVYtG uO @u}G G@WRP.@UWV}G P.@+G}G P.@Wu};7}7𐐐3ÐU/@EEPhTu } E/@3ø6ÐÐU WVSE9ET=0/@u<4/@ 0/@0/@ 4/@$/@4/@ /@0/@$/@,/@E@3؋= /@E&;5$/@0/@E@E=w=,/@jY$/@@;t?3Ee ƹ3tL3+‰EEE2$/@+,/@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5,/@$/@0E+E-$/@@;t$/@$/@$/@0/@~Љ /@;5 /@v /@(/@ /@ 9=,/@u /@,/@G(= /@95,/@u=,/@7tލ;r;l%;UWV}5 /@%$/@9u5,/@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ(/@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$8/@Ru 8/@+D$øT$8/@3øÐ0\NL$0\:L$0+L$0L$0 L$0ÃÐ/@ÐoT$D@@(#)sort 5.3b of Jan 27, 1988@ @/@L  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~@:@@@@@@"@&@*@.@2@6@:@V/usr/tmp/tmp -can't identify output filepath name too long: too many keys-can check only 1 fileallocation error before sort%s/stm%.5uaacan't locate tempstdinallocation error before mergerrwarning: missing NEWLINE added at EOFwarning: missing NEWLINE added at end of input file fatal: record too largesortingrmergingwarning: missing NEWLINE at EOF addedfatal: line too longrdisorder: non-unique: wcan't create wcan't create can't open sort: invalid use of command line optionsinvalid use of command line optionsinvalid use of command line options%bread error on stdinwrite error while usa_english$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@%@ %@%@%@%@%@%@"%@&%@-%@4%@<%@F%@O%@V%@_%@h%@q%@%@%@%G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(G(:%a%G(%G(G(G(%%G(G(G(`&G(G(G(G(&&& 'G(`'' (((G(G(G(G(G(G(%%O%G(v%%G(G(O%G(,&G(G(F&x&G(&G(&G(&G(G(H'''/lib/cftime/:+*++*JanFebMarAprMayJunJulAugSepOctNovDecJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberSunMonTueWedThuFriSatSundayMondayTuesdayWednesdayThursdayFridaySaturday%H:%M:%S%m/%d/%y%a %b %e %T %Z %YAMPMCFTIME%m/%d/%y%I:%M:%S %p%H:%M%H:%M:%SLANGUAGE/lib/cftime//lib/cftime/@&@D&@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF9jCjC9jCBjCjCjCjC99jC99jC::::::::::jCjCjCjCjCjCjCjCjCjCjC,<jC@jCjCjCjCjCjCjCjCjCjCjCjCjCjCjCjC;jCjCjCjCjCjCjCjCjCjCB4:,<F>@/:4:jCjC(:jCjC;jCjCjCCjCb;jCjC;-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@G@G@L.@ G@H@3.1bS03.1bS0bin/split100755 3 3 32634 4201131200 7125 37777777777 L! + x @.text+ .data @ @ +@.bss@@x .comment5ÐET@RU RP P*jÐUPWVSEE =-E B=6tbG=2tY#=0tPEy=1t6p=4t- =3t$^=5tU=8t =7t C=9uh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E,@r5E4@r@@E<@AE\@s6EE]@)EEd@r݋EE 9P܃}t؁@@v@El@t@r05}fEf fEmE]mE܉E@0Ee t@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEED@MU]vEu}fEf fEm]mE܉EFUR0EMm]EL@E5T@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW|@;=@r3}ÃG uUW|@ WY;=@r}UWV}tlG t6G t3WVYG PY}l@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u\@d@GW @*h!YGt@O G W@GGVYtG uO @u}G l@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUl@EEPhTu } El@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @t@@p@@t@|@E@3؋=p@E&;5t@@E@E=w=|@jYt@@;t?3Ee ƹ3tL3+‰EEE2t@+|@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5|@t@0E+E-t@@;tt@t@t@@~Љp@;5p@vp@x@p@ 9=|@u p@|@G(=p@95|@u=|@7tލ;r;l%;UWV}5p@%t@9u5|@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹx@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐl@ÐT$ @@(#)split 5.3b of Jan 27, 1988rcannot open input xmore than 12 characters in output file name more than aa-zz output files needed, aborting split wCannot create output 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF) 9 9 9 9 9 9 9 9 9 P  X P j S X L  %  -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@|@|@@@ @3.1bS03.1bS0bin/strings100755 3 3 43520 4201131203 7462 37777777777 L'! 1h@.text1 .data@@h1@.bss@'@@'@.comment@GÐET@'@RU RP P0jÐUW+@j@@@Ph0#@ @@PYj@PR Rh0#@ @ppYx$toj5+@h0#@ @pBYJj+@Ph0#@[ AEt'uYjjh0#@3 hY}-j/Y}ME }~E =-}~@h0#@h@E 0$ uE 0Yj[/YE  @ME =+@^h0#@j jh+@Eh+@uE}uQjjh0#@_ h0#@jjh+@E+@=Pt+@=LEEH=$@E BE :=at=ou+@y+@qE :a @uh[@hP#@1j#.YE :k@ U 9-0@GE :a @uOGE :WUWVSD'@3 0#@} h0#@0Y4#@4#@ tVYu}ugD'@v G= uOG@D'@;v7=+@th0#@Y+HPh@hD'@h@D'@3B+@sGֈC<#@ u<#@t ]u}M}UE= t)= t"=t9E 9E} 33UE -|#=w|$$@ 9ErNËE =u 9Er0E -|=w|$8@9Es3본UD,@0#@jYUPju5D,@I 5D,@j jh+@E}uh@Y3ø 9Esh@Y3+@@,@=,v @,@,=@,@t5D,@j5@,@h,@(tuYt3UWjE(,@P5D,@ =,,@E5D,@jj h+@t.+@=u3t }à 3U+@=u3U,EXh0#@j(jEPY=(th@Yjq*YE%=@ujuh0#@ EE+@9Er3됐UWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu) E)G?}3W T&@+W;}W$Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P$ E}|EE}øUWV@H@9 '@s '@< @uYtVuj( jh@jn( WYPWj[( jh @jJ( u}ÐUPWE EL#@uL#@t* L#@h@#@uu= L#@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P" +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P" ECG t8WbYG t g GGuu G PE" E9Eus3lUWV}uW YG uG tO G Dt10#@"u}F @tVY;5P&@rGGG tG T&@+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  T&@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl< @Dž\9PtP؉PNKPPoY @Dž\EtDžl@ @Dž\P 9u E@u K@0E@FE+ËU+Љ)ETMEE E PP~؉]PJKPPkY5Dž0Dž4Dž0Dž4EE E PPX9Eu@@<Dž$@Dž<@E@uEE E -ݝHN%=L%uUHuLO%=u Dž Dž,E9Eu@@؍CEO%=uDžlH @Dž\L% H ‰PDž(Dž0Dž4E9EDž$@Dž<@@PDPE@=}E@PLH* HE能@tDžlJ @Dž\h~PW =uh~Ph` @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}D+@ED+@E"@s3UtE]D+@E"@E"@E"@r5E"@r"@E"@AE#@s6EE]@)EE#@r݋EE 9P܃}t؁D+@+@v+@E #@tU+@r05}fEf fEmE]mE܉E@0Ee (#@];r&=5|+D+@uD+@1}tCF0N<9D+@]Ћuԋ}ËEE0]@EEsEE 9P EEEE"@MU]vEu}fEf fEm]mE܉EFUR0EMm]E#@E5#@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G T&@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W T&@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@'@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI  E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WT&@UW0#@;=P&@r3}ÃG uUW0#@ WY;=P&@r}UWV}tlG t6G t3WVYG PY} '@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG T&@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G T&@+G?}3W T&@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G T&@+G?}3W T&@+W;}WY3UWV}G G u}}&uH,@P0@GW T&@*h!YGt@O G WT&@GGVYtG uO @u}G X4@WRT&@UWV}G T&@+G}G T&@Wu};7}7𐐐3ÐU '@EEPhTu } E '@3ø6FÐ2ÐU WVSE9ET=4'@u<8'@ 4'@4'@ 8'@('@8'@$'@4'@('@0'@E@3؋=$'@E&;5('@4'@E@E=w=0'@jY('@@;t?3Ee ƹ3tL3+‰EEE2('@+0'@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή50'@('@0E+E-('@@;t('@('@('@4'@~Љ$'@;5$'@v$'@,'@$'@ 9=0'@u $'@0'@G(=$'@950'@u=0'@7tލ;r;l%;UWV}5$'@%('@9u50'@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ,'@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$<'@Ru <'@+D$ø!T$<'@3øÐ '@ÐT$@@(#)strings 5.3b of Jan 27, 1988+@+@+@L@'XIZIIIStandard inputUsage: strings [ - ] [ -o ] [ -# ] [ file ... ] r%7ld %s strings: file emptystrings: unexpected end of filestrings: error in reading section headers. Unknown error: L@T@^@x@@@@@@@@ @@.@@@L@b@n@z@@@@@@@@@@"@:@G@]@l@x@@@@@@@@ @9@V@q@@@@@@@@@@1@B@O@e@z@@@@@@@@ @@3@C@Q@m@|@@@@@@@@@@@'@N@s@@@@@ @@@%@.@7@@@I@R@[@d@n@x@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@#@;@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF!111111111HPHbKPD~-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@h4@h4@P&@p4@5@3.1bS03.1bS0bin/stty100755 3 3 71130 4201131205 6774 37777777777 LJ! K% @.textK .data @ @%L@.bssH2@H2@ .commentHrÐETH2@RU RPI PKjÐUjh@jJ jhTjF j\KYUPWh2@hTjF =u5x@Yj&KY9Eu jKY9EuqE P=-uaE PBuTE PB=at =gt7 jJYJjJY5|@h@hX.@ jJY2@%= [@LE E 2@2@h@Yt"MtE E 0Y2@mh@dYt"MtE E 0WY2@<h@3Yt"MtE E 0&Y2@ h@Yt"MtE E 0Y2@h@Yt"MtE E 0Y2@h@Yt'Mt"E E 0Y%2@sh@jYt"MtE E 0]Y2@Bh@9Yt'Mt"E E 0Y%2@ h@Yt"MtE E 0Y2@h@Yt2@2@h@Yt"MtE E 0Y2@h@Yt2@2@ih@`YEh @RYU t2@2@9h@0Yt*2@2@2@2@2@2@3.4 @Ytf%2@ @%f 2@G< @u37k @Yt#k @f!2@k f@f 2@Gk @u37k @lYt#k @f!2@k f@f 2@Gk @u37k p @%Yt#k x @f!2@k ft @f 2@Gk p @u37k @Yt#k @f!2@k f@f 2@Gk @u=2@u052@GYu 52@h@hX.@l j"FYMhjE5@Yh2@hTj(A =ujY5x@/YjEYjYjEY}UW=2@t32@8U:;t3}á2@G u2@UW2@%Ph)@E4@uh@ t"t h0@Yh6@Y h=@Yt tu(0u %0@5PhF@@t hL@Yt hT@|Yǀu h[@iYt hc@VY@t hk@CYhr@8Y2@t2@Pht@2@=th@h@2@P 2@=th@h@2@P 2@=th@h@2@Pb 2@=th@h@2@P: 2@=th@h@2@P 2@th@h@2@P 2@=th@h@2@P =@t h@ Y2@t h@ Yt h@ Yu h@ Yt h@ Yt h@ Y u h@t Y@t h@a Yǀt h@N Yt h@; Yt h@( Yu h@ Yu h@ Yt h@ Y2@uh@ Y}t h%@ Yt h,@ Yt h3@ Yt h:@ Y t hA@m Y@t ǀt hI@R Y hS@E Yh]@%Puuh@ h`@ǹ#Puuh@ hc@%Puuh@ hg@ǹ #Puuh@ hj@ǹ@#Puuh@| hm@ǹ#Puuh@T hp@D Y2@u hr@( Yu hy@ Yt h@ Yt3@P Yt3@P Y t3@P Y@t h@ Yǀt h@ Yh@w Y}UW2@%Ph@E4@uh@D 2@Ph@, h@h@2@P h@h@2@P h@h@2@P h@h@2@P h@h@2@Ph h@h@2@PN h@h@2@P4 2@t3@PM Yt3@P/ Y%0@5Ph@ @t3@PYt3@PYǀt3%@PYt3-@PY@t36@PyYh>@nY2@t3@@PGYt3I@P)Yt3R@P Yt3[@PYt3d@PY t3l@PY@t3u@PYǀt3}@PuYt3@PWYt3@P9Yh@.Yt3@PYt3@PYt3@PYh@Y2@t3@PYt3@PYu42@%Ph@d2@%Ph@Jt3@P*Yt3@P Yt3@PY t3@PY@t3@PYǀt3@PYh@Y2@t3@PbYt3@PDYt3@P&Yt3 @PYt3(@PY t30@PY@t39@PYǀA@PYhI@%Puuh@j hL@ǹ#Puuh@B hO@%Puuh@ hS@ǹ #Puuh@ hV@ǹ@#Puuh@ hY@ǹ#Puuh@ h\@Y}3UWV}G^u#?u-uƋu}U@u h^@,E=uuha@hl@YEthp@YE%EE=uuhr@E= shx@YE@`EuEPhz@ zUuu h@u UE 4@uh@V U2@P2@P2@P2@P2@P2@P2@P2@P2@P2@P2@P2@Ph@4U4EPEPEPEPEPEPEPEPEPEPEPEPh@u8E̸ 9Et3fEf2@fEf2@fEf2@fEf2@EE̍UЋM̍I2@E̸9E|޸뤐UPWVS}Ei+@uJGi+@u=+t =-u EGi+@u 3]u}ø0+Ëk 0+Gi+@uރ}t뾋븐UWV@,@9(2@s (2@<@u+YtVuj4 jh@j4 W+YPWj4 jh@j4 u}ÐUPWE ET.@uT.@t* T.@hH.@uuA T.@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh8.@d UPEEPu uI UW}EEEljEEW~*YEE2uu EP }ÐUWVS}u DžL2@P2@ L2@W=~*uDžF DžDžk -0Fi+@u؃u DžÉ=lt h9uF؅[uPVi+@tDžlj,@؃nt_=P2@uVctQ[tLL2@} W@ Y GGi+@u L2@W =tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfL2@fl9uEEPL2@{EEPL2@dEPWSt'=P2@tu /$Fu i+@td=P2@uL2@} W Y GGi+@u L2@W =uP2@y%uF؃%L2@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$4(@EE EEL2@}WyY3]u}ËGG=+t=-t =0t8EML2@} W(Y GG؃0i9E }9EoL2@} WY GGE Ek E-0GEi+@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlJ+@Dž\?E2ETMDžlM+@Dž\EE C~u~E܉TMs؍gh݅H)@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H)@u+-hJhEi+@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hp-@YEt Eu =l-@t3txEy-@l-@h-@EPbuEPSjEP |>h~PW =uh~Phh+@ 3W YkUjuuuu u#Ujuuuu uU$WVS}T2@ET2@E-@s3UtE]T2@E-@E-@E-@r5E-@r-@E-@AE.@s6EE]@)EE .@r݋EE 9P܃}t؁T2@2@v2@E(.@te2@r05}fEf fEmE]mE܉E@0Ee 0.@];r&=5|+T2@uT2@1}tCF0N<9T2@]Ћuԋ}ËEE0]@EEsEE 9P EEEE.@MU]vEu}fEf fEm]mE܉EFUR0EMm]E.@E5.@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G \1@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W \1@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}H2@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW8.@ WY;=X1@r}UWV}tlG t6G t3WVYG PY}(2@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG \1@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G \1@+G?}3W \1@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G \1@+G?}3W \1@+W;}WY3UWV}G G u}}&u2@6@GW \1@*h YGt@O G W\1@GGVYtG uO @u}G :@WR\1@UWV}G \1@+G}G \1@Wu};7}7𐐐3ÐU(2@EEPhTu } E(2@3ø6ÐU WVSE9ET=<2@u<@2@ <2@<2@ @2@02@@2@,2@<2@02@82@E@3؋=,2@E&;502@<2@E@E=w=82@jY02@@;t?3Ee ƹ3tL3+‰EEE202@+82@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή582@02@0E+E-02@@;t02@02@02@<2@~Љ,2@;5,2@v,2@42@,2@ 9=82@u ,2@82@G(=,2@9582@u=82@7tލ;r;l%;UWV}5,2@%02@9u582@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ42@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$D2@Ru D2@+D$øT$D2@3øvÐ0LNL$0L:L$0+L$0L$0 L$0 Ã(2@ÐT$ø @@(#)stty 5.3b of Jan 27, 1988@@@@@@@@ @@@ @ @ !@ &@ +@1@6@;@00C@00J@00P@ 0W@ 0]@ 0b@i@q@x@@00@ 0@0@0@@@@@@@@@@@@@@@@@00@ 0@ 0@0 @@@ @@@ @'@/@5@<@ C@ K@@Q@@X@^@e@k@r@v@y@@@@@@@@@@@@@@&@&@&@@@@@@@@@@@ @&@,@3@ 9@ @@ E@ K@@R@@Z@a@i@m@r@y@+~@@@@@@@@@@@(@@@@@@ @ @@@@@@ @@@@@@&@*@.@2@6@;@@@E@J@O@U@Y@]@a@e@@i@@@m@ q@ u@y@~@@@@@@@@@@timed out trying to set modes 2Kn,X` %K05075110134134.51502003006001200180024004800960019200extaextb-parity-evenp-oddpparityevenpoddpparenb-parenbparodd-paroddcs8cs7cs6cs5cstopb-cstopbhupclhup-hupcl-huploblk-loblkclocal-clocalcread-creadraw-rawcookedsaneignbrk-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-rawcookedsaneopost-opostolcuc-olcuclcase-lcaseLCASE-LCASEonlcr-onlcr-nlnlocrnl-ocrnlonocr-onocronlret-onlretfill-fillnul-filldel-fillofill-ofillofdel-ofdelcr0cr1cr2cr3tab0tabstab1tab2tab3-tabsnl0nl1ff0ff1vt0vt1bs0bs1raw-rawcookedtty33tn300ti700vt05tektty37sanesttyusage: stty [-ag] [modes]%s eraseintrquiteofswtchmineoltimekilleklineraw-rawcookedsaneunknown mode: %s speed oddp evenp -parity cs%c cstopb hupcl -cread clocal loblk line = %d; intr; quit; erase; kill; eof; eol; swtch; 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; swtch -parenb -parodd cs%c -cstopb -hupcl -cread -clocal -loblk -ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr -icrnl -iuclc -ixon -ixany -ixoff -isig -icanon min = %d time = %d -xcase -echo -echoe -echok -echonl -noflsh -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:%xUnknown error: 0@8@B@\@l@@@@@@@@ @ @$ @0 @F @R @^ @p @ @ @ @ @ @ @ @ @!@!@+!@A!@P!@\!@s!@!@!@!@!@!@!@"@"@:"@U"@d"@"@"@"@"@"@"@"@#@#@&#@3#@I#@^#@g#@p#@#@#@#@#@#@#@$@$@'$@5$@Q$@`$@i$@r$@$@$@$@$@$@$@$@$@ %@2%@W%@w%@%@%@%@%@%@&@ &@&@&@$&@-&@6&@?&@H&@R&@\&@f&@p&@z&@&@&@&@&@&@&@&@&@&@&@&@&@&@'@'@'@$'@.'@8'@B'@L'@V'@`'@j'@t'@~'@'@'@'@'@'@'@'@'@'@(@(@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF*44*444444 +*4**4=+M+M+M+M+M+M+M+M+M+44444444444d-414444444444444444,44444444444l+d-~/1g+l+44`+44,444944,44,-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@:@:@X1@:@h<@3.1bS03.1bS0X1@:@bin/su106755 0 2 72100 4201131207 6422 37777777777 Lb! a|8@.texta .data@@|b@.bss @ @8.comment tÐET @RU RP PajÐU<@EEEEEEH@/E UЋ AuEE UЋ A=nu!EEЋE9E}E UЋ =-tE9E}!E UЋ =-tE EЋ M8@Eh<@|YuYX@uuh@h0@ j`YX@PUP UppUY@P[YPTEX@p p TY@Po[YPTEܡX@00TY@PL[YPTEj7Y\@u,j7Y\@uj7Y\@u \@@hh h@^ PiZYjjh@ X@Ptsuhh@YE}u(X@pu0PX@p*t,juh@g h@h0@j+_Y=juh@6 u)Yu u)Yth@cYj^Y}tzuh@8uh@8d@@ubY\@@}u0@,@`@h@ @\@h @h@Rh`@ Y~n@tjhn@h@) uEPRE裨@E䣬@}u EPuEPjE}u }uE܊tWu5@F)tBE܉E}t@@Ph@ Rj/uS5@Ph@6E9E~FE UJ@EHU Ruh@h0@jB]Yjh@u, U50@Yth!@Yj]Y54@YthS@_Yj\YU j,YEEP,YEh@uqQEt+u j YPj/5\@F4@P}t +ø-PEppp PBRh@u(uRYUÐUW}=@u>h@WP@=@th6WY$@j$)WY(@}5@YU=@t5@ORY@UW}G?t=:t = u= u ?tGNj}U=@uh@h@!P@u35@YUWuh5$@ (@8WOY(@xW>Y=:j EPWA( EWmOYPj:WN 9EudWY}| `9E~aE(@Bt4=:t*j EPW' EW OYPj:WN 9Et3}WY}| `9E~aE(@B (@@@xWOY(@xW>Y(@x W-Y(@xG?t =,u?tG(@xeUWVS3|cj0 Y@@h@w$YtMh@Yh @zPY=@t 5@OY=@WeM]u}hRjX@}t 9@t @}t;}u3k0@u h@8YFk,@uk4@Ph @k,@@#tk4@Ph%@_k90@u&k4@P[Y=nt3=qt6u uW tk,@ @G;=@WRYG|5@hY5@j&W~UtWVhH@\KYt.WEPLhM@EP0h@EP0h@EPKhO@EPL@=@u}hW@EP"u5@MYhY@EPx"u@h[@EPT"u @kEPdKYHE0=-uE0EPjj 7E0=?uE0EPjj EPjj EPhQ@5@G =5@LY@3UWjh]@U} }jj W Q jEPWHJ =uEȸ @WlPYfEftwEPYtOEȸ@#tEȸ @EPjj EPjEP EP5@EP jEPWI iWOY3 U0jh_@SEЃ}}3juEP EPhnuO } ulOY3u_OYEUWh@u t3!}juk4@P+ t G;=@|܃t҃}u;=@u kU,@;=@u8@kU 0@juk4@P kƀB@x}nkU 0@]UWuhj@P  @} h@Y@@u q}à un t* @} h@jY@@= uփytnt qnA @t W)YUHWkE4@Eho@EPGuEPO,h<@EP>,@EPYu-hq@uukE4@Ph@3 3}u YE@}u*h@uukE4@Ph@ 3밋EPkE4@Ph@EPf 3Au EpuEpEP}YPEEpuntG|u-h@uukE4@Ph@@ 3E@9Pu@9P t6=@t-h@uukE4@Ph@ 3uh@ Uu kE4@Ph@ U5@j~Pjh@UhRj[P@U5@jAPUWjh@O} }jj WK |-jEPWE =uEt EEW&KYE뱸&VPÐ& BPÐ .P3ÐUPWVS3&E@J  @@J <@G|33Q @E3 !@ @F|E;@<@E3 =@<@F|EW@C@;|37k0X@@@ 0Fk0X@@@F|GV3 @X@G0|]u}UWVS3E@J @F@|EL3` @0@F |3(` @X@JkU0X@23ˆ@F0|3k@ @ @ @U @ @‹<@؍%@%@%@%@FK3#` @\ @2< @@3ш0F |3\ @@0F |E9E3'\ @0\ @` @ 2 0` @׈0F |3T@HE\ @U E 0F@|ދ]u}UWVS3Ɔ8@FB|3'3+Ëȋ%8@CF|FEEt@|h8@Y3Ɔ8@FB|3oE E z@Z~9~.3Aˋt3kX@Ekkӊp@X@kÊUp@C|F|3jh8@F|3833k8@ C|.9~Z~Lj|@F |Ɔ|@{@u z@{@z@]u}øK3ÐU5 @u u@ ÐUWVhp @hd @A@Eu 3u܋}juchljJE@EPhTE@ P2F fEfEfeEPhTE@ P F h0@u@@sGֈ=@u/E} uY EP@ t tufEfEEPhTE@ PE 0@}h0@j A4@ 4@ujI@9Et u@Y=@tjJPI@U@ÐUWVS} 3G %=utG9Gu!?uG DuWBY 3G 4@UG u;u2>YEPuG PH E]u}W BY=u~GEU+Ѕҋ~SjuuDEt E+EH؋)G?}3W 4@+W;}WvCY}t*G @tWAY=u ]VEgUW{:t7uuNj}ÐUWV}uE@MtVu<u}PYht7u<ҋE3ȐU$WV|Yjht @G|Djk$PVC j$EPVM< =$tVBY3uԋ}VxBYE܄u3jEPh@X @@ŐUWV}K t9~uƋu}UWVS} uEE~,F t!O>(V#Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V 4@+V;}V/AY}u +gEEvÐUPWE E,@u,@t* ,@h @uu ,@ t }ËUPWuY@= @t)P5 @CE}u@} @P@YE}tٍP5 @uhD E @׃M @W @U3UWV}3 W @4$t Ƌu}F @<uFUWV}u ==u u}GF;t3UWVS}u ]GF:u Nj]u}M}3UW}W;YjjG P? GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh@d UPEEPu uI UW}EEEljEEWj8YEE2uu EP }ÐUWVS}u Dž@@ @W=~*uDžF DžDžk -0FA @u؃u DžÉ=lt h9uF؅[uPVA @tDžlB@؃nt_=@uVctQ[tL@} W@ Y GGA @u @W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf@fl9uEEP@{EEP@dEPWSt'=@tu /$Fu A @td=@u@} W Y GGA @u @W=u@y%uF؃%@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$ @EE EE@}WyY3]u}ËGG=+t=-t =0t8EM@} W(Y GG؃0i9E }9Eo@} WY GGE @Dž\Dž,E+É\T(89E8EEEE t5EuM+8E E+8EE쉅8EE+8EPVjh0 @9؋E;EvEPVh0 @h0 @u E\tOE\;EvEPV\l, \lu E(tNE@;EvEPVj$j$un EDž(EEEPVjhH @9؋E;EvEPVhH @GhH @u E~EE;EvEPVSSu EE؄EE܉EPVjhH @9؋E;EvEPVhH @_hH @u EE؀tOEX;EvEPVXh Xhu EE89EE+8EPVjh0 @9؋E;EvEPVh0 @e6h0 @u Ek E-0GEA @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl" @Dž\?E2ETMDžl% @Dž\EE C~u~E܉TMs؍gh݅H @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H @u+-hJhEA @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hH@YEt Eu =D@t3txEQ@D@hW@EPbuEPSjEP|>h~PW =uh~Ph@ @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@Eh@s3UtE]@Ep@Ex@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@V@vV@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 4@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 4@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W4@UW@;=0@r3}ÃG uUW@ WY;=0@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 4@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 4@+G?}3W 4@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 4@+G?}3W 4@+W;}WY3UWV}G G u}}&u@"@GW 4@*h!YGt@O G W4@GGVYtG uO @u}G &@WR4@UWV}G 4@+G}G 4@Wu};7}7𐐐63ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@ @@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øÐ0HbNL$0Hb:L$0+L$0L$0 L$05Ã%3ÐÐ@ÐWT$è@@(#)su 5.3b of Jan 27, 1988L@suHOME=LOGNAME=T@h@@@/etc/passwd/bin/shPATH=:/bin:/usr/binPATH=/bin:/etc:/usr/binPS1=# rootsu: Unknown id: %s /dev/tty??/usr/adm/sulog/usr/adm/sulogPassword:/usr/adm/sulogsu: Sorry /usr/adm/sulogsu: Invalid ID -su-su: No shell su: unable to obtain memory to expand environmentsu: unable to obtain memory to expand environmentaSU %.2d/%.2d %.2d:%.2d %c %s %s-%s /etc/passwdrr.netaccess Checking network access permissions. - No system named "%.14s". - Access already permitted on %s. HOME/r %15s-*?@/dev/nsnet%s? @system not availableusername not found%.14s password:bad passworduserid/groupid don't match- Access permitted on %.14s. - Access not permitted on %s: %s. @:2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'(08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 1991)! :2*" ;3+# <4,$?7/'>6.&=5-%      )4%/7(3-!0,1'8"5.*2$                                                                                                                                     @@/dev/ttyr/etc/utmp"""""""""""""""""""""??GA>??? @ @W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF>HH?H$HHHHH!?>H>?HQ?a?a?a?a?a?a?a?a?a?HHHHHHHHHHHxAHFHHHHHHHHHHHHHHHHAHHHHHHHHHH)H?xACF{??HHt?HH@HHHMHH@HHA-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@&@&@0@&@X(@3.1bS03.1bS03.1bS03.1bS00@&@bin/sum100755 3 3 32050 4201131210 6567 37777777777 Ls! )\  @.text) .data @ @\ *@.bss@@ .comment4ÐET@RU RP P)jÐUWVSEEE P=-uE PB=ru E;u};h @E 4Eu(E 4h @h(@; E E@3p@E9Eu]#Et荀E} u7Y EP@؃u9EE%p@E} uY EP@E=uNjE@ t-E9E~E  @Ph @h(@N 9EuEPWh @Rr@%p@£l@l@En@EEPEEPh @p 9E~.E <u# @U ЋPh @8h$ @+YutYF;uuG'Y]؋u܋}ÐUPWE E$@u$@t* $@h@uu $@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1@"u}F @tVY;5(@rGGG tG ,@+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  ,@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoYh~PW =uh~Ph8 @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E`@s3UtE]@Eh@Ep@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@j@vj@E@t-@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G ,@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W ,@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W,@UW@;=(@r3}ÃG uUW@ WY;=(@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG ,@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G ,@+G?}3W ,@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G ,@+G?}3W ,@+W;}WY3UWV}G G u}}&ut@|@GW ,@*h!YGt@O G W,@GGVYtG uO @u}G @WR,@UWV}G ,@+G}G ,@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6FÐ2ÐU WVSE9ET= @u<@  @ @ @@@@ @@@E@3؋=@E&;5@ @E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@ @~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$ @@(#)sum 5.3b of Jan 27, 1988rsum: Can't open %s sum: read error on %s -%.5u%6ld%u %ld %s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFjjjjjjjjjjjjjjjjjjjj, jjjjjjjjjjjjjjjjj jjjjjjjjjj4, F /4jj(jj jjjjb jj -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@(@@@3.1bS03.1bS0(@@bin/sync100755 3 3 620 4201131216 6703 37777777777 L! $\@.text .data\@\@$\@.bss@@.commentÐET@RU RP P2jÐU(=uj YjYUuYÐ$Ð`@@(#)sync 5.3b of Jan 27, 19883.1bS03.1bS0bin/tabs100755 3 3 50564 4201131227 6736 37777777777 L'! tBXD@.texttB .dataD@D@DC@.bssL@L@X.comment(LQÐETL@RU RP P)BjÐUh jAh@hTj= uJ@0@@4@h<@jjY\@j5\@8@DžE E =+uQ@=mtt@@8tP Y@H@ <=-u!@=Tu@@ @MM@uh@76Y@h@j5@ =@~@fPf~ 8@h@5@uhl@h@6h@5@xth@5@auhp@h@O6Vh@5@6tjh@5@ uht@h@ 6hh@h@5@ph@5@P@;@@@@8h@5@p8h@5jP5@< uPh@PYj ?YUSE=-ulE@E-uuu E@EPv ]=0|=9u u4u uth@ Yu uuUWVSEPYtE@H}HE?9E~E?3 ߋE F;u~E ]u}UWVS33rE=+u-EEP5Yt ދE G5h@ZY(EP Y;~ ދE G h@0YEE=,u@|~ h@YE ]u}UWVS}t h @YjuQ<E} h@YhxPu83 u7Y3wvE3 jƅv*=w |$@F;}x0= uWvtZ}tTju u Epp@p8up dhlwsju h(@L Ujh+@u t,jh0@u tjh5@u ujh9@u ujh>@u uhD@uuhG@uthM@uu w3pUWjhT@5@# t2jhY@5@  tjh^@5@ uhc@5@R0Zjhh@5@ t.hl@5@ thq@5@ uhy@5@/@75@uNj}à ?uݸ@U WV=8@t&f%@f%@h@hTjw4 Gh@W =@5@Y@H=$@GTG%@t G@GGG@G0GG G9@uG@ GG@BG9G8OGxG GOGNG G@ @uGFGDžuLDž  G9~Ƌh@W!.h@<.Y+|;@~ Gh}@5@u G+RPj6  G@ @u G@ @uGlG GUWVS}] @u" G3  GG2GF|G 6GC҈uOh@5@uGGGGNj]u}UWVS3E0k -0F0| =9~NE0Nj]u}UW}G?u !G+EPuj5 j>6Y}U=8@tGf0@f@f4@f@h@hTj+1 @@%P5\@ =@}cUWE @@Wuu G8uE E G҉u3}ËG8uG8u?uߐU조@rt&@nPhT@lPc0 3UWVS}G%%؁u tu]u}ËЋU<WVS}uh@5*YE}t Eu@EDž}t Eh@)Y>V*Y@u*YЁ~f@VPk*P*YЋ/FFU /FuV4*jP2} 9,@}Vh@P)P)YЋEVuV)jP2}c 9,@tjh@ tf@#f@f@}t Euh`@=)hP ) -Yf@B9uf@'@WTY9uW7YW'YWYWYWYDž=@hP-Y@tyj?-Y@t\j.-Y@t?h-Y@T@9@t 5@/Y5@/Y5@/Y5@v/Yf@}u @PZ1Y_@@x@@@@8@@T@x9s Dž@u4,Y}t Eju@P @ƀ@@@@ǂ3҉9E uu 3+YuE @fU fl5@ǀǀ3ffffhjP Y@@3f@ы @Bƀ@ǁj4jPn @nPhT@lPd* 3@@n JHJHJ H fJfHWV- @@5@G;sFӁu;s+PjV tG@@@:W6Y;s"} fffu;s#+ùEPjS  Phju ) =t0t&t@ffPffDžDžh@"Yh!@"Yt&cY~@ffPt%4Y~@ff@@?WY;s'} Ëu;s#+ùPjS W]+ @%=uK@f硰@t&@PhT@lP>' 3 @xt@@3҉@@+@P5@5@* @@(@R+P5@@@P* @l@R(+P5@@@(PZ* @L@DžS@ ɉ t@@ p 9|@4@@=u@xu fPf| @f@DžT@<t04u@@ 9r@ǀDž@ ɉ tM~04t39u@4@u@@!9G@@J\tJhxJx|3UEǀǀ3ffffhjP U조@t&@PhT@lP# 3U조@nPhT@lP# 3ÐUhH@h\ @h`@@4,@h\ @ hP@h\ @Ð'3ÐUPWVS}Em @uJGm @u=+t =-u EGm @u 3]u}ø0+Ëk 0+Gm @uރ}t뾋븐UPWEEE@ uE@ t(EH uuu c E@ t }ËUPWVS}] u}GN}E]u}ÐUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}Ð!2&ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UPWVu Yt8EPu|%E%= ujhT@$} 3u}þfEft EU;uuhT@hP@EPhP@EPhP@|=EU;u1E%= u!t EU;uWYP@\jEPW =TjjW NuWY3 $3Ð$3ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  `@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlH @Dž\9PtP؉PNKPPoYh~PW =uh~Phl @ 3W YkUjuuuu u#Ujuuuu uU$WVS}p@Ep@E @s3UtE]p@E @E @E @r5E @r @E @AE @s6EE]@)EE$ @r݋EE 9P܃}t؁p@@v@E, @t@r05}fEf fEmE]mE܉E@0Ee 4 @];r&=5|+p@up@1}tCF0N<9p@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G `@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W `@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}L@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW< @ WY;=\@r}UWV}tlG t6G t3WVYG PY},@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG `@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G `@+G?}3W `@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G `@+G?}3W `@+W;}WY3UWV}G G u}}&u!@&@GW `@*h!YGt@O G W`@GGVYtG uO @u}G  *@WR`@UWV}G `@+G}G `@Wu};7}7𐐐3ÐU,@EEPhTu } E,@3ø6ÐÐU WVSE9ET=@@uCf p !%)-159=s 7u ,1620-121620-12-81700-121700-12-8300-12300s-1244244000a4000a-12450-12450-12-826312631-cibmaltos3altos4wysealtos5-8TERMibmaltos3altos5altos4wyse8unknown tab codeillegal incrementillegal tabsillegal tabsfile indirectioncan't open-816201700450300s4000a43tn300tn120040-240/244204424ibm3101system1ibm44244424 @@x@@8@T@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNSL@M@o@@@@@@/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . /dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF^!++j!+*++++!F!+R!v!+!!!!!!!!!!+++++++++++#+i(++++++++++++++++w#++++++++++*!#%i(!!++!++a#+++*+#++w#-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@*@*@\@$*@+@3.1bS03.1bS03.1bS03.1bS03.1bS0bin/tail100755 3 3 32704 4201131230 6724 37777777777 L! \+ @, @.text\+ .data, @, @ ,,@.bss@@@.comment5ÐET@RU RP P+jÐUWVSjjj(& 9@u3H&@E PU9E~E=-tE=+tE| @Em E=-u3EEE@t3 EE@ub}u }~M9E~@j$YH&@jE p#)th @h@j)YE|kE UE-0ne 9Et/h @h@{j)Y]؋u܋}ø9EuED&@9EuEE8u(9EuE}}t53UEE-bg= \T$P @}~^=H&@uh @jp=H&@J$@%= u2juj# Wh@@j( hh@@j }=H&@uFh @j}u9E}EE90@~jEPji# E3+P@@Pj3 ~|Ẽ}u59}+E$}t39E|G +EKQ3K} }u#@@= t;uF;E};u;uC|3@@= t;u;}+HPA@P +HPA@Pj& Wh@@j& bN%E@@huj' NiEE= uċEMVuj7& 9E~EWh@@j )E}UW=D&@t =H&@tjj&YjYWh@@j% hh@@jf ʐUPWEEE@ uE@ t(EH uuu ? E@ t }ËU}u3jYEhj)%EEE}t6E9Ev)EE&E+EEEEEMuj$h@YuubYljUYE}| uj$} }}}t EEP YEE2Ujh@EøÐ$ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@b^$3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E @ET@r5E\@rh@Ed@AE@s6EE]@)EE@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEl@MU]vEu}fEf fEm]mE܉EFUR0EMm]Et@E5|@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uL&@T*@GW @*h!YGt@O G W@GGVYtG uO @u}G \.@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裔@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ0+NL$0+:L$0+L$0L$0 L$0 Ã@ÐT$0 @@(#)tail 5.3b of Jan 27, 1988H{VVVVVVV-10ltail: cannot open input usage: tail [+/-[n][lbc]] [-f] [file] 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFF R tq . : ^   Q_ y Q  I  _ -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@l.@l.@@t.@/@3.1bS03.1bS0bin/tar100755 3 3 147144 4273125546 6634 37777777777 L`# /@.text .data@@/̞@.bssTN@TN@.commentTÐETTN@RU RP P豝jÐUlWV9E}jvYfU@U@PvYPU@TU@ @XU@,@E UE E E UE 8tE TU@uj{YhE 8tE \U@OjUYBU@T@1E E 0RKYT@=u9h"@hdJ@Xjh@WvYU@PuYu耜YYT@@EP5XU@4u}T@T@T@ET@T@T@E 8tE XU@hjn Y[h@sYh"@h@PU@uRY@@ lT@5lT@YU@uh$@hdJ@Sj诖YU@%EU@hT@=|U@tW9@~J@t9jh$@hdJ@R jh@pYU@PZoYu1YY=U@= U@t@=pU@u7h$@hdJ@YRjh@oYU@PoYuەYY=U@u=T@u =U@t=U@u#=\U@uE 8th%@hdJ@Qh%@5`U@du dU@TJ@Yh%@5`U@?dU@u=5`U@h%@hdJ@Q jh@nYU@PAnYuYYhhU@w@Y=T@_=U@hT@5TU@mhT@nY%EEE=uT@%=uET@%=t}u7h%@hdJ@Pjh@!nYU@PsmYuJYY=U@t3=PU@t*jh@mYU@P7mYuYYjjs=thO6j]jjQ=th}6j;jj/=thf6jh%@5TU@bu\=U@u7h%@hdJ@Ojh@(mYU@PzlYuQYYjEY@@E=U@t4hT@5TU@k=tT@%=`uM@u5TU@@/=U@h5TU@J@=T@tWh&@5TU@auj,EY@@j5TU@a@|nu +Y:=U@h&@5TU@vaujDY@@j5TU@@| f 5TU@h&@hdJ@"N jh@{kYU@PjYu褑YY=U@u=@u @htT@5@6jfvT@fFU@ftT@fDU@u Y=T@@=@3=T@u`h$5XU@?IE 5XU@h4&@hdJ@TM jh@jYU@PiYu֐YYh$hO&@HE}=5XU@h\&@hdJ@L jh@RjYU@PiYu{YYhw&@EP߄5XU@EPIiEPY`Yth&@hdJ@Lh&@8`Yt"h&@hdJ@pL=(U@us=U@tXhhU@;YhhU@5dU@E¹PEph6@uLh&@5dU@K=(U@h&@5TU@^u7h&@hdJ@Kjh@"iYU@PthYuKYY5@9Et uYYj5TU@*@}5TU@h'@hdJ@YK jj5@' }h?'@hdJ@1KI GPh(@hR@(I G Ph(@hR@I GPh(@hR@H GPh(@hR@H G Ph(@h}S@H h0U@h(@hR@H iS@tLhU@h(@hiS@H hU@h(@hmS@H hU@h(@hqS@kH }U@"90U@t7h(@hdJ@Fjh@cYU@P*cYuYY=PU@thR@hhR@h(@5PU@4FUS@=1t1T@E=|U@t!=U@uu(YÍP>-YEMU4WVEDžfDžEDžfDž9E|#uh(@hdJ@qE Ã=$U@uhtT@u@thtT@uaxT@% 9t'`9t9t P9uu fA9t4@9t'9tuh)@hdJ@D fuHFU@vT@;u6DU@tT@;u$uh2)@hdJ@ID  @fuG9t:juƆE}}$uhP)@hdJ@C  @x=PU@tu'!YujrH u0f?u9t YY@9uBDžGMʊ ɈuO/GDžu{Y=d~Euhp)@hdJ@C fu9t fYYy=T@t=T@9T@0fUu9t YY3ft T@uhtT@ 9T@@=d|uh)@hdJ@MB jchS@uA }u=YƀS@S@2=U@t_=pU@u =|U@t!xU@@Ph)@hdJ@A uh)@hdJ@A hS@h)@hdJ@A jh)@hR@T Ph)@hR@S hhR@*YzT@= DžpT@YvT@;u6@tT@;u!u@PSt Plu@PhS@xS@1Ph)@hR@S =pU@txU@@;tU@|,hhR@)Y=U@td=pU@u =|U@t!xU@@Ph)@hdJ@0@ uh)@hdJ@@ @Ph)@hdJ@? Hfwu9t B~YYUjp~Yu'=@tah)@hdJ@?@CpT@PlpT@fvT@fftT@fPzT@JPu@PawT@E=pU@xU@E@;tU@tU@+xU@=2|1tU@ UB;|=U@uuuYtU@9E~:h)*@hdJ@>jh@\YU@PY[Y-YY6=U@=pU@u =|U@t!xU@@PhP*@hdJ@A> uh]*@hdJ@,> fthc*@hdJ@>H=pU@u =|U@t!E@Phx*@hdJ@= uh~*@hdJ@= Ph*@hR@*P hhR@&Yft\#=,U@t>h*@hdJ@y=5 @h@ZYU@P ZYYYPp&YMhPu.u ~}u9t p{YY}u tuh*@hdJ@< }ZuYLfft0Phk)@OtPhm)@OuQDž F9|E@PWP\ jPut F=,U@B4U9Et uZzYUWVT@EtU@HExU@H@|d~&uuh*@hdJ@;Vh+@hmS@M T@EPh+@hqS@M xU@@PVuh +@hdJ@;tU@+xU@H E#~;uEE tU@H EE)EEuho+@hR@0M Whs+@hiS@M Phv+@hR@M hhR@#Y=U@t6VWE@Puhz+@hdJ@Q:MPo#Y}~hPu *r σ}t8uh+@hdJ@: uh+@hdJ@9 u [xYaG;u 9t 1xYY=U@.VT@@Puh+@hdJ@z9UHU@EE5\U@ut$E%uahhR@h+@hdJ@9 E=U@8hS@hhR@h ,@hdJ@8S@=1ukhhR@6VYhhR@hS@n3}hhR@h$,@hdJ@8 =U@hS@hhR@h:,@hdJ@u8EEPhhR@T=uExT@%=tc= t\=PtU=`tNxT@%PhhR@3E}i94N@|hhR@hf,@hdJ@7 `hhR@'YM=U@2hhR@hK,@hdJ@7 =U@t59U@|d9U@hhR@h,@hdJ@Z7 U@T@E؍E܃=U@tmuhhR@h,@hdJ@7=pU@u =|U@t,E@Ph,@hdJ@6 uYTuh,@hdJ@6 EPuS=uh,@hdJ@6uu{utY~T@P|T@PhhR@, = U@u$jKYET@EEPhhR@S=U@txT@%PhhR@A,E>=U@tjYE9E~#E+EPh,@hdJ@5  @5\U@u hR@u3u0"Eu)hhR@uGu"EЃ}u=hhR@jxthhR@YS@=2ThhR@RYhhR@hS@HUEEPGY9E~\hPu w }ZhhR@h-@hdJ@4 jh@RYU@PSQY'xYYuPu mw |mEM_UtWVjdhhR@EPG EE5U@EPh3-@hdJ@ 49U@t55U@hT-@2=ytuErYu}áU@E=U@T@E=U@t5E@Pu5U@EPh-@g2uuUEEEG;}?hhR@hXN@Ih-@hdJ@-3`h.@hdJ@3LT@E=U@3E@PuuEPh.@1EPWh-@hdJ@2 @^hR@u3IcP;=U@W5U@hH.@hdJ@V2h.@hdJ@D2aWi`=U@gUjdhhR@hXN@%N hR@hN@DhR@hN@DhR@hN@DulhR@hN@DuVN@S@;uDjdhS@hN@M u,hmS@h]O@aDuhqS@haO@KDt3UDžEEPjY9E~\hPu h }ZhhR@h.@hdJ@0 jh@$NYU@PvMYJtYYuPu h |9E~EPPPZ t DžmEM+t!hhR@h /@hdJ@0  @ UtWVjdhhR@EPLC EE=U@t:U@@P5U@5U@EPh7/@.9U@t-EPh^/@hdJ@/ M @ u}áU@E=U@T@E=U@t:E@Pu5U@EPh/@hdJ@/uuEEEG;}FPFPG %PG %PG PGPh2@%u}ÍFPFPwG PGPh3@u%UPWVS}GE3k8l @E#;uP9u4G =u) TJ@}hTJ@jmTa>XJ@mXJ@. TJ@}hTJ@FP&aXJ@XJ@VC r]u}U WV}=/F=/jWAW]Y:EuajWh>3@h33@9jWhS3@hD3@9hY3@hdJ@2%jh@BYU@PAYuhYY9Et2EP_]YE|E9Eu~T@P|T@PW /F>u}Ujjg,U@Ujjg,U@Ujjg,U@UWVS}u hR@ChT@rhR@CF҈uGPhr3@hR@6 GPhw3@hR@6 G Ph|3@hR@~6 wh3@hR@i6 wh3@hR@T6 G Ph3@h}S@=6 ]u}UWVR@ FS@r3hR@FhT@rNju}U=4U@t@uh3@U"=U@t htT@2Yu h3@1"=yu3UW DJ@} hDJ@1YHJ@HJ@ unA|9Z4G } DJ@} hDJ@`1YHJ@HJ@= u‹Ul5PU@Y"YuYE|9ju5PU@" EPEPh3@5PU@$E9T@~3UW@=U@tEjpY=pU@t= U@ttU@@+xU@PIY 5xU@ YhhU@5dU@E¹PEph6@u!h3@5dU@!hhU@Y=,U@t%jh@>YU@P>YudYYh3@5TU@34u jY!=U@t3P5TU@c@=@}S5TU@=U@t3@3@Ph3@hdJ@ jh@%>YU@Pw=YuNdYY}UjY=pU@t= U@ttU@@+xU@PYc Uh@=YU@P=YucYUWV}u GF;t 3u}À?u>t =/u3UEPY4Eu^jR^Yu-Yjh3@h3@4 jh3@h3@3 h3@hdJ@h4@Yj,cY9Eu7h4@hdJ@jjh@<YU@P<YubYYjWYE=tE9Euj2uu#W EE= uEup]Yug]YUPW3E8= t GE<8u5LU@5HU@Wu E}UWVU@4E ~{0EE9E+EUЃd4E94}4j45PU@ 5PU@hj8P U@3,4(,Í88= t4G|E94|40088= t G|u u8P UWVS}u = tj`Y38C;~]u}ÍC;}C;]|ÍC= u3ŸU 8U@E;@ E8U@á@98U@~8U@@+8U@U+ЉUjj5@[ E=u7h,4@hdJ@jh@9YU@P/9Yu`YYE8U@8U@)EjE P5@[ =u7hD4@hdJ@jh@o9YU@P8Yu_YY@ P5hT@5@S E=uD94N@t7h\4@hdJ@jh@9YU@PV8Yu-_YY}h4@hdJ@jjh@8YU@P8Yu^YYuY)E|EjE P5@Y =u7h4@hdJ@jh@Q8YU@P7Yuz^YY@ P5hT@5@R =uF94N@tCh4@hdJ@jh@7YU@P;7Yu^YY 4N@94N@pUPEEPju5@Y =u7h4@hdJ@ jh@d7YU@P6Yu]YYh5hT@5@Q =uD94N@t@h4@hdJ@jh@7YU@PR6Yu)]YYE(;mPEju5@8X =u7h5@hdJ@?jh@6YU@P5Yu\YYh5hT@5@ Q =uD94N@t?h+5@hdJ@jh@46YU@P5Yu]\YYE<}tE@3UWV@98U@} =G= tUI&D&?&="@tY"@jh6@,UP@}7h'6@hdJ@ajh@/YU@P /YuUYY5@PY@jhP@5P@J 5P@YE5@hB6@hdJ@ h6@hdJ@j hP@5P@I =|P@=yu E/P@=nu j(UYhP@h6@hdJ@i }hj5TU@S@}=5TU@h6@hdJ@. jh@.YU@P-YuTYYjj5@O UW}3G}UWVS} u~ EX]u}G%؋NEXUWV}w%‹%Gu}UE ¹PE ph6@u(U4WVS}xT@%=t+= t=Pt&=`E7@/E7@&E7@T@=u7@7@EW-YT@PxT@PWF E94N@$T@%Ph17@EP! T@%Ph47@EP! jEPEPuWhB7@h77@`#jEPEPuWhN7@hH7@\WhT7@hdJ@ jwRYEP-GY|;u}u>EPW*+u-E%xT@;uET@;uWh{7@hdJ@cE=ct E=bu/T@%PT@%Ph7@hdJ@h7@hdJ@]uċ}T@PxT@%Ph 7@ 3U0W}EPq"YEP"YEE3EEEEEEPEPEPEPEPEPh7@W( }u E܋PBU}u E܋P U}u E܋PU9E|] 9ES9E|I9E?}|9;9E/}|)9E$9Eu EE}| 9E~ }EElEuYEEE9E|uY=nu9E|EEH"@EMuEHEkEEEkE<EEkE<EEEPYEk<EEP Yx tmECUEuEduEunømUPWVS}EuG@uJGuG@u=+t =-u EGuG@u 3]u}ø0+Ëk 0+GuG@uރ}t뾋븐UuYPYUWVSP@7@GF҈uEk@7@P@GFGFGFGE@k7@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRWP@]u}UW}G 9E |E R0ˆG GE R0‹GNj}Ð^M3ÐFM3Ð).MÐUE PuUWVS3h$8@@YEuE)8@j/u t88@E|PuW u |Pw4N@=td=t$= tV= t8=u2FwBVYDž|98@|DžxTCwt 4N@ hlpø9x|4N@xxt|xBM t ɉ u|Ph8@xUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3( :KÐU} u4N@3Ã} }uu ^FYEu4N@ 34N@hP8@5<8@Eu34N@uu u u4N@ 3xunYjuE@= t4N@"3CE@E4UPWVS}EuG@uJGuG@u=+t =-u EGuG@u 3]u}ø0+Ëk 0+GuG@uރ}t뾋븐UWVS}}~EE ;ur;u s 3]u}Ã?'WfY=uE H3u U+ЋO;7sSwu%H ÉE)G?}3W hM@+W;}WCY+Å{Eh H3ÐUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V hM@+V;}VBY}u +gEEv&GÐG3ÐGÐUWVT8@:@94N@s 4N@VEÐUWV} ;t?F EF F F3҉VhM@=at=rt=wt3u}ÀN jju*@ N G=+uf N ȸ*DL$Q3ÐUPWE E`J@u`J@t* `J@hTJ@uu `J@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_ø(CÐ&CÐUW}W;YjjG P? GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P-> +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P= ECG t8W9YG t g GGuu G Py= E9Eus3lUPE EPuhDJ@d UPEEPu uI UW}EEEljEEWr6YEE2uu EP }ÐUWVS}u DžQ@Q@ Q@W=~*uDžF DžDžk -0FuG@u؃u DžÉ=lt h9uF؅[uPVuG@tDžlvH@؃nt_=Q@uVctQ[tLQ@} W@ Y GGuG@u Q@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfQ@fl9uEEPQ@{EEPQ@dEPWSt'=Q@tu /$Fu uG@td=Q@uQ@} W Y GGuG@u Q@W=uQ@y%uF؃%Q@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$C@EE EEQ@}WyY3]u}ËGG=+t=-t =0t8EMQ@} W(Y GG؃0i9E }9EoQ@} WY GGEh~PW =uh~PhtG@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}R@ER@EI@s3UtE]R@EI@EI@EI@r5EI@rJ@EJ@AE$J@s6EE]@)EE,J@r݋EE 9P܃}t؁R@fR@vfR@E4J@t)R@r05}fEf fEmE]mE܉E@0Ee G Dt+G uEE Pj u tWYEEWUWVS}TN@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð" L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WhM@UWDJ@;=dM@r3}ÃG uUWDJ@ WY;=dM@r}UWV}tlG t6G t3WVYG PY}4N@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG hM@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G hM@+G?}3W hM@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G hM@+G?}3W hM@+W;}WY3UWV}G G u}}&uU@Y@GW hM@*h!YGt@O G WhM@GGVYtG uO @u}G ]@WRhM@UWV}G hM@+G}G hM@Wu};7}7𐐐3ÐU4N@EEPhTu } E4N@3ø6ÐÐU WVSE9ET=HN@u%sX;mv %sX %srtar: Volume size not a multiple of block size. Block size is %d Volume ends at %luK, blocking factor = %dK tar: Missing links to %s %ho%ho%ho%lo%lo%ho%o%o%o%lotar: directory checksum error %s %s tar: directory nesting too deep, %s not dumped tar: %s is not a file or a directory. Not dumped tar: %s same as archive file tar: %s: cannot open file ...tar: %s: file name too long %s: symbolic link too long seek = %luK a %s symbolic link to %s %11lo%6o%6oseek = %luK a %s link to %s tar: Out of memory. Link information lost tar: Single file cannot fit on volume seek = %luK a %s device special file %luK %lu tape blocks %6otar: Interrupted in the middle of a file %s: file changed size tar: %s needs unusual number of volumes to split tar: %s not dumped %o%lotar: large file %s needs %d extents. tar: current device seek position = %luK %lo%o%6o+++ a %s %luK [extent #%d of %d] tar: %s: file changed size tar: aborting split file %s a %s %luK (in %d extents) %s: symbolic link failed x %s symbolic link to %s tar: %s: cannot link %s linked to %s x %s, device special file tar: %s - cannot create tar: ignoring bad extent info for %s x %s, %lu bytes, %luK %lu tape blocks tar: cannot stat extracted file tar: %d file(s) not extracted tar: %s: HELP - extract write error tar: %s split across %d volumes tar: first extent read is not #1 OK to read file beginning with extent #%d (y/n) ? +++ x %s [extent #%d], %lu bytes, %luK tar: first record is null tar: need volume with extent #%d of %s tar: first file on that volume is not the same file tar: extent #%d received out of order tar: should be #%d Ignore error, Abort this file, or load New volume (i/a/n) ? x %s (in %d extents), %lu bytes, %luK tar: %s: HELP - verify read error tar: Verify failed on file %s, compare error V %s (in %d extents), %lu bytes, %luK tar: Cannot Verify %s, first extent read is not #1 +++ V %s [extent #%d], %lu bytes, %luK tar: first record is null tar: need volume with extent #%d of %s tar: first file on that volume is not the same file tar: extent #%d received out of order tar: should be #%d Ignore error, Abort this file, or load New volume (i/a/n) ? %s [extent #%d of %d] %lu bytes total [extent #%d of %d] linked to %s symbolic link to %s Verifying the archive: tar: cannot stat %s for Verify tar: Verify failed on file %s, files not linked V %s linked to %s tar: cannot stat %s for Verify tar:%s device file cannot Verify tar: cannot open %s for Verify tar: cannot read %s for Verify tar: Verify failed on file %s, symbolic link changed V %s symbolic link to %s tar: Verify failed on file %s, file has changed size. tar: Verify failed on file %s, file has changed size. V %s, %lu bytes, %luK %lu tape blocks %4d/%-3d %3d,%3d %-12.12s %-4.4s %4d/%-3d %8d %-12.12s %-4.4s /bin/mkdirmkdir/usr/bin/mkdirmkdirtar: cannot find mkdir! %6o %6o %6o %11lo %11lo %6o %c %s: %s %lo -tar: cannot reopen %s (%s) outputinput/bin/pwdpwd/usr/bin/pwdpwdtar: pwd failed! / tar: No process to get directory name! tar: device seek error tar: device seek error tar: read error while skipping file tar: device seek error tar: device seek error tar: read error while skipping file tar: device seek error tar: read error while skipping file tar: device seek error tar: read error while skipping file tar: tape read error tar: tape blocksize error (%d) tar: buffer size = %dK tar: blocksize = %d tar: tape write error -rtar: cannot open input rtar: cannot open (%s) tar: %s is not a regular file /dev/ttytar: can't open /dev/tty tar: please insert tape/disk number %d and then type 'y ' to continue; type 'n ' to exitPlease type something more. %s, response unknown tar: cannot reopen %s %u %ldcbpsmUnknown device type: mode %x, rdev %x %d%d/etc/mknodmknodmknodmknod cannot find mknod; device %s skipped Unable to make device %s, type %s maj %x, min %x %d/%d/%d,%d:%d:%dDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/bin/shPATH:/bin:/usr/binsh@8@pwd 2>/dev/nullrUnknown error: :@:@:@:@:@:@;@ ;@2;@D;@T;@g;@y;@;@;@;@;@;@;@;@;@<@<@'<@;<@O<@`<@o<@~<@<@<@<@<@<@<@<@=@*=@F=@_=@n=@|=@=@=@=@=@>@>@#>@,>@5>@M>@d>@x>@>@>@>@>@>@>@>@>@?@?@4?@R?@h?@y?@?@?@?@?@?@?@?@?@@@@@"@@+@@4@@O@@l@@@@@@@@@@-A@TA@]A@fA@oA@xA@A@A@A@A@A@A@A@A@A@A@A@A@A@A@B@B@B@$B@.B@8B@BB@LB@VB@`B@jB@tB@~B@B@B@B@B@B@B@B@B@B@B@B@B@C@ C@C@C@7C@AC@QC@_C@nC@C@C@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c````&a`&a&a&a&a&aa&a&a&a&a&a`&a&a a??GA>???/bin/shsh-cXE@\E@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF6{B{da{{*{N{{{{{{{{{{{}AO}i{}A{{{9}|O}-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@]@]@dM@]@D_@3.1bS03.1bS0dM@]@bin/tee100755 3 3 32614 4201131235 6555 37777777777 L1! * d @.text* .datad @d @ d+@.bss|@|@.comment|5ÐET|@RU RP PI*jÐU$W4E=?t$=at=iujj)@@h @u u/ E=u=@th @h@nj)Y @)EE EPj E%= u3 @jjj$ =9\@ @h=@t PE 06(  @ @ @=u9 9\@t 9\@uE 0h @h@{ @NEPE 0>|E%= u% @E 0h @h@/ @E EM$W(Yhh@jz jB(Y}U = @tEEEOE6E+E9E}EE+EPE@PE4 @J' E @9E|EEE9E|ÐUPWV9t @ueE9 @}#E  @ =-u E Au u}hx @E  @4u  @΋E  @ t @= @:tWu!=| @tOLjEE E 0TYPE 0jN& h\ @9YPh\ @j3& jEPj#& E  @ t @@t @u @t @?F=:t @@U @tt @@U  @ @ @@ @;E|l=| @tOLjEE E 0qYPE 0jk% h8 @VYPh8 @jP% jEPj@% t @?GE  @ @ @t @8E  @ t @@t @ut @ @ @UPWEEE@ uE@ t(EH uuu g E@ t }ËUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸v$3Ð^$3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlx@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E@r5E$@r0@E,@AEL@s6EE]@)EET@r݋EE 9P܃}t؁@@v@E\@t@r05}fEf fEmE]mE܉E@0Ee d@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE4@MU]vEu}fEf fEm]mE܉EFUR0EMm]E<@E5D@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}|@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWl@ WY;=@r}UWV}tlG t6G t3WVYG PY}\@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h!YGt@O G W@GGVYtG uO @u}G !@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU\@EEPhTu } E\@3ø6ÐÐU WVSE9ET=p@u> >>>>> f >r > >>>>>>>>>>> >>>>>>>>>>>>>>>>> >>>>>>>>>>   >> >> >>>>6 >> -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@!@!@@"@#@3.1bS03.1bS0bin/[100755 3 3 14234 4201164004 7741 1bin/test37777777777 bin/vi100755 3 3 434734 4201131356 6453 37777777777 Ls! y@.text .data@@ @.bss|@|@y.comment`|8ÐET|@RU RPN PjÐ'}u ] FG K]u}UWVSѐ }u EGEfEfEfEj蛐Y%@%@ JHJHJ H fJfH,%@fJ%@fF%@Pj/6EtEEhZuuEfEh]uuEfEf@hbuu3EfEf@f$@fH@f@Hhcucu-Ef@f$@fH@f@E=au u YE耉jE@Pf)@f)@f}juf)@ jj)@=)@uhjjj)@jjuf)@jj|uhjijj]uhTjJhbj;hbj,hbjhbjhbj hbj hbj E)@Epf@=)@t)@)@f @f@)@EfE)@fE5)@h)@?f*@)@u f*@4)@*@k -0f*@C@u0*@*@*@*@uhzEP EPYPEPjs hEPEPYPEPjI jY=r[=V-=L=C8e=RNU=lkD=c;4=w=tt=xE}=)@t)@)@nuhzEP EPYPEPjO hEPEPjYPEPj% jY =x=+d=-BhwhhVWE=Et)@EfE*@*@s*@*@]uhEP EP YPEPj[ j1Y&=Ct=Lt=rs=xyhhVWE=?)@E>f*@fl@fEf@=)@t)@)@f @f@)@EfE)@vfE5)@h)@c XfEM*@*@4*@*@uhEP EP) YPEPj hUEPcEP YPEPj j萺Y=rg=R-=CE=e=LU=c=V8=l(=v!=t =s%=xE}=)@t)@)@nuhEPL EP YPEPj hUEP"EP YPEPjy jOY =x=+d=-Whwh VWE=)=w=|$@@+@=*@tYhY *@Ph$*@,*@=u,*@*@jjY=,*@u *@jPY0*@0*@-4*@f}uX}t EuI,%@Yjhh0h'|h'躧Y8*@8*@PY}tE8tuhF*@ ƃ0hF*@O5+@f+@+@!h+@ Y踶j&Yf+@f+@f@hYtShL@f}t hdYxKhY؅tuS踣Yuh詣Yt S Y4ShbP bP3YPbPj h+@.Yf}hY+@t+@8tjjKG+@hYt,;t'jhSh+@|PPgjhgYh+@Yf}t +@27f}tfEft+@f=/@t +@]f}t +@/@'=+@tf/@jj`f/@f}ttjj58@ AHDIhڹ`Yjjn<f8@h6Y!`=bt=rtf=8@tzhY=f8@j.9Y#5h0@gIYf8@5h0@hg^f8@0@rChYj8Y%hjY*@*@hBY *@Ph$*@,*@=u&*@,*@*@jY=,*@u *@'hY BB=dh YF*@=/t f=P@u~"?t!hYE}u h6|Y NE8@FuY} u'YF*@=/t f 0@if=8@tjjhB hYJf=8@tihY.=d=h=o4=rFf8@xj6Y5l0@0GYjYf8@l0@-Phg^;f8@0@hMYj6YtVYj?YJZ9*@t 9*@u *@@=xu#&PYu=0@tEVFYEuf@f0@/8/@h0@f8@BV}MY0@h+hYV9FYvh0GY!uPvY0@^f=8@th7YIYf8@j55Y5h0@nEYf8@h0@-Phg^f8@/@90@u/@90@v 0@0@0@h>oYI軛Zj4Y9E}0@9h0@th0@VYeo>VYt58@hN@u hwY"2-ah0@fE$0@fZ0@hCYhj[Yf8@Y>=auB=H>=pu!hHsYjji6hLRYhQ*Yjs3YZ V==uuhVY h]Y=0@tf=@tf=@ujDOYLFteVCYhbYf8@0@ P=hgeY =j2Yt V蔱YH"s t<==eu1hk1Y 蟣u h Y h YhtY!htY=rt=uWf8@=l%@tBJ%@;~ ^hj5h0@5l0@/ hziYA utf=8@tdj$9@PtoFFu`9p]%@L$HL$HL$H L$ fHfL$EPpjY58*@Y;=e]:;+hY6xuF=0@tf=@tf=@ujLY=0@t/@90@v h[ Y3 ef@f0@VAYh0Yeu=0@tEV@YEuf@f0@d;/@h0@f8@|I=(9@uV\JY/@90@t豏0@ =cU=whzY hUY9*@t 9*@u *@F*@u/@90@uejZ/Y9=!u@79j輽YjY V?YVFY0@f=8@t1f=@t'/@9l0@v0@9l0@s l0@@0@ `9huY h[Y85%@iYZjjjhEPL$HL$HL$H L$ fHfL$jLj5Y$ hYnTE jh8@Q=e-=h<=ot8@su 58@Yj-YVAqYu f8@58=au6hHY" Pc Yf=8@u 0@H0@[hYj[-YB>7=nur377KhYpjj/hYOjj/f8@=at=mthɺY hɺwY YG b VE+Y+7ehκCY 5@hֺ֍l_hٺYf=8@t e)2f8@0@'=et=ithYjlY0@6quPY}t-k6=!u!D*5jCYjQY,qu f,9@ f,9@jGY0@quk*@*@hY=0@uqNhY8uj+Yt V腬Y#jI$Yf8@4 t uf0@hV#t .9@@t VY@u hCY3 uV2Y_f@ f@Ñ=h0@ub=%@t uf=/@u f=/@t0@h0@l0@*0@90@u h-Y0@@h0@l0@}t h0@l0@l0@PYY uUf 09@f}t f8@j5h0@5l0@' v蕉ljQYf8@\ ]/@=u'5h0@荍YPh臊i=h0@tj)Yj芷Yj蓾Y|jsY]'5%@dYUKjjh49@hEPL$HL$HL$H L$ fHfL$j蕽jaY0@gE_2E2;tjS(YuV/f} t=h0@t h0@0@jYuf=+@tǖ=h0@tf@ b/@90@u=h0@ub6f0@EP!Y@uf0@jjhh a=mp=a=*ig=!%-==v= f=#="xI=&9=@-==p=<M=>==P=C+=X =i J=f-=d=cf=e=g{=k=jK^=l N=ug=q$-=o=nf=p=s=r=t=yE-=wg=v=x=|=z9=~?snVhD]̋uЋ}U(WVS33tk/@t.u}UWVJE f@3f@#=t= t="t=|tԸUu hj YUK}8*@u WΉf=9@th8@hf9@WY}UWxf+@f/@+@9@+@9@/@=~Hf=*@u>=4 @t5/@PhшYPf=8@t j "OY_Uf=8@tf8@Îf=9@t,f9@fu]=%@t =9@u=9@t459@QYH9@9@= u f@ 9@+^Oa=%@t =9@u譃f=8@tJf9@fF%@B%@L$HL$HL$H L$ fHfL$`/]f8@f9@U^f9@f~9@PYf9@;,%@tfEf/@f8@9@9@+@f=9@tRf}uKf8@f9@}tbf9@f~jh+@jh9@}tf=9@u\f}t8*@8*@P2Yjjj f=/@t f@ +@= t@=uf0@f@jh+@[UPiơ9@tFL9@=t9@=uf09@f9@@ơjYf=9@tX|U!*=!u R*U5h:@4Yf:@f+@+@:@+@+@"Uf/@fu hYf/@f?@59@h?@u@f @@=F*@thF*@h?@59@hF*@f /@=9@t9@9@ 59@襋Y@9@UGB) 8@8@f"@@f8@f"@@W)Yu58@huf0@|=-s1=#t= t = t="t=+M=lK=^(s=pFc^f8@}UW^f/@ft?@/@;u=f/@f?@/@Ph莃/@PYPhULNt:=0@t*/@90@v$@@58@h?U8f=8@t*f"@@f8@f8@8@/U }u WWY}UWaf=8@tSf=8@u f=@tPDYf="@@u f=4@tPDYWU11#'PYt'="tUE@8@@Ujju" Ujju U }=8@(@@ FG M }  %FG?t m&;ta&f}u@(@@=duhSzty(@@=suhSztW r%F;@@s%@uf}th(@@hLh(@@hx]u}UWVSf<@@f~<@@f<@@f=8@f9@ft>9@=uTj$9@PXf}uj UYj UYrf}th"YFf}t(=:uj bUYf$9@f9@j:hYjSY>@@=:t蘊5%@RUYWUf=8@tsf9@ft'9@=t09@$9@;v jjj$9@PW@@@P$9@4D@@Q^XEUtLEE 0@f8@f|Cf=8@u f=/@u/f=8@u%9Et0@@A@A@f0@4*@90@rT}Kf8@f|5f=8@u f=/@u!9Eul0@A@h0@@A@hxYE0@@G0@A@0@0@0@0@ ff;wfS舀Yg^9Eu A@胔U&E]u}UPWVS9f8@f|,f=8@u f=/@uf0@l0@A@A@U=+@5+@3ttj gCY/@+@H;u hxYVhֺR/@+@H;u hxYtV訃Y@C+@;|W]u}UWVSV;~f8@ff=8@uf=/@vjj Ef0@=l0@5h0@ƃ;0@t.VWL0@@PV:0@@PW(+ǹE)0@-A@;=0@v=0@=0@A@A@uj[ v=l0@h0@@0@+ǹEEE)0@EE)A@EE)0@EE)0@ǃփf f;v=l0@;=0@v=0@=0@f}u y]u}UPWVSQ9f8@f|,f=8@u f=/@uf0@l0@A@U0@@0@@0@@f8@f|jf=8@u f=/@uV8@=uF;s;sǃփf f;r0@+0@E)0@0@0@]u}UWVSWY+@=l0@P Y4@;=l0@ta}u[C= t= t;t?+@v7F= t,F= t!=)tF F=.uF /@v hYFC҈uN;=h0@Uh+@*YjY@f8@f|#f=8@u f=/@ul0@A@A@l0@-l0@Ph>f8@f|f=8@u f=/@u fA@]u}UWVS@-@UfE8@=mu/ 0@9h0@u l0@-h0@@P~wY fEyjYu58@hjGWEPu}UPWf} h0@+l0@@E}t+l0@A@50@ƃPh#A0@"h0@5l0@ ƃf ;v5l0@;sfG;u}uf=/@u h;Y+ƹEЉ0@;tVW5{SV+{SW!{9;r*ǃ0@SV{WSzWVz hXY*qf=/@uyf8@f|nf=8@u f=/@uZ}t*E @A@EEA@ЉA@|*f0@l0@A@h0@A@E A@]u}UPWVSN3h0@9A@vA@A@P&YU:0@9A@v$A@A@PYA@Uf8@f|f=8@uf=/@t hnY0@+0@t&f=8@t=A@t=A@t jGY60@@A@5h0@h]A3f0@=A@WCwY}UWSA@-4@+@f}usqh4@h+@n0@PYf}tA@Wh4@Z50@HwY0@@P訃Yf}t 5A@b{Yh4@Wh+@I{Y0@@PvYf0@0@A@0@@A@0@-A@j< Y}UWXf8@f|"f=8@u f=/@u~yf0@t@U ЉU =l0@=0@=9Eu;=l0@u ;=h0@t"ph4@|Y؋E[4@uE PoYMuE +؅~ SoY+@)W;YoStoY=<t=>th4@c{YEPYЁ/@r h/YuVzh+@yYWzuY;=h0@p]u}UPWVSfDžDžH@@Ouc)@*@s CUPoYuEPYtNjC/PYu hJY)@u h4YuWYu˃uf0@15@PP8t= uߋu Dž h9uCPP@ Ppt u DžDž4@Dž)@jJ ~!hh4@豧 uhh4@萧 uh4@Yƀ4@C;t;t䋅uhPSmYu)9~D-)@;|19u9u1;~@ HZYCPlYtC;tPlYu;uh)@hd9sC;t= t = uȋu둡/@90@t'0@%fJ0@f=8@t A@A@SPhF*@Puf= 0@f}uF=0@tf=@tf=@uj$Y=0@t/@90@v h=Y+@h&PuP&Pw&+@0@f0@jjf0@+@ffH@fDž+@+@0@f0@ft 50@nlYfH@jjRf0@+@ffH@S95Y. h>Yh)@hL U WVSUf8@f|f=8@uf=/@t hjYqf0@h0@+l0@@PKjYUfEfB@nfB@fB@fE؋6fB@ YfB@;tR9fB@03,=t=+t=-t=.t==t=^t@tT-0@uk -0J%@;}fB@fd@=u1u 8@!fEft J%@H8@Ef=8@ut f0@h0@l0@=h0@u#0@90@su0@@h0@l0@!SV]u}UPWVS\}u 3ۋB0@9h0@u hY0@9h0@u hYB@ЍUh0@0@9h0@v hOYh0@h0@l0@GEh0@h0@0@fB@O=uO}h0@+Љl0@=u h0@0@}h0@.uhh0@0@B@ЍU)h0@0@9h0@s hYO}h0@+Љl0@h0@0@C==+=-t=.'===^o/@9l0@w 0@l0@0@9h0@v 0@h0@0@90@v 0@0@h0@9l0@vu/f=B@t%l0@PwYh .Yf8@(fB@fu=l%@tf=8@u .9h0@+l0@=~;>t6j-P5l0@ EjSS 4Cl0@j5h0@5l0@` ]u}UWVS4?F%@=P~(F%@ j--YO<}UWW} Vu>PlvYV#fYP@Yf=8@t h T-Yf}t50@;vu}UWV#f=8@t}9@t ]<U6f=/@tf8@f hYf}uA@A@`0@=A@+A@~+h0@A@}Љl0@-A@2l0@A@A@+A@EЉh0@A@E5A@jE0@8@Qc0@EdE0@E0@@EA@A@E+ù~YE9Et&uSiuuiuSxi9A@r })A@})E-0@0@=uA@-A@]A@@ء0@E+0@~Y;]t/uShEEPuhuSh9A@r }A@0@}EA@-A@A@}ЉA@E0@uxfY0@=u B@0@E B@ f0@0@EE38u$0@U;u%E+EE䡌A@Uf Pf u$0@F~Ãm0@9Ew/@90@v 0@90@v0@90@t 0@0@]؋u܋}UWVS0@A@9A@u0@90@uA@9A@t}0@+0@E"b9Etf=0@0@@%;t=;=0@v"h%Y=w=|$@hYu}UPWV} t$B@tC@$E@0^=t}t hYf=8@t9Dž,0k, <tn0k, thֺ7j "(Y0k, 4hֺ7j 'Y0k, thֺ77, 9,}0k, |TygEu f}uh V5[tXVYtA"t{ l0@h0@)+@0@jju9vɋ+@ff/@ff0@U hf=8@u uhYKuhֺW{"@@sGֈv t t u@u}UWV두U=+@ut}UW[uFf=8@u8f9@fu-=+@uu f@ WXYt WY뮋}UW!f0@fu ef0@0@U!f0@fu cf0@0@U0@tf0@t=+@t:+@8t+@+@N+@f@1=9@t.9@9@tf@9@ f=+@j|h@jd }f@t@= t Gƀ@@= u-33@tC@@F;|ƃ@9@@#jh@jѶ =t f@(f@f@=)@tjh@j @]u}UWVSY3+@E|9@uEf=+@f=/@}t+f9@W@PhͼiT0f9@X@8@3af9@f= @t0@@P Yf@@EP#YRf@fu"jY=uf9@@PRYf@@EP#YtmE9EuN0u f@=?%@u!hYh YhYu6#YE fEf0@Ud= u+f9@M*E$= t=.t=0J=^?f9@ut!/@v hYF׈Qt uՃuf=/@t f0@4@X@8@3tlEuef=+@t[f=/@uQh+@@Pf@@F @+@;}F Oh+@V蠳4@=.u4@uu}U WVY}u F1G>@EǙ}@+!NVu )= t= t뵋u}UPWV3f@fu&E=uj 5@jɽ f@U9/@9Eu f@"EP'dYh4@j3f@Ug}iVYF*@uf9Et hYhF*@h8@9f @@f~  @@Hfd@f @@d@d@etEu iSd@uf0@f0@TF*@uEtetef 0@h?@h8@菓ufd@d@d@nf 0@=F*@tRd@hF*@h?@Ih8@hF*@7<=8@t!Et Rd@h8@h?@ =et=ftf=*@t f9Eu E9Eu8@tah8@h )f9Eu>f=@t hNYf= 0@u hNY=DM@t hNY hNYf9Eu1QuCQkdPQPQPhnN]u}UWVSXy=+ur@F׈<@r h}Y\uB@tt@tf0@N)@@t h1h+@c+@HWYt f0@h7PqKt /@v hYF׈i?@u hYF*@u h:yY/@v벋FC ;u=#t=%t=\b{2]u}UWVSe@E@EEEf@&uvE+@EE@uE8uAǃ0 FUE E8tE@t׋FEf@EPY} hdYYPttt h: 0@9l0@u10@9h0@u$hF*@h8@Ou f 0@Kf}uEl0@Eh0@f9@]u}UYE+@fEf0@f 9@jEPh+@: ]ԋu؋}U WVS.2fT@d@fd@e@e@U!9@P譣Yf9@f*@ff=@t5d@d@Phb; 75d@BYP5d@d@PBYPd@Ph);=e@u =e@t_h ;Y=e@t'5e@h:=e@t h:Y=e@t5e@h:j)Yz=e@u =e@tUj:u}E}uE@=euE@=xt!E@=vuE@=ithE@PP} j:P=E}umE+@0@f0@f+@ff+@jjff0@+@ff+@U3fEf"@@=@fEft>zz@}UW3fEf,I@=@fEft||@}UWf}fgj^@YPI8Yfmkj$@Y`ǩtT= } = u =uj^@YP7Yf=t= t= t= tPY}UWUf}f=~u=B%@t j\Yf^ǩt/#Jf=t=t= t= }'=u =?%@u= t = u =uj^YP 7Yf=|[@WuJj\@Y%@0P@Y%@0P@Y%@0P@Ymf=`@tX@tj\@YP{Yf/ͽ NjF;uj\@YfFfF8uP@Yu}UWVf)f=8@tj pYuhؽ6UKf=8@t4@P:Y4@ GPY?uf=8@u h |Y}UWif8@E>z9@uJF=t= t= t=?%@t"j Yhj5%@^ U u@YUmf8M@fuf=@t 9Eu f@@9@rD@@fUf@9@r OU U@fD@ǃf0F%@E9@}f09@f9@f=9@tf 9@f9@|@E9@}@+f9@RF%@E9@}@f09@f9@ft F%@E9@}uf 09@f9@61%@u`@F%@;ufP Y=uf `@f 9@T= |J=t@f`@f9@=4%@t)F%@E`@}uj : Yj 2 Yǃf0= J<== = = H= }f?@D@u}UPWV. U9@F%@J;~9F%@E9@}f09@F%@E9@}f9@`@F%@J;F%@E`@@}f9@F%@E`@}f`@1%@uD5f=8M@thj5`%@Z hj5%@Z Of`@9@J%@J;~&9@J%@J+f)09@J%@Hf9@09@J%@J;09@J%@Hf09@9@J%@J;}=9@f8M@fu=%@t f=9@t f9@^f9@G=\'@t!f=8M@thj5\'@Y j YOf8M@fu f`@J%@H;09@9@;}1=%@t f=9@t=%@u=%@u f9@f09@=%@tVf=9@uL`@PY~ jY.hj9@P09@P5%@M P#Y jgYf09@f9@f9@f`@u}UPWV1fEf9@U=@t @ u YU0E@@`@E9@E=%@=p'@t@f=@t6@E@E9@}E9@}E‹ 9@9@`@;f=@tp@E@E9@}E`@}U+Ћ=p'@tt@E9@}9@`@+‹9@`@+‹8`@9@+;=%@t`@9@+‹G9@09@+‹؅}؋؋09@;|=%@u:09@9@;}(h6j5%@V f9@f`@`=%@tWJ%@H09@+‹؋Í@;}9~ =%@t,h6j5%@V f`@J%@Hf9@%=%@u09@9@;} =p'@t@f=@t6@E@E9@}U9@}UЋ 9@`@9@+‹f=`@u f=8M@u9@09@;}=`%@u9@09@;|yG;`@9@;~`=%@uW=`%@t h6j5`%@mU f`@.=&@t%h6j5&@DU f9@f`@09@9@+‹`@;~2='@t)h6VV5'@HPT f9@9f9@=%@t!f=8M@th6j5%@T j Y=@}f=`@u f8M@fu f`@9@09@;6=X%@t5X%@]Y=@}=X%@tgf=.d@u]`@9@+S;~Fh6j5X%@S f `@f=@t@E`@}f)`@k`@9@+‹`@;~2='@t)h6VV5'@GPS f)`@f `@h6j5%@`S `@9@;s9@09@+‹= '@t.~)h6VV5 '@GP S f)9@f 9@h6j5%@R =@}(9@09@;wf=@=p'@f=.d@9@`@+=@P`@P59@;~2=p'@th6j5p'@6R j WYf`@9@`@+=~aF%@;}V=%@tMh6j5p'@Q f`@f `@h6j5%@Q `@9@;9@`@+‹`@;~5='@t,h6VV5'@YEPaQ f`@f=8@t19@j@j@j@W#YWhuuh0@;=h0@>=j@uf=/@uf=j@u h Y5j@5j@gj@u}UWV3f=@ufj@@3ۋEm&WYuhWt f0@Z@u@t h @YjWWY@fj@Ht0@u h$ YLQ@u hS Y=&t=s7=~t =@u@f=j@ufj@f0@wUthht0@hLQ@ hhLQ@ht0@ S@=%u7S@u.9@u h Yh@hS@@|hS@h@,|@@+=c=g=r',]u}UWVSRS@WP{;]u؃u f0@f=H@t&&tT@rh YG\~u+T@rGF >uT@rh “YG\R=+@t +@8u f0@Wf=H@t'=t= t=&t=\=~tˁT@rh RYGӈGUWVS/(I@uW#Y(I@}UWtfH@fFES@bE=\u5EE&u h'Y1|9 hLYr2@rCFFUE E8u4t0@u?E=t E=u hYE=uE@=\u hYEFFE谸^u 褸F ]u hYn\u6hP tkF\Et2@rK tu h)`YF׈Et2@r ]uEUP=*=.G=["=~<uf0@\F u h4YF׈} tf0@FEhxY;Et=t} t= uFWf=H@tFF׈7= t=$t=*t=.t=[t=\=~tu܋}UWVxt0@u腈YU\}u ;tttW6PKt ~t~ttWv0Ku @r>uWhԈ脰=?uVYNfFfu-U+fF @uU+f0M@f}t6h_u Vt~==t6h 5F=@u hFYdfF f@f f@X@u.d@J%@;|J%@Hfd@d@P;HYj@8Dk@r h_艀Yʮ=\uB=t譮GrtF=uYf=8@t h8Yhj@YuhYthj@hhj@<*Yhj@v;gfF !==#=!Q[]u}UPWVSEykE ,E@kE $E@Hth$E@jjkE $E@kE C@kE C@sHthC@jjkE C@ިE 9EyUPe0赭PYu襭P\~YtUvL@YSYjYkRY}kЁ@sj8Y}kRY Nu]u}UWVSrL@T0@uGGG W ;u3"fG fu&=t=t=tW)Yj Y@r}2}UWv}7GNVfG ft+Ph&* =G PVh. (wVh4 =w=|$@@u}UWVhLcY|t |8t P@||EPPdEPldYUЉ|||/||U ||/u|cjEPnx}x$jYU(,} ;uuGuu}UWV8}t@EǙ}u t@+}3u}UPWVDM@DM@0@U}u8@jW}UW# tuuf0@}UW%u} ]~ FG K]u}UWVS+u} ]~ƃ׃f fK]u}UWVS!u} ]f_f^K}]u}UWVS9Eu?E @U9= &@tf=@t5 &@Yf=@t 5\%@YUVh+@ Yh+@ Yu;}u4@u +@VWNYPau}UWV)=\@uh=\@j Y}UW=}+@F @+@;}F Ou}UWV0@P~YUE}50@#-aE$0@;u;50@vոu}UWVB}3k G-0@u݀?tu}UWV%Du f0@ "u9}UW$ 9Et 9EuUW}tf=@u: | t)= t= t= t}UWh0@+l0@@PYU}f=8@t=A@Ld@Hd@WjYusWh}f@fuU8@@P8@ PhUP 58@"_YHE8@U=etjekYjdcYH}UPWEE+/@U50@YU50@YU50@YUFf/@ft f=8@t/4*@9Ew%E%fX0@f=8@t A@B@U.}'t`u{a| z}UWe}Wh+@]=)f=@t #f@fuF=@t=|tF>uu}UWV4@}uuY= uGf8@f~=p%@t=%@t=9@t 5%@'Yu W$YPA=%@t=9@t 59@Y}UWaJju)@Pvc hh4@)@P\ =}h[h4@\UnhgY=uF94*@rC@GPgY=t;=4*@w=4*@ 4*@}UW/@9l0@uJhtYU1f*@fuf=/@u$@9E~U/@90@u h7tYU+EPYUw}~ a5Ld@g5Ld@؋f=8@t=A@Hd@.WFYu!58@VWhn.YPKvu}UWV Pu U\}%f'fZ0@ft$0@X0@;ufE fX0@vE f]u}UWVS9EuUu}u @E@%fDk@t GGj@YtÈGt FPY>uE@Dk@]u}UPWVS: 9Eu'@EDk@}@+fDk@fDk@UP-}u f;wffǃf]u}UWVSF} f8@f|f=8@uf=/@tf0@0@ B@+E@E0@+0@U+Ћh} h~qY4*@+0@;ՅtE0@+0@P0@@Pu0@ЍRR~LЃ u0@u0@+E@Pu0@@P f0@E-A@EA@GA@u}UPWV5h0@5l0@U50@50@zUh0@+l0@@U 0@DM@$@@U#3GTP9Yu}UW|8*@uwYf=8@t=p%@t=%@t=9@t 5%@(Yu h4@!YPF=%@t=9@t 59@YU|}G?u}UWuh4@VU\=\@A@j Y}t f 0@|$9\@w}T@PnYWhn}UWUF%@9E|&F%@EE}F%@ЉUE)EEE} EE +EEEU ]5@@%jh4@j4@ P2YG?t Dk@;E|4@tO5@u}UWV#}GP0Ytu}UW}GPYu}UWK}3G$@Eƙ}@+F= t= t‹u}UPWV%0@9Et0@9Er0@9Ew/UDhTj_Hk@E=Hk@| 9Hk@~ Hk@hmYUPjjF_jj:_=0@ujY8*@8*@PYh+@B5Yu'(tjY8*@8*@PY=,*@t h$*@Y=\0@t h`0@oY8*@8*@PiYUC jj^jjx^juk^@@u==0@t4h+@4Yu%f=8@tetYj hj ^ 9@}M%@L$HL$HL$H L$ fHfL$jYuW^P9^=,*@t h$*@kY=\0@t h`0@WY8*@8*@PQYUjf8@ftzPjY][f=8@uif@ f8@ftPjYU.f=)@t"f8@ftzPj\U9i4u܋G tEPYtO*u}UWVBf@h%@hTjD }2M@%@;t%%@%= sf@%@%f2M@%@%@ JHJHJ H fJfH%@tf`@%@%=t =A%@t f@%@uf`@Uq3=4 @t=%@t 5%@Y4 @uhH@<EPju 9Et6G4 @EPjh 9EtfF%@=%@t 5%@胴Y=&@t&@=%@t%@9@J%@J%@= fJ%@J%@=P~ fJ%@PJ%@2M@= } 2M@= }J%@;~ J%@@@hh[5&@h$E@hh5&@hC@hh[5P&@h$E@}hh5P&@hC@`hh5&@hC@h$E@hh5L&@hC@h$E@uhhl5&@hC@h$E@Shh 5&@hC@h$E@1hh5&@hC@h$E@hh5&@hC@h$E@hh5H&@hC@h$E@hh5<&@hC@h$E@h h5T&@hC@h$E@hh5&@hC@h$E@ehh;5D&@hC@h$E@Ch$h"5&@hC@h$E@!h,h*5&@hC@h$E@h4h25&@hC@h$E@h:h75X&@hC@h$E@=d%@t&=X'@t=P'@t%@,&@='@t=,&@u ,&@='@t=%@u %@=(&@t=%@u %@=(&@t=&@u &@f@fuX%@p'@Cfb@fd@f=*@t f*@fd@7%@t d@f6@f8@F%@= fF%@jj5%@ =Ou %@jj 5%@ PYf`@5`'@Yf`@5,&@Yf`@j 5'@PYf`@j 5'@PYf`@j 5'@tPvYf`@5p%@dYf`@5t%@RYf`@ fJ%@ =,&@t=%@tf@=%@u=p'@uf@2M@= uf=@u f@tuhcV]u}UWVS}uuuuuhAEPt\hEP?6uEPH@E܍EPu6EP56Y@@uuuu U$^bEEkU <u E 9E|} t 9E|)EkU M EkU MLEkU MLUP}| 9E~gEM\&@[`&@Th&@Ml&@Fp&@?t&@8x&@1|&@*&@#&@\&@= w=|$@UxE}t E=Ou')@hOJ%@Pu @U@UEh49@{Pv4`{f= t =u hLY49@phȾ{P{t{f؁9@r49@h LYGӈS49@tQg{=!uEz{u49@hlLYE9@r뙋GF >um49@uC{u49@h$LYE9@rNGF >u"9@r49@h KYGӈ?@u49@hKYF*@u49@hDKYE9@rGF >u)=!=#t=%t=\lyf="I=|;PJY)=uf0@f=8@uQf}t%=0@tf=@tf=@uj>Yf}tef*@fuZ=0@tQ0@9$@@tDf=P@t:/@90@v-0@$@@Th̾YP YΚfE}49@u hf=JYf=8@tf9@j$9@PJf}t8Tf*@fuh49@h蓩f=8@t&}9@tj$9@PlptUWVSVEjj;f=8@tW%@L$HL$HL$H L$ fHfL$EPMHMHMH MfHfMEtWEP Y}If=8@t4ML$ML$ML$ML$ fMfL$EPhHYHBHFH JfHfN9@=u%`@=u f`@jjf`@f09@f9@j50@ WY|09@=t8@O>L$BL$FL$JL$ fNfL$[$U:W:f=8@t hS?Y_d@!qh0@0@Uf9@j$9@P蟡讛j$9@P舡f9@f9@ML$M L$ML$ML$ fMfL$蹡蝞f9@fF%@f8@轝5d@YUT=%@uW=%@uN=/@t:=6%@thH@hvfhsYVhr>Y=?%@t=5%@u=/@thJ>Y=l%@u=/@t|h6(>Y=\'@u=/@tZh_>Y8f`@3hklPt ll@t d@P>Y&BPPRYf=/@u2@ơfd@(PT>HBHFH JfHfN=/@uW50@kj^YS-8@ٺ>L$BL$FL$JL$ fNfL$E$U6WX/@90@u/f0@fhAYfu70@h0@l0@/@9h0@u 0@h0@}UW0f=/@t"0@0@0@0@f0@Uf=)@thzjY.JA@A@0@0@/@A@0@A@0@@A@f0@/@9 B@v 0@9 B@v /@@ B@Ui/fF%@f@@@`@=1%@tf @@@f$9@f`@f`@f`@f"d@f9@J%@-f`@@@@EX}J%@+Ћf"d@f"d@f} f"d@"d@`@;~ hz:Yf`@f`@J%@-f`@J%@Hf$9@=w=|$@f`@f9@`@`@+@f`@f`@UP}@@@=u58@h-A@@@=~ h:Y`@=P}"@@@$9@ "d@+B=X~ h9Y=b@@@@$9@ "d@+BPWN3 D@@F"d@;|@@fb@f<@@=Td@u 8@Td@u}UWVd-hj*f=9@t`jY2UWf`@ftEJ%@H+EJ%@H;|J%@-}3f`@`@+@f`@}UW룐f9@ft|f=<@@tc@t? Ufb@f<@@`@E <@@k`@Bf`@f`@f9@f`@f`@f`@f`@b@k`@<@@k`@FfNfH;sf<@@|9@u$9@Pb@@P>EPYf9@fuzfb@fuo<@@=~a"d@9E ~U譻U `@+Ћ~<)E "d@9E } "d@E fE f`@`@`@+@f`@fE ffCfCb@PuYPu R b@@<@@;u$<@@kb@k`@f`@]u}UWVSCkE`@Ft Ft 賺fFfEfffjuEjuu @Yc@t>z9@uj$ZYH`@;~赕9@=u3f9@f@@@=~f@@@ f@@@9@=u09@;~1=:%@t#9@@@@;ujHP u}UWVGkE`@fE<@@H9EGG+Ћf9@f`@"d@+;=,&@=%@t}fEf)`@`@`@+@f`@+؋E `@;uf`@f`@E rjV`@P f,d@fEfc@fEf c@ uVGPM f}tfEfc@fEf,d@ WfGE ]u}UWVS}u fE`@;~K=t%@tB$9@@+NjjWOh)V5t%@v j袐YVWa=`'@`@;`@`@;}~gjWh)j5`'@ ~c@uj@gY=p%@t"=;%@uth)j5p%@ KVWq=,&@jW`='@t> ,&@u.h)$9@@+PWV5'@Q PY D=d%@,&@h)j5X'@# h)jJ%@HPW5d%@ P h)j5P'@ h)j5`'@ Kh)jJ%@HPj5d%@ P h)j5P'@ xh)$9@@+P5,&@j FOj9@@Ph)$9@@9@+P5,&@+ c@uj@芀YKVWfEuEPV ]u}UPWVSE@k`@<@@k`@f} t fEf;v5fEffO"W‹؃;ffO;r]u}UWVSvh@hD@@P@ }EE D@@GF$9@;~u)D@@@@@P4D@@GF$9@;~jYU@WV^9@f9@ft $9@`@U+Ћf=9@t"f9@ft9@=u fc@jWGW~YE+f09@f9@u}UWVr`@@P]YU1}u f} tj Y=\'@taf$9@f09@f`@ft@@@E`@}f9@̀h)j5\'@x O$9@f09@f`@ft@@@E`@}f9@i9@=t9@=u'f09@f9@@@@P5D@@+f} t=<%@t=p%@tjY}UPW}|P~ h,-Yuh@hD@@P莱 "d@"d@NjD@@CF$9@+;~"d@)D@@@@@P4D@@VCF$9@;~3 kf)`@F<@@;~苝U@WVSf=9@tjf=<@@tY`@$9@;tG`@`@;}5`@"d@;|#f`@f`@`@`@+@f`@3bk`@`@;|LuRf)<@@f)b@3#k`@k`@ fJfHG<@@;~ F<@@;|f=<@@3Bk`@`@;"k`@k`@H`@;~ f<@@ F<@@;~<@@k<@@Jk`@ <@@Ik`@f`@u}UWVu.b@jYTf<@@ft:fb@f|/b@<@@;f=c@f9@f=0@f<@@f=c@tf9@fu?fc@;=/@ukj.50@YjYjYuD;=/@u@@=f9@f`@;b@fb@HPѾY˪J`@;~=WSb@k`@fb@;0@w>@@=uffb@ SWdG`@;>@@=u܍P Yffc@f=,d@tjYUWVS} u=%@t} }kEf`@wju='@tG9E  %@u2h)$9@+EPuu 5'@ P =d%@%@h)j5X'@ h)jJ%@HPu5d%@ P h)jjJ%@HP5%@v P~ 3 j IYG;} |h)jJ%@HPj5d%@; PC h)j5P'@. (3h)$9@+EP5%@  G;} |u uu u8}UWOh@hD@@PЧ EE uD@@GF$9@;~})D@@@@@P4D@@~GF$9@;~̋U@WVfb@k`@PYU"}f=@t W YW Y}UW'}`@fc@ff=c@tc@=} fc@9@=t f=9@th4@Pa f<@@fu f`@f`@3F<@@;};|f,d@f c@ u f9@fu%<@@;;~S;t;|Cb@;uPY0@b@+HPYb@;t0Ct%fCfcCJ`@;~pVǩb@+PW S‹F%b@+ЍU0@RW|G`@;>@@=P-Yffc@f=,d@tj ~YUWVS+} E@ kf)`@F<@@;~u}UWVfE<@@9E|}}'EE }f<@@iEE EfE} }E }}E$@9E  $@9E~fEE9E t!<@@+E;EuD=,&@t;=%@t29E ~EE <@@;~fEuua} 9E ~EE <@@;~fEEE <@@;|<@@+EE 8EE u k`@k`@ fJfHFG<@@;~fE f)<@@}9E~EE<@@B;~fEEE`@;~!=,&@t=%@tfEf<@@<@@<@@EP+Ƌ؅}f<@@ k`@k`@ fJfHON;}}ۍFu-kkf`@f`@kfǀ`@kfǀ`@FEE;} `@@;~|9@uE9E t$9@Puf}u A@]u}UPWVSMtf9@fuefRd@f9@c@tCf`@f`@|9@u%j`@P+躥Phؽ肢U2}u N}kf`@C<@@;|]u}UWVS>@@=t fEf>@@UKut}UW&&f>@@f>@@fuUf=>@@t>@@f>@@=9@tP9@8t9@9@k9@8@=u fA@f8@fb@=@t@@=9@t:9@8t9@9@ffBd@fBd@zjEPf9@fuj@P_ t9\@uh<YE=2%@tpf9@fueu`jh@j  =t@% @,@@=Ct=pt=qtf=`@@t WY\u-}@=}f}@}@=uf=}@3@t WjY"p;u C CCu}@=uuf>@@f}@\tf>@@f}@\\t f}@fBd@]u}UWVS3W @@>@@U=A@`@$9@;u:jWvYf9@j$9@PzEPthYtj$9@PzA@4@4@E+@t-=c@td@=u d@9@c@5@@|EPEPh+@jZ}9@uj gY5@>@@=t.>@@=t >@@=t=A@s[>@@=u>@@f>@@f9@j50@"W蟜Yf>@@]u}UPWVSYR=9@u =9@tfd@c@jVb@P A@8u4@9A@v A@9A@u A@5A@Y j_Yc j*YVWH5} A@8tj$YcW  DžrA@ @ˆ@A@u Rш@Š@t!PYBшPYBш@A@u 8}9jP jj$aA@8t#9@=uA@PqTYA@jj^Cij(Y35A@cY *Ru'f&d@f8@f|f=8@u f=/@u fA@fd@h4@5b@L=9@t fc@jVW= D=/@u =t f=/@t肘* =9@t*9@8@=u fA@f8@ =Zt'+@+@;j`Y3fd@f=d@uC= c@t:c@=u9@ c@puaiPDYf=d@u0@90@uA@=u0@=ur' j&Y\3f=d@td@PDYuf=d@u!=A@tCpuA@8tA@"A@Pu-0@f b@pc@0@f9@h9@Yu,d@Pfd@ftAPj Af9@d@=u*f9@Pd@=Pu0@fb@f9@f9@0@+@uNf8@f|"f=8@u f=/@uA@A@fb@HE)0@Sb@P f9@ftj.5A@50@{ 5A@Y`f=*d@t{0 =0@tf=@tf=@uj@Y+@f=@tf=@u +@ +@H+@+@,+@+@+@+@+0@|kf=*d@tfDM@0@WYtfDž+@h+@5b@b@+@fDžp^f0@ff0@t"Džf9@h9@Yub@4@@@jj/@90@u/@90@v 0@0@+f9@h@$9@4D@@P' f9@@@ff0@+@/@90@uf9@@9t@PJY4@9t4@P?JYf8@f|8f=8@u f=/@u$=DM@t9DM@tfA@A@f<@@f}">@@=:uDžDž0@90@udfA@/d@f=/@u/@f<@@ffu"h@$9@4D@@P諁 90@tfd@A@0@+b@Ћڅ|1<@@;| <@@;}f9@ftL90@t>9@=uf<@@f~ f<@@j.j50@Jw fb@f<@@f}8<@@f<@@f9@fuwW9@=u f<@@ׄb@Љڄ+B<@@;}f<@@J%@Pj5A@Yf9@fu9@09@f9@j$9@P[3#fXfuXPoYC|f9@]_jYR H9@f8@+=OG=&=g=u-=]===== 9=-==a=Q=~@=0=AR-=:=.0=@E=IX=Ck=JS=aa=S-=Q=PT=R=Y =U"h=Z[=p '=m =i4=o'=zF =u =~VWUt WVSb5A@ŠY?tG)@*@sFG@u@u=_tċFu}UWV0@l0@l0@RU/@0@l0@EE0@Ѓh0@f/@f8@f|#f=8@u f=/@u0@A@A@uU Yf/@f8@f|f=8@u f=/@u fA@d@}UWLh4@Pf8@f|"f=8@u f=/@uA@=tA@=uJ5b@趇Y50@mYjhJj fA@A@f0@}Ph4@ uPQY50@YUE}f9@fjjj9@PX%@L$HL$HL$H L$ fHfL$XU0@h0@FQf$9@f09@j=f d@ftd@d@HP 9@=uTUT@ơEPVf<@@f09@f9@j5A@50@Qp /f}t9E E/@Ћ;50@s50@;50@v50@VˇYzf<@@E0@b@E+ЋLb@E0@+Ѓ;50@s ]-50@=+t=^t0Z;50@w&`I;50@rO 3A= t= t=+t=-t=.t=^tfd@WjVo u}UWV}u fEEOTEUA@b@b@A@f$d@EUE j 1YfEcud@=Ctd@=SufEEWEED_EEYdEf= @uZE^EjYV(Y=d=5=>t=<t =!u==t=c'=s =rt=yOj Y@t'=0tЋ5d@jh$E@#P@ uK f}uy2M@=~ f c@@ @u@@t@P6Y@PNY@؃=9@u 9@fEfb@4@fd@W @u@@fE%f$d@f}u ؅u: 0@+0@P0@@PE@P~LЃ E0@E0@EA@E)0@0@@P/@@P^ E0@E0@EA@Ph4@fb@DM@4M@f8@fA@=w=|$ @UWVA@$}@ }@Uh=b@te0@9b@r 0@9b@v 0b@+0@b@t c@5b@WS0@9c@t#0@ffc@b@b@0@c@9@=f=Rd@tTc@E(5b@f c@b@P$aP`@PG fEfc@ÈCA@9b@v685A@F؅t P'Y>t;5b@r5b@7Y]u}UPWVS=b@=b@t jdY) }uf9@ftj`@P9j@KY0@b@jh:V2 Hd@ c@c@jVb@P# 0@9b@vf b@jOY4@9b@s b@4@b@9A@u \=A@-5b@W4@vt E=#uO9@=uWVH=A@^VA@HPZYPfNb@kfǀ`@b@P_Pb@k`@P0 cW-6Yu}UWVF=b@ E}7\=b@t49Eu*b@E=duEPYx7=A@=b@A@h4@h+@Ӽb@PFnYh+@߼YE5b@мYUЁ~[5b@h+@蓡E=duMh+@!gYu<b@C[Pd@Dd@PyYj1yYEPYUE=du=b@uEPYdf= @tf=X@t50@&Y h4@fYfb@f|b@k`@`@0@Ejh:u Hd@E=dt Hd@ c@9E~ c@jub@Pϳ b@jڽYf b@0@9Ew-0@|SYYh+@IY A@d@h+@'dYh4@'YE=dtEf9@ft:9@=t,c@Ef c@50@V /fEfc@fb@fb@f} fb@V50@,jYE=dt<|A@4@4@235A@D2YSjjx kA@u4@9A@v A@5A@躧Y<4@9b@s b@4@b@9A@u ǽ0 =A@9@=t29@=u WV C5b@N1Yj$!Y9@b@k`@+@@@`@‹=A@"5b@5A@9@=tHA@HPg1Y9@b@k`@+@@@`@‹+Ћf&d@ f&d@jjjc ]u}UWVS<} 3fc@fEf=@uf=@t=,&@t=%@tk訹f=X@t h4@bYO9Eu f b@-0@/@90@vVf=X@tf= @t0@@P"Yc@f8@f|f=8@u f=/@u fA@f9@ft`@@Efb@f} `@+$b@k`@b@k`@‰E"d@9E} "d@Eb@@k`@+E;}6`@9E*=,&@t =%@ub@P+Pu( V}UYh+@Yfb@fc@fEf c@u50@6fEfc@f=@tѢb@k`@P荬YA@4@4@Vjjo ]u}UPWVSvR}a=0@jhbV Pd@ @Hd@ @=0@VVb@Pz 9@=u f<@@j裣Yu}UWV}=9@t 9@49@j!JYt+@E+@+@f0@fEf0@f9@h9@{Yu,j蚀Y5f9@f9@fEf0@5A@YE+@ f9@fEf0@E+@=0@f9@h9@Yu)j$9@P/,jhvV f9@J%@PjHf9@/@90@u/@90@v 0@0@f9@Hd@A@+A@PVb@P谬 =0@0@90@v-0@f b@jϡYu}UWV+=b@t0@9b@r 0@9b@vȷ^ b@90@w#b@90@u\=b@tSb@9A@vF0@+b@f)b@0@b@0@b@=A@b@A@=b@=A@ti4@9b@u\0@9b@vO-b@Qh4@]Y;A@r b@$b@PCdYh4@[Yb@Qb@+0@@f=d@td@PhWV fd@hPd@PNtj1hWV ]u}UWVSZjPd@PsUe}5A@!Y;~ =A@HPNY5A@*Y9@b@k`@+@@@`@‹+Ћf&d@f@ft8P*+Y=9@u'蹰؅uhl +Y)SSYh4@5b@6f8@f|f=8@u f=/@u fA@A@ǣb@A@ }@b@$}@5b@5A@ڰ,jWjrS JPb@k`@PW R9Eu fEf&d@E= th 6"Yc@f(d@ft P(YE f=X@f= @t0@@PYE"f=c@uf=(}@th4@RYEf(}@FPRYP3QYuFYh4@YЁ/@v+@h4@V謧FPh+@虧+@f8@f|:f=8@u f=/@u&A@=ujhJj -A@h+@ YfA@fb@f9@ftj50@@Lb@Hk`@W50@蔇f=@t9b@k`@PYEchg YhW Y|hϿJ Yohۿ= Ybh0 YUh# YHh Y;=Rt=at=ct=it=ot=ro=syVpOYA@4@h+@A@HPKPYh YfEfc@4@9A@v A@9@=t藛4@9A@v1f&d@A@b@]u}UWVS%@@@9@HP09@HP- U } E@EEf=,}@f c@fc@fc@f*}@h+@OYE9@E`@f=9@t @ơ@ՓU"Ef=(d@tf (d@}tM}u讠t`@=9@u`f>@@fuUE=rtJ/f=@u:`@`@=~ hrļYEPhC@V| ;u}#%@;u$%@;u%VҟYGE,}@9Es f=9@t V謟Y踧lfd@}M,}@9EvE@@u܋EHPYM,}@9EvEHPVu,}@E9}u ;0/E9@b@k`@+@@@`@‹h+@A@HP}HPYf&d@f|:9@b@k`@+@@@`@‹+Ћf&d@}9@E09@Ej\ YRx#%@;t $%@;u%uuf&d@f|f&d@VY\E9@E09@Ej^k Yuu tf&d@f|f&d@6P==g==t=t===\ f=9@ uf=(d@tf*}@@f=@T`@9@ @+;}}/f`@f E=rfd@Gֈ}t G}M,}@9EvE@@uރ}t 9@`@Ћ+E+9@ @+;|NM,}@9EvE@@tޡ,}@9EwO7QjuMjhۦM,}@9EvE@@uf(d@ƈEf=8@';=,}@EPKY GP9YEfd@GEEHPYEM,}@9EvEHPuuE}kE $B@tykE $B@uu`=`@uMkE (B@kE $B@ht `@jEP袥kE (B@营Y`@EkE (B@\a=9@t Eff=Bd@tn=9@th+@HYEh+@IYu79}t.t@BR:YEP9@+E=|/9@@=^t9@@=0u,}@@;u=9@uVuh4@?Yu멅uh4@?YEb@4@4@Eb@f$d@0@4}@8}@h1Yu3q4@9b@u]5b@f$d@b@4}@tt Gu 5b@35b@0YHf=8@uOEb@Eb@]u}UWVSA@Cu hP/t8}@hP/t!h#P/t#&V;uf$d@0@4}@f$d@0@4}@}tE4}@f=9@t 0@4}@b@0@b@VY]u}UWVSu5A@Eb@h4@W茒b@h+@5A@qh4@;YHA@b@E0@+RY.d@`@9@==%@u5b@.YHPf9@ft $9@b@+4}@k`@P jqY t &W:Yh+@V聑jYu萕W:Yb@b@5A@UWVSzh YU}?tb@8uu u b@@uסb@u?uWb@P,u f$d@f~D5b@'F@uWFP,t N4@wщ5b@u}UWV"Y}$d@ub@(b@G;uN;uFuŸ]u}UWVSh YU}f$d@f}4@9b@uuf[b@t@uWV+t/Eu(f$d@f~4@9b@u{WYu}UWV]4f$d@fb@8tb@b@8t 4}@9b@r*OT98}@u4@9b@v b@b@b@P @Yb@4@ b@4@9b@r 98}@u4@=(u b@4}@4}@9b@wb@4@>-b@b@P?Y4@u4@ h4@7YHb@U}50@$d@E;50@r;50@v$d@E+P?Y4@={t(f= @t4@=(t5P@Yt]uOT9E t P>Y$]uOT9E t4@=}uI;50@uHOT9E t]u h4@6Y4@b@ b@5b@fd@u}UWVs}4@=.tVB4@;u14@W;u04@uG= u?tu}UW뇐uhJ%@P5l%@S f9@f`@f09@f9@f=8@t*@@@$9@ "d@+BP5b@ U}u ~ GNuu}UWVljuWc@u70@9E v!f=`@u =B%@t^~@PY9@=ulUI9@@@@;u'@@@E9@}f09@@@@E9@}f9@f09@f|09@$9@;~ h:Y@@@9@+‹09@9@UD@@‹؃=p%@t>=:%@tf;u u8h)j5p%@=Q WSvMffuC/ tu@@@+f9@j YOÃf~%u]u}UPWVSJ>@@=u5c@ tf}uf,d@ f}=t%@u =p%@f9@=<%@tRj$9@P `@`@;}h)j5p%@P h)j5t%@P I=A%@t)j$9@Ph)j5%@O j$9@Pf9@fEf}t@@@P$9@4D@@f,d@UGf9@f9@ft9@=t\!f<@@j$9@PU9}4@w@PYGP$YHPY}UWA}4@w 4@u@PYGPq$YPY}UW}WS$YPY}UW5A@YU+}W $Y=4@tNVTY=A@u}UWVfEf09@fE f9@U9@P09@PU@}f=9@tW$9@PWb@k`@P}UW@}f=9@tW$9@P]Wb@k`@P@}UWf=@u `@E9@E9@Ef9@@@@-P$9@PE8E EUEܸ9E|uEP轅EPمYE EU Eܸ9E|f=@tEEEEPCYE؋E؀8uO$9@kf`@uufEf9@U(s}u @@@;|$@@@Eƙ}@@@Eƙ}} h腝Y`@@@@;|R=1%@t;@@@E`@}f9@@@@E`@}f`@@@@Hf`@9@=t9@=9@;t hYF`@+;|`@;~=%@uf9@g`@`@UD@@‹v`@;}Offuf Ã%E}t=?%@t =5%@tE PYf`@h)j5%@J f `@`@;{f`@f9@f9@f09@f09@09@`@;~/f=9@t09@$9@;~09@PxlYf9@09@9@+@@@9@ `@+;t==%@u_]u}UWVS7@P9@PS,9@+‹h@YOu}UWU5b@3.Vb@k`@P8@@@EGb@k`@;|u}UWV}| E 9D@@u"d@E 9D@@ut@@@P4D@@P  @@@P4D@@4D@@ @@@PP4D@@ D@@D@@E D@@F$9@;phYU@WV!=%@t =&@Vc@uf=@tf=@0 9Eu /u Yf=@ub@k`@ @@@09@ b@k`@+ @@@ 9@;~F=,&@t jYb@k`@b@k`@‰Eb@@k`@9E| `@9E~9@b@Pju&e b@kf`@WuRb@ffu @}@S@@@b@k`@‹u @@@}b@ЋOu fft=@}@9@09@ b@k`@+ @@@£X}@ 9Eu*@P5X}@(+X}@T}@E  T}@&d@9T}@5_ @}@9X}@t fT}@f)&d@un Y T}@u|X}@Eb@Ћ=X}@ƃt G;=@}@|ǣH}@D}@P}@.ƃu'uP}@L}@H}@@}@9H}@|šH}@+D}@L}@=:%@u P}@`}@\}@=L}@tR@P5D}@w'&d@Ћ+D}@9T}@|!=:%@t@PY/%&d@9T}@~&d@T}@+RYu~Yb@kf`@f09@X}@T}@f9@u}UWVUH}@Eb@Ћ=H}@'ƃum WYh  YG;=@}@|ыu}UWVPb@k`@@@@Ћ+@}@:%@+9U  jYu}UWVb@k`@b@k`@b@k`@‹b@@k`@;}jVb@kf`@$9@;}OWb@P_jV}t$@E@ơFP~qYE@xej`@PBJu}UPWVkE5b@fc@fE@\}@f c@=%@uR=&@uIH}@\}@PTYH}@EЋڋ=H}@ÃPYG;=@}@|r=:%@tx=\}@&d@T}@+Љ`}@P}@9`}@~`}@+P}@+P}@)`}@~/@}@9H}@t"}5H}@lYh YOub@k`@HEf@@@UR)Yt@@@UЍUС\}@E+Ћڋ=\}@f;tÃPYOuM@@@EH}@\}@}9Ex5D}@Y&d@T}@+С\}@+‹~*&d@T}@+ЉP}@Qj YOu@}@E\}@EЋڡ@}@+H}@~ffOu=:%@t}t}f OufEfc@]u}UWVStfEfc@fEf c@=L}@=%@=&@&d@T}@+;P}@&d@X}@;D}@u(`}@=\}@ufE&d@T}@+Ћ+P}@+`}@@EÙ}څ~[5D}@Y&d@T}@+Ћ+P}@&h)b@k`@P5%@> K5X}@Y&d@ET}@D}~ M *f}t=%@t=&@t ?uYK=%@t =&@X}@Eb@&d@E&d@X}@ЋǃPYC;D}@|fEfc@D}@T}@&d@+P Y&d@T}@+СL}@+\}@ h JYK=:%@=b@@@@EX}@T}@H}@Eh@@@URFY&d@T}@+Ћ@@@UЍUЍ]+Ћ]ƃPYKtf>uE@@@ED}@T}@&d@+H}9ElaH}@Eb@Ћ&d@T}@+СL}@+‹-%=u P}@`}@9P}@|f K}σ=\}@t[H}@Eb@С\}@EЋ&d@T}@+СL}@+\}@uf KfEfc@D}@Eb@ЋT}@E&d@E+ЋD}@ ffK&d@X}@;T}@ fEfKf&d@]u}UWVS~Rf=.d@t1=%@t#=%@t5%@5%@Uuh)j5%@; UL=%@t,=%@t#5%@5%@Uu f.d@h)j5%@: U*f=.d@uh)j5%@: f.d@U*f=.d@th)j5&@V: f.d@U}9@@@@J;|!f=9@t09@$9@;uH9@@@@;|9@@@E9@}f09@@@@E9@}f9@09@`@;~*f=9@t09@$9@;~09@P[Y09@9@UD@@‹f=.d@u;=:%@u29@=u =?%@tuf f9@uSf=.d@t Bffuc@uff9@;t f9@% %؋%;u@f=.d@u69@=u =?%@tc@uff9@9@`@B;u,F= u!9@09@;uj Yf`@`@9@;u9@09@;t9@P09@Pf=.d@u_t[ tV%;tK=5%@t9=?%@u=C%@t'_t_uj nYf`@f9@ fRd@c@uff=.d@t%h)b@k`@P5(&@77 %PYf=.d@t%h)b@k`@P50&@6 f9@f`@=4%@t)@@@E`@}uj Yj Y&= W= V=]u}UPWVS:E +EE=%@t}]=:%@tvEEb@Ћ]ƃ%=uKuEEfftƃ%=uKuuY@@@EE}@@@EE };tb@k`@@@@EE}U@@@EE }U 4D@@E EЋ@@@EЉU;}sf?uEEЋ+¹UU;} uS]&h)b@k`@P5%@4 Kh)j5%@4 =:%@tcEEb@ЋE Eb@Ћ%=uƃfǃu؋ƃfMuL@@@+E PE EREERZ uEEU+R?]u}U WVSm uYU%}WYڍEPu W }UWC}j7oYEtEPW\ jWj oYu 9 Y}UWO}~jjW }jjP- f<@@fu u YY u Y}UW-}u 0@90@u o. H;~++}3f}u*b@;j}0@+Rb@+b@E)0@fb@c@@tf9@fuX=,&@uO=`'@uF`@"d@+;2W}0@+R?`@ "d@+;$9@`@+‰Ef9@fuK=,&@u =`'@t9f}u{;}-W}0@+REE@9E~I`@;~`@j.u0@Ѝ}+RgWYf}tYfb@u0@b@<@@;|,b@<@@+@E)0@<@@Hfb@]u}UWVS}u 0@90@u m^赊0@+0@;~++}3<@@b@+Hf}u#;j}0@R+]0@fb@c@@tOf}ud$9@`@+‰Ef9@fu*+E#W50@EE@9E~j.}0@R~`~W%Yf9@fuJf}tCf)b@u)0@fb@f}b@E)0@fb@]u}UWVSl%}PYf9@ftE ^`@+RWP@Y:`@+RWPYS`@EU+RWrPY=-t=.t=^e9@=u`@`@;u)Qfb@f<@@09@=uQVWXu}UPWV;f9@ft.9@=t f9@fuPf<@@U1E+0@b@Njfc@fE9@=t79@=t)|%<@@;}E0@&fb@f9@ft#E0@`@P50@F} uj.uyE 0@fc@fEf c@jeY`@PUYE+E fb@E0@fEfc@<@@k`@Pj[Yu}UPWVMfb@f<@@f`@f`@f`@f`@f}tf9@j$9@PUBu} ~)FPlYf;~+;50@wً]u}UWVSU}3M E GPY} ;=0@v`@<@@k`@++u}UWV}fc@fEf9@ft f c@`@$9@;uf<@@9@=uN40@fb@<@@k`@P50@uD$PO~>@@=ufEfc@9@=u^yY}UPW8}f3fc@fE`@$9@;u f<@@f,d@f c@!#-0@`@P50@CzOO~>@@=ufEfc@f=,d@tjDY<@@Hk`@PXYu}UPWVDD}~02M@= } =/@tJ%@E;~}UWbjOY@@@HE@@@E>z9@uU:%@Ћ™}u}UWP}t Eb@/f=d@td@P Yb@h4@g Yb@A@4@UEEEExEuEPYGE=%uE @=-u @G @=0u  @G=*uFEEP @= @}& @أ @= @u @G7 @k @ G0£ @=0| =9~=.uPG=*uEEPUG/EkE G0‰E=0| =9~E EMG=Ht=Lt=ht=lt׋GEmEE@RRu؊RtEEEpu)}}EEEF8tE9E|Nu؋E+EEo}~EEPUEEPUE=ouEEEEEE}tE䍅`E#E= }NE#E@0 NE#E@WME#EEuE=ou }tN08= @u%= @j00YEP%Y- @ NEN0`EzEE@ E}~EEPU*EEPUE=uuEEEEE=ut }}EtE؉E܍RPu!}tN-= @u  @]EEuE=i7[=U'=I  =D=O=cG =X=d=u!=sDj=oZ=x|JEEt uV BHLUWV} }u 0E mʚ;E}| EEEE-ʚ;E}E@0G !OE R0ˆE E9EՋuOƹ R0ˆƹ ދE @=0tO0E @;wOu}UWV}E +Nj;5 @~5 @= @~ 0E=-u= @}GPYN  @ @+ƉE= @u EPYM} GPYN}= @t EPYM}u}UWVBoabbreviateargsappendcopycryptEnter key:cdchdirHOMEchangedeleteexeditfileglobalinsertjoinlistmapmarkmovenumbernextopenputpreserveprintquitrewindrecoverreadsetshell-isourcesubstitutetagunmapunabbreviateundoversion%svisualvwqwritexityank@* %d-c%d files@to editlpgcr[]e! autoindentaiautoprintautowriteawbeautifybfdirectoryedcompatibleederrorbellsebflashflhardtabshtignorecaseiclispmagicmesgmodelinesmlnunoviceoptimizeoptparagraphsparapromptreadonlyroredrawremapreportscrollscrsectionssectshiftwidthswshowmatchsmshowmodesmdslowopenslowtabstoptstaglengthtltagstermtersetimeouttottytypettywarnwindowwiwrapscanwswrapmarginwmwriteanywa %4d ^H discarded "%s" [Read only] [Not edited] [Modified]No file line %d of %d --%ld%%--echo #%|/dev/null~{[*?$`'"\ [New file]$/dev/tty [Existing file] [Incomplete last line] %d/%D %d line%s, %D character%s (%D null, %D non-ASCII({)}!|^~'`%6d %d subs|%d substitutions on %d lines]-^\allw300w1200w9600unknown%s%sno%s=%d%s=%s/usr/lib/terminfoTERMINFO %c%sERRORmore fewer %d %slines@in file after %s Your file has been preserved /usr/lib/expreserve/ExXXXXX%#![No write]|[No write since last change]!%sInvalid SHELL value: %s ! CrYpTkEy=XXXXXXXXX/usr/lib/exrecover-x%d: terminated with signal %d -- core dumped+-^.({)}!|^~'~%d %slinehomelRlie! #e #&?/^+-.REPLACE 1 CHARAPPEND MODESUBSTITUTE MODECHANGE MODEREPLACE MODEOPEN MODEINSERT MODEINPUT MODE ^().!?)]'({[)}][]{}(null pointer)Version SVR3.1/usr/lib/exstringsviviewveditVLc:t:r;lw:xRC+:Usage: %s [-l] [-L] [-r [file]] [-t tag] [-R] [-V] [-wn] [-x] [-C] [+cmd | -c cmd] file... LxCr;Usage: %s [-L] [-r [file]] file.... -VLsc:vt:r;RlxCUsage: %s [- | -s] [-l] [-L] [-R] [-r [file]] [-t tag] [-v] [-V] [-x] [-C] [+cmd | -c cmd] file... -rSHELLdumbTERMTerminal %s unknown. EXINIT/.exrctag|pinscharupjdownleftrightHoinslinedddelline cleard$clreolscrollfdelcharnpageppagesrdGclreos U ÐU@ÐUÐU4 @PhT4 @lP Y 3ÐU4 @rt&4 @nPhT4 @lPX 3UWVS}G%%؁u tu]u}ËЋU<WVS}uhh @PYE}t Eu0 @EDž}t Ehm @PY>VuQY@ucQYЁ~fH @VPQP(QYЋ/FFU /FuVPjPc[} 9\@}Vhv @PPPPYЋEVuV_PjPZ}c 9\@tjh @2tfH @#fH @fH @}t Euhd}@OhPO VYfH @B9ufH @'}@WTY9uW7YW'YWYWYWYDž=D @hUY4 @tyjUY8 @t\jUY< @t?h~UY@ @@9@ @t 5@ @WY5< @WY58 @WY54 @WYfH @}u H @P Y_D @4 @0%@8 @|@< @@@ @@x9s Dž~@uTY}t Eju4 @P/ 4 @ƀ8 @< @@ @4 @ǂ3҉9E uu SYuE 4 @fU fl54 @ǀǀ3ffffhjP+ Y4 @4 @3f@ы 4 @Bƀ4 @ǁj4jP+ 4 @nPhT4 @lPR 34 @4 @n JHJHJ H fJfHWVAV 8 @@58 @G;sFӁu;s+PjV* tG< @< @@:W6Y;s"} fffu;s#+ùEPjS"* Phju sQ =t0t&t< @ffPffDžDžh @IYh @IYt& Y~< @ffPt%T Y~< @ff@ @@ @?WY;s'} Ëu;s#+ùPjS( WS 4 @%=uK4 @f4 @t&4 @PhT4 @lPO 3 4 @xt@ @@ @3҉4 @@+4 @P58 @54 @S 4 @@(4 @R+P5< @4 @@PR 4 @l4 @R(+P5@ @4 @@(PR 4 @L@ @DžSL @ ɉ t4 @ @ p 9|4 @4< @@=u4 @xu fPf| < @f@DžTX @<t043)u4 @ @ 9r4 @ǀDž\ @ ɉ tM~04(t39u@44 @b(u4 @ @!9G4 @4 @J\tJhxJx|3UEǀǀ3ffffhjP$ U4 @t&4 @PhT4 @lP%L 3U4 @nPhT4 @lPK 3ÐUh @h@ "hd}@H @4 @h@! h @h@!ÐUWVSDžl} @Dž`E \EX4 @} "@%:uGDž ӈGht%=t = `t4 @@TDžh|4 @@lT`t6Tt-4 @@H9h}4 @xtthPtTTt&4 @@P9EuTh"@(hFhlpll TQCYplAlb\XQG-1=wo$@ @plBl\ plBlX plBlM plBlM plBlM jplBlM OplBlM$ 4plBlM( plBlM, 1u3` =a|1=z'pll EGa =A=ZpllfGafJ=a|2=z(EGa plBl K=A==Z/GaPplAlplBlG G='DžhDžd=-uDždG=+Gpllpll hplBlhˉ @pllpll hplBlh+ˉ pllpll hplBlhˉ pllpll hplAlIpllpll hplAlpllpll hplBlh#ˉ pllpll hplBlh ˉ Spllpll hplBlh3ˉ pllpll h9hpllpll h9h{pllpll h9h|Apllpll hhtA3plAlpllpll hh뜍pl<u3pl}plЍpl[pll<uCjeW4j;W%- \=^QI$d @Gu'h"@V; @Ã%t Fӈpl hG|- |=w |$ @Džt u΋=Xt =dt=ot=st =xӈsuhPVv hPV^ F>ulkh -0hG؃0|9~܃}t3plBldh UWVS}35%u0GU ;t;uu Nj]u}À?uF;uNGu3ܐUWVS}3EE4 @@,9x"@t4 @9x"@uE@t!k G-0@uk =.u:G@t -0G@uEG=/u E=*tۃ}tu =>u#Gt4 @xt"}uNj]u}ËCPUYuVZUW}t>=x"@1=$uG=<uuu W GPUY?u3}ÐUPWVS}8 @xu}4 @%E}~ 9Er]u}ËEE @4 @t 3ۋǙSU YO3먐UuUY=t?ju h|"@ |"@u uY3h|"@u=uUE8uxt u@YEPEPh@ EuËEUR UR PE"@EE"@EEN#@EPEN#@jEPEp6 E=tuY낸xUPjj AEju E0A =tubYuj Auj AUEEEEjj bAEjEPE08A =u7uu E0A E;Eruu Ep5 E;EsuYuj @uj @3UWE|"@EE3EU E 8G|<E UЉU3EǍʋU0G|uY=tuu=u }3UPE"@EEP"@9Uth @h@jYj uo@EP4N#@4N#@!E@3҉ÐUWEP YEPY<uvu:Yj:Yjju) u:Yu:Yj:Yjju u:YjuhS@hP@hH@jYu3}ËE<$@E<$@uH:Yu?:YhV@uU hX@uUUWVE@ <$@E @ ;<$@thZ@h@[jIYu5Yu 5Yjja>EjjR>EjjC>EEPx3Y;tuuEuj>uj>uj=Eu}ÐU@WV}E} Ft E E ;r}h@1YE}"Eh@u_@9E | EMEEEE 9E|H= t3u}ÍEԋUE9E|EEԋUE@9E|ݡ@EE.EԋU-UԋM‰EEE]E9E|E5@]E@IAU9@E9@E @ =+t=-uuE@Eh$@)@-E@Eh$@)@+E @40Y=u5E @ EE A9Eu@øE @40Y=))@P5h$@1=@)@EE E 0c0YPE 0j; h@H0YPh@j; u/0YPuj: h@0YPh@j: jEPj: -)@P5h$@}EME@=:;@@U Ћ@)@@3@3E @ @\@:9\@`;9\@O5\@5h$@E0E@E=:tE=;@@U @)E=;u1@@U =-@@=+@@U @@)@=@\@EE E 0_.YPE 0j9 h@D.YPh@j8 u+.YPuj8 h@.YPh @j8 jEPj8 E @ @@@u@@?@@@;EE=;u)@\@=@\@EE E 0a-YPE 0j8 h@F-YPh@j8 u--YPuj7 h4@-YPh@j7 jEPj7 @?E=;t&E @ =-tE =+u )@E @@ )@@8E @ @@@u@@)@\@p 73Ð73Ð)n7ÐUE PuUWVS3hX@*YEuE]@j/uJ tl@E|PuW u |P_\@=td=t$= tV= t8=u2FwBV@ YDž|m@|DžxTCwt \@ hlpø9x|\@xxt|xBM t ɉ u|PhP@lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U5|@u u` Ð/ÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWVh|@hp@e)Eu 3u܋}juOh\j3El$@EPhTE@ PV/ fEfEfeEPhTE@ P// h@up$@x$@sGֈ=l$@u/E} uY EP@ t tufEfEEPhTE@ P. @}h@j *@ @uj2l@9Et u)Y=l$@tj73P3p$@Ul$@ÐUWVS} 3G %=utG9Gu!?uG DuW,Y 3G @UG u;u6'YEPuG P1 E]u}W-+Y=u~GEU+Ѕҋ~Sjuu`Et E+EH؋)G?}3W @+W;}W,Y}t*G @tW*Y=u ]VEgUWVS} uEE~,F t!O>(VgY=uE9Eu~3]u}N;>}Sj vusEtE+E؋E)F>}3V @+V;}V+Y}u +gEEvÐ0Ð>0ÐUWV} 't?F EF F F3҉V@=at=rt=wt3u}ÀN jju+ N G=+uf N ȸ*60L$Q3ÐUPWuY@=@t)P5|@-E}u@}@P*YE}tٍP5|@up. E|@׃M |@W |@U3UWV}3 W|@4$t Ƌu}F|@<uFUWV}u ==u u}GF;t3UWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P5) +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P( ECG t8W$YG t g GGuu G P( E9Eus3lUWV}uW&YG uG tO G Dt1l@"u}F @tV#Y;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}G tG t w)Yg E GuaO }8u`@h@GW @GGu}G p@WR@G W@VO&YtO @U}u3jYEhj*EEE}t6E9Ev)EE&E+EEEEEMujd*h|$@YuubYljUYE}| uj)*} }}}t EEP YEE2Ujh|$@EøÐb*ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu [ ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU5|@E Pu Ð;)(t3Ð T$tÐ!(ÐUW}@t @}ÐUW}@t @Nj}ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUPWVu"Yt8EPu|%E%= ujh@&} 3u}þfEft EU;uuh@h$@EPh$@EPh$@|=EU;u1E%= u!t EU;uW!Y$@\jEPW5 =TjjW! NuWy!Y3 &3Ð&3ÐUWVS}u ߋG8uOGF҈uË]u}ø F&3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlx@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}$@E$@E@s3UtE]$@E@E@E@r5E$@r0@E,@AEL@s6EE]@)EET@r݋EE 9P܃}t؁$@%@v%@E\@t$@r05}fEf fEmE]mE܉E@0Ee d@];r&=5|+$@u$@1}tCF0N<9$@]Ћuԋ}ËEE0]@EEsEE 9P EEEE4@MU]vEu}fEf fEm]mE܉EFUR0EMm]E<@E5D@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}|@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øF L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UWl@;=@r3}ÃG uUWl@ WY;=@r}UWV}tlG t6G t3WVYG PY}\@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u`@h@GW @*h!YGt@O G W@GGVYtG uO @u}G p@WR@UWV}G @+G}G @Wu};7}7𐐐63ÐU\@EEPhTu } E\@3ø6ÐÐU WVSE9ET=p@uGKTYadnq@vH@{H@ʼ ռ}z|D@0I@Cm3˧Rè((:LUe"5FYf}/?Ohv{9I/?@B@@qBB@^A@@@@@@@@@@@@@@@?@@@?(<@;C;;@qBz=1A@D=@@@@@@@@@@=@@@D@@U;@.@;#>ID@@@@A BC@@@@@#>@@^;5@@@ =@=>@;C@U;@@;,>@?@B^A?@B@@@@@,>@@^;>@@@;><QfOMfOMMT'R5RTx @@(#)ex 5.3b of Jan 28, 1988 @` @0%@|@@@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS @ @ @" @; @S @ @ @/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, .  +IgYfQYQE QQ"|QYvYYYYYYYYYYYUQQQQQQQQQQQQQQ'QQQQQQQYQQQQQQQQQYQQQQpQYQQYQQQYQQ:iQ5MS7) exec /bin/crypt -p 2>/dev/nullp[0] not from same run_setkey as p[1] /bin/shsh-cwrp2close(fp1, fp2): fp1 not from same p2open() as fp2 @OnR8@CHRCLASSasciioptioncommands: illegal : illegal -- -- : illegal : illegal -- -- : : requires an argument -- requires an argument -- /bin/shPATH:/bin:/usr/binsh/dev/ttyr/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFEUUUUUUUUUltlothA-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@@@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0bin/tic100755 3 3 66270 4237174651 6606 37777777777 Lp|" @D+ T@.text@ .dataT@T@D+TA@.bss,@,@ .comment lÐET,@RU RP P9@jÐUh,@PYVE PB=vu$E PztB-0,@",@hg@h(@j?YME 9E~E P=-th@k3Y,@9Eu h@h(@LEun?YE(E U4h@4<4PEEE9E|U+WVS3E}u"u Y48<ƅD ,@DP PR3h@h(@ Ph@h(@ tDG%@uW P$Fu 0Ynu P3YP Pg Fj+>Y9uhDP% uRu4Y t9u Yt,u P2YP P }j=Y3D=#tD= sDPD2Y-DЋ=,uG=\uGGD%@u  P1Y@DP1Y@Ёp>U WVS3Eƅh@u1uËE,@Pu1P=1Y-Ћ=,uG=\uGG%@uE8uUu0YP0YЁ|Th@h(@uh@h(@ Su Y-|2YuYG%@uWuJhP u.2Yu BYtu!Y3=#U !WV,@=,@DžE@9|ࡠ,@@,@= ]5,@h@h(@ 3Gj?WEP j,EPHtuEP\Pi =t7h@EP\PJ =tEPh@3w8t =,u%@uPL.j,\Psu \GW.jCPW-juW&u,@G=suG=euG==zUWV5,@=#u 3u}Ë}FG?t ;tu =|t=,tuF>t=,t =|ut=,tFUW}G?t =,uuNj}G%@u=,tUWVS,@u,YEENE=@tN=#t ==u+C=-uEC =0u3BSDY؊u]u}uSu tC-0%@u}UPW=,@u,,YEWY?t;uuW uߋE?t =,u }=@u3UPW=,@u+YE+E=@t*==uGu W/}WAY?u3uWu tUWVS}E 0=\t=^G%wE@G؋EE;u EEPEE8u%@t70E%@tG-0 Mu܅uFӈGt ,NFE 80Nj]u}U$WVSEEE=,t E M 9E uuh,@h(@ js5YE*Y=~,h_@ P)P)E,8t=|t=,uՋ8t =,@t(5,@pP)h@pP5h@pP(P)YpP)YЁvPh@PpP pPY=,@tpPh@@h@pP(upPYZh{P4(Y@Sh@ Y.hH@YPh@YPj/}Pm*P@G?ű}j;*P@@E@c3Y}P)P@ƈ9,@~VE03h@EE8ut+}j)P@@EH@B3nYV9,@~VE03h@EE8u,@E@P319,@~/tWE03h@E03h@~ t4+RG҈ujEE8V+RjP"jj  +RV 'Y,@"3"%@t8t=|t=,u8t =,@t(5,@P>$h(@PZ h*@P$P2 PCY} PpPI=,@tPpPh>@ 83UW}tmE }u %P&E P@%E }u %PO&}ËE P@%E }u h& E P@E }u h%릋E P@UWV}3F?uƋu}UEEE=/uE؉EE؋E؀8u+E=E܍@E؋E@PEP\"EEPu_}GuhN@XP =,@tXPhW@XPYTE/E؍EPu!E@Ph[@EPu|0,@9E}&9,@~uhx@}uY3Ð ,3ÐUWVS} uEE~,F t!O>(VCY=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V +@+V;}V&Y}u +gEEvUWV@@@9x,@s x,@h~PW =uh~Ph%@b 3WC YkUjuuuu u#Ujuuuu uU$WVS},@E,@E'@s3UtE],@E'@E'@E8(@r5E@(@rL(@EH(@AEh(@s6EE]@)EEp(@r݋EE 9P܃}t؁,@,@v,@Ex(@t,@r05}fEf fEmE]mE܉E@0Ee (@];r&=5|+,@u,@1}tCF0N<9,@]Ћuԋ}ËEE0]@EEsEE 9P EEEEP(@MU]vEu}fEf fEm]mE܉EFUR0EMm]EX(@E5`(@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G +@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W +@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS},@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ðr ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W+@UW(@;=+@r3}ÃG uUW(@ WY;=+@r}UWV}tlG t6G t3WVYG PY}x,@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG +@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G +@+G?}3W +@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G +@+G?}3W +@+W;}WY3UWV}G G u}}&u-@1@GW +@*h!YGt@O G W+@GGVYtG uO @u}G 5@WR+@UWV}G +@+G}G +@Wu};7}7𐐐3ÐUx,@EEPhTu } Ex,@3ø6ÐÐU WVSE9ET=,@u<,@ ,@,@ ,@,@,@|,@,@,@,@E@3؋=|,@E&;5,@,@E@E=w=,@j Y,@@;t?3Ee ƹ3tL3+‰EEE2,@+,@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5,@,@0E+E-,@@;t,@,@,@,@~Љ|,@;5|,@v|,@,@|,@ 9=,@u |,@,@G(=|,@95,@u=,@7tލ;r;l%;UWV}5|,@%,@9u5,@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ,@Nj]u}WV|$ t$L$Njʁ^_øÐT$,@Ru ,@+D$øT$,@3øvÐ0 ANL$0 A:L$0+L$0L$0 L$0 Ãx,@ÐT$X@./terminfo.srcUsage: compile [-v] [files...] TERMINFOstdinrTerminfo entry too long: %srTerminfo entry too long: %sInfinite use= loop '%s' ./terminfo.srcCannot find term %s eE^^\\,,::l n r t bf s tic: File %s is not a valid terminfo source file. Terminal has too many names %s //usr/lib/terminfo//Terminal name too long: %s create '%s' wbool cap %s code %s val %d num cap %s code %s val %d str %s code %s val %s str %s code %s val NULL //usr/lib/terminfo//link '%s' '%s' mkdir %s%s %s: terminal name too short unlink %s @@@@@@@@@@@@@@ @ @ @ @ @ @ @ @# @( @- @3 @7 @= @B @E @K @N @R @U @X @\ @a @d @g @j @o @s @w @z @~ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @" @( @- @3 @8 @= @B @G @M @P @T @X @\ @` @c @h @l @o @s @x @} @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @# @' @+ @/ @3 @7 @; @? @C @G @K @O @S @W @Z @^ @b @g @j @n @r @v @z @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @& @, @1 @6 @; @@ @E @J @O @T @Y @^ @c @h @m @r @w @| @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @# @( @- @2 @7 @< @A @F @K @P @T @Y @^ @c @h @m @r @w @| @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @@@ @@@@!@&@+@0@5@:@?@D@I@N@S@X@]@a@e@j@o@s@x@}@@@@@@@@@@@@@@@@@@@@@bwamxsbxhpxenleognhckmhsindadbmirmsgroseslokxthzulxonnxonmc5ichtsnrrmcnpcndscrcolsitlineslmxmcpbvtwslnlablhlwmawnumcbtbelcrcsrtbccleareledhpacmdchcupcud1homeciviscub1mrcupcnormcuf1llcuu1cvvisdch1dl1dslhdsmacsblinkboldsmcupsmdcdimsmirinvisprotrevsmsosmulechrmacssgr0rmcuprmdcrmirrmsormulflashfffslis1is2is3ifich1il1ipkbsktbckclrkctabkdch1kdl1kcud1krmirkelkedkf0kf1kf10kf2kf3kf4kf5kf6kf7kf8kf9khomekich1kil1kcub1kllknpkppkcuf1kindkrikhtskcuu1rmkxsmkxlf0lf1lf10lf2lf3lf4lf5lf6lf7lf8lf9rmmsmmnelpaddchdlcudichindnilcubcufrincuupfkeypflocpfxmc0mc4mc5reprs1rs2rs3rfrcvpascindrisgrhtswindhttsluchuiprogka1ka3kb2kc1kc3mc5prmpacscplnkcbtsmxonrmxonsmamrmamxoncxoffcenacssmlnrmlnkbegkcankclokcmdkcpykcrtkendkentkextkfndkhlpkmrkkmsgkmovknxtkopnkoptkprvkprtkrdokrefkrfrkrplkrstkresksavkspdkundkBEGkCANkCMDkCPYkCRTkDCkDLksltkENDkEOLkEXTkFNDkHLPkHOMkICkLFTkMSGkMOVkNXTkOPTkPRVkPRTkRDOkRPLkRITkRESkSAVkSPDkUNDrfikf11kf12kf13kf14kf15kf16kf17kf18kf19kf20kf21kf22kf23kf24kf25kf26kf27kf28kf29kf30kf31kf32kf33kf34kf35kf36kf37kf38kf39kf40kf41kf42kf43kf44kf45kf46kf47kf48kf49kf50kf51kf52kf53kf54kf55kf56kf57kf58kf59kf60kf61kf62kf63el1mgcsmglsmgrflnsclkdclkrmclkcwinwingohupdialqdialtonepulsehookpausewaitu0u1u2u3u4u5u6u7u8u9(@+@.@1@4@7@:@=@@@C@F@I@L@O@R@U@X@[@^@a@d@g@j@m@p@s@v@y@|@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ @@@@@@@!@$@'@*@-@0@3@6@9@<@?@B@E@H@K@N@Q@T@W@Z@]@`@c@f@i@l@o@r@u@x@{@~@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@ @#@&@)@,@/@2@5@8@;@>@A@D@G@J@M@P@S@V@Y@\@_@b@e@h@k@n@q@t@w@z@}@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ @@@@@@@"@%@(@+@.@1@4@7@:@=@@@C@F@I@L@O@R@U@X@[@^@a@d@g@j@m@p@s@v@y@|@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ @@@@@bwamxbxsxneognhckmhsindadbmimsosesxthzulxonx5iHCNRNPNDcoitlilmsgpbvtwsNllhlwmaMWbtblcrcsctclcecdchCCcmdohovileCMvendllupvsdcdldshdasmbmdtidmmhimmkmpmrsousecaemeteedeiseuevbfffsi1isi3ificalipkbkakCktkDkLkdkMkEkSk0k1k;k2k3k4k5k6k7k8k9khkIkAklkHkNkPkrkFkRkTkukeksl0l1lal2l3l4l5l6l7l8l9mommnwpcDCDLDOICSFALLERISRUPpkplpxpspfporpr1r2r3rfrccvscsfsrsastwitatsuchuiPK1K3K2K4K5pOrPacpnkBSXRXSARAXNXFeALOLF@1@2@3@4@5@6@7@8@9@0%1%2%3%4%5%6%7%8%9%0&1&2&3&4&5&6&7&8&9&0*1*2*3*4*5*6*7*8*9*0#1#2#3#4%a%b%c%d%e%f%g%h%i%j!1!2!3RFF1F2F3F4F5F6F7F8F9FAFBFCFDFEFFFGFHFIFJFKFLFMFNFOFPFQFRFSFTFUFVFWFXFYFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfSCDKRCCWWGHUDIQDTOPUfhPAWAu0u1u2u3u4u5u6u7u8u9 @@(#)tic 5.3b of May 2, 1988Unknown error: @@@@@@@ @@0@@@S@e@v@@@@@@@@@@@'@;@L@[@j@@@@@@@@@@2@K@Z@h@@@@@@@@@!@9@P@d@y@@@@@@@@@@ @>@T@e@{@@@@@@@@@@ @ @ @; @X @o @ @ @ @!@@!@I!@R!@[!@d!@m!@v!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@"@"@"@$"@."@8"@B"@L"@V"@`"@j"@t"@~"@"@"@"@"@"@"@"@"@"@"@"@"@#@ #@##@-#@=#@K#@Z#@k#@#@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF'''&'''''')999999999'''''''''''P '$'''''''''''''''''''''''''''XP j"$SX''L'''''%''''-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ 5@ 5@+@(5@6@3.1bS03.1bS03.1bS03.1bS0+@(5@bin/time100755 3 3 40470 4201131245 6736 37777777777 L! H+  @.textH+ .data @ @,@.bss(!@(!@ .comment(AÐET(!@RU RP P*jÐUWEPXYE9Ej*Y!uhT @h8@j*YuAE @PE pE p!@4 @hu @h8@j\*Yjj)jj)EP Y;uEth} @h8@EPYEh @h8@jE+EPh @5uh @%uh @EP)Y}UW3.< @EE }U:< @EE }E G |uh8@EE8t E8@0}t0 H @8Et, 8@}h8@EP <@<@UE8 EtL @P @8Et, 8@}h8@EPd <@<@UOLh @h8@}UE PuUWVS3h @YEuE @j/uft @E|PuW u |P_!@=td=t$= tV= t8=u2FwBVYDž| @|DžxTCwt !@ hlpø9x|!@xxt|xBM t ɉ u|Ph @lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U5(!@u u ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËU}u3jYEhj%EEE}t6E9Ev)EE&E+EEEEEMuj@%h,!@YuubYljUYE}| uj%} }}}t EEP YEE2Ujh,!@EøÐ%ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWS}] ;u Nj]}ËG8u3쐸;$$t3Ð+f$ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  < @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVKYF Dt*F uuj E+EP` tVCYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl$@Dž\9PtP؉PNKPPoY@Dž\sEDDž8~t 98|0 8CUEEu}~ E.E<9E}E<9E ME+E܉T E@u E }uEE E -ݝHN%=9L%uUHuLO%=u Dž G9Eu@@؍CEDž, O%=uDžl@@Dž\L% H ‰PDž(Dž0Dž4G9E8Dž$@Dž<|@~؉]P[E@ETMl@PDP9E}EPLHJ ݅H@u DžDE艅ES*Y9xEE E @ss؍CEoE E XE@uSYЉUHtM}鋅HE- |=Xw |$@O,to t DžlB@Dž\Dž h~PW =uh~PhH@ 3W YkUjuuuu u#Ujuuuu uU$WVS}D!@ED!@Ep@s3UtE]D!@Ex@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁D!@!@v!@E@tU!@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+D!@uD!@1}tCF0N<9D!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G < @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W < @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}(!@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øj L$tÐUW@ WY;=8 @r}UWV}tlG t6G t3WVYG PY}!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG < @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G < @+G?}3W < @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G < @+G?}3W < @+W;}WY3UWV}G G u}}&u!@%@GW < @*h YGt@O G W< @GGVYtG uO @u}G )@WR< @UWV}G < @+G}G < @Wu};7}7𐐐3ÐU!@EEPhTu } E!@3ø6ÐU WVSE9ET=!@u< !@ !@!@  !@!@ !@ !@!@!@!@E@3؋= !@E&;5!@!@E@E=w=!@jY!@@;t?3Ee ƹ3tL3+‰EEE2!@+!@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5!@!@0E+E-!@@;t!@!@!@!@~Љ !@;5 !@v !@!@ !@ 9=!@u !@!@G(= !@95!@u=!@7tލ;r;l%;UWV}5 !@%!@9u5!@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ!@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$$!@Ru $!@+D$øT$$!@3øvÐ0+NL$0+:L$0+L$0L$0 L$0 Ã!@ÐT$ @@(#)time 5.3b of Jan 27, 1988   @ @ @time: cannot fork -- try again. %s: %s time: command terminated abnormally. realusersys 000 .::. /bin/shPATH:/bin:/usr/binsh4@<@F@`@p@@@@@@@@@@(@4@J@V@b@t@@@@@@@@@ @"@/@E@T@`@w@@@@@@@@!@>@Y@h@@@@@@@@@@*@7@M@b@k@t@@@@@@@@@+@9@U@d@m@v@@@@@@@@@@6@[@{@@@@@@@ @@@(@1@:@C@L@V@`@j@t@~@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@ @#@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF& 2 TQ   >   1? Y 1  ) } ? -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@)@)@8 @)@<+@3.1bS03.1bS0bin/tk100755 3 3 37334 4201131247 6425 37777777777 L! d4 4@.textd4 .data4@4@ 45@.bss@@.comment>ÐET@RU RP P4jÐUWVtE B=pu-E RRYt=T@ +T@X@7E BRYt$=l@`@3\@d@M~E E =-lh@h@B((#@tj5(#@ }t:h@h@E 0%( uE 0h@h@ j3YhMjv2h @h@ l@h@a=D= = tH= t7= =+= \@ #@Kp@`@\@-p@/ #@X@9p@h@p@jY @}h@j)@@h@)Yl@9h@|Nh`@\@ #@\@+`@@i\@+`@+\@ #@W-\@ #@A @} h@@ Y@@=7tP=8t_=9/+$#@)p@/+$#@ؙ$#@ #@p@/ #@$#@@/p@$#@@/$#@ #@~5 #@gY= #@u1 @}h@j(@@ #@ @}h@P'@@׈ ~\@ @} h@Y@@*`@\@p@jY @}Rh@jT'/p@ \@h@h@LjaYj/Yu}á@@U@t@@|@x@l@9h@|/h@9l@~ `@`@ d@`@`@\@p@ =h@uh@h@jYUp@ \@h@h@UjjYj.YUWh@%Y=(#@ub}Ã!uh@WYh@%Y;u6p@ \@h@h@jYj.Y(#@}5(#@Y(#@P@ siUtBjjI-Ejj:-Ejq"Yuj"-uj-@Po(Yu2h@h@h@g" uh@h@h@L" jh@h@h@UW}p@}3%E\@% %E%E\@%E\@%E @}h@j1$}á@@t@9Et9 @}h@E P#@@U |@9Et9 @}h@E `P#@@U`@9Eux@9Eu |@9Et9 @}h@E `PW#@@U`x@9Et9 @}h@E P#@@U  @}h@E @P"@@U@Et@E|@E@Ex@E죄@ #@]UPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWVS} 3G %=utG9Gu!?uG DuWZ#Y 3G @UG u;uzYEPuG P0) E]u}Wq"Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W @+W;}W#Y}t*G @tW!Y=u ]VEgUPWE E@u@t* @h@uuU @ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW!YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUWV}G tG t w$Yg E GuaO }8u,#@4'@GW @GGu}G <+@WR@G W@Vg!YtO @U5@E Pu Ð;7&"&t3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E$@El@r5Et@r@E|@AE@s6EE]@)EE@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u,#@4'@GW @*h!YGt@O G W@GGVYtG uO @u}G <+@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裬@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ05NL$05:L$0+L$0L$0 L$0 Ã@ÐT$8@@(#)tk 5.3b of Jan 27, 1988  /dev/ttyrrtk: cannot open %s  ;;! /dev/ttyr/dev/nullr/bin/shsh-t 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFNNNNNNNvNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN*NN NNNNNNFNN-+ 0x0X--+ --+ --+ (((((  H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@L+@L+@@T+@,@3.1bS03.1bS0@T+@bin/touch100755 3 3 37174 4201131251 7126 37777777777 L! 2 T @.text2 .data@@ 3@.bssl@l@T .commentl>ÐETl@RU RP  P2jÐUWVS& ؃ hE9E9EyHE9Eu EE,E}|O;9EE}EPYYEPgYp@=puE }| 9E~]u}@l!ǹtmn@G;|ۋƹtmn=nu|@C@@KuEH@k@@E@k@<@E@k@<@31UWVS@t1C-0k |dtC-0| ~]u}É@U$WEEEEE7E=?t*=at=ct=muEMEMEEh@u uF E=uE+@=|}th@h|@j/Y @E @4Yu }~}jY@fEaE @@ @thI@h|@j{/Y@@h@Yx t @=@h@E 41 }t  @hE 4E}#E 4h_@h|@z  @u4*Yh@E 4 t E 4hx@h|@7  @e@EE}@E}@E}t3EPE 4p tE 4h@h|@  @G;}5 @&.Y}UW@u3}ËEEuܸ吐UPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWu5=@tOLjEE E 0 $YPE 0j, h@#YPh@j, jEPj, E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0)#YPE 0j, h@#YPh@j+ jEPj+ @?GE @@ @@8E @ @@@u@@@j+ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸ T$tÐUW(E+@EEPY=@iGQiWkW<E=p@u=t@uWEPEP< p@Et@EE9E|)E9E}!E+ @EEPYG Nj}UWVEQUEE}} EQME<x@E|@ƙ5@Ep@}| FFFtmnEN}|ۉ5@}=@ƹtmn=nu f@3 u@+Fu@;}f@G@5@@x@u}Ëƹtmn)EFƹtmn9E} Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžln@Dž\?E2ETMDžlq@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E @r5E@r @E@AE<@s6EE]@)EED@r݋EE 9P܃}t؁@@v@EL@t@r05}fEf fEmE]mE܉E@0Ee T@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E,@E54@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}l@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW\@ WY;=|@r}UWV}tlG t6G t3WVYG PY}L@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@ #@GW @*h YGt@O G W@GGVYtG uO @u}G ('@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUL@EEPhTu } EL@3ø62ÐU WVSE9ET=`@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@8'@8'@|@@'@(@3.1bS03.1bS0|@@'@bin/tr100755 3 3 12120 4201131252 6412 37777777777 L!  P @.text  .data@@P@.bss@@@@ .comment@ÐET@@RU RP PjÐUWVST@3D@X@3H@\@3L@`@ @ @P@M~hE E =-uUE BtI3E =ct=dt=su@@@E B:uME }~ E P@9E~ E P`@33D@D@G|=@ta%ƀD@hD@YuED@uEE׈D@G|ߋEƀD@ED@3ƇD@G|=@t EE hD@TYt@hT@CY؅uދ%ӈD@%ƀD@멋%ƀD@hT@YuD@3%D@u LjD@=@tƇD@G|d@0@utq%D@%tX=@t;5@u%D@u7 @@}h@@ƣ@P[D@D@։@d@}5d@(Yd@P@[j Y]u}UEH~ËEЋR9} BEP =['u-Yu$YEUE@u Y=*tK=-uYEE9EEP @ =]EUPEVEP =0u EEEEE-0EE@ EP E=0| E@09E|ʋEP @ =]u}uEEUPEj h!@j^ jt YuYUWVSEP @ \uM3ۋ-0FE@ }EP 0|7~υ~EP @ u EP JP %]u}UWV}uWEYG uG tO G Dt10@"u}F @tVFY;5P@rGGG tG T@+GPwG PI | GG듸9tO O G tg aÐUW0@ WY;=P@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG T@9GGGU= uQWY=E}G %=u7EEjEPG P/ =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G T@+G?}3W T@+W;}W{Y~'SVG P ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G T@+G?}3W T@+W;}WY3UWV}G G u}}&uh@p@GW T@*h YGt@O G WT@GGVYtG uO @u}G x@WRT@UWV}G T@+G}G T@Wu};7}7𐐐r3ÐU @EEPhTu } E @3ø6ÐU WVSE9ET=4@u<8@ 4@4@ 8@(@8@$@4@(@0@E@3؋=$@E&;5(@4@E@E=w=0@jY(@@;t?3Ee ƹ3tL3+‰EEE2(@+0@+ЉU3Ee E;r"EE9Ev&h^Y=u 3]u}Ámu:Y=u+EPHY3Ή50@(@0E+E-(@@;t(@(@(@4@~Љ$@;5$@v$@,@$@ 9=0@u $@0@G(=$@950@u=0@7tލ;r;l%;UWV}5$@%(@9u50@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ,@Nj]u}UPWVS}u ]} G֊ FK}E]u}ËT$<@Ru <@+D$ø!T$<@3øÐ @ÐT$@@(#)tr 5.3b of Jan 27, 1988Bad string @@P@@!@3.1bS03.1bS0P@@bin/tty100755 3 3 32474 4201131260 6622 37777777777 L! l* $ < @.textl* .data< @< @ <+@.bss,@,@$ .comment,5ÐET,@RU RP P!*jÐUWVB=?t&=lt=su+@@hc @Yj)Yh` @u u u=@ujYt hy @JYKjY=@u8u&jYt h @Yh @ YWh @=@t3jhXj$ u h @YVh @t3P(Yu}øU EPuuE% = u Eu3øUPWV9 @ueE9( @}#E ( @ =-u E Au u}h @E ( @4u ( @΋E ( @  @=, @:tWu!=$ @tOLjEE E 0YPE 0j' h @YPh @j' jEPj' E ( @  @@ @u( @ @?F=: @@U ( @t @@U ( @0 @( @@( @;E|l=$ @tOLjEE E 0YPE 0j& h @YPh @j& jEPj&  @?GE ( @( @ 0 @ @8E ( @  @@ @u @( @0 @UPWE E8@u8@t* 8@h,@uu 8@ t }ËUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVu Yt8EPu|%E%= ujh4 @$} 3u}þfEft EU;uuh4 @h0@EPh0@EPh0@|=EU;u1E%= u!t EU;uWY0@\jEPW =TjjW NuWY3 2$3Ð$3ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl(@Dž\9PtP؉PNKPPoY@Dž\h~PW =uh~PhL@ 3W YkUjuuuu u#Ujuuuu uU$WVS}P@EP@Et@s3UtE]P@E|@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁P@@v@E @ta@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+P@uP@1}tCF0N<9P@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS},@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=<@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @@+G?}3W @@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @@+G?}3W @@+W;}WY3UWV}G G u}}&u@@GW @@*h!YGt@O G W@@GGVYtG uO @u}G @WR@@UWV}G @@+G}G @@Wu};7}7𐐐3ÐU @EEPhTu } E @3ø6FÐ2ÐU WVSE9ET= @u<$@  @ @ $@@$@@ @@@E@3؋=@E&;5@ @E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@ @~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$(@Ru (@+D$ø!T$(@3øÐ @ÐT$@ @@(#)tty 5.3b of Jan 27, 1988lsUsage: tty [-l] [-s] tty is remote tty is remote not a tty %s not on an active synchronous line synchronous line %d : option requires an argument -- : illegal option -- --/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF    % 5 5 5 5 5 5 5 5 5 L  T L fO T H  !  -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@<@@P@3.1bS03.1bS0bin/uname100755 3 3 43414 4211073741 7115 37777777777 Lw$" `0l 0@.text`0 .data0@0@01@.bss&@&@l .commentFÐET&@RU RP P0jÐU=mu7E2=ut=st =ruEEE =vuEhh@u u E=}thu@h #@j.Y}u0}u*}u$}u}u}u}u }u}tME}uj=uU9&@uh@h #@9&@uuh@h #@[ {h@lYnh@h@>#Eă}tuh@u }tE@ th@h #@h(@ Y}t u$Y5T@Y5\@jY}t'\@tX@Ph6@>E}tX}t' "@}h"@j !%#@ #@\@Pt@X@Ph9@E}tX}t' "@}h"@j $#@ #@\@Pt@X@Ph<@E}tX}t' "@}h"@j e$#@ #@\@P*t@*X@Ph?@$E}tX}t' "@}h"@j $#@ #@T@P$t@$X@PhB@E}ta}t' "@}h"@j ##@ #@T@fP.ft @.PhE@ 5X@hH@_E}ta}t' "@}h"@j B##@ #@T@fP0ft @0PhK@ 5X@hN@E}t\}t' "@}h"@j "#@ #@T@x4t p4hQ@ 5X@hU@E}tS}t' "@}h"@j y"#@ #@|WhX@ 5X@h[@=E}t "@}h"@j &"j*Y}á#@#@ 㐸& )ÐUPWV9@ueE9@}#E @ =-u E Au u}h@E @4xu @΋E @ @=@:tWu=@tOLjEE E 0dYPE 0j( h@IYPh@j( jEPj( E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0YPE 0j( h`@fYPh`@j' jEPj' @?GE @@ @@8E @ @@@u@@@UWV@@9&@s &@<@uYtVuj#' jh@j' WuYPWj& jh@j& u}ÐUPWE E#@u#@t* #@h"@uu #@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø2%Ðjjt$ 9rã&@ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  &@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph @B 3W# YkUjuuuu u#Ujuuuu uU$WVS}'@E'@ED"@s3UtE]'@EL"@ET"@E"@r5E"@r"@E"@AE"@s6EE]@)EE"@r݋EE 9P܃}t؁'@N'@vN'@E"@t'@r05}fEf fEmE]mE܉E@0Ee "@];r&=5|+'@u'@1}tCF0N<9'@]Ћuԋ}ËEE0]@EEsEE 9P EEEE"@MU]vEu}fEf fEm]mE܉EFUR0EMm]E"@E5"@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G &@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W &@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}&@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W&@UW"@;= &@r3}ÃG uUW"@ WY;= &@r}UWV}tlG t6G t3WVYG PY}&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG &@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G &@+G?}3W &@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G &@+G?}3W &@+W;}WY3UWV}G G u}}&u'@+@GW &@*h!YGt@O G W&@GGVYtG uO @u}G /@WR&@UWV}G &@+G}G &@Wu};7}7𐐐3ÐU&@EEPhTu } E&@3ø6:Ð&ÐU WVSE9ET=&@u<&@ &@&@ &@&@&@&@&@&@&@E@3؋=&@E&;5&@&@E@E=w=&@j Y&@@;t?3Ee ƹ3tL3+‰EEE2&@+&@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5&@&@0E+E-&@@;t&@&@&@&@~Љ&@;5&@v&@&@&@ 9=&@u &@&@G(=&@95&@u=&@7tލ;r;l%;UWV}5&@%&@9u5&@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ&@Nj]u}WV|$ t$L$Njʁ^_øVÐT$&@Ru &@+D$ø!T$&@3øÐ&@ÐT$4@@(#)uname 5.3b of Feb 25, 1988P'@`@'@(empty)asS:nrvhmduiusage: uname [-snrvhmduia] [-S nodename] Must be super-user to set nodename Nodename (%s) is too long Couldn't set nodename/etc/systemidw%s Couldn't write new nodename to /etc/systemid%s%s%s%s%s%u%s%u%s%ld%s%d%s: option requires an argument -- : illegal option -- --Unknown error: @@@4@D@\@f@@@@@@@@@@@*@6@H@W@g@v@@@@@@@@@@(@4@K@\@w@@@@@@@@-@<@`@z@@@@@@@@@ @!@6@?@H@\@n@|@@@@@@@ @)@8@A@J@]@f@o@@@@@@@ @/@O@@@@@@@@@@@@@@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF>Jli&2VIWqIAW-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@/@/@ &@/@h1@3.1bS03.1bS0bin/uniq100755 3 3 33704 4201131274 6760 37777777777 L! -D p@.text- .datap@p@D p.@.bss@@.comment7ÐET@RU RP PU-jÐUPE P=-uDE PB@tE PBRY@E PB@ME .E P=+9E PBRfY@ME 9Ep9E~Eh@h@E p! u)E ph@uuh@ j`,Yh@&YtjF,Y@h@ Yth@NYj,Yh@h@uh@%Y@@h@Yth@Yj+Yh@h@}uh@Y@Uh@E p Eu.E ph@uuh@ j[+Yud"Yh@h@E p UWV}u u}ËGֈ @} h@Y@@ u3UW}@=ct1=dt=uu6=@t-@}Ã=@t5@h@@h@W @}h@j T"묡@@ UWVS}u W@YV7Y F;u Gut 3]u}@UWVS}3ۋ0G= t= tG= t= tuF;@|GC;@}uNj]u}Uu uh@ jd)YÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWVS} 3G %=utG9Gu!?uG DuW2"Y 3G @UG u;urYEPuG P( E]u}WI!Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W @+W;}W"Y}t*G @tW Y=u ]VEgUPWE E@u@t* @h@uuM @ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E @ET@r5E\@rh@Ed@AE@s6EE]@)EE@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEl@MU]vEu}fEf fEm]mE܉EFUR0EMm]Et@E5|@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@#@GW @*h!YGt@O G W@GGVYtG uO @u}G '@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裔@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$t@@(#)uniq 5.3b of Jan 27, 1988rcannot open %s rwcannot create %s %4d 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF^ j  F R v   iw  i  a  w -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ (@ (@@(@)@3.1bS03.1bS0bin/ex100755 3 3 434734 4201131356 7641 1bin/vi37777777777 bin/view100755 3 3 434734 4201131356 10177 1bin/vi37777777777 bin/edit100755 3 3 434734 4201131356 10152 1bin/vi37777777777 bin/vedit100755 3 3 434734 4201131356 10340 1bin/vi37777777777 bin/awk100755 3 3 227074 4201131433 6610 37777777777 L! @4B@.text@ .data@@@.bss@@4B.comment-ÐET@RU RP&* PjÐU WVS@@@@@@@@@@5@@@E@rhh6@;Y]u}ËE@E$@E==@}j @} @E@E|Z9E|NE @E@9,@u2@@@EE=@3 @(E0@E= =@} @} @E4@h|6@:Y@y =@t @=l@7wwh*d`n@m@h6@-:YSG@F@77wh.6` @7wh/` @7h0"`@jjh@h6@ / P`P7h _ @j7{`@7hL_@~G@q7YPwwk_ @Pj7`@:j7`@$wwh3"_ @jh8*_@jjh@h6@. P_P7h4^ @jjh@h6@- Pp_Pwh4^ @{wwh4y^ @^7w^@Gwwwh5^@'jwwh5^@wwwh `^@jwwh A^@wwh7] @7wh ] @7wh] @t7whs] @X7whW] @<7wh;] @ 7hC]@@7hF]@7hH]@whE\@whG\@7whA\ @y7wwz\ @_]P7h+\ @@wwh+\ @#|]P7w ] @www\ @wjh+k\ @ww\@7w\@7YPjjh@h6@* PR\Ph {[ @`jjh@h6@* P\@77wU\@ p7jh@[ @jjh=Z @7YPjh>Z @7fYPjh?Z @jjh@Z @jjh@Z @f7wh;eZ @JjwhBIZ @.jwhC-Z @jwhDZ @7wwwY@jj7wY@7XY@@h6@l3Yj7wh!kY@t7wwh!LY@U7wh#Y @9jh&zY@ jh'aY@wh'GY@jh(.Y@jh)Y@7wwwh$VY@7wjwh$5Y@x7wwh%PX@YHR=xG?$4@EE9uU9PuEE8| E@9uE@E}3}u@=w |$t4@E@*@UE}E+ЋF@E+ЋڋE)@E(@@E9E}E @EU9,@WE(@ @E>}E+ЋF@E+ЋڋE)@E(@@E9E}E @EU9,@tE(@ @EE@@5@@5$@U}|49E}*E @9,@uE @UVD@sYUpX@-N@ Ht=pX@N@}pX@N@ {36@l.̸Ÿ뾸뷸/밸0@ 9@ :@ :s@9_@9K@97@9#@9@ 9@II@JJ@-@-@-@-@-o@-[h1@[Yu#jh@hhY@b# @<)h1@p[YP-Y@KL@h@j56@56@jh0@/"@2h@j h0@iY\$jh0@!@1pX@$O@6@;rpX@$O@;^6@;N6@>#4$*! "& '()@@@@  57%8v@4b@4N@4:@4&@4h@j56@56@hpY@$YPh0@C @2pX@N@(@WpX@TO@HpX@N@6@0@@0@}pX@ O@(@,@pX@ O@(@,@D-C#B;=()^$h@hqY@h1@\ @1@=nu @ t1@=tu @ Z1@=bu @@1@=ru @ &1@=fu @ 1@@@$pX@N@@/ 9@u \Y@`Y@`Y@@~htY@)Y6@pX@N@^0@@@pX@N@(@ƀ@h@;"YE(@ƀ@ @(@ƀ@h@j 56@56@uh@@<@hY@(Y6@pX@N@(@(@ƀ@"(@(@ƀ@ (@(@ƀ@ t(@(@ƀ@](@(@ƀ@ F(@(@ƀ@ /(@(@ƀ@\(@(@0@@9(@h@hY@ (pX@N@(@(@ƀ@]pX@?hY@'Y6@pX@N@X(@(@0@@9(@|4h@hY@P'pX@N@uhY@56@X EuE-|=]wɅ|$6@UW@9`Y@v`Y@H`Y@B=6@uĚ@Ě@'6@}56@eY6@P@ u\Y@u3Nj}UpX@t2@@t$@8~5@X@BE@ 9@u \Y@`Y@`Y@@ƃ=Ț@w0@u`Y@@3]u}^0@dY@=dY@~46@}56@dY@Px6@P@dY@E0@EM@ 9@u \Y@`Y@`Y@@@Pp}u3E؃EU9uE؃8u݃=t Ț@{EdY@5@E-0@@@ƀ0@@@U}u3ËEEU 9uE8uUU6@}56@EPCá6@P@EUE@ 9@u \Y@`Y@`Y@@Uujjjh=H PhBH PhAH EjuhH E@u9Y@U@@uYEuYEUE@=At(=>t]K=;t9=Ep YEpYEP BPB==tc=@t Z=?uSE@P @@U@=Ct =Bt =DuEp ?YEP B뒋EphZ@hX! uUE@=At(=>tWE=;t0=Ep YEpY}tbP==t=@t z=?usEP <@t4@OYEP @}tu/YE=Ct =Bt =DuEp "Y}tEph/Z@hT UPWVS}}3L-u"~@tt@|hIZ@h Fӈ@GuFƀ@}tu_YEh@|Y]u}Á|hIZ@hCFӈ@;|GUhIZ@hpUPWV}G=At_=>tG5=;t #=t_hw YwYu}==tE=@t <=?u5@G=Ct =Bt =Du w kYwhfZ@h @F;5@~WYEPG HPh@U t5@YW @CG U @ @*UWV}G=At,=>k=;t6V=w YwYwwYw Yt_U==t=@t =?uyG 9@t@@>9Gu2Gu)3u}=Ct =Bt(w Yt׸=Du w Y3whZ@h$ UPE9Pt5PU‹@=tj=;tM=At+=Bt=Ct =Dt1uwYuYE@ 9EuEpUYuuYuvY빡@9@t@@UWS]} G;u ]}À?u3UPWV3MEU‹@9u73EE9@uF;5@|܋E83u}G;} ~UWE@P襀YEEuhIZ@hEU9@u EE8G;=@~܋E}UWVS3Ep0=R0@<<Έ ,EPUEp0@0@0@<<Έ EEPUTtNEpV u;0u.@0u!@0@<<Έ F|-=|=w |$Z@G;}| EE؍U=t3=t"M؉ E؋@U‹@ot;0u.@0u!@0@<<Έ F|:E=tPU u=@U u*@UE@<<EE8u@U M@U@3 @F;5@~3 @Ep@u EU;BtF=t>>uEpEPu?uoEpEPuX@E3:9@t&=t@@F;u|G; EPuh@U tb9E|hIZ@hn5@YUBU@UBUM UBUM E0}t*UBUM UBUMЉ EE<9E E@P{YuhIZ@hU苍 }t U@c4}H040 4}040 HG;}~EE9E~3EEEE @@‹@9u E8@@@ 0@h@j5 `@5`@jhx`@<@@ 4@UhhqYE}uh{`@hh EEUE29E|EU E@tPUEcËEU MJExtpsYE@ExtpnsYE@u[sYEPU}uE29E|}tu0sYExUWV}t6juu t } tu rYE Ƌu}j3pYuuh`@h3 uYFE FEFEF EFuYEV4UWV}3Guƹ2‹u}UPWV}WYEE U4+vWKu}tF9Eu Ƌu}Ëvu3UW}Gtwh`@hT Gu"www wwWh`@h) ;=8@uh`@h gOGtu D@E W }UW}Gtwh`@h Gu"www wwWha@h ;=8@uh9a@hs gOGtu D@GutwpYGgu YG}UW}a@9Gu=D@uGtwhFa@h Gu"www wwWhda@h Gu;w1 YtwDY_ GuO(`@G$`@G G }UxW}a@9Gu=D@u8Gtwha@h! Gu"www wwWha@h GGutw^oYGG ,`@s;}fEf fEmG ]mEEEG u ww ha@ ww ,@0EPGEPYGgOG}UWV}WoeY@PlYuWha@h WVeƋu}ÐUWVSL@D@a@=a@@0j=Qt@0Y@ @@@H@H@=-u a@@4hom@5H@da@u5H@hqm@h1 @u a@E=a@GֈE} uDY EP@;tuС @;t5u.E} uDY EP@ t a@ ;v5a@hm@hr =@t u;=a@v]8@`H<@@ El@<@`H]u} GGֈ@9a@t 5a@eYa@ @@=@3UEEEE==uEEh@j5l@5l@u/YPuEuu|UWVS=a@L@E@ u E!Ed9E|5a@hm@h kEb@u+kEa@tkEa@PkYkEǀa@kEa@kEǀb@@@@FG<@t@3҉@@FNJG'kl@a@EkEa@EYkEa@kEb@El@9E~l@\$jh@hm@ P ]=Z@t0EkEa@uhm@R3 El@9E~ً]܋u}G= t= t= tEd9E|5a@hm@h kEb@u+kEa@tkEa@iYkEǀa@kEa@kEǀb@@@@@@F׊ G<@t@3@@@@F UPWV=L@t 9D@uu}Ë=a@E.kEa@PcYGF҈u$@GEE0@vG8@@a@ ;v5a@hm@h` pUd9E|uhn@h9 kEa@U56@uh2n@h̉@1l@UhHn@h̉@1u(u$u uuuuu h̉@d1$hNn@h̉@R1=4@t.4@l@v4@p0hPn@h̉@1}tjiYUUWVS}E3؋G= t= t= tm=+t =-uG݆@u=.9݆@tFG݆@u& =.uEG݆@tCG݆@uu}=et =Eu~G=+t =-uG݆@}G݆@u+E=d+E=u&E-0k UR-0=&|3G= t= t= tu]u}3Uhcn@jUuYUWVS}un@]u}Ë]=u S Y߸9C~ T9C}C-`9r@uSh\p@h' C- uWj> @!E}ÐU,WE@w@wlEuE}EE`w@E EEEܡLw@EHw@EEPYujhew@j(> @!E룍EPu u ]Et MEE]EHPEPw@\$` ]EuE Xw@]OE.ULWE EEEEw@sE]Ew@sw@E}E8ÐUWV} S/t?F EF F F3҉VЌ@=at=rt=wt3u}ÀN jju3 N G=+uf N ȸ*^8L$Q3ÐUPWE Eȉ@uȉ@t* ȉ@h@uu ȉ@ t }ËUPWEEE@ uE@ t(EH uuu K E@ t }ËUPE EPuh@d UPEEPu uI UW}EEEljEEW+YEE2uu EP }ÐUWVS}u Dž@@ @WU=~*uDžF DžDžk -0F݆@u؃u DžÉ=lt h9uF؅[uPV݆@tDžlއ@؃nt_=@uVctQ[tL@} W@ Y GG݆@u @W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf@fl9uEEP@{EEP@dEPWSt'=@tu /$Fu ݆@td=@u@} W Y GG݆@u @W` =u@y%uF؃%@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE@}WyY3]u}ËGG=+t=-t =0t8EM@} W(Y GG؃0i9E }9Eo@} WY GGE ME؃m @WEP  @WEP i @WEP EIE;v@"3C݆@u9Eun݆@t`݆@t0݆@t7W+ЉUE9E}t}u EEEE}.u EEtmet E}EEuyFӈ@} WY GG݆@u+t-t݆@t.Fӈ@} WY GGM}}}tPEPY]}tE]l9EuEBETEBE@}t9EtE؉El9EtGh9Eu=EBfUf @WS=u @E6EBUU WVS}u ]tEB3EEcu!utEUEK~U@E} u.Y EP@E=t'suE݆@u[uEU<t9Eu@ @)~% @uu=u @E9Eu 3]u}Åt ctEU WVS}u E=^uEGh}u3PV' E=]t -9EudEUGX}u 3]u}ø-9Eu2E=]t%G;]}E+@PuP G EUGE=]u랐U(WVS}EEG݆@u=+t =-uEG3EEEE.}tE0u7EzM }k  9E}kE EkE EEM}M }k ؋-0' 9E}kE EkE E-0EEG݆@U.uEEBuD@]̋uЋ}É]E]9E~ EME]Eteur3E= t=+t =-uEG݆@t:} k -0G݆@u؃}t)EE}@EEEEL@u(X@CT@  [<@r@E}؋`@E\@E|tE ]tkEP}}EuE\$ ]}t EEUWV}uWY$YG uG tO G Dt1@"u}F @tVZ!Y;5̌@rGGG tG Ќ@+GPwG PU | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWEEEEEE2EEEPuu  ENj}ÐUWV}u ;u 3u}F;t N+GuU W}tEd@uE}ÍEPu u ؅~8E=@"E|@st@l@뫋E=}!@"@E @]r؋ȸEE}^E @]wϸEEM3UW}E@uE}E@vEE]E@rE @EE]E@rEĄ@vEE뒐U5@E Pu Ð;C'"'t3ÐUW}݆@t އ@Nj}ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}u ߋG8uOGF҈uË]u}UW} 9EtFG tG9GwG9Gu+?u&GuW% YGHGUE}øUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  Ќ@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph܆@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E @E@E\@r5Ed@rp@El@AE@s6EE]@)EE@r݋EE 9P܃}t؁@ޒ@vޒ@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEt@MU]vEu}fEf fEm]mE܉EFUR0EMm]E|@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G Ќ@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W Ќ@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WЌ@UW@;=̌@r3}ÃG uUW@ WY;=̌@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG Ќ@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G Ќ@+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G Ќ@+G?}3W Ќ@+W;}WY3UWV}G G u}}&uH@P@GW Ќ@*h!YGt@O G WЌ@GGVYtG uO @u}G X@WRЌ@UWV}G Ќ@+G}G Ќ@Wu};7}7𐐐3ÐU@EEPhTu } E補@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY𡤍@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ0ܦNL$0ܦ:L$0+L$0L$0 L$0 Ã@ÐT$@@(#)awk 5.3b of Jan 27, 1988 0124578<(+-/IJKL{'g;g1g;gWg;gXg;gfg;gig;gg;g;gg;gg;g)g)gg;gg;gg;g7!#ECD"-.0.r%&RsCD(+7,)7RIG B9@>'?A B@;1Az^qx<=7wl/tMLfKFighYjX2 W$^87^7-.Vb^_`cdeZ[\]7*b!#r^"ks-. %&_`cdeZ[\] nopmb!#"7" %&q %&_`cdeZ[\]b!#7" %&_`cdeZ[\]^Tb!#7y" %&_`cdeZ[\]7^!# "bU %&!#"_` %&!#7"b %&nopm_`cdeZ[\]7b!#7" %&_`cdeZ[\]7!#"+ %&b7y!#53"_` %&!"7 %&!#" %&7!#" %&77!#53"!#" %&*7 %&7!#" %&7!#" %&7y7!#!#"" %& %&77!#r"!#s" %& %&J!#!#"qr"s %& %&!#"!#" %&q %&!#" %&!#!#"" %& %&!#!#"" %& %&nopm!#"6 %&66PQ6nopm666666664NO66S666666646{|}~4a6664:H666644644u4v444466444HH44444444$IHFE 9/z)JJMCA#h85""rt5OC(MJ34/z)'! JJJ~B//sF9(}|{8C6z-4&y1xv                   {{/(0845 7-+IJ1<2KL;{./{,:9(+-*/%IJ-((((([}&'(){!#$}@=>?^$())))),,(((}}{/;BCD)),,,]"}9|(02)2./));%},),)));2;)))))BuC<uDEFGP7 !"JA`auu8 GFE56%HI1234tmuJJfh >@RSTUVW^+_,-./09#ijlnoqrce=uQYZ[\$KLM;psNOX]k:bd; ;?')*  v;&(;;yxw _ _(D` (D` y____ %;__Xq8Ww #?Xd}___<Yt_____(( __? Id 1 M  __i i  _ _& ? X r  yacc stack overflowsyntax errorbailing out$zero&null$record$record$record$recordillegal statement@@  $8L`tgq!1;EOYcmw !5I]8BLV`jt~K/Of}9P>># >:>;>>>>>>>>>>>>>>9>9>9>9>9>>9>9>9>9>9>9>9>9>9>9>9>>!> >>#;>XPOXX\[\Z\NMINFNGNCNBNENLNAN?NNHNDN=<  "99999999999&92999999999 QWTVRUSY@KK999999979%9996995999999999999'9)9999(99998999J99*999199,9/999$999949-99099939.9+9=9 O=>a9: O P'k4}4~6SS;V4}6=;69SS OXZ !QU"#=W$9] O[Yb c#g%$h&\\\\\\\\\\%i'&j?@g<()h*+,,q-67.</)m0?@1!d!e(l2+p/v0w2{3453|R*n8K-r.t*o-s Aj.ul\`mnp A B !1x1yo#q1z$stou8vwy%z&x88 C\`sx D E F G'{ H I A()*+,-./ J0 AS128 C345 D E F G H I<S8 K L M JTTTTTTTTTTL NLLk K L^ M__________<<`< N<L<<"f"f"f"f"f"f"f"f"f"fL`"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f"f???????TTTTTTTTTTTTTTTTTTTT^^^^^^^^^^^^^^^^^^^^``^```````````^`P?@P?@H?@@<@N@ ?@>@N@8?@>@ O@P?@P?@:@9@@xC@PP@>@P?@PP@>@C@PP@>@C@PP@$>@D@PP@,>@P?@PP@4>@C@PP@@>@pD@PP@H>@P?@P>@P?@PP@X>@0E@PP@d>@P?@PP@l>@8D@PP@x>@@D@PP@>@P?@PP@>@xD@PP@>@D@PP@>@P?@PP@>@@D@PP@>@XD@PP@>@P?@PP@>@@F@PP@>@D@PP@>@PE@PP@>@P?@PP@>@P?@PP@>@PE@PP@?@P?@PP@?@P?@PP@?@`E@PP@ ?@P?@PP@(?@P?@PP@4?@P?@PP@@?@N@N@  0000000000AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA@ $record%onewline in regular expressionnewline in stringstring too longnewline in character classstring too longbad switch yylook %dK"U"c" """"m"unknown type %d in penter unknown type %d in freetrregular expression too long unknown type %d in cfollunknown type %d in first Usage: awk [-f source | 'cmds'] [files]rcan't open %s-d-S-Rnot restored awk.outnot saved ]@]@]@]@]@]@]@]@]@ ]@ ]@ ]@ ]@ ]@]@]@^@^@ ^@^@^@^@&^@,^@2^@7^@>^@C^@F^@L^@S^@[^@ a^@!d^@"i^@#o^@$s^@%v^@&{^@'^@(^@)^@*^@+^@,^@-^@.^@/^@0^@1^@2^@3^@4^@5^@6^@7^@8^@9^@:^@;^@<_@=_@> _@?_@@_@A_@B_@C$_@D*_@E3_@F;_@GD_@HL_@IQ_@JV_@K\_@Le_@Mn_@Nx_@O}_@P_@Q_@R_@S_@TFIRSTTOKENFINALFATALLTLEGTGEEQNEMATCHNOTMATCHAPPENDADDMINUSMULTDIVIDEMODUMINUSASSIGNADDEQSUBEQMULTEQDIVEQMODEQJUMPXBEGINXENDNLPRINTPRINTFSPRINTFSPLITIFELSEWHILEFORINNEXTEXITBREAKCONTINUEPROGRAMPASTATPASTAT2ASGNOPBORANDNOTNUMBERVARARRAYFNCNSUBSTRLSUBSTRINDEXGETLINERELOPMATCHOPORSTRINGDOTCCLNCCLCHARCATSTARPLUSQUESTPOSTINCRPREINCRPOSTDECRPREDECRINCRDECRFIELDINDIRECTJUMPTRUEJUMPFALSEPUSHGETRECNEWSTATIN_INITIN_EXITLASTTOKENlex: %c lex:? %o lex: %s lex:? %o A00$zero&null$recordFS RS OFS ORS OFMT%.6gFILENAMENFNRout of space in makesymtabsymbol table overflow at %sillegal reference to array %sfunny variable %o: %s %s %g %ocan't set $0illegal reference to array %sfunny variable %o: %s %s %g %ocan't set $0illegal reference to array %sfunny variable %o: %s %s %g %oillegal reference to array %sfunny variable %o: %s %s %g %o%.20gout of space in tostring on %sL@m@L@ m@ m@m@m@m@m@m@m@m@m@m@m@m@m@m@m@m@m@m@m@ m@!m@"m@#m@$m@%m@&m@'m@(m@)m@*m@+m@,m@-m@.m@/m@0m@1m@2m@3m@4m@5m@6m@7m@8m@9m@:m@;m@m@?m@@m@Am@Bm@Cm@Dm@Em@Fm@Gm@Hm@Im@Jm@Km@Lm@Mm@Nm@Om@Pm@Qm@Rm@Sm@Tm@Um@Vm@Wm@Xm@Ym@Zm@[m@\m@]m@^m@_m@`m@am@bm@cm@dm@em@fm@gm@hm@im@jm@km@lm@mm@nm@?m@$recordrcan't open %srecord `%.20s...' too longrecord `%.20s...' has too many fieldsrecord `%.20s...' has too many fieldsNFfield %d: |%s| built giant record `%.20s...'trying to access field %dawk: %s near line %d awk: record number %g Floating point exception.n@n@n@n@o@$o@tFFFFFFvK/K#K#K#KKKKKKKKTKKKKKKKKKTKwOOOOOPvRRRRR^]^^illegal statement %ounexpected break, continue or nextunexpected break, continue or nextunknown boolean operator %dunknown relational operator %dout of temporaries in gettempsubstr: m=%d, n=%d, s=%s format item %.20s... too long%snot enough arguments in printf(%s)division by zerodivision by zeroillegal arithmetic operator %ddivision by zerodivision by zeroillegal assignment operator %d%ssplit: s=|%s|, a=%s, sep=|%c| %d%d%s is not an arrayillegal jump type %dillegal function type %dstring %.20s ... too long to print%stoo many output files %dwawcan't open file %s%sout of space in nodealloc$record```bEbEbEbEbEbECC`NNNNNNFQFQFQFQFQFQ````s_V'NVxY`0Z,[y\]]]]@T U`>D>D>D``B=^G`IB````````S```\P\P\P\P```=G```````tu@uu@vu@wu@{u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@u@v@ v@v@v@v@"v@&v@*v@.v@/v@4v@9v@v@Bv@Gv@Nv@Ov@Vv@^v@_v@`v@av@bv@cv@dv@ev@fv@hv@iv@jv@kv@nv@qv@tv@wv@xv@yv@zv@}v@~v@v@v@v@v@v@ < <= > >= == != ~ !~ + - * / % - = += -= *= /= %= printprintfsprintf splitif(while(for(instatnextexitbreakcontinueLLL || && !Lfncnsubstrsindexgetline ++++----$(empty restore file (VD Jb0@P?gKA~&s@w ?;f?? a\+0?&{?loglog10: DOMAIN error : SING error ??sqrtsqrt: DOMAIN error *D?*K??V c3>(\ D?Q(??;fF>?qmDCqmDC9B.@9B.@GG?+eG?0? a\+?expUnknown error: z@z@z@z@z@z@z@ {@{@0{@@{@S{@e{@v{@{@{@{@{@{@{@{@{@|@|@'|@;|@L|@[|@j|@|@|@|@|@|@|@|@}@}@2}@K}@Z}@h}@}@}@}@}@}@~@~@~@!~@9~@P~@d~@y~@~@~@~@~@~@~@~@~@@ @>@T@e@{@@@@@@@@@@@@ @;@X@o@@@ۀ@@@@I@R@[@d@m@v@@@@@@@@@ʁ@ԁ@ށ@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@Ă@΂@؂@@@@@ @#@-@=@K@Z@k@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-csssssssssssssssssssss??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFj**v*****R*^*ŃՃՃՃՃՃՃՃՃՃ************u**************************u****m****"**-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@h@h@̌@p@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0̌@p@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bbin/wc100755 3 3 32440 4243134370 6417 37777777777 La" *l  @.text* .data @ @l +@.bss@@.comment5ÐET@RU RP P*jÐUWVSEEE @9E~$E P=-uE PBPUME E9E~Fh @E U4l @u'E U4h @h @, E/d@l@d@t@E/}u)d@E ul@  t uE;rB}uQd@5 @hjW؅~0}Et@G؃ ~}v5l@5d@5t@u9E~E U4h @ h @Y5 @Yl@p@d@h@t@x@E@E;Eq9E~(5p@5h@5x@u"h @MYu\(Y]u}UW}iG=ct2=lt=wu6uh @ >uh @,u h @h @h @1j'Y?u}UWVS}}~EE ;ur;u s 3]u}Ã?'WBY=uE H3u U+ЋO;7sSwu& ÉE)G?}3W $@+W;}WF"Y+Å{EhUPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1@"u}F @tVY;5 @rGGG tG $@+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  $@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoYh~PW =uh~Ph0@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}@E@EX@s3UtE]@E`@Eh@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@b@vb@E@t%@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G $@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W $@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W$@UW@;= @r3}ÃG uUW@ WY;= @r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG $@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G $@+G?}3W $@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G $@+G?}3W $@+W;}WY3UWV}G G u}}&u|@@GW $@*h!YGt@O G W$@GGVYtG uO @u}G !@WR$@UWV}G $@+G}G $@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6:Ð&ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@j Y@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}WV|$ t$L$Njʁ^_øVÐT$ @Ru @+D$ø!T$ @3øÐ@ÐT$è @@(#)wc 5.3c of May 12, 1988@lwcrwc: cannot open %s %s total %7ld%7ld%7ldusage: wc [-clw] [name ...] 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFrrrrrrrrr          rrrrrrrrrrr4 rrrrrrrrrrrrrrrrr rrrrrrrrrr< 4 N 7 < rr0 rr rrr rj rr -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@!@!@ @!@$#@3.1bS03.1bS0bin/who100755 3 3 63360 4201131373 6602 37777777777 L! $W|@.text$W .data@@W@.bss&@&@|.commentfÐET&@RU RP PVjÐUWVS} DžDžDžPh"@#P@YEu t1@jE0ht1@$ |1@E1@1@1@1@l1@1@M9Eh@7t#h@w\#th!@wH#us'@"@P-YEu5"@P-YEu "@P-YEu h#@ Yj/us-EEm9E|xhD@7"uehG@w"uQ1@hJ@w"thL@wr"u Dž DžmB=-Dj7g,=t7uYM7hn@ }~ =1@i3C<&@u ~ ~ '@=1@jh@GS1@=uh@JYjTYjj 51@:O jh1@51@QH =f1@fuh@h"@jSYjcYt @1@51@bNY@M5@h@P P8Y5@h@P 5@h@Pk =1@1@=1@=@jP*=u$5@h@h"@ Dž DžtpjPL*=uXDž=1@t5@h@h"@f 5@5@h@\P~\PK"Y=1@9P_Y=sDžd9uVKY=1@u2fFf:F= +F9&@fFfuh(@h"@}tj uF P6) =1@t(Vh5@l1@l1@k .@Pr =1@t!=@t5@h;@h"@  VYPVj H@ Ph'@y '@YPV YPVj @h '@T '@YPhE@h"@F=u!FPFPFPhe@h"@=1@F=t%F=tF=tF=FPhw@h"@+ F=t F=uCVAYPh}@h"@ F=uNFPFPh@h"@0F=t F=uV YPh@h"@ h@h"@9t 9us=1@t/=1@t!=@t5@h@h"@4 N=1@t9u@=1@t*u!EM~ @ @=@tC5@h@P PxY5@h@P Džb9u 51@!IYh"@DYj:NYPTXË=ht#=Tt5X=At9=?ghQ@fYz'@k1@\=H.1@F=bt.=a&@1@=d'@=rt%g=pt5B=l&@&@1@&@=quw1@'@=tt3=suR1@i&@1@&@I=uu'@=1@u/1@#PhR@h"@ hm@Y@8t =1@0Mf1@ft@1@hjh1@51@@ =tG&@C |=1@u 1@1@1@fUEEЉ0@El1@9E|EE`E@k0@ .@PEk0@ .@P~,EE0@UB 0@ 0@@U0@El1@9E|}uEEmE0@UH9E~. "@}h"@j |B"@ "@EkE .@PYkE .@PX?YEEl1@9E~5l1@h@jJYUu uh"@ h@h"@mh@h"@[hK@h"@Iht@h"@7h@h"@%h@h"@h@h"@h@h"@h@@h"@hP@h"@h@h"@jIYUj uh '@* '@Uj E@ Ph'@ '@UWVS}MfE3] = ~fE FCt;u|3Ef}u E@HE5GU E FE t;u|;uu. ׈GF;u|]u}UWVS}"'@3DG @Wu Gu FW ^FG% @Cr"'@]u}U8WE@ PYGWh('@<=1@#E@=t.E@=t E@=tE@=E@ P=@t@@P=@t@@Ph@EPEPEP !=uh@h('@!xjY+EEQ9E~h@h('@ L<9E}h@h('@ .E<3REPh@h4'@=('@}U8W=1@tTE@=tFE@=t8E@=t*E@=tE@= tE@=u @}ËE@ P=@t@@P=@t@@Ph@EP@'@hjEjNYjEP&EEj5Y=@'@t @j9Euu @M@Ctjuht1@ u/EPu=uE̩t@ @@@'@hjDjYu@YjvY=@'@t@U@'@U$WV=D'@uc=1@t"=@t5@h@EP* h@EPO9h@EP9D'@u @uԋ}5D'@ YEE3;ItjE@P7L u G뻾5D'@ YEtE9E|@UWVSX'@X'@u:5D'@X)@+PWW ujj5D'@q 3]u}3\u3G?t = ut\tE?tEO}nP'@X'@T'@@EX'@E u E=:uMG}uڃ}3\u3G?t=;t\t =#uӊtY=;u6G= t= t=:u0G= t = tG= t= tu P'@=T'@P'@UWVS}u X)@ZtCGN}X)@]u}U=1@t h@@ Y=1@th$@h@h"@ hT@hO@hM@hH@h)@h"@ =1@}!hp@hl@hg@hY@h"@ hy@h"@ UPERMI fPRMI fPRMI fPRMI fPP p1@p1@Es1@p1@Es1@q1@Er1@q1@Er1@Ep1@P UPju?1@=tjEP51@4 =t3fEfu搸&.@ÐUu]YPYUWVS)@|@GF҈uEk@@)@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW)@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐÐU WV=@}uEPh@Iu$E$3t&@3u؋}hhh@= @}jh@v=@}3j$h)@5@2 =$t 3)@+jj5@V9 -$)@)@qGF$r)@3VUWV}f*@fG=$(@G*@[f5*@ftftft =uI*@W;u:*@W ;u+*@W ;u*@W ;u )@u}aM3UWV})@fFft6F=t F=u j F PG P u Ƌu}u3U,WVE}Թ =@|+jj5@ E=tE%=t 3ű}ÍEPYuBEPpYuE Pj5@] &jj5@e7 jj5@Q7 j$EP5@m; =$t E)@uԋ E)@uj5@ E?UWV9@tjj5@6 3)@GF$r)@u}UWV9@t 5@'6Y@)@3)@GF$ru}Uu/Y=O~3uh@y/Ujh@ÐUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P5 E}|EE}øUWV}t9~u=Ƌu}U=\@uh`@hL@.\@5\@YU=\@t5\@l0Y\@UW}G?t=:t = u= u ?tGNj}U=\@uhb@hL@>.\@u35\@YUWuhh*@_ =.@WQY=".@WBY=:j EPW EWn-YPj:W, 9Eu`WY}| `9E~aE&.@t4=:t*j EPWz EW-YPj:W, 9Et3}WY}| `9E~aE*.@=2.@=6.@W^Y=:.@WOY=>.@W@Y=".@G?t =,u?tG=..@.@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V %@+V;}V1Y}u +gEEvÐ>6ÐUPWE E"@u"@t* "@h"@uu "@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}WX-YjjG PX1 GGg G tg }ÐUPWEEE@ uE@ t(EH uuu C E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P}0 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P0 ECG t8W+YG t g GGuu G P/ E9Eus3lUWV}uW=.YG uG tO G Dt1"@"u}F @tV>+Y;5%@rGGG tG %@+GPwG P9( | GG듸9tO O G tg aUWV}G tG t wY1Yg E GuaO }8u1@5@GW %@GGu}G 9@WR%@G W%@V-YtO @맸ÐUWEEEEEE2EEEPuu  ENj}ÐUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E @u5GEE @uE=+t =-u EGEu309Et "G=xt G=XuE @tEE @t E-0#E @t E-WE-7E;| 3]u}Ãu;09Eu1G @tG=xt G=Xu EE @t E-0#E @t E-WE-7+EGE @tEE @t E-0#E @t E-WE-7E;|} tE 8}tUEu$juhp@hl@hd@ujYjj!/Ejj/EEPG$YE;Et 9Euuj.uj.9EuEËEU5&@E Pu Ð;/.t3Ð T$tÐUW(E+t@EEPY=|@iGQiWkW<E=D.@u=H.@uWEPEP< D.@EH.@EE9E|)E9E}!E+x@EEPYG Nj}UWVEQUEE}} EQME<L.@EP.@ƙ5T.@Epd.@}| FFFtmnEN}|ۉ5`.@}=h.@ƹtmn=nu f@3 u@+Fu@;}f@GX.@5\.@l.@L.@u}Ëƹtmn)EFƹtmn9E} YE5@uEjht@u) Et@-x@H.@3D.@|@5@uhEtC|@Et0=;t(jhx@u Et E=;thH.@hD.@E@P UPEE @u3ËE E U M~E@E @uEE @u E E M}EUW3EE}t-E=-u3Eu E=+uEEPuEt^iEE=:uHEPE@PXEt0kE<E=:uEPE@P-EtE}t E ډE 8E}UE @u3ËE E k U0E@E @uՋEUE3EEPuEtyME=/ujEPE@P EtOE=,uFEPE@P?Et*ME=/ujEPE@P9 Eu3ËE iUQUEiUQU t@+ x@+щUPEEEkU @9P|EkU @E kU @E0uEUE 0u0U EiQ E iQUWV}u :|"Gtmn-m+GG+‹u}ø!"(ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUPWVu"Yt8EPu|%E%= ujh@&} 3u}þfEft EU;uuh@hp.@EPhp.@EPhp.@|=EU;u1E%= u!t EU;uW!Yp.@\jEPW =TjjW! NuWa!Y3 f&3ÐN&3ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  %@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph @v 3WW YkUjuuuu u#Ujuuuu uU$WVS}.@E.@E("@s3UtE].@E0"@E8"@E"@r5E"@r"@E"@AE"@s6EE]@)EE"@r݋EE 9P܃}t؁.@.@v.@E"@t.@r05}fEf fEmE]mE܉E@0Ee "@];r&=5|+.@u.@1}tCF0N<9.@]Ћuԋ}ËEE0]@EEsEE 9P EEEE"@MU]vEu}fEf fEm]mE܉EFUR0EMm]E"@E5"@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G %@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W %@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}&@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W%@UW"@;=%@r3}ÃG uUW"@ WY;=%@r}UWV}tlG t6G t3WVYG PY}&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG %@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O  G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G %@+G?}3W %@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G %@+G?}3W %@+W;}WY3UWV}G G u}}&u1@5@GW %@*h!YGt@O G W%@GGVYtG uO @u}G 9@WR%@UWV}G %@+G}G %@Wu};7}7𐐐3ÐU&@EEPhTu } E&@3ø6ÐÐU WVSE9ET=&@u<&@ &@&@ &@&@&@&@&@&@&@E@3؋=&@E&;5&@&@E@E=w=&@jY&@@;t?3Ee ƹ3tL3+‰EEE2&@+&@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5&@&@0E+E-&@@;t&@&@&@&@~Љ&@;5&@v&@&@&@ 9=&@u &@&@G(=&@95&@u=&@7tލ;r;l%;UWV}5&@%&@9u5&@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ&@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$&@Ru &@+D$øT$&@3øvÐ0WNL$0W:L$0+L$0L$0 L$0 Ã&@ÐT$@@(#)who 5.3b of Jan 27, 1988amiIprocess not attached to terminalison@@netwho: illegal option -- %c%s doesn't exist or isn't readable@I don't know: can't open @ directory I don't know: net is down @%s/etc/utmp@%s/etc/inittab@%s/.who: Cannot access %s %s: run %s who is on %sEmpty slot. %.8s %-13.13s %-8.8s %-1.1s%-12.12s %-12.22s %c %d %c %-5d id=%4.4s term=%-3d exit=%-3d %-14.14s %s: @%s/etc/utmp@%s/etc/inittab # users=%d Usage: who [-rbtpludAasHTq] [am i] [utmp_like_file] who [-rbtpludAasHTq] is on [@ | @net | machines...] r run level b boot time t time changes p processes other than getty or users l login processes u useful information d dead processes A accounting information a all (rbtpludA options) s short form of who (no time since last output or pid) H print header T status of tty (+ writable, - not writable, x exclusive open, ? hung) q quick who %s%s/dev/%s@ . old . %2u:%2.2u %s%s/dev/%s@?x--+-+?@%s/etc/inittab/etc/inittabr %-13.4s HOST%-8.8s %1.1s%-12.12s %-12.12s NAME LINETIME %-5s %-5s %sIDLEPIDCOMMENTS Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/utmp%%%%2222/etc/passwdrr/bin/shsh-c@@W`/Lw/K:/JMFw/GMT TZ/dev/  000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFN4>>Z4>|=>>>>y464>B4f4>4444444444>>>>>>>>>>>6>Y;>>>>>>>>>>>>>>>>g6>>>>>>>>>>=468Y;44>>4>>Q6>>>=>6>>g6-+ 0x0X--+ --+ --+  ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@9@9@%@9@\;@3.1bS03.1bS0%@9@bin/write100755 3 3 51614 4201131400 7125 37777777777 L! xE4 H@.textxE .dataH@H@4 HF@.bss|@|@ .comment|SÐET|@RU RP P-EjÐUDWVSDžh@Y@@@q@EMh@h@jDYE E @EHE=~h@h@jzDYE E Uy@PzYEuC@PeYEu.@PPYEuh@h@5E@E@Ef@fEF=j uF P u9@NHNHN H NHNHNHNHN H jV5@_ i}t`j F Pu@ Jj F P5@ )hl@[Y@@j F P5@j tBhl@ Yu35@kP47@5@5@h @h@3Q}uYE=u'u5@5@hg@h@]h@jj F PD4h@h@6fEF}td@uY~(h@h@/h@h@u5@h@h@jAY@u#5@h@h@ f@fuH P YTuh@h@Xj2AYj T0EP jh@EP} EjeYuh0@h@h jX@j2Yhm@hl@5@jYh5j@j @j?j?Y\PxY\PYX@Xu5@EPho@5@= 5@@7Yh@h@ =!u CS Y~tZ@@ P9YuFhl@h@h@ h @5@ j?Y5@Sh5@6Yhl@h`P K둍kPhc@h@E G;|Uuj>uj~>ujq>ujd>UWuh@h@u%juh@h@h@sj>]jj>jj>j<3Y;uh5uj=uj=uj=uj=Yh@h|@F }U5@5@h@h@ j=YUh @5@ j=YU$ju<E}3ÍEPuuv8YE%U EPuE%ÐUuYPYUWVS@( @GF҈uEk@B @@GFGFGFGE@kX @GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐÐUWVS} 3G %=utG9Gu!?uG DuW5Y 3G @UG u;u:0YEPuG P: E]u}W14Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W @+W;}W5Y}t*G @tW3Y=u ]VEgU WV= @}uEPh @u$E$3t\@3u؋}hhh @9 @}jh @j9 @}3j$h@5 @. =$t 3@+jj5 @J5 -$@@qGF$r@3VUWV}f@fG=$ @G@[f5@ftftft =uI@W;u:@W ;u+@W ;u@W ;u @u}aM3UWV}@fFft6F=t F=u j F PG P u Ƌu}u3U,WVE}Թ = @|+jj5 @ E=tE%=t 3ű}ÍEPYuBEPpYuE Pj5 @ &jj5 @Y3 jj5 @E3 j$EP5 @a7 =$t E@uԋ E@uj5 @J E?UWV9 @tjj5 @2 3@GF$r@u}UWV9 @t 5 @2Y @@3@GF$ru}Uu+Y=O~3uh @m+Ujh @ÐUWV}t9~u=Ƌu}U= @uh @h @i+ @5 @HYU= @t5 @,Y @UW}G?t=:t = u= u ?tGNj}U= @uh @h @* @u35 @YUWuhh@_ =@WQY=@WBY=:j EPW EW)YPj:W) 9Eu`WY}| `9E~aE@t4=:t*j EPW EW)YPj:W$) 9Et3}WY}| `9E~aE@=@=@W^Y=@WOY= @W@Y=@G?t =,u?tG=@@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V;.Y}u +gEEvÐ>R3ÐUWVS}u ]GF:u Nj]u}M}3UW}WH*YjjG PH. GGg G tg }ÐUPWEEE@ uE@ t(EH uuu 3 E@ t }ËUWV}uWQ,YG uG tO G Dt1l@"u}F @tVR)Y;5@rGGG tG @+GPwG PM& | GG듸9tO O G tg aÐUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E @u5GEE @uE=+t =-u EGEu309Et "G=xt G=XuE @tEE @t E-0#E @t E-WE-7E;| 3]u}Ãu;09Eu1G @tG=xt G=Xu EE @t E-0#E @t E-WE-7+EGE @tEE @t E-0#E @t E-WE-7E;|} tE 8}tU5|@E Pu Ð;..t3Ð T$tÐUW(E+ @EEPY= @iGQiWkW<E=@u=@uWEPEP< @E@EE9E|)E9E}!E+ @EEPYG Nj}UWVEQUEE}} EQME<@E@ƙ5 @Ep0@}| FFFtmnEN}|ۉ5,@}=4@ƹtmn=nu f& @3 u$ @+Fu$ @;}f& @G$@5(@8@@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph @v 3WW YkUjuuuu u#Ujuuuu uU$WVS}\@E\@E@s3UtE]\@E@E@E@r5E$@r0@E,@AEL@s6EE]@)EET@r݋EE 9P܃}t؁\@@v@E\@tm@r05}fEf fEmE]mE܉E@0Ee d@];r&=5|+\@u\@1}tCF0N<9\@]Ћuԋ}ËEE0]@EEsEE 9P EEEE4@MU]vEu}fEf fEm]mE܉EFUR0EMm]E<@E5D@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}|@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UWl@;=@r3}ÃG uUWl@ WY;=@r}UWV}tlG t6G t3WVYG PY}\@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h!YGt@O G W@GGVYtG uO @u}G !@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU\@EEPhTu } E\@3ø6ÐÐU WVSE9ET=p@u')'#,#b,b, #b,b,$b,b,b,+b,Z$b,b,$-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@!@!@@!@"@3.1bS03.1bS0bin/xargs100755 3 3 41610 4201131401 7113 37777777777 L! <7l  @.text<7 .data @ @l 8@.bssx#@x#@.commentxCÐETx#@RU RP P6jÐUWVSME 3\-@l@X@l@`@L@t@E8u#Y`@uE 0h@h$@ h$@jh@j5 u,YPuj5 h@Y!l@`@t@L@E8@@p@E<@udYH@9H@ =H@E 0h@h$@0 h$@jh@j4 u+YPuj4 h@YPu YL@TE 0h@h$@ h$@jh@jl4 uM+YPujU4 h@Y=X@u 9L@u3l@`@3t@jh9@3D@=u:hB@jh@j3 u*YPuj3 h@Y[p@OE 0h^@h$@ h$@jh@j}3 u^*YPujf3 h@YE EHE=|CE =-u4E BUE-ev=kc$@=h@u d@}u$Er@uY8@8@E U=t@=d@5@@E 0w =ttF~Z5@@h|@h$@ h$@jh@jT2 u5)YPuj=2 h@Yd@8@ËU HE E 0Y8@8@=h@tEM#0@E8@Ex@EE0@E8@Ex@4@8t54@Y8@8@8@8@t =h@u߃=d@uG=t@t>/@-@-8@|@3\-@SY=d@uG;~8@=d@=\@u,=`@t =T@t=L@t=P@ujY1Yh@=p@tQtdh '@u=uMuh@h$@ h$@jh@j`0 uA'YPujI0 h@Y=h@t =\@f=h@tjj0Y]u}UWu&Y@x@Љx@;H@E4@h@3=l@tDd@h@jh@j/ u}&YPuj/ h@Y[9P@~ P@Bh@jh@jI/ u*&YPuj2/ h@Yd@tE}3Uu50@%0@EP%Y@0@uYUWS"= t= t= tۄu\@3]}Ë=0@Åt[= tG= tM= t9="='=\0@0@=t@0@0@5<@W tu\@= P@WYEt\=`@t uT@@T@;`@}=L@t2L@9P@|%P@3T@4@@h@E0@0@= t u3Et E= uj0@0@Wh@h$@X h$@jh@j, u#YPuj, h@Yd@3,0@0@U E;^Ujh@j, ub#YPujj, h@UPWV'@&73#YP7j<, jh@j+, ?uҸ9D@ujh@j, u}jh@j+ jEP5D@" ujY,YE= u3jEP5D@T" u E= uڅuj,YE=yu q3jUWVSu B"YE5@@3"YHEEH|#@{$@?5@@W u!E;s)u S!EE C;sG?u?u|#@]u}5@@h @h$@ h$@jh@j* u!YPuj* h@Yd@3UPWVSEp8@VG!Y@)x@SVWutGNj]u}3U5x#@u u ÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐U}u3jYEh,j%EEE}t6E9Ev)EE&E+EEEEEMuj%h|$@YuubYljUYE}| ujq%} }}}t EEP YEE2Ujh|$@EøÐ%ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu W ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸;$n$t3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  "@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVKYF Dt*F uuj E+EP` tVCYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlt@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}$@E$@E@s3UtE]$@E@E@E@r5E @r,@E(@AEH@s6EE]@)EEP@r݋EE 9P܃}t؁$@$@v$@EX@t$@r05}fEf fEmE]mE܉E@0Ee `@];r&=5|+$@u$@1}tCF0N<9$@]Ћuԋ}ËEE0]@EEsEE 9P EEEE0@MU]vEu}fEf fEm]mE܉EFUR0EMm]E8@E5@@]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G "@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W "@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}x#@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øj L$tÐUWh@ WY;="@r}UWV}tlG t6G t3WVYG PY}X#@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG "@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G "@+G?}3W "@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G "@+G?}3W "@+W;}WY3UWV}G G u}}&u/@3@GW "@*h YGt@O G W"@GGVYtG uO @u}G 7@WR"@UWV}G "@+G}G "@Wu};7}7𐐐3ÐUX#@EEPhTu } EX#@3ø6ÐU WVSE9ET=l#@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@7@7@"@7@09@3.1bS03.1bS0bin/yes100755 3 3 27300 4201131413 6572 37777777777 LL! $ @.text$ .data@@ %@.bss@@ .comment.ÐET@RU RP Py$jÐU9E~E @@Ph@ِUPWE E @u @t* @h @uu  @ t }ËUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoY Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅H0@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H8@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h @YEt Eu = @t3txE @ @h @EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E @E @EP @r5EX @rd @E` @AE @s6EE]@)EE @r݋EE 9P܃}t؁@@v@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEh @MU]vEu}fEf fEm]mE܉EFUR0EMm]Ep @E5x @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;= @r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u@ @GW  @*h YGt@O G W @GGVYtG uO @u}G @WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐU@EEPhTu } E裐@3ø62ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$Ø@@(#)yes 5.3b of Jan 27, 1988%s y 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF6 B d a *N   A O i A   9  O-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$@$@ @,@@3.1bS03.1bS0 @,@bin/finc100755 3 3 54550 4201131417 6724 37777777777 L! T?4 $@.textT? .data$@$@4$@@.bssX@X@ .commentXYÐETX@RU RP P ?jÐUPE $@@@hT@Y @@@A@5@>YD@u<5@h@uuuu uuuuuu}(jl>Y<@n@B@5@YH@u5@h@uuuu uuuuuu(j>Y땡@C@5@uYL@o5@h@uuuu uuuuuu(j=Y.h@5@~}<5@h@uuuu uuuuuuX(jG=Y<@@P@B5L@5$@h5@uuu uuuuuuu(j<Y h@u u E=E @@ (@@ ,@=<@u hC@Yh@5(@{|@%=`t<5(@h[@uuuu uuuuuuB(j1<Yh@5,@|@%= t<5,@h@uuuu uuuuuu(j;Yj5(@F; @<5(@h@uuuu uuuuuu(jv;Yj5,@:@<5,@h@uuuu uuuuuu2(j!;Y7j;YËE-a= $P@Upj Y hcj5@5@UWV}u +u}U=@u h@ 5@5H@h(@f k@P6Y8@u4hI@uuuu uuuuuu$(j:YY6 |@H@8@E@@EIu@0Y@@tu@0hp@ EE@@9E|@h@n YU@jyYEPjEE@EP @@-@E ~9u$9uKE9u4h@uuuu uuuuuu (j8YY@@3@@@@=@~'= @~=@~ @9@9@~4h@uuuu uuuuuu1 (j 8YY@@t15@5@5@5 @5@5@h@ uj9 @~ @@k@ @@PW3Y@@u4h@uuuu uuuuuuc (jR7YYk@ P3Y@@u4h"@uuuu uuuuuu (j7YY@@@@t!k@P5@5@hE@ UEfEEjYEEuuEEEEyfEEfftcE=tXE%=tFuYt9@@tEPhf@ EPuEH@EE@@9Ey}t u YE@9E5ujUP9@u@9@t9@k@P58@5@B5 E@@t hw@K Y}~ k@9EtW\@98@}8@ @@Ph@uuuu uuuuuu(j4Y@@@@@С8@U@8@U@UE@8@4@j=Y@E@@@@0YEMujYU9Eu@3\@4@`@)9Eu&4@9`@t.4@jYá`@`@U \@ujYU@@E@8t5jYEP@0juuj{@xt6jfYEP@pjukuj:@xt6j%YEP@p|ju*ujE@ @9E'UEE8E =tR=tX=E0YjYEPE0juujgKE0eY>E0XYjCYEPE0juKujEE9E8UPEt=u u &0Y5@p-YEu4h@uuuuu uuuuu(jr1YYEU 9E}E E@Eju5 @, E5@u 5 @' E}|}}Z\@98@}8@ @@Puh@u uuuuuuuuu(j0Y EUW3=<@=D@t<A@P5D@ET@+P4¹QP t3=H@t<B@P5H@ET@+P8¹QP t3=L@t<C@P5L@ET@+P<¹QPJ t3=P@tEP@9P8~3;=<@u }3UWVS}u ]+u;&3]u}=-u k;|3;u3U8Efftxuj E@ PEP EE̋Uȃ<t E43YEȸ 9E|ۃ}u }u}tuuus U@@tu5@h@ @@M @@;@~!h@5@uuh@ U}t uY} t u rY}t ucY@UU PUP@ @@;@~!h @5@uuh@9 UPhh@5@Y$ E<5,@h-@uuuu uuuuuu(j{-Y9ErBhE@h@t`hK@h@tJhP@h@t4hX@uuuuu uuuuu (j,YY5@4(Yj5,@j,@h}@h@w#@@T@@@@k@ @$@hh@5@W, 4h@uuuuu uuuuuO(j>,YYUu uh@uuuu uuuuuu(j+Y U5,@5(@5$@h@hh@u,u(u$u uuuuu uhh@,Uu,u(u$u uuuuu u(ju+YÐUPWVS}Ey@uJGy@u=+t =-u EGy@u 3]u}ø0+Ëk 0+Gy@uރ}t뾋븐UPWV9@ueE9@}#E @ =-u E Au u}h @E @4u @΋E @ @=@:tWu=@tOLjEE E 0 YPE 0j) h@ YPh@j) jEPj) E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0YPE 0j( h@YPh@j( jEPj( @?GE @@ @@8E @ @@@u@@@UWVSu] 3 FC FCFӊ CCG;}|]u}UWVSu] 3 FC FCFӊ CFG;}|ދ]u}ÐU9Er=d@u>El@P#Yd@Eh@Ed@E EURu+ËE9l@sˣl@P5d@&d@UWVSd@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuWh@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVuh@Eu;}uE+EU +U;WE+ÉEPV E+E,UPWVS}u d@|?=d@t6SW5d@,% SVW!% S5d@V% ]u}ÊEGFUKuUWVS}u ]d@E9E|R=d@tIuW5d@$ uSW$ uVS$ u5d@V$ ]u}ÊEGCFUMuӐUPWEEE@ uE@ t(EH uuu w E@ t }ËUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸$Ð T$tÐ#3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  l@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlT@Dž\9PtP؉PNKPPoYh~PW =uh~Phx@ 3W YkUjuuuu u#Ujuuuu uU$WVS}p@Ep@E@s3UtE]p@E@E@E@r5E@r @E@AE(@s6EE]@)EE0@r݋EE 9P܃}t؁p@@v@E8@t@r05}fEf fEmE]mE܉E@0Ee @@];r&=5|+p@up@1}tCF0N<9p@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G l@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W l@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}X@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWH@ WY;=h@r}UWV}tlG t6G t3WVYG PY}8@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l@+G?}3W l@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l@+G?}3W l@+W;}WY3UWV}G G u}}&uX@` @GW l@*h!YGt@O G Wl@GGVYtG uO @u}G h$@WRl@UWV}G l@+G}G l@Wu};7}7𐐐3ÐU8@EEPhTu } E8@3ø6FÐ2ÐU WVSE9ET=L@u%s: : option requires an argument -- : illegal option -- --`@h@r@@@@@@@@ @@1@B@T@`@v@@@@@@@@@ @ @' @6 @N @[ @q @ @ @ @ @ @ @ @ @& @4 @M @j @ @ @ @ @ @ @ @ @ @0 @E @V @c @y @ @ @ @ @ @ @ @ @ @1 @G @W @e @ @ @ @ @ @ @ @ @ @ @ @$ @; @b @ @ @ @ @@@'@0@9@B@K@T@]@f@o@x@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@ @@&@7@O@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFr(r(r('r(r(r(r(r(r( r(r(r(r(r(r(r(r(r(r(r(4!r(%r(r(r(r(r(r(r(r(r(r(r(r(r(r(r(r( r(r(r(r(r(r(r(r(r(r('<4!N#%7<r(r(0r(r( r(r(r( (r(j r(r( -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@x$@x$@h@$@&@3.1bS03.1bS0bin/frec100755 3 3 71740 4201131420 6716 37777777777 L! Da @.textDa .data@@b@.bss@@ .commentsÐET@RU RP P`jÐUEEEE @@@DžE=f=p@ @@h@5@:u@%=@B5@h@(j_Y58@5@h@(j_Y h@5@ @TuZ5@ @h@?(j#_YEh@u u E=LE 8 @8 @ @=@@teEEkPwZY@@uRh@p(jT^YYEtPP YEPh @b =uE 8 @4YE8 @E98 @|ڃ}}`58@5@h@(j]Y hj5<@5@XsjU]YEhP uY U uj ]Y@=t@Ph @jW Y@@@@@@@@=@H@5@aXY@u4hL@u uuuuu uuuu}(ja\YYU@wEjEPh@, E@EP@@-@H@@=H@@H@3@=@@uj WY@@@@ @JH H@@3@@@@=@~'=@~=@~@9@9@~4hq@uuuu uuuuuu)(j [YYUEEE@EEE=@@t @L@-E@EE'EE9EuuuM EE@E@9E} @9ErŃ=@@tL@@@С@9}E@9E}@9EI@E$ExuPEph@ E@9ErUE@PU=@@t uY uY=uZ@9Eu EPUdEpp@PEPrh@uEPHJPHJ@YEuEPHJPHJ@YE@@9POUEExL@9P|#@H@@@;|$E@H@=@@P#Y@@@;@}@@@Ћ@EYE@9L@uKE8uuu,E9t9t 9uuuEJEE9L@|UPWVS}tG@L@9G}jQY5@@Ћ;sG9u;u]u} EL@@ЋG9u݃?uuW0'9t9t 9u uWUEE@jEPrVE} E@GjE@H@PuR } E@Ep u uV }E@}| uQYE8t"EPrp5@uh@ UEEEPU'E 8E=tm==h&@= YE@PEPrhZ@uuuuuuuuuu (jUY E 0N YEUJHEU HURUPUR9Pu EE@H@UB DE 0 YEUJHEU HUM @JHH@P E E@9E} }UEj:u_%E@EU}tEt E= uuhz@ uYE~ @9E~uh@ ͡@E#E;Euuh@ 3뤃E@9Erӡ@8E=/ttE=.uE@=/tY5@@IY@Eu3IYUЍRROYE5@uHh@u-uu-uHY@POYEuuH@fUfUP@@<@3U(@9E~A@Puh@uuuuuuuuuuX (j E}| @9EtXL@@P5@5@5@u5@h@uuuuuuuuuu@(j$IYL@@@H@С@U@U5@5@h9@h@ u,u(u$u uuuuu uh@q ,Uu,u(u$u uuuuu u(jpHYUWV}u +‹u}UPuhB@S@EuEpppp p@PE0uhS@h@ (YE@E;@uhQ@YUEpppp p@PE0uhS@h@~ (ÐUu]YPYUWVS@@GF҈uEk@@@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW@]u}UW}G 9E |E R0ˆG GE R0‹GNj}Ð:F3Ð"F3ÐUPWVS}E @uJG @u=+t =-u EG @u 3]u}ø0+Ëk 0+G @uރ}t뾋븐UPWV9, @ueE98 @}#E 8 @ =-u E Au u}h0 @E 8 @4u 8 @΋E 8 @ , @=< @:tWu)=4 @tOLjEE E 09YPE 0jD h @9YPh @jgD jEPjWD E 8 @ , @@, @u8 @, @?F=:, @@U 8 @t, @@U 8 @@ @8 @@8 @;E|l=4 @tOLjEE E 08YPE 0jC h@8YPh@jC jEPjtC , @?GE 8 @8 @ @ @, @8E 8 @ , @@, @u, @8 @@ @UWVSu] 3 FC FCFӊ CCG;}|]u}UWVSu] 3 FC FCFӊ CFG;}|ދ]u}ÐUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V<Y}u +gEEvA3ÐAÐUWVS}u ]GF:u Nj]u}M}3U9Er=D @u>E@P =YD @E@E@E EURu+ËE9@sˣ@P5D @?D @UWVS@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u @|?=D @t6SW5D @> SVW> S5D @V> ]u}ÊEGFUKuUWVS}u ]@E9E|R=D @tIuW5D @2> uSW%> uVS> u5D @V> ]u}ÊEGCFUMuӐUW}W 6YjjG P : GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh@d UPEEPu uI UW}EEEljEEW2YEE2uu EP }ÐUWVS}u Dž@@ @W=~*uDžF DžDžk -0F @u؃u DžÉ=lt h9uF؅[uPV @tDžl @؃nt_=@uVctQ[tL@} W@ Y GG @u @W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf@fl9uEEP@{EEP@dEPWSt'=@tu /$Fu  @td=@u@} W Y GG @u @W=u@y%uF%@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$H @EE EE@}WyY3]u}ËGG=+t=-t =0t8EM@} W(Y GG؃0i9E }9Eo@} WY GGEh~PW =uh~Ph @v 3WW YkUjuuuu u#Ujuuuu uU$WVS}4@E4@E@s3UtE]4@E @E(@Ep@r5Ex@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁4@@v@E@tE@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+4@u4@1}tCF0N<94@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u4@<@GW @*h!YGt@O G W@GGVYtG uO @u}G D@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裰@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$@@(#)frec 5.3b of Jan 27, 1988P@[-p /path] [-f file] tape-dev inumber:newname ...f:p:ropen failed for -f %s file -p path %s isn't a directory or just plain isn't usage: %s %s insufficient area for Ireq array %255susage: %s %s wrong reel. need reel 1 and you mounted %d insufficient memory for buffer area Invalid super block on tape file %s, inode %d is not on the tape recovery failed for file %s, inode %d, a[%d]:%ld OpenSeekWrite%s failed(%d), can not recover block %d of %s Sorry - triple indirect files can not be recovered File %s inode %d not recovered invalid syntax for request %s requested inumber %d out of range duplicate request for inumber %d ignored /reel %d > total reels %d, aborting! /dev/ttyrprepare to mount reel %d of %s %s Tape Ready? Hit Return to proceed, or `/dev/rmt/_' if you swapped drives -%s is not a character special file. Try again. Wrong tape mounted. Requested reel %d of %s not reel %d input %s is non-existent or not a raw device open failed(%d) for %s read failed(%d) on read of tape header. VolcopyFinctape was not written by finc or volcopy %s of %.6s (reel %d/%d) made on %sFincdefective header on Finc tape. No block count file %s, inode %d was unallocated Sorry! file %s inode %d is triple indirect. creat/mknod failed(%d) for %s, inode %d chmod failed(%d) for %s, inode %d utime failed(%d) for %s, inode %d chown failed(%d) for %s, inode %d /bin/mkdirmkdirinsufficient space for new block node. read failed(%d), %d=read(%d,%d,%d), for block %ld %s: %s: %s Bdata dump Bp:%x type:%d inum:%d blkno:%ld count:%ld bindex:%d (%x:%x) Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec: option requires an argument -- : illegal option -- --(((((((((((((((((((((??GA>??? @ @W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF>HH>HHHHHH ?>H>>H=?M?M?M?M?M?M?M?M?M?HHHHHHHHHHHdAHEHHHHHHHHHHHHHHHH@HHHHHHHHHHHl?dA~CEg?l?HH`?HH@HHH9HH@HH@-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@T@T@@\@ @3.1bS03.1bS0bin/head100755 3 3 40510 4201131443 6674 37777777777 L! + @.text+ .data @ @,@.bss8!@8!@ .comment8AÐET8!@RU RP P+jÐUWVPh8@ ME }E BReY @OE M~E =-tӅu =(VY=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V L @+V;}V#Y}u +gEEvUWV @@@9!@s !@< @uYtVujK( jh @j:( WYPWj'( jh @j( u}ÐUPWE ED@uD@t* D@h8@uu  D@ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu w E@ t }ËUWV}uWu!YG uG tO G Dt1(@"u}F @tVvY;5H @rGGG tG L @+GPwG P | GG듸9tO O G tg aUWV}G tG t w$Yg E GuaO }8u!@%@GW L @GGu}G )@WRL @G WL @V YtO @UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  L @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl4@Dž\9PtP؉PNKPPoYh~PW =uh~PhX@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@!@E@!@E@s3UtE]@!@E@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@!@!@v!@E@tQ!@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@!@u@!@1}tCF0N<9@!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G L @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W L @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}8!@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WL @UW(@;=H @r3}ÃG uUW(@ WY;=H @r}UWV}tlG t6G t3WVYG PY}!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG L @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G L @+G?}3W L @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G L @+G?}3W L @+W;}WY3UWV}G G u}}&u!@%@GW L @*h!YGt@O G WL @GGVYtG uO @u}G )@WRL @UWV}G L @+G}G L @Wu};7}7𐐐3ÐU!@EEPhTu } E!@3ø6FÐ2ÐU WVSE9ET=,!@u<0!@ ,!@,!@ 0!@ !@0!@!@,!@ !@(!@E@3؋=!@E&;5 !@,!@E@E=w=(!@jY !@@;t?3Ee ƹ3tL3+‰EEE2 !@+(!@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5(!@ !@0E+E- !@@;t !@ !@ !@,!@~Љ!@;5!@v!@$!@!@ 9=(!@u !@(!@G(=!@95(!@u=(!@7tލ;r;l%;UWV}5!@% !@9u5(!@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ$!@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$4!@Ru 4!@+D$ø!T$4!@3øÐ!@ÐT$ä @@(#)head 5.3b of Jan 27, 1988 r==> %s <== %sBadly formed number Unknown error: D@L@V@p@@@@@@@@@@&@8@D@Z@f@r@@@@@@@@@ @@2@?@U@d@p@@@@@@@ @@1@N@i@x@@@@@@@@@)@:@G@]@r@{@@@@@@@@@+@;@I@e@t@}@@@@@@@@@@@F@k@@@@@@ @@@&@/@8@A@J@S@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@ @@3@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF NN NNNNN v N N NNNNNNNNNNN NNNNNNNNNNNNNNNNN NNNNNNNNNN  *  NN NN NNNNF NN -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@)@)@H @)@<+@3.1bS03.1bS0bin/tput100755 3 3 73444 4201131452 7003 37777777777 L! uE 0h@h2@A. j'WYEP54@V E=tV=to-@9E`E -@-@h@S.0ut]u}VE 0h@h2@-jVYE 0h@h2@- juVYVE 0h@h2@o-jUVYUh@S/u0@oh$@S/uzPh-@[+Eu uS 1UPWVS}3W%Y|+PUYWSY؃|Sh1@*jUYWxYE=}ujUY3KE-@4YtE-@4N&Y8@E-@ 8@-@FE 9-@|tJ5\@5X@5T@5P@5L@5H@5D@5@@5<@58@u,PuYjTYWE0h5@h2@+jTY]u}UW}G/@u3}À?uUWV}3@@ ;9@~-3u}=$uG=<u GGW%%Y G?u؋G/@uG=.t=/t=*t/@uG=>tUWVS}EUf!u ރ>|9>|EfSf ]u}UW@@=t@8tx0tp0Y.3} 2@}h2@j J2@ 2@@x8t p8Y&h2@h[@ '@8Y@@;|͡@x0t p0Y' 2@}h2@j UJ2@2@ ?UWVjuQ}Au59@hd@h2@q)VP2@PQ hPWBH WLYUWEPhTW5M =tcEPhTWM =tE3EPhTWL =t*jh@PEPhTWL =u@9@E%\@9@@xt(@ @ @ (@ @f!EEP5@h@@p0YPDEP5@h@@,~YPEP5@h@@p`XYPEP5(@h,@@/YPEP5@h@@@YP@@t 8u@@=ufefMEPhTWcK @Pt P)Y=0@t@tY@t Y=0@t@tfY@t JY=0@t@tY@t Y=0@t@tY@t Y@x0t)p0Yh2@,FYj&YjNY} 2@}h2@j bFǡ2@2@ U0@UWj|h9@)tGNj}ø9@U 2@}h2@EPEá2@2@UUh| jur Uh| uÐU@rt&@nPhT@lPI 3UWVS}G%%؁u tu]u}ËЋU<WVS}uh@BYE}t Eu@EDž}t Eh@BY>VeCY@uSCYЁ~f@VPBPCYЋ/FFU /FuVBjPK} 96@}Vh@PzBPBYЋEVuVOBjP&K}c 96@tjh@&tf@#f@f@}t Euh:@AhPA VFYf@B9uf@'9@WTY9uW7YW'YWYWYWYDž=@hEY@tyjEY@t\jEY@t?hEY@|D@9@t 5@:HY5@.HY5@"HY5@HYf@}u @PIY_@@?@@DD@@`D@@|D@x9s Dž(:@uDY}t Eju@P" @ƀ@@@@ǂ3҉9E uu CYuE @fU fl5@ǀǀ3ffffhjP Y@@3f@ы @Bƀ@ǁj4jPr @nPhT@lPC 3@@n JHJHJ H fJfHWV}F @@5@G;sFӁu;s+PjV tG@@@:W6Y;s"} fffu;s#+ùEPjS Phju A =t0t&t@ffPffDžDžh+@;Yh1@;Yt&Y~@ffPt%Y~@ff@@?WY;s'} Ëu;s#+ùPjS WC @%=uK@f@t&@PhT@lP? 3 @xt@@3҉@@+@P5@5@SC @@(@R+P5@@@P(C @l@R(+P5@@@(PB @L@DžS@ ɉ t@@ p 9|@4@@=u@xu fPf| @f@DžT@<t04cu@@ 9r@ǀDž@ ɉ tM~04t39u@4@u@@!9G@@J\tJhxJx|3UEǀǀ3ffffhjP U@t&@PhT@lPu< 3U@nPhT@lPH< 3ÐUhX@h2@h:@@4<@h2@ h`@h2@ÐUW}@Ejjh@hd@WE=u }ËEUUW}@Ejj hH @h@WE=u }ËEUPUW}@Ejhh @h@WYE=u }ËEUЋUWVSDžl}6@Dž`E \EX@} 8@%:uGDž ӈGht%=t = `t@@TDžh|@@lT`t6Tt-@@H9h}@xtthPtTTt&@@P9EuTh8@hFhlpll TQ4YplAlb\XQG-1=wo$+@plBl\ plBlX plBlM plBlM plBlM jplBlM OplBlM$ 4plBlM( plBlM, 1u3` =a|1=z'pll EGa =A=ZpllfGafJ=a|2=z(EGa plBl K=A==Z/GaPplAlplBlG G='DžhDžd=-uDždG=+Gpllpll hplBlhˉ @pllpll hplBlh+ˉ pllpll hplBlhˉ pllpll hplAlIpllpll hplAlpllpll hplBlh#ˉ pllpll hplBlh ˉ Spllpll hplBlh3ˉ pllpll h9hpllpll h9h{pllpll h9h|Apllpll hhtA3plAlpllpll hh뜍pl<u3pl}plЍpl[pll<uCjeW4j;W%- \=^QI$+@Gu'h8@V,6@Ã%t Fӈpl hG|- |=w |$,+@Džt u΋=Xt =dt=ot=st =xӈsuhPV hPV F>ulkh -0hG؃0|9~܃}t3plBldh UWVS}35%u0GU ;t;uu Nj]u}À?uF;uNGu3ܐUWVS}3EE@@,99@t@99@uE/@t!k G-0/@uk =.u:G/@t -0G/@uEG=/u E=*tۃ}tu =>u#Gt@xt"}uNj]u}ËCPUYuVUW}t>=9@1=$uG=<uuu W GPUY?u3}ÐUu @u 3U WVS}u ]@4@@E@;u@9uE@׉UuEU‹@#Et#EU‹U!EU EE|^E}~EE2EU‹U#@tE@ EMt E 9E|čEUM EMC}u;tz@4twSj%P%P%@P% P%P%P%P%P%P@4(P E]ԋu؋}á@xu fPf|3#DžE#3ƅEEu@U#9UtSj@e 3LE.EU#@tSj@U4- E9E|ȋ#%3#DžEtYEFEU#@t4Sj@LU4 E@ЋU#Ѕ҉Ut E 9E|@fPf~Sjp` @UPWVS}@xu}@%E}~ 9Er]u}ËEE4-@@t 3ۋǙSU YO3먐UWV3EHmƹE}uEU MJ4uuEU MJ4u- E}}EH }~E@;~u}ËE UPUPWVS}E/@uJG/@u=+t =-u EG/@u 3]u}ø0+Ëk 0+G/@uރ}t뾋븐UPWV9-@ueE9-@}#E -@ =-u E Au u}h-@E -@4\u -@΋E -@ -@=-@:tWu=-@tOLjEE E 0#YPE 0j, hx-@#YPhx-@j, jEPj, E -@ -@@-@u-@-@?F=:-@@U -@t-@@U -@-@-@@-@;E|l=-@tOLjEE E 0#YPE 0j , hT-@"YPhT-@j+ jEPj+ -@?GE -@-@ -@-@8E -@ -@@-@u-@-@-@UWVS} 3G %=utG9Gu!?uG DuW%Y 3G 5@UG u;u!YEPuG P* E]u}W-$Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W 5@+W;}W%Y}t*G @tW#Y=u ]VEgUPWE E2@u2@t* 2@h2@uu 2@ t }ËUPWuY@=-@t)P56@@(E}u@}-@P<%YE}tٍP56@u( E6@׃M 6@W 6@U3UWV}3 W6@4$t Ƌu}F6@<uFUWV}u ==u u}GF;t3UWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUPWVS}] u}GN}E]u}ÐU}u3jYEhh1j'EEE}t6E9Ev)EE&E+EEEEEMujp'h9@YuubYljUYE}| uj5'} }}}t EEP YEE2Ujh9@EøÐF'ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐUEu$juh-@h-@h-@ujYjje%EjjV%EEP?YE;Et 9Euuj*%uj%9EuEËEU56@E Pu Ð;K%*%t3Ð!%ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  5@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVKYF Dt*F uuj E+EP` tVCYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl/@Dž\9PtP؉PNKPPoYh~PW =uh~Ph/@ 3W YkUjuuuu u#Ujuuuu uU$WVS}09@E09@E1@s3UtE]09@E1@E2@EL2@r5ET2@r`2@E\2@AE|2@s6EE]@)EE2@r݋EE 9P܃}t؁09@~9@v~9@E2@tA9@r05}fEf fEmE]mE܉E@0Ee 2@];r&=5|+09@u09@1}tCF0N<909@]Ћuԋ}ËEE0]@EEsEE 9P EEEEd2@MU]vEu}fEf fEm]mE܉EFUR0EMm]El2@E5t2@]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G 5@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 5@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}6@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øj L$tÐUW2@ WY;=5@r}UWV}tlG t6G t3WVYG PY}6@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 5@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 5@+G?}3W 5@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 5@+G?}3W 5@+W;}WY3UWV}G G u}}&u$I@,M@GW 5@*h YGt@O G W5@GGVYtG uO @u}G 4Q@WR5@UWV}G 5@+G}G 5@Wu};7}7𐐐3ÐU6@EEPhTu } E裌6@3ø6ÐU WVSE9ET=6@u<6@ 6@6@ 6@6@6@6@6@6@6@E@3؋=6@E&;56@6@E@E=w=6@jY6@@;t?3Ee ƹ3tL3+‰EEE26@+6@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή56@6@0E+E-6@@;t6@6@6@6@~Љ6@;56@v6@6@6@ 9=6@u 6@6@G(=6@956@u=6@7tލ;r;l%;UWV}56@%6@9u56@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ6@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$6@Ru 6@+D$øT$6@3øvÐ0XNL$0X:L$0+L$0L$0 L$0 Ã6@ÐT$@@(#)tput 5.3b of Jan 27, 19882Kn,X` %KPdd 2  dTERMT:LINES=COLUMNS=usage: "%s [-T term] capname [tparm argument...]" %s: No value for $TERM and no -T specified %s: unreadable terminal descriptor "%s" %s: no terminfo database %s: unknown terminal "%s" initresetlongname%s %d %s: unknown terminfo capability '%s' %s: Cannot open initialization file %s. /dev/tty @@?@DD@`D@|D@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS\@]@@@@@@(@/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, .         ok p rij% .-/ l43n5m 601279:O=SW;<@?ABCDEFGH    IJKLVMNTPQRU>8Z[\]^_`abcdvwxghstu!~y"}q&()*Xe+,z{|'Yf#$(%@+%@.%@2%@6%@;%@>%@A%@D%@G%@J%@M%@P%@S%@W%@\%@_%@e%@h%@k%@n%@r%@w%@|%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@&@&@ &@&@&@&@&@$&@)&@-&@1&@4&@:&@@&@E&@K&@P&@T&@Y&@_&@d&@h&@m&@r&@v&@|&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@'@'@ '@'@'@'@'@'@#'@)'@/'@4'@:'@>'@B'@F'@L'@Q'@U'@Z'@`'@e'@j'@n'@r'@w'@{'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@(@(@(@ (@(@(@(@(@(@"(@%(@((@.(@2(@6(@:(@>(@B(@G(@K(@P(@T(@Y(@_(@e(@j(@o(@t(@z(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@)@)@ )@)@)@)@ )@%)@*)@/)@3)@7)@<)@A)@F)@K)@P)@U)@Z)@^)@c)@h)@m)@r)@w)@|)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@*@*@ *@*@*@*@ *@%*@**@/*@4*@9*@>*@C*@H*@M*@R*@W*@\*@a*@f*@k*@p*@u*@z*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@+@+@ +@+@+@+@+@+@+@!+@$+@'+@bwamxsbxhpxenleognhckmhsindadbmirmsgroseslokxthzulxonnxonmc5ichtsnrrmcnpcndscrcolsitlineslmxmcpbvtwslnlablhlwmawnumcbtbelcrcsrtbccleareledhpacmdchcupcud1homeciviscub1mrcupcnormcuf1llcuu1cvvisdch1dl1dslhdsmacsblinkboldsmcupsmdcdimsmirinvisprotrevsmsosmulechrmacssgr0rmcuprmdcrmirrmsormulflashfffslis1is2is3ifich1il1ipkbsktbckclrkctabkdch1kdl1kcud1krmirkelkedkf0kf1kf10kf2kf3kf4kf5kf6kf7kf8kf9khomekich1kil1kcub1kllknpkppkcuf1kindkrikhtskcuu1rmkxsmkxlf0lf1lf10lf2lf3lf4lf5lf6lf7lf8lf9rmmsmmnelpaddchdlcudichindnilcubcufrincuupfkeypflocpfxmc0mc4mc5reprs1rs2rs3rfrcvpascindrisgrhtswindhttsluchuiprogka1ka3kb2kc1kc3mc5prmpacscplnkcbtsmxonrmxonsmamrmamxoncxoffcenacssmlnrmlnkbegkcankclokcmdkcpykcrtkendkentkextkfndkhlpkmrkkmsgkmovknxtkopnkoptkprvkprtkrdokrefkrfrkrplkrstkresksavkspdkundkBEGkCANkCMDkCPYkCRTkDCkDLksltkENDkEOLkEXTkFNDkHLPkHOMkICkLFTkMSGkMOVkNXTkOPTkPRVkPRTkRDOkRPLkRITkRESkSAVkSPDkUNDrfikf11kf12kf13kf14kf15kf16kf17kf18kf19kf20kf21kf22kf23kf24kf25kf26kf27kf28kf29kf30kf31kf32kf33kf34kf35kf36kf37kf38kf39kf40kf41kf42kf43kf44kf45kf46kf47kf48kf49kf50kf51kf52kf53kf54kf55kf56kf57kf58kf59kf60kf61kf62kf63el1mgcsmglsmgrflnsclkdclkrmclkcwinwingohupdialqdialtonepulsehookpausewaitu0u1u2u3u4u5u6u7u8u9"""""""""""2Sq!y#y#m">4y#y#Jy#7" 7 } 7"y# y#y#y#y#y#y#y#y#y#y#y#y#y#O!-y#y#y#y#y#y#y#y#y#y#y#y#y#y#y#y#"y#y#y#y#y#y#y#!y#y#y#y#y#by#!5MS7) : option requires an argument -- : illegal option -- --/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF7@@&7@H@@@@@E77@727@u7777777777@@@@@@@@@@@9@%>@@@@@@@@@@@@@@@@39@@@@@@@@@@M@79;%>77@@7@@9@@@q@@8@@39-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@DQ@DQ@5@LQ@R@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS05@LQ@bin/dircmp100755 3 3 5706 4114370107 7246 37777777777 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "@(#)dircmp.sh 1.2 87/08/25 " PATH=/bin:/usr/bin USAGE="dircmp: usage: dircmp -s -d -wn directory directory" trap "rm -f /usr/tmp/dc$$*;exit" 1 2 3 15 Sflag="" Dflag="" width=72 if type getopts | grep 'not found' > /dev/null then eval set -- "`getopt dsw: "$@"`" if [ $? != 0 ] then echo $USAGE exit 2 fi for i in $* do case $i in -d) Dflag="yes"; shift;; -s) Sflag="yes"; shift;; -w) width=`expr $2 + 0 2>/dev/null` if [ $? = 2 ] then echo "dircmp: numeric argument required" exit 2 fi shift 2 ;; --) shift; break;; esac done else while getopts dsw: i do case $i in d) Dflag="yes";; s) Sflag="yes";; w) width=`expr $OPTARG + 0 2>/dev/null` if [ $? = 2 ] then echo "dircmp: numeric argument required" exit 2 fi ;; \?) echo $USAGE  exit 2;; esac done shift `expr $OPTIND - 1` fi D0=`pwd` D1=$1 D2=$2 if [ $# -lt 2 ] then echo $USAGE exit 1 elif [ ! -d "$D1" ] then echo $D1 not a directory ! exit 2 elif [ ! -d "$D2" ] then echo $D2 not a directory ! exit 2 fi cd $D1 find . -print | sort > /usr/tmp/dc$$a cd $D0 cd $D2 find . -print | sort > /usr/tmp/dc$$b comm /usr/tmp/dc$$a /usr/tmp/dc$$b | sed -n \ -e "/^ /w /usr/tmp/dc$$c" \ -e "/^ [^ ]/w /usr/tmp/dc$$d" \ -e "/^[^ ]/w /usr/tmp/dc$$e" rm -f /usr/tmp/dc$$a /usr/tmp/dc$$b pr -w${width} -h "$D1 only and $D2 only" -m /usr/tmp/dc$$e /usr/tmp/dc$$d rm -f /usr/tmp/dc$$e /usr/tmp/dc$$d sed -e s/..// < /usr/tmp/dc$$c > /usr/tmp/dc$$f rm -f /usr/tmp/dc$$c cd $D0 > /usr/tmp/dc$$g while read a do if [ -d $D1/"$a" ] then if [ "$Sflag" != "yes" ] then echo "directory $a" fi elif [ -f $D1/"$a" ] then cmp -s $D1/"$a" $D2/"$a" if [ $? = 0 ] then if [ "$Sflag" != "yes" ] then echo "same $a" fi else echo "different $a" if [ "$Dflag" = "yes" ] then type=`file $D1/"$a"` case "$type" in *text) ;; *empty) echo $D1/`basename "$a"` is an empty file | pr -h "diff of $a in $D1 and $D2" >> /usr/tmp/dc$$g continue ;; *) echo $D1/`basename "$a"` is an object file | pr -h "diff of $a in $D1 and $D2" >> /usr/tmp/dc$$g continue ;; esac type=`file $D2/"$a"` case "$type" in *text) ;; *empty) echo $D2/`basename "$a"` is an empty file | pr -h "diff of $a in $D1 and $D2" >> /usr/tmp/dc$$g continue ;; *) echo $D2/`basename "$a"` is an object file | pr -h "diff of $a in $D1 and $D2" >> /usr/tmp/dc$$g continue ;; esac diff $D1/"$a" $D2/"$a" | pr -h "diff of $a in $D1 and $D2" >> /usr/tmp/dc$$g fi fi elif [ "$Sflag" != "yes" ] then echo "special $a" fi done < /usr/tmp/dc$$f | pr -r -h "Comparison of $D1 $D2" if [ "$Dflag" = "yes" ] then cat /usr/tmp/dc$$g fi rm -f /usr/tmp/dc$$* pty file | pr -h "diff of $a in $D1 and $D2" >> /usrbin/dirname100755 3 3 1202 4114367705 7404 37777777777 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "@(#)dirname.sh 1.2 87/08/25 " if [ $# -gt 1 ] then echo >&2 "Usage: dirname [ path ]" exit 1 fi # First check for pathnames of form //*non-slash*/* in which case the # dirname is /. # Otherwise, remove the last component in the pathname and slashes # that come before it. # If nothing is left, dirname is "." exec /bin/expr \ "${1:-.}/" : '\(/\)/*[^/]*//*$' \| \ "${1:-.}/" : '\(.*[^/]\)//*[^/][^/]*//*$' \| \ . above does not evidence any # actual or intended publication of such source code. #ident "@(#)dirname.sh 1.2 87/08/25 " if [ $# -gt 1 ] then echo >&2 "Usage: dirname [ path ]" exit 1 fi # First check for pathnames of form //*non-slash*/* in which case the # dirname is /. # Otherwise, remove the last component in the pathname and slashes # that come before it. # If nothing ibin/basename100755 3 3 1161 4114425627 7542 37777777777 : # @(#) basename.sh 1.4 87/08/25 if [ $# -gt 2 ] then echo >&2 "Usage: basename [ path [ suffix-pattern ] ]" exit 1 fi # If no first argument or first argument is null, make first argument # "." Add beginning slash, then remove trailing slashes, then remove # everything up through last slash, then remove suffix pattern if # second argument is present. # If nothing is left, first argument must be of form //*, in which # case the basename is /. exec /bin/expr \ "/${1:-.}" : '\(.*[^/]\)/*$' : '.*/\(..*\)' : "\\(.*\\)$2\$" \| \ "/${1:-.}" : '\(.*[^/]\)/*$' : '.*/\(..*\)' \| \ "/${1:-.}" : '.*/\(..*\)' exit 1 fi # If no first argument or first argument is null, make first argument # "." Add beginning slash, then remove trailing slashes, then remove # everything up through last slash, then remove suffix pattern if # second argument is present. # If nothing is left, first argument must be of form //*, in which # case the basename is /. exec /bin/expr \ "/${1:-.}" : '\(.*[^/]\)/*$' : '.*/\(bin/false100755 3 3 50 4113077776 7024 37777777777 : # @(#)false.sh 1.4 87/08/21 exit 255 }" : '\(.*[^/]\)/*$' : '.*/\(..*\)' \| \ "/${1:-.}" : '.*/\(..*\)' exit 1 fi # If no first argument or first argument is null, make first argument # "." Add beginning slash, then remove trailing slashes, then remove # everything up through last slash, then remove suffix pattern if # second argument is present. # If nothing is left, first argument must be of form //*, in which # case the basename is /. exec /bin/expr \ "/${1:-.}" : '\(.*[^/]\)/*$' : '.*/\(bin/true100755 3 3 403 4113100100 6673 37777777777 : exit 0 # # @(#)true.sh 1.2 87/08/21 # # Copyright (C) Microsoft Corporation, 1983 # # This Module contains Proprietary Information of Microsoft # Corporation and AT&T, and should be treated as Confidential. # #*** true -- do nothing, successfully # # true emove # everything up through last slash, then remove suffix pattern if # second argument is present. # If nothing is left, first argument must be of form //*, in which # case the basename is /. exec /bin/expr \ "/${1:-.}" : '\(.*[^/]\)/*$' : '.*/\(bin/whodo100755 3 3 1626 4134736516 7121 37777777777 : # @(#) whodo.sh 1.2 87/10/14 # @(#) whodo.sh 1.1 86/10/14 # # Copyright (C) Microsoft Corporation, 1985 # # This Module contains Proprietary Information of Microsoft # Corporation and AT&T, and should be treated as Confidential. # : # @(#)whodo.sh 1.4 #*** /etc/whodo -- combines info from who(1) and ps(1) # PATH=/bin:/usr/bin trap "rm -f /tmp/$$*" 1 2 3 ps -a>/tmp/$$b& date who -s >/tmp/$$a ed - /tmp/$$a<<\! g/^/s/^\(........\) *\(........\) *.......\(.*\)/\2 \1 \3/ g/console/s//co / g/tty\([^ ]*\)/s//\1 / w ! uname wait if [ -s /tmp/$$b ] then ed - /tmp/$$b<<\! >/dev/null 2>/dev/null 1d g//d g/^/s/^\(......\) *\([^ ][^ ]*\)\(.*\)/\2- \1 \3/ g/-sh$/s/-/+/ g/-rsh$/s/-/*/ w ! fi sort /tmp/$$a /tmp/$$b >/tmp/$$c ed - /tmp/$$c<<\! g/^..+/s/.....//\ s/\([0-9]\) *.*/\1/\ .-1,.j g/^..\*/s/.....//\ s/\([0-9]\) *.*/\1/\ .-1s/ /r/\ j g/^\([^ ][^ ]*\)- /s// \1/ 1,$p Q ! rm -f /tmp/$$* tmp/$$a<<\! g/^/s/^\(........\) *\(........\) *.......\(.*\)/\2 \1 \3/ g/console/s//co / g/tty\([^ ]*\bin/look100755 3 3 34640 4213031730 6747 37777777777 L! / $ @.text/ .data@@ /@.bss@@$ .comment9ÐET@RU RP P.jÐU }~aE MX=dt7=ft;=tE B@=@E  @@yME 9E|E =-tY9E| 9E~&5@5@h@h@j-YE UE Mu&@ @*E BtE @E Mh{@5@"E}u&5@5@h}@h@pjb-YuuIE}~ 3PB-YøU5@5@h@h@j-YUWEh@u_Ejju @ u YEEEEjuu  E } u %Y E P@Et uh@u tMh@h@h@h@-|"=w|$@E9E~EQjuu u u Y;E|EE#h@u uh@h@5h@h@|-|V=wO|K$(@h@h@h@h@?=tu)h@h@Eh@u huE}UWV}u u 3u}GF;tuu;}øUWE} uVY EP@u3}à t E E ׈ËE US+=@t@tE ӊ@E EEE t:@u E ]Ã= @t@uUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ PT% E}|EE}øUWVS3@%=u-=@t$@9@u,=@u#@Duh@"Y 3@@Uh@5"Y=u@E+Å~VjuSEtE+Ë)@@=@}3@@@+@;} h@#Y}t=@@ @Dt"h@!Y=u]u}ËE@UWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P" +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P" ECG t8WbYG t g GGuu G PE" E9Eus3lUWV}uW YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E0@r5E8@rD@E@@AE`@s6EE]@)EEh@r݋EE 9P܃}t؁@ @v @Ep@t@r05}fEf fEmE]mE܉E@0Ee x@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEH@MU]vEu}fEf fEm]mE܉EFUR0EMm]EP@E5X@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI  E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}p@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u @ @GW @*h!YGt@O G W@GGVYtG uO @u}G $@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUp@EEPhTu } Ep@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @x@@t@@x@@E@3؋=t@E&;5x@@E@E=w=@jYx@@;t?3Ee ƹ3tL3+‰EEE2x@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@x@0E+E-x@@;tx@x@x@@~Љt@;5t@vt@|@t@ 9=@u t@@G(=t@95@u=@7tލ;r;l%;UWV}5t@%x@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ|@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐp@ÐT$@@(#)look 5.3b of Jan 27, 1988<@A@k@zQQlook[ -d ] [ -f ] [ -ttabchar ] word [ file ]/usr/dict/wordsr%s: can't open %s usage: %s %s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF    ! 1 1 1 1 1 1 1 1 1 HP HbK P D ~-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@,$@,$@@4$@%@3.1bS03.1bS0etc/default/passwd100644 0 2 45 4005735527 10652 37777777777 MINWEEKS=0 MAXWEEKS=999 PASSLENGTH=0 ٗ]@dJ@\dJ@dJ@ *@]@]@y*@ *@R@JR@E@ 167471292S@NS@m*@etc/default/su100644 0 2 54 4115401776 7776 37777777777 #SULOG=/usr/adm/sulog #CONSOLE=/dev/console ٗ]@dJ@\dJ@dJ@ *@]@]@y*@ *@R@JR@E@ 167471292S@NS@m*@etc/newuser/.cshrc100644 0 2 72 3756714656 10611 37777777777 if $?prompt set history=16 ignoreeof prompt="\!% " endif ٗ]@dJ@\dJ@dJ@ *@]@]@y*@ *@R@JR@E@ 167471292S@NS@m*@etc/newuser/.login100644 0 2 174 3762621243 10624 37777777777 setenv EXINIT 'set shell=/bin/csh' setenv TERMINFO /usr/lib/terminfo set path = (/bin /usr/bin .) stty erase '^h' kill '^u' ٗ]@dJ@\dJ@dJ@ *@]@]@y*@ *@R@JR@E@ 167471292S@NS@m*@etc/newuser/.logout100644 0 2 6 3756714661 10771 37777777777 clear EXINIT 'set shell=/bin/csh' setenv TERMINFO /usr/lib/terminfo set path = (/bin /usr/bin .) stty erase '^h' kill '^u' ٗ]@dJ@\dJ@dJ@ *@]@]@y*@ *@R@JR@E@ 167471292S@NS@m*@etc/newuser/.profile100644 0 2 32 3756714667 11145 37777777777 stty -parity erase \ ff0 bin/csh' setenv TERMINFO /usr/lib/terminfo set path = (/bin /usr/bin .) stty erase '^h' kill '^u' ٗ]@dJ@\dJ@dJ@ *@]@]@y*@ *@R@JR@E@ 167471292S@NS@m*@etc/init.d/acct100744 0 2 1045 4235420512 10054 37777777777 : # @(#)acct 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. state=$1 set `who -r` case $state in 'start') # don't start if last run state was 2 (multiuser) or 3 (multiuser with RFS) if [ $9 != 2 -a $9 != 3 ] then echo "Starting process accounting" /usr/lib/acct/startup fi ;; 'stop') echo "Stopping process accounting" /usr/lib/acct/shutacct ;; esac Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. state=$1 set `who -r` case $state in 'start') # don't start if last run state was 2 (multiuser) or 3 (multiuser with RFS) if [ $9 != 2 -a $9 != 3 ] then echo "Starting process accounting" /usr/lib/acct/startup fi ;; 'stop') echo "Stopping process accountietc/init.d/MOUNTFSYS100744 0 2 330 4220305321 10517 37777777777 : # @(#)MOUNTFSYS 5.3b of Jan 6, 1988 : # Mount file systems # don't start if last run state was 2 (multiuser) or 3 (multiuser with RFS) set `who -r` if [ $9 != 2 -a $9 != 3 ] then cd / /etc/mountall /etc/fstab fi lication of such source code. state=$1 set `who -r` case $state in 'start') # don't start if last run state was 2 (multiuser) or 3 (multiuser with RFS) if [ $9 != 2 -a $9 != 3 ] then echo "Starting process accounting" /usr/lib/acct/startup fi ;; 'stop') echo "Stopping process accountietc/init.d/cron100744 0 2 1344 4220305322 10100 37777777777 : # @(#)cron 5.3b of Jan 6, 1988 : # cron control case $1 in 'start') set `who -r` # don't start if last run state was 2 (multiuser) or 3 (multiuser with RFS) if [ $9 != 2 -a $9 != 3 ] then echo "Starting cron." # terminate any running cron in case they want singleuser via # 'init s', instead of 'singleuser' pid=`ps -e | sed -n '/ cron$/s/^ *\([0-9][0-9]*\).*/\1/p'` if [ "$pid" != "" ] then kill $pid fi rm -f /usr/lib/cron/FIFO if [ -x /usr/bin/cron ] then /usr/bin/cron elif [ -x /etc/cron ] then /etc/cron fi fi ;; 'stop') pid=`ps -e | sed -n '/ cron$/s/^ *\([0-9][0-9]*\).*/\1/p'` if [ "$pid" != "" ] then echo "Stopping cron." kill $pid fi ;; *) echo "usage: $0 {start|stop}" ;; esac e any running cron in case they want singleuser via # 'init s', instead of 'singleuser' pid=`ps -e | sed -n '/ cron$/s/^ *\([0-9][0-9]*\).*/\1/p'` if [ "$pid" != "" ] then kill $pid fi rm -f /usr/lib/cron/FIFO if [ -x /usr/bin/cron ] then /usr/bin/cron elif [ -xetc/init.d/sys.start100744 0 2 2372 4222504164 11122 37777777777 : # @(#)sys.start 5.3b of Mar 9, 1988 : # This file contains system setup requirements for the system. # if current run state is not 2 or 3, exit. If current run state IS # 2 or 3, and the previous run state was also 2 or 3, exit since this # file was already executed in the previous state set `who -r` case "$7" { 2|3) case "$9" { 2|3) exit ;; } ;; *) exit ;; } # # set kernel idea of node name from systemid file if node name not # already set. Primarily for benefit of RFS. uname -n > /tmp/.__N ; read node rest < /tmp/.__N ; rm -f /tmp/.__N if [ "$node" = '(empty)' -a -r /etc/systemid -a -s /etc/systemid ] then read node rest < /etc/systemid uname -S "$node" fi unset node rest # # initialize modem lines if needed (do early so done by time gettys start) /usr/bin/pconfig -i > /dev/null 2>&1 & # # expreserve tidies up vi editing sessions after a crash. # /usr/lib/expreserve anyarg # # clear miscellaneous lock files # rm -f /usr/spool/uucp/LCK..* /usr/spool/locks/* /usr/spool/lpd*/lock # if [ -x /etc/net/startnet ] then echo "WorkNet started." rm -f /etc/net/.daemonpid > /dev/null 2>&1 /etc/net/startnet > /dev/null 2>&1 fi if [ -x /usr/bin/strerr ] then /usr/bin/strerr > /dev/null 2>&1 < /dev/null echo "System error logging started." fi me gettys start) /usr/bin/pconfig -i > /dev/null 2>&1 & # # expreserve tidies up vi editing sessions after a crash. # /usr/lib/expreserve anyarg # # clear miscellaneous lock files # rm -f /usr/spool/uucp/LCK..* /usr/spool/locks/* /usr/spool/lpd*/lock # if [ -x /etc/init.d/sys.stop100744 0 2 717 4220305323 10725 37777777777 : # @(#)sys.stop 5.3b of Jan 14, 1988 : # # only if last run state was S (singleuser), 2 (multiuser) # or 3 (multiuser with RFS). S in case a shutdown is down after an 'init s' set `who -r` if [ "$9" != 2 -a "$9" != 3 -a "$9" != S ] then exit fi if [ -x /etc/errstop ] then /etc/errstop echo "Error logging stopped." fi if [ -x /etc/net/stopnet ] then /etc/net/stopnet > /dev/null 2>&1 rm -f /etc/net/.daemonpid > /dev/null 2>&1 echo "WorkNet stopped." fi sr/spool/locks/* /usr/spool/lpd*/lock # if [ -x /etc/init.d/lp100744 0 2 1272 4220305323 7553 37777777777 : # @(#)lp 5.3b of Feb 25, 1988 # start and stop the lp scheduler # also any transparent printer daemons that might be running case "$1" { start) if [ -x /usr/lib/lpsched ] then # if current run state is not 2 or 3, exit. If current run state # IS 2 or 3, and the previous run state was also 2 or 3, exit # since this file was already executed in the previous state set `who -r` case "$7" { 2|3) case "$9" { 2|3) exit ;; } ;; *) exit ;; } rm -f /usr/spool/lp/SCHEDLOCK /usr/lib/lpsched echo "Line printer scheduler started." fi ;; stop) if [ -x /usr/lib/lpshut ] then /usr/lib/lpshut fi if [ -x /usr/lib/PCF/xpdkill ] then /usr/lib/PCF/xpdkill fi ;; } current run state is not 2 or 3, exit. If current run state # IS 2 or 3, and the previous run state was also 2 or 3, exit # since this file was already executed in the previous state set `who -r` case "$7" { 2|3) case "$9" { 2|3) exit ;; } ;; *) exit ;; } rm -f /usr/spool/lp/SCHEDLOCK /usr/lib/lpetc/init.d/README100444 0 2 3570 4220305324 10076 37777777777 : # @(#)README 5.3b of Mar 9, 1988 /etc/init.d contains initialization and termination scripts for changing init states. These scripts are linked when appropriate to files in the rc?.d directories. File names in rc?.d directories are of the form [SKR]nn where 'S' means start this job, 'K' means kill this job, 'R' means this file is only run when in the 'restart' state after power is restored with a UPS (Uninterruptible Power Supply) installed, and 'nn' is the relative sequence number for killing or starting the job. When entering a state (init 2,3,5,etc.) the rc[0-6] script executes those scripts in /etc/rc[0-6].d that are prefixed with 'K' followed by those scripts prefixed with 'S'. Scripts starting with 'K' get the argument 'stop', with 'S' get the argument 'start', and with 'R' get the argument 'restart'. EXAMPLE: When changing to init state 2 (default multi-user mode), /etc/rc2 is initiated by the init process. The following steps are performed by /etc/rc2. 1. In the directory /etc/rc2.are files used to stop processes that should not be running in state 2. The filenames are prefixed with 'K'. Each 'K' file in the directory is executed (by /etc/rc2) in alpha-numeric order when the system enters init state 2. (see example under next item). 2. Also in the rc2.d directory are files used to start processes that should be running in state 2. As in the step above, each 'S' file is executed. Example: The file /etc/init.d/cron is a script that will initiate cron when given the argument 'start', and will terminate cron if given the argumant 'stop'. It is linked to /etc/rc2.d/S75cron, and to /etc/rc5.d/K75cron. It is executed by '/etc/rc2.d/S75cron start' when init state 2 is entered and by '/etc/rc5.d/S75cron stop' when shutting the system down. INSTALL scripts should use the init.d directory for related executables. 2. As in the step above, each 'S' file is executed. Example: The file /etc/init.d/cron is a script that will initiate cron whenetc/rc2.d/S60lp100744 0 2 1272 4220305323 12144 1etc/init.d/lp37777777777 etc/rc2.d/S01MOUNTFSYS100744 0 2 330 4220305321 14077 1etc/init.d/MOUNTFSYS37777777777 etc/rc2.d/S20sys.start100744 0 2 2372 4222504164 15046 1etc/init.d/sys.start37777777777 etc/rc2.d/S75cron100744 0 2 1344 4220305322 13025 1etc/init.d/cron37777777777 etc/rc2.d/S02.printers100744 0 2 224 4247320045 11057 37777777777 : # Rc file to set modes for printers and start up transparent # printer daemons. # if [ -x /usr/lib/PCF/xpdkill ] then /usr/lib/PCF/xpdkill fi # ron. It is executed by '/etc/rc2.d/S75cron start' when init state 2 is entered and by '/etc/rc5.d/S75cron stop' when shutting the system down. INSTALL scripts should use the init.d directory for related executables. 2. As in the step above, each 'S' file is executed. Example: The file /etc/init.d/cron is a script that will initiate cron whenetc/rc1.d/K75cron100744 0 2 1344 4220305322 13014 1etc/init.d/cron37777777777 etc/rc1.d/K20lp100744 0 2 1272 4220305323 12127 1etc/init.d/lp37777777777 etc/rc1.d/K20sys.stop100744 0 2 717 4220305323 14470 1etc/init.d/sys.stop37777777777 etc/rc5.d/K75cron100744 0 2 1344 4220305322 13020 1etc/init.d/cron37777777777 etc/rc5.d/K20lp100744 0 2 1272 4220305323 12133 1etc/init.d/lp37777777777 etc/rc5.d/K20sys.stop100744 0 2 717 4220305323 14474 1etc/init.d/sys.stop37777777777 etc/bupsched100755 0 2 1470 4201127306 7554 37777777777 #ident "@(#)bupsched 1.1 87/11/05 " # # Format of lines: #time day month list # # time - time(s) of day (24hr or am/pm) # day - day(s) of week (mon, tue, etc) # day(s) of month (1, 2, ... first, last) # month - month(s) of the year (jan, feb, ...) # list - list of filesystems to be backed up # or command to be executed ( !command line ) # # Example: #4:00pm-18:00 mon * /usr # If ckbupscd is invoked between 4:00 and 6:00 in the # evening on mondays during any month of the year, # display /usr as the name of a file system that needs # to be backed up. # #=================================================================== # # Default backup schedule calls for daily backups of /usr # and monthly backups of root (/) on the 15th of each month. # 0:00-8:00,16:00-23:59 mon,tue,wed,thu,fri * /usr 4pm-11pm 15 * / to be executed ( !command line ) # # Example: #4:00pm-18:00 mon * /usr # If ckbupscd is invoked between 4:00 and 6:00 in the # evening on mondays during any month of the year, # display /usr as the naetc/badblock100700 0 2 61004 4201127251 7524 37777777777 L" ILD& @.textI .data @ @LJ@.bss!@!@D&.commentaÐET!@RU RP PIjÐUW 'h@uh@h@u# jGIYYZ8@f^8@#h@uh@h@8# j IYYf=@t;hT"@ Y @%=u hT2@u hT2@YjHY@f=@tK@Ph@mT>@Ph@X=@E 4vYP YG;}|h~j5@h @}h @/ Yh @ Y- @%=u4 @ 4 @YG9 @uf=@t7n0@=t) @%=u hT8@\Y hT8@pYuYf=@t uYjvYjhT0@hSuCt.h@8Y @%=u jOGYjEGYj%Yf=@u h/@Yj GY}ËE=?=itC=n=p=q=u=vf@f@f@f=@t#h@uh@h@ jFYY@@@=0%@=1@=2f@f@f@f=@t#h@uh@h@ jEYY5@YfT>@=0|h+@h@T>@tT>@ ~"T>@PhF@h@ jwEYT>@= | @2T>@=|@1f@h@u u E=f=@u f=@tE+@t&Uf=@tE+@=}4@@ @J@JH@@JHhj@j5@ Eh|@j5@ Eh@j5@ Eh@j5@ Eh@hhT0@uuuu: }uh9@h@5 jDYh@hhT.@uuuuk: }uh9@h@ jCYn0@=tIh@hhT"@uuuu: }uh9@h@ jkCY T"@n0@=tIh@hhT2@uuuu9 }uh9@h@8 j CYT2@fX2@`0@=t#h@uh@h@ jBYYn0@=u:f=@th@nYjBYf=@thO@QYjyBYhX>@>Y @%--="$@U f=@teEE T"@ @EE9T"@t 9E|Ѹ9E|#hB@uh@h@ jAYYf=@Z @%=u En0@=EqkET2@tUkET2@@tNhT2@kET2@%?PEhT2@uWE;@~E@ u~YEkE9T2@t9Ep9E|#hc@uh@h@ j@YYEE T"@ @EE9T"@t 9E|Ѹ9E|#h@uh@h@ jc@YY}uEE @ËEHkT2@e0@d0@‹UJkV2@ e0@‹UJkW2@‹U @EHkX2@;@~EHkX2@@EEHkfT2@fJ9EY7U kET2@UkEX2@Ee0@EE}t@e0@Puh@h@lh@uh@h@R j$?YYMkET2@u@kUX2@M+ʉ X&@@kUX2@Mʉ T&@UPE1ET&@9E|EЋT&@X&@9E}E@9E|3UPEEt>@=3u9 @ueT>@X.@9U~uh@h@W j)>Yuh @T>@T.@EEEn0@=thT2@ujEuh@@@U @t>@=3uG9 @u:hT2@E@PE@@U @uh$@19@r#h0@uh@h@^ j0=YY@ @h@4YUEVEUЋEMA9u6EEEUB U EEUи9uMEEUи9uUEe0@d0@‹UR e0@‹UR‰EE EE9EuÃEE9u3UPE EE9EuÃEE9u3UPEDkET2@t1kET2@@u!kET2@%?kUX2@9EthEkE9T2@t 9E|EKkET8@t8kET8@@u(kET8@%?kUX8@9EuEkE9T8@t 9E|3UWhF@YKE4hY@Gu' @}h@j 2@ @GUи9u @}h@j y2}á@@ U @%=d0@e0@‰EE}fEe0@Ed0@EE}}ˆEe0@EE}ˆEEOkET2@U;u9kEV2@U;u&kEW2@U;ukEX2@.@EkEfT2@fuEE E %?9E}m E %?9EuE @t@.@Ћ륃m E uE @UЋU Ef=@uu@Ye0@EE}e0@‰E8@)Ee0@8@k4@f8@fX8@4@HkT8@9E~:4@4@kUT8@k4@ǀT8@k4@fǀX8@á4@HkT8@9Eu4@Hkf8@fX8@e0@)8@롡8@)EE_kET2@%?9EuHk4@kUT2@T8@k4@kUfX2@fX8@hT2@ucEEkE9T2@9E|uYEt)k4@U+UfX8@k4@U@.@9@|1n0@=t#h_@uh@h@X j*7YYhT2@.@@PEk4@U+.@fX8@k4@UT8@f=@tuhT2@uQP} h @u|4@UEEd0@e0@‰EE}k<@fT8@e0@Ed0@EE}}k<@V8@e0@EE}k<@W8@f=@EhkET2@k<@T8@;uHkEV2@k<@V8@;u+kEW2@k<@W8@;ukEX2@EEkEfT2@fu9Eu%@@@EE@@@E9@|#hq@uh@h@C j5YY.@9@|#h@uh@h@ j4YY.@EEh @uo}tf=@tuu{<@<@kfUfX8@UEEErET&@EEh @u"uKuDYu>E+E|E+EE+E؉EE+E|E+EE+E9E}EEEEX&@9E{E@9EaE+E|E+EE+E=}E3Uh@h@ h@h@ h@h@ jg3YUuh@h@s jE3YUh(@ YEEkUDPEkU%?PhQ@ EkUt,uEkU%?P_EPhc@ EkU@tuuPh@f EkEUи9t9EKh@6 YUPW3h@" YEffu h@ Ywh@YjhT"@kURt E@E@uEkDPEkDPEkDPEkPh@GEkf ft {}UPf=@t6f=@u,h@PYh2@EYhm@:Yh@/Yf=@u1h@Y @} h@ Y@@Ejju, }#h@uh@h@ j0YYn0@=t@X.@9U~ T>@Puh~@ j:-YT>@ET.@EÐU}t3P,YÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐ÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UPWV9@ueE9@}#E @ =-u E Au u}h@E @4u @΋E @ @=@:tWu]=@tOLjEE E 0!YPE 0j* h@q!YPh@jk* jEPj[* E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0 YPE 0j) h@ YPh@j) jEPjx) @?GE @@ @@8E @ @@@u@@@UPWE E@u@t* @h@uu @ t }ËU9Er=@u>E"@P\$Y@E!@E!@E EURu+ËE9"@sˣ"@P5@&@UWVS!@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW!@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu!@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u !@|?=@t6SW5@& SVW% S5@V% ]u}ÊEGFUKuUWVS}u ]!@E9E|R=@tIuW5@% uSWu% uVSh% u5@VV% ]u}ÊEGCFUMuӐUPWEEE@ uE@ t(EH uuu K E@ t }ËUWV}uWYG uG tO G Dt1@"u}F @tVY;5!@rGGG tG !@+GPwG Pe | GG듸9tO O G tg aUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gujjt$ 9rã!@ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  !@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}"@E"@E<@s3UtE]"@ED@EL@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁"@R"@vR"@E@t"@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+"@u"@1}tCF0N<9"@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G !@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W !@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}!@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3Z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=!@r}UWV}tlG t6G t3WVYG PY}!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG !@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G !@+G?}3W !@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G !@+G?}3W !@+W;}WY3UWV}G G u}}&u>@B@GW !@*h!YGt@O G W!@GGVYtG uO @u}G F@WR!@UWV}G !@+G}G !@Wu};7}7𐐐3ÐU!@EEPhTu } E!@3ø6ZÐFÐU WVSE9ET=!@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@F@F@!@F@8H@3.1bS03.1bS0!@F@8H@3.1bS03.1betc/ckbupscd100755 0 2 50614 4201127311 7575 37777777777 Lrx!  C @@.text C .data@@ C@.bss|@|@@.comment|QÐET|@RU RP PBjÐUWE=mu @h3@u uo E=uh@h| @EPYEPY @@u\@hC@h5@ 7@hj@hE@h @ }hwtNh wt:h7t'=@thx@Y@w Yu5@$8YE 3wUW@G= t= t렀@@=#u{=@=A|=Z@ G?t= t= t = u= t = uGh@D Y G= t= t=@=A|=Z@ G?t= t= t = u= t = uGh@ YG= t= t=@=A|=Z@ G?t= t= t = u= t = uG.h@6 Y5@h@4.3}G= t= t=@@UPWVS}u }f@f@@wE;rhh@h @ }\u&VY؃tO\GGӈ u-@% u@]u}ËGӈVxY؃w3UPWVS}=&u,EP =&tEx Eu܃}t=!GWY]u}=\`G=b=c=f=nt<=rtb=t | @}gh| @j r58h| @j a5' | @}h| @j H5 @  @G | @| @  @⡀ @  @ | @}h| @j 4빡 @  @3G | @}h| @j4눡 @ @u=0|=73E | @| @ @׊ G. | @}h| @GPU4 @ @׊ G?[t' | @}h| @j 4 @ @ h| @3Y-0GE=0|=7 9E| | @}h| @P3g @ @ֈSUWV}E @p< @p 2 @k@< @B @p=w |$@}|/E9E~hO@Y;u|;uu};ut?tmEPEPWU tX=-uGEPEPWU u6EE?tG=,t h*@YE9Eth<@Y3zE3U WVS}u ]=*u @PGNj]u}=0|=9 E6=a|=z E3kE -0EG=0| =9~ڋEH}E$@UEU;u2EEE=a|E=zE8uȋE}EE<$@uE<$@uh^@HY3UWVS}u ]=*u @PG'=0|=9 E`=a|,=z"=lu E@Eh8@Y3]u}kE -0EG=0| =9~ڋE9Eihv@SYYE;u EG=a|=zE8uӀ?t&=,t=-th@Y3N @PX@=-G=0|=9 EQh@Y3+E~?=,h@qY3E@U}EU;u8EEE=a|E=zE8uȋE}EE<@uE<@uh@Y39=(G=0|=9 E=lu16dYG=-t =+uTG=-uh@lY33E=0|=9 Eh@5YG=)th @Y3p9| 9~ h)@YFkE -0EG=0| =9~6QYUJk‰{kE -0EG=0| =9~ڃ}t+EEh~PW =uh~Ph @v 3WW YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E @E @E @r5E$ @r0 @E, @AEL @s6EE]@)EET @r݋EE 9P܃}t؁@ @v @E\ @t@r05}fEf fEmE]mE܉E@0Ee d @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE4 @MU]vEu}fEf fEm]mE܉EFUR0EMm]E< @E5D @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}|@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UWl @;=@r3}ÃG uUWl @ WY;=@r}UWV}tlG t6G t3WVYG PY}\@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h!YGt@O G W@GGVYtG uO @u}G $"@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU\@EEPhTu } E\@3ø6ÐÐU WVSE9ET=p@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@4"@4"@@<"@#@3.1bS03.1bS0etc/cpset100755 0 2 57300 4201132211 7107 37777777777 L! \Ep,@.text\E .data,@,@,F@.bss@@p.comment^ÐET@RU RP PEjÐUE t#@9E} E P=-uBh`@E pu `#@ E t#@P@PEHEPu u5t#@hc@h@ ULDžDžDž] =d~Q 6 E-=$P@E p YEu&E p5t#@h}@h@JjCYE؋PE pYEu&E p5t#@h@h@j{CYE܋PjPE p V E p n8YU +J ;tGE p 5t#@h@h@jCYE 0h@h@y jBYE p 8Y@P>YT#@E p5T#@75T#@ YE p Yj/E plL#@uE PL#@L#@EP5T#@m= @=t8= t =E p5t#@h@h@jBYj/5T#@L#@=L#@t'L#@9T#@u T#@@L#@L#@T#@L#@T#@ @EP5T#@=5T#@5t#@h @h@ jAY5@5t#@h+@h@jZAYE%=t Eu[j/5T#@L#@=L#@t'T#@9L#@u L#@D@L#@L#@LT#@L#@T#@F@6E%=@t&5T#@5t#@hI@h@3j@Y}5T#@5Y@P=<Yp#@5T#@5p#@r5hf@5p#@w5p#@iYjE p?Eи9Eu&E p5t#@hv@h@j@Yh5p#@y?E̸9Eu|h5X#@Y?E=u(5X#@5t#@h@h@5j?Y7d#@/uԍPu^? =uh@Yjr?YhPuI4 Euu:Yuz:Y=\#@u@DžDžDž5=d~)5p#@=uh#@5p#@ =ul#@9~!5p#@r=uh#@=h#@t5X#@5t#@h@h@=l#@t5X#@5t#@h@h@=d#@tj$>Y=L#@u.E pYL#@=L#@uE PL#@L#@5L#@ 3Y5T#@2YЍRRq9YP#@5T#@5P#@2h@5P#@5L#@5P#@=`#@65L#@2Y5T#@z2YЍRR8Y5T#@(2h!@-5L#@;Y=u39@t&5t#@h&@h@Cj<Y5P#@ =ud9@tW5T#@5t#@hA@h@5p#@Y=u5p#@5t#@h@h@j:<Y5P#@vY=ud9@tW5P#@5t#@h]@h@~5p#@8Y=u5p#@5t#@h@h@Mj;Y5P#@5p#@ =uW5T#@5t#@hw@h@ 5p#@Y=u5p#@5t#@h@h@jQ;Y5p#@Y=u&5p#@5t#@h@h@j;Yj;YU5t#@5t#@h@h@oj:YU5p#@Y=u5p#@5t#@h@h@1j:YU(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V(Y}u +gEEvUWVh @ @9@s @<| @uu"YtVuj - jhv @j, WI"YPWj, jhy @j, u}ÐUWVS}u ]GF:u Nj]u}M}3UW}WH$YjjG PH( GGg G tg }ÐUPWEEE@ uE@ t(EH uuu S E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG Pm' +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P' ECG t8W"YG t g GGuu G P& E9Eus3lUWV}uW-%YG uG tO G Dt1@"u}F @tV."Y;5@rGGG tG @+GPwG PI | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUWVS} ]Ft ;uuCuދ+E]u}UWVS} ]Ft ;utCuދ+E]u}U WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}tUWVS}3&uYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!&&ÐUWVS}] 3;uG8uƋ]u}Ð%3ÐUWVS}u ߋG8uOGF҈uË]u}ø %3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}"@E"@E@s3UtE]"@E@E@EP@r5EX@rd@E`@AE@s6EE]@)EE@r݋EE 9P܃}t؁"@J#@vJ#@E@t #@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+"@u"@1}tCF0N<9"@]Ћuԋ}ËEE0]@EEsEE 9P EEEEh@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ep@E5x@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&ux$@(@GW @*h!YGt@O G W@GGVYtG uO @u}G ,@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裐@3ø6VÐBÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øfÐT$@Ru @+D$ø1T$@3øÐÐ@ÐT$0@@(#)cpset 5.3b of Jan 27, 1988"]-o%s: Shouldn't be here... %s: unknown group-id '%s' %s: unknown user-id '%s' %s: badly formed mode '%s' %s: incorrect number of arguments %s: Can't access '%s' /./%s: Directory '%s' not found %s: Unexpected error %d /./%s: '%s' is not a directory /INStmpXXXXXXXX%s: couldn't open '%s' %s: couldn't create '%s' cpset: Write failed%s: warning: couldn't set modes on '%s' %s: warning: couldn't change user/group-id on '%s' //OLD/OLD%s: Could not unlink '%s' %s: Could not link in '%s' %s: Couldn't unlink '%s' %s: Couldn't link in '%s' %s: Couldn't unlink tmp '%s' %s: Usage: %s [-o] filename destination [mode [owner [group]]] %s: Couldn't unlink temporary file '%s' ROOT//usr/src/destinations/usr/src/destinations/usr/src/destinationsr/%s: error reading '%s', line > 256 characters--ignoring destination file %s: bad entry in '%s' -- ignoring destination file %s: warning: '%s' exists %s: bad entry in '%s' -- ignoring destination file //etc/grouprr/etc/passwdrrUnknown error: @ @ @ @ @ @ @4 @F @X @h @{ @ @ @ @ @ @ @ @ @ @@*@;@O@c@t@@@@@@@@@@+@>@Z@s@@@@@@@@.@7@@@I@a@x@@@@@@@@@@"@0@H@f@|@@@@@@@@@@@#@6@?@H@c@@@@@@A@h@q@z@@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@@@@ @@@(@2@K@U@e@s@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF #,,#,8,,,,,5#",""#,e#u#u#u#u#u#u#u#u#u#,,,,,,,,,,,%,*,,,,,,,,,,,,,,,,#%,,,,,,,,,,=,#%'*##,,#,, %,,,a,,$,,#%-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@,@,@@,@ .@3.1bS03.1bS0@,@etc/clri100700 0 2 31350 4201127315 6716 37777777777 L ! P(  @.textP( .data @ @ )@.bss@@.comment2ÐET@RU RP P(jÐUWV9E}hD @Yj'YjE pN'}E phd @Yj'YjhVA# |hh,@V =tE pht @jV'Y ~9$@u9(@t 9(@u ,@E ph @j'Y,@@30@E 4Yu"E 4h @z4@E 4YE}uE 4h @C4@`EH350@@,@EjuV" 5,@h4@V ;,@tE 4h @4@G;}0=4@t 54@&YE 4YEPh @EH350@@,@EjuVj! 5,@h4@VB EH350@UEE4@UE@9ErjuV! 5,@h4@V,% G;}D54@4%Yu}UW0|9~3}ËEEu吐UPWVS}E @uJG @u=+t =-u EG @u 3]u}ø0+Ëk 0+G @uރ}t뾋븐UPWE E@u@t* @h@uu @ t }ËUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoYh~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E(@E0@Ex@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@*@v*@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u8@@!@GW @*h!YGt@O G W@GGVYtG uO @u}G H%@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裸@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$$ @@(#)clri 5.3b of Jan 27, 1988usage: clri filsys inumber ... cannot open %s cannot read super-block of %s bad block type in %s %s: is not a number %s: is zero %s: read error clearing %u 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFnnnnnnnnn nnnnnnnnnnn0 nnnnnnnnnnnnnnnnn nnnnnnnnnn80 J 38nn,nn nnnnf nn -+ 0x0X--+ --+ --+  ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@X%@X%@@`%@&@3.1bS03.1bS0@`%@etc/getty100755 0 2 66310 4217031531 7140 37777777777 L53<" X` X@.textX .dataX@X@`XY@.bss,@,@ .commentlÐET,@RU RP P=XjÐUWVjjWjj|WEEE =-9EEEt@M@E B=c=hti=tk@%@tLEPhx@a @%@u EME E %@tEPh{@ E 0h~@jj$VMuh@h(@jVY@E E .@h@5.@EKu 5.@h@h(@ j9VYLYj YjVY8ZMtE E =-)9E}h@Yj-YjUYE UM~=E E 0y Yu.5@E 0h @ jS Y jG YM~Ch @E E 09uE 0h. @SEFEEM~ChT@E E 0uE 0hX @EFEEuYh @sYuuuWu}uP (@}h(@j L(@ (@ (@}h(@j K'(@ (@jh@(@PS }th jSuS,YjhTj0O pPY=t%~t~Ph @h(@% 'th @h(@ w(h @h(@ PPA=6=t}tj+Y}tLG% f G% f fGfG% ;f,fGf fGf fGf fGf EԈPhT(@PM tPht(@PM Dž @j?PP4 uPh @d+ j>RY7EPFw,EPFEPYu:EPh @EPYuEPh @jQYuuWh UWVSQCF=u8F;u0j uF Pr* jh @Vb* fFVvY dut:h !@h!@2Ft"jjS Sjj$VyCSGY]u}UWV}u 6W)u Ƌu}Ã>u3UWh!@5@Etuuuu uWWLGY}U$WVS}u =@jQKYjIKYjAKYh(@GYh(@FYh(@FYEPW)EPjW hWh!@WDu$5,@Wh!@ j3'YjOYh(@j Yh(@_ Yjh(@L&jh(@=&jh(@.&jhT(@PJ }tuuV ]Ћuԋ}UUjeOYUW}EEEEPh D(@PZJ E EEPh D(@P;J EPhT(@P"J } t'fEfefMfeG%f E fGfEfGfEfGfEfG fEEEEEEPhT(@PI EtPht(@PI fEfEf@fEfu}UWVSu hT(@PFI E f f@f@f`fH@ GE @;rE @ @ @ @ @ @}EE (@} h(@!Y(@(@ujMY%=ujwMY%؄uhY]u}ËE @u, (@}h(@PD(@(@ֈu}E @t`G%@WtN (@}h(@j dD(@ (@ (@}h(@j=D(@(@;}O=t=t =u.}h(@h7!@vE @ @ @ @@5%@tEG%@tEGG t tE;8O;}u3= u' (@}h(@j QC(@ (@= uE ffH' (@}h(@j C(@ (@}~<}u6E ffHfH}=A| =Z G?uU(WVS=@t.@@EEfjEPVPh,@# ,@EGPVDfgG0ufO0fOfg FEGPVfOFEqE -@jEPVPh,@# G,,@EF%@uUEH|=w |$@9Et}uD}}t97uJ"uQ@YNjËE뒃=@t7h!@h(@ G PGPGPGPh!@h(@GPGPGPGPh!@h(@}w(h$"@h(@h w,h1"@h(@S 0=@t'FPE4@h>"@h(@!9Etcu^?Y3hh!@u=EujYE9E|ԃ}uuhj!@d@EEE؀ u E= t3F]E;s(E} uY EP@E=u9Etf taEE؀ u E= u+]E} uY EP@E=u=@th!@h(@ 9Eu;E=t = tF=@tPh!@h(@ =#`,@fGfGfGfG fGfGfGfGG(G,EF%@u=#tEEEFE\uEPVI؋EH[-@9EsE܈EFt#uȀ#uG( -@EEEFPEEE>UPWVS}E @=\u0EPW؋E UE@%@u!E G%@u=\t\-@;=\uEPW^؋E UEl-@sFGE %@ut =#uF\-@]u}UWVS}G=bt/=ft0=nt=rt=tt=vu ; 7 3/ + '=0|=732Pu2OE +UBË]u}Í0ŠG=0|=7F|OUWV}E ff@f@f@EPWEhz"@uuE f&fHfHfH+h|@utE fVf h@ut E fVf Pdh@ut E fVf PAh@uwt E fVf P=@tuh"@h(@ E=#t=#t 3u}ËUPWVS3 E C;]|u3|GF= t= ttE 4O]u}=\uEPWֈFE!= t = uGF׊ GuFCt;]wUWVS}G PgYtTG t"@"G t"@G t"@SV]u}V<Y33U WV=@}EPh@duE$3t h@Yhhh@@ @}/ 9,@u"jh@@@} 3u؋}j$hp-@5@5 =$t 3p-@(jj5@{< -$l-@p-@GF$rl-@3UWV}f-@fG=$,@G-@[f5-@ftftft =uIx-@W;u:y-@W ;u+z-@W ;u{-@W ;u p-@u}]M3UWV}p-@fFft6F=t F=u j F PG PM u Ƌu}u3ULWVEMHMHMH MHMċHMȋHM̋HMЋH M=@|+jj5@ E=tE%=t 3u}ÍEPZYuBEPGYuE Pj5@ &jj5@g: jj5@S: j$EP5@c> =$t EAp-@MMHMHMH MĉHMȉHM̉HMЉHMԉH Ep-@uj5@ EUWV9@tjj5@9 3p-@GF$rl-@u}UWV9@t 5@9Y@l-@3p-@GF$ru}Uu2Y=O~3uh@n2UPWVj5P@<E|!jh-@u2 ub8Y 3u}þ-@ = t F-@;r-@Ґ& >=Ð *=3Ð=3Ð<3Ð)<ÐUWVS} 3G %=utG9Gu!?uG DuW5Y 3G +@UG u;u:1YEPuG P; E]u}W 5Y=u~GEU+Ѕҋ~Sjuu0Et E+EH؋)G?}3W +@+W;}Wv6Y}t*G @tW4Y=u ]VEg( ;Ð>r;ÐUWV} 1t?F EF F F3҉V+@=at=rt=wt3u}ÀN jjuF6 N G=+uf N WV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UPWEEE@ uE@ t(EH uuu / E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P55 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P4 ECG t8W0YG t g GGuu G P4 E9Eus3lUPE EPuh(@d UPEEPu uI UW}EEEljEEW-YEE2uu EP }ÐUWVS}u Dž-@-@ -@W=~*uDžF DžDžk -0F%@u؃u DžÉ=lt h9uF؅[uPV%@tDžl&@؃nt_=-@uVctQ[tL-@} W@ Y GG%@u -@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf-@fl9uEEP-@{EEP-@dEPWSt'=-@tu /$Fu %@td=-@u-@} W Y GG%@u -@W=u-@y%uF؃%-@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$"@EE EE-@}WyY3]u}ËGG=+t=-t =0t8EM-@} W(Y GG؃0i9E }9Eo-@} WY GGEh~PW =uh~Ph%@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}-@E-@E(@s3UtE]-@E(@E(@EX(@r5E`(@rl(@Eh(@AE(@s6EE]@)EE(@r݋EE 9P܃}t؁-@.@v.@E(@t-@r05}fEf fEmE]mE܉E@0Ee (@];r&=5|+-@u-@1}tCF0N<9-@]Ћuԋ}ËEE0]@EEsEE 9P EEEEp(@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ex(@E5(@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G +@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W +@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS},@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ðb ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W+@UW(@;=+@r3}ÃG uUW(@ WY;=+@r}UWV}tlG t6G t3WVYG PY},@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG +@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G +@+G?}3W +@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G +@+G?}3W +@+W;}WY3UWV}G G u}}&u.@ 2@GW +@*h!YGt@O G W+@GGVYtG uO @u}G (6@WR+@UWV}G +@+G}G +@Wu};7}7𐐐3ÐU,@EEPhTu } E裘,@3ø6ÐÐU WVSE9ET=,@u<,@ ,@,@ ,@,@,@,@,@,@,@E@3؋=,@E&;5,@,@E@E=w=,@j Y,@@;t?3Ee ƹ3tL3+‰EEE2,@+,@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5,@,@0E+E-,@@;t,@,@,@,@~Љ,@;5,@v,@,@,@ 9=,@u ,@,@G(=,@95,@u=,@7tލ;r;l%;UWV}5,@%,@9u5,@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ,@Nj]u}WV|$ t$L$Njʁ^_øÐT$,@Ru ,@+D$øT$,@3øÐ0YNL$0Y:L$0+L$0L$0 L$0ÃÐ,@Ð{T$\@@(#)getty 5.3b of Mar 14, 1988T@[@b@i@p@v@ }@@@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@ @ @ $@@*@.@@2@8@<@@@C@G@K@P@U@Z@_@d@i@ o@ u@ {@ @ @@@@@@ @0@@@@@@@@@@@@@ @@@@@ @@@@&@+@/@6@;>@F@N@Z@e@J:!@;!@>!@L!@X!@`!@Dq/etc/utmpZZZZgggg"@IGNBRKBRKINTIGNPARPARMRKINPCKISTRIPINLCRIGNCRICRNLIUCLCIXONIXANYIXOFFOPOSTOLCUCONLCROCRNLONOCRONLRETOFILLOFDELNLDLYNL0NL1CRDLYCR0CR1CR2CR3TABDLYTAB0TAB1TAB2TAB3BSDLYBS0BS1VTDLYVT0VT1FFDLYFF0FF1B0B50B75B110B134B150B200B300B600B1200B1800B2400B4800B9600B19200EXTAEXTBCS5CS6CS7CS8CSTOPBCREADPARENBPARODDHUPCLCLOCALISIGICANONXCASEECHOECHOEECHOKECHONLNOFLSHnonevt100hp45tektronixtekds40-1vt61tecLDISC0defaultLOGIN: default/dev/syscon/etc/issue/etc/gettydefstty%d%dgetty: timeout argument invalid. "%s" Check Mode Usage: getty -c gettydefs-like-file rCannot open %s getty: no terminal line specified. getty: unable to find %s in "%s". getty: %s is an undefined terminal type. getty: %s is an undefined line discipline. /dev%.14s %s %slogin/bin/logingetty: pointer to next speed in entry %s is bad. getty: unable to find %s again. LOGIN/etc/wtmpr+wr+getty: cannot open "%s". errno: %d idinitial flagsfinal flagsmessagenext idrgetty: can't open "%s". Entry too long. **** Next Entry **** %s id: %s initial flags: iflag- %o oflag- %o cflag- %o lflag- %o final flags: iflag- %o oflag- %o cflag- %o lflag- %o message: %s next id: %s Parsing failure in the "%s" field %s<--error detected here SANEUndefined: %s r+rw/etc/systemid~${${${$$~$$$$$$$$$$$$~$$$$??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF5??5?????? 65?55?=6M6M6M6M6M6M6M6M6M6???????????d8?<????????????????7???????????l6d8~:<g6l6??`6??7???9??7??7-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@86@86@+@@6@7@3.1bS03.1bS0+@@6@etc/cron100755 0 2 113014 4201127331 6754 37777777777 L! sd!@.texts .data@@d!t@.bss5@5@.comment ÐET5@RU RP PmsjÐUPEj^>Y9E~h@E p?t*BEt9EtjsYf@=jLYjjYrjjMrjjArh%j2rjiYj&YrPh@$#j@DYEEj2DYE9E E+E=x~}1?@IuWYEPU$Ep)pYEPUupYE܉E}u֋EP U‰E}u5?@lYjYjCYEEE=?@u&/t E! /?@+EE ?@+EE}}3EE}~ uQY= ?@t ?@EEPh@Jt h@=#YE9Etj%YEЉE?@U5?@/Y?@@=uI=?@t?@5?@kY?@?@P r05?@* jE?@P BEM?@9Eu7}uEP HJ E؋UJHEpdnYu[nYEE؋PU}u?@UjAY$?@j hQ5$?@jo'}jh@I=u\95@u!jhh!@&5 tXjh4@$f=@uj<:YhM@:5YjhR@!!f=@uj<:Yjhk@ jh@n?@}h@4Yjh@ h@bYPh@h`@; ?@~?@=@uih1@h@h@c uh@h@h1@V8  2@PiYjz0Yh1@h@h@c @UPjh@.=u h@Y?@cjhP@{mE=ujhR@h0uvuiYht@p.Y=u h@ Y?@ajh@mE=u h@YhO uuhYUWVSjjuh A0fft%3 ES : 8G|E8EPU YNhPua 3Uu.YEtCc9?@t8uh@h@TPiaPdFP[FTËEPEPPFt jh@u* PVFYu[YEj$#YEu aY@Px#YUuE0`Ep`Y@PO#YU؉BEpEp`E؋UJHJ H f@@@P@@?@P ?@uYE؋UJHJ H EpEpl8t:EpiYEp.`Y@P"YU؉BEpEp_Ef@xu$@@P@uOYdu;YjEp+&u(Y=UEEEP YEt E=.tEE /@tE-af?@a9?@t6uh&@h@HP _PDPCHEDEPDCu?@=} Eة uDCYJEP ,YE4E0YEj$!YEЋE0^Y@P YUЉE0E0H^Epb^Y@P YUЉBEpEp^EЋUJHJ H f@@@@?@P ?@uuu jEЋUJHJ H EpEp5t:Ep gYEp]Y@P YUЉBEpEpe]EЋP&uEp5u Ef@E̋PŨ}uу}uuu UPj,YEf?@fPu ]Y@P}YUBu Ep\EUP JHEUPEf@@@P$?@9E} E$?@EUEp0uO! Uc9?@t>E0hA@h(@lP6\P1AP(Alh EhhC@h`\E)jhE@E0 C@C@C@(?@= tC@(?@= tԡC@(?@=#j,YEf@uj;jy UBujj\ UBttujjC UBt[uj j* UB tBujj UB$t)C@@C@(?@uHjhq@E0 u>dYuhh(?@* u\YC@EC@C@+E@P YUBC@+EPE(?@PEp2 EPC@+EC@(?@=%uEh(?@?ZY+C@@PYUB(C@)?@PEp(YEE@(EUP JHEUPuYUEpE0u| C@C@(?@=%t0C@(?@= tC@(?@t(?@=\uC@(?@=\EP(E=%u EP(E EEp(%YY9E| Uh@ YYEuXYUЍRRcYEh@uh@h@uXP=P=P*E}9EuXh@ug-j h(?@<E}tE u h(?@h@u1-h@u!-u h@u - u+ZY?@unaYUC@C@(?@= tC@(?@= tԡC@E(?@ujh@E0 3áC@(?@=*udC@C@(?@= t+C@(?@= tjh@E0O 3jYEh'@u"WE뇡C@(?@ /@ujh)@E0 3REkE C@(?@0‰EC@@C@(?@ /@uNjE9E|E 9E~jhA@E0 3C@(?@=-C@@C@(?@ /@ujhi@E0@ 3EkE C@(?@0‰EC@@C@(?@ /@uNjE9E|E 9E~jh@E0 3*C@(?@= tC@(?@= uFC@+E@P$YEC@+EPE(?@Pu- EC@+UC@(?@ujh@E0? 3C@C@(?@=,jh@E0 3\Uhj&2YEEP12YEEp EPBRHEEpEp EEp$EpEEh@Ep,u EU9Pu@h@Ep$,u EU9P uEU9P tU9Pu EU9PtEEPBUEpE@R&UJA;EEpE<REE9E}3E؋E@E؉EEpERE܋E9E}3E؃}u]}tWEU9P~ U+PJi<M+QUk<EU+PiUM+Jk<EEU+ËEpj3EEpj E܋EP BUpp;EEpEH}BREȋE9E}3EċEPBUEp$EREE9E} +EEE+EEEppEEEH}BUE9E}3Eh@Ep[*u#h@Ep$D*t EEȋEEh@Ep!*t#h@Ep$ *u EȉEEĉEEPU}t}uEU9P7EPBUEp E BRHEE9E}3EEEpjoEujuEpp p@EE@EUEp$u'EE9E} +EEE@+EEh@Ep )th@Ep$(uEȉEh@Ep(uh@Ep$(tEEȋE9E}EEE)EPU}u}tփ}uEȉEEEuuuEpp pEиU+Bi<M+Qk<iUkU<iUЀQUh@u (E EEdEdEPYE;EtlE9E}EEE9E~E9E}EEE=-u%EEPYE;E~E9E~E9E~EtE늋E9E~Eød9EtEEU u PYEtEPUEËEpu'u\E9?@u ?@}uEUJH EUJHjEpEpWYuWYEEPU}yEfxix_= ?@u P ?@ ?@UJ H E0WYEpWYuxWYUPuBYEtCumYjEp]E@f@xu= ?@u P ?@á ?@UJ H E0WYEpVYuVYU=?@t'?@@=u?@U9P u ?@EPUrEpVYEpVYEpVYEpyVYEp mVYEp$aVYEx(t p(OVYEPUu=VYEE}uE@UP?@E ?@'uE0$uEËE ?@P U}u3U@WVE@;@Eȋ9P |,E@@aPh@ Ep Yu}Ep=@ Eă8tE?@9Er?@9Erjh @] Ep Yh,@h'@&UĉB &E=u$h2@ Y5@a Yj2"Yg}t9E@ ?@EċUUfJfHJ Hjuj>+ (3WQYG|E@=h>@jEp PE=ujh@0 jjuL h@FYPh]@uP uLYEp 0h@h@P Uu(jPh@h@h@K jPYEf@d?@YEp NYEp *Y@uM uBYPuuM jhM@uM uHYuYhO@ YjNYUPjYEhm@h1@auu uh1@KEP'YPhp@h1@. h1@DYUjUYEE=>u?@pEPht@h1@EP YPE @@aPE 0P2EPh@h1@E%Etuh@h1@ E%Etuh@h1@d 1@}h1@j ^Dh1@CYá1@1@ UP?@EE?@@=uV5?@Y?@?@9E} ?@U?@P r05?@ ?@h@u?@pp h@YUpW34@;@@;@@;@G|ǃ}t3h@h@@Eh@Yh @Y}E-aE9E}vE=.ti3EEGEEU E 8E8uۍEP^YE`=@;@Ed=@;@Eh=@;@ujPEPk SuAY@UW`=@@ JHJHJ H a3k EE-0E /@u׋EE=jt=nt=wu=h=@=`=@=d=@E8u}ÐUPEkE U 0‰EEE /@uыEUE9EuE9E u E9Eu3ËE9EuE9E }+E Huu9EuEu3U$ @Ћƒ+E UJ‰EEH}uEuu9EuEu3U$ @ЋƒEE@ UE9EuE:U9EuE u3U$ @ЋUPu,DYEu#uhT @kh1@?Yj7HYEU 9E9E9EE@5@E 5@E5@E6@jvYE5@Ef@ @EjPYE5@E@UP@ EEUPE5@EE5@EjYEUEf@ UPEUPEEjYEUE@UPUP EUPEEEPjYEU}u E| @ EUPEEE5@9EOjNYEEf@ UP@EUPjYEE@UPUP @EUPEPjYEUE@EUPx @U=| @t 5@9E }jYEU EUPUPf@ @| @E EPUEE 9~EB E EP UEU 9PU‹6@9P6@UBEPUE EPUE6@9E~jYEU 6@6@+ЋEPUPUPJ H EUP EP BEUPEU 9~EE@PEPU‹U 9EUJHPEPEBEUP=x @tx @U 9xEx @kU=| @t =x @uáx @EEPU}tEfx uU9Pu߃}{Ext9P9Bu,EPUR EHJPH J u]BYExtPHJPHEPHJEE EPUExtPU‹UJIHEP UPUEPfz uJU@B;6@9EPBEURPEP EBUJ H uAYXEPfz uKEU@B;6@7EPBEURPEP EBUJ H uFAYEPHJPHJUu%AYEE} u }S| @B E EP UEx uPBE EPU}t Efx uEx @U=x @u3U$=| @t =x @n3ø95@u&| @U‹5@EP5@7| @EURUREHJPHJEP HJPH J | @P| @| @E EPUEPzuU5@E EPUEU9|PBEE EEPUEU9}PUEUJHEUPEU܉UR+UBPUJ H PEP EBEUP UPEU܉UJHPEPEBEUP| @x @9x @PHJPHJE EPUExtPU‹UJIHExuP HJPH J u>Yx @EPU}t Efx ux @PU5x @k>YEx @EU=| @t | @EËEP Uz uEPUEPUu>YEE}uEPUu=YEE}uEPUu=YEE}u| @x @m ?3ÐUuiYPYUWVS6@ @GF҈uEk@ @6@GFGFGFGE@k @GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW6@]u}UW}G 9E |E R0ˆG GE R0‹GNj}Ð):>ÐUWWt7u uiNj}ÐUWV}t9~u=Ƌu}U= @uh @h @2 @5 @YU= @t5 @04Y @UW}G?t=:t = u= u ?tGNj}U= @uh @h @2 @u35 @YUWuhh 6@_ =":@WQY=&:@WBY=:j EPW EW21YPj:W0 9Eu`WY}| `9E~aE*:@t4=:t*j EPWv EW0YPj:WX0 9Et3}WY}| `9E~aE.:@=6:@=::@W^Y=>:@WOY=B:@W@Y=&:@G?t =,u?tG=2:@":@oUWVS} uEE~,F t!O>(V/Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V 5@+V;}Vo5Y}u +gEEv:3Ð:Ð"z:ÐUWV @@#@95@s 5@<!@u.YtVuj9 jh @j9 W.YPWj9 jh!@jn9 u}ÐUWVSEPfYE =ruEEE =ruEE: EH:@?t-H:@PN4Y;@rڋE =ru3EV#4Yu4YujS S4YjuhT,@hP,@hH,@ojY9Eu 3]u}ËEH:@S3Yu VUWVE@ uc/Yjj38Ejj$8Ejj8EEPJ-Y;4H:@tu95@tكuEuj7uj7uj7H:@Eu}Ð>8ÐUWV} S.t?F EF F F3҉V5@=at=rt=wt3u}ÀN jju2 N G=+uf N ȸ*n7L$Q3ÐUPWE E1@u1@t* 1@h1@uu 1@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W-YjjG P1 GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW/YG uG tO G Dt11@"u}F @tV,Y;54@rGGG tG 5@+GPwG P) | GG듸9tO O G tg a..53ÐjP'5ËjP'4ø43ÐU}u3jYEh`@j14EEE}t6E9Ev)EE&E+EEEEEMuj3h;@YuubYljUYE}| uj3} }}}t EEP YEE2Ujh;@EøÐ3ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu ENj}ÐUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E /@u5GEE /@uE=+t =-u EGEu309Et "G=xt G=XuE /@tEE /@t E-0#E /@t E-WE-7E;| 3]u}Ãu;09Eu1G /@tG=xt G=Xu EE /@t E-0#E /@t E-WE-7+EGE /@tEE /@t E-0#E /@t E-WE-7E;|} tE 8}tU55@E Pu Ð;0^0t3ÐU WVSEEhp,@$YEhX,@#Yt S$YE}t u$YEE9E}E;E}E E9E}E@P!+Y}~jSWPt]}~juWPth~PW =uh~Ph /@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}T;@ET;@E41@s3UtE]T;@E<1@ED1@E1@r5E1@r1@E1@AE1@s6EE]@)EE1@r݋EE 9P܃}t؁T;@;@v;@E1@te;@r05}fEf fEmE]mE܉E@0Ee 1@];r&=5|+T;@uT;@1}tCF0N<9T;@]Ћuԋ}ËEE0]@EEsEE 9P EEEE1@MU]vEu}fEf fEm]mE܉EFUR0EMm]E1@E51@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 5@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 5@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}5@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W5@UW1@;=4@r3}ÃG uUW1@ WY;=4@r}UWV}tlG t6G t3WVYG PY}5@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 5@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 5@+G?}3W 5@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 5@+G?}3W 5@+W;}WY3UWV}G G u}}&uC@G@GW 5@*h!YGt@O G W5@GGVYtG uO @u}G $K@WR5@UWV}G 5@+G}G 5@Wu};7}7𐐐3ÐU5@EEPhTu } E5@3ø6ÐÐU WVSE9ET=5@u<5@ 5@5@ 5@5@5@5@5@5@5@E@3؋=5@E&;55@5@E@E=w=5@jY5@@;t?3Ee ƹ3tL3+‰EEE25@+5@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή55@5@0E+E-5@@;t5@5@5@5@~Љ5@;55@v5@5@5@ 9=5@u 5@5@G(=5@955@u=5@7tލ;r;l%;UWV}55@%5@9u55@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ5@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$5@Ru 5@+D$øT$5@3øÐ0DtNL$0Dt:L$0+L$0L$0 L$0ÃÐ5@ÐoT$Ì@@(#)cron 5.3b of Jan 27, 1988d<<HOME=LOGNAME=TZ=@,@@@`@PATH=:/bin:/usr/binSHELL=/bin/shnofork*** cron started *** pid = %d/usr/lib/cron/queuedefscannot stat QUEDEFS file/usr/lib/cron/FIFO/usr/lib/cron/FIFOcannot create fifo queueFIFOcannot access fifo queuecannot start cron; FIFO exists/usr/lib/cron/FIFO! opencannot open fifo queueTZ=%sTZ/usr/lib/cron/logacannot open %s /usr/lib/cron/log/dev/nullr/usr/spool/cron/crontabscan't change directory to the crontab directory..can't read the crontab directory./usr/spool/cron/atjobscannot chdir to at directory.cannot read at at directory/usr/spool/cron/crontabs/can't access your crontab file. Resubmit it./usr/spool/cron/atjobs//usr/spool/cron/crontabs/rcan't read your crontab file. Resubmit it.unexpected end of line/bin/mail/bin/mail wYour crontab file has an error in it. %s %s This entry has been ignored. Cron: %s unexpected end of lineunexpected symbol found*unexpected symbol foundnumber too large or too small for fieldunexpected symbol foundnumber too large or too small for fieldunexpected end of lineunexpected symbol found***********%c queue max run limit reachedMAXRUN (%d) procs reached/tmpcroutcannot fork/usr/spool/cron/atjobs/usr/spool/cron/atjobs/unable to read your at job./tmp/crinXXXXXXunable to create a standard input file for one of your crontab commands. That command was not executed.unable to create a standard input file for one of your crontab commands. That command was not executed.unable to create a standard input file for one of your crontab commands. That command was not executed./dev/null//dev/nullcan't change directory to your home directory. Your commands will not be executed./bin/shsh-c/bin/shshunable to exec the shell for one of your commands.unexpected pid returned %d (ignored)one of your commands generated output or errors, but cron was unable to mail you this output. Remember to redirect standard output and standard error for each of your commands. ************************************************* Cron: The previous message is the standard output and standard error of one of your cron commands. ************************************************* Cron: The previous message is the standard output and standard error of one of your cron commands. %s %s < "%s" /bin/mail/bin/shsh-ccannot stat fifo queue! readmessage received - bad formatSIGTERM/usr/lib/cron/FIFOcron could not unlink FIFO/dev/consolecron aborted: ******* CRON ABORTED ********! %s%c CMD: %s %c %.8s %u %c %.24s ts=%d rc=%drescheduling a cron jobrescheduling at job/usr/lib/cron/queuedefsrcannot open quedefs fileusing default queue definitionscannot allocate %d bype of space Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/passwdrrUnknown error: D#@L#@V#@p#@#@#@#@#@#@#@#@$@$@&$@8$@D$@Z$@f$@r$@$@$@$@$@$@$@$@$@ %@%@2%@?%@U%@d%@p%@%@%@%@%@%@%@ &@&@1&@N&@i&@x&@&@&@&@&@&@&@'@'@)'@:'@G'@]'@r'@{'@'@'@'@'@'@'@(@(@+(@;(@I(@e(@t(@}(@(@(@(@(@(@(@(@(@)@)@F)@k)@)@)@)@)@*@ *@*@*@&*@/*@8*@A*@J*@S*@\*@f*@p*@z*@*@*@*@*@*@*@*@*@*@*@*@*@*@+@+@+@$+@.+@8+@B+@L+@V+@`+@j+@t+@~+@+@+@+@+@+@+@+@+@+@+@ ,@,@3,@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-cTMPDIR/tmpXXXXXX/usr/tmp,@AAA/,@,@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFPZZPZZZZZZPPZPPZ-Q=Q=Q=Q=Q=Q=Q=Q=Q=QZZZZZZZZZZZTSZWZZZZZZZZZZZZZZZZRZZZZZZZZZZZ\QTSnUWWQ\QZZPQZZRZZZ)ZZRZZR-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@4K@4K@4@u9u5/@Ƌu}U WVEEh@h@U7Eu/@P @>/@'@'@EG?t= t @u߀?= =#G?t= t =#uFlPF]PFNPF?PF0PFPF!PVh@P (|9tAhp@uhH@h#@ h}@h#@ u7Y/@P @.uhP u7YU WVS=/@6h@G!PG]t_h@G]PtJh@G]Pt5Glt.h@GlP|th@GlPg3EEEPhhG0PYP{; }tMG]tTh@G]Pt?h@G]Pt*G]PeYUM+Rh@GlPY ,EPh@G]PA EPh@GlP+ |93E0Fr3$h@SYPY@!PgtCr׃t!SYPzY@]PYHE]ԋu؋}S4YPNYh@G!P u}E<utEE@EuYEuYUЋEHEuh@G]P: uh@GlP& VY;EuE0FrCTDUWVu|YPY@0PY3,W^YPxY@0PY;uWBYu}GrUWVS}33 VY;uCFrË]u}U WVS}WYWY؊FNt*h@FNPth@FNPu6F]P YEFlPYE~E+E@EE FNPYEE]u}UPW=@h8Y@uh@vYj<Y5@fY}]j4YEjh@E@]Pk j(h@E@lPU 3 @8G| @Gr@}Ux'@ÐUPWVS}E @uJG @u=+t =-u EG @u 3]u}ø0+Ëk 0+G @uރ}t뾋븐UPWV9@ueE9 @}#E  @ =-u E Au u}h@E  @4u  @΋E  @ @=$@:tWu =@tOLjEE E 0/YPE 0j: h@/YPh@jg: jEPjW: E  @ @@@u @@?F=:@@U @t@@U  @(@ @@ @;E|l=@tOLjEE E 0/YPE 0j9 h@.YPh@j9 jEPjt9 @?GE  @ @ (@@8E  @ @@@u@ @(@UWVS} uEE~,F t!O>(V/Y=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V &@+V;}V3Y}u +gEEvUWV,@|@9x'@s x'@<@@ue-YtVuj7 jh:@j7 W9-YPWj7 jh=@j7 u}ÐUPWE E#@u#@t* #@h#@uu #@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UPWEEE@ uE@ t(EH uuu ' E@ t }ËUPE EPuh#@d UPEEPu uI UW}EEEljEEW+YEE2uu EP }ÐUWVS}u Dž0@0@ 0@W1=~*uDžF DžDžk -0F @u؃u DžÉ=lt h9uF؅[uPV @tDžl!@؃nt_=0@uVctQ[tL0@} W@ Y GG @u 0@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf0@fl9uEEP0@{EEP0@dEPWSt'=0@tu /$Fu  @td=0@u0@} W Y GG @u 0@W< =u0@y%uF؃%0@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE0@}WyY3]u}ËGG=+t=-t =0t8EM0@} W(Y GG؃0i9E }9Eo0@} WY GGEh~PW =uh~Ph @B 3W# YkUjuuuu u#Ujuuuu uU$WVS}0@E0@E"@s3UtE]0@E"@E"@E8#@r5E@#@rL#@EH#@AEh#@s6EE]@)EEp#@r݋EE 9P܃}t؁0@j0@vj0@Ex#@t-0@r05}fEf fEmE]mE܉E@0Ee #@];r&=5|+0@u0@1}tCF0N<90@]Ћuԋ}ËEE0]@EEsEE 9P EEEEP#@MU]vEu}fEf fEm]mE܉EFUR0EMm]EX#@E5`#@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G &@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W &@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}'@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu=  E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W&@UW#@;=&@r3}ÃG uUW#@ WY;=&@r}UWV}tlG t6G t3WVYG PY}x'@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG &@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G &@+G?}3W &@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G &@+G?}3W &@+W;}WY3UWV}G G u}}&u0@4@GW &@*h!YGt@O G W&@GGVYtG uO @u}G 8@WR&@UWV}G &@+G}G &@Wu};7}7𐐐3ÐUx'@EEPhTu } Ex'@3ø6:Ð&ÐU WVSE9ET='@u<'@ '@'@ '@'@'@|'@'@'@'@E@3؋=|'@E&;5'@'@E@E=w='@j Y'@@;t?3Ee ƹ3tL3+‰EEE2'@+'@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5'@'@0E+E-'@@;t'@'@'@'@~Љ|'@;5|'@v|'@'@|'@ 9='@u |'@'@G(=|'@95'@u='@7tލ;r;l%;UWV}5|'@%'@9u5'@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ'@Nj]u}WV|$ t$L$Njʁ^_øVÐT$'@Ru '@+D$ø!T$'@3øÐx'@ÐT$ @@(#)devinfo 5.3b of Mar 1, 1988makettys: uname system call failed. 386/1000dpjb:c:t:Board number must be between 0 and %d Usage: %s -[jp] -b -c -t %3d %-5s %-16s %-9s %-9s %-9s %-9s %-9s Board Name Major Prefix First Last tty%3d %-16s %3d %-6s %-8s %-8s %d %d %s Invalid board/channel combination %d/%d tty0SIOtty5tty10MultiDroptty10tty64ACPAtty10tty64File Procfpunknownunkemptyemp@/dev%s/console\0 \0 \0 %s%02d%s/%s%02d/etc/sysdispr%d "%14[^"]" "%28[^"]" "%14[^"]" "%14[^"]" "%14[^"]" "%14[^"]" "%14[^"]"Invalid disipline format; line %d, %s; /etc/sysdispusing default disipline. tty\0 \0 \0 %d%d%dttytty%d%d\0 getsysinfo%d%d: option requires an argument -- : illegal option -- --Unknown error: @@@@@@@@ @@,@?@Q@b@t@@@@@@@@@@@'@8@G@V@n@{@@@@@@@@@7@F@T@m@@@@@@@@ @%@<@P@e@v@@@@@@@@@ @*@@@Q@g@w@@@@@@@@@@@ @'@D@[@@@@@,@5@>@G@P@Y@b@k@t@}@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@@@@@)@7@F@W@o@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device errorZWWWZcZl??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF(22(222222)(2((25)E)E)E)E)E)E)E)E)E)22222222222\+2/2222222222222222*2222222222 2d)\+v-/_)d)22X)22*222122*22*-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ 9@ 9@&@9@:@3.1bS03.1bS03.1bS0etc/devnm100755 0 2 30224 4201127361 7110 37777777777 Ly! l&H <@.textl& .data<@<@H <'@.bss@@ .comment0ÐET@RU RP P!&jÐU4h`@ Y=tjhe@x%fEfhg@h @ej%YjjEP_! EPE E 0=fEfEjf}tcEPEPb=uhy@h @jG%YEU;u&E%=`uE 0EPh@O jEPEP =xM0j$YÐ $3ÐUPWE E @u @t* @h @uuI  @ t }ËUPWEEE@ uE@ t(EH uuu E@ t }Ë#3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoYh~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E @E @E$ @r5E, @r8 @E4 @AET @s6EE]@)EE\ @r݋EE 9P܃}t؁@@v@Ed @t@r05}fEf fEmE]mE܉E@0Ee l @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE< @MU]vEu}fEf fEm]mE܉EFUR0EMm]ED @E5L @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWt @ WY;=@r}UWV}tlG t6G t3WVYG PY}d@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h!YGt@O G W@GGVYtG uO @u}G @WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUd@EEPhTu } Ed@3ø6FÐ2ÐU WVSE9ET=x@u<|@ x@x@ |@l@|@h@x@l@t@E@3؋=h@E&;5l@x@E@E=w=t@jYl@@;t?3Ee ƹ3tL3+‰EEE2l@+t@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5t@l@0E+E-l@@;tl@l@l@x@~Љh@;5h@vh@p@h@ 9=t@u h@t@G(=h@95t@u=t@7tލ;r;l%;UWV}5h@%l@9u5t@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹp@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐd@ÐT$@@@(#)devnm 5.3b of Jan 27, 1988/dev.Cannot open /dev /dev stat error %s %s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF%555555555L TLf OTH!-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@@@@3.1bS03.1bS0@@etc/dfsck100755 0 2 47230 4201127365 7102 37777777777 L! T6d` $@.textT6 .data$@$@d$7@.bss.@.@` .commentNÐET.@RU RP P 6jÐUXEE0EEEEEEEEEEEE uq0YE9E|jh@44/@=uh@^YjN5YETE U =-u}t }uEEE4}uEE}t }uEEEE9E|9E|}t }t&}u E 05H@h*@ j4Y}t}u}t3E}uEԃ}}h@o YEEE U4h@S EE9E|h@; YEEE U4h@ EE9E|h@ YE U4h@ h.@ Y=u h @ Yh.@ Y=u h+@ Y.@$/@/@(/@.@/@.@/@h/@d Y=u hM@r Yh /@G Y=u ho@U Y/@,/@/@0/@/@/@ /@ /@E @}u@U MVE=j5/@ %Pj5/@ j5/@ %Pj5/@o j5/@j5/@5$/@U-Y5(/@I-YE} E @UM }t EEEEE U +UU EE9E|ދE +UU? E=0j5 /@ %Pj5 /@~ j5/@n %Pj5/@X j5 /@j5/@5,/@>,Y50/@2,YEJRh j 0h j0Ej YEPz'YE=j YE9EtE9EuiE%Et4Et h@ Yuh @ E9EuEE̋E|,EE9EuEEh2@p Yj`0Y9EuR9h.@tE}u?}u9 9h.@t,@9h.@ EhH@`Yj0Y5$/@Y5,/@YQE=1u}uE8E=2u}uE}t }uEȃ}u6}u0}u*}u$}uj$hN@54/@. E߈EE}tME= u.E=yt E=nujEP5(/@. E0jEP5(/@. }tME= u.E=yt E=nujEP50/@J. E0jEP50/@2. E= u#}tE}tEEjEP58/@$ }t 5$/@8Y}t 5,/@&Y}t}u},}"hs@3YËE U E=Nt=Yt=nt=tt=yu}tEEEEE U Eu9E}Eu(YE9E|u h@E U4h@{ji-YE U4h@]jK-Y5/@'(Y5/@(YE U U+UU EE9E|E U+U u'YE9E|u h@HE U4h@j,YE U4h@j,Y5 /@z'Y5/@n'YCEh.@T@E uuh.@4T@54/@+ jhF@54/@+ %U$EPuEEt~E8hPu " hP5utGNj]u}3U5.@u u ÐUWV@@@9h.@s h.@'Ð*&L$Q3ÐUPWE E*@u*@t* *@h*@uu *@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËU}u3jYEhj%EEE}t6E9Ev)EE&E+EEEEEMujD%h.@YuubYljUYE}| uj %} }}}t EEP YEE2Ujh.@EøÐ%ÐD$Xpxh Z`P+T$D$;j tZrzj bu@bUWS}] ;u Nj]}ËG8u3쐸;$$t3Ðj$3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  -@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVKYF Dt*F uuj E+EP` tVCYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl'@Dž\9PtP؉PNKPPoYh~PW =uh~Ph'@ 3W YkUjuuuu u#Ujuuuu uU$WVS}.@E.@E)@s3UtE].@E)@E)@E(*@r5E0*@r<*@E8*@AEX*@s6EE]@)EE`*@r݋EE 9P܃}t؁.@.@v.@Eh*@t.@r05}fEf fEmE]mE܉E@0Ee p*@];r&=5|+.@u.@1}tCF0N<9.@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@*@MU]vEu}fEf fEm]mE܉EFUR0EMm]EH*@E5P*@]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G -@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W -@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}.@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øj L$tÐUWx*@ WY;=-@r}UWV}tlG t6G t3WVYG PY}h.@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG -@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G -@+G?}3W -@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G -@+G?}3W -@+W;}WY3UWV}G G u}}&u@/@H3@GW -@*h YGt@O G W-@GGVYtG uO @u}G P7@WR-@UWV}G -@+G}G -@Wu};7}7𐐐3ÐUh.@EEPhTu } Eh.@3ø6ÐU WVSE9ET=|.@u<.@ |.@|.@ .@p.@.@l.@|.@p.@x.@E@3؋=l.@E&;5p.@|.@E@E=w=x.@jYp.@@;t?3Ee ƹ3tL3+‰EEE2p.@+x.@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5x.@p.@0E+E-p.@@;tp.@p.@p.@|.@~Љl.@;5l.@vl.@t.@l.@ 9=x.@u l.@x.@G(=l.@95x.@u=x.@7tލ;r;l%;UWV}5l.@%p.@9u5x.@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹt.@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$.@Ru .@+D$øT$.@3øvÐ06NL$06:L$0+L$0L$0 L$0 Ãh.@ÐT$(@@(#)dfsck 5.3b of Jan 27, 1988L@Usage: %s [-options] FileSysA [FSA...] [-[options] FSB [FSB...]] /dev/ttyCannot open tty 1 will identify %s 2 will identify %s Precede every answer with 1 or 2 as in `1y' for %s Cannot open pipe for first fsck Cannot open pipes for first fsck Cannot open pipe for second fsck Cannot open pipes for second fsck fsck1fsck/etc/fsckCan't exec 'fsck' on %s Couldn't fork on %s 2fsck/etc/fsckCan't exec 'fsck' on %s Couldn't fork on %s core dumped signal %o caught Unknown child fdes dfsckwhich filesystem? answer '1' or '2' >>> DFSCK DONE <<< Cannot change file descriptor pipe error: write to wrong pipe(fsck) Cannot dup tty fdes for ttyi Cannot dup tty fdes Couldn't set O_NDELAY on ttyi /bin/shPATH:/bin:/usr/binshUnknown error: @@@@@@@ @@0@@@S@e@v@@@@@@@@@@@'@;@L@[@j@@@@@@@@@@2@K@Z@h@@@@@@ @ @ @! @9 @P @d @y @ @ @ @ @ @ @ @ @!@ !@>!@T!@e!@{!@!@!@!@!@!@!@!@!@!@"@"@ "@;"@X"@o"@"@"@"@#@@#@I#@R#@[#@d#@m#@v#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@$@$@$@$$@.$@8$@B$@L$@V$@`$@j$@t$@~$@$@$@$@$@$@$@$@$@$@$@$@$@%@ %@#%@-%@=%@K%@Z%@k%@%@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF2>`]&J=Ke=5K-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@`7@`7@-@h7@8@3.1bS03.1bS0-@h7@etc/errstop100700 0 2 360 4203631517 7426 37777777777 : # @(#)errstop.sh 5.3b of Jan 27, 1988 : a=`ps -e|grep strerr|grep -v grep|sed -e "s/\(......\).*/kill -15 \1 > \/dev\/null /"` if [ "$a" ] then if eval $a then : else echo Not root fi else echo No daemon active exit 1 fi exit 0 -@h7@etc/errprint100755 0 2 2666 4203631517 7642 37777777777 : # @(#)errprint.sh 5.3b of Jan 27, 1988 : # This shell script runs the errstrip awk script on the error file for a # given date. A date may be entered on the command line as mm dd, mm-dd, # mm/dd, or month dd. If no date is specified, the current date is used. OFS="$IFS" IFS="$IFS/-" set `echo $*` >/dev/null IFS=$OFS if test $# -eq 0 then # use current date for error file month=`date +%m` day=`date +%d` elif [ $# -eq 2 ] then # use specified date for error file month=$1 day=$2 case $month in [Jj]an*) month=01 ;; [Ff]eb*) month=02 ;; [Mm]ar*) month=03 ;; [Aa]pr*) month=04 ;; [Mm]ay*) month=05 ;; [Jj]un*) month=06 ;; [Jj]ul*) month=07 ;; [Aa]ug*) month=08 ;; [Ss]ep*) month=09 ;; [Oo]ct*) month=10 ;; [Nn]ov*) month=11 ;; [Dd]ec*) month=12 ;; [1-9]) month=0$month ;; [0-9][0-9]) if [ $month -lt 1 ] || [ $month -gt 12 ] then echo Invalid month: $month exit 1 fi ;; *) echo Invalid month: $month exit 1 ;; esac case $day in [1-9]) day=0$day ;; [0-9][0-9]) if [ $day -lt 1 ] || [ $day -gt 31 ] then echo Invalid day: $day exit 1 fi ;; *) echo Invalid day: $day exit 1 ;; esac else # wrong number of arguments on command line echo usage: $0 [mm-dd] exit 1 fi # find the error file and display it errfile=/usr/adm/streams/error.$month-$day if [ -f $errfile ] then awk -f /usr/lib/errstrip.awk $errfile | more else echo File $errfile not found exit 1 fi month: $month exit 1 ;; esac case $day in [1-9]) day=0$day ;; etc/magic100644 0 2 7414 4111725303 7041 37777777777 # @(#)magic 5.2a of Aug 17, 1987 # # file cmd's magic file # # # Basically, the fields of this file are as follows: # byte offset, value type, optional operator (= by default), value # to match (numeric or string), and string to be printed. Numeric # values may be decimal, octal, or hex. Also note that the last # string may have 1 printf format spec. # The '>' in occassional column 1's is magic: it forces file to # continue scanning and matching additional lines. The first line # afterwards not so marked terminates the search. # 0 short 0x206 xenix executable >16 long >0 not stripped >28 char ^0x40 word swapped >28 char |0x3f >>28 char 9 286 >>28 char 4 8086 >30 char &0x10 overlay >30 char |0x6 >>30 char &0x2 separate >>30 char 0x4 pure >30 char |0x60 >>30 char 0x60 large model >>30 char 0x40 middle model >31 short |0xc0 >>31 short 0xc0 System 5 >>31 short 0x80 V3.0 >>31 short 0x40 V2.3 0 short 0177545 old ar archive 0 short 070707 cpio archive 0 string 070707 ASCII cpio archive 0 long 0177555 obsolete ar archive 0 long 0100554 apl workspace 0 short 017037 packed data 0 string System V Release 1 ar archive 0 string ! ar archive 0 short 0514 i386 >18 short ^2 object file >18 short |2 executable >12 long >0 not stripped >20 short 0443 (target shared library) >20 short 0410 (swapped) >20 short 0413 (paged) 0 short 0407 a.out executable >8 short >0 not stripped >15 byte >0 - version %ld 0 short 0401 unix-rt ldp 0 short 0405 a.out overlay 0 short 0410 a.out pure executable >8 short >0 not stripped >15 byte >0 - version %ld 0 short 0411 a.out separate I&D >8 short >0 not stripped >15 byte >0 - version %ld 0 short 0432 Compiled Terminfo Entry 0 short 0433 Curses screen image 0 short 0434 Curses screen image 0 short 0437 pdp11 kernel overlay 0 short 0570 vax executable >12 long >0 not stripped >22 short >0 - version %ld 0 short 0575 vax pure executable >12 long >0 not stripped >22 short >0 - version %ld 0 short 0502 basic-16 executable >12 long >0 not stripped >22 short >0 - version %ld 0 short 0503 basic-16 executable (TV) >12 long >0 not stripped >22 short >0 - version %ld 0 short 0510 x86 executable >12 long >0 not stripped 0 short 0511 x86 executable (TV) >12 long >0 not stripped 0 short 0550 3b20 executable >12 long >0 not stripped >22 short >0 - version %ld 0 short 0551 3b20 executable (TV) >12 long >0 not stripped >22 short >0 - version %ld 0 short 0560 WE32000 executable >12 long >0 not stripped >18 short ^00010000 - N/A on 3b2/300 w/paging >18 short &00020000 - 32100 required >18 short &00040000 and mau hardware required >20 short 0443 (target shared library) >20 short 0410 (swapped) >20 short 0413 (paged) >22 short >0 - version %ld 0 short 0561 WE32000 executable (TV) >12 long >0 not stripped >18 short &00020000 - 32100 required >18 short &00040000 and mau hardware required >22 short >0 - version %ld 0 short =0512 iAPX 286 executable small model (COFF) >12 long >0 not stripped >22 short >0 - version %ld 0 short =0522 iAPX 286 executable large model (COFF) >12 long >0 not stripped >22 short >0 - version %ld 0 short 0520 mc68k executable >12 long >0 not stripped 0 short 0521 mc68k executable (shared) >12 long >0 not stripped 0 short 0522 mc68k executable (shared demand paged) >12 long >0 not stripped # work for #![space or tab] 0 string #! >3 string /bin/csh csh commands text >3 string /bin/sh sh commands text # compressed data by 'compress' program 0 short 0x9d1f compressed data >2 byte 0x8c - with 12 bits >2 byte 0x8d - with 13 bits >2 byte 0x8e - with 14 bits >2 byte 0x8f - with 15 bits >2 byte 0x90 - with 16 bits # compressed data by 'pack' program 0 short 017436 packed data >12 long >0 not stripped 0 short 0522 mc68k executable (shared demand paged) >12 long >0 not stripped # work for #![space or tab] 0 string #! >3 string /bin/csh csh commands text >3 string /bin/sh sh commands text # compressed data byetc/fsck100700 0 2 122560 4201127455 6744 37777777777 L! A @.text .data @ @@.bss`%@`%@A.comment`ÐET`%@RU RP PejÐUlWVE =0|E =9 E  @jhP!@Yjh`!@Y'\EEE B=bt<=N?=Dt)=Ct'I=B>U@jU@_hV@hV@hV@hU@hU@hU@hU@hU@hU@hU@h6 @E RR6K0U@ hT @,JY=Fte=T&=SE RR+3YU@=Yis=qt,R=ht,=fVU@U@wU@l=n*U@U@O=tt,=sE RR2YU@U@FE =-tM, @Ph @uuuujYE 4h \@|EPh \@`E%=E%=`h \@ @Ph @uuuu;j耇Y M=yuU@U@7E BP @Ph @uuuuj1Y FM~E =-$=U@t5=U@t, @Ph @uuuujنY=U@t5=U@t, @Ph @uuuuVj蛆Y=U@t=U@tU@=U@tU@}h @5 @9{u25 @ @Ph @uuuujY W0YEjEE@P5FEEE Uċ E EċE9E|WFGY:jEPzY@PEUMĉEPEUE47zEj2EPW. =t EE9E|EUE EEW{YE+EEE4>@06@E U4+Yu ME ~9,8@t:5,8@h\\@ @Ph @uuu|jԄY908@t1h\\@ @Ph. @uuuuQj薄Y =-V@u ~-V@E UE4YM}jXYu}Uuuu u;EUuuu uuuuuEj YU$Wj$YT>@pE+T>@-T>@ -T>@9T>@r5T>@YV@=tѸ9T>@s, @PhQ @uuuu2jwY.t(t#hHWׂE܃}t uW‚G|͍EPj"\=u, @Phf @uuuujYE%=u fEf @}UWVS @=t$uh\\@Qwh @h\\@[\\@u%"Yt<&@h\\@ @Ph @iC \@Cf\@Y ]u}h\\@ @Ph@uuuujY h\\@ @Ph@B h@F*Yt ;)u"h@uuuuyj辁YYf'f@.@jj,ph\\@ @Ph@B h@)Yu"h@uuuu jOYYjjr,=w |$ @,V@h\\@ @Ph@ B f\@jj,=\@A(V@+@f\@fEf\@f\@ (t@G\@f\@jW f\@f\@ftjj+=tf\@f\@7=u1 V@0V@0V@$V@ V@? V@\@yfEf\@f\@\@\@;h\\@ @Ph.@@ \@f\@rjj*=t=tB=uJjhp@9jj,tPYN@ jhj@f\@\@\@;x\@+\@7@;h\\@ @Phx@@ =U@t6\@+\@f7@4>@h\\@ @Ph@? ,h@ 'Y=u\@+\@f7@4>@h .@h<>@-h\\@ @Ph@}? =U@u=U@t U@uh@U?YV@rh@>?Y=V@t5\@5V@5V@0 bEOuj#,EE\@Pj ,EhE@PE@P\0 EƀE\@9E|\@3\@:6@(.@3<6@,.@F2|10=\@t 5\@h\\@ @Ph@V>=\@t 5\@h\\@ @Ph@->V@\@\@\@+\@;t>\@+\@+\@+\@Ph\\@ @Ph@=V@7@9\@tsh\\@ @Ph8@= =U@t-\@7@4>@h\\@ @Ph^@l= #hk@$Y=u\@7@4>@=V@teh\\@ @Pho@$= =U@t,=U@u#V@h\\@ @Ph@< h@:$YuV@=V@u=U@t2=D>@t)h\\@ @Ph@< /7@\@h .@h<>@x*h&@h<>@f*h,6@h<>@T*=D>@t U@U@=U@tr^9(8@u  V@(8@7@=8&|=U@=D>@u =U@t7h@:#Y=uU@=D>@uu\@iU@`=U@t#h\\@ @Ph@; U@4h\\@ @Ph@r; =D>@u \@U@\@P\@P5\@h\\@ @Ph)@;=D>@u =U@t4h7@KLY=U@u = V@t8&|+7@(8@4>@*K=D>@p=U@te=\@u\h\\@ @PhM@: h\\@ @Phz@{: :h46@JYh@^:YjVyYh\\@ @Ph@9: &f\@f\@%=tZ%=@tK%=`t<%= t-%=t%=t%=Pu3uA\@PPh\\@ @Ph @o9t h @\9Yh @6\@jGP~%pU@9U@sU@U@f\@fKh\\@ @Ph @8 h@G Yu"h @uuuujwYYj%=@uP"\@3\@\@jWjj"tuhW{'Y_fftW\@Ph\\@ @Ph @48t h1@!8Yh>@nY=uj@W,.@f\@\@\@;X>@9M@tuh\\@ @PhD@7 \@tf\@4jj!ttjWuf\@\@\@;v= V@=.@t" &@ P5&@5V@h<>@2.@=8>@ &@ P5V@+8>@EEUE8u &@ 3i V@ЉU Eƀ@U EUE- E;V@s V@=U@h\\@ @Phm@^6 f\@ V@0V@0V@$V@\@jjY \@;u\gt=t7b,ujhX@[}jh^@Cijhd@/U;U@rEU@WVS}u %=` %= %=P%=u(9Gj G PEP4 ƅt=t=uE\@EEE"E0;t(E;u3P3UEtu5E;rE6;t+Vu37 EttE]u}ÃE9E|UWVS} 9Eu E<}u/\@EuUYuËEE"\@9E|.\@9E}$EDžuP!uO>>t6~uW6D j6Ut9E^E;rLU WVS}EE;=\@|;=\@}Wh .@h u]u}þ(.@FE}t ;} F;uP=.uFCu?E\@;\@Ph\\@ @Ph@2EF;uL=.uBC=.u7Cu0Ef>uV\@Ph\\@ @Ph@]2E/=/tuf>t F;uEECF;(6@} tu9E}k\@Ph\\@ @Ph@1Wh\\@ @Ph;@1l"h0V@h\\@ @PhI@1^}tk\@Ph\\@ @PhX@w1Wh\\@ @Phs@\1!h0V@h\\@ @Ph@81UWV};=\@| ;=\@Wh@\@@\@= \@Ph\\@ @Ph@0h@ Y=h@uuuuGjoYY\@Ph\\@ @Ph@f0= @h@Yu"h@uuuuj'oYY @u}jW:Wh@ \@@\@= QM@9M@rdh\\@ @Ph@/ = @u7h@Yu"h@uuuu2jwnYY @PX>@8\@jW\@(9>uM@8M@ ;5M@r;5M@rɡM@M@M@ M@8M@UWV};=\@|;=\@| u}þX>@J9>uCWh @M@-M@M@8X>@9M@u뱸몃;5M@rUPWVS}ff\@f; V@$V@ \@+ V@=}yGPaY \@+ V@;}`h\\@ @Ph @. h\\@ @Ph)@- h0V@h\\@ @PhO@-jlYGhy@Yh@Y؃tmEtajE%=@uPjj%jj}=w |$ @$V@ V@u]u}f V@ V@Fu V@G;rݡ V@3\@\@;w\@=shj@YwjjTUWV};=\@|;=\@| u}jWtAX>@!9>uM@-M@ă;5M@rjWQ \@UW};=\@| ;=\@V@\@@\@= h\\@ @Ph@+ h@Yuoh@uuuuFjjYYKh\\@ @Ph@p+ h@Yu"h@uuuuj>jYY}øjWXtV@\@@\@=x\@jW$U\@Puu h\\@ @Ph@*jjUPWVjjth=U@t=,V@u jW5$V@ V@/ V@\@EG\@jW5$V@ V@H V@E\@u}UWVS};=\@|;=\@|-\@]܋u}þ(.@Wh .@u(6@+ƹ)\@뺍F؍EE KEHE;wEP\@YEt&Wh .@t F؍EE`eEtEQ-\@(6@s =\@G=\@~ KEHE;w(6@UPWuh\\@ @Ph@(p%=t^%=@tO%=`t@%= t1%=t"%=t%=PFh0V@%=@u@@Ph\\@ @Ph@(%=@ 9G~eWYEuh@'Y69E(h+@'Y=U@uh4@'Y}hA@'YhC@'Y=U@uhL@r'YhY@`'Y%=h[@3'Y=U@uhd@'Yohq@ 'Yfh0V@h\\@ @Phs@&u6h@&Y=U@uh@&Yh@&Y h@&Yh@ YUWVSf} t9F;u9ujh@ujh@]u}\@\@;u @%=@u@@Ph\\@ @Ph@%F+PFPh\\@ @Ph@%h@ Y=bff)F.@OUWV tE9E D%=u=U@t =U@tz%=@u@Au}%=`t%= t%=Pu@@Puh\\@ @Ph@$}%=@ 9G~gWJYEuh@$Yn9E`h"@$Y=U@uh+@o$YWY(h8@X$Y%h:@H$Y=U@uhC@4$YWYhP@$Y%=uQu;hR@#Y=U@uh[@#YW;Yhh@#Yhj@#YU@~>%= u/jG PEP<# fEfE%E3%=u4=U@u+=U@u h@E#Yh@:#YWY9E th@q Y=WeYEU@;u<=U@uE%PEPhx@" h@"YWYyFU@;|uUW} \@\@jWj@Wh.@}U8WVS}P9G~GEj G PEP! E̋>\@9| \@9|6h@"]u}6h .@u6h@!̻(.@1C=.uCtC=.uCtf;u*m}Ƀ}R} q3jUPWVSEPh@_9}1h\\@ @Ph@uuuuj`Y fEfEEPu9}9uh\\@ @Ph@uuuu 3]u}U@ V@E%=`EU;uU@QEPEPO9|<=U@u3uh\\@ @Ph @uuuuM 3n @U;uMuh\\@ @Ph6@uuuu 3,E%=   V@u @Ph~@ =U@t =U@t 9@>@u h@Yh@Y,V@V@D>@\@3\@\@M@X>@X>@M@U@N@f\@U@(6@$.@.@&@H>@L>@V@jh,6@ u?3 uh\\@ @PhR@uuuu346@-f\@66@\@46@\@\@@@3E\@\@9\@}\@ 346@;tC46@P566@h\\@ @Ph@uuuu3h7@h7@h\\@ @Ph@\@@@3EE\@@EEEE9\@~ \@+EE졠\@EEET>@V@E= V@t2hs  V@!XEX &@ \@&@Su;]\@ \@E썀 EE荀 E衠\@EE EU@uxuh\\@ @Ph@h\\@ @Ph@ jPh \@hP!@ u"h@uuuujA[YYtEPh \@94|E%=uV@hh \@L>@|jh \@ZH>@}:h \@h\\@ @Ph@uuuu 3ù 3i E8>@= V@tWE䍀;~J+E  &@79 &@v  &@7 &@ T>@+Ћڡ &@ V@ЉU8>@EV@\@V@V@V@Ex\@ƆF8>@58>@ ;usڋ58>@EEFƆVhH>@EE9E|V@3V@V@x\@\@\@E\@Љ\@\@\@FUju@X<>@}0uh\\@ @Ph0@uuuu3juW@>@} @>@jh,6@u 3¸UWVS\@\@;\@@?؀= V@5V@;&@|&@ &@;rf=.@t &@ P5&@Vh<>@.@ &@ PSVh<>@uu\@&@3]u}É&@+&@ ƋSh&@t&@\@@?%Ћ3UPU@Euh\\@ @PhD@}=U@u =@>@}hO@^Y3À=U@hU@BYjPEPhP!@ =u"h\@uuuujWYYh^@YE=yt E=Yu xE=nt4E=Nt)h\\@ @Ph`@ EEZ32UPWVS3] EHЉU?u]u}@t ;] vu ;]sC׈E} u$Y EP@ u+E UWV3 uFE} u$Y EP@uՋƋu}UW}t%GuC=3u|\@\@}=4u|\@\@WY|\@G?t =:u?tGWY\@=\@~'|\@9\@=|\@~9|\@{h\\@ @Ph@uuuu \@3|\@@<>@9~u Ƌ]u}ÃubVSjh3L }Wh@4hFP3E =t:Wh@ F3VS2hWFPS t ~cF3UUW} 9GExjhp L }wh@q4hGPEp P =uE@Ƈ}jh@,ƇhwGPu ƇUu uh\\@ @Ph@(h!@sYu1h\\@ @Ph*@uuuujOY UW}GEEm "E3EME3E}؀=U@t =U@=U@tW\@9EtM%=t>\@P%=@ue@i@Ph\\@ @PhC@!%=@u2G3t"\@Ph\\@ @Phn@}Uh .@h<>@h,6@h<>@h&@h<>@5<>@hIY5@>@\IY5H>@PIY5L>@DIY=V@t h \@(YUWV\@Ph@<t-h@$Y8PGPj u8r04GPh@Ph@wh\\@ @Ph@G8P YFPFPh@ F=:u8Ph@UWVu} G֊ FEMuu}UW=(.@u}Ã=(.@~ 29(.@~#h\\@ @Ph@  V@¡(.@,.@7Y=t,.@w?t7Y=ty7h .@g]U WVSf:6@7@7@7@f7@7@7@=|\@t =\@u7@7@ \@5|\@;~ ~~?h\\@ @Ph@0,($  f7@f7@hPC؋ƙ3E9G<8u썅DUOf P8ÙE9u|ʍF\@Ɖ@hh(.@x(.@@,.@(.@G;L)<<0f(.@f:6@3,.@<6@G2|4>@048UW}GE M u}UWV8>@ 7E9Ft>u8>@58>@Ƌu}UWVS}fftTG(V@<tG;u.=r\@;wf\@]u}FC;tUWVS}f?t]u}f\@ff5\@GKG;u$Kƹ 3R0ˆff f3ffG;wո UW}G=.u%G=.uGuf\@f }øUWVS %=@u3f\@%=u=U@t =U@t0t!@%@Ph\\@ @Ph@ %=@ 9GWYEu4h*@Y=U@uh7@YKhH@Y9EhJ@Y=U@uhS@Y]u}h]@iYh_@YY=U@uhh@EYhr@3Y%=uIu6ht@Y=U@uh}@Yqh@YNh@YA%=u2=U@uA=U@u h@Yh@Y=&@uh@Yu3f\@f\@f\@ff\@uf\@f\@3\@A @(V@G\@f\@jW]f\@f\@f\@f\@fu+&@h\\@ @Ph@ 3=f\@f\@t"%=@ujj=t7f\@f\@&@h\\@ @Ph@U 3GtG G.@G\@f\@f\@\@BjWUu+&@h\\@ @Ph@ 3Kjjt`fuYfG.@jjj@Pt2EN@E\@;u EfEU@9Erׅ\@BG\@jWf\@f\@st#fG.@jjj?@P5f\@f\@\@Ph\\@ @Ph*@Ph\\@ @PhD@UWV}ujE P7> }uh[@&Vu 77 ;u u}uh`@3UWV}u} 3u}jE PwF> }uhe@!Vu wQB ;uGuhj@{3UjBYÐUuYPYUWVSd%@p@GF҈uEk@@d%@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRWd%@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWVS=%@uh@h@n5%@=%@t[5%@Y] tECֈ%@}5%@Y%@P@ u]  u]u}C:uOu@t k -0C:u;}c3UWEE EP;YtujWV Nj}Uu=YÐUWVSu] 3 FC FCFӊ CCG;}|]u}UWVSu] 3 FC FCFӊ CFG;}|ދ]u}Ð>ÐUPWE El!@ul!@t* l!@h`!@uum l!@ t }Ë& >ÐUW}W5YjjG P9 GGg G tg }ÐUPE EPuhP!@d UPEEPu uI UW}EEEljEEW2YEE2uu EP }ÐUWVS}u Dž%@%@ %@W=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_=%@uVctQ[tL%@} W@ Y GG@u %@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf%@fl9uEEP%@{EEP%@dEPWSt'=%@tu /$Fu @td=%@u%@} W Y GG@u %@W=u%@y%uF؃%%@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE%@}WyY3]u}ËGG=+t=-t =0t8EM%@} W(Y GG؃0i9E }9Eo%@} WY GGEh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}%@E%@E @s3UtE]%@E @E @E!@r5E!@r!@E!@AE0!@s6EE]@)EE8!@r݋EE 9P܃}t؁%@&@v&@E@!@t%@r05}fEf fEmE]mE܉E@0Ee H!@];r&=5|+%@u%@1}tCF0N<9%@]Ћuԋ}ËEE0]@EEsEE 9P EEEE!@MU]vEu}fEf fEm]mE܉EFUR0EMm]E !@E5(!@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G t$@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W t$@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}`%@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3Z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wt$@UWP!@;=p$@r3}ÃG uUWP!@ WY;=p$@r}UWV}tlG t6G t3WVYG PY}@%@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG t$@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G t$@+G?}3W t$@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G t$@+G?}3W t$@+W;}WY3UWV}G G u}}&u\@`@GW t$@*h!YGt@O G Wt$@GGVYtG uO @u}G d@WRt$@UWV}G t$@+G}G t$@Wu};7}7𐐐3ÐU@%@EEPhTu } E@%@3ø6ÐÐU WVSE9ET=T%@u %d,%d,%d,%d,%d,%d,%d,%d,%d,%dInvalid character device list with -C, option ignored %c %c option? %c Incompatible options: -n and -s %c Incompatible options: -n and -q r%c Can't open checklist file: %s %c %sBad magic number %x in superblock %c %sOnly support 1K file systems %c Can't get memory %c Can't fstat standard input %c %s** Phase 1 - Check Blocks and Sizes %c %sUNKNOWN FILE TYPE 0%o I=%u (NOT EMPTY)CLEAR%c %sLINK COUNT TABLE OVERFLOWCONTINUE%c %sPARTIALLY ALLOCATED INODE I=%u (NOT EMPTY)CLEAR%c %s** Phase 1b - Rescan For More DUPS %c %s** Phase 2 - Check Pathnames %c %sROOT INODE UNALLOCATED. TERMINATING. %c %sROOT INODE NOT DIRECTORYFIX%c %sDUPS/BAD IN ROOT INODE CONTINUE%c %s** Phase 3 - Check Connectivity ..%c %s** Phase 4 - Check Reference Counts UNREFUNREFUNREFUNREFBAD/DUP%c %sFREE INODE COUNT WRONG IN SUPERBLK %c %sFIXED FIX%c %s** Phase 5 - Check Free List (Ignored) %c %s%d BAD BLKS IN FREE LIST %c %s%d DUP BLKS IN FREE LIST %c %s%ld BLK(S) MISSING %c %sFREE BLK COUNT WRONG IN SUPERBLK %c %sFIXED FIX%c %sBAD FREE LIST %c %sSALVAGED SALVAGE%c %s** Phase 6 - Salvage Free List SET FILE SYSTEM STATE TO OKAY%c %sFILE SYSTEM STATE NOT SET TO OKAY %c %sFILE SYSTEM STATE SET TO OKAY %c %s%ld files %ld blocks %ld free %c %s*** ROOT FILE SYSTEM WAS MODIFIED *** %c %s***** REBOOTING UNIX ***** Reboot failed%c %s*** FILE SYSTEM WAS MODIFIED *** %c %sNO VALID '.' in DIR I = %u %c %sNO VALID '..' in DIR I = %u %c %sMISSING '.' or '..' in DIR I = %u %c %sBLK %ld %c %sDIR=%s %c %sBAD DIR ENTRY I = %u %c %sBLK %ld %c %sDIR=%s BAD%c %sEXCESSIVE BAD BLKS I=%uCONTINUEDUP%c %sEXCESSIVE DUP BLKS I=%uCONTINUE%c %sDUP TABLE OVERFLOW.CONTINUEDUP%c %sDIR pathname too deep %c %sIncrease MAXPATH and recompile. %c %sDIR pathname is <%s> I OUT OF RANGEUNALLOCATEDDUP/BAD%c %sEXCESSIVE BAD BLKS IN FREE LIST.CONTINUE%c %sEXCESSIVE DUP BLKS IN FREE LIST.CONTINUE%c %s%ld %s I=%u %c %s%s %c %s%s=%sDIRFILE (NOT EMPTY) (EMPTY) -- REMOVED (EMPTY) -- REMOVED (EMPTY) -- REMOVED %c %sNAME=%s (EMPTY) -- REMOVED (NOT EMPTY) REMOVEUNREFUNREF%c %sLINK COUNT %sDIRFILE %c %sCOUNT %d SHOULD BE %dADJUST%c %s%s %sDIRDEVICEFILE (NOT EMPTY) (EMPTY) -- REMOVED (EMPTY) -- REMOVED (EMPTY) -- REMOVED (NOT EMPTY) cdev %u/%u -- CLEARED -- CLEARED CLEARchkempt: blk %d out of range chkempt: Can't find blk %d /%c %sCan't stat root %c %sCan't stat %s %c %s%s is a mounted file system, ignored %c %s%s is pipedev, ignored%c %s%s is not a block or character device %c %s (NO WRITE) %c %sSize check: fsize %ld isize %d %c %sFile System: %.6s Volume: %.6s %c %sNEED SCRATCH FILE (%ld BLKS) %c %sENTER FILENAME: %c %sCan't create %s %c %sCan't open %s %c %s%s? no yes %c %sAnswer 'y' or 'n' (yes or no) %c %sInvalid -s argument, defaults assumed %c %sFatal I/O error %c %sFatal I/O error %c %sFatal I/O error SEEKREADSEEKWRITE %c %sCAN NOT %s: BLK %ldCONTINUE%c %sProgram terminated %c %sPOSSIBLE %s SIZE ERROR I=%u DIRFILE%c %sDIRECTORY MISALIGNED I=%u I=%u OWNER=%s %d MODE=%o %c %sSIZE=%ld MTIME=%12.12s %4.4s %c %sBAD FREEBLK COUNT %c %sDefault free list spacing assumed %c %sUNREF %s DIRFILE (NOT EMPTY) MUST reconnect (EMPTY) Cleared (EMPTY) Cleared (EMPTY) Cleared (NOT EMPTY) -- REMOVED RECONNECT%c %sSORRY. NO lost+found DIRECTORY %c %sSORRY. NO lost+found DIRECTORY %c %sSORRY. NO SPACE IN lost+found DIRECTORY %c %sDIR I=%u CONNECTED. %c %sPARENT WAS I=%u SEEKREADSEEKWRITEDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/passwdrQQQQQQQQQQQQQQQQQQQQQ??GA>???d@h@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFgqqhq(qqqqq%hgqghqUhehehehehehehehehehqqqqqqqqqqq|jqoqqqqqqqqqqqqqqqqjqqqqqqqqqq-qh|jlohhqqxhqqiqqqQqqiqqj-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@d@d@p$@d@pf@3.1bS03.1bS0etc/fsdb100755 0 2 100264 12541773 6702 37777777777 L" c#@.textc .data@@d@.bss @ @#.commentÐET @RU RP PycjÐU WVSjh@85E=tE=th@2Yj%cYjE pbf9@f}E 01YjbYhP9@PX =tE 0h@@2jbY ~9Et#uh3@2E=tjbYE=t =ugEPE phu@1 uEPE phC@1 9@P\Yu hg@.}jji 9@@f9@@@ @@59@59@W59@= :@t=@;59@59@)jjdf9@@P/|9A0|)f9@ph9@EKYf9@9@;t9@=uhF@L$Yf9@*!@QfP ftn@o@Pp= :@tI@\@P# !@9u @} h@D%Y@@= @ty @} h@$Y@@؀0|U9Ph@P.!9@f=9@! @} h@$Y@@ 9@f9@@9@jYf9@f=@u9@u hr@"Y9@ th@"Yf9@59@Y 9@kjPLXf=@u3ff@t h@C"Yh@6"Yif9@f@f@%9@f@%9@e @} h@S#Y@@؀09~h@P8-rf9@f=9@qf9@f|9@=~f9@ f9@ @} h@"Y@@=*tf9@9@PP=O=/vz=+|=!t\}= th=  9@9@9@=u @9@f9@f=9@9@=$= t==*=-=,B=.f=9@tm= t* @} h@q!Y@@= uf9@f9@f9@f9@9@9@h@Yf9@ @} h@!Y@@d=Aw-==8=<=>O=D%=B=Fr=iOg=d-=aB=W;=b+=g=f=hk=p-=m=lp=n=s=q =uUS @} h@Y@@؀0|9~"f9@h@Ps)]À0u EE .9Eu8t9uf9@뿋EE-0E @} h@Y@@؀0|9~h@P(EcU fEf@@PYu59@YEuE9@%fEEEU=~7f9@EUP= :@t@@P@=tg=tN=ti=t1=tK=t2=@t+f9@EP= :@tQ@OEU8EffUE&EUEjuEPD E@P3UPf=@uE E9Er9@9Es3h1@Yf9@US]=~=}=\- @}h@j\TC@\@Å= tA= ti=\ @}h@j\ C@\@ @}h@jtB@t@ @}h@jnB@n@ @}h@j0|B@0@x @}h@j?PB_@?@O @}h@j 'B@ @ @}h@PA @@ @}h@j A]á@@ U WVSfE f@@P)Yt]u}59@Yt㡰9@%fEU =~f9@hE@UYEЋ@=tj=t'=t6=tN=tN=t =@EfEf4EjSW EEucEj9@%P9@PLD E=ucf9@59@hU@59@= :@t%i@#@h@ZYf9@p@PB3hV9@PG E=sf9@59@hv@59@= :@t@@Puh@u= :@t@@Puh@u= :@@3f9@U W9@ Ef=@u#9@9E|h@?Yf9@3}Ë=!@E9Gu f R?!@u=!@EGfG j9@%P9@PB E=uLf9@59@h@59@= :@t/@ @6@P3Qhw9@P< E=f9@59@h<@I59@= :@tY@`@P%uhf@u= :@t@@Puh@u= :@/@1fG GWPW YGpUW}G!@!@x=!@}UE=tI=t#=t;=t=t=t=@u#9@t9@%=u3f9@f@h@ YUhjD9@9@f9@f9@f=9@t!@f@ f9@f9@h@Yjjh@ jh9@UWf}f=@u ǩ t3}h@VYf9@U}t3h@0Yf9@UPf=@u9@ E;9@r3f9@h@YUWVS59@`YEtf9@9@%EƋ]u}ËF=u(!@f@ f9@f9@h @nYÀ uh@P=\uU @} h@Y@@=0t=nt=tu G G GLjG @} h@^Y@@؀"!f9@9@= uN9@%+ЋŠ؀~/!@f@ f9@f9@h @kYG<|j9@%P9@P= E=uLf9@59@h( @59@= :@t< @ @C @P3>hu9@PA E=f9@59@hI @59@= :@tg @n @Puht @uu= :@t @ @PTuh @Du= :@/ @1UWS]} f9@9@ E9@%fE59@YEu#9@E9@]}ËE9@9@9@-b= $@u U+‹E=f@EEf9@*#q%9@E3fEu U+‹EЁf9@ f@EUЉ9@%9@EfEEUЉUu U+‹E=f@f9@59@Y%9@E@3fEu U+‹EЃ Ff9@ f@@E9@9@-@3@9@f9@ f9@h @Yf9@h @Y9@u759@h @59@= :@t @ @PlcuEEPYEE%Ph @99@9@9@f9@Oa 9@ @x@@ $9@f8xt~PEPh @ 9@@Ef9@Et"EPYf9@9@=| @}h@j d5@ @fE9@9@@9@9@OE9@9@Z9@EEGf9@f9@f9@EfEfuf9@f9@f 9@fu9@9@R;~h9@9@+f9@9@;~=E9@@f9@9@f9@f 9@fh @M Y59@h @< 59@= :@t @ @P ouEEPh @ 7euEEPh @ EEPh @ 9@9@9@f9@Ow9@9@ @}h@j s3@@ 9@9@P= :@t& @5 @P< 9@C @9@ff9@9@%== tw=@tA=`== @h@jl2 @}h@jd2@d@ @}h@jcl2@c@ @}h@jb=2@b@ @}h@jf2p@f@` @}h@jp1G@p@7@l@' @}h@j-1@-@9@z9@t7 @}h@9@Pd1>@@9@ ' @}h@j-41@-@9@Ef9@9@@9@8l9@@P9@@P9@@P= :@tQ @l @P9@p= :@t @ @P9@%= t=`uA9@@ %P9@@ %P= :@t @ @PN f9@j9@@ 9@kPEPX u9@P= :@t @ @P 9@=u' @}h@j /@ @f9@9@= f @}h@j /@ @9@@4P=YPh @]9@@8P YPh @@9@@utGNj]u}3UWVSu] 3 FC FCFӊ CCG;}|]u}UWVSu] 3 FC FCFӊ CFG;}|ދ]u}ÐUWV @8@9 @s @< @u 'YtVuj 0 jh @j/ W&YPWj/ jh @j/ u}ÐUPWE E@u@t* @h@uui @ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P* +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P* ECG t8WZ&YG t g GGuu G P=* E9Eus3lUWV}uW(YG uG tO G Dt1@"u}F @tV%Y;5@rGGG tG @+GPwG PI$ | GG듸9tO O G tg aUWV}G tG t w+Yg E GuaO }8u:@>@GW @GGu}G  B@WR@G W@V7(YtO @U}u3jYEh8j,EEE}t6E9Ev)EE&E+EEEEEMujL,h @Yujt,YufYjE,YjVYE}| uj,} }}}t EEP!YEE'Ujh @2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bVt$T$ :t#t:tt:tt :tu3^ËH^ÐD$Pt$Ð5 @t$ t$  Ð;+z+t3ÐUW(E+@@EEPY=H@iGQiWkW<E= @u= @uWEPEP<  @E @EE9E|)E9E}!E+D@EEPYG Nj}UWVEQUEE}} EQME< @E @ƙ5 @Ep @}| FFFtmnEN}|ۉ5 @}=!@ƹtmn=nu fV@3 uT@+FuT@;}fV@G @5 @!@ @u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}!@E!@E@s3UtE]!@E@E@ED@r5EL@rX@ET@AEt@s6EE]@)EE|@r݋EE 9P܃}t؁!@V!@vV!@E@t!@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+!@u!@1}tCF0N<9!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE\@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ed@E5l@]UWVS}}~bG %=utG9Gu?uG Du W:Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W&Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWtYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð L$tÐUW@ WY;=@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u:@>@GW @*h!YGt@O G W@GGVYtG uO @u}G  B@WR@UWV}G @+G}G @Wu};7}7𐐐*3ÐU @EEPhTu } E裄 @3ø6ÐÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @j Y @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}WV|$ t$L$Njʁ^_øÐT$ @Ru @+D$øT$ @3øÐ08dNL$08d:L$0+L$0L$0 L$05Ã%3ÐÐ @ÐcT$Ø@@(#)fsdb RTS 5.3b of Jul 1, 1988k#k##!$*%*%!$$*%*%*%*%*%!$usage: fsdb /dev/hd?? %s: cannot read superblock Bad s_magic %x %s(%s): 512 byte Block File System fsdb1bfsdb1b%s(%s): 1K byte Block File System %s: Invalid File System Type %d error checking off ? .B.A.D%#5.5lx%s: %5.5lx (%ld) %6.6lo%s: %6.6lo (%ld) default output format is now %s hexdecimal/bin/shsh-t! blk %#5lx %svalid blk %6lu %svalid inwarning: inode not allocated special device error checking off error checking on get(lngth) - %#x too long get(lngth) - %d too long get(%#x) - invalid length get(%d) - invalid length inode out of range block overflow seek error : %#lo (%#lx) %ld) write error : addr = %#lo (%#lx) %ld) : s_err = %#lo (%#lx) %ld) : nbytes = %#lo (%#lx) %ld) truncation error block out of range seek error : %#lo (%#lx) %ld) read error : addr = %#lo (%#lx) %ld) : s_err = %#lo (%#lx) %ld) : nbytes = %#lo (%#lx) %ld) allignment ? not char or block device non existent block block in I-list block overflow name too long seek error : %#lo (%#lx) %ld) write error : addr = %#lo (%#lx) %ld) : s_err = %#lo (%#lx) %ld) : nbytes = %#lo (%#lx) %ld) %6.6lo (%#5.5lx): %6.6ld): %4.4od%d: %4d * %6.7lo (%#lx):%ld): %6.6o %6d %5xi#:%#5lx md: i#:%6ld md: ugtrwxrwxrwx ln:%#x uid:%#x gid:%#x ln:%5d uid:%5d gid:%5d sz: %8lx sz: %8lu maj:%2x min:%2x maj:%3.3d min:%3.3d a%2d:%#5lx a%2d:%6lu at: %smt: %sct: %sno such print option block overflow cannot read superblock FSIZE = %ld, ISIZE = %u block overflow file too big Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/bin/shPATH:/bin:/usr/binshUnknown error: <@D@N@h@x@@@@@@@@ @@0@<@R@^@j@|@@@@@@@@@@*@7@M@\@h@@@@@@@@@)@F@a@p@@@@@@@@ @!@2@?@U@j@s@|@@@@@@@ @#@3@A@]@l@u@~@@@@@@@@@@>@c@@@@@@@ @@@'@0@9@B@K@T@^@h@r@|@@@@@@@@@@@@@@@@@&@0@:@D@N@X@b@l@v@@@@@@@@@@@@@+@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFBFLFLBFLKFLFLFLFLBnBFLzBBFLBBBBBBBBBBFLFLFLFLFLFLFLFLFLFLFLEFLIFLFLFLFLFLFLFLFLFLFLFLFLFLFLFLFLDFLFLFLFLFLFLFLFLFLFLKCE"GI CCFLFLCFLFLDFLFLFLKFL>DFLFLD-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@0B@0B@@8B@C@3.1bS03.1bS0@8B@etc/fsstat100755 0 2 31014 4201132204 7271 37777777777 Lݿ! '( @.text' .data@@( '@.bss@@ .comment1ÐET@RU RP P&jÐUTWV9Eth@h @jz&YE pjV%}Vh@h @ jH&YPW%=`tVh'@h @d j &YPhF@jhW! hPWo =tVhH@h @  j%Y;u@r^9Eth`@h @jy%Yh@h @j]%YPP(uVh@h @ j'%Y ~9EtVh@h @\ j%YEE=8&|tVh@h @4 j$YVh@h @ j$YUPWEEE@ uE@ t(EH uuu 3 E@ t }Ë2$3Ð$3Ðjt$t$9r3ã@ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoYh~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@ED @s3UtE]@EL @ET @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁@N@vN@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;= @r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uP@X@GW @*h!YGt@O G W@GGVYtG uO @u}G `@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$@@(#)fsstat 5.3b of Jan 27, 1988usage: fsstat special fsstat: cannot open %s fsstat: %s not a block device /fsstat: cannot read %s fsstat: root file system needs checking fsstat: root file system okay fsstat: %s mounted fsstat: %s not a valid file system fsstat: %s needs checking fsstat: %s okay 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFb""n"""""J"Vz"""""""""""""m """"""""""""""""{"""""""""" m """"e""""""{-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@p@p@ @x@@3.1bS03.1bS0 @x@@3.1betc/fuser100755 0 2 54100 4201127472 7125 37777777777 L! ?@.text? .data@@@@.bss0@0@.comment0XÐET0@RU RP P?jÐUPEIE@uu+E@uËE U@3EE@uUEPutuh@j>Y}|EE,jh@:>E=uh@Yj>Yuu uuS E9Et u9YUEE}tw}|EE+jh@=E=uh@Yj EPuu E9Et u@9Y}tuu u U0WVSEE9E}E 0h"@h@@Z j=YjhD@=E=u*E 0hN@h@@" hS@Yjm=Yh@h]@!=uhc@Y]ċuȋ}jh0@jh@@uhh@hj@h 8YEhp@hl@cth@hq@j<Yjhp@5p@uk EPh@th@h@Nj|<YjEPuu( EPh@th@h@ j9<YjEPuu EPh@t h@k@$P7Yh@=h@tk@$P5h@uu EPh@=uEPh@(t @(jhL@uuA kL@,P7Y@=@t0jEPuu kL@,P5@uuEPh@uEPh@t @(jh@uuk@0P6Y@EPh@Ht ft@jht@uubft@fu ft@=@t0jEPuu1k@0P5@uuE =-u+}t@@EEh0@1YE 4h#@h@@ h@E 4t5uh@E 4 =tj,hP@5@uZ3h(@h@@#Ehh|@iƐp@Ru|@|@=|@=@Vuuh|@<E\%UЉx@E(9EwIEk@PM9(s2uh@(b uh4@u:E,9EwIEk@PM9,s2uh@,  uh6@u3E`9EE`k@ M9s^uh@E`4b u>jh8@ElP u?@A@PuHtE C;@^F;5@ =@3@k0@k0D9Ewk0@k@PM9Jrouh@@k0t uf@k0D9Ew>k0@k@PM9Js"uh@@k0tx t&hB@uNtEC;@)hD@U YG;}8uz6Y1E 2=kt=uu@%@E 2Ph@h@@ FE 2uUP=h@tqEh@l@Tl@t;ul@puC t!uu l@pw =t3El@$@9E|UjEPu uAjEPuj u3U@t@;uZ@t@;mj,h|@5 @u@9`@DX@@;.@t@;@*@;u @9@t-@%=`@*@;E =UuhF@h0@ @PhU@h0@ h0@+YE =St=ct=pt=ruE PhZ@h@@ =@tE =St-=@t$f@f~j @P33U EPu =uËE fUfPfUfP.UPfUfP,3UP@PYE}tE0h]@UEE}ti}|EE+jhb@2E=uhl@QYjPu uuE9Et u.YE fP(fu3U 9@uujh@hv@}},jh|@1E=uh@Yjk2YE EEhuEp\uUPju u- =u)uh@h@@ h@PYEQuuu& =u)uh@h@@t h@YE+3ËEEEE9E|EEEE9E|UWV}t9~u=Ƌu}U=@uh@h@&@5@YU=@t5@(Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@%@u35@YUWuhh4@_ =6@WQY=:@WBY=:j EPW EW6%YPj:W$ 9Eu`WY}| `9E~aE>@t4=:t*j EPW EW$YPj:W\$ 9Et3}WY}| `9E~aEB@=J@=N@W^Y=R@WOY=V@W@Y=:@G?t =,u?tG=F@6@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V D@+V;}VS)Y}u +gEEvUXWVEE} j7V  u6tG =DFGfFfG fF fGFG #?8 >u}jju=) EjkEURu#) =trjEPuW" =uZu )YEtJE-PE@Pu%" U;u%EUJ ujuu( =ujuu( 9FrE9F|!u(Y}u$+Y7EFP`}u"u'Y}t u*Y3u}jEPub! F@)EFtjEPuB! } fG GfGG ?t8uju+E} {uEPu E=Ltu'YKEEjuud' E؋EEUWV@8@9@s @<@u YtVujC+ jh@j2+ W YPWj+ jh@j+ u}ÐUPWE E<@u<@t* <@h0@uu <@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W "YjjG P & GGg G tg }ÐUPWEEE@ uE@ t(EH uuu + E@ t }ËUWV}uW)$YG uG tO G Dt1 @"u}F @tV*!Y;5@@rGGG tG D@+GPwG PE | GG듸9tO O G tg aUWV}G tG t wE'Yg E GuaO }8u @#@GW D@GGu}G '@WRD@G WD@V#YtO @UWV}u ;u 3u}F;t N+GuU WVS}uE} tE 8$EQ@u5GEEQ@uE=+t =-u EGEu309Et "G=xt G=XuEQ@tEEQ@t E-0#EQ@t E-WE-7E;| 3]u}Ãu;09Eu1GQ@tG=xt G=Xu EEQ@t E-0#EQ@t E-WE-7+EGEQ@tEEQ@t E-0#EQ@t E-WE-7E;|} tE 8}tUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐%3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  D@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl,@Dž\9PtP؉PNKPPoY@Dž\sEtC0UE}u Et E.EE艅@ E@uEE E -ݝHN%=L%uBHu9O%=u Dž Dž,@CEO%=uDžl@@Dž\L% H ‰PDž(Dž0Dž4Dž<@Dž$@@PDP<9E}E<PLHQ ؃@t-E9D~ =0tDžlB@Dž\h~PW =uh~PhP@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}\@E\@Ex@s3UtE]\@E@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁\@@v@E@tm@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+\@u\@1}tCF0N<9\@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G D@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W D@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}0@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WD@UW @;=@@r3}ÃG uUW @ WY;=@@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG D@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G D@+G?}3W D@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G D@+G?}3W D@+W;}WY3UWV}G G u}}&u @#@GW D@*h!YGt@O G WD@GGVYtG uO @u}G '@WRD@UWV}G D@+G}G D@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6^ÐJÐU WVSE9ET=$@u<(@ $@$@ (@@(@@$@@ @E@3؋=@E&;5@$@E@E=w= @jY@@;t?3Ee ƹ3tL3+‰EEE2@+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @@0E+E-@@;t@@@$@~Љ@;5@v@@@ 9= @u @ @G(=@95 @u= @7tލ;r;l%;UWV}5@%@9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}ønÐT$,@Ru ,@+D$ø9T$,@3øÐ%3Ð@ÐT$ð@@(#)fuser 5.3b of Jan 27, 1988@@@@@@@@@@@@vprocfileinodemountswplonsnddsnddnrcvdrcvddufstypCopyrval: did not find '%s' /dev/kmem/dev/kmem/dev/kmem/dev/kmemUsage: %s { [-[ku]] file } ... /dev/kmem%s: /dev/kmem/unixnlist:vprocCopyrval: did not find '%s' procfileCopyrval: did not find '%s' fileinodeCopyrval: did not find '%s' inodemountnsnddsnddnrcvdrcvddufstypIllegal option %c ignored. %s: not found crserverSU REMOTE USER(S) %7d%c(%s)/dev/kmem/dev/kmemswplo/dev/kmem/dev/kmemSeek error for file desc %d: Read error on file desc %d: /etc/passwdrrUnknown error: <@D@N@h@x@@@@@@@@ @@0@<@R@^@j@|@@@@@@@@@@*@7@M@\@h@@@@@@@ @ @) @F @a @p @ @ @ @ @ @ @ @ @! @2 @? @U @j @s @| @ @ @ @ @ @ @ @# @3 @A @] @l @u @~ @ @ @ @ @ @ @ @ @ @> @c @ @ @ @ @ @ @ @ @ @' @0 @9 @B @K @T @^ @h @r @| @ @ @ @ @ @ @ @ @ @ @ @ @ @@@@&@0@:@D@N@X@b@l@v@@@@@@@@@@@@@+@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFB'B'B'&B'B'B'B'jB'vB'B'B'B'B'B'B'B'B'B'B'B' B'$B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'B'&  "$ B'B'B'B'B'B'B'&B':B'B'-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@,'@,'@@@4'@(@3.1bS03.1bS0@@4'@etc/gettydefs100644 0 2 3103 4243357447 7766 37777777777  9600# B9600 CLOCAL CS8 # B9600 SANE IXANY TAB3 CLOCAL #login: #9600 110# B110 CLOCAL CS8 # B110 SANE IXANY TAB3 CLOCAL #login: #110 150# B150 CLOCAL CS8 # B150 SANE IXANY TAB3 CLOCAL #login: #150 300# B300 CLOCAL CS8 # B300 SANE IXANY TAB3 CLOCAL #login: #300 1200# B1200 CLOCAL CS8 # B1200 SANE IXANY TAB3 CLOCAL #login: #1200 2400# B2400 CLOCAL CS8 # B2400 SANE IXANY TAB3 CLOCAL #login: #2400 4800# B4800 CLOCAL CS8 # B4800 SANE IXANY TAB3 CLOCAL #login: #4800 19200# B19200 CLOCAL CS8 # B19200 SANE IXANY TAB3 CLOCAL #login: #19200 1200UUCP# B1200 HUPCL CS8 # B1200 IGNPAR CREAD ISTRIP ICRNL IXON BRKINT OPOST ONLCR ICANON ECHO ECHOK ISIG CS8 IXANY TABS #login: #1200UUCP MODEM1200UU# B1200 HUPCL CS8 # B1200 IGNPAR CREAD ISTRIP ICRNL IXON BRKINT OPOST ONLCR ICANON ECHO ECHOK ISIG CS8 IXANY TABS #login: #MODEM1200UU MODEM300# B300 HUPCL CS8 # B300 SANE IXANY TAB3 HUPCL #login: #MODEM300 MODEM1200# B1200 HUPCL CS8 # B1200 SANE IXANY TAB3 HUPCL #login: #MODEM1200 MODEM2400# B2400 HUPCL CS8 # B2400 SANE IXANY TAB3 HUPCL #login: #MODEM2400 MODEM4800# B4800 HUPCL CS8 # B4800 SANE IXANY TAB3 HUPCL #login: #MODEM4800 MODEM300A# B300 HUPCL CS8 # B300 SANE IXANY TAB3 HUPCL #login: #MODEM1200A MODEM1200A# B1200 HUPCL CS8 # B1200 SANE IXANY TAB3 HUPCL #login: #MODEM300A MODEM300B# B300 HUPCL CS8 # B300 SANE IXANY TAB3 HUPCL #login: #MODEM1200B MODEM1200B# B1200 HUPCL CS8 # B1200 SANE IXANY TAB3 HUPCL #login: #MODEM2400B MODEM2400B# B2400 HUPCL CS8 # B2400 SANE IXANY TAB3 HUPCL #login: #MODEM4800B MODEM4800B# B4800 HUPCL CS8 # B4800 SANE IXANY TAB3 HUPCL #login: #MODEM300B 800 SANE IXANY TAB3 HUPCL #login: #MODEM4800 MODEM300A# B300 HUPCL CS8 # B300 SANE IXANY TAB3 HUPCL #login: #MODEM1200A MODEM1200A# B1200 HUPCL CS8 # B1200 SANE IXANY TAB3 HUPCL #login: #MODEM300A MODEM300B# B300 HUPCL CS8 # B300 SANE IXANY TAB3 HUPCL #login: #MODEM1200B MODEM1200B# B1200 HUPCL CS8 # B1200 SANE IXANY TAB3 HUPCL #login: #MODEM2400B MODEM2400B# B2400 HUPCL CS8 # B2400 SANE IXANY TAB3 HUPCL #login: #MODEM4800B MODEM4800B#etc/helpadm100754 0 2 3650 4201127544 7376 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" trap 'rm -f /tmp/*$$ ; trap 0 ; exit' 0 1 2 3 15 : ${EDITOR:=ed} HELP= DATABASE=${HELP}/usr/lib/help/db SCRNLEN=17 LIB=${HELP}/usr/lib/help SYSTEM_LOG=${HELP}/usr/lib/help/HELPLOG export EDITOR HELP DATABASE SCRNLEN LIB cat <<-! helpadm: UNIX System On-Line help Administrative Utilities These software tools will enable the administrator to change information in the help facility's database, and to monitor use of the help facility. choice description 1 starter 2 glossary 3 commands 4 prevent recording use of help facility 5 record use of the help facility q quit ! CHOICE= while [ "${CHOICE}" = "" ] do echo "Enter choice> \c" read CHOICE case $CHOICE in 1 ) #change starter information ${LIB}/admstart ;; 2 ) #edit glossary information ${LIB}/admgloss ;; 3 ) #add commands information ${LIB}/editcmd ;; 4 ) #logoff information > /tmp/$$ a=`ls -o /tmp/$$ | grep root` b=`ls -o /tmp/$$ | grep bin` if [ -z "$a" -a -z "$b" ] then echo "The only users who may prevent monitoring the help facility are root and bin." else /bin/chmod a-w ${SYSTEM_LOG}  fi rm /tmp/$$ ;; 5 ) #logon information > /tmp/$$ a=`ls -o /tmp/$$ | grep root` b=`ls -o /tmp/$$ | grep bin` if [ -z "$a" -a -z "$b" ] then echo "The only users who may enable monitoring the help facility are root and bin." else /bin/chmod a+w ${SYSTEM_LOG} fi rm /tmp/$$ ;; q ) #quit ;; * ) #bad input echo "Illegal input--try again." CHOICE= ;; esac done exit nitoring the help facility are root and bin." else /bin/chmod a-w ${SYSTEM_LOG} etc/haltsys100700 0 2 6754 4201127510 7443 37777777777 L! l <@.textl .data<@<@ <@.bss @ @.comment ÐET @RU RP P9jÐUjj} hd@YjYUuYÐUWV@@9 @s @<@uYtVuj jh@j W]YPWjs jh@jb u}ÐUujÐ2BÐUWV}GGu+Ƌu}øÐ @Ð@@@(#)haltsys 5.3b of Jan 27, 1988haltsys: Survived `shutdn'Unknown error: @@@@@(@2@L@^@p@@@@@@@@@@@#@3@B@S@g@{@@@@@@@@@@(@C@V@r@@@@@@@@,@F@O@X@a@y@@@@@@@ @ @ @( @: @H @` @~ @ @ @ @ @ @ @ @ @ @) @2 @; @N @W @` @{ @ @ @ @ @ @Y @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @( @2 @< @F @P @Z @d @n @x @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @" @, @6 @@ @J @c @m @} @ @ @ @ @Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error3.1bS03.1bS0Error 100Error 101etc/init100700 0 2 112254 4217033175 6762 37777777777 L^6<" 0v( @.text0v .data@@w@.bss4@4@( .commentÐET4@RU RP PujÐU`u5@=tu u)7EE}u 5@%9Eu5@ EE5@ 95@u&h@h6@j uYE)X@5@=X@| d5@5@5@X@jNNY58@h@EPJ EPNYh@58@iEu!j58@h@& X@ +u+kYjh6@jG jh6@j6 jMYE5@%t\@5@9\@t69\@u X@5@\@5@% 9X@t 9X@t 9X@uI=X@| X@d5@5@X@5@5@X@5@jh6@jG X@5@=5@uh,2'Y35@j'Y5@%X@95@ 95@t 95@t 95@u15@5@X@5@5@X@jh6@j 0X@5@=X@| d5@5@5@X@E 95@u # 5@5@%t \@5@9\@u, 9X@t 9X@t 9X@t}t2Ejh6@j 5X@YPh@8$=u5@5@X@ =5@t5@5@ 9X@Ljh6@jX jJY5@9X@" 9X@ 9X@ 9X@UPWh @z#Yjjp|1jjj- thjcpBjh"@h@5P@5P@*5|4@5P@h$@" 5T@hE@"jhP@5T@5T@*j/$YjpY5@%tq95@|d95@Wj GPpX@5@=X@| d5@5@5@X@5@5@fg }5@WcY=g}tEE 9E{X@5@=X@| d5@5@EX@UW5@9X@t3=6@ fg ;=6@r =6@G U;u2GU;u&GU;uGU;uu3 9X@t*E=t5X@ YU#uZG uOG tffO G uUtfO @jGPUn GP YfO "G tfO ;=6@PEP=j!Y=6@!_.=5@uG %C=Ct;=6@rܸ95@u2=6@"G %C=Cuj GPm;=6@rjj!Y=6@TG %= uGP YfO .G % = ujWj G ufG ;=6@rUWDž5@%t5@%5@\@5X@/ Yf EPYu j( YhS@YG %=uEtE#\@=tsE#\@E#DžG ux9\@u#E=t`E t 5@9X@tHEVtEPWv.EPWgWdY=tjWj fG PEPff=tøU WVS}u EG u' 9X@t 9X@t 9X@uMFtMFMEPUBYuEGfGfGf= uhE+G=x}sF@PVh@ 5X@Y=0t5X@qY=5uh@YX@ ]ԋu؋}G= ~E+G=|݋EGfG5@jji}F(t%*uujB tu*uuj$ tuR9)EFEFEFEifEfEF@P2YPEPj{ 3E0@8FGFGFGhjhu`YCE2|h@jvh@h@5T@$#5|4@vh!@9Es"E4,@u5T@hT@c3݃jYjiYfUWVS}3ۋ56@F tA;u/FW;u#FW;uFW;u uX3tNu;F u0FFFfFFfFfF fF;56@f;56@uƋ]u}UWVS}=|@EE/hf@5@@\|@u'|4@EjYE9E|Ǹ9Et=|@u&u5@@hh@ ]؋u܋}E_j W~E5|@)Y؃Eu EE9E69E( j a: E===4;u -@GtG-@GtG-@tuGtG-@t\fGq+E E=| 9E~ Euu We u E|fGE EfGfGE uE=\t EQE ;r EFӈ\u E=\u3ۋÈE5|@<'Y؃}t O9Eu=EE GfGfufGfGfufGE @;uE Eu5|@[Y|@ }ExE=0|'E=6E-0ȸf GTE=a|'E=cE-aȸf G E=st E=Su/fOE9ul9EEu EڋE4@u 9u6GtEE@ufGEfE@fW E 9ErfGfu EEh@u IXE @U5|@YZY|@UWEH|c= w\|X$@3RKD=6/ (@! Nj}USE-|>= w7|3$@0*1&2"3456Sa bc?Ë]UWV}jj:b(#jjj thjbu5jWtbhjaj1Yj WRbj|bYu}UWVS=X@|X@d5@5@X@ \@0Dž+E=uE=EPYjj2aj j ؃thja3Dž0@XYF2|hT@juh@h@5T@#5|4@uh!@9s(4,@5T@hT@Y3ڃj aYSt Y=tfC PEP=tËE#t 4@NUhcj_hcj_hcj_hcj_hcj_hcj_hcjp_hcja_hcj R_hcj C_hcj 4_hcj %_jj_jj_jj^hj^hj^UWju^9EuX@E5@=6@GfG;=6@r5@% 5@hcui^}UhjR^5@UPWVEPSY=6@?G %=u,G;u$fg fEfG5@% 5@ ;=6@r;=6@ufEPVhj]u}U(WDžj5H@)]=t$DžPhTY 9E uh@)4Y 5@%5@E=@jj]jUYjjthj\uw juh@h@5T@]5|4@uh!@9s(4,@5T@hT@k3ڃjYj]YPEP= WbY=tt&PhTW sWYhj\E=jj[j!Yjjthj[uwjuh@h@5T@)5|4@uh!@9s(4,@5T@hT@73ڃjYj[YPEP= UWjj[2t3jjZEtVjjE@ PR 6@h@56@NEuQYhjZhjZkh@h0@j.YEh@h0@h0@QYEPh@h0@ =uE= tE= tE= t€eE=0|9E=6.EPh@h0@ E,@PaZYE=St E=su*EPh@h0@ c@P!ZYE=6~^E=9Sh,@h0@EPh?@h0@ EPhZ@h0@ =uE= u?EPh]@h0@F EPhv@h0@ =uE= u؃}k;EPNY;uhjXE%}UjuX96@t^W6@huQXUWVS} 6@1C %=uC t jSjp fC ;6@r4jc YhjWEujWj7 Y/tt=6@U0X5@9Et 55@+Y3EjutWE9E~Nj]u}ÃfG ft;=6@r;=6@uj7 Yt hy@ YGfGGGGfGE fG fGUPW}G tG t }G%EfG EU(WVS} E܋jV j F P FGF GF GF fGfFG%fFG%fFfEfFF P.YVYtjSVU j C PF PrU E=t)==juVd, 5X@YfF}tE=Su tfC 55@YfFX@fd5@fF5X@YPh@F P+ h@h@F P+ VYuFPh@ h@5<@JEt(jju ujj$VGuLY]̋uЋ}U(WV_EW;E %fGE %fGfGG Pu,YW}ܹ _jW WYuGPh@<h@5<@IEt+jju ujj$EPFuEKYuЋ}}2UPWVS}G= t= t=.t`=/tV=_tL=a| =z~8=A| =Z~$=0| =9~ @]u}Ë=/uGG= t= t= tuλ4@ C֊ F4@s;r4@UWVh0@1JYh0@&JYh0@JYjANYj9NYj1NY h @5H@+Hu3h @5H@ Huh@5D@GW YW YjW%jh0@%jh0@%EPhTG PM _t fEf5@f%5@u}UPh@5D@jGE}u h@5D@IGEEU@EP5H@a+=tNEP54@H+=t5E t*Eĩ tEU;uEU;u3UHWEh@5L@Fu5L@h@}ÍEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPhQ@WHEȸ9EfEf5@fEf5@fEf5@fEf5@E5@EEȍŰMȊ5@Eȸ9E|E5@E5@E5@5@t=5@t 5@EWVGY}UW 5H@_*Y5H@5D@h[)Yh@5L@;Ejh`@h5@)O jht@h5@O 5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@Ph@W[HtW0FY%j(Y}UWVjjNjYjjjy thjNvh@5H@Du5H@h@]Uh5@hTG PJ =t f%5@h5@hTG PI h5@hDG PI WMEYh[(Yh@5L@oCu5|4@5L@h@ 5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@P5@Ph@WHWvDY$jMYu}VAY=tUW95@ujjLbPh0@c h@h0@!uuuu uh0@h0@aDYjYjjj@ thjvLu_YPh0@h@h0@uuuu uh0@{h0@CYjLYiW#Y=tVUPW}EP#Y<$@tE+$@;(@|E$@}3UW}WY =5@t}U*u Y}t 35@øUWV}u GNuu}UP9Eu E PBth&@h0@p jKYnE P=Q=3t.O=1t/=0E+EE=2E=5t#=4EE=6E=ct#D=at$=StXE E =b^E l=stE=q:EHjC"YEuhD@h0@ jhJYEPu[#=EP5H@>#=EU;EU;5H@#Y=uhc@W YjIY5H@u =u=|4@Euh|@h0@` E|4@h@ YjIYEtuh@u! u?YE h@h0@ jKIYuj I=uh@h0@ jjIYUWVS}G PYtTG t@"G t@G t@SV ]u}VdCY33UPWVj!Y5l@&Y=u-h5l@=u5l@Y=tp@=uK3Bu}3EEEPhh4d@*C uEud@p@Grp@=th@p@Ph@p@P|U$EfEލEPu u%E%= u EU;tu 3!YEPh!u  UWjh @9FH=u:hLPHc; =tpHAYǹ}Wj6@=6@uh@YjFY6@Љ6@DUh!@9E s"E 4,@u5T@hT@3ݐ FF3Ð).FÐT$8upT$ Rt$  ÐUE PuUWVS3h@9YEuE@j/u"t@E|PuW u |P{|4@=td=t$= tV= t8=u2FwBV YDž|@|DžxTCwt |4@ hlpø9x||4@xxt|xBM t ɉ u|Ph@xUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U WV=@}uEPh@u$E$3t|4@3u؋}hhh@B @}jh@B@}3j$h4@5@7 =$t 34@+jj5@> -$4@4@qGF$r4@3VUWV}f4@fG=$@G4@[f54@ftftft =uI4@W;u:4@W ;u+4@W ;u4@W ;u 4@u}aM3UWV}4@fFft6F=t F=u j F PG P u Ƌu}u3U,WVE}Թ =@|+jj5@ E=tE%=t 3ű}ÍEPYuBEPpYuE Pj5@} &jj5@< jj5@< j$EP5@@ =$t E4@uԋ E4@uj5@ E?UWV9@tjj5@< 34@GF$r4@u}UWV9@t 5@g;Y@4@34@GF$ru}Uu5Y=O~3uh@4Ujh@ÐUWEE EPT;YtujW Nj}Uu=YÐ ?3ÐP?Ð?3Ð?ÐUWV@h!@9|4@s |4@<,@u4YtVuj> jh&@j> W3YPWj> jh)@jn> u}Ð>>ÐUWV} 75t?F EF F F3҉V3@=at=rt=wt3u}ÀN jju9 N G=+uf N UW}} WY}ËGGUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P8 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P\8 ECG t8W.4YG t g GGuu G P8 E9Eus3lUPE EPuh0@d UPEEPu uI UW}EEEljEEW 1YEE2uu EP }ÐUWVS}u Dž4@4@ 4@Wm=~*uDžF DžDžk -0F-@u؃u DžÉ=lt h9uF؅[uPV-@tDžl.@؃nt_=4@uVctQ[tL4@} W@ Y GG-@u 4@W.=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf4@fl9uEEP4@{EEP4@dEPWSt'=4@tu /$Fu -@td=4@u4@} W Y GG-@u 4@Wx=u4@y%uF؃%4@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$p*@EE EE4@}WyY3]u}ËGG=+t=-t =0t8EM4@} W(Y GG؃0i9E }9Eo4@} WY GGE@WR3@G W3@VG'YtO @맋jP'G,ËjP'-,U}u3jYEhKju+EEE}t6E9Ev)EE&E+EEEEEMuj(+h4@YujP+YufYj!+YjVYE}| uj*} }}}t EEP!YEE'Ujh4@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu ; ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_Ð$ÐUEu$juh+@h+@h+@ujYjj(Ejj(EEPYE;Et 9Euuj(uj(9EuEËED$Pt$Ð54@t$ t$  Ð;((t3Ð T$tÐ!(ÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐUPWVu#Yt8EPu|%E%= ujh+@&} 3u}þfEft EU;uuh+@h4@EPh4@EPh4@|=EU;u1E%= u!t EU;uW"Y4@\jEPW =TjjWQ" NuW!Y3 &3Ð&3ÐV|$3O|$ ыt$ D$^ø<&ÐUW} 9EtFG tG9GwG9Gu+?u&GuW) YGHGUE}ø &&3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  3@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl-@Dž\9PtP؉PNKPPoYh~PW =uh~Ph-@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}5@E5@E/@s3UtE]5@E/@E/@E<0@r5ED0@rP0@EL0@AEl0@s6EE]@)EEt0@r݋EE 9P܃}t؁5@b5@vb5@E|0@t%5@r05}fEf fEmE]mE܉E@0Ee 0@];r&=5|+5@u5@1}tCF0N<95@]Ћuԋ}ËEE0]@EEsEE 9P EEEET0@MU]vEu}fEf fEm]mE܉EFUR0EMm]E\0@E5d0@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 3@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 3@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}4@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W3@UW0@;=3@r3}ÃG uUW0@ WY;=3@r}UWV}tlG t6G t3WVYG PY}|4@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 3@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 3@+G?}3W 3@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 3@+G?}3W 3@+W;}WY3UWV}G G u}}&u6@$:@GW 3@*h!YGt@O G W3@GGVYtG uO @u}G ,>@WR3@UWV}G 3@+G}G 3@Wu};7}7𐐐*3ÐU|4@EEPhTu } E|4@3ø6ÐÐU WVSE9ET=4@u<4@ 4@4@ 4@4@4@4@4@4@4@E@3؋=4@E&;54@4@E@E=w=4@j Y4@@;t?3Ee ƹ3tL3+‰EEE24@+4@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή54@4@0E+E-4@@;t4@4@4@4@~Љ4@;54@v4@4@4@ 9=4@u 4@4@G(=4@954@u=4@7tލ;r;l%;UWV}54@%4@9u54@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ4@Nj]u}WV|$ t$L$Njʁ^_øÐT$4@Ru 4@+D$øT$4@3øÐ0vNL$0v:L$0+L$0L$0 L$05Ã%3ÐÐ|4@ÐcT$@@(#)init 5.3b of Mar 14, 1988xxt@@@@@@@@@0& =;@t@ @ @@@#@(@-@6@@@J@V@^@ @>BIPW^elsz @ @/dev/console/etc/utmp/etc/wtmp/etc/inittab/dev/systty/dev/syscon/etc/ioctl.syscon/bin/su/bin/shS%s.lckw+Cannot create %s New run level: %c SINGLE USER MODE -n-execlp of %s failed; errno = %d Trying %s -iInternal process table is full. PATH=/bin:/etc:/usr/binCommand is respawning too rapidly. Check for possible errors. id:%4s "%s" exec Going to SINGLE USER MODE exec INITSH-coffrespawnondemandoncewaitbootbootwaitpowerfailpowerwaitinitdefaultsysinitrestartrCannot open %s errno: %d exec exec exec PATH=/bin:/etc:/usr/binINITSH-cdate -sINITSH-cINITSH-cr+ ENTER RUN LEVEL (0-6,s or S): %cwill change to state %c will change to state %c Usage: 0123456sS %c is not a valid state %c bad character <%3.3o> %cInternal process table is full. run-level %c%.12ssystem bootfailed write of utmp entry: "%2.2s" r+failed write of utmp entry: "%2.2s" r+r+r+r+r+r+rwarning: %s does not exist, default settings assumed %x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%xw%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x wUnable to open %s wCan't open %s. errno: %d %x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x:%x INIT: INIT: Usage: init [0123456SsQqabc] Standard input not a tty line Can't unlink /dev/sysconCan't link /dev/syscon to %s **** SYSCON CHANGED TO %s **** Usage: init [0123456SsQqabc] Must be super-user r+rw/devconsolesystty/dev/sys/varinit fatal error: unable to allocate space for process table Command %s -c "%s" failed to execute: %s /bin/shPATH:/bin:/usr/binsh/etc/utmp[433333333Unknown error: l!@t!@~!@!@!@!@!@!@!@"@"@+"@="@N"@`"@l"@"@"@"@"@"@"@"@"@"@#@$#@3#@B#@Z#@g#@}#@#@#@#@#@#@#@ $@#$@2$@@$@Y$@v$@$@$@$@$@$@$@$@%@(%@<%@Q%@b%@o%@%@%@%@%@%@%@%@%@&@,&@=&@S&@c&@q&@&@&@&@&@&@&@&@&@&@&@'@0'@G'@n'@'@'@'@(@!(@*(@3(@<(@E(@N(@W(@`(@i(@r(@{(@(@(@(@(@(@(@(@(@(@(@(@(@(@)@)@)@$)@.)@8)@B)@L)@V)@`)@j)@t)@~)@)@)@)@)@)@)@)@)@)@)@)@*@*@#*@2*@C*@[*@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error~>{>{>{>>~>>>>>>>>>>>>~>>>>??GA>???/bin/shsh-c/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFRS]]^S]\]]]]}S:S]FSjS]SSSSSSSSSS]]]]]]]]]]]U]]Z]]]]]]]]]]]]]]]]kU]]]]]]]]]]\SUW]ZSS]]S]]UU]]]\] U]]kU-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@<>@<>@3@D>@?@3.1bS03.1bS03@D>@etc/telinit100700 0 2 112254 4217033175 11207 1etc/init37777777777 etc/ioctl.syscon100644 0 2 54 4201130323 10331 37777777777 526:1805:8bd:3b:0:7f:1c:8:15:4:0:0:1a:0:0:0 ?@3.1bS03.1bS03@D>@etc/layouts/defaults/20.0100644 0 2 42 4206127025 11577 37777777777 a 6400 b 32720 c 0 d 0 .spares 48 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/20.a100644 0 2 33 4206127015 11657 37777777777 a 0 b 32720 d 0 .spares 48 res 48 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/40.0100644 0 2 41 4206127025 11600 37777777777 a 6400 b 71770 c 0 d 0 .spares 0 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/40.a100644 0 2 32 4206127016 11661 37777777777 a 0 b 78170 d 0 .spares 0 ares 0 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/50.0100644 0 2 42 4206127025 11602 37777777777 a 6400 b 75680 c 0 d 0 .spares 80 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/50.a100644 0 2 33 4206127016 11663 37777777777 a 0 b 71680 d 0 .spares 80 res 80 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/80.0100644 0 2 43 4206127025 11606 37777777777 a 10112 b 153000 c 0 d 0 .spares 0 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/80.a100644 0 2 33 4206127016 11666 37777777777 a 0 b 153000 d 0 .spares 0 pares 0 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/87.0100644 0 2 43 4206127025 11615 37777777777 a 10112 b 168610 c 0 d 0 .spares 0 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/87.a100644 0 2 33 4206127016 11675 37777777777 a 0 b 168610 d 0 .spares 0 pares 0 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/140.0100644 0 2 43 4206127025 11663 37777777777 a 20112 b 254880 c 0 d 0 .spares 0 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/140.a100644 0 2 33 4206127015 11742 37777777777 a 0 b 274990 d 0 .spares 0 pares 0 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/170.0100644 0 2 45 4206127025 11670 37777777777 a 12880 b 273660 c 0 d 0 .spares 180 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/170.a100644 0 2 35 4206127015 11747 37777777777 a 0 b 273660 d 0 .spares 180 res 180 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/190.0100644 0 2 45 4206127025 11672 37777777777 a 12880 b 280680 c 0 d 0 .spares 200 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/190.a100644 0 2 35 4206127015 11751 37777777777 a 0 b 280680 d 0 .spares 200 res 200 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/310.0100644 0 2 45 4206127025 11664 37777777777 a 12880 b 497580 c 0 d 0 .spares 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/310.a100644 0 2 35 4206127015 11743 37777777777 a 0 b 497580 d 0 .spares 254 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/320.a100644 0 2 33 4236151527 11752 37777777777 a 0 b 639400 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/130.a100644 0 2 33 4206127015 11741 37777777777 a 0 b 245000 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/145.a100644 0 2 33 4206127015 11747 37777777777 a 0 b 285000 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/150.a100644 0 2 33 4206127015 11743 37777777777 a 0 b 291660 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/160.a100644 0 2 33 4206127015 11744 37777777777 a 0 b 283660 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/300.a100644 0 2 33 4206127015 11740 37777777777 a 0 b 586680 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/330.a100644 0 2 33 4206127016 11744 37777777777 a 0 b 597580 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/70.a100644 0 2 33 4206127016 11665 37777777777 a 0 b 138400 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/90.a100644 0 2 33 4206127016 11667 37777777777 a 0 b 178800 d 0 .spares 0 4 res 254 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/130.0100644 0 2 43 4206127025 11662 37777777777 a 20112 b 245000 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/145.0100644 0 2 43 4206127025 11670 37777777777 a 20112 b 264880 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/150.0100644 0 2 43 4206127025 11664 37777777777 a 12880 b 291660 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/160.0100644 0 2 43 4206127025 11665 37777777777 a 14880 b 283660 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/300.0100644 0 2 43 4206127025 11661 37777777777 a 40880 b 545800 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/330.0100644 0 2 43 4206127025 11664 37777777777 a 56880 b 597580 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/70.0100644 0 2 43 4206127025 11605 37777777777 a 10112 b 128290 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/90.0100644 0 2 43 4206127025 11607 37777777777 a 10112 b 168690 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/305.a100644 0 2 33 4206127015 11745 37777777777 a 0 b 595880 d 0 .spares 0 pares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/325.a100644 0 2 33 4206127015 11747 37777777777 a 0 b 640180 d 0 .spares 0 pares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/335.a100644 0 2 33 4206127016 11751 37777777777 a 0 b 656280 d 0 .spares 0 pares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/305.0100644 0 2 43 4206127025 11666 37777777777 a 40880 b 555000 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/325.0100644 0 2 43 4206127025 11670 37777777777 a 56880 b 583300 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/335.0100644 0 2 43 4206127025 11671 37777777777 a 56880 b 599400 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/defaults/320.0100644 0 2 43 4236151514 11666 37777777777 a 12880 b 626520 c 0 d 0 .spares 0 4 ٗ]@dJ@\\dJ@dJ@LvH]@]@y\vHٗ]@)@dJ@)@zdJ@\N<77144741S@_vH]@]@D[)@dJ@etc/layouts/scsi.config100644 0 2 744 4237421373 11656 37777777777  Type Size Heads Sec/Track Interleave Sec/Cylinder 11 40 4 26 9 103 21 40 4 26 9 103 28 40 4 26 9 103 3 40 4 26 9 103 11 50 4 26 9 103 4 50 4 35 17 140 4 70 4 35 17 140 15 90 5 35 17 175 21 90 5 35 17 175 28 90 5 35 17 175 15 130 9 35 17 315 4 130 9 35 17 315 5 140 9 35 17 315 4 145 9 35 17 315 15 145 9 35 17 315 4 150 8 35 17 280 15 150 9 35 17 315 15 155 9 35 17 315 4 320 15 35 17 315 0 0 0 0 0 0 *@etc/layouts/driveclass100644 0 2 321 4237421361 11574 37777777777 # # %W% %D% %Q% # drive classification file # one class per line, the class is the useable size of a drive in # binary megabytes (1024 * 1024) 20 40 50 70 80 90 130 140 145 150 160 170 190 310 320 380 390 40 15 90 5 35 17 175 21 90 5 35 17 175 28 90 5 35 17 175 15 130 9 35 17 315 4 130 9 35 17 315 5 140 9 35 17 315 4 145 9 35 17 315 15 145 9 35 17 315 4 150 8 35 17 280 15 150 9 35 17 315 15 155 9 35 17 315 4 320 15 35 17 315 0 0 0 0 0 0 *@etc/layouts/config100644 0 2 1326 4201130433 10714 37777777777 # # %W% %D% %Q% # # this is the mapping between configurable partitions and # there devices, it also includes a short description of # what the partition is usually used for, for the root drive # and on the add on drives. The quotes are very important # do not remove them. # a 1 "main swap area" "extra swap area" b 2 "root file system" "file system" c 3 "not used" "not used" d 4 "not used" "not used" e 5 "not used" "not used" f 6 "not used" "not used" g 7 "not used" "not used" h 8 "not used" "not used" .spares 9 "spares for grown bad sectors" "spares for grown bad sectors" j 10 "not used" "not used" k 11 "not used" "not used" l 12 "not used" "not used" .restart 13 "restart memory image" "restart memory image" on drives. The quotes are very important # do not remove them. # a 1 "main swap area" "extra swap area" b 2 "root file system" "file system" c 3 "not used" "not used" d 4 "not used" "not used" e 5 "not used" "not used" f 6 "not used" "not used" g 7 "not used" "not used" h 8 "not used" "not useetc/login104755 0 2 110224 4253774574 11041 1bin/login37777777777 etc/labelit100755 0 2 37670 4201130335 7422 37777777777 L! 2P HX@.text2 .dataX@X@P X3@.bss@@H.comment?ÐET@RU RP. P=2jÐUhj1Uhj1h@E pu D,@ME 9Et.9Et$9Eth@h@j1Y9Eush@E puujh@E p u3jh@E p uh@h@uj;1Yh@YKjE p50E=}h@h@1j0Yjh@E p$ ujh"@E p  jIYhhD*@u& j,Yjh&@hD*@ u2jh.@hD*@ uh3@h@jR0YR*@PS*@PhL*@hD*@hP@=T*@u hy@YhT*@YPh@9EuS*@=~j/Yh hD @u& E= th@h@j/Y5F"@h#@h#@h@X ~9<$@u19@$@u$D"@-PF"@Ph@D"@-P5F"@h@ =#@u hD@Yh#@|YPhi@9Euj.Yh@YE p ph@ E ph@h#@I E p h@h#@1 un)YjE p-Ejh@E p ujh@E p tCh@hD*@$E p h@hL*@ hhD*@up- |h hD @uW- }h@h@j-Yj-YUW3 EU ;uEt EE G;}|۸}3UuYPYUWVS@@GF҈uEk@@@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUPWE E@u@t* @h@uuQ @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËÐUWEEEEEE2EEEPuu  ENj}ÐUWV}u ;u 3u}F;t N+GuUW(E+D@EEPY=L@iGQiWkW<E=@u=@uWEPEP< @E@EE9E|)E9E}!E+H@EEPYG Nj}UWVEQUEE}} EQME<@E@ƙ5@Ep@}| FFFtmnEN}|ۉ5@}=@ƹtmn=nu fZ@3 uX@+FuX@;}fZ@G@5@@@u}Ëƹtmn)EFƹtmn9E} Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅H(@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H0@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@EH@r5EP@r\@EX@AEx@s6EE]@)EE@r݋EE 9P܃}t؁@B @vB @E@t @r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE`@MU]vEu}fEf fEm]mE܉EFUR0EMm]Eh@E5p@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uH,@P0@GW @*h YGt@O G W@GGVYtG uO @u}G X4@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裈@3ø6ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ0$3NL$0$3:L$0+L$0L$0 L$0 Ã@ÐT$\@@(#)labelit 5.3b of Jan 27, 1988-Usage: labelit /dev/r??? [fsname volume [-n]] -n/dev/rctrctlabelit: `-n' option for tape only Skipping label check! labelit: cannot open device /dev/rctrctVolcopyFinclabelit: tape not labelled! %s tape volume: %s, reel %d of %d reels Tape has never been written. Written: %slabelit: cannot read superblock Current fsname: %.6s, Current volname: %.6s, Blocks: %ld, Inodes: %d FS Units: 2Kb, Blocks: %ld, Inodes: %d FS Units: 512b, File system has never been mounted Date last mounted: %s NEW fsname = %.6s, NEW volname = %.6s. %.6s%.6s/dev/rctrctVolcopy%.6slabelit cannot write label Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFFFFFFFFnFzFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" FFFFFFFF>FF-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@h4@h4@@p4@5@3.1bS03.1bS0etc/layout100700 0 2 77550 4237421313 7322 37777777777 L!~" @ZP$P@.text@Z .data@@P$[@.bss`?@`?@P.comment`ÐET`?@RU RP PYjÐU5M@h@hp;@" h@hp;@"h@hp;@"h@hp;@r"h;@hp;@`"he@hp;@N"5M@h@hp;@6" h@hp;@$"5M@h@hp;@ " h @hp;@!5M@h0@hp;@! hF@hp;@!jXYUhE M@=@t@=@t@q=@t@T@E@E )@R4Y|F@E )@R4kYF@@@@@)@@D@@5)@.Y@-a|=w |$@)@P@5P@hT@Lhr@hT@G15P@h@xLh~@h@"15P@h@SLh@h@0hc@u u E==@u @E+)@=}E )@ D@ D@D@h@5 D@h,@h@h?@/=@th?@h@jh?@ }h'@hp;@ um>Yh @@YUWkD@hǀF@@3khF@@G|kD@h D@+@F@}UTEh#'@ YhP;@jOEP uEqE=dt&=mt=quEY`ECJCEu&E8@WtEPhF'@U EPh]'@A }UUhht'@" YhP;@jOEP E= EuE8@uh'@ Y3ÍEPYEEEEkEhU9F@t 9E|9E|h'@ Y3밋EEkEhF@uh'@] 3h'@L YhP;@jOEPG E= EuE8@uh(@Y3%EPYEEEEkEhU9F@t 9E|9E|h9(@Y3EEhV(@YhP;@jOEP u E= u3EPPYE}hu(@@Y3kkEhU9F@}$ukEhF@uh(@38kEhU)F@kEhF@3U3Ujh(@?E}h(@hp;@Rjl?YuYEt!E @u:YËE=ct=muJ@ՍxPY=uh)@,Yj>YE@@uh)@hp;@ j>YuU WVEEE3Kh<)@khF@Pu}*khF@tkhU9F@~khF@U}G|9EuhE)@hp;@ j&>YkEh@9F@t"kEh+F@kEhF@kEh)F@u}UhEhk)@hD@13Euhm)@hp;@j=YB@(D@ D@ D@bEujPEP Ch0D@h4D@h,D@h$D@EPEPh)@u E!B@9EuE9Et 9Euu@4Y}u0D@$D@,D@,D@$90D@u 0D@D@UPWVS}E8@uJG8@u=+t =-u EG8@u 3]u}ø0+Ëk 0+G8@uރ}t뾋븐UPWV9)@ueE9)@}#E )@ =-u E Au u}h)@E )@4 u )@΋E )@ )@=)@:tWu=)@tOLjEE E 00YPE 0j"; h)@0YPh)@j; jEPj: E )@ )@@)@u)@)@?F=:)@@U )@t)@@U )@)@)@@)@;E|l=)@tOLjEE E 0/YPE 0j?: h)@/YPh)@j$: jEPj: )@?GE )@)@ )@)@8E )@ )@@)@u)@)@)@UWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V t>@+V;}V4Y}u +gEEv8ÐUWV)@D,@9@?@s @?@<*@u-YtVujs8 jh*@jb8 W-YPWjO8 jh*@j>8 u}ÐUWV} /t?F EF F F3҉Vt>@=at=rt=wt3u}ÀN jju3 N G=+uf N UPWE El;@ul;@t* l;@h`;@uu l;@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UPWEEE@ uE@ t(EH uuu ' E@ t }ËUPE EPuhP;@d UPEEPu uI UW}EEEljEEW+YEE2uu EP }ÐUWVS}u Džd?@h?@ d?@W1=~*uDžF DžDžk -0F8@u؃u DžÉ=lt h9uF؅[uPV8@tDžl9@؃nt_=h?@uVctQ[tLd?@} W@ Y GG8@u d?@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfd?@fl9uEEPd?@{EEPd?@dEPWSt'=h?@tu /$Fu 8@td=h?@ud?@} W Y GG8@u d?@W< =uh?@y%uF؃%d?@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$L5@EE EEd?@}WyY3]u}ËGG=+t=-t =0t8EMd?@} W(Y GG؃0i9E }9Eod?@} WY GGE@rGGG tG t>@+GPwG P | GG듸9tO O G tg aU W}tE6@uE}ÍEPu u ؅~8E=@?@"E 6@s6@6@뫋E=}!@?@"06@E 86@]r؋ȸEE}^E (6@]wϸEEM3UW}E@6@uE}EH6@vEE]EX6@rE P6@EE]E`6@rEh6@vEE뒐W|$D$ L$~% ‹ʁD$_ÐUWEEEEEE2EEEPuu # ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø& "&ÐV|$3O|$ ыt$ D$^jjt$ 9rã@?@ÐUW} 9EtFG tG9GwG9Gu+?u&GuWYGHGUE}øUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  t>@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl\8@Dž\9PtP؉PNKPPoYh~PW =uh~Ph8@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}l?@El?@E:@s3UtE]l?@E:@E:@E;@r5E;@r;@E;@AE0;@s6EE]@)EE8;@r݋EE 9P܃}t؁l?@?@v?@E@;@t}?@r05}fEf fEmE]mE܉E@0Ee H;@];r&=5|+l?@ul?@1}tCF0N<9l?@]Ћuԋ}ËEE0]@EEsEE 9P EEEE;@MU]vEu}fEf fEm]mE܉EFUR0EMm]E ;@E5(;@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G t>@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W t>@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}`?@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wt>@UWP;@;=p>@r3}ÃG uUWP;@ WY;=p>@r}UWV}tlG t6G t3WVYG PY}@?@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG t>@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G t>@+G?}3W t>@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G t>@+G?}3W t>@+W;}WY3UWV}G G u}}&uM@Q@GW t>@*h!YGt@O G Wt>@GGVYtG uO @u}G U@WRt>@UWV}G t>@+G}G t>@Wu};7}7𐐐3ÐU@?@EEPhTu } E@?@3ø6:Ð&ÐU WVSE9ET=T?@u"@D"@L"@W"@["@b"@o"@v"@~"@ST506ESDISCSIusage: %s [-f] [-r m|c] [-d]|[-e]|[-m] driveid layoutdev f allow layout to be editted d use default for drive class e use existing layout for drive class m use installed layout as starting point r create restart partition of m)ax mem size or c)urrent mem size usage: %s -p driveid p print drive layout usage: %s -l a|b|c|d|e|f|g|h|.spares|.restart driveid l print size of specified partition usage: %s -c driveid c print drive configuration ofdempr:cl:a:x/driveclass/defaults/config%s%s.%sdrinfo: %s degenerate drive map file or configuration no entry for %d size drive %d %d %d %d %d %s %d Are you sure you want to rewrite the layout information in %s (Y/N) ? You must answer (Y)es or (N)o. Exiting without modifying the layout information That is not a valid reponse. You must answer (Y)es or (N)o. Installing a %d megabyte drive. Bad magic number 0x%04X, no drive configuration information present. Unknown drive type %d. %s%c%sNo partition information on the drive. Disk %c, partition %d, is not a unix partition.512102420484096unknown manufacturerQuantumCMIMiniscribeMicropolisFujitsuVertexPriamHitachiTulinMaxtorSeagateEpsonSyquestMitsubishiCDCTandonMicroscienceRodimeSeimensNECESDI controller ST506 controller cyls %5d heads %5d secpt %5d SCSI controller sectors %d manufacturer: %s manufacturer: unknown sector size %4s unknown sector size %4d track skew type %3d interleave type %3d drive size %3d no precomp precomp starts at cylinder %4d %-10s%3d '%s' '%s' %s%s%-10s%10d %s%s %ld %ld extras%s%s%s %ld %ld %ld rCan not open %s. %dError in layout, drive class (%d) unknown. rCan not open %s. Too many configurable areas, all others skipped %s%dextrascurrently unassignedcurrently unassignedToo many configurable areas, extras lost. %s%s.%s layout: %s %s/%d.%sNo existing layout file, using default. %s/%d.%s0aUnknown starting point rCan not open %s. %s %dskipping format error in layout file, bad line is: a.sparesbnon configurable area skipped: %s All numbers are in 512 byte blocks. total available: %7ld blocks assigned: %7ld blocks overused: %7ld blocks left: %7ld current assignments: %2d: %-8s %7ld (%-30s) %s/%d.%sCan not create layout file. wCan not open layout file as stream. %s %d extrasCan not open %s for writing. Can not write layout. Reboot to use new layout. command q)uit, m)ove, d)isplay: Unknown command '%c'. Unknown command '%o'. move blocks from partition #: Please use the partition number. There is no such partition There are no blocks in partition %d. move blocks to partition #: Please use the partition number. There is no such partition number of blocks: Moving %d blocks would not be very useful. Partition %d has only %d blocks, you can't take %d from it. /dev/memCan not open /dev/mem to get memory size. layoutUnknown restart partition flag %c .restartNo restart partition to reconfigure. rCannot open SCSI config file %d %d %d %d %d %d: option requires an argument -- : illegal option -- --Unknown error: H,@P,@Z,@t,@,@,@,@,@,@,@,@-@-@*-@<-@H-@^-@j-@v-@-@-@-@-@-@-@-@.@.@.@6.@C.@Y.@h.@t.@.@.@.@.@.@.@/@/@5/@R/@m/@|/@/@/@/@/@/@/@0@0@-0@>0@K0@a0@v0@0@0@0@0@0@0@0@1@1@/1@?1@M1@i1@x1@1@1@1@1@1@1@1@1@1@ 2@#2@J2@o2@2@2@2@2@3@3@3@!3@*3@33@<3@E3@N3@W3@`3@j3@t3@~3@3@3@3@3@3@3@3@3@3@3@3@3@4@ 4@4@4@(4@24@<4@F4@P4@Z4@d4@n4@x4@4@4@4@4@4@4@4@4@4@4@4@5@5@75@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error(((((((((((((((((((((??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF8AA*8ALAAAAAI88A868Ay8888888888AAAAAAAAAAA:A)?AAAAAAAAAAAAAAAA7:AAAAAAAAAAQA8:<)?88AA8AA!:AAAuAA9AA7:-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@(U@(U@p>@0U@V@3.1bS0etc/mkunix100755 0 2 103640 4215620470 7341 37777777777 L! @c@#T@.text@c .data@@@#d@.bssP'@P'@T.commentPPÐETP'@RU RP PbjÐUEE +@E=dt*=it.=o=8@u_@8@@=4@u@4@h@$ ,YW8@h@$ XY 5+@h@hd#@4) jaYh@u u! E=E9@}R=4@uE @ 4@58@h9@$ UYPjt58@h]@$ n Y=4@u[ =/u Ph<@ V Ph<@:4@=@t54@hz@hd#@( =8@u 8@@=@~58@54@h@hd#@'EP54@$:t58@h@$ "YEP58@9uAEU;u58@h@$ .Y5@54@8@u=8@54@h@ sh@58@T@u358@h@ $=@~h!@hd#@`&h,@5@u+h3@$ (Y,@=Lt+hK@$ Y=@~hc@hd#@%j,@@P5@& t358@hv@ !f=,@,@=s5,@Ph@ 3@pjjh,@R =t354@h@ }=@~,@Ph@hd#@$ EEPfEP5@ u354@h@ `EPh/@_4uE,@EPh5@B4uE,@EPh;@%4uE,@E,@9EE=,@u2hW@h@@ X=,@u2ht@h]@ =,@u2h@hz@ E5@+YEjh5@u# t+h@$ Yh@54@ot h@YE=@~8E@E@PE@h@hd#@w"E@uSh@E@k2t6h @E@N2tE@h @E9EL5@YE 5@Y@)@}5@jvR@P@5@Y3uf,@f ,@j3Y,@E,@f,@+@,@jj5@! t358@h- @ 5@jjh,@^L=t358@hO @ a5@jjh,@ L=t358@ho @ sju5@ t358@h @ )5@jhh+@oK=t358@h @ r5@OYh58@2t58@h @3UWV3=+@u7/u Nju}F,@;p|3UjEPj2 uSY,@uh @uuuuYu5,@j ,@PPeSY+@uh- @uuuubYE,@@E+@EFEUuLY@%EEU EHEu^LY@%EE,@@9E|UU@Eh] @YEt-EEE=@t6uhc @hd#@ h~ @uuuu Yh @@YEt EPUh @uuuu DYE,@ht@jj@uuuh @h,@ h @YEt1EPU@)E=@t6uh @hd#@0 h @uuuu  YEPUh @mYEt EPUh @uuuu q YEE+@+@%+@E,@ht@jhuuuh8 @hD,@ @Eh= @YEt EPUhC @uuuu@  Yhe @YEt7EPUE,@h4@jj uuuh @h+@& hn @uuuu u YU=@~5u uuuuu E-+@(Ph @hd#@$9E u 5@pYUBEEE}ua9EuW5@@YUB5@juuF=th% @uuuu  YE E@ju u1+ hA @u *u E+@EUP=@tEpu hG @hd#@EUP UP@@f@ f@"UP$=@~ u5YËE3E}tuNYEtۃ}u$u$h @uuuu  =@~uh @hd#@ ju$ RE=u$u$h4 @uuuu O =@~u$hC @hd#@ juuM =u-unMYu$h_ @uuuuP  =@uhq @hd#@" uuh @hd#@ =@~uuh @hd#@E9EvEuuuF E;Et8h @YuLYu$h @uuuu1 5@juuC=t(uhLYh @uuuuMYE)E}.uTOYu'LY/UE-+@(Ph^ @hd#@ uh @hd#@ Eph @hd#@ Ep h @hd#@ Eph @hd#@ Eph @hd#@ Eph @hd#@i Eph @hd#@Q E@ Ph @hd#@7 E@"Ph @hd#@ Ep$h@hd#@ UT@E@Eh@TYEt EPUh@uuuuXYj@@,@P@p t'54@h6@uuuuqE@pjjEP=thY@uuuu%YE=uWEP5@ Euh@uuuuYuAYEtEPU@E;,@ufE7E;,@ufE#E;,@ufEfEf~fEfEfu&E9ErE9EsfEfEfE5@jjEP@=t'58@h@uuuuEEE@pjjEP=t'54@h@uuuuO5@jjEP?=t'58@h@uuuun EMhE@E;,@=@~",@9Et5,@h9@hd#@ +@@pjjEP8E=thN@uuuurYEE,@,@J+PHYEuh@uuuuYE+@EGE0NAY-h@E0Z#h@E0@#h@E0&#uEЋE0@Y=jE0EP-# 3EEẺEE0EEP@E0@Y@E̋EPUE9ErE9EsfEfEfEfEEE5@jjEP==t'58@h@uuuu/EE,@@9E=@tuh@hd#@ E,@=@~uh@hd#@ u?FYEuh @uuuu>Y@pjE-Pu =th0@uuuu]YEẺEă=@~4uhY@hd#@, 5@ YPhu@hd#@  5@jjEPc<=t'58@h@uuuur5@jE-Pu<=t'58@h@uuuu(5@juu;=t'58@h@uuuuG=@~5@$ YPh@hd#@ u4GYu+GYUuuu uPP5+@h@hd#@Uuuu u=@t 5@f?Y=8@t 58@"Y=@t 5@YjHYU=@t 5@?Y=8@t 58@C"Y=@t 5@VYjGYUE=t$=ts=u\h"@E @P<Vjh@G=uh@h)@j_GYEuhO@!3ø9}PP< ;th8@ DžE E 9|)LCU@uYuËE@ =ejE@-<PEp Epjj7G9t@u9p@=l@t 5l@.CYkGWЉUwYEjGEPw8 wjjh\+@=uj5\+@+@Yl@tUw\+@-Pjl@@P\+@;u'juw ul@\+@J tjuw 3u}Ëp@Gt@F9\+@3ڡl@FPhT'@8jVhT'@? \'@T'@뤐UPu Yhx@u8Eu3ujjEP=tEjju ujjEP=u rE u u%:Y3jhz@EP^ E f@ ejjuv upujj E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 03YPE 0jC> h@3YPh@j(> jEPj> @?GE @@ @@8E @ @@@u@@@UWEE EPl9YtujWR Nj}Uu;YÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwue< ÉE)G?}3W h&@+W;}W7Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P7 E}|EE}øUXWVEE} j7Vd u6tG =DFGfFfG fF fGFG #?8 >u}jju=7 EjkEURu#7 =trjEPuW0 =uZu 7YEtJE-PE@Pu%0 U;u%EUJ ujuu6 =ujuu6 9FrE9F|!u6Y}u$9Y7EFP}u"u5Y}t u8Y3u}jEPub/ F@)EFtjEPuB/ } fG GfGG ?t8uju9E} {uEPu. E=Ltu5YKEEjuud5 E؋EEUWV@8@9+@s +@<@u.YtVujC9 jh@j29 W.YPWj9 jh@j9 u}ÐUPWE E`#@u`#@t* `#@hT#@uu `#@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P3 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G PT3 ECG t8W&/YG t g GGuu G P 3 E9Eus3lUPE EPuhD#@d UPEEPu uI UW}EEEljEEW,YEE2uu EP }ÐUWVS}u Dž`+@d+@ `+@Wq=~*uDžF DžDžk -0Fu @u؃u DžÉ=lt h9uF؅[uPVu @tDžlv!@؃nt_=d+@uVctQ[tL`+@} W@ Y GGu @u `+@W2=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf`+@fl9uEEP`+@{EEP`+@dEPWSt'=d+@tu /$Fu u @td=d+@u`+@} W Y GGu @u `+@W| =ud+@y%uF؃%`+@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@@EE EE`+@}WyY3]u}ËGG=+t=-t =0t8EM`+@} W(Y GG؃0i9E }9Eo`+@} WY GGEh~PW =uh~Pht @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}h+@Eh+@E"@s3UtE]h+@E"@E"@E"@r5E"@r#@E#@AE$#@s6EE]@)EE,#@r݋EE 9P܃}t؁h+@+@v+@E4#@ty+@r05}fEf fEmE]mE܉E@0Ee <#@];r&=5|+h+@uh+@1}tCF0N<9h+@]Ћuԋ}ËEE0]@EEsEE 9P EEEE #@MU]vEu}fEf fEm]mE܉EFUR0EMm]E#@E5#@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G h&@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W h&@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}P'@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wh&@UWD#@;=d&@r3}ÃG uUWD#@ WY;=d&@r}UWV}tlG t6G t3WVYG PY}+@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG h&@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G h&@+G?}3W h&@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G h&@+G?}3W h&@+W;}WY3UWV}G G u}}&u,@1@GW h&@*h!YGt@O G Wh&@GGVYtG uO @u}G  5@WRh&@UWV}G h&@+G}G h&@Wu};7}7𐐐3ÐU+@EEPhTu } E裸+@3ø6FÐ2ÐU WVSE9ET=D'@u ` %ld: option requires an argument -- : illegal option -- --Unknown error: <@D@N@h@x@@@@@@@@ @@0@<@R@^@j@|@@@@@@@@@@*@7@M@\@h@@@@@@@@@)@F@a@p@@@@@@@@ @!@2@?@U@j@s@|@@@@@@@ @#@3@A@]@l@u@~@@@@@@@@@@>@c@@@@@@@ @@@'@0@9@B@K@T@^@h@r@|@@@@@@@@@@@@@@@@@&@0@:@D@N@X@b@l@v@@@@@@@@@@@@@+@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error&1#1#1#1R1&1R1R1R1R1R1/1R1R1R1R1R1&1R1R181??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF@JJ AJ,JJJJJ)A@J@AJYAiAiAiAiAiAiAiAiAiAJJJJJJJJJJJCJ HJJJJJJJJJJJJJJJJCJJJJJJJJJJ1JACE HAAJJ|AJJCJJJUJJBJJC-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@5@5@d&@$5@6@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0etc/link100700 0 2 1020 4201130453 6666 37777777777 LO! D@.text .data@@D@.bss@@.commentÐET@RU RP PjÐU9Etjh@jM jcYE ppu 3PEYø𐐐 3ÐÐ@ÐT$UÐ@@(#)link 5.3b of Jan 27, 1988Usage: /etc/link from to 3.1bS03.1bS0 D@.text .data@@D@.bss@@.commentÐET@RU RP PjÐU9Etjh@jM jcYE ppu 3PEYø𐐐 3ÐÐ@ÐT$UÐ@@(#)link 5.3b of Jan 27, 1988Usage: /etc/link from to etc/printers100644 0 3 115 4221256727 7612 37777777777 # Printer configuration file lp:local:dumb::9600 cs8 -parity opost -nl -tabs .data@@D@.bss@@.commentÐET@RU RP PjÐU9Etjh@jM jcYE ppu 3PEYø𐐐 3ÐÐ@ÐT$UÐ@@(#)link 5.3b of Jan 27, 1988Usage: /etc/link from to etc/makettys100755 0 2 63470 4235413056 7657 37777777777 L/u" LJH @.textLJ .data @ @K@.bss '@ '@H.comment gÐET '@RU RP P.jÐUWVSh@0@Y9E~E phD @$9E~Th @E pu=E p h0@k$0@=/t#h @h@?j .Y0@j| YEYEPh!P  tፅPhD @h @h/@h/@YUP/@fEh @hD'@h$'@hD'@uZ('@%= u0'@U;t6hD'@{Yt)hD'@hD @h @h/@Qh/@dYEPh!hD'@5 thD'@hD @h @h/@ h/@ YUW}t}%}Wu h @EPEPYG~Ѹ (3ÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐N'3ÐUWV @l@9T!@s T!@<0 @uYtVuj& jh* @jr& WiYPWj_& jh- @jN& u}ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWEEEEEE2EEEPuu  ENj}ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø& %ÐUEu$juh@h|@ht@ujYjj%Ejj$EEPYE;Et 9Euuj$uj$9EuEËED$Pt$Ð5 '@t$ t$  Ð;$$t3ÐW|$3OъD$ u@_3_øv$3Ð<^$Ð J$3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" UUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV7YF Dt*F uuj E+EP` tV/YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlp@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}P'@EP'@E@s3UtE]P'@E@E@E@r5E@r(@E$@AED@s6EE]@)EEL@r݋EE 9P܃}t؁P'@'@v'@ET@ta'@r05}fEf fEmE]mE܉E@0Ee \@];r&=5|+P'@uP'@1}tCF0N<9P'@]Ћuԋ}ËEE0]@EEsEE 9P EEEE,@MU]vEu}fEf fEm]mE܉EFUR0EMm]E4@E5<@]UWVS}}~bG %=utG9Gu?uG Du W:Yu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W&Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WY+Åu>G Dt+G uEE Pj u tWtYEEWUWVS} '@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð^ L$tÐUWd@ WY;= @r}UWV}tlG t6G t3WVYG PY}T!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG P7 =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u0@4@GW  @*h YGt@O G W @GGVYtG uO @u}G 8@WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐUT!@EEPhTu } ET!@3ø6ÐU WVSE9ET=h!@uu9u5`/@Ƌu}U WVEEh!%@h%@Eu`/@t!@>`/@'@'@EG?t= t@u߀?= =#G?t= t =#uFlPF]PFNPF?PF0PFPF!PVh#%@PF(|9tAh%@uhl%@h@Vh%@h@DuY`/@t!@.uhP uYU WVS=`/@6h%@G!PqG]t_h%@G]PQtJh%@G]P<t5Glt.h%@GlP th%@GlP 3EEEPhhG0PYPS }tMG]tTh%@G]Pt?h%@G]Pt*G]PYUM+Rh%@GlP5 ,EPh%@G]P EPh%@GlP |93E0Fr3$h%@SYPY@!P tCr׃t!SYPzY@]PYHE]ԋu؋}S4YPNYh%@G!Pu}E<utEE@EuYEuYUЋEHEuh%@G]P uh%@GlP VY;EuE0FrCTDUWVu|YPY@0PY3,W^YPxY@0PY;uWBYu}GrUWVS}33 VY;uCFrË]u}U WVS}WYWY؊FNt*h%@FNPcth%@FNPNu6F]PRYEFlPEYE~E+E@EE FNPYEE]u}UPW=$@hbY$@uh%@YjY5$@ Y}]j4YEjh%@E@]PG j(h%@E@lP1 3 $@8G| $@Gr$@}UT!@ÐUWVS} uEE~,F t!O>(V Y=uE9Eu~3]u}N;>}Sj vucEtE+E؋E)F>}3V  @+V;}VgY}u +gEEvWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UPE EPuhd@d UPEEPu uI UW}EEEljEEW^YEE2uu EP }ÐUWVS}u Dž/@/@ /@W=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_=/@uVctQ[tL/@} W@ Y GG@u /@W =tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf/@fl9uEEP/@{EEP/@dEPWSt'=/@tu /$Fu @td=/@u/@} W Y GG@u /@W =u/@y%uF؃%/@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$%@EE EE/@}WyY3]u}ËGG=+t=-t =0t8EM/@} W(Y GG؃0i9E }9Eo/@} WY GGE> %stt%d:23:off:env - TERM=altos5 /etc/getty tty%d 9600echo %s >> %st%d:23:off:env - TERM=altos5 /etc/getty tty%d 9600echo %s >> %s %s%02dCan't unlink %s/%sCan't mknod %s/%sconsoleCan't unlink %s/%sCan't mknod %s/%s%s%02dUnknown error: p@x@@@@@@@@ @@/@A@R@d@p@@@@@@@@@@@(@7@F@^@k@@@@@@@@@'@6@D@]@z@@@@@@@@@,@@@U@f@s@@@@@@@@@@0@A@W@g@u@@@@@@@@@@@@4@K@r@@@@@%@.@7@@@I@R@[@d@m@v@@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@ @@'@6@G@_@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF     M]]]]]]]]]t %|tw|pI -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@8@8@ @8@h:@SIOtty5tty10MultiDroptty10tty64ACPAtty10tty64File Procfpunknownunkemptyemp$@/dev%s/console\0 \0 \0 %s%02d%s/%s%02d/etc/sysdispr%d "%14[^"]" "%28[^"]" "%14[^"]" "%14[^"]" "%14[^"]" "%14[^"]" "%14[^"]"Invalid disipline format; line %d, %s; /etc/sysdispusing default disipline. tty\0 \0 \0 %d%d%dttytty%d%d\0 getsysinfo%d%d=====================??GA>???3.1bS03.1bS03.1bS0" "%14[^"]" "%14[^"]" "%14[^"]" "%14[^"]" "%14[^"]"Invalid disipline format; line %d, %s; /etc/sysdispusing default disipline. tty\0 \0 \0 %d%d%dttytty%d%d\0 getsysinfo%d%d=etc/makesxts100755 0 2 35710 4201130600 7631 37777777777 L! @& @.text@& .data@@'@.bss@@ .comment;ÐET@RU RP P%jÐUTth8@GYj%YhT@tYth]@Yj%YEDEREPhf@EPRE Ph!EP= E9E|Ð &%3ÐÐ$3ÐUWVp@ @9@s @<@uYtVuj$ jh~@j$ WYPWj$ jh@jr$ u}ÐUPWE E@u@t* @h@uu @ t }ËUWEEEEEE2EEEPuu ENj}ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoY Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅H8@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@EX@r5E`@rl@Eh@AE@s6EE]@)EE@r݋EE 9P܃}t؁@ @v @E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEp@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ex@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P  ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u @ @GW @*h YGt@O G W@GGVYtG uO @u}G $@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裘@3ø62ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$@@(#)makesxts 5.3b of Jan 28, 1988Only root can run makesxt. /dev/sxt/dev/sxt%02d%dUnknown error: @ @ @ @ @ @" @< @N @` @p @ @ @ @ @ @ @ @ @ @ @# @2 @C @W @k @| @ @ @ @ @ @ @ @ @ @3 @F @b @{ @ @ @ @ @ @ @ @6 @? @H @Q @i @ @ @ @ @ @ @ @ @@@*@8@P@n@@@@@@@@@@@"@+@>@G@P@k@@@@@ @I@p@y@@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@@&@0@:@S@]@m@{@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFrrrrrrrrr rrrrrrrrrrr4r rrrrrrrrrrrrrrrrrrrrrrrrrr<4N 7<rr0rrrrr rjrr-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@,$@,$@@4$@%@3.1bS03.1bS0etc/mkfs100700 0 2 57200 4253774540 6746 37777777777 Lܭ" D&@.textD .data@@D@.bssp@p@&.commentp^ÐETp@RU RP PCjÐUlh!@Y9E}E 00h @ jCYE PX;@EP5X;@}5X;@h{@kjICYE P\;@j5X;@B(!@$!@=(!@}5X;@h@!jBYE%=`u(EPEP@|h@YjBYh5X;@:0!@,!@=0!@}5X;@h@jBYh@5\;@7 !@= !@uE3EE7`X1@=$u Y1@jhX1@AE}}hX1@h@EPu!=u h"@uYx9E~hX1@h3@Zuh8!@u6 jj5,!@V= hh8!@5,!@bA E=thG@YjcAYu<Ym hg@hX1@thn@hX1@ihv@hX1@u[jh}@@Ehh@u5 =th@h@Ij@Yu<Y0@EEE@B@PUEhX@ht@h@h@h@ht@E 3Ph@ht@ h@ht@ !@E !@d@ X1@EE !@E=yt%E=YtE=ntE=N?E=yE=Y EAh@h@h@h@h@h@EE !@ !@E !@d@9E,hs@h@hu@ht@> E9E 9E9EUE !@9E~h@h@@1EE)] E E@B< EE 3E}E9EvE@URfǀ ~ǀ9E|zE p Y@E p}Y@~ 9@|@E p GY@=@~ @9@~@ 9E}á@f@ff@f@@@E@@@h@uYhh@e@ph0@PEPhL@<EPh`@$@Ph|@ @@;Br+@-P@ph@ j<Y@fǀE Eƀ8!@E9E|E h8!@uB @f E@9Eufd;@ SjuY@!@8&| @+h@P1h@@P0jh5,!@7 h5@5,!@; =th@Yj;Y@h@5`;@r;Yø09E| 99E~4:9EuEEE*5\;@h@Jj(;YkE U0‰EE\;@UEu}uEEEEE@UP4!@@,U&WVjjhh@h h`hh@X1@PV$fE=tupEjjjjjhjh@Y1@P$frjjjjhhjh@Z1@P$f rDž 2=4!@t4!@4!@' !@}5 !@Y !@P@= ut@}fEڋEf@fP@ft@u󥍅P`PEP Ë X1@09| 79~,hX1@h @% `;@Dž-0k +ыf r 9 lfEfEfd;@d;@EDž `  9 |Dž   9 rfEEDž t  9 |ڃ}u EEfMDždDž`E= te=@=`tS=jhX1@'7"hX1@h @`;@% %  t\Ef@*fEڍP`P`PdPh1 @fEP`P`P`PdPh3 @Ef@P,E X1@=$u Y1@hX1@P+jjhh@h h`hh6 @X1@P$=u,P`P`PdPPd;@+P`P`PdPPd;@@PSEEPYdt$P`P`PdPr@ E̍P`P`PdPnh`PP* 0Y`UPE EU M ;u EUEE U<uhX1@EPh< @ `;@3U EEF09E| 99E~ hX1@hQ @ `;@3kE U0‰EEEX1@EuEU EEF09E| 99E~ hX1@ha @8 `;@3kE U0‰EEEX1@EuEU=4!@t4!@4!@' !@}5 !@ Y !@P@׉E== t= t= t=:EEEUX1@=4!@t4!@4!@' !@}5 !@ Y !@P@׉E 9Et 9Et 9Et}uEƀX1@hq @ Yj2Y=4!@t4!@4!@' !@}5 !@z Y !@P@= uUPjE P5$!@'. hu 5$!@Y' E9Etuh @P j.2YUPjE P5,!@- hu 5,!@1 E9Etuh @ j1YU@@@fJfIfJы M}uh @ Yj1Y@fPfR5@u@@ffPE@@U @@ E29E|ڋEUP@@=2|\@@RE@@U @@ E29E|5@u@f@@@@fJfBыM UEEEEEEfUfEE@UE9E|EE@UM M t E9E|ۋE9ruuuuUEu uE E UE9E|EEU UE9rh @Y`;@EU=4!@t4!@4!@á !@}5 !@Y !@P@U@:Dž@@9|DžDžj@=@@<uڍA @@=@@9|fd;@pEd;@EfEfEfEfEEfDžrDžt 9|Dž 9rDžjY@ǀPJ=@uDž+ @@9}r@9rb3YtI9rh @*Y`;@Dž   Y@9L)* PPEP UWVS}u GE@fG@?E@9Er2=`;@u h @VY`;@h8!@u8!@G@?%GUR ffG*fCfG fCfG"fCGC!@C4C8C<G= =@t!=`=uG*=E>GPh @je+YEU E@ EE9E} 9E|Ћ9E}gEEU U EE9E}9ErEUE9ErUB,uEp,9EEvEEU U EE9E}9ErEUE9ErMuU4E9Es 9EuUE9Er+UB0PEp09E} h @Yj E@PC P h8!@utU3UPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWVSu] 3 FC FCFӊ CCG;}|]u}UWVSu] 3 FC FCFӊ CFG;}|ދ]u}Ð^(ÐUWV, @| @9@s @<@ @uYtVuj ( jh: @j' W]YPWj' jh= @j' u}ÐUPWE E@u@t* @ht@uu @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uWu!YG uG tO G Dt1d@"u}F @tVvY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø T$tÐ%3Ð%3Ðjt$t$9r3ã@ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlp@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E@r5E@r(@E$@AED@s6EE]@)EEL@r݋EE 9P܃}t؁@@v@ET@t@r05}fEf fEmE]mE܉E@0Ee \@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE,@MU]vEu}fEf fEm]mE܉EFUR0EMm]E4@E5<@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}p@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UWd@;=@r3}ÃG uUWd@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uh;@p?@GW @*h!YGt@O G W@GGVYtG uO @u}G xC@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6:Ð&ÐU WVSE9ET=d@u@G@P@Y@b@k@t@}@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@@@@@)@7@F@W@o@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF!++"+$+++++!"!+!"+Q"a"a"a"a"a"a"a"a"a"+++++++++++x$+)++++++++++++++++$++++++++++)+"x$&){""++t"++#+++M++#++$-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@C@C@@C@E@3.1bS03.1bS0@C@etc/mknod100755 0 2 30734 4201131007 7105 37777777777 L\! '` l@.text' .datal@l@` l(@.bss@@ .comment1ÐET@RU RP PQ'jÐUWVS9E| 9E~h@h @j 'YE PBth@h @j&Y9EuHE P=mt)=pt=suRP 3P9EuE P=bt-=cu- @h@h @jO&Y`h@h @j)&Yth@h @j&YE p Y}h@h @j%YE pYE}h@h @{j%Y EV PE p+ E9EuPp%Y]u}3UWV}uu W =tPPW 3Ƌu}UWVS}3=0uN0|+7&-0Gu00|9~]u}k -0GuЋUh@h @]j$Yøn$3Ð/ÐÐ6$3ÐUPWEEE@ uE@ t(EH uuu E@ t }ËUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY Ek E-0GE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl @Dž\?E2ETMDžl @Dž\EE C~u~E܉TMs؍gh݅HL @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅HT @u+-hJhE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h @YEt Eu = @t3txE @ @h @EPbuEPSjEP |>h~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E @E$ @El @r5Et @r @E| @AE @s6EE]@)EE @r݋EE 9P܃}t؁@@v@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}EE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u @(@GW @*h YGt@O G W@GGVYtG uO @u}G 0@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裬@3ø62ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$p@@(#)mknod 5.3b of Jan 27, 1988mknod: must be super-user usage: mknod name [ b/c major minor ] [ m/p/s ] 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF<9&iyyyyyyyyy ' A  e' -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@@@@H@@3.1bS03.1bS0etc/swap100755 0 2 41600 4201131214 6741 37777777777 L! ,l @.text, .datal @l @l-@.bssp#@p#@.commentpCÐETp#@RU RP PQ,jÐU9E|E P=-t)h @Yh @Yh @Yj+YE PB=atc=dt=luj+Yø9E})h @dYh @YYh @NYj+YE p p밸9E})h @Yh @Yh @YjT+YE pp p dUh @Yh @Yh @YUWVSx؍hEEXjuj }h@Yj*Yh @eYE{PYdduh;@h5@&JdB!Y+Љ``} Dž`hZ@`dhS@CPCPs %PPhj@Ct h@Y h@YE9ETX\UWVu YEEF~uVj/ }h@Yjb)Yu}UWVSu YuYEEC{s uSj }h@6Yj)Y]u}UW3Yj4 @l( @< @}64 @h@h@ h@h@h@YGr}UWVS}3< @4 @Y}C4 @h@h@R h@h@@h@SY @=jj4 @# W @P$t Ë]u}FW3U(WVS}u ù3E#@EEff@Ph@h+@ EPh+@/}$h+@h@h@X h@kYoE;ugE%=`uW7h+@h @h+@E@Ph"@h+@Y+@PL +@]̋uЋ}EE9]#hh#@wG 3 z&3ÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWV(@x@9P#@s P#@<<@uYtVujw% jh6@jf% WUYPWjS% jh9@jB% u}ÐUPWE E|@u|@t* |@hp@uu |@ t }ËUPWEEE@ uE@ t(EH uuu w E@ t }ËUWEEEEEE2EEEPuu  ENj}Ð2.$Ð$3ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  "@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžll@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}t#@Et#@E@s3UtE]t#@E@E@E@r5E@r$@E @AE@@s6EE]@)EEH@r݋EE 9P܃}t؁t#@#@v#@EP@t#@r05}fEf fEmE]mE܉E@0Ee X@];r&=5|+t#@ut#@1}tCF0N<9t#@]Ћuԋ}ËEE0]@EEsEE 9P EEEE(@MU]vEu}fEf fEm]mE܉EFUR0EMm]E0@E58@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G "@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W "@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}p#@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW`@ WY;="@r}UWV}tlG t6G t3WVYG PY}P#@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG "@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G "@+G?}3W "@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G "@+G?}3W "@+W;}WY3UWV}G G u}}&u,@0@GW "@*h!YGt@O G W"@GGVYtG uO @u}G 4@WR"@UWV}G "@+G}G "@Wu};7}7𐐐3ÐUP#@EEPhTu } EP#@3ø6FÐ2ÐU WVSE9ET=d#@u swap -a swappath dev swaplo blocks free %.15s?????? %s%.*s %2d,%-2d %6d %6d %6d INDEL swapswapCouldn't open directory %s - not being searched. swapCouldn't chdir to %s - directory not searched. swap%.14sCould not stat %s.nswap/%.14sUnknown error: |@@@@@@@@@@(@;@M@^@p@|@@@@@@@@@@#@4@C@R@j@w@@@@@@@@@3@B@P@i@@@@@@@@ @!@8@L@a@r@@@@@@@@@@&@<@M@c@s@@@@@@@@@@@@#@@@W@~@@@@(@1@:@C@L@U@^@g@p@y@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@ @@%@3@B@S@k@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF  (%   U e e e e e e e e e |- | x  Q -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@4@4@"@4@46@3.1bS03.1bS0etc/mount100700 0 2 245054 4201131021 7144 37777777777 L ! P!@.text .data@@P@.bss^@^@!.commentH >ÐET^@RU RP PjÐUtWE,@EEE9EucjYEuK=^@;GDPhh@h$c@! h$c@G@4@WG Ph~@H;=^@ruYjjgjj[jjOE=?te=ctL=dt-=ftJ=ntc=ruf@u6 @N@u @6@*}t EEJ@E J@@h@u u| E=LE+ J@E==tG=h@E  J@R4蕻u =@t E @E  J@ MB M}@ J@B4 J@4 th^@E@T@jE  J@4h t ^@E^@E}u^@EEE}tuh@hZ@裸 jYE=/tuh@hZ@y jY-th@hZ@VjYhh@(E=tjju }h@hZ@ @t!@% @Puu  @%PuuujYtV_@HE^@j hc@5^@ j u^@@ P ^@@DP»Y^@=^@cEj uG PB uEj hc@W' uE}th\@G PWh7@hZ@H;=^@rj hc@5^@R j u^@@ P< ^@@DP Y^@f@fP@hhh@E}$h@ht@hZ@u jY}5_@5^@u }h@h@hZ@6 U(9Eu E@E@jh@YE}!h@uh@hZ@ÍEPuF}!h&@uh @hZ@谵ʋE@H_@5_@Y^@u!hY@uh2@hZ@ou5^@u ;Et$h@uhe@hZ@5L^@E^@u#Y3/UEtojuPu誃;Etb,9EuNPjPu@=t3h q@Ph@; utUDžuuP h@P0P1YH= u$PYHY =:t uދ=:uu薥u/ugY9u@;hPa Y3=:t uދu >YϤu두뉐UPE@EPYU8j@ujb }h@葞YÍEPTY}h @qYސEPj.h@uYUR襣3뷐UWV@p@9q@} q@<0@uYtVuj jh*@j WYPWjo jh-@j^ u}ÐU fEfE fEEEfEEEEEEP/YEu3Ã}tj@EP2u跣 E@UPCu3uKYt9Et E=t 3EŐUq@ 9@@q@tL5@@5q@h@50@蝠+q@t5@@5q@h@50@pq@ 54@j58@j5<@j35P@Y@L@hD@7$Y@@=jq@t5@@5q@h@50@ڟUq@9@@u3q@t5q@h&@50@葟 q@ 3ÍEPuEtuu5@@Q& =u?q@t5q@hN@50@- u&JYq@ 3두q@t5q@hm@50@ uIYVUPq@9@@u_q@5q@h@50@藞 q@5q@h@50@g =d@t@5T@NIYT@5X@8IYX@`@d@=T@upjhT@5@@& E=\u5T@kX@u3q@t5q@h@50@譝 q@ 3k`@X@Љ\@X@k`@u d@`@\@빐Uq@t5q@h@50@/ 5@@)Y@@54@j58@j5<@jU\q@tu u5q@h@50@讜hGYEu.q@th5q@h!@50@r3ÍPKYPPhA@EP距hu/jIj9EP$jjE=t4E= t'E=tE=t E=ujjjjEP=Ep6YEu)EpEP6YPhG@P苜_uYHEP=.u!j*EphM@PDEpPnPhE=t8E= t+E=tE=tE=P5YtP5YPY@@%RЍREtEPY@@%Ex t p Y@@%Ext pxY@@%ЍR;PwjuAq@t5q@hR@50@; u4DY(DY3P4YPhEPEp EpE@PE ʋR+CYUu uOEuWq@tG5q@hu@50@3 ,q@tju5q@h@50@3ËEUztE@EjuCEtEEEEx t P q@Ex u 3UfEf@EU9PEPE MEUJfQ fPUPJQP UJQPUJHEU9PE@:EPE ytjEPE ql'3UBE@9E~EfEEE9EEU=h@uOj@hh@jr th@衒Y3hh@ZYg@= uhh@AYƀg@h@̐Ujj 4@=u jjjj8@=u jjjj<@=u jjU54@j58@j5<@jwUjueq@t5q@h@50@x 5@@"Y@@{54@j58@j5<@juePGÐU jjAEu+q@tj5q@h@50@Ӕ3u u EPYUu]q@?5q@h@50@腔 !q@5q@h!@50@W EU@PEpu tE@PEpu u/q@5q@h=@50@ E@ PEpu} u)q@t^5q@hb@50@褓 CE@PEpu8 uAq@t5q@h@50@_ uX>YuO>Y3uu<>YEaUPj$a>YEu+q@tj$5q@h@50@3uZ YUuL YUBu= YUBu. YUB u YUBu YUBu YUBu YUBjju UB EjU } uEËE8utju <>Uu^q@tLju 5q@h@50@,q@tju 5q@h@50@ɑ3널ju =EtEEU9EUjju4 Uu YUBEEEE 9E|¸U } uEËE8utju 4=Uu^q@ju 5q@h#@50@sq@teju 5q@hP@50@轐Eju <EtEEU2EUuu1=t36EEEE 9E|ɸUju u u YU BE @=tM=j K;YU Bq@tYj 5q@h@50@؏E 0訔Y@Eu虔YURYEuuY33E 8t0}t*0u4h,@uyuuy uu uJYEU }u} tC}t uY3E} t u Y3UBR6YEEu3Ã}tEEU EE8u} tEEU E E 8uEEE뭐UPEE="uCEEE8tX@tEEX@uE8t 9E|E뫐U,Eq@tu u5q@h,@50@k}}dq@u5q@h8,@50@k}q@mu 5q@hU,@50@kL9E }ø9E tE 4,3@EPEEq@t#uu؍EP5q@hw,@50@kjEPEPh,@Eu0q@5q@h,@50@j juEPu8IE;Et?q@i5^@5@@u5q@h,@50@xj<q@t5q@h-@50@Lj EPjEPu?=t;q@5^@5@@5q@hG-@50@iEPEPhy-@ u,q@5q@h~-@50@i zj5<3@EPt t(q@tU5q@h-@50@si :}|E9Et2q@tuu5q@h-@50@7iq@tu5q@h-@50@iEUWVS}u ]]G=b=c =itn=l=sdC%؍F%EEEVEEVEEVEEfEfC؍F-C%؍F%EEEVEEVEEVEEEC؍FC%؍F%ECUCUCUCUFC֊ FF%}EPQYE}}u7EEEEEUEEUEEUEEUF3]܋u}ËC֊ FEMu?;+EѐUWVS}u ]E]}i;a]xQG=b=c=itV=ltO=sC%؍F%ECUCUCUCUFC%F%ECUCUCUCUFC֊ F}EPYE}}u V̌Y@EC%CUCUCUCU#3lptËC֊ FEMuC%؀?}t+x+RxPu聖 x+Ћ딋+E덐UWV}f3k -0f=0| =9~Ƌu}ÐUWVSu] EuVSu<} Nj]u}Ë+؅Ӌ+E 䐐Uh.@uTgUPWV}.@E.@u3u}=.uuFG҈uE.@ҐUWVS}`.@=.uGG8uCF҈u`.@]u}ÐU(jh.@FU}5^@h.@cjh.@UB}5^@h.@bːEEEEE܍E؉EEEPUEEPhSE0觐 } d3[UE}uQ}u YE 0phXv@p U BE EE8tX@uu.@3.@}tE8t u Yu3.@ƀu@u@YE}tE8t} u7j YE u 3nEE @@EE=\EEt`=Ot9=Xt=ot+=xu`jhXv@E@EP5 U BjhXv@E@EP U BmjhXv@ur U BRuhXv@EHEPP U B0E="u EEuhXv@u U BE x&UEE9E|h/@hZ@`E=\~E@E=bt8=0M= t/mE|E UEEd=!@EPEPj!E@P E5EE=}uuE EP9 EEu Y=2=1=3=ttHZ=rt(=nE UE EE UE EE UE El=vuLE UE EE3E}t E="t=}uEX@u#EEEE MEE89E|3ËEEU0 ‰EEE=0|E=7 EE=|E UEM 뎐U EEEEEE8tI}u/X@t2E=9t%E=8uEX@uEt!9EtEX@u$E8th/@hZ@]E 3ME UEX@tE-02EX@tEY@E-7MU U}ug9E~6E-0+UUʺJ#‹U MIM E@҉Uu8E UJU(}t3EuE UJUM}~ E9E}uhF/@hZ@\3}uE+EPE EPu EEU EEMu +ExUE} !}uhiYEEEt&=tj=}Xv@\Yv@o}t3PE pphZv@d @PhXv@ugXv@\Yv@x}t 3PE pphZv@[ @PhXv@u벐3PE PBRpuE}t EU JEy3qUPEEE %= ~E %- @AE %@0UEE %= ~E %- @AE %@0UEE EM^E+E@U EE}u3ËE3UE UR+UʺJ#= ~4E UR+UʺJ#- @A-E UR+UʺJ#@0UEE@E 9E~E M%= ~E %- @AE M%@0UE}uE M9E}EE UʺJ#º+UEE @E M+UʺJ# E 9E~E- @A E@0UEmM}EEE+E@&UEEU E EMuU}t$}tE9Eshd/@hZ@X3Ã}u)uAYEuh/@hZ@W3Ґuu u E빐U.@3.@}tE8t uYu3á.@ƀu@u@됐U E}E=\E@=$ux.@.@= u5.@h/@hZ@W 3ÍEPEPj$E@PEt&EUt u^YuYc3봸9.@uh/@hZ@V3두9.@},.@.@UEu@\u 3EE8AUEEhxYEEuh/@hZ@V3hMYEujh0@hZ@UuY3͐}u"E=\uE@U ;uE)EEUE\u3EE8uEEUh0@uREu:h0@hZ@_U&EB|h,0@hZ@9UujjEURWNuuRYu YEUq@tuhL0@50@T 50@5~YuYUPq@tuhX0@50@T 50@}YuYEq@tuhc0@50@cT EUPq@tu uhq0@50@5T50@}Yu u肄Eq@tuh0@50@S EUPq@tu uh0@50@S50@#}Yu uLEq@tuh0@50@S EÐUq@}uq@ËEEPY q@EuؐUW0@GU;u}Ã?u3Uh1@uUh1@uUPE&EU ЋE9u E UDEEU и9uá2@U@DžDžDžDžDžDžEh3@} tE `3@}u)Dž=h3@uk4@4@`3@}u4@Ed3@t3@x3@|3@}u p3@ p3@h4@5`3@xEu+=p3@t5`3@5\3@h4@hZ@Q3l3@l3@P;xYH= t[Džjjj E} uuQY EP@= N9u<h4@PS=#h4@Rth4@RuhY7hY@aǀǀ ǀh4@@PvDžDž=x3@t5x3@Yx3@Džh5@Qu|t jh 5@j  DžDžh5@_h5@jQjjj  DžjDžh5@P%hh#5@jjQu"jh'5@j Džt jjj DžDžu tjjj Džuh/5@@Pth35@Ou@YthYBXj B=ujj  Džj@@PO xujjj Džh?5@jOujjj DžXhC5@Nu_3tzhG5@j|Ou!jhK5@j1 DžhS5@wNu#jj Džh[5@jNu jh_5@j DžWtjjjk Dž.}jj; DžuhPF }t}YtaYL? PuԋuXLt}t uLt ?Y=uDžh5@jMcujjj  Dž9uH1zY9uDž9ǀDž DžhO5@jRLu뿐Džhg5@jLu뿐UEu!3ËE=0|E=9EEuڸѐUjsYEjuuBK E@E 8uUËE  EPUzuEUPڐUEUhk5@u mJuuu ËE EEE7E=:u'E@Eu#jho5@j 3뾐EEuj YEjYUh~YUBuYtur YU fj@hx5@ih|5@E0Iujjj  35uu[U f=uuuj 3j@uEpI uYtu YU fAj@h~5@>ujU fA=ujujt 3j@uEPR@RDI EE@uu KU,E eEU ;u1E Ph5@EPG jEPj ËEU ;wEEPU}uE 9EuE UU SEB=u4E Ph5@EPIG jEPjM oEPUU PE UPMUDEEUE EEE=-uE@EEEu؃}tFuYt'u Ytu YEu Y9Erjjj 3j YEjYUhvYUBuYtuj YU fj@h5@eh5@E0Fujjj  3uuWU f=uuuj 3Oj@uEpF EfBaj@h5@PR@RF E@E}EfBj@h5@PR@RYF j oYUBjaYUJu` YUJfEPf@ah,YUJAj@h5@EPrE j@h5@EPB@@PE EPBEE UEkEȋU ;u4EPh5@EPqD jEPju EȋU ;wEȉEċPUȃ}u}tDEċB=u4EPh5@EPD jEPj n}t6}t0EȋUJ;sjjj 3E 9EuE ŰU EċPŰUP}t EPUEỦPU$E PU䋐U U܋E@P>YEEfUfEfUfP}u_u5h3@ujLA}A9^@t4=p3@t#5\3@h5@hZ@BA h5@M=YjsY3ËE܉EEU ffPU fQfPEEE!EU ffU fQfPEEPU}uu5h3@uj@}9^@s=p3@^5\3@h5@hZ@}@ h6@<Y6UPumYEu)=p3@t5\3@h6@hZ@6@ jrYEUEEfE}u-=t3@uuYt3@mt3@E=x3@uuTYx3@@x3@EEEj:unAEEu u{AupE:Ej:u5AEtmE@EEj:uAEtOEuYtuYfE EE:;E:j u@Eu E}uEE }tJ=p3@tA}u Z6@EP=h3@uM6@T6@P5\3@h16@hZ@}>EU0}uhh6@P eE(ujuj 3=.uˋ5d3@Pdhm6@PsIP^Iho6@PJIP5I@.=h3@uhq6@hy6@PIPPH=tXjPn=t:@PYt"c ;t/=p3@tP5\3@h6@hZ@<3UEh6@E 0>ujjj  3uYEE<=p3@t1u=h3@u67@=7@P5\3@h7@hZ@<3륐EEj:u=EcEEj:u=EBEEEj:u=E!EuzY u9YfEuj\fE=uH=p3@u=h3@u7@7@Pu5\3@h6@hZ@2;j YEjYUhYUBEfEfj@uEp\= EfEfBj@uEPR@R8= E uu Ej um<Eu E}uEE^}UhhC7@EP; uaYEEPaYE9E~juj E9Eu"EPu;~jujp u/YUj.u;E}tE9Et EPujuj % 3á|3@E1uu;ujuj  3ϐEPU}ujYEjuu; E|3@P|3@느U<Eu)=p3@t5\3@hF7@hZ@8 jJkYuh3@_hi7@h3@nDEPDY})=p3@t5\3@hk7@hZ@8 jjYEPh3@&D3@UPj@h3@j:8 }gh7@h7@l_Etuj@h3@K3 u3h3@^Y3@= uh3@^Yƀ3@u`Y3@ÐU= 4@t5h7@h7@h7@h7@h7@h7@h7@6 4@h7@6Y=h3@u E7@ E7@EZh7@ua9u E8@ EEExuh8@P]Eph8@P8 E@PPhC8@h;8@uuh8@6E hG8@EPR@R8u9EEPUPhI8@P7EPhO8@P7 EPR@RBPEpPuuhR8@b5EPU}KEPU}EU}^U=h3@u v8@8@(h8@(\, =p3@t(5\3@h8@hZ@53ËEh8@u`7uh8@EP\h8@EP[uEP@Exuh8@xP[Eph 9@xPf6 xPEPh9@,4Dž4E 4tEB=at Dž4h 9@EPR@R6uFDž4E0EPUP0h"9@8P5 EPh(9@8P5 4t8Ph+9@,3 'EBP8Ph79@,3EPU}EPU}9EU},g\YU=p3@t<5`3@5l3@5\3@hB9@hZ@K3EH|=w |$4@u hV9@hZ@3 琐hs9@hZ@3h9@hZ@2u h9@hZ@2 륐h9@hZ@2u h9@hZ@2 vhh:@hZ@2 Xh/:@hZ@y2Auu hJ:@hZ@[2#=h3@u:@:@Pu hj:@hZ@(2u h:@hZ@2 u 'YPu h:@hZ@1u h*;@hZ@1 he;@hZ@1yu h;@hZ@1 ^u h;@hZ@z1 Bh,<@hZ@a1)ho<@hZ@I1u h<@hZ@.1 h<@hZ@1h<@hZ@0UDu u3ÐjjbEEEdTEEEEEPhSu] }ujMb@@뗐uj2b}(t ^@ӐE .$ jj+)E EtuP EÐj(j(E EtuP EtuԋE P }EtuuEPEjjjo(E =ETu;jjC(E E(uj$j(E EtuP EtuԋE P Eu.jj'E t}EtuP |dE{uԋE \jjc'E U/^@ԌT,}tu u@@^@ UE tYt$ tPPj&MA t$EM *hj&MA uËE3ÐE@E䐐UWVu }u.E u ^_Ðjj_EE@EEE u3FMAE@ u3F MA Ext*PvuEpuE@MAEjhfTuuu? uujn^>ujZ^E@4EȋI0Y=@H0 tE9Hv@@  t*Ep@EPw_] E@GE@ G 3^_U Vu u^u u9 |jjuR* E } @@EtF0=@F0@@ 뢐uu= }:=@@ uF0=@F0s=@@ cF0=@ܐF0=@F03^ÐUE .$̑EExpD[EExt p([Ext p[Ex thp 뺐EExt pZExt@p뒐^@@@Ð,,L,LuZ3ÐU$=t(P$?u8@P=:YHu8H$/3 ;8tH<YBH8L L@H*F+} T<8@Pj W2 GuЃ+uNhTPhE@= j@PhtE@[ =G@t 5G@<YHG@$8YUWVS}u ]H|m=wf|b$8H@ǹ@0FǙi+ǹd@0FǙkd+ǹ @0Fǹ R0‹FƋ]u}ÐU} u^@3Ã} }uu z8YEu^@ 3^@hI@5I@VEu3^@uu u u^@ 3xu.YjuA E@= t^@"3CE@E4ÐUPWVS}EX@uJGX@u=+t =-u EGX@u 3]u}ø0+Ëk 0+GX@uރ}t뾋븐U;ÐUPWV9I@ueE9 J@}#E  J@ =-u E Au u}hI@E  J@4 u  J@΋E  J@ I@=J@:tWu =J@tOLjEE E 0/YPE 0j:: hI@e/YPhI@j: jEPj: E  J@ I@@I@u J@I@?F=:I@@U J@tI@@U  J@J@ J@@ J@;E|l=J@tOLjEE E 0.YPE 0jW9 hI@.YPhI@j<9 jEPj,9 I@?GE  J@ J@ J@I@8E  J@ I@@I@uI@ J@J@UWEE EP4YtujW* Nj}Uu7YÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwuy7 ÉE)G?}3W ]@+W;}W2Y+Å{EhUfE}} EE EEEE =$I@fEEPju" EfEEPju EqfEEPju EUfEEPju E9Et1E=u3^@ ^@܃}}$^@=t=t=.u ^@-E뭐UWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V ]@+V;}V 1Y}u +gEEvZ6ÐF63ÐUWVJ@hL@9^@s ^@<,J@u*YtVujS5 jh&J@jB5 Wq*YPWj/5 jh)J@j5 u}ÐUWVSEPfYE =ruEEE =ruEEEo@?t-o@P/Yp@rڋE =ru3EV/Yu/YujS S/Yjuh|U@hxU@hpU@GjmY9Eu 3]u}ËEo@Si/Yu VUWVE@ u+Yjj3Ejj3Ejj3EEP(Y;4o@tu9^@tكuEuj3uju3ujh3o@Eu}Ð>3ÐUWV} *t?F EF F F3҉V]@=at=rt=wt3u}ÀN jju. N G=+uf N ȸ*63L$Q3ÐUPWE EZ@uZ@t* Z@hZ@uuY Z@ t }ËV2ÐUWVS}u ]GF:u Nj]u}M}3쐸Nn2ÐHZ2ÐUPWEEE@ uE@ t(EH uuu E@ t }ËUWV}uW+YG uG tO G Dt1Z@"u}F @tV(Y;5]@rGGG tG ]@+GPwG P% | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWEEEEEE2EEEPuu  ENj}Ð#03ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUWVS} ]Ft ;uuCuދ+E]u}UPWVS}u ]}CKt GFut GKuE]u}ÐUWVS}up@Etu WЋu 3]u}u V&u p@ Cp@ɐUWVS}u Ct ;ut Nj]u}ËG8u3UWVS} ]Ft ;utCuދ+E]u}øT.ÐU5^@E Pu Ð;o.N.t3ÐUPWVS}u ]C}G8uO KuO GF҈uE]u}Ð T$tÐUW(E+U@EEPY=U@iGQiWkW<E=p@u=p@uWEPEP< p@Ep@EE9E|)E9E}!E+U@EEPYG Nj}UWVEQUEE}} EQME<p@Ep@ƙ5p@Epp@}| FFFtmnEN}|ۉ5p@}=p@ƹtmn=nu fU@3 uU@+FuU@;}fU@Gp@5p@p@p@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~PhX@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}p@Ep@E,Z@s3UtE]p@E4Z@EG Dt+G uEE Pj u tW(YEEWUWVS}^@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øF L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W]@UWZ@;=]@r3}ÃG uUWZ@ WY;=]@r}UWV}tlG t6G t3WVYG PY}^@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG ]@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G ]@+G?}3W ]@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G ]@+G?}3W ]@+W;}WY3UWV}G G u}}&uv@z@GW ]@*h!YGt@O G W]@GGVYtG uO @u}G ~@WR]@UWV}G ]@+G}G ]@Wu};7}7𐐐63ÐU^@EEPhTu } E^@3ø6ÐÐU WVSE9ET=^@u<^@ ^@^@ ^@^@^@^@^@^@^@E@3؋=^@E&;5^@^@E@E=w=^@jY^@@;t?3Ee ƹ3tL3+‰EEE2^@+^@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5^@^@0E+E-^@@;t^@^@^@^@~Љ^@;5^@v^@^@^@ 9=^@u ^@^@G(=^@95^@u=^@7tލ;r;l%;UWV}5^@%^@9u5^@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ^@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$^@Ru ^@+D$øT$^@3øÐ0xNL$0x:L$0+L$0L$0 L$05Ã%3ÐÐ^@ÐWT$@@ @@read/writeread onlyread/write/remoteread only/remoteusage: mount [[-r] [-d] [-c] [-f fstyp] special directory] %a %b %e %H:%M:%S %Y %.32s on %s %s on %srdcf:n:-r%smount: directory argument <%s> must be a full path name mount: not super user /etc/.mnt.lockmount: warning: cannot lock temp file mount: warning: %s %s already in %s /etc/mnttab/etc/mnttabmount: warning: cannot create %s /etc/mnttabmount: warning: write error to %s /etc/mnttab warning:/etc/mnttabmount:%s cannot open %s /etc/mnttabmount:%s cannot stat %s /etc/mnttabmount:%s cannot allocate space for %s /etc/mnttabmount:%s read error on %s /etc/mnttab/mount: cannot obtain the fs type of root mount -f %s %s%s %s -r mount: cannot get current directory /mount: warning: pathname will be truncated in %s to <%s> /etc/mnttabmount: invalid fs type <%s> mount: warning: <%.6s> mounted as <%s> mount -d%s %s %s rmount: RFS domain name not set mount: RFS not running mount: %s not available mountmount: invalid address specified: <%s> mount: warning: resource will be truncated in %s to <%s> /etc/mnttabmount: could not connect to remote machine mount: not super user mount: %s no such device mount: %s not a directory mount: %s or %s, no such file or directory mount: %s not a valid resource mount: %s not a valid file system mount: %s is already mounted, %s is busy, or allowable number of mount points exceeded mount: %s not a block device mount: %s write-protected mount: remote machine cannot accept any more mounts; NSRMOUNT on remote machine exceeded mount: possibly damaged file system mountmount: cannot mount %s /etc/fstabrmount: cannot open <%s> /etc/fstab /usr/nserve/loc.passwdnpmount: negotiations failed mount: possible cause: machine password incorrect timodmount: warningmount/usr/nserve/rfmaster/usr/nserve/dom.mastermount: cannot obtain network specification r aA /usr/nserve/netspecrlc20ic64c64iilc20ic64c64ii./usr/nserve/auth.info/%s/passwdllrnetnamenetname%c%sUnknown error: t@}@@@@@@ @/@g@@@@@@$@No errorFormat errorName server failureResource name not foundRequest type not implementedPermission for operation deniedResource name not uniqueSystem call failure in name serverError in accessing password file on primary name serverPassword does not match that on primary name serverNo password entry for this machineRFS is not runningNo reply from domain name serverUnknown domainName Server in recovery, try againUnknown failure@/usr/nserve/nspip(%5d) ns_setup: port already assigned, Pd=%d (%5d) ns_setup: connect failed, Pd=%d (%5d) ns_setup: Pd=%d (%5d) ns_send: FAILED, NS never set up (%5d) ns_send: nswrite failed (%5d) ns_send: nswrite succeeded (%5d) ns_rcv: FAILED, NS never set up (%5d) ns_rcv: nsread failed (%5d) ns_rcv: btons failed (%5d) ns_close (%5d) nstob(nsp=%x,size(ptr)=%x) (%5d) nstob: malloc(%d) FAILED %s.%s%s.%s%s%c(%5d) nstob: can't lengthen block (%5d) btons: btoreq failed (%5d) btons: calloc(%d,%d) failed RFS name server: can't get domain name(%5d) btoreq: malloc(%d) FAILED (%5d) btoreq: getheader failed (%5d) btoreq: getqd failed (%5d) btoreq: getrlist failed on an (%5d) btoreq: getrlist failed on ns (%5d) btoreq: getrlist failed on ar (%5d) getheader: malloc(%d) FAILED (%5d) getqd: *qpp = calloc(%d,%d) failed (%5d) getqd: qra = calloc(%d,%d) failed (%5d) getrlist: *rpp = calloc(%d,%d) failed (%5d) getrlist: rra = calloc(%d,%d) failed (%5d) getrrec: malloc(%d) failed (%5d) getrrec: domain malloc(%d) failed (%5d) reqtob: malloc(%d) failed (%5d) reqtob: putheader failed (%5d) reqtob: putqd failed (%5d) reqtob: putrlist failed on an (%5d) reqtob: putrlist failed on ns (%5d) reqtob: putrlist failed on ar (%5d) setplace(bptr=%x,size=%d) (%5d) setplace: malloc(%d) failed (%5d) explace(pp=%s,size=%d) (%5d) explace: realloc(%d,%d) failed (%5d) explace succeeds, returns pp=%s, size=%d (%5d) getstr(pp=%s,str=%x,size=%d) NULLc0(%5d) getstr: malloc(%d) failed (%5d) getstr returns str=%s NULL(%5d) getlong(pp=%s) l(%5d) getlong returns %ld (%5d) putlong(pp=%s, value=%ld) l(%5d) putstr(pp=%s, str=%s) NULL(%5d) putstr: overran end size=%d c0(%5d) putstr puts %d bytes in block {s=%x, p=%x, e=%x} %08x (%5d) att_connect: CONNECT RETRY %d (%5d) att_connect: Failed, %d tries (%5d) snd_connect(%s) Cannot locate transport provider /dev/%s(%5d) att_connect: t_open failed, ret=%d, t_err=%d, err=%d (%5d) att_connect: connection mode service not supported (%5d) att_connect: t_alloc failed, t_err=%d, err=%d (%5d) att_connect: t_bind failed, t_err=%d, err=%d (%5d) att_connect: t_alloc failed, t_err=%d, err=%d (%5d) att_connect: port open - sending connect (%5d) att_connect: t_connect failed, t_errno = %d (%5d) att_connect: t_look returns %d (%5d) att_connect: t_connect failed, t_err=%d, err=%d (%5d) att_connect: connection req sent (%5d) att_connect: t_rcvconnect failed, t_err=%d, err=%d NLPS:000:001:%d(%5d) att_connect: sending attbuf service code = %d (%5d) att_connect: t_snd failed, t_err=%d, err=%d (%5d) att_connect: connection complete, fd = %d LOCAL(%5d) nsconnect: mode = LOCAL, address = %s NULL(%5d) nsconnect: connect failed, errno=%d lc8c504(%5d) nsconnect: can't write first msg, errno=%d (%5d) nsconnect: can't read first reply, errno=%d lc8c504(%5d) nsconnect: rfm.mode = %s, rfm.addr = %s NOT_OK(%5d) nsconnect: connection rejected, msg = %s (%5d) nsconnect: connect succeeded, net_spec = %s (%5d) nswrite: pd=%d, block=%x, size=%d (%5d) nswrite: bad port descriptor %d (%5d) nswrite: write packet # %d, size = %d lllll(%5d) nswrite: write failed, errno = %d (%5d) nsread: pd=%d, *block=%d, size=%d (%5d) nsread: bad port descriptor %d (%5d) nsread: first read ret %d (failure), errno = %d lllll(%5d) nsread: first packet, bsize=%d, pk->pk_total=%d (%5d) nsread: malloc(%d) failed (%5d) nsread: WARNING block (%d) > buffer (%d), TRUNCATED lllll(%d) nsread: reading pkt # %d (%5d) nsread: expect index %d, got %d (%5d) nsread: read failed, errno = %d (%5d) nsclose: pd=%d (%5d) nsgetpd: found port # %d %s TABLE FULL(%5d) nsgetpd: wpkt malloc failed (%5d) nsgetpd: rpkt malloc failed (%5d) loc_conn: Try to open channel to %s loc_conn: can't open channel %s to nserve, errno=%d loc_conn: can't open spipe, errno=%d (%5d) loc_conn: can't give fd to nserve (%5d) loc_conn: channel open to %s  (%5d) rf_request: enter, fd = %d, iopcode = %d (%5d) rf_request: bad fd=%d (%5d) rf_request: bad iopcode=%d (%5d) rf_request: sending pnhdr, op=%s, lo_ver=%d, hi_ver=%d c4ll(%5d) rf_request: tcanon failed (%5d) rf_request: t_snd failed, ret=%d, t_err=%d, err=%d (%5d) rf_request: trying to receive response hdr (%5d) rf_request: t_rcv failed, t_err=%d, err=%d c4ll(%5d) rf_request: fcanon failed (%5d) rf_request: aknowledgement failed (%5d) rf_request: version mismatch, l=%d, h=%d (%5d) rf_request: version = %d ./dev/spxspipe: open 0 failed, errno=%d /dev/spxspipe: open 1 failed, errno=%d dostring: string too long dobase: Illegal trailer on address string stoa: dobase: number to long xfer: destination not long enough xfer: malloc failed scan: Recursion level past %d on shell escape Overflow on shell esc expansion xcmd: malloc failed xcmd: malloc failed rxcmd: popen failed xcmd: command output too long free(0x%x) malloc(%d)returns 0x%x realloc(0x%x,%d) returns 0x%x calloc(%d,%d) returns 0x%x Z@dmcbi t@psaor 2@(2@12@:2@C2@I2@P2@V2@\2@ d2@ l2@ s2@ {2@ 2@2@2@2@2@2@2@2@2@2@2@ 2@ 2@ 2@ 3@  3@3@3@"3@R_NOERRR_FORMATR_NSFAILR_NONAMER_IMPR_PERMR_DUPR_SYSR_EPASSR_INVPWR_NOPWR_SETUPR_SENDR_RCVR_INRECR_FAILNS_SNDBACKNS_ADVNS_UNADVNS_GETNS_QUERYNS_INITNS_SENDPASSNS_VERIFYNS_MODADVNS_BYMACHINENS_IQUERYNS_IM_PNS_IM_NPNS_FINDPNS_RELUNKNOWNL3@P3@T3@X3@RFVNSVRSPMNTd4@h̉4xH&Ȋ0@TPidload/usr/nserve/auth.info/./usr/nserve/auth.info/./usr/nserve/auth.infor%s: cannot open rules file <%s> globalhostguest_idglobalglobal. default defaultn/atransparent map map exclude exclude alllocal idn/a.n/a%d%dn/a.guest_id-n/aguest_id%d%d%s: cannot write translation information idload%s: cannot write translation information idload%s: FATAL: cannot allocate memory %s: invalid format of %s %spasswdgrouplocal machine/etc///passwd/group%s: cannot get information from password file <%s> .%s: warning: cannot get id of <%s> from /etc/%s when mapping machine <%s> passwdgroup%s: invalid format of %s file for <%s> passwdgroup%d%s: cannot obtain the domain name .%s: cannot obtain the machine name /usr/nserve/domainr%-5s %-14s %-11s %-14s %-14s %-14s TYPEMACHINEREM_IDREM_NAMELOC_IDLOC_NAME USRGRP.GLOBALtransparent%d%-5s %-14s %-11s %-14s %-14s %-14s DEFAULTn/a-%d-%d%d%-5s %-14s %-11s %-14s %-14d %-14s /usr/nserve/auth.info/./usr/nserve/auth.info/.w%s: cannot create official rules file <%s> .globalhost default transparentdefault %d %s %s -%d-%d%dexclude %s map %s:%d %s: line %d of %s: must specify host before %s must specify default before map or exclude must specify exclude before map must specify value of %s cannot have more than one default illegal token <%s> line exceeds <%d> characters error in range of exclude cannot get name <%s> from <%s> cannot get name <%s> from local %s file passwdgroupwarning: maped value of %s is within previously exclude range; map ignored warning: id <%s> is too large; using modulated value of <%d> warning: value of %s previously excluded; exclude ignored warning: excluded range inconsistent with previously excluded value; exclude ignored host <%s> must be specified as domain.hostname warning: value of %s previously mapped or excluded; map ignored must specify only numeric values for remote ids in global section must specify host name host <%s> previously mapped cannot specify a value of 0 as default cannot have extra information on the global specification timodtimodNo ErrorIncorrect address formatIncorrect options formatIllegal permmissionsIllegal file descriptorCouldn't allocate addressRoutine will place interface out of stateIllegal called/calling sequence numberSystem errorAn event requires attentionIllegal amount of dataBuffer not large enoughCan't send message - (blocked)No message currently availableDisconnect message not foundUnitdata error message not foundIncorrect flags specifiedOrderly release message not foundPrimitive not supported by providerState is in process of changing4>@@>@\>@x>@>@>@>@>@?@(?@D?@\?@t?@?@?@?@?@@@8@@\@@|@@}@@~@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'(08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 1991)! :2*" ;3+# <4,$?7/'>6.&=5-%      )4%/7(3-!0,1'8"5.*2$                                                                                                                                     n@n@Decryption unavailable in international version. TE@@(#)mount 5.3b of Jan 27, 1988usa_englishHH@LH@PH@TH@XH@\H@`H@dH@hH@lH@pH@tH@xH@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@H@I@ I@I@I@#I@,I@5I@GI@JI@9fԫ8̬8'N~'PY|ì ϭ/lib/cftime/˰JanFebMarAprMayJunJulAugSepOctNovDecJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberSunMonTueWedThuFriSatSundayMondayTuesdayWednesdayThursdayFridaySaturday%H:%M:%S%m/%d/%y%a %b %e %T %Z %YAMPMCFTIME%m/%d/%y%I:%M:%S %p%H:%M%H:%M:%SLANGUAGE/lib/cftime//lib/cftime/I@pwd 2>/dev/nullr: option requires an argument -- : illegal option -- --ɶUnknown error: lL@tL@~L@L@L@L@L@L@L@M@M@+M@=M@NM@`M@lM@M@M@M@M@M@M@M@M@M@N@$N@3N@BN@ZN@gN@}N@N@N@N@N@N@N@ O@#O@2O@@O@YO@vO@O@O@O@O@O@O@O@P@(P@?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@~@~@]@@@3.1bS0)#(@nbilen:sitog.eta.1 c c)#(@daehncf:h.lt1.1 )#(@daehrts:.gni.1 h h)#(@daehdts:h.oi3.1 )#(@daehrre:h.on1.1 )#(@daehasn:.rdd.1 h h)#(@daehesn:.evr.1 h h)#(@daeh.np:.1 h h)#(@nbilsn:s.gol.1 h h)#(@nbileg:sekot c.n1.1)#(@daehesn:.evr.1 h h)#(@nbilen:smant c.e1.1)#(@daehrts:.gni.1 h h)#(@daehrre:h.on1.1 )#(@daehesn:.evr.1 h h)#(@nbilsn:srre_c.ro1.1 )#(@nbilsn:srre_tsil1 c.1..)#(@nbilsn:steg_rdda1 c.1..)#(@daehdts:h.oi3.1 )#(@daehasn:.rdd.1 h h)#(@daehesn:.evr.1 h h)#(@nbilsn:steg_colb c.k1.1)#(@daehdts:h.oi3.1 )#(@daehasn:.rdd.1 h h)#(@daehesn:.evr.1 h h)#(@nbilsn:smoc_ c.m1.1)#(@daehdts:h.oi3.1 )#(@daehrre:h.on1.1 )#(@daehncf:h.lt1.1 )#(@daehgis:.lan.1 h h)#(@daehmem:.yro.1 h h)#(@daehrts:.gni.1 h h)#(@daehesn:.evr.1 h h)#(@daehasn:.rdd.1 h h)#(@nbilsn:s.gol.1 h h)#(@nbilts:s.snd.1 h h)#(@nbilsn:sh.bd1.1 )#(@nbilsn:strop h.s2.1)#(@nbilsn:scolb c.k1.1)#(@daehdts:h.oi3.1 )#(@daehrts:.gni.1 h h)#(@daehasn:.rdd.1 h h)#(@nbilsn:s.gol.1 h h)#(@nbilsn:sh.bd1.1 )#(@nbilts:s.snd.1 h h)#(@daehesn:.evr.1 h h)#(@nbilni:sad_dc.at1.1 )#(@daehdts:h.oi3.1 )#(@daehesn:.evr.1 h h)#(@daehasn:.rdd.1 h h)#(@nbilsn:sh.bd1.1 )#(@nbilts:s.snd.1 h h)#(@nbilsn:s.gol.1 h h)#(@daehrts:.gni.1 h h)#(@nbilta:snocttcen1 c.1..)#(@daehasn:.rdd.1 h h)#(@daehesn:.evr.1 h h)#(@daehncf:h.lt1.1 )#(@daehdts:h.oi3.1 )#(@daeh.np:.1 h h)#(@daehrts:.gni.1 h h)#(@daehrre:h.on1.1 )#(@nbilsn:s.gol.1 h h)#(@nbilsn:strop c.s 2.10/8880/11)#(@daehdts:h.oi3.1 )#(@daehncf:h.lt1.1 )#(@daehrts:.gni.1 h h)#(@nbilsn:s.gol.1 h h)#(@nbilts:s.snd.1 h h)#(@nbilsn:strop h.s2.1)#(@nbilsn:sh.bd1.1 )#(@daehesn:.evr.1 h h)#(@daehasn:.rdd.1 h h)#(@nbilsa:s.aot.1 c c)#(@daehytc:h.ep1.1 )#(@daehdts:h.oi3.1 )#(@daehmem:.yro.1 h h)#(@daehlam:.col.1 h h)#(@nbilsn:s.gol.1 h h)#(@nbilsn:sh.bd1.1 )#(@daehasn:.rdd.1 h h)#(@nbilfr:suqer.tse.1 c c)#(@daehasn:.rdd.1 h h)#(@daehesn:.evr.1 h h)#(@daehrts:.gni.1 h h)#(@daehdts:h.oi3.1 )#(@daehrre:h.on1.1 )#(@daeh.np:.1 h h)#(@nbilsn:s.gol.1 h h)#(@nbilac:s.non.1 c88 5/10/80/)#(@nbilfr:s.vcr.1 c c)#(@nbiltr:sneko1 c.1..)#(@daehdts:h.oi3.1 )#(@daehasn:.rdd.1 h h)#(@nbilts:s.snd.1 h h)#(@nbilsn:sh.bd1.1 )#(@daehesn:.evr.1 h h)#(@nbilps:s.epi.1 c c)#(@daehdts:h.oi3.1 )#(@daehncf:h.lt1.1 )#(@nbilts:sc.ao1.1 )#(@daehdts:h.oi3.1 )#(@daehmem:.yro.1 h h)#(@daehlam:.col.1 h h)#(@daehasn:.rdd.1 h h)#(@daehytc:h.ep1.1 )#(@nbilsn:s.gol.1 h h)#(@nbilol:slamg.col.1 c c)#(@daehdts:h.oi3.1 )#(@nbilsn:s.gol.1 h h)#(@nbilsn:s.gol.1 c c)#(@daehdts:h.oi3.1 )#(@daehasn:.rdd.1 h h)#(@nbilsn:s.gol.1 h h)#(@nbilts:s.snd.1 h h)#(@daehesn:.evr.1 h h)#(@nbilsn:sh.bd1.1 )#(@nbilws:s.bat.1 c c)#(@daehesn:.evr.1 h h)#(@daeh.np:.1 h h)#(@nbiliu:spamd1 c.1..)#(@daehdts:h.oi3.1 )#(@nbildi:sdaol1 h.1..)#(@daehncf:h.lt1.1 )#(@daehesn:.evr.1 h h)#(@daehrre:h.on1.1 3.1bS03.1bS03.1bS03.1bS0sn:.rdd.1 h h)#(@daehytc:h.ep1.1 )#(@nbilsn:s.gol.1 h h)#(@nbilol:slamg.col.1 c c)#(@daehdts:h.oi3.1 )#(@nbilsn:s.gol.1 h h)#(@nbilsn:s.gol.1 c c)#(@daehdts:h.oi3.1 )#(@daehasn:.rdd.1 h h)#(@nbilsn:s.gol.1 h h)#(@nbilts:s.snd.1 h h)#(@daehesn:.evr.1 h h)#(@nbilsn:sh.bd1.1 )#(@nbilws:s.bat.1 c c)#(@daehesn:.evr.1 h h)#(@daeh.np:.1 h h)#(@nbiliu:spamd1 c.1..)#(@daehdts:h.oi3.1 )#(@nbildi:sdaol1 h.1..)#(@daehncf:h.lt1.1 )#(@daehesn:.evr.1 h h)#(@daehretc/reboot100700 0 2 6774 4177547337 7301 37777777777 L! p @@.textp .data@@@@ @@.bss @ @.comment, ÐET @RU RP. PfjÐ& ÐU= @t"9 @u  @ hd@Y5 @YUuYÐUWVt@@9 @s @<@uaYtVujo jh@j^ W5YPWjK jh@j: u}ÐUWV}GGu+Ƌu}øÐ @ÐD@@(#)reboot 5.3b of Jan 27, 1988Rebooter failedUnknown error: @@@@@@&@@@R@d@t@@@@@@@@@@@'@6@G@[@o@@@@@@@@@ @@7@J@f@@@@@@@@ @:@C@L@U@m@@@@@@@@@ @ @. @< @T @r @ @ @ @ @ @ @ @ @ @ @& @/ @B @K @T @o @ @ @ @ @ @M @t @} @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @& @0 @: @D @N @X @b @l @v @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @* @4 @> @W @a @q @ @ @ @ @Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error@(#)syscall.s 1.2 87/10/09 3.1bS03.1bS02Eretc/setmnt100755 0 2 1600 4201131135 7257 37777777777 LP! \D(,@.text\ .data,@,@D,@.bssp@p@(.commentpÐETp@RU RP P jÐUhEhhP@<E}j h\@j jYEPdYqj EP5@ j u@@ P @UPDf@@E EUEH9E|@H@9@r\EEjuj =tkEHPht@u jYE= uEEEEE몡@u#EE8t = uEE@t@ZÐUPWVS}u ]}CKt GFut GKuE]u}Ð T$tÐÐÐl@ÐT$UÐ0@@(#)setmnt 5.3b of Jan 27, 1988/etc/mnttabcreat error 3.1bS03.1bS0 @UPDf@@E EUEH9E|@H@9@r\EEjuj =tkEHPht@u jetc/modem100755 3 3 63170 4273204152 7115 37777777777 L" Jp @.textJ .data @ @K@.bssh&@h&@p .commenthfÐETh&@RU RP PJjÐUxWVS} EEhjI7|Y9'@u 7h @jJY= @t==-u1Pu(@=et @=duP @=@t?jh @7! t*jh @7t! tjh @7_! u 7Y}Q= @u4jh# @75! tjh+ @7 ! u  @'@'@'@?'@'@9'@t @u jHYh2 @YPEPG=EPhD @EP EPYhS @EP=Et43C| @u?YujPEP uЍEP0"YhU @mYPEP<EPhg @EP1 EP9Yhs @EP<Et^ujPEPf tBhu @EPhw @jhy @j&@uZ>Y&@2EPy!Yh{ @4'@ u EFEh~ @VuV Yx @h @Vth @Vpux @h @VE}| E| @ah @VE}| E @@h @VyE}| E @h @Vu  @F;5'@9'@t9Et  joFY}t}th @$YjPFY @jYPh @:j/h @@@'@h @5'@uj5'@h'@ L5'@h'@M:5'@s:Y=uh'@h'@(:h'@h'@:'@}ua= @tzh @5'@th @5'@uLtCt:5'@jh @ h@Yh @hh@j EY9x @t}x @E9Eu# uE @3| @9 @u  @hujDjIYuhtj? j/Y9| @u 9 @EPhtjy? =| @ue9| @uM= @ue9 @uMhujvCjYEPhtj? jY9 @= @tz@@P Y3# @4'@Yh@ YF @;|3# @4(@wYh@x YF @;|҃= @th@PYjY}t E9 @}'hh"@A:Y'@@h'@h@:jhTj> jBY|u}UWV}='@'@'@j/5'@u='@GPh @t2- @'@=dt$=et=mt=stJ=utu}Ê @'@'@<'@=muա'@'@'@@뽡'@'@W'@UWV} @=( @=(~h@YjAY= @t` @=dt&=eu8 @ @<'@3u}à @ @<(@3h@"YjNAY=@j/WE}Wh @5jh@u E+Ph @h @ E+Ph @h( @ E+Ph @hP @ h @E+Ǎ @P5h @E+Ǎ( @P4h @E+ǍP @P4:=/uWh @4 h@h @4Wh @jh @,?}Eh @]Yh@Yh@Yh @h @h@ j?Ytj:YV YV:Yj/h @@'@h@5'@uj5'@h'@V L5'@h'@35'@4Y=uh'@h'@3h'@h'@3'@EPhTj:: }  @=eu '@@ @=du '@@ @3EUWV}u 4'@/t u}ÍGF'@'@F;5'@|'@H'@'@ @3UPWV}u 4'@t%E @P4'@t u}Ë'@U ;t3EGF'@'@F;5'@|'@H'@'@ @EUx @ @h@uuh@uuh@uu3˸9'@u  @j-=YUPt@ @Ph@ jhtj8 t(=t=u%h@ Yh@ Y h&@ YEPhtj7 E%=u3A@PE%=u:@Ph3@. 3U5'@hH@ '@=w|$ @hT@ Yh[@ YU jhtj"7 E9EEEE"jh@u u EEE= t Euȃ}tTEEE"jh@uK u EEE= t Euȃ}t3UWVSh@h @0u h @)Y3ۋE= E=#E=:uh@EPEPe/YPh'@EP u\h@j|&@P|t(h@h@juPuuWhEP 'W0Yu9'@t h @Yttptx3UWVSh@h @.u h @Yh@u(u3h @h( @-h( @Yh@h( @F.u h( @mY3EDž|= s|=#a|=:O|PP]-h@P Pn-YPh'@P h@j &@P u Eh@jp h@j[ u t|u tju|+Pl,h@|P|PsYt uYV|PWh|P FW.YV.YtGh @3Yh @h( @h( @Y@  @ø9'@th( @Yu }u h @YKh @Y>uX u)t@@P5'@h@w h @h@e[U,jhP @5E}} hP @YET5'@EP u>h@EP t)E=uEPEPh@ Ej$EPu]* =$tu0YEUhujC5jy Yh@u; u jhtJjhtj0 EPhTj0 fMhuj4j YEPhTj~0 j YUW}W5'@h@ }UW}W5'@h4@ }UW}&@P5'@hc@ }UW}W%Yh@hx"@5h@hx"@#j4Y}U,jhP @3E}} hP @YE45'@EPuh@EPt Ej$EPu( =$tu.YEUjhTj./ Uh( @ Yj3YÐ)3ÐUE PuUWVS3h@g'YEuE@j/ut@E|PuW u |P H&@=td=t$= tV= t8=u2FwBVYDž|@|DžxTCwt H&@ hlpø9x|H&@xxt|xBM t ɉ u|Ph@, xUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3UWVS} 3G %=utG9Gu!?uG DuW*Y 3G |%@UG u;u&&YEPuG P0 E]u}W*Y=u~GEU+Ѕҋ~SjuuXEt E+EH؋)G?}3W |%@+W;}W+Y}t*G @tW)Y=u ]VEg 03ÐUWVS} uEE~,F t!O>(V/Y=uE9Eu~3]u}N;>}Sj vuSEtE+E؋E)F>}3V |%@+V;}V{*Y}u +gEEvÐUWV@X@9H&@s H&@<@u1$YtVuj. jh@j. W$YPWj. jh@j. u}ÐUPWE Et"@ut"@t* t"@hh"@uu t"@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW'YG uG tO G Dt1X"@"u}F @tV$Y;5x%@rGGG tG |%@+GPwG P! | GG듸9tO O G tg aU}u3jYEh+j,EEE}t6E9Ev)EE&E+EEEEEMujT,hl&@Yuj|,YufYjM,YjVYE}| uj,} }}}t EEP!YEE'Ujhl&@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu g ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐUWVS}u&@Etu WЋu 3]u}u V&u &@ C&@ɐUWVS}u Ct ;ut Nj]u}ËG8u3UWVS} ]Ft ;utCuދ+E]u}ø$ÐUEu$juhl@hh@h`@ujYjj)Ejj)EEPOYE;Et 9Euuj(uj(9EuEËED$Pt$Ð5h&@t$ t$  Ð;)(t3ÐUWVS}3(urYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!"(ÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_UPWVu"Yt8EPu|%E%= ujhp@&} 3u}þfEft EU;uuhp@h&@EPh&@EPh&@|=EU;u1E%= u!t EU;uW!Y&@\jEPW =TjjW! NuWe!Y3 n&3ÐV&3ÐV|$3O|$ ыt$ D$^ø &3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  |%@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžld@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}&@E&@E!@s3UtE]&@E!@E!@E"@r5E"@r"@E"@AE8"@s6EE]@)EE@"@r݋EE 9P܃}t؁&@&@v&@EH"@t&@r05}fEf fEmE]mE܉E@0Ee P"@];r&=5|+&@u&@1}tCF0N<9&@]Ћuԋ}ËEE0]@EEsEE 9P EEEE "@MU]vEu}fEf fEm]mE܉EFUR0EMm]E("@E50"@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G |%@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W |%@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}h&@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð" L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W|%@UWX"@;=x%@r3}ÃG uUWX"@ WY;=x%@r}UWV}tlG t6G t3WVYG PY}H&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG |%@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G |%@+G?}3W |%@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G |%@+G?}3W |%@+W;}WY3UWV}G G u}}&u0)@8-@GW |%@*h!YGt@O G W|%@GGVYtG uO @u}G @1@WR|%@UWV}G |%@+G}G |%@Wu};7}7𐐐3ÐUH&@EEPhTu } EH&@3ø6ÐÐU WVSE9ET=\&@u<`&@ \&@\&@ `&@P&@`&@L&@\&@P&@X&@E@3؋=L&@E&;5P&@\&@E@E=w=X&@j YP&@@;t?3Ee ƹ3tL3+‰EEE2P&@+X&@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5X&@P&@0E+E-P&@@;tP&@P&@P&@\&@~ЉL&@;5L&@vL&@T&@L&@ 9=X&@u L&@X&@G(=L&@95X&@u=X&@7tލ;r;l%;UWV}5L&@%P&@9u5X&@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹT&@Nj]u}WV|$ t$L$Njʁ^_øÐT$d&@Ru d&@+D$øT$d&@3øÐ0hKNL$0hK:L$0+L$0L$0 L$0ÃÐH&@Ð{T$ð @@(#)xtty RTS 5.3b of Jul 19, 1988/etc/inittab/etc/tmpXXXXX/etc/utmp/etc/inittab/etc/tmpXXXXX/etc/utmpmusedddqddYou must be root to run %s. tty/dev/consoledisableenable/tmp/netchkXXXXXXls @ > %s 2>&1r/tmp/runlevXXXXXXwho -r > %sr: -amodem-modemunmodem-iflow-oflow-enabledisableUnknown flag: -a. consoletty09tty19 %c!!! Warning !!! %s is the network port used by Worknet. Altering this port may result in the network's inability to run and a system halt. %s not updated. respawnoffrespawnoff/etc/telinit qsttysttyonToo many ports specified. Too many ports specified. /dev//dev/ If your syntax is correct: Make sure your /etc/inittab file has an entry for %s and your system is configured to use this device. You should have a serial communications board and the proper multiuser version of UNIX to use %s. consoleenabledisableonoffuser%sabled; endismodem on; modem off; modem user; %s %s -iflow-oflowusage: %s ttyNN MODE ttyNN where MODE is one of (on, off, user) gettyMODEMr:::respawnrrespawnw:::::%s is already %sabled. endis%s not updated. LOGIN%.8s is logged in on %.8s respawnwarning: %s not found in %s warning: %s is the port used by Worknet in %s warning: %s is not under the current run-level of %c You must be root to change modem settings or enable/disable a port. GETTY/bin/shPATH:/bin:/usr/binshUnknown error: \@d@n@@@@@@@@@@-@>@P@\@r@~@@@@@@@@@@#@2@J@W@m@|@@@@@@@@"@0@I@f@@@@@@@@@@,@A@R@_@u@@@@@@@@@@-@C@S@a@}@@@@@@@@@@@ @7@^@@@@@@@#@,@5@>@G@P@Y@b@k@t@~@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@@"@3@K@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF(11"(1D11111A('1 (.(1q((((((((((11111111111*1!/1111111111111111/*1111111111I1(*,!/((11(11*111m11)11/*-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@P1@P1@x%@X1@2@3.1bS03.1bS0x%@X1@etc/sysdef100755 0 2 100320 4201131225 7301 37777777777 Lӄ! a$&|@.texta .data|@|@|b@.bss @ @$&.comment8ÐET @RU RP PaajÐUtE 9E~4E P=-u$E PB=auDžME  DžE=tH=t=uE P@E P@ h@h@!( j`Yt Dž@ @h@U#@u 5@h@h@' jG`Yj5@$@u 5@h @h@' j`Y$@@ =Lth@h@b'j_Y$@@%,"@EP5@]9E%=@t 5@h3@h@ ' j_YhH@5@T#@u 5@hJ@h@& jS_Yh#@hZ@5$@ P9Yu#@+#@#@Ph`@ Phx@%6@$@ =@\7@=,"@tuh@3Y6@h@#Y6@h@Y6@h@Y7@h@Y6@h@Y6@h@Y6@5@hi@h@% jA^Yh@%Y6@$@h@Y6@h@yY6@h@iY6@h@YY6@6@h@DY7@h@4Y7@h@$Y 7@h@Y7@h@Y7@h@Y7@h@Y7@h@Y 7@h@Y(7@h@Y$7@h@Y,7@h @Y07@h(@Y47@h.@tY87@h7@dY<7@h@@TY@7@hG@DYD7@hQ@4YH7@hZ@$YL7@hc@Y6@hk@Y6@hs@YP7@h{@YT7@h@YX7@h@Yh$@5@ 6@6@,6@xuh@h@#j\Y6@6@96@uj6@@+#@P5#@# 5#@jhh @5 @h@"5 @h@"5!@h@t"5x!@h@a"5!@h@N"5!@h8@;"5!@h]@("5 !@h@"5$!@h@"5(!@h@!5,!@h@!54!@h@!58!@h<@!5@'YhM@Y h8#@h0#@h@h0"@C=jxh0#@m|h@h8#@h@#@@P%h0#@h@#@'YPP h@h8#@hT#@@PE%PYh@h8#@hT#@@P%PYh @h8#@hT#@\@P$PYh@h8#@hT#@5@P$P{Yh@h8#@hT#@@P$PTYh@h8#@hT#@?P$P-Yh'@h8#@hT#@?P[$PY&U6@96@rh@h@joJYu?Y@P"FY6@u6@0V?6@f@ @6@U =@9 =@rh#@h@zjIYjuhA@5 =@>P" jh8#@ =@@P! =@U P@EjsuEME% Љ =@PPjbut5 =@@E% EME% Љjcut5 =@@E% EME% ЉjfuWt5 =@@E% EME% Љjmut5 =@@E% EME% Љ =@PP =@UW\7@Gxt G%t;==@u\7@jG@+#@P5#@ 5#@jjhh#@ G%QGxu(x$u"x4uxDuxTuxdu xt G%EWjhC@_ Et8WYfE=tE%PhN@'eEt8WZYfE=tE%Ph\@ eEt8W=YfE=tE%Phj@ eEt hy@ Y}u h@u Yh@j YG% G;==@}UP+EuE@tEU@EEEuUPW#@PYuh@h@q ]#@%EG%t #@%PGPh@ !#@%PuGPh@~ #@P0Yuh@h@ ]#@%EG%t #@%PGPh@ !#@%PuGPh@ #@PYuh@h@g }#@%EG%t #@%PGPh3@ #@%PuGPhJ@q UPW}EU ;u }ÊGEu3UWVE%j6@k@+#@P5#@ 5#@jjEP\7@)G%tGU9Pdu Nju}Ã;==@u3UWVS}9@u6j6@@+#@P5#@t 5#@jjh@U3%fPY;uË]u}F;5@|ӸU WVE%j6@@+#@P5#@ 5#@jj EP\7@)G%tGU9Pu Nju؋}Ã;==@u3UWVS}9@u6j7@@+#@P5#@b 5#@jjh@C3%fPY;uË]u}F;5@|ӸU WVE%j6@@+#@P5#@ 5#@jj EP\7@)G%tGU9Ptu Nju؋}Ã;==@u3UWVS}9@u6j7@@+#@P5#@P 5#@jjh@13%fPY;uË]u}F;5@|Ӹ吐U uY=jEPR@REp EfPfUfEPEEU t/E9E}EUU M ;tθ9EufEEU;sEpjj(u1=t3ΐUPu 2Yhh@u5Eu3ujjEP=tEjju ujjEP=u E u u6Y3jhj@EP E f@ ejjuf upujj Nj}Uu;YÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu< ÉE)G?}3W @+W;}W7Y+Å{EhUWVS} uEE~,F t!O>(VKY=uE9Eu~3]u}N;>}Sj vuGEtE+E؋E)F>}3V @+V;}V6Y}u +gEEvUXWVEE} j7V u6tG =DFGfFfG fF fGFG #?8 >u}jju6 EjkEURu6 =trjEPu/ =uZu6YEtJE-PE@Pu/ U;u%EUJ ujuu16 =ujuu6 9FrE9F|!u5Y}u8Y7EFP@}u"uV5Y}t uk8Y3u}jEPu. F@)EFtjEPu. } fG GfGG ?t8uju9E} {uEPud. E=Ltu4YKEEjuu4 E؋EEUPWE E@u@t* @h@uu @ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu o E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P3 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P 3 ECG t8W.YG t g GGuu G P2 E9Eus3lUPE EPuh@d UPEEPu uI UW}EEEljEEW+YEE2uu EP }ÐUWVS}u Dž @ @ @WU=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_= @uVctQ[tL @} W@ Y GG@u @W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf @fl9uEEP @{EEP @dEPWSt'= @tu /$Fu @td= @u @} W Y GG@u @W` =u @y%uF؃% @} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE @}WyY3]u}ËGG=+t=-t =0t8EM @} W(Y GG؃0i9E }9Eo @} WY GGE ME؃m @WEP  @WEP i @WEP EIE;vx @"3C@u9Eun@t`@t0@t7W+ЉUE9E}t}u EEEE}.u EEtmet E}EEuyFӈ @} WY GG@u+t-t@t.Fӈ @} WY GGM}}}tPEPY]}tE]l9EuEBETEBE@}t9EtE؉El9EtGh9Eu=EBfUf @WS=u  @E6EBUU WVS}u ]tEB3EEcu!utEUEK~U @E} u.Y EP@E=t'suE@u[uEU<t9Eu @ @)~% @uu=u  @E9Eu 3]u}Åt ctEU WVS}u E=^uEGh}u3PV' E=]t -9EudEUGX}u 3]u}ø-9Eu2E=]t%G;]}E+@PuP G EUGE=]u랐U(WVS}EEG@u=+t =-uEG3EEEE.}tE0u7EzM }k  9E}kE EkE EEM}M }k ؋-0' 9E}kE EkE E-0EEG@U.uEEBu @]̋uЋ}É]E]9E~ EME]Eteur3E= t=+t =-uEG@t:} k -0G@u؃}t)EE}@EEEE(@u(4@C0@  [@r@E}؋<@E8@E|tE ]tkEP}}EuE\$ ]}t EEUWV}uW9$YG uG tO G Dt1@"u}F @tV:!Y;5@rGGG tG @+GPwG PU | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU W}tE@@uE}ÍEPu u ؅~8E=x @"EX@sP@H@뫋E=}!x @"h@E p@]r؋ȸEE}^E `@]wϸEEM3UW}Ex@uE}E@vEE]E@rE @EE]E@rE@vEE뒐UPWVS}u ]C}G8uO KuO GF҈uE]u}ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐F&3ÐUWVS}u ߋG8uOGF҈uË]u}jjt$ 9rãx @ÐUW} 9EtFG tG9GwG9Gu+?u&GuW YGHGUE}øUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS} @E @E@s3UtE] @E@E@E8@r5E@@rL@EH@AEh@s6EE]@)EEp@r݋EE 9P܃}t؁ @ @v @Ex@t @r05}fEf fEmE]mE܉E@0Ee @];r&=5|+ @u @1}tCF0N<9 @]Ћuԋ}ËEE0]@EEsEE 9P EEEEP@MU]vEu}fEf fEm]mE܉EFUR0EMm]EX@E5`@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}x @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u=@A@GW @*h!YGt@O G W@GGVYtG uO @u}G $E@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUx @EEPhTu } Ex @3ø6FÐ2ÐU WVSE9ET= @u< @  @ @  @ @ @| @ @ @ @E@3؋=| @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ| @;5| @v| @ @| @ 9= @u | @ @G(=| @95 @u= @7tލ;r;l%;UWV}5| @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ @Ru @+D$ø!T$ @3øÐx @ÐT$À@@(#)sysdef 5.3b of Jan 28, 1988@@/unix/usr/sys/master.dusage: %s [ unix-file [ master-dir ] ] /dev/kmemrcannot open %s cannot open %s invalid a.out format %s not a directory rcannot open %s .data* * %s Configuration * * * %s Configuration (running kernel) * bdevswcdevswbdevcntcdevcntrootdevpipedevswapdev/rcannot open %s %s %*s %s _addropenclosereadwriteioctlstrategyinfocannot close %s * * Devices * * * System Configuration * %s: not an absolute boot file * * Tunable Parameters * vtuneutsnamemsginfonmuxlinknstrpushnstreventmaxsepgcntstrlofracstrmedfracstrmsgszstrctlsznadvertisemaxgdpnrcvdnrdusernsnddminservemaxserverfsizerfs_vhighrfs_vlownsrmountseminfoshminfonremotenlocalrc_timenamelist error %6d buffers in buffer cache (NBUF) %6d entries in callout table (NCALL) %6d inodes (NINODE) %6d s5inodes (NS5INODE) %6d entries in file table (NFILE) %6d entries in mount table (NMOUNT) %6d entries in proc table (NPROC) %6d entries in shared region table (NREGION) %6d clist buffers (NCLIST) %6d processes per user id (MAXUP) %6d hash slots for buffer cache (NHBUF) %6d buffers for physical I/O (NPBUF) %6d size of system virtual space map (SPTMAP) %6d fraction of memory for vhandlow (VHNDFRAC) %6d maximum physical memory to use (MAXPMEM) %6d auto update time limit in seconds (NAUTOUP) %6d maximum number of open files per process (NOFILES) %6d number of streams queues (NQUEUE) %6d number of streams head structures (NSTREAM) %6d number of 4096 bytes stream buffers (NBLK4096) %6d number of 2048 bytes stream buffers (NBLK2048) %6d number of 1024 bytes stream buffers (NBLK1024) %6d number of 512 bytes stream buffers (NBLK512) %6d number of 256 bytes stream buffers (NBLK256) %6d number of 128 bytes stream buffers (NBLK128) %6d number of 64 bytes stream buffers (NBLK64) %6d number of 16 bytes stream buffers (NBLK16) %6d number of 4 bytes stream buffers (NBLK4) %6d maximum size of user's virtual address space in pages (MAXUMEM) %6d for package compatibility equal to MAXUMEM (MAXMEM) %6d page stealing low water mark (GPGSLO) %6d page stealing high water mark (GPGSHI) %6d vhand wake up rate (VHANDR) %6d awaken vhand if free memory less than vhandl (VHANDL) %6d bdflush run rate (BDFLUSHR) %6d minimum resident memory for avoiding deadlock (MINARMEM) %6d minimum swapable memory for avoiding deadlock (MINASMEM) %6d maximum number of pages swapped out (MAXSC) %6d maximum number of pages saved (MAXFC) * * Utsname Tunables * %8s release (REL) %8s node name (NODE) %8s system name (SYS) %8s version (VER) * * Streams Tunables * %6d number of multiplexor links (NMUXLINK) %6d maximum number of pushes allowed (NSTRPUSH) %6d initial number of stream event calls (NSTREVENT) %6d page limit for event cell allocation (MAXSEPGCNT) %6d maximum stream message size (STRMSGSZ) %6d max size of ctl part of message (STRCTLSZ) %6d max low priority % block usage (STRLOFRAC) %6d max medium priority % block usage (STRMEDFRAC) * * RFS Tunables * %6d entries in advertise table (NADVERTISE) %6d receive descriptors (NRCVD) %6d maximum number of rd_user structures (NRDUSER) %6d send descriptors (NSNDD) %6d minimum number of server processes (MINSERVE) %6d maximum number of server processes (MAXSERVE) %6d maximum number of remote systems with active mounts (MAXGDP) %6d size of static RFS administrative storage area (RFHEAP) %6d latest compatible RFS version (RFS_VHIGH) %6d earliest compatible RFS version (RFS_VLOW) %6d entries in server mount table (NSRMOUNT) %6d max interval for turning off RFS caching (RCACHE_TIME) %6d minimum number of RFS buffers (NREMOTE) %6d minimum number of local buffers (NLOCAL) * * IPC Messages * %6d entries in msg map (MSGMAP) %6d max message size (MSGMAX) %6d max bytes on queue (MSGMNB) %6d message queue identifiers (MSGMNI) %6d message segment size (MSGSSZ) %6d system message headers (MSGTQL) %6u message segments (MSGSEG) * * IPC Semaphores * %6d entries in semaphore map (SEMMAP) %6d semaphore identifiers (SEMMNI) %6d semaphores in system (SEMMNS) %6d undo structures in system (SEMMNU) %6d max semaphores per id (SEMMSL) %6d max operations per semop call (SEMOPM) %6d max undo entries per process (SEMUME) %6d semaphore maximum value (SEMVMX) %6d adjust on exit max value (SEMAEM) * * IPC Shared Memory * %6d max shared memory segment size (SHMMAX) %6d min shared memory segment size (SHMMIN) %6d shared memory identifiers (SHMMNI) %6d max attached shm segments per process (SHMSEG) %6d max in use shared memory (SHMALL) * * File and Record Locking * %6d records configured on system (NFLOCKS) internal name list overflow internal link array overflow file %-*s chrdev=%02d blkdev=%02d strmdrv=%02d strmmod not loaded unknown root device rootdev %s minor=%d rootdev %s(%d) minor=%d unknown swap device swapdev %s minor=%d swapdev %s(%d) minor=%dunknown pipe device pipedev %s minor=%d pipedev %s(%d) minor=%d r! ` %ld/////////////////////??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFj?*I*Iv?*IH*I*I*I*I?R?*I^??*I??????????*I*I*I*I*I*I*I*I*I*I*IA*IuF*I*I*I*I*I*I*I*I*I*I*I*I*I*I*I*IA*I*I*I*I*I*I*I*I*I*IH?ADuF??*I*I?*I*ImA*I*I*IH*I"A*I*IA-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@4E@4E@@ - # Certain abbreviations (e.g. c100 for concept100) are also allowed # for upward compatibility. The part to the left of the dash, if a # dash is present, describes the particular hardware of the terminal. # The part to the right can be used for flags indicating special ROM's, # extra memory, particular terminal modes, or user preferences. # All names are always in lower case, for consistency in typing. # Because of file naming restrictions, terminal names should not contain # period or slash, in fact, entirely alphanumeric characters plus dash are # highly recommended. These restrictions do not apply to the verbose name. # # The following are conventionally used flags: # rv Terminal in reverse video mode (black on white) # 2p Has two pages of memory. Likewise 4p, 8p, etc. # w Wide - in 132 column mode. # pp Has a printer port which is used. # na No arrow keys - terminfo ignores arrow keys which are # actually there on the terminal, so the user can use # the arrow keys locally. # # The number of lines on the screen. # s With a status line. # # There are some cases where the same name is used for two different # terminals, e.g. "teleray" or "2621" or "vt100". In these cases, # if a site has one of these, they should choose a local default and # bring that terminal to the front in the reorder script. This works # because tgetent picks the first match in /etc/terminfo. # # If you absolutely MUST check for a specific terminal (this is discouraged) # check for the 1st entry (the canonical form) since all other codes are # subject to change. We would much rather put in special capabilities to # describe your terminal rather than having you key on the name. #ident "@(#)terminfo:adds.ti 1.7" # # -------------------------------- # # Manufacturer: ADDS # Class: II # fviewpoint|flaky adds viewpoint with ^O bug, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, lines#24, cols#80, cup=\EY%p1%' '%+%c%p2%' '%+%c$<6>, is2=, ed=\Ek$<16.1*>, el=\EK$<16>, cuf1=^F, cuu1=^Z, clear=^L$<10.1*>, ll=^A, kcub1=^U, kcuf1=^F, kcud1=^J, kcuu1=^Z, khome=^A, viewpoint|adds viewpoint, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, lines#24, cols#80, cup=\EY%p1%' '%+%c%p2%' '%+%c$<6>, is2=^O\E0`, ed=\Ek$<16.1*>, el=\EK$<16>, cuf1=^F, cuu1=^Z, clear=^L$<10.1*>, ll=^A, kcub1=^U, kcuf1=^F, kcud1=^J, kcuu1=^Z, khome=^A, kf0=^B1, kf2=^B2, kf3=^B!, kf4=^B", kf5=^B#, rmso=^O, smso=\E0P^N, rmul=^O, smul=\E0`^N, cvvis=^O\E0P, cnorm=^O\E0`, v90|viewpoint-90|ADDS viewpoint 90, lines#24, cols#80, it#8, am, bw, mir, clear=^L, ll=^A, cuu1=^Z, cub1=^H, cuf1=^F, cud1=^J, cr=^M, cud1=^J, ind=^J, bel=^G, ht=^I, dl1=\El, il1=\EM, ed=\Ek, el=\EK, cbt=\EO, dch1=\EE, .smir=\EF, .rmir=\EF, pad=\377, vpa=^K%p1%' '%+%c, hpa=^P%p1%{10}%/%{16}%*%p1%{10}%m%+%c, cup=\EY%p1%' '%+%c%p2%' '%+%c, kbs=^H, kcud1=^J, khome=^A, kcub1=^U, kcuf1=^F, kcuu1=^Z, kf0=^B1^M, kf1=^B2^M, kf2=^B3^M, kf3=^B4^M, kf4=^B5^M, kf5=^B6^M, kf6=^B7^M, kf7=^B8^M, kf8=^B9^M, kf9=^B:^M, kf10=^B;^M, lf0=F1, lf1=F2, lf2=F3, lf3=F4, lf4=F5, lf5=F6, lf6=F7, lf7=F8, lf8=F9, lf9=F10, lf10=F11, regent|Adds Regent Series, cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#80, am, clear=^L, ll=^A, cuu1=^Z, cub1=^H, cuf1=^F, cud1=^J, regent100|Adds Regent 100, kf0=^B1^M, kf1=^B2^M, kf2=^B3^M, kf3=^B4^M, kf4=^B5^M, kf5=^B6^M, kf6=^B7^M, kf7=^B8^M, lf0=F1, lf1=F2, lf2=F3, lf3=F4, lf4=F5, lf5=F6, lf6=F7, lf7=F8, cup=^K%p1%' '%+%c^P%p2%{10}%/%{16}%*%p2%{10}%m%+%c, xmc#1, use=regent, regent20|Adds Regent 20, ed=\Ek, el=\EK, cup=^K%p1%' '%+%c^P%p1%{10}%/%{16}%*%p2%{10}%m%+%c, use=regent, regent25|Adds Regent25, khome=^A, kcub1=^U, kcuf1=^F, kcuu1=^Z, kcud1=^J, use=regent20, regent40|Adds Regent 40, kf0=^B1^M, kf1=^B2^M, kf2=^B3^M, kf3=^B4^M, kf4=^B5^M, kf5=^B6^M, kf6=^B7^M, kf7=^B8^M, lf0=F1, lf1=F2, lf2=F3, lf3=F4, lf4=F5, lf5=F6, lf6=F7, lf7=F8, il1=2*\EM, dl1=2*\El, smso=\E0P, rmul=\E0@, smul=\E0`, rmso=\E0@, xmc#1, use=regent25, regent40-s|regent40+|Adds Regent 40-s, is2=\EB, use=regent40, regent60|regent200|Adds Regent 60, rmso=\ER\E0@\EV, smso=\ER\E0P\EV, dch1=\EE, rmir=\EF, smir=\EF, is2=\EV\EB, kdch1=\EE, kich1=\EF, krmir=\EF, use=regent40-s, regent60-na|regent 60 w/no arrow keys, kcub1@, kcuf1@, kcuu1@, kcud1@, use=regent60, a980|adds consul 980, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\E^N$<13>, am, cub1=^H, clear=^L$<1>^K@, cup=^K%p1%'@'%+%c\E^E%p2%02d, cols#80, dl1=\E^O$<13>, kf0=\E0, kf1=\E1, kf2=\E2, kf3=\E3, kf4=\E4, kf5=\E5, kf6=\E6, kf7=\E7, kf8=\E8, kf9=\E9, lines#24, cuf1=\E^E01, smso=^Y^^^N, rmso=^O, cuu1=$<9>, # # -------------------------------- # # ALTOS COMPUTER SYSTEMS ( 4/15/88 ) # # The following entries are for Altos-supported terminals # a2|alt2|altos2|altos 2|Altos II, ed=\E[0J, el=\E[0K, clear=\E[;H\E[2J, cuu1=\E[A, cud1=\E[B, cuf1=\E[C, cub1=\E[D, cup=\E[%i%p1%d;%p2%dH, home=\E[H, il1=\E[L, dl1=\E[M, ich1=\E[@, dch1=\E[P, cols#80, lines#24, ri=\EM, ind=\ED, nel=\EE, sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m, is1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, if=/usr/lib/tabset/vt100, kcuu1=\E[A, kcud1=\E[B, kcuf1=\E[C, kcub1=\E[D, khome=\E[f, kbs=^H, cr=^M, bel=^G, hs, knp=\E[S, kpp=\E[T, kich1=\E[@, kil1=\E[L, kdch1=\E[P, kdl1=\E[M, kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, kf4=^AD\r, kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, kf9=^AI\r, kf10=^AJ\r, kf11=^AK\r, kf12=^AL\r, kf13=^AM\r, kf14=^AN\r, kf15=^AO\r, kf16=^A`\r, kf17=^Aa\r, kf18=^Ab\r, kf19=^Ac\r, kf20=^Ad\r, kf21=^Ae\r, kf22=^Af\r, kf23=^Ag\r, kf24=^Ah\r, kf25=^Ai\r, kf26=^Aj\r, kf27=^Ak\r, kf28=^Al\r, kf29=^Am\r, kf30=^An\r, kf31=^Ao\r, a3|alt3|altos 3|altos3|Altos III, sgr=\E[%?%p3%p4%A%p5%A%t11%e%p3%p4%A%t10%e%p3%p5%A%t9%e%p4%p5%A%t3%e%p1%t9%e%p2%t4%e%p3%t7%e%p4%t5%e%p5%t2%e%p6%t9%;p^H, xmc#1, civis=\E[>5h, cvvis=\E[>5l, use=alt2, a132|alt132|altos3_132|a3_132|Altos III_132, sgr=\E[%?%p3%p4%A%p5%A%t11%e%p3%p4%A%t10%e%p3%p5%A%t9%e%p4%p5%A%t3%e%p1%t9%e%p2%t4%e%p3%t7%e%p4%t5%e%p5%t2%e%p6%t9%;p^H, xmc#1, civis=\E[>5h, cvvis=\E[>5l, cols#132, use=alt2, smso=\E[7m, bold=\E[1m, rev=\E[7m, blink=\E[5m, dim=\E[2m, invis=\E[8m, # # altos-4: see wyse 50 # a5|alt5|altos 5|altos5|Altos V, use=alt2, # # ---- END OF TERMINFO FOR ALTOS # # w5|wyse5|wyse50|Wyse wy-50, ed=\EY, el=\ET, clear=\E+, xmc#1, cud1=^J, ind=^J, cr=^M, bel=^G, cub1=^H, cuu1=^K, cuf1=^L, kbs=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, home=^^, il1=\EE, dl1=\ER, ich1=\Eq, dch1=\EW, smir=\Eq, rmir=\Er, cols#80, lines#24, am, mir, ht=5^I, ri=\Ej, sgr=\EG%?%p3%p4%A%p5%A%tv%e%p3%p4%A%t6%e%p3%p5%A%tt%e%p4%p5%A%tr%e%p1%t4%e%p2%t8%e%p3%t4%e%p4%t2%e%p5%tp%e%p6%t4%e%p7%t1%e0%;^H, is1=\Eu\E0, if=/usr/lib/tabset/std, kcuu1=^K, kcud1=^J, kcuf1=^L, kcub1=^H, khome=^^, knp=\EK, kpp=\EJ, kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, kf4=^AD\r, kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, kf9=^AI\r, kf10=^AJ\r, kf11=^AK\r, kf12=^AL\r, kf13=^AM\r, kf14=^AN\r, kf15=^AO\r, smso=\E[7m, bold=\E[1m, rev=\E[7m, blink=\E[5m, dim=\E[2m, invis=\E[8m, w3|wyse3|wyse30|Wyse wy-30, use=wyse50, a4|alt4|altos4|altos IV, use=wyse50, w7|wyse7|wyse75|Wyse wy-75, ed=\E[J, el=\E[K, clear=\E[H\E[2J, cud1=^J, ind=^J, cr=^M, bel=^G, cuu1=\E[1A, cud1=\E[1B, cuf1=\E[1C, cub1=\E[1D, cup=\E[%i%p1%d;%p2%dH, home=\E[H, il1=\E[L, dl1=\E[M, ich1=\E[@, dch1=\E[P, smir=, rmir=, cols#80, lines#24, ri=\EM, smso=\E[7m, rmso=\E[m, smul=\E[4m, rmul=\E[m, is1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, if=/usr/lib/tabset/vt100, kcuu1=\E[A, kcud1=\E[B, kcuf1=\E[C, kcub1=\E[D, khome=\E[H, kbs=^H, cr=^M, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, w8|wyse8|wyse85|Wyse wy-85, ed=\E[J, el=\E[K, clear=\E[H\E[2J, cud1=^J, ind=^J, cr=^M, bel=^G, cuu1=\E[1A, cud1=\E[1B, cuf1=\E[1C, cub1=\E[1D, cup=\E[%i%p1%d;%p2%dH, home=\E[H, il1=\E[L, dl1=\E[M, ich1=\E[@, dch1=\E[P, smir=, rmir=, cols#80, lines#24, ri=\EM, smso=\E[7m, rmso=\E[m, smul=\E[4m, rmul=\E[m, if=/usr/lib/tabset/vt100, kcuu1=\E[A, kcud1=\E[B, kcuf1=\E[C, kcub1=\E[D, khome=\E[H, kbs=^H, cr=^M, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf1=\E17~, kf2=\E18~, kf3=\E19~, kf4=\E20~, kf5=\E21~, kf6=\E31~, kf7=\E32~, kf8=\E33~, kf9=\E34~, smkx=\E=, rmkx=\E>, is1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[36h\E[2l\E[?16l\E>\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134, smcup=\E[36h\E[2l\E[?16l\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134, rmcup=\E[36h\E[2l\E[?16l\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134, # # For wyse 95 see altos2 # w9|wyse9|wyse95|Wyse wy-95, use=altos2, # w1|wyse|wyse100|Wyse wy-100, ei=\Er, im=\Eq, ta= 5^I, li#24, nd=^L, sg#1, up=^K, ma=^K^P^L, use=wyse50, # # Vanilla vt100 definitions. vt100|vt100-am|dec vt100, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, it#8, clear=\E[H\E[2J$<50>, cub1=^H, am, cup=\E[%i%p1%d;%p2%dH$<5>, cuf1=\E[C$<2>, cuu1=\E[A$<2>, el=\E[K$<3>, ed=\E[J$<50>, cud=\E[%p1%dB, cuu=\E[%p1%dA, cub=\E[%p1%dD, cuf=\E[%p1%dC, smso=\E[7m$<2>, rmso=\E[m$<2>, smul=\E[4m$<2>, rmul=\E[m$<2>, bold=\E[1m$<2>, rev=\E[7m$<2>, blink=\E[5m$<2>, sgr0=\E[m$<2>, sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, smkx=\E[?1h\E=, rmkx=\E[?1l\E>, tbc=\E[3g, hts=\EH, home=\E[H, kcuu1=\EOA, kcud1=\EOB, kcuf1=\EOC, kcub1=\EOD, kbs=^H, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, ht=^I, ri=\EM$<5>, vt#3, xenl, xon, sc=\E7, rc=\E8, csr=\E[%i%p1%d;%p2%dr, vis613|vis613 graphics terminal, smcup=\E[2l\E>\E[?7h, rmcup=\E[2l, clear=\E[;H\E[2J$<50>, use=vt100, #ident "@(#)terminfo:ansi.ti 1.9" # # ANSI - standards and other nonexistent terminals emulated in software. # # Manufacturer: ANSI - Generic # Class: III # # Info: # This category is used for terminals people "make up" in software # that do not represent a particular piece of hardware. This # includes standards, such as the ANSI standard, as well as # emulator programs that accept a particular set of escape # sequences. # # ANSI capabilities are broken up into pieces, so that a terminal # implementing some ANSI subset can use many of them. # ansi+local, cud=\E[%p1%dB, cub=\E[%p1%dD, cuf=\E[%p1%dC, cuu=\E[%p1%dA, ansi+local1, cud1=^J, cub1=^H, cuf1=\E[C, cuu1=\E[A, ansi+tabs, ht=^I, cbt=\E[Z, hts=\EH, tbc=\E[2g, ansi+inittabs, it#8, use=ansi+tabs, ansi+erase, ed=\E[J, el=\E[K, clear=\E[H\E[J, ansi+rca, hpa=\E[%p1%{1}%+%dG, vpa=\E[%p1%{1}%+%dd, ansi+cup, cup=\E[%i%p1%d;%p2%dH, home=\E[H, ansi+rep, rep=%p1%c\E[%p2%{1}%-%db, ansi+idl, dl=\E[%p1%dM, il=\E[%p1%dL, ansi+idl1, dl1=\E[M, il1=\E[L, ansi+idc, dch1=\E[P, ich=\E[%p1%d@, ich1=\E[@, # smir=\E6, rmir=\E6, commented out by ehr3 ansi+arrows, kcuu1=\E[A, kcud1=\E[B, kcub1=\E[D, kcuf1=\E[C, khome=\E[H, kbs=^H, ansi+sgr|ansi graphic renditions, rev=\E[7m, blink=\E[5m, invis=\E[8m, sgr0=\E[0m, ansi+sgrso|ansi standout only, rmso=\E[m, smso=\E[7m, ansi+sgrul|ansi underline only, rmul=\E[m, smul=\E[4m, ansi+sgrbold|ansi graphic renditions; assuming terminal has bold; not dim, bold=\E[1m, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, ansi+sgrdim|ansi graphic renditions; assuming terminal has dim; not bold, dim=\E[2m, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p5%t2;%;m, use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, ansi+pp|ansi printer port, mc4=\E[4i, mc5=\E[5i, mc0=\E[0i, # # Series 500 console uses this. # at|AT|at386|AT386,PC/AT display monitor, use=vanilla, am, cols#80, lines#25, xon, use=ansi+cup, use=ansi+rca, use=ansi+erase, use=ansi+tabs, use=ansi+local1, use=ansi+local, use=ansi+idc, use=ansi+idl1, use=ansi+idl, use=ansi+rep, use=ansi+sgrbold, use=ansi+arrows, #ident "@(#)terminfo:annarbor.ti 1.7" # # -------------------------------- # # annarbor: ANN ARBOR # Manufacturer: ANN ARBOR # Class: III # annarbor|4080|ann arbor 4080, cr=^M, cud1=^J, ind=^J, bel=^G, ht=^I, tbc=^\^P^P, hts=^]^P1, cup=^O%p2%{10}%/%{16}%*%p2%{10}%m%+%c%p1%?%p1%{19}%>%t%{12}%+%;%'@'%+%c, cols#80, lines#40, cub1=^H, clear=^L$<2>, cuu1=^N, cuf1=^_, home=^K, am, kbs=^^, kcud1=^J, kcuu1=^N, kcub1=^H, kcuf1=^_, khome=^K, # aaa+unk|aaa-unk|ann arbor ambassador (internal - don't use this directly), am, km, mc5i, mir, xon, cols#80, it#8, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J$<156>, cr=\r, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=^K, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K$<5>, home=\E[H, hpa=\E[%p1%{1}%+%dG, ht=\t, hts=\EH, ich=\E[%p1%d@$<4*>, ich1=\E[@$<4>, il=\E[%p1%dL, il1=\E[L$<3>, ind=^K, invis=\E[8m, is1=\E[m\E7\E[H\E9\E8, is3=\E[1Q\E[>20;30l\EP`+x~M\E\\, kbs=\b, kcbt=\E[Z, kclr=\E[J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, kf1=\EOA, kf10=\EOJ, kf11=\EOK, kf12=\EOL, kf13=\EOM, kf14=\EON, kf15=\EOO, kf16=\EOP, kf17=\EOQ, kf18=\EOR, kf19=\EOS, kf2=\EOB, kf20=\EOT, kf21=\EOU, kf22=\EOV, kf23=\EOW, kf24=\EOX, kf3=\EOC, kf4=\EOD, kf5=\EOE, kf6=\EOF, kf7=\EOG, kf8=\EOH, kf9=\EOI, khome=\E[H, kich1=\E[@, kil1=\E[L, krmir=\E6, mc0=\E[0i, mc4=^C, mc5=\E[v, mc5p=\E[%p1%dv, rc=\E8, rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, rmkx=\EP`>y~[[J`8xy~[[A`4xy~[[D`6xy~[[C`2xy~[[B\E\\, rmm=\E[>52l, rmso=\E[m, rmul=\E[m, sc=\E7, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, sgr0=\E[0m, smkx=\EP`>z~[[J`8xz~[[A`4xz~[[D`6xz~[[C`2xz~[[B\E\\, smm=\E[>52h, smso=\E[7m, smul=\E[4m, tbc=\E[2g, vpa=\E[%p1%{1}%+%dd, # Info: # .flash=\E7\E[H\E[7m\E9$<200>\E[m\E9\E8, # aaa+rv, bold=\E[1;7m, rev=\E[m, blink=\E[5;7m, invis=\E[7;8m, sgr0=\E[7m^N, rmul=\E[7m, smul=\E[4;7m, rmso=\E[7m, smso=\E[m, rs1=\E[H\E[7m\E[J$<156>, sgr=\E[%?%p1%p3%|%!%t7;%;%?%p2%t4;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m, # .flash=\E7\E[H\E[m\E9$<200>\E[7m\E9\E8, is1=\E[7m\E7\E[H\E9\E8, # Info: # Ambassador with the DEC option, for partial vt100 compatibility. # aaa+dec, csr=\E[%i%p1%d;%p2%dr, sgr=\E[%?%p1%p3%|%!%t7;%;%?%p2%t4;%;%?%p4%t5;%;%?%p6%t1;%;%?%p7%t8;%;m%?%p9%t^O%e^N%;, enacs=\E(0, smacs=^O, rmacs=^N, acsc=aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz||}}, aaa-18|ann arbor ambassador/18 lines, smcup=\E[18;0;0;18p, rmcup=\E[60;0;0;18p\E[60;1H\E[K, is2=\E7\E[60;0;0;18p\E8, lines#18, use=aaa+unk, aaa-18-rv|ann arbor ambassador/18 lines+reverse video, use=aaa+rv, use=aaa-18, aaa-20|ann arbor ambassador/20 lines, smcup=\E[20;0;0;20p, rmcup=\E[60;0;0;20p\E[60;1H\E[K, is2=\E7\E[60;0;0;20p\E8, lines#20, use=aaa+unk, aaa-22|ann arbor ambassador/22 lines, smcup=\E[22;0;0;22p, rmcup=\E[60;0;0;22p\E[60;1H\E[K, is2=\E7\E[60;0;0;22p\E8, lines#22, use=aaa+unk, aaa-24|ann arbor ambassador/24 lines, smcup=\E[24;0;0;24p, rmcup=\E[60;0;0;24p\E[60;1H\E[K, is2=\E7\E[60;0;0;24p\E8, lines#24, use=aaa+unk, aaa-24-rv|ann arbor ambassador/24 lines+reverse video, use=aaa+rv, use=aaa-24, aaa-26|ann arbor ambassador/26 lines, smcup=\E[H\E[J$<156>\E[26;0;0;26p, rmcup=\E[60;0;0;26p\E[26;1H\E[K, is2=\E7\E[60;0;0;26p\E8, lines#26, use=aaa+unk, aaa-28|ann arbor ambassador/28 lines, smcup=\E[H\E[J$<156>\E[28;0;0;28p, rmcup=\E[60;0;0;28p\E[28;1H\E[K, is2=\E7\E[60;0;0;28p\E8, lines#28, use=aaa+unk, aaa-30-s|aaa-s|ann arbor ambassador/30 lines with status line, smcup=\E[H\E[J$<156>\E[30;1;0;30p\E[30;1H\E[K, rmcup=\E[60;1;0;30p\E[29;1H\E[K, is2=\r\n\E[A\E7\E[60;1;0;30p\E8, lines#29, tsl=\E[>51h\E[1;%p1%dH\E[2K, fsl=\E[>51l, hs, eslok, dsl=\E7\E[60;0;0;30p\E[1;1H\E[K\E[H\E8\r\n\E[K, use=aaa+unk, aaa-30-s-rv|aaa-s-rv|ann arbor ambassador/30 lines+status line+reverse video, use=aaa+rv, use=aaa-30-s, aaa-s-ctxt|aaa-30-s-ctxt|ann arbor ambassador/30 lines; status line; saving context, smcup=\E[30;1H\E[K\E[30;1;0;30p, rmcup=\E[60;1;0;30p\E[59;1H\E[K, use=aaa-30-s, aaa-s-rv-ctxt|aaa-30-s-rv-ct|aaa-30-srvctxt|ann arbor ambassador/30 lines; status line; saving context, smcup=\E[30;1H\E[K\E[30;1;0;30p, rmcup=\E[60;1;0;30p\E[59;1H\E[K, use=aaa-30-s-rv, aaa|aaa-30|ambas|ambassador|ann arbor ambassador/30 lines, smcup=\E[H\E[J$<156>\E[30;0;0;30p, rmcup=\E[60;0;0;30p\E[30;1H\E[K, is2=\E7\E[60;0;0;30p\E8, lines#30, use=aaa+unk, aaa-30-rv|aaa-rv|ann arbor ambassador/30 lines in reverse video, use=aaa+rv, use=aaa-30, aaa-30-ctxt|aaa-ctxt|ann arbor ambassador/30 lines; saving context, smcup=\E[30;0;0;30p, rmcup=\E[60;0;0;30p\E[60;1H\E[K, use=aaa-30, aaa-30-rv-ctxt|aaa-rv-ctxt|ann arbor ambassador/30 lines; saving context, smcup=\E[30;0;0;30p, rmcup=\E[60;0;0;30p\E[60;1H\E[K, use=aaa+rv, use=aaa-30, aaa-36|ann arbor ambassador/36 lines, smcup=\E[H\E[J$<156>\E[36;0;0;36p, rmcup=\E[60;0;0;36p\E[36;1H\E[K, is2=\E7\E[60;0;0;36p\E8, lines#36, use=aaa+unk, aaa-36-rv|ann arbor ambassador/36 lines+reverse video, use=aaa+rv, use=aaa-36, aaa-40|ann arbor ambassador/40 lines, smcup=\E[H\E[J$<156>\E[40;0;0;40p, rmcup=\E[60;0;0;40p\E[40;1H\E[K, is2=\E7\E[60;0;0;40p\E8, lines#40, use=aaa+unk, aaa-40-rv|ann arbor ambassador/40 lines+reverse video, use=aaa+rv, use=aaa-40, aaa-48|ann arbor ambassador/48 lines, smcup=\E[H\E[J$<156>\E[48;0;0;48p, rmcup=\E[60;0;0;48p\E[48;1H\E[K, is2=\E7\E[60;0;0;48p\E8, lines#48, use=aaa+unk, aaa-48-rv|ann arbor ambassador/48 lines+reverse video, use=aaa+rv, use=aaa-48, aaa-60-s|ann arbor ambassador/59 lines plus status line, is2=\r\n\E[A\E7\E[60;1;0;60p\E8, lines#59, tsl=\E[>51h\E[1;%p1%dH\E[2K, fsl=\E[>51l, hs, eslok, dsl=\E7\E[60;0;0;60p\E[1;1H\E[K\E[H\E8\r\n\E[K, use=aaa+unk, aaa-60-s-rv|ann arbor ambassador/59 lines+status line+reverse video, use=aaa+rv, use=aaa-60-s, aaa-60-s-rv-de|aaa-60-s-rvdec|ann arbor ambassador/dec mode+59 lines+status line+rev video, use=aaa+dec, use=aaa+rv, use=aaa-60-s, aaa-60|ann arbor ambassador/60 lines, is2=\E7\E[60;0;0;60p\E[1Q\E[m\E[>20;30l\E8, lines#60, use=aaa+unk, aaa-60-rv|ann arbor ambassador/60 lines+reverse video, use=aaa+rv, use=aaa-60, aaa-db|ann arbor ambassador 30/destructive backspace, cub1=\E[D, is3=\E[1Q\E[m\E[>20l\E[>30h, use=aaa-30, # guru|guru-33|guru+unk|ann arbor guru/33 lines 80 cols, smcup=\E[33p, rmcup=\E[255p\E[255;1H\E[K, flash=\E[>59h$<100>\E[>59l, is2=\E7\E[255;0;0;33;80;80p\E8\E[J, is3=\E[>59l, lines#33, use=aaa+unk, guru+rv|guru changes for reverse video, flash=\E[>59l$<100>\E[>59h, is3=\E[>59h, guru-rv|guru-33-rv|ann arbor guru/33 lines+reverse video, use=guru+rv, use=guru-33, guru+s|changes for status line, rmcup=\E[255;1p\E[255;1H\E[K, tsl=\E[>51h\E[1;%p1%dH\E[2K, fsl=\E[>51l, hs, eslok, dsl=\E7\E[;0p\E[1;1H\E[K\E[H\E8\r\n\E[K, guru-nctxt, smcup=\E[H\E[J$<156>\E[33p\E[255;1H\E[K, use=guru, guru-s|guru-33-s|ann arbor guru/33 lines with status line, smcup=\E[33;1p\E[255;1H\E[K, is2=\r\n\E[A\E7\E[255;1;0;33;80;80p\E8\E[J, lines#32, use=guru+s, use=guru+unk, guru-24, smcup=\E[24p, is2=\E7\E[255;0;0;24;80;80p\E8\E[J, lines#24, cols#80, use=guru+unk, guru-44, smcup=\E[44p, is2=\E7\E[255;0;0;44;97;100p\E8\E[J, lines#44, cols#97, use=guru+unk, guru-44-s|ann arbor guru/44 lines with status line, smcup=\E[44;1p\E[255;1H\E[K, is2=\r\n\E[A\E7\E[255;1;0;44;80;80p\E8\E[J, lines#43, use=guru+s, use=guru+unk, guru-76|guru with 76 lines by 89 cols, smcup=\E[76p, is2=\E7\E[255;0;0;76;89;100p\E8\E[J, lines#76, cols#89, use=guru+unk, guru-76-s|ann arbor guru/76 lines with status line, smcup=\E[76;1p\E[255;1H\E[K, is2=\r\n\E[A\E7\E[255;1;0;76;89;100p\E8\E[J, lines#75, cols#89, use=guru+s, use=guru+unk, guru-76-lp|guru-lp|guru with page bigger than line printer, smcup=\E[76p, is2=\E7\E[255;0;0;76;134;134p\E8\E[J, lines#76, cols#134, use=guru+unk, guru-76-w|guru 76 lines by 178 cols, smcup=\E[76p, is2=\E7\E[255;0;0;76;178;178p\E8\E[J, lines#76, cols#178, use=guru+unk, guru-76-w-s|ann arbor guru/76 lines with status line, smcup=\E[76;1p\E[255;1H\E[K, is2=\r\n\E[A\E7\E[255;1;0;76;178;178p\E8\E[J, lines#75, cols#178, use=guru+s, use=guru+unk, guru-76-wm|guru 76 lines by 178 cols with 255 cols memory, smcup=\E[76p, is2=\E7\E[255;0;0;76;178;255p\E8\E[J, lines#76, cols#178, use=guru+unk, #ident "@(#)terminfo:ansi.ti 1.9" # # ANSI - standards and other nonexistent terminals emulated in software. # # Manufacturer: ANSI - Generic # Class: III # # Info: # This category is used for terminals people "make up" in software # that do not represent a particular piece of hardware. This # includes standards, such as the ANSI standard, as well as  # emulator programs that accept a particular set of escape # sequences. # # ANSI capabilities are broken up into pieces, so that a terminal # implementing some ANSI subset can use many of them. # ansi+local, cud=\E[%p1%dB, cub=\E[%p1%dD, cuf=\E[%p1%dC, cuu=\E[%p1%dA, ansi+local1, cud1=^J, cub1=^H, cuf1=\E[C, cuu1=\E[A, ansi+tabs, ht=^I, cbt=\E[Z, hts=\EH, tbc=\E[2g, ansi+inittabs, it#8, use=ansi+tabs, ansi+erase, ed=\E[J, el=\E[K, clear=\E[H\E[J, ansi+rca, hpa=\E[%p1%{1}%+%dG, vpa=\E[%p1%{1}%+%dd, ansi+cup, cup=\E[%i%p1%d;%p2%dH, home=\E[H, ansi+rep, rep=%p1%c\E[%p2%{1}%-%db, ansi+idl, dl=\E[%p1%dM, il=\E[%p1%dL, ansi+idl1, dl1=\E[M, il1=\E[L, ansi+idc, dch1=\E[P, ich=\E[%p1%d@, ich1=\E[@, # smir=\E6, rmir=\E6, commented out by ehr3 ansi+arrows, kcuu1=\E[A, kcud1=\E[B, kcub1=\E[D, kcuf1=\E[C, khome=\E[H, kbs=^H, ansi+sgr|ansi graphic renditions, rev=\E[7m, blink=\E[5m, invis=\E[8m, sgr0=\E[0m, ansi+sgrso|ansi standout only, rmso=\E[m, smso=\E[7m, ansi+sgrul|ansi underline only, rmul=\E[m, smul=\E[4m, ansi+sgrbold|ansi graphic renditions; assuming terminal has bold; not dim, bold=\E[1m, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, ansi+sgrdim|ansi graphic renditions; assuming terminal has dim; not bold, dim=\E[2m, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p5%t2;%;m, use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, ansi+pp|ansi printer port, mc4=\E[4i, mc5=\E[5i, mc0=\E[0i, # Info: # ANSI is a vanilla ANSI terminal. This is assumed to implement # all the normal ANSI stuff with no extensions. It assumes # insert/delete line/char is there, so it won't work with # vt100 clones. It assumes video attributes for bold, blink, # underline, and reverse, which won't matter much if the terminal # can't do some of those. Padding is assumed to be zero, which # shouldn't hurt since xon/xoff is assumed. # # We assume a 24x80 screen. This entry was derived from the # Ann Arbor Ambassador, and is untested. # ansi|generic ansi standard terminal, use=vanilla, am, cols#80, lines#24, xon, use=ansi+cup, use=ansi+rca, use=ansi+erase, use=ansi+tabs, use=ansi+local1, use=ansi+local, use=ansi+idc, use=ansi+idl1, use=ansi+idl, use=ansi+rep, use=ansi+sgrbold, use=ansi+arrows, # Info: # Bare minimum ANSI terminal. This should work on anything, but # beware of screen size problems and memory relative cursor # addressing. # minansi|minimum ansi standard terminal, am, xon, use=vanilla, cols#80, lines#24, use=ansi+cup, use=ansi+erase, # Info: # This terminal type is for ANSI terminals with ONLY memory # relative cursor addressing and more than one page of memory. # It uses local motions instead of direct cursor addressing, # and makes almost no assumptions. It does assume auto margins, # no padding and/or xon/xoff, and a 24x80 screen. # mransi|mem rel cup ansi, am, use=vanilla, cols#80, lines#24, xon, use=ansi+erase, use=ansi+local1, # Info: # Columbus UNIX virtual terminal. This terminal also appears in # UNIX 4.0 and successors as line discipline 1 (?), but is # undocumented and does not really work quite right. # virtual|cbunix|cb-unix|cb-unix virtual terminal, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, am, clear=\EJ, cub1=^H, cup=\EG%p2%c%p1%c, cuf1=\EC, cuu1=\EA, el=\EK, ed=\EL, il1=\EP, dl1=\EN, ich1=\EO, dch1=\EM, lm#0, da, db, kcub1=\ED, kcuf1=\EC, kcuu1=\EA, kcud1=\EB, khome=\EE, smso=\Ea\004, rmso=\Eb\004, smul=\Ea\001, rmul=\Eb\001, # Info: # This terminal is based on virtual but cleans up a few problems # with control characters in parameter strings. It is implemented # in mrh's window manager. # pty|4bsd pty terminal, smso=\Ea$, rmso=\Eb$, smul=\Ea!, rmul=\Eb!, cup=\EG%p1%' '%+%c%p2%' '%+%c, use=virtual, # Info: # A dumb terminal with 1 line which is a fake status line. # This is useful to run sysline in in a multi-window environment. # 1line|one_line|one line window, cr=^M, ind=^J, cols#80, lines#1, am, ht=^I, cub1=^H, hs, tsl=\n, # Info: # 1linepty is like 1line but the 1 line window is smarter, # with standout, cursor addressing, and clear to eol. # 1linepty|one_linepty|1 line window in a pty, smso=\Ea$, rmso=\Eb$, smul=\Ea!, rmul=\Eb!, cup=\EG%p1%' '%+%c%p2%' '%+%c, tsl=\r\EK\EG %p2%' '%+%c, eslok, use=1line, vanilla, bel=^G, cr=^M, cud1=^J, ind=^J, datakit, am, gn, cols#80, bel=^G, cr=\r, cud1=\n, ind=\n, #ident "@(#)att.ti 1.4" # # -------------------------------- # # att: AT&T # # Manufacturer: AT&T # Class: I ATT500|att500|bct500|500|BCT500|AT&T-IS 500 terminal, use=att513, # Info:  # # This is a generic terminal for the new AT&T terminals that is not # really for use by itself, but was created to help make the # support for the other new terminals easier by defining the # common entry fields only once. There are several things # that weren't defined here but were common to 2 or more terminal # entries because they were different in at least 2 of the other # entries (e.g. clear, cols, cud1, ht, ind, and lines). # Unfortunately the 4424 has almost completely different data # for the fields than what the newer ones have and so hasn't been # included as one of the terminals using this common entry. # attgeneric, am, hs, mir, msgr, xenl, xon, cols#80, it#8, lh#2, lines#24, lw#8, nlab#8, wsl#55, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, blink=\E[5m, bold=\E[2;7m, cbt=\E[Z, clear=\E[H\E[J, cnorm=\E[12;0j, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, cvvis=\E[12;1j, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ech=\E[%p1%ds\E[%p1%dD, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E(B\E)0, flash=\E[?5h$<200>\E[?5l, fsl=\E8, home=\E[H, ht=\t, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\n, indn=\E[%p1%dE, invis=\E[8m, is1=\E<\E[?3l$<100>, is2=\E[0m^O\E[1;2;3;4;6l\E[12;13;14;20l\E[?6;97;99l\E[?7h\E[4i\Ex\E[25;1j\212, is3=\E[?5l, kbeg=\Et, kbs=\b, kcbt=\E[Z, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, kel=\E[2K, kend=\Ez, kent=\n, kf1=\EOc, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, khome=\E[H, kich1=\E[4h, kil1=\E[L, kind=\E[T, kprt=\EOe, kri=\E[S, ll=\E[24H, mc0=\E[?2i, mc4=\E[?9i, mc5=\E[?4i, nel=\r\n, pfx=\E[%p1%d;%p2%l%02dq\s\s\sF%p1%1d\s\s\s\s\s\s\s\s\s\s\s%p2%s, pln=\E[%p1%d;0;0;0q%p2%:-16.16s, prot=\EV, rc=\E8, rev=\E[7m, ri=\EM, rin=\E[%p1%dF, rmacs=^O, rmir=\E[4l, rmkx=\E[21;0j, rmln=\E|, rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l\E[2;0y, sc=\E7, sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t^N%e^O%;, sgr0=\E[m^O, smacs=^N, smir=\E[4h, smkx=\E[21;1j\E~, smln=\E~, smso=\E[7m, smul=\E[4m, tbc=\E[3g, tsl=\E7\E[25;%p1%{8}%+%dH, 513bct|ATT513|att513|AT&T 513 bct terminal, am, xon, cols#80, lines#24, bel=^G, blink=\E[5m, clear=\E[H\E[J, cub=\E[%p1%dD, cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[0J, el=\E[0K, home=\E[H, hpa=\E[%i%p1%d`, ht=\t, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\n, is1=\E:\E[7h\E[19;1|\E[H\E[J, kcbt=\E[1Z, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\E[Oc, kf2=\E[Od, kf3=\E[Oe, kf4=\E[Of, kf5=\E[Og, kf6=\E[Oh, kf7=\E[Oi, kf8=\E[Oj, kll=\E#2, rc=\E8, rev=\E[7m, ri=\E[T, rmso=\E[m, rmul=\E[m, sc=\E7, sgr0=\E[m, smso=\E[7m, smul=\E[4m, tbc=\E[3g, vpa=\E[%i%p1%dd, pt505|ATTPT505|attpt505|AT&T Personal Terminal 505 22 lines, am, mir, msgr, xon, cols#80, it#8, lines#22, bel=^G, blink=\E[5m, bold=\E[1m, clear=\E[2J\E[H, cnorm=\E[5l, cr=\r, cub=\E[%p1%dD, cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, cvvis=\E[5h, dch=\E[%p1%dP, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[0J, el=\E[0K, home=\E[H, ht=\t, il=\E[%p1%dL, il1=\E[L, ind=\n, kbs=\b, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, rev=\E[7m, rmacs=\E[10m, rmir=\E[4l, rmso=\E[0m, rmul=\E[0m, rs1=\Ec, sgr0=\E[0m, smacs=\E[11m, smir=\E[4h, smso=\E[1m, smul=\E[4m, pt505-24|att505-24|ATT505-24|AT&T Personal Terminal 505 24 line mode, lines#24, use=pt505, blit|jerq|blit running teletype rom, xon,cr=^M, ind=^J, bel=^G, am, ht=^I, it#8, ul, eo, cud1=^J, cuf1=\EC, cuu1=\EA, cub1=\ED, cols#87, lines#72, clear=^L, el=\EK, cup=\EY%p2%' '%+%c%p1%' '%+%c, il1=\EF!, dl1=\EE!, ich1=\Ef!, dch1=\Ee!, il=\EF%p1%' '%+%c, dl=\EE%p1%' '%+%c, ich=\Ef%p1%' '%+%c, dch=\Ee%p1%' '%+%c, kcuu1=\EA, kcud1=\EB, kcuf1=\EC, kcub1=\ED, kbs=^H, kf1=\Ex, kf2=\Ey, kf3=\Ez, cbblit|fixterm|blit running columbus code, smso=\EU!, rmso=\EV!, smul=\EU", rmul=\EV", flash=\E^G, ed=\EJ, smir=\EQ, rmir=\ER, ich1@, cols#88, mc5=^R, mc4=^T, mc5p=\EP%p1%03d, use=blit, oblit|ojerq|first version of blit rom, xon,cr=^M, cud1=^J, ind=^J, bel=^G, cols#88, lines#72, it#8, ht=^I, am, ul, eo, mir, il=\Ef%p1%' '%+%c, dl=\Ee%p1%' '%+%c, dl1=\EE, rmir=\ER, smir=\EQ, dch1=\EO, cub1=\ED, da, db, il1=\EF, ed=\EJ, el=\EK, clear=^L, cup=\EY%p2%' '%+%c%p1%' '%+%c, cuf1=\EC, cuu1=\EA, flash=\E^G, kbs=^H, # Info: # This is an old version of vitty reentered. It is used when # running the vitty program outside a blit layer. # blitlayer|vitty|, cr=^M, cud1=^J, ind=^J, bel=^G, cols#87, lines#72, it#8, ht=^I, am, clear=^L, cup=\EY%p2%' '%+%c%p1%' '%+%c, el=\EK, il1=\EI, dl1=\ED, flash=\E^G, cuu1=^K, 33|tty33|tty|AT&T model 33 teletype, xon,cr=^M, cud1=^J, ind=^J, bel=^G, cols#72, hc, os, 35|tty35|AT&T model 35 teletype, use=tty33, 37|tty37|AT&T model 37 teletype, xon,cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, hc, hu=\E8, hd=\E9, cuu1=\E7, os, # Info: # The Dataspeed 40's print a visible newline indicator after # each newline. The 40-1 is a half duplex terminal. # and is described here. The 40-4 is a 3270 lookalike # # The terminal has blinking standout. It also has visible bell # but I don't know it - it's null here to prevent it from showing # the BL character. # # I am not sure if the 40 has xmc, it looked like it didn't. # # Note also that the control characters have been randomly # rearranged, for example, to get escape you type control-P and # cntrol-H generates GS, group separator! # # # \EX will get terminal out of protect mode but there doesn't # appear to be a mnemonic for it (\EW will put it into protect). # # When printer is enabled all received characters are printed - no # print screen is provided. Most delays are pure guesswork. # # Watch out for the visible newline symbol. Note that # the editing and cursor controls do not work in S/R mode except # for cursor left arrow which generates the backspace character. # # Note also that many control codes echo visibly while the # corresponding escape sequences do not; for example, both ^K # and \EC move the cursor right one place, but the former # prints a VT symbol, too. # 40|tty40|ds40|ds40-2|dataspeed40|teletype dataspeed 40/2, clear=\EH$<20>\EJ$<80>, ed=\EJ$<75>, il1=\EL$<50>, dl1=\EM$<50>, dch1=\EP$<50>, ich1=\E\^$<50>, cuf1=\EC, cuu1=\E7, cub1=^H, cr=\EG, ind=\ES$<20>, cud1=\EB, cols#80, lines#24, smso=\E3, rmso=\E4, xon,kbs=\035, kcub1=^H, rs2=^S\ER$<60>, hts=\E1, home=\EH$<10>, ri=\ET$<10>, tbc=\EH\E2$<80>, mc5=^R$<2000>, mc4=^T, ht=\E@$<10>, 43|tty43|AT&T model 43 teletype, xon,cr=^M, cud1=^J, ind=^J, bel=^G, kbs=^h, am, cub1=^H, hc, os, cols#132, 4420|tty4420|teletype 4420, xon,da, db, eo, msgr, ul,lm#72, cols#80, lines#24, bel=^G, clear=\EH\EJ, cr=\EG, cuu1=\EA, cud1=\EB,cuf1=\EC,cub1=\ED, cup=\EY%p1%' '%+%c%p2%' '%+%c, cuu1=\EA, dch1=\EP, dl1=\EM, ed=\EJ, el=\Ez, il1=\EL, home=\EH, ind=\EH\EM\EY7 , kcub1=\b, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf0=\EU, kf3=\E@, lf0=segment advance, lf3=cursor tab, kind=\ES, kri=\ET, kcbt=\EO, kclr=\EJ, kil1=\EL, kdl1=\EM, kich1=\E\^, kdch1=\EP, khome=\EH, rmdc@, rmso=\E~, rmul=\EZ, smdc@, smso=\E}, smul=\E\\, # Info: # The following is a termcap entry for the Teletype 4424 # asyncronous keyboard-display terminal. It supports # the vi editor. The terminal must be "set up" as follows, # # HIGHLIGHT DEFINITION 3-TONE # DISPLAY FUNCTION GROUP III # # The second entry below provides limited (a la adm3a) # operation under GROUP II. # # This must be used with DISPLAY FUNCTION GROUP I or III # and HIGHLIGHT DEFINITION 3-TONE # 4424|att4424|ATT4424|tty4424|4424-1|4424-3|teletype 4424, xon,cr=^M, ind=^J, bel=^G, cols#80, lines#24, am, smso=\E}, rmso=\E~, rev=\E}, smul=\E\\, rmul=\EZ, ri=\ET, # Info: # The terminal has either bold or blink, depending on options # xon,bold=\E3, blink=\E3, dim=\EW, ht=^I, cbt=\EO, home=\E[H, cuu1=\EA, cuu=\E[%p1%dA, cud1=\EB, cud=\E[%p1%dB, cuf1=\EC, cuf=\E[%p1%dC, smcup=\E[1m, cub1=^H, cub=\E[%p1%dD, cup=\E[%i%p1%d;%p2%dH, clear=\E[H\E[2J, ed=\EJ, el=\Ez, nel=\EE, hts=\EH, tbc=\EF, smacs=\E(0, rmacs=\E(B, is2=\E[20l\E[?7h, csr=\E[%i%p1%d;%p2%dr, il1=\EL, il=\E[%p1%dL, dl1=\EM, dl=\E[%p1%dM, ich1=\E\^, ich=\E[%p1%d@, dch1=\EP, dch=\E[%p1%dP, sgr=\E[%?%p1%t7%;%?%p2%t;4%;%?%p3%t;7%;%?%p6%t;1%;%?%p6%p4%|%t;5%;%?%p5%t;0%;m, sgr0=\EX\E~\EZ\E4\E(B, kcuu1=\E[A, kcud1=\E[B, kcub1=\E[D, kcuf1=\E[C, khome=\E[H, kbs=^H, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, 4424-2|att4424-2|ATT4424-2|tty4424-2|teletype 4424 in display function group ii, sgr@, rev@, smul@, use=4424, # Info: # Must setup RETURN KEY - CR, REC'VD LF - INDEX. # Seems upward compatible with vt100, plus ins/del line/char. # On sgr, the protection parameter is ignored. # No check is made to make sure that only 3 parameters are output. # standout= reverse + half-intensity = 3 | 5. # bold= reverse + underline = 2 | 3. # note that half-bright blinking doesn't look different from # normal blinking. # # NOTE:you must program the function keys first, label second! # ATT4410v1|ATT5410v1|att5410v1|att4410v1|4410v1|tty5410v1|5410v1|AT&T 4410/5410 terminal in 80 column mode - version 1, am, hs, mir, msgr, xon, cols#80, it#8, lh#2, lines#24, lw#8, nlab#8, wsl#80, acsc=``aaffhhggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~00++--^?^?\,\,.., is1=\E[?3l\E)0, bel=^G, blink=\E[5m, bold=\E[2;7m, clear=\E[H\E[J, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub1=\b, cud1=\E[B, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, dch1=\E[P, dim=\E[2m, dl1=\E[M, ed=\E[J, el=\E[K, fsl=\E8, home=\E[H, ht=\t, ich1=\E[@, il1=\E[L, ind=\n, invis=\E[8m, is3=\E[1;03q\s\s\sf1\s\s\s\s\s\s\s\s\s\s\s\EOP\E[2;03q\s\s\sf2\s\s\s\s\s\s\s\s\s\s\s\EOQ\E[3;03q\s\s\sf3\s\s\s\s\s\s\s\s\s\s\s\EOR\E[4;03q\s\s\sf4\s\s\s\s\s\s\s\s\s\s\s\EOS\E[5;03q\s\s\sf5\s\s\s\s\s\s\s\s\s\s\s\EOT\E[6;03q\s\s\sf6\s\s\s\s\s\s\s\s\s\s\s\EOU\E[7;03q\s\s\sf7\s\s\s\s\s\s\s\s\s\s\s\EOV\E[8;03q\s\s\sf8\s\s\s\s\s\s\s\s\s\s\s\EOW, kbs=\b, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, kf7=\EOV, kf8=\EOW, khome=\E[H, kll=\E[24;1H, ll=\E[24H, nel=\r\n, pfx=\E[%p1%1d;%p2%l%2.2dq\s\s\sf%p1%1d\s\s\s\s\s\s\s\s\s\s\s%p2%s, pln=\E[%p1%d;00q%p2%:-16s, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O, rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l\E[2;0y, sc=\E7, sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t^N%e^O%;, sgr0=\E[m^O, smacs=^N, smso=\E[7m, smul=\E[4m, tsl=\E7\E[25;%p1%{1}%+%dH, att4410v1-w|ATT4410v1-w|att5410v1-w|ATT5410v1-w|4410v1-w|tty5410v1-w|5410v1-w|AT&T 4410/5410 terminal in 132 column mode - version 1, cols#132,is1=\E[?3h,use=4410v1, att4410|ATT4410|att5410|ATT5410|4410|tty5410|5410|AT&T 4410/5410 terminal in 80 column mode - version 2, pfx=\E[%p1%d;%p2%l%02dq f%p1%d %p2%s, use=4410v1, 4426|att4426|ATT4426|tty4426|teletype 4426S, am,xon, is1=\Ec\E[?7h, bel=^G, bold=\E[5m, clear=\E[H\E[2J\E[1U\E[H\E[2J\E[1V, cols#80, cr=^M, cub1=\E[D, cub=\E[%p1%dD, cud1=\E[B, cud=\E[%p1%dB, cuf1=\E[C, cuf=\E[%p1%dC, cup=\E[%i%p1%d;%p2%dH, cuu1=\EA, cuu=\E[%p1%dA, dch1=\EP, dch=\E[%p1%dP, dl1=\E[M, dl=\E[%p1%dM, ed=\E[J, el=\E[0K, home=\E[H, hpa=\E[%p1%dG, hts=\E1, ht=\t, ich1=\E\^, ich=\E[%p1%d@, il1=\EL, il=\E[%p1%dL, ind=\ES, ind=^J, indn=\E[%p1%dS, is2=\E[m\E[1;24r, kbs=^H, kcbt=\EO, kclr=\E[2J, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, kf7=\EOV, kf8=\EOW, khome=\E[H, kll=\E[24;1H, lines#24, ll=\E[24H, nel=^M^J, rc=\E8, rev=\E[7m, ri=\EM, ri=\ET, ri=\E[1U, rin=\E[%p1%dT, rmacs=\E(B, rmso=\E[0m, rmul=\E[0m, rmul=\E[m, rs2=\Ec\E[?3l\E[2;0y, sc=\E7, sgr0=\E[0m\E(B, smacs=\E(0, smso=\E[5m, smul=\E[4m, smul=\E[4m, tbc=\E2\EI\E[0g, lm#48,da,db, vpa=\E[%p1%dd, ATT4410-nfk|att4410-nfk|att5410-nfk|ATT5410-nfk|4410-nfk|tty5410-nfk|5410-nfk|version 1 AT&T 4410/5410 entry without function keys, pln@, is3@, kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, use=att4410, att5410-w|ATT5410-w|att4410-w|4410-w|tty5410-w|5410-w|AT&T 4410/5410 in 132 column mode, cols#132, is1=\E[?3h, wsl#132, use=att4410, 5410-nsl|att5410-nsl|ATT5410-nsl|4410-nsl|att4410-nsl|ATT4410-nsl|tty5410-nsl|tty5410 entry without pln defined, pln@, use=tty5410, otty5410|teletype 5410 for S5R2 curses, tsl=\E7\E[25;%p1%{1}%+%dH, use=tty5410, # Info: # 5410 in terms of a vt100 # v5410, am, mir, msgr, xon, cols#80, it#8, lines#24, vt#3, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, clear=\E[H\E[J$<50>, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub1=\b, cud1=\n, cuf1=\E[C$<2>, cup=\E[%i%p1%d;%p2%dH$<5>, cuu1=\E[A$<2>, dch1=\E[P, dl1=\E[M, ed=\E[J$<50>, el=\E[K$<3>, el1=\E[1K$<3>, enacs=\E(B\E)0, home=\E[H, ht=\t, hts=\EH, ich1=\E[@, il1=\E[L, ind=\n, ka1=\EOq, ka3=\EOs, kb2=\EOr, kbs=\b, kc1=\EOp, kc3=\EOn, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kent=\EOM, kf0=\EOy, kf1=\EOP, kf10=\EOx, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOt, kf6=\EOu, kf7=\EOv, kf8=\EOl, kf9=\EOw, rc=\E8, rev=\E[7m$<2>, ri=\EM$<5>, rmacs=^O, rmkx=\E[?1l\E>, rmso=\E[m$<2>, rmul=\E[m$<2>, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t^N%e^O%;, sgr0=\E[m^O$<2>, smacs=^N, smkx=\E[?1h\E=, smso=\E[1;7m$<2>, smul=\E[4m$<2>, tbc=\E[3g, # Info: # 5620 terminfo (2.0 or later ROMS with char attributes) # # assumptions: # ind (scroll forward one line) is only done at screen bottom # att5620|ATT5620|dmd|tty5620|ttydmd|5620|5620 terminal 88 columns, npc,xon,am, cols#88, lines#70, it#8, bel=^G, cr=^M, clear=\E[H\E[J, ht=^I, nel=^J, # Info: # clear to end of line, screen # el=\E[K, ed=\E[J, # Info: # scroll screen up/down one/many lines # ind=\E[S, indn=\E[%p1%dS, ri=\E[T, rin=\E[%p1%dT, # Info: # cursor arbitrarily, down, home, left, right, up # cup=\E[%i%p1%d;%p2%dH, home=\E[H, # cup=\E[%i%p1%d;%p2%dH, cud1=\E[B, home=\E[H, cub1=^H, cuf1=\E[C, cuu1=\E[A, # Info: # delete/insert one/many characters/lines # dch1=\E[P, dch=\E[%p1%dP, dl1=\E[M, dl=\E[%p1%dM, ich1=\E[@, ich=\E[%p1%d@, il1=\E[L, il=\E[%p1%dL, # Info: # sequences sent by keys: backspace, clear, down-arrow, # home-arrow, left-arrow, home-down, right-arrow, up-arrow # kbs=^H, kclr=\E[2J, kcud1=\E[B, khome=\E[H, kcub1=\E[D, kll=\E[70;1H, kcuf1=\E[C, kcuu1=\E[A, # Info: # program function keys, reset terminal, restore/store cursor # position # pfx=\E[%p1%d;%p2%l%dq%p2%s, rs1=\Ec, rc=\E8, sc=\E7, # Info: # set/clear underline/standout character attributes # smul=\E[4m, rmul=\E[0m, smso=\E[7m, rmso=\E[0m, # Info: # reverse video, reset character attributes, pseudo-dim, # pseudo-bold # rev=\E[7m, sgr0=\E[0m, dim=\E[2m, bold=\E[2m, att5620-24|ATT5620-24|5620-24|dmd-24|teletype dmd 5620 in a 24x80 layer, lines#24, use=5620, att5620-34|ATT5620-34|5620-34|dmd-34|teletype dmd 5620 in a 34x80 layer, lines#34, use=5620, # Info: # # Teletype Model 5420 -- A souped up 5410, with multiple windows, # even! the 5420 has three modes: scroll, window or page mode # this terminfo should work in scroll or window mode, but doesn't # take advantage of any of the differences between them. # ATT4415|att4415|4415|tty5420|att5420|ATT5420|5420|AT&T 4415/5420 in 80 column mode, # Info: # Memory below (2 lines!) # xon,db, mir, # Info: # 3 pages of memory (plus some spare) # nlab#8, lh#2, lw#8, wsl#55, lm#78, cbt=\E[Z, clear=\E[x\E[J, cnorm=\E[11;0j, cub=\E[%p1%dD, cud=\E[%p1%dB, cuf=\E[%p1%dC, cuu=\E[%p1%dA, # Info: # The 5410 sequences would work for these, but these # work in both scroll and window mode... # cup=\E[%i%p1%d;%p2%dx, cvvis=\E[11;1j, dch=\E[%p1%dP, dl=\E[%p1%dM, ech=\E[%p1%ds\E[%p1%dD, el1=\E[1K, flash=\E[?5h$<200>\E[?5l, home=\E[x, hpa=\E[%p1%{1}%+%dG, hts=\EH, # Info: # Unset insert character so insert mode works # ich1@, ich=\E[%p1%d@, il=\E[%p1%dL, indn=\E[%p1%dE, # Info: # set 80 column mode, # is1=\E[?3l$<100>, # is2 escape sequence: # 1) turn off all fonts # 2) function keys off, keyboard lock off, control display off, # insert mode off, erasure mode off, # 3) full duplex, monitor mode off, send graphics off, nl on lf off # 4) reset origin mode # 5) set line wraparound # 6) exit erasure mode, positional attribute mode, and erasure extent mode # 7) clear margins # 8) program ENTER to transmit ^J, # We use \212 to program the ^J because a bare ^J will get translated by # UNIX into a CR/LF. The enter key is needed for AT&T uOMS. #  1 2 3 4 5 6 7 8 # is2=\E[0m^O\E[1;2;3;4;6l\E[12;13;14;20l\E[?6;97;99l\E[?7h\E[4i\Ex\E[21;1j\212, # Info: # set screen color to black, # is3=\E[?5l, kbeg=\Et, kcbt=\E[Z, kdch1=\E[P, kdl1=\E[M, # info: # No representation in terminfo for the delete word key # kdw1=\Ed # kel=\E[2K, kend=\Ez, kent=^J, # Info: # This assumes the power-up send sequence... # kf1=\EOc, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, kich1=\E[4h, kil1=\E[L, kind=\E[T, kll=\Eu, knp=\E[U, kpp=\E[V, kri=\E[S, lf1=F1, lf2=F2, lf3=F3, lf4=F4, lf5=F5, lf6=F6, lf7=F7, lf8=F8, ll=\Ew, mc0=\E[?;2i, mc4=\E[4i, mc5=\E[5i, mrcup=\E[%i%p1%d;%p2%dt, pfx=\E[%p1%d;%p2%l%02dq F%p1%d %p2%s, pln=\E[%p1%d;0;0;0q%p2%:-16.16s, rmln=\E|, smln=\E~, prot=\EV, rin=\E[%p1%dF, # Info: # This rmcup is not strictly necessary, but it helps maximize # memory usefulness # rmcup=\Ez, # rmir=\E[4l, rmkx=\E[19;0j, sgr0=\E[0m^O, # Info: # sgr0=\E[0m\EW^O, # sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t^N%e^O%;, # Info: # sgr=\E[%?%p1%t2;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p7%t;8%;m%?%p8%t\EV%;%?%p9%t^N%e^O%;, # smir=\E[4h, # Info: # This programs the SYS PF keys to send a set sequence. # It also sets up labels f1, f2, ..., f8, and sends edit keys. # This string causes them to send the strings kf1-kf8 # when pressed in SYS PF mode. # smkx=\E[19;1j, tbc=\E[3g, tsl=\E7\E[25;%p1%{8}%+%dH, vpa=\E[%p1%{1}%+%dd, use=att4410, ATT4415-w|att4415-w|4415-w|tty5420-w|att5420-w|ATT5420-w|5420-w|AT&T model 4415/5420 in 132 column mode, lm#54, cols#132, wsl#97, # Info: # set 132 column mode, # is1=\E[?3h$<100>, use=att4415, ATT4415-rv|att4415-rv|4415-rv|tty5420-rv|att5420-rv|ATT5420-rv|5420-rv|AT&T model 4415/5420 80 columns in reverse video, flash=\E[?5l$<200>\E[?5h, # Info: # set screen color to white, # is3=\E[?5h, use=att4415, ATT4415-w-rv|att4415-w-rv|4415-w-rv|tty5420-w-rv|att5420-w-rv|ATT5420-w-rv|5420-w-rv|AT&T model 4415/5420 132 columns in reverse video, lm#54, cols#132, wsl#97, flash=\E[?5l$<200>\E[?5h, # Info: # set 132 column mode, # is1=\E[?3h$<100>, # Info: # set screen color to white, # is3=\E[?5h, use=att4415, # Info: # Note that this mode permits programming USER PF KEYS and labels # However, when you program user pf labels you have to reselect # user pf keys to make them appear! # #ATT4415+nl|att4415+nl|4415+nl|att5420+nl|ATT5420+nl|5420+nl|generic AT&T 4415/5420 changes for not changing labels, # kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, # pfx=\E[%p1%d;%p2%l%02d;0;1q F%p1%d %p2%s, # pln=\E[%p1%d;0;0;1q%p2%:-16.16s, # blh smkx=\E[19;1j,use=att4415, #ATT4415-nl|att4415-nl|4415-nl|tty5420-nl|att5420-nl|ATT5420-nl|5420-nl|AT&T 4415/5420 without changing labels, # kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, # use=att4415+nl, use=att4415, #ATT4415-rv-nl|att4415-rv-nl|4415-rv-nl|tty5420-rv-nl|5420-rv-nl|ATT5420-rv-nl|att5420-rv-nl|AT&T 4415/5420 reverse video without changing labels, # kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, # use=att4415+nl, use=att4415-rv, #ATT4415-w-nl|att4415-w-nl|4415-w-nl|tty5420-w-nl|5420-w-nl|att5420-w-nl|ATT5420-w-nl|AT&T 4415/5420 132 cols without changing labels, # kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, # use=att4415+nl, use=att4415-w, #ATT4415-w-rv-n|att4415-w-rv-n|4415-w-rv-nl|tty5420-w-rv-n|5420-w-rv-nl|att5420-w-rv-n|ATT5420-w-rv-n||AT&T 4415/5420 132 cols reverse without changing labels, # kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, # use=att4415+nl, use=att4415-w-rv, # Info: # The Teletype 5425 is really version 2 of the Teletype 5420. It # is quite similar, except for some minor differences. No page # mode, for example, so all of the cup sequences used above have # to change back to what's being used for the 5410. Many of the # option settings have changed their numbering as well. # # This has been tested on a preliminary model. # ATT4425|ATT5425|att5425|4425|5425|tty5425|att4425|AT&T 4425/5425, am, db, hs, mir, msgr, xenl, xon, cols#80, it#8, lh#2, lines#24, lm#78, lw#8, nlab#8, wsl#55, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, blink=\E[5m, bold=\E[2;7m, cbt=\E[Z, clear=\E[H\E[J, cnorm=\E[12;0j, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, cvvis=\E[12;1j, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ech=\E[%p1%ds\E[%p1%dD, ed=\E[J, el=\E[K, el1=\E[1K, enacs=\E(B\E)0, flash=\E[?5h$<2000>\E[?5l, fsl=\E8, home=\E[H, hpa=\E[%p1%{1}%+%dG, ht=\t, hts=\EH, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\n, indn=\E[%p1%dE, invis=\E[8m, is1=\E<\E[?3l$<100>, is2=\E[0m^O\E[1;2;3;4;6l\E[12;13;14;20l\E[?6;l\E[?7h\E[4i\E[25;1j\012, is3=\E[?5l, kbeg=\Et, kbs=\b, kcbt=\E[Z, kclr=\E[J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, kel=\E[2K, kend=\Ez, kent=\n, kf1=\EOc, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, khome=\E[H, kich1=\E[4h, kil1=\E[L, kind=\E[T, kprt=\EOe, kri=\E[S, ll=\E[24H, mc0=\E[0i, mc4=\E[?9i, mc5=\E[?5i, nel=\r\n, pfx=\E[%p1%d;%p2%l%02dq\s\s\sF%p1%1d\s\s\s\s\s\s\s\s\s\s\s%p2%s, pln=\E[%p1%d;0;0;0q%p2%:-16.16s, prot=\EV, rc=\E8, rev=\E[7m, ri=\EM, rin=\E[%p1%dF, rmacs=^O, rmir=\E[4l, rmkx=\E[21;0j, rmln=\E|, rmso=\E[m, rmul=\E[m, rs2=\Ec$<2000>\E[?3l, sc=\E7, sgr=\E[0%?%p6%p5%|%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p8%t\EV%e\EW%;%?%p9%t^N%e^O%;, sgr0=\E[m^O\EW, smacs=^N, smir=\E[4h, smkx=\E[21;1j\E~, smln=\E~, smso=\E[7m, smul=\E[4m, tbc=\E[3g, tsl=\E7\E[25;%p1%{8}%+%dH, vpa=\E[%p1%{1}%+%dd, ATT4425-nl|ATT5425-nl|att5425-nl|4425-nl|5425-nl|tty5425-nl|att4425-nl|AT&T 4425/5425 without label change 80 column mode, smkx=\E[21;1j,use=4425, ATT4425-nl-w|ATT5425-nl-w|att5425-nl-w|4425-nl-w|5425-nl-w|tty5425-nl-w|att4425-nl-w|AT&T 4425/5425 without label change 132 column mode, smkx=\E[21;1j,use=4425-w, 4425-fk|5425-fk|tty5425-fk|att4425-fk|AT&T 4425/5425 without function keys, smkx@,rmkx@,use=5425, otty5420|teletype 5420 for SVR2 curses on the 3B-20's, hpa=\E[%p1%{1}%+%dG, vpa=\E[%p1%{1}%+%dd, use=tty5420, ATT4425-w|att5425-w|ATT5425-w|att4425-w|4425-w|5425-w|tty5425-w|teletype 4425/5425 in 132 column mode, lm#54, cols#132, wsl#97, # Info: # set 132 column mode, # is1=\E[?3h$<100>, use=tty5425, 4425-w-fk|5425-w-fk|tty5425-w-fk|att4425-w-fk|ATT4425-w-fk|att5425-w-fk|ATT5425-w-fk|AT&T 4425/5425 without function keys in wide mode, smkx@,rmkx@,use=5425-w, netty, acsc=jjkkllmmqqxx, smcup=\EC@\EI@\EU@\ER@\EW@\EP@\E{A\E[@\E#A\EXA, rmcup=\E{@\E#@\EX@, use=netty-Tabs, netty-vi, smcup=\EC@\EI@\EU@\ER@\EW@\EP@\E{A\E[A\E#B\EX@, rmcup=\E{@\E[@\E#@, use=netty-Tabs, netty-Tabs, am, hs, mir, msgr, it#8, bel=^G, cr=^M, clear=^L, el=\EZ, cup=\EY%p2%?%p2%{95}%>%t^A%{96}%-%;%' '%+%c%p1%?%p1%{95}%>%t^A%{96}%-%;%' '%+%c, home=\EY\s\s, cub1=^H, cud1=^J, cuu1=\EA, dch1=\Ed, dl1=\ED!, fsl=^A, smacs=\ECA, rmacs=\EC@, smcup=\EC@\EI@\EU@\ER@\EW@\EP@\E{A\E[@\EX@\E#C\EM@!!, rmcup=\E{@\E#@, smcup=\E{A, rmcup=\E{@, smir=\EIA, rmir=\EI@, smul=\EUA, rmul=\EU@, smso=\ERA, rmso=\ER@, sgr0=\EC@\EI@\EU@\ER@, il1=\EO!, is3=\EF@^A^XOE^A\EFA^A^XOF^A\EFB^A^XOG^A\EFC^A^XOH^A\EFD^A^XOI^A\EFE^A^XOJ^A\EFF^A^XOK^A\EFG^A^XOL^A\EFH^A^XOM^A\EFI^A^XON^A\EFK^A^XOO^A, kcud1=^XOB, kf1=^XOE, kf2=^XOF, kf3=^XOG, kf4=^XOH, kf5=^XOI, kf6=^XOJ, kf7=^XOK, kf8=^XOL, kclr=^XOM, khome=^XON, kll=^XOO, kcub1=^XOC, kcuf1=^XOD, kcuu1=^XOA, dl=\ED%p1%' '%+%c, indn=\ES%p1%' '%+%c, ind=\n, il=\EO%p1%' '%+%c, ht=\t, cols#80, lines#24, # Info: # wind=\Ev%p1%' '%+%c%p3%' '%+%c%p2%' '%+%c%p4%' '%+%c, loses bad # rev=^N, standout seems to work better # tsl=\Eb^A, # # Info: # TERMINFO entry for the AT&T Unix PC 7300 # from escape(7) in Unix PC 7300 Manual. # Somewhat similar to a vt100-am (but different enough # to redo this from scratch.) # Info: # /*************************************************************** # * # * FONT LOADING PROGRAM FOR THE UNIX PC # * # * This routine loads a font defined in the file ALTFONT # * into font memory slot #1. Once the font has been loaded, # * it can be used as an alternative character set. # * # * The call to ioctl with the argument WIOCLFONT is the key # * to this routine. For more information, see window(7) in # * the PC 7300 documentation. # ***************************************************************/ # #include /* needed for strcpy call */ # #include /* needed for ioctl call */ # #define FNSIZE 60 /* font name size */ # #define ALTFONT "/usr/lib/wfont/special.8.ft" /* font file */ # /* # * The file /usr/lib/wfont/special.8.ft comes with the # * standard PC software. It defines a graphics character set # * similar to that of the Teletype 5425 terminal. To view # * this or other fonts in /usr/lib/wfont, use the command # * cfont . For further information on fonts see # * cfont(1) in the PC 7300 documentation. # */ # # struct altfdata /* structure for alt font data */ # { # short altf_slot; /* memory slot number */ # char altf_name[FNSIZE]; /* font name (file name) */ # }; # ldfont() # { # int wd; /* window in which altfont will be */ # struct altfdata altf; # altf.altf_slot=1; # strcpy(altf.altf_name,ALTFONT); # for (wd =1; wd < 12; wd++) { # ioctl(wd, WIOCLFONT,&altf); # } # } # 7300|unixpc|pc7300|PC7300|unix_pc|AT&T UNIX PC Model 7300, cols#80, lines#24, am, xon, clear=\E[2J\E[H, cr=^m, bel=^g, cub1=^h, cub=\E[%p1%dD, cuf1=\E[C, cuf=\E[%p1%dC, cuu1=\E[A, cuu=\E[%p1%dA, cud1=\E[B, cud=\E[%p1%dB, cup=\E[%i%p1%d;%p2%dH, ri=\EM, ind=\012, nel=\EE, home=\E[H, el=\E[0K, ed=\E[0J, il1=\E[L, il=\E[%p1%dL, dl1=\E[M, dl=\E[%p1%dM, smso=\E[7m, rmso=\E[0m, smul=\E[4m, rmul=\E[0m, smacs=\E[11m, rmacs=\E[10m, rev=\E[7m, bold=\E[7m, dim=\E[2m, sgr0=\E[0;10m, kbs=\010, kcud1=\E[B, kcub1=\E[D, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOc, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, att5420_2|ATT5420_2|5420_2|AT&T 5420 model 2 in 80 column mode, am, db, hs, mir, msgr, xon, cols#80, it#8, lh#2, lines#24, lm#78, lw#8, nlab#8, wsl#55, blink=\E[5m, cbt=\E[1Z, clear=\EH\EJ, cnorm=\E[11;0j, cr=\EG, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\b, cud1=\E[1B, cuf=\E[%p1%dC, cuf1=\E[1C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cvvis=\E[11;1j, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ech=\E[%p1%ds\E[%p1%dD, ed=\E[0J, el=\E[0K, el1=\E[1K, flash=\E[?5h$<200>\E[?5l, fsl=\E8, home=\E[0;0H, hpa=\E[%p1%{1}%+%dG, ht=\t, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\n, indn=\E[%p1%dE, invis=\E[8m, is1=\E[0;23r\Ex\Ey\E[2;0j\E[3;3j\E[4;0j\E[5;0j\E[6;0j\E[7;0j\E[8;0j\E[9;1j\E[10;0j\E[15;0j\E[16;1j\E[19;0j\E[20;1j\E[29;0j\E[1;24r, kbeg=\Et, kbs=\b, kcbt=\E[Z, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E[P, kdl1=\E[M, kel=\E[2K, kend=\Ez, kent=\n, kf1=\EOc, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, khome=\E[H, kich1=\E[4h, kil1=\E[L, kind=\E[T, kll=\Eu, knp=\E[U, kpp=\E[V, kri=\E[S, lf1=F1, lf2=F2, lf3=F3, lf4=F4, lf5=F5, lf6=F6, lf7=F7, lf8=F8, ll=\Ew, mc0=\E[?;2i, mc4=\E[4i, mc5=\E[5i, mrcup=\E[%i%p1%d;%p2%dt, nel=\r\n, pfx=\E[%p1%d;%p2%l%02dq\s\s\sF%p1%d\s\s\s\s\s\s\s\s\s\s\s%p2%s\E~, pln=\E[%p1%d;0;0;0q%p2%:-16.16s\E~, prot=\EV, rc=\E8, rev=\E[7m, ri=\EM, rin=\E[%p1%dF, rmacs=^O, rmkx=\E[19;0j, rmln=\E|, rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l\E[2;0y, sc=\E7, sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t^N%e^O%;, sgr0=\E[0m^O, smacs=^N, smkx=\E[19;1j, smln=\E~, smso=\E[7m, smul=\E[4m, tbc=\E[3g, tsl=\E7\E[25;%p1%{8}%+%dH, vpa=\E[%p1%{1}%+%dd, att5420_2-w|ATT5420_2-w|5420_2-w|AT&T 5420 model 2 in 132 column mode, cols#132, is1=\E[0;23r\Ex\Ey\E[2;0j\E[3;3j\E[4;0j\E[5;1j\E[6;0j\E[7;0j\E[8;0j\E[9;1j\E[10;0j\E[15;0j\E[16;1j\E[19;0j\E[20;1j\E[29;0j\E[1;24r, use=5420_2, 4418|att4418|ATT4418|5418|att5418|ATT5418|AT&T 5418 in 80 column mode, am, xon, cols#80, lines#24, bel=^G, blink=\E[5m, clear=\E[H\E[2J, cr=\r, cub=\E[%p1%dD, cub1=\E[D, cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\E[1P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ed=\E[0J, el=\E[0K, home=\E[H, ich=\E[%p1%d@, ich1=\E[1@, il=\E[%p1%dL, il1=\E[1L, ind=\n, is1=\E[?3l, is2=\E)0\E?6l\E?5l, kclr=\E[%, kcub1=\E@, kcud1=\EU, kcuf1=\EA, kcuu1=\ES, kent=\E[, kf1=\E[h, kf10=\E[m, kf11=\E[n, kf12=\E[o, kf13=\E[H, kf14=\E[I, kf15=\E[J, kf18=\E[K, kf19=\E[L, kf2=\E[i, kf20=\E[E, kf21=\E[_, kf22=\E[M, kf23=\E[N, kf24=\E[O, kf3=\E[j, kf6=\E[k, kf7=\E[l, kf8=\E[f, kf9=\E[w, rc=\E8, rev=\E[7m, rmacs=^O, rmso=\E[0m, rmul=\E[0m, sc=\E7, sgr0=\E[0m, smacs=^N, smso=\E[7m, smul=\E[4m, 4418-w|att4418-w|ATT4418-w|5418-w|att5418-w|ATT5418-w|AT&T 5418 in 132 column mode, cols#132,is1=\E[?3h,use=5418, 610|610bct|att610bct|ATT610BCT|AT&T 610 bct terminal 80 column mode, am, hs, mir, msgr, xenl, xon, cols#80, it#8, lh#2, lines#24, lw#8, nlab#8, wsl#80, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, civis=\E[?25l, clear=\E[H\E[J, cnorm=\E[?25h\E[?12l, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\E[B, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, cvvis=\E[?12;25h, dch=\E[%p1%dP, dch1=\E[P, dim=\E[2m, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, el1=\E[1K, flash=\E[?5h$<200>\E[?5l, fsl=\E8, home=\E[H, ht=\t, ich=\E[%p1%d@, il=\E[%p1%dL, il1=\E[L, ind=\n, invis=\E[8m, is1=\E[8;0|\E[?3;4;5;13;15l\E[13;20l\E[?7h\E[12h, is2=\E[0m^O, is3=\E(B\E)0, kbeg=\E9, kbs=\b, kcbt=\E[Z, kclr=\E[2J, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\ENf, kdl1=\ENe, kel=\EOa, kend=\E0, kent=\r, kf1=\EOc, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, kf9=\ENo, kf10=\ENp, kf11=\ENq, kf12=\ENr, kf13=\ENs, kf14=\ENt, khome=\E[H, kind=\E[S, knp=\E[U, kpp=\E[V, kprt=\EOz, kri=\E[T, ll=\E[24H, mc4=\E[?4i, mc5=\E[?5i, nel=\r\n, pfx=\E[%p1%d;%p2%l%02dq\s\s\sF%p1%1d\s\s\s\s\s\s\s\s\s\s\s%p2%s, pln=\E[%p1%d;0;0;0q%p2%:-16.16s, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O, rmir=\E[4l, rmln=\E[2p, rmso=\E[m, rmul=\E[m, rs2=\Ec\E[?3l, sc=\E7, sgr=\E[0%?%p6%t;1%;%?%p5%t;2%;%?%p2%t;4%;%?%p4%t;5%;%?%p3%p1%|%t;7%;%?%p7%t;8%;m%?%p9%t^N%e^O%;, sgr0=\E[m^O, smacs=^N, smir=\E[4h, smln=\E[p, smso=\E[7m, smul=\E[4m, tsl=\E7\E[25;%i%p1%dx, 610-w|610bct-w|att610bct-w|ATT610BCT-w|AT&T 610 bct terminal 132 column mode, cols#132, is1=\E[8;0|\E[?4;5;13;15l\E[13;20l\E[?3;7h\E[12h, wsl#132, use=610, 5320|att5320|ATT5320|AT&T 5320 hardcopy terminal, am, hc, os, cols#132, bel=^G, cr=\r, cub1=\b, cud1=\n, dch1=\E[P, dl1=\E[M, ind=\n, kbs=\b, rmso=\E[m, smso=\E[7m, 510|pt510|attpt510|ATTPT510|510a|pt510a|attpt510a|ATTPT510A|att510|att510a|AT&T 510a terminal - 80 column mode, kf1=\EOm, kf2=\EOV, kf3=\EOu, kf4=\ENj, kf5=\ENe, kf6=\ENf, kf7=\ENh, kf8=\E[H, kf9=\EOc, kf10=\EOd, kf11=\EOe, kf12=\EOf, kf13=\EOg, kf14=\EOh, kf15=\EOi, kf16=\EOj, smkx=\E[19;1|, rmkx=\E[19;0|, am, mir, msgr, xenl, xon, cols#80, lh#2, lines#24, lw#7, nlab#8, acsc=hrisjjkkllmmnnqqttuuvvwwxx{{||}}~~-f\,h.e+g`b, bel=^G, blink=\E[5m, bold=\E[2;7m, cr=^M, cbt=\E[Z, clear=\E[H\E[J, cnorm=\E[11;0|, cvvis=\E[11;2|, cub1=^H, cub=\E[%p1%dD, cud1=\E[1B, cud=\E[%p1%dB, cuf1=\E[C, cuf=\E[%p1%dC, cuu1=\E[A, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, dch1=\E[P, dch=\E[%p1%dP, dim=\E[2m, dl1=\E[M, dl=\E[%p1%dM, ed=\E[0J, el1=\E[1K, el=\E[0K, # set main character set=ascii and second character set=extended line drawing, enacs=\E(B\E)1, ff=^L, home=\E[H, ht=^I, hts=\EH, il1=\E[L, il=\E[%p1%dL, ind=^J, invis=\E[8m, is3=\E[21;1|\212, is1=\E(B\E)1, kbs=^H, kcbt=\E[Z, kcuu1=\E[A, kcud1=\E[B, kcuf1=\E[C, kcub1=\E[D, kind=\E[S, kri=\E[T, kRIT=\E[v, kLFT=\E[u, mc0=\E[0i, mc4=\E[?8i, mc5=\E[?4i, nel=\EE, pln=\E[%p1%dp%p2%:-16s, rc=\E8, rev=\E[7m, ri=\EM, rmacs=^O, rmso=\E[m, rmul=\E[m, sc=\E7, sgr0=\E[m^O, sgr=\E[0%?%p1%p5%|%t;2%;%?%p2%p6%|%t;4%;%?%p4%t;5%;%?%p3%p1%|%p6%|%t;7%;%?%p7%t;8%;m%?%p9%t^N%e^O%;, smacs=^N, smso=\E[7m, smul=\E[4m, tbc=\E[3g, PC6300PLUS|pc6300plus|6300plus|6300PLUS|AT&T-IS PC 6300 PLUS Personal Computer, am, cols#80, lines#24, bel=^G, cr=\r, clear=\E[2J\E[H, el=\E[0K, ed=\E[0J, cup=\E[%i%p1%02d;%p2%02dH, cud1=\E[B, home=\E[H, cub1=\b, cuf1=\E[C, cuu1=\E[A, dch1=\E[1P, dl1=\E[1M, smso=\E[7m, smul=\E[4m, rmso=\E[m, rmul=\E[m, ich1=\E[1@, il1=\E[1L, kbs=\b, kcud1=\E[B, kf1=\EOc, kf2=\EOd, kf3=\EOe, kf4=\EOf, kf5=\EOg, kf6=\EOh, kf7=\EOi, kf8=\EOj, kf9=\EOk, kcub1=\E[D, khome=\E[H, sgr0=\E[0m, kcuf1=\E[C, kcuu1=\E[A, nel=\r\n, ind=\n, rev=\E[7m, invis=\E[9m, blink=\E[5m, bold=\E[1m, hts=\EH, tbc=\E[3g, dim=\E[2m, kdch1=\ENf, krmir=\E0, kich1=\Eim, knp=\E[U, kpp=\E[V, rmacs=^0, #ident "@(#)terminfo:beehive.ti 1.8" # # -------------------------------- # # beehive: BEEHIVE # # Manufacturer: BEEHIVE # Class: II # # Info: # Beehive documentation is undated # (Preliminary) and has no figures so we must have early Superbee2 # (Model 600, according to phone conversation with mfr.). It has # proved reliable except for some missing padding requirements # (notably after \EK and nl at bottom of screen). # # The key idea is that AEP mode is poison for cm & that US's in # the local memory should be avoided like the plague. That means # that the 2048 character local buffer is used as 25 lines of 80 # characters, period. No scrolling local memory, folks. It also # appears that we cannot use naked INS LINE feature since it uses # US. The sbi fakes al with an 80-space insert that may be too # slow at low speeds; also spaces get converted to \040 which is # too long for some programs (not vi). DEL LINE is ok but slow. # # The nl string is designed for last line of screen ONLY; cm to # 25th line corrects the motion inherent in scrolling to Page 1. # # There is one understood bug. It is that the screen appears to # pop to a new (blank) page after a nl, or leave a half-line # elipsis to a quad that is the extra 48 memory locations. The # data received is dumped into memory but not displayed. Not to # worry if cm is being used; the lines not displayed will be, # whenever the cursor is moved up there. Since cm is addressed # relative to MEMORY of window, nothing is lost; but beware of # relative cursor motion (up,do,nd,bs). Recommended, therefore, # is setenv MORE -c . # # WARNING: Not all features tested. # # Timings are assembled from 3 sources. Some timings may reflect # SB2/Model 300 that were used if more conservative. # Tested on a Model 600 at 1200 and 9600 bd. # # The BACKSPACEkb option is cute. The NEWLINE key, so cleverly # placed on the keyboard and useless because of AEP, is made # into a backspace key. In use ESC must be pressed twice (to send) # and sending ^C must be prefixed by ESC to avoid that wierd # transmit mode associated with ENTER key. # # IF TERMINAL EVER GOES CATATONIC with the cursor buzzing across # the screen, then it has dropped into ENTER mode; hit # RESET--ONLINE--!tset. # # As delivered this machine has a FATAL feature that will throw # it into that strange transmit state (SPOW) if the space bar is # hit after a CR is received, but before receiving a LF (or a # few others). # # The circuits MUST be modified to eliminate the SPOW latch. # This is done by strapping on chip A46 of the I/O board; cut # the p.c. connection to Pin 5 and Strap Pin 5 to Pin 8 of that # chip. This mod has been checked out on a Mod 600 of Superbee II. # With this modification absurdly high timings on cr are  # unnecessary. # # NOTE WELL that the rear panel switch should be set to CR/LF, # not AEP! # sb|sb1|sbg|Beehive superbee, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cbt=\E`$<650>, bw, cols#80, il1=\EN\EL$<3>\EQ \EP$<3> \EO\ER\EA$<3>, ed=\EJ$<3>, el=\EK$<3>, clear=\EH$<1>\EJ$<3>, cup=\EF%r%p1%03d%p2%03d, lines#25, cub1=\b$<1>, cr=$<1>\r, da, db, dch1=\EP$<3>, dl1=\EM$<100>, cud1=\EB$<3>, rmir=\ER, home=\EH$<1>, smir=\EQ\EO, is2=\EE$<3>\EX\EZ\EO\Eb\Eg\ER, kf0=\E2, kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, kf6=\Eu, kf7=\Ev, kf8=\Ew, kf9=\E1, lf0=TAB CLEAR, lf9=TAB SET, kbs=^_, kcud1=\EB, kel=\EK, ked=\EJ, kdl1=\EM, kich1=\EQ\EO, krmir=\ER, khome=\EH, kcub1=\ED, kcuf1=\EC, kcuu1=\EA, mir, cuf1=\EC$<3>, rmso=\E_3, xmc#1, smso=\E_1, nel=3\n\0\n\0\ET$<6>\EA$<5>\EK, smcup=\EO, rmul=\E_3, ul, cuu1=\EA$<3>, smul=\E_0, sb2|sb3|fixed superbee, xsb@, use=superbee, sbi|superbee|beehive superbee at Indiana U., cr=^M$<1>, il1=1\EN\EL$<9>\EQ \EP$<9> \EO\ER\EA, use=sbg, # Info: # Does this entry make xmc when it doesn't have to? # Look at those spaces in rmso/smso. Seems strange to me. # However, not having one to test changes on, I'll just leave it be... # bh3m|beehiveIIIm|, if=/usr/lib/tabset/beehive, cr=^M, cud1=^J, ind=^J, bel=^G, il1=^S$<160>, am, cub1=^H, ed=^R, el=^P, clear=^E^R, cols#80, dl1=^Q$<350>, home=^E, lines#20, ll=^E^K, cuf1=^L, ht=^I, rmso= ^_, smso=^] , cuu1=^K, microb|microbee|micro bee series, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=\EJ, el=\EK, clear=\EE, cols#80, cup=\EF%p1%' '%+%c%p2%' '%+%c, kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, kf6=\Eu, kf7=\Ev, kf8=\Ew, kf9=\Ex, kcud1=\EB, khome=\EH, kcub1=\ED, kcuf1=\EC, kcuu1=\EA, lines#24, cuf1=\EC, ht=^I, cuu1=\EA, rmso=\Ed@ , smso= \EdP, rmul=\Ed@, smul=\Ed`, bh4|beehive4|beehive 4, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, am, cub1=^H, ed=\EJ, el=\EK, clear=\EE, home=\EH, cuu1=\EA, cuf1=\EC, cub1=\ED, #ident "@(#)terminfo:cdc.ti 1.3" # # -------------------------------- # # cdc: CONTROL DATA # # Manufacturer: CONTROL DATA # Class: II # cdc456|cdc, cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#80, clear=^Y^X, cuf1=^L, cuu1=^Z, cub1=^H, cup=\E1%p1%' '%+%c%p2%' '%+%c, home=^Y, il1=\E\114, dl1=\E\112, el=^V, ed=^X, am, cdc456tst, cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#80, clear=^y^x, cub1=^H, cup=\E1%p1%' '%+%c%p2%' '%+%c, am, #ident "@(#)terminfo:colorscan.ti 1.4" # Manufacturer: DATAMEDIA # Class: III # cs10|colorscan|Datamedia Color Scan 10, msgr, cols#80, lines#24, bel=^G, clear=\E[;H\E[J, cr=\r, cub1=\b, cud1=\n, cuf1=\E[C, cup=\E[%i%p1%02d;%p2%02dH, cuu1=\E[A, ed=\E[J, el=\E[K, ind=\n, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, rmso=\E[m, rmul=\E[m, smso=\E[7m, smul=\E[4m, cs10-w|Datamedia Color Scan 10 with 132 columns, cols#132, cup=\E[%i%p1%02d;%p2%03dH, use=cs10, #ident "@(#)terminfo:datamedia.ti 1.6" # # -------------------------------- # # datamedia: DATAMEDIA # # Manufacturer: DATAMEDIA # Class: II # dm1520|dm1521|1521|1520|datamedia 1520, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=^K, el=^], clear=^L, cup=^^%p2%' '%+%c%p1%' '%+%c, cols#80, home=^Y, kcuu1=^_, kcud1=^J, kcub1=^H, kcuf1=^\, khome=^Y, lines#24, cuf1=^\, cuu1=^_, xenl, ht=^I, dm2500|datamedia2500|2500|datamedia 2500, cud1=^J, ind=^J, bel=^G, il1=^P\n^X^]^X^]$<1*>, cub1=^H, el=^W, clear=^^^^\177, cup=^L%p2%'`'%^%c%p1%'`'%^%c, cols#80, dch1=^P\b^X^]$<10*>, dl1=^P^Z^X^]$<10*>, smdc=^P, rmdc=^X^], rmir=\377\377^X^]$<10>, home=^B, ich1=^P^\^X^]$<10*>, smir=^P, lines#24, cuf1=^\, pad=\377, smso=^N, rmso=^X^], cuu1=^Z, dm3025|datamedia 3025a, is2=\EQ\EU\EV, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EP\n\EQ$<130>, cub1=^H, ed=\EJ$<2>, el=\EK, clear=\EM$<2>, cup=\EY%p2%' '%+%c%p1%' '%+%c, cols#80, dch1=\b$<6>, dl1=\EP\EA\EQ$<130>, smdc=\EP, rmdc=\EQ, rmir=\EQ, home=\EH, smir=\EP, lines#24, cuf1=\EC, ht=^I, smso=\EOA, rmso=\EO@, cuu1=\EA, 3045|dm3045|datamedia 3045a, is2=\EU\EV, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=\EJ$<2>, el=\EK, clear=\EM$<2>, cup=\EY%p2%' '%+%c%p1%' '%+%c, cols#80, dch1=\EB$<6>, rmir=\EP, home=\EH, smir=\EP, ip=$<6>, kf0=\Ey\r, kf1=\Ep\r, kf2=\Eq\r, kf3=\Er\r, kf4=\Es\r, kf5=\Et\r, kf6=\Eu\r, kf7=\Ev\r, kf8=\Ew\r, kf9=\Ex\r, khome=\EH, kcuu1=\EA, kcuf1=\EC, lines#24, cuf1=\EC, pad=\177, ht=^I, eo, ul, cuu1=\EA, xenl, # Info: # dt80/1 is2 a vt100 lookalike, but it doesn't seem to need # any padding. # dt80|dmdt80|dm80|datamedia dt80/1, am, mir, msgr, xenl, xon, cols#80, it#8, lines#24, vt#3, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, clear=\E[2J\E[H, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, ed=\E[J, el=\E[K, el1=\E[1K$<3>, enacs=\E(B\E)0, home=\E[H, ht=\t, hts=\EH, ind=\n, ka1=\EOq, ka3=\EOs, kb2=\EOr, kbs=\b, kc1=\EOp, kc3=\EOn, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kent=\EOM, kf0=\EOy, kf1=\EOP, kf10=\EOx, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOt, kf6=\EOu, kf7=\EOv, kf8=\EOl, kf9=\EOw, mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, rc=\E8, rev=\E[7m$<2>, ri=\EM, rmacs=^O, rmkx=\E[?1l\E>, rmso=\E[m, rmul=\E[m, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t^N%e^O%;, sgr0=\E[m^O$<2>, smacs=^N, smkx=\E[?1h\E=, smso=\E[7m, smul=\E[4m, tbc=\E[3g, # Info: # In 132 column mode it needs a little padding. # This is2 still less padding than the vt100, and you can always # turn on the ^S/^Q handshaking, smso you can use vt100 flavors # for things like reverse video. # dt80-w|dmdt80-w|dm80-w|datamedia dt80/1 in 132 char mode, cr=^M, cud1=^J, ind=^J, bel=^G, ed=\E[0J$<20>, cols#132, el=\E[0K$<20>, cup=\E[%i%p1%d;%p2%dH$<5>, clear=\E[H\E[2J$<50>, cuu1=\E[A$<5>, use=dmdt80, #ident "@(#)terminfo:dec.ti 1.7" # # -------------------------------- # # dec: DEC (DIGITAL EQUIPMENT CORPORATION) # # Manufacturer: DEC (DIGITAL EQUIPTMENT CORP.) # Class: II # # Info: # Note that xenl glitch in vt100 is not quite the same as concept, # since the cursor is left in a different position while in the # weird state (concept at beginning of next line, vt100 at end # of this line) so all versions of vi before 3.7 don't handle # xenl right on vt100. The correct way to handle xenl is when # you output the char in column 80, immediately output CR LF # and then assume you are in column 1 of the next line. If xenl # is on, am should be on too. # # I assume you have smooth scroll off or are at a slow enough baud # rate that it doesn't matter (1200? or less). Also this assumes # that you set auto-nl to "on", if you set it off use vt100-nam # below. # # The padding requirements listed here are guesses. It is strongly # recommended that xon/xoff be enabled, as this is assumed here. # # The vt100 uses rs2 and rf rather than is2/tbc/hts because the # tab settings are in non-volatile memory and don't need to be # reset upon login. Also setting the number of columns glitches # the screen annoyingly. You can type "reset" to get them set. # vt100|vt100-am|dec vt100 (w/advanced video), mir, msgr, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, it#8, clear=\E[H\E[J$<50>, cub1=^H, am, cup=\E[%i%p1%d;%p2%dH$<5>, cuf1=\E[C$<2>, cuu1=\E[A$<2>, el=\E[K$<3>, el1=\E[1K$<3>, ed=\E[J$<50>, cud=\E[%p1%dB, cuu=\E[%p1%dA, cub=\E[%p1%dD, cuf=\E[%p1%dC, smso=\E[1;7m$<2>, rmso=\E[m$<2>, smul=\E[4m$<2>, rmul=\E[m$<2>, bold=\E[1m$<2>, rev=\E[7m$<2>, blink=\E[5m$<2>, sgr0=\E[m^O$<2>, sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t^N%e^O%;, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, smkx=\E[?1h\E=, rmkx=\E[?1l\E>, enacs=\E(B\E)0, smacs=^N, rmacs=^O, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, tbc=\E[3g, hts=\EH, home=\E[H, ht=^I, ri=\EM$<5>, kcuu1=\EOA, kcud1=\EOB, kcuf1=\EOC, kcub1=\EOD, kbs=^H, # Info: # This is how the keypad gets assigned. # PF1 PF2 PF3 PF4 kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, # 7 8 9 '-' does not send anything on my terminal. kf9=\EOw, kf10=\EOx, kf0=\EOy, # 4 5 6 , kf5=\EOt, kf6=\EOu, kf7=\EOv, kf8=\EOl, # 1 2 3 ka1=\EOq, kb2=\EOr, ka3=\EOs, # 0 . ENTER kc1=\EOp, kc3=\EOn, kent=\EOM, # vt#3, xenl, xon, sc=\E7, rc=\E8, csr=\E[%i%p1%d;%p2%dr, vt100-nam|vt100 w/no am (w/advanced video), am@, xenl@, use=vt100-am, # Info: # Ordinary vt100 in 132 column ("wide") mode. # vt100-w|vt100-w-am|dec vt100 132 cols (w/advanced video), cols#132, lines#14, rs2=\E>\E[?3h\E[?4l\E[?5l\E[?8h, use=vt100-am, vt100-w-nam|vt100-nam-w|dec vt100 132 cols (w/advanced video), cols#132, lines#14, rs2=\E>\E[?3h\E[?4l\E[?5l\E[?8h, vt@, use=vt100-nam, # Info: # vt100's with no advanced video. # vt100-nav|vt100 without advanced video option, sgr@, smso=\E[7m , rmso=\E[m , xmc#1, smul@, rmul@, bold@, rev@, blink@, sgr0@, use=vt100, vt100-nav-w|vt100-w-nav|dec vt100 132 cols 14 lines (no advanced video option), lines#14, cols#132, use=vt100-nav, # Info: # vt100's with one of the 24 lines used as a status line. # We put the status line on the top. # vt100-s|vt100-s-top|vt100-top-s|vt100 for use with sysline, lines#23, is2=\E7\E[2;24r\E8, clear=\E[2;1H\E[J$<50>, home=\E[2;1H, dsl=\E7\E[1;24r\E8, cup=\E[%i%p1%{1}%+%d;%p2%dH$<5>, csr=\E[%i%i%p1%d;%p2%dr, hs, eslok, tsl=\E7\E[1;%p1%dH\E[1K, fsl=\E8, use=vt100-am, # Info: # Status line at bottom. # Clearing the screen will clobber status line. # vt100-s-bot|vt100-bot-s|vt100 for use with sysline, lines#23, is2=\E[1;23r\E[23;1H, dsl=\E7\E[1;24r\E8, hs, eslok, tsl=\E7\E[24;%p1%dH\E[1K, fsl=\E8, use=vt100-am, # Info: # vt132 - like vt100 but slower and has ins/del line and such. # I'm told that smir/rmir are backwards in the terminal from the # manual and from the ANSI standard, this describes the actual # terminal. I've never actually used a vt132 myself, so this # is untested. # vt132|DEC vt132, il1=\E[L$<99>, dl1=\E[M$<99>, ip=$<7>, dch1=\E[P$<7>, rmir=\E[4h, smir=\E[4l, xenl, ind=^J$<30>, use=vt100, # Info: # Older DEC CRT's # vt50|dec vt50, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=\EJ, el=\EK, clear=\EH\EJ, cols#80, lines#12, cuf1=\EC, ht=^I, cuu1=\EA, vt50h|dec vt50h, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=\EJ, el=\EK, clear=\EH\EJ, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, lines#12, cuf1=\EC, ht=^I, ri=\EI, cuu1=\EA, vt52|dec vt52, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=\EJ, el=\EK, clear=\EH\EJ, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, lines#24, cuf1=\EC, ht=^I, it#8, ri=\EI, cuu1=\EA, kcuu1=\EA, kcud1=\EB, kcuf1=\EC, kcub1=\ED, kbs=^H, # Info: # A VT62 can be made to think that it is a VT61 by moving 6 # soldered-in jumpers on the i/o board. # The keyboard must be relabeled, also. # vt61|vt-61|vt61.5|, cr=^M$<20>, cud1=^J, ind=^J$<20>, bel=^G, cub1=^H, ed=\EJ$<120>, el=\EK$<70>, clear=\EH\EJ$<120>, cup=\EY%p1%' '%+%c%p2%' '%+%c$<20>, cols#80, lines#24, cuf1=\EC$<20>, ht=^I, ri=\E$<20>I, cuu1=\EA$<20>, kcuu1=\EA, kcud1=\EB, kcuf1=\EC, kcub1=\ED, # Info: # Graphics CRT's. # clear screen also erases graphics # vt125|vt125 graphics terminal, clear=\E[;H\E[2J\EPpS(E)\E\\$<50>, use=vt100, gt40|dec gt40, cr=^M, cud1=^J, bel=^G, cub1=^H, cols#72, lines#30, os, gt42|dec gt42, cr=^M, cud1=^J, bel=^G, cub1=^H, cols#72, lines#40, os, # Info: # The gigi does standout with red! # gigi|vk100|dec gigi graphics terminal, cr=^M, cud1=^J, ind=^J, bel=^G, cols#84, lines#24, am, clear=\E[;H\E[2J, cub1=^H, cup=\E[%i%p1%d;%p2%dH, cuf1=\E[C, cuu1=\E[A, el=\E[K, ed=\E[J, smso=\E[7;31m, rmso=\E[m, smul=\E[4m, rmul=\E[m, is2=\E>\E[?3l\E[?4l\E[?5l\E[?20l\E[?7h\E[?8h, smkx=\E[?1h\E=, rmkx=\E[?1l\E>, kcuu1=\EOA, kcud1=\EOB, kcuf1=\EOC, kcub1=\EOD, khome=\E[H, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, ht=^I, ri=\EM, xenl, cud=\E[%p1%dB, cuu=\E[%p1%dA, cub=\E[%p2%dD, cuf=\E[%p1%dC, # Info: # Hard copy (decwriter) dec terminals. # dw1|decwriter I, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, cols#72, hc, os, dw2|decwriter|dw|decwriter II, cr=^M, cud1=^J, ind=^J, bel=^G, kbs=^H, cub1=^H, cols#132, hc, os, # Info: # \E(B Use U.S. character set (otherwise # => british pound !) # \E[20l Disable "linefeed newline" mode (otherwise puts \r after \n,\f,\(vt ) # \E[w 10 char/in pitch # \E[1;132 full width horizontal margins # \E[2g clear all tab stops # \E[z 6 lines/in # \E[66t 66 lines/page (for \f) # \E[1;66r full vertical page can be printed # \E[4g clear vertical tab stops # \E> disable alternate keypad mode (so it transmits numbers!) # \E[%i%du set tab stop at column %d (origin == 1) # (Full syntax is \E[n;n;n;n;n;...;nu where each 'n' is # a tab stop) # # The dw3 does standout with wide characters. # dw3|la120|decwriter III, cr=^M, cud1=^J, ind=^J, bel=^G, kbs=^h, cub1=^H, cols#132, hc, os, smso=\E[6w, rmso=\E[w, ht=^I, is1=\E(B\E[20l\E[w\E[0;132s\E[2g\E[z\E[66t\E[1;66r\E[4g\E>, is2=\E[9;17;25;33;41;49;57;65;73;81;89;97;105;113;121;129u\r, dw4|decwriter IV, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, cols#132, hc, os, am, ht=^I, is2=\Ec, kf0=\EOP, kf1=\EOQ, kf2=\EOR, kf3=\EOS, kbs=^H, #ident "@(#)terminfo:diablo.ti 1.6" # # -------------------------------- # # diablo: DAISY WHEEL PRINTERS # # Manufacturer: Generic DAISY WHEEL PRINTERS # Class: II # # Info: # The A manufacturer represents Diablo, DTC, Xerox, Qume, and # other Daisy wheel terminals until such time as terminfo # distinguishes between them enough to justify separate codes. # diablo|1620|1640|450|diablo 1620, cr=^M, cud1=^J, ind=^J, bel=^G, tbc=\E2, hts=\E1, hpa=\E\t%p1%{1}%+%c, kbs=^H, cub1=^H, cols#132, ff=^L, hc, hu=\EU, hd=\ED, os, ht=^I, cuu1=\E\n, diablo-m8|1620-m8|1640-m8|diablo 1620 w/8 column left margin, cr=^M, cud1=^J, ind=^J, bel=^G, cols#124, is2=\r \E9, use=1620, # Info: # DTC 382 with VDU. Has no ed so we fake it with el. Standout # works but won't go away without dynamite. # # If no tab is set or the terminal's in a bad mood, it glitches # the screen around all of memory. Note that return puts a blank # ("a return character") in the space the cursor was at, so we # use ^P return (and thus ^P newline for newline).  # # I have been unable to get tabs set in all 96 lines - # it always leaves at least one line with no tabs in it, and # once you tab through that line, it completely weirds out. # ps|dtc382|382|DTC 382, bel=^G, .cud1=^J, ind=^J, il1=^P^Z, am, cub1=^H, cols#80, el=^P^U, clear=^P^]$<20>, cup=^P^Q%p2%c%p1%c, dch1=^X, dl1=^P^S, rmir=^Pi, home=^P^R, smir=^PI, cnorm=^Pb, cvvis=^PB, pad=\177, rmcup=^P^]$<20>, lines#24, cuf1=^PR, .rmso=^P \200, .smso=^P \002^PF, smul=^P \020, rmul=^P \200, cuu1=^P^L, xhp, lm#96, da, db, cr=^P^M, ed=^P^U^P^S^P^S, dtc300s|300|300s|dtc|dtc 300s, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, kbs=^h, cub1=^H, cols#132, ff=^L, hc, hu=\EH, hd=\Eh, os, ht=^I, cuu1=^Z, gsi, cub1=^H, cols#132, hc, hd=\Eh, hu=\EH, os, ht=^I, cuu1=^Z, cr=^M, cud1=^J, ind=^J, bel=^G, aj830|aj832|aj|anderson jacobson, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, hc, hd=\E9, hu=\E8, os, cuu1=\E7, # Info: # This is incomplete, but it's a start. # 5520|nec|spinwriter|nec 5520, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, kbs=^h, cub1=^H, cols#132, ff=^L, hc, hu=\E]s\E9\E]W, hd=\E]s\n\E]W, os, ht=^I, cuu1=\E9, qume5|qume|qume sprint 5, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, kbs=^h, cub1=^H, cols#80, ff=^L, hc, hu=\EH, hd=\Eh, os, ht=^I, cuu1=^Z, # Info: # I suspect the xerox1720 is the same as the diablo 1620. # x1720|x1700|1700|x1750|xerox 1720, cols#132, cub1=^H, ff=^L, hc, os, ht=^I, cr=^M, cud1=^J, ind=^J, bel=^G, tbc=\E2, hts=\E1, # Info: # This is an "experimental" entry for the SRI Agiles. # # It has been tried in a minimal way -- the Agile did not blow up! # However, it has not been exhaustively tested. # agile|agiles|sri agiles, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, hc, os, cols#132, ht=^I, kbs=^H, cuu1=\E\n, hu=\E0, hd=\E9, hts=\E1, tbc=\E2, is2=\EE\EF\EJ, #ident "@(#)terminfo:fortune.ti 1.3" # Manufacturer: FORTUNE # Class: III # Info: # This is the original fortune entry, probably outdated # ofos|ofortune|fortune system, is2=^_.., lines#25, cols#80, am, bw, clear=^L$<20>, ed=^\Y$<3*>, ich1=^\Q$<5>, dch1=^\W$<5>, cup=^\C%p1%' '%+%c%p2%' '%+%c, ht=^Z, home=^^$<10>, cud1=^J$<3>, cuu1=^K$<3>, cub1=^H, kbs=^H, kcud1=^Ay\r, khome=^A?\r, kcub1=^Aw\r, kcuf1=^Az\r, kcuu1=^Ax\r, ind=^J$<5>, smso=^\H`, rmso=^\I`, xmc#0, smul=^\HP, rmul=^\IP, el=^\Z, rev=\EH, .sgr0=\EI, fortune|Fortune Systems 32:16 terminal, am, bel=^G, blink=\EN, bw, civis=\E], clear=^L$<20>, cnorm=\E\\, cols#80, cr=\r, cub1=^H, cud1=^J$<3>, cuf1=^I, cup=^\C%p1%' '%+%c%p2%' '%+%c$<1>, cuu1=^K$<3>, cvvis=\E[, dch1=^\W$<5>, # dl1=^\R$<15>, dl1=^\r$<15>, ed=^\Y$<3*>, el=^\Z, flash=^Y^G, home=^^$<10>, ht=^Z, ich1=^\Q$<5>, # il1=^\E$<15>, il1=^\g$<15>, ind=^J\r$<5>, # Info: # not sure about is1! # is1=^_.., kbs=^H, kcub1=^Aw\r, kcud1=^Ay\r, kcuf1=^Az\r, kcuu1=^Ax\r, khome=^A?\r, lines#25, nel=\r\n, rep=%p1%c\EF%p2%'?'%+%c, rev=\EH, ri=^K\r$<5>, rmso=^\I`, # rmul=^\I\20, or # rmul=^\I, rmul=\EZ, sgr0=\EI\E\^\EZ, smso=^\H`, # smul=^\H\20, or # smul=^\HO, smul=\EY, xmc#0, # Info: # Other stuff: # bs=^H, ns, # bs=^H: nl=5^J: ug=0 # #ident "@(#)terminfo:general.ti 1.6" # # -------------------------------- # # general: GENERAL TERMINAL (formerly INFOTON) # # Manufacturer: GENERAL TERMINAL # Class: I # # Info: # Infoton is now called General Terminal Corp. # i100|gt100|gt100a|General Terminal 100A (formerly Infoton 100), cr=^M, cud1=^J, ind=^J, bel=^G, clear=^L, ed=\EJ, el=\EK, lines#24, cols#80, il1=\EL, dl1=\EM, cuu1=\EA, cuf1=\EC, home=\EH, cup=\Ef%p2%' '%+%c%p1%' '%+%c, flash=\Eb\Ea, am, cub1=^H, smso=\Eb, rmso=\Ea, # Info: # Looks like an ANSI terminal, but look at dch1! I bet smdc/rmdc # could be used. # # But you would think being ANSI they would do \E[P differently. # i400|400|infoton 400, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\E[L, am, cub1=^H, el=\E[N, clear=\E[2J, cup=\E[%i%p1%03d;%p2%03dH, cols#80, dl1=\E[M, lines#25, cuf1=\E[C, cuu1=\E[A, smir=\E[4h\E[2Q, rmir=\E[4l\E[0Q, dch1=\E[4h\E[2Q\E[P\E[4l\E[0Q, addrinfo, cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#80, clear=^L, home=^H, cuf1=^Y, ed=^K, cuu1=^\, am, cub1=^Z, cup=\037%i%p1%{1}%-%c%p2%{1}%-%c, ll=^H^\, infotonKAS, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^Z, ed=^K, clear=^L, cols#80, lines#24, cuf1=^Y, cuu1=^\, ll=^H^\, #ident "@(#)terminfo:hardcopy.ti 1.5" # # HARDCOPY - various hard copy terminals. # # Manufacturer: Generic Hard copy Terminals # Class: I # cdi|cdi1203|, am, cub1=^H, hc, os, cols#80, cr=^M$<200>, cud1=^J, ind=^J, bel=^G, ep48|ep4080|execuport 4080, am, cub1=^H, os, cols#80, hu=\036, hd=\034, cr=^M, cud1=^J, ind=^J, bel=^G, ep40|ep4000|execuport 4000, am, cub1=^H, os, cols#136, hu=\036, hd=\034, cr=^M, cud1=^J, ind=^J, bel=^G, mw2|multiwriter 2, cr=^M, cud1=^J, ind=^J, bel=^G, cols#132, hc, os, terminet1200|terminet300|tn1200|tn300|terminet|ge terminet 1200, cols#120, hc, os, cr=^M, cud1=^J, ind=^J, bel=^G, #ident "@(#)terminfo:hazeltine.ti 1.6" # # -------------------------------- # # hazeltine: HAZELTINE # # Manufacturer: HAZELTINE # Class: II # # Info: # Since cuf1 is blank, when you want to erase something you # are out of luck. You will have to do ^L's a lot to # redraw the screen. h1000 is untested. It doesn't work in # vi - (The code is there but it isn't debugged for this case.) # h1000|hazeltine 1000, cub1=^H, home=^K, clear=^L, cuf1= , cols#80, lines#12, cr=^M, cud1=^J, ind=^J, bel=^G, h1420|hazeltine 1420, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, am, lines#24, cols#80, il1=\E^Z, dl1=\E^S, ed=\E^X, clear=\E\034, cuu1=\E^L, cuf1=^P, el=\E^O, ht=^N, cup=\E^Q%p2%c%p1%' '%+%c, smso=\E\037, rmso=\E^Y, h1500|hazeltine 1500, cr=^M, cud1=^J, ind=^J, bel=^G, il1=~^Z$<40>, hz, am, cub1=^H, ed=~^X$<10>, el=~^O, clear=~^\, cup=~^Q%p2%c%p1%c, cols#80, dl1=~^S$<40>, cud1=~^K, lines#24, cuf1=^P, smso=~^_, rmso=~^Y, cuu1=~^L, # Info: # This is a Fluke special to work around the comm gear # intercepting ^S # s1500|hazeltine 1500 thru comm system that see's ^S , cr=^M, ind=^J, cud1=^J, bel=^G, il1=~^Z$<40>, am, cub1=^H, ed=~^X$<10>, el=~^O, clear=~^\, cup=~^Q%p2%c%p1%c, cols#80, cud1=~^K, hz, lines#24, cuf1=^P, cuu1=~^L, # Info: # h1510 assumed to be in escape mode. Else use h1510t. # h1510|hazeltine 1510 using escape escapes, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\E^Z, am, cub1=^H, ed=\E^X, el=\E^O, clear=\E^\, cup=\E^Q%p2%c%p1%c, cols#80, dl1=\E^S, cud1=\E^K, lines#24, cuf1=^P, .rmso=\E^_, .smso=\E^Y, cuu1=\E^L, h1510t|Hazeltine 1510 with tilde escapes, am, home=~^R, khome=~^R, cuu1=~^L, kcuu1=~^L, cud1=~^K, kcud1=~^K, cub1=\b, bel=^G, cbt=~,  clear=~, cols#80, cr= , cuf1=^P, cup=~^Q%p2%c%p1%c, dl1=~^S$<40>, ed=~^X$<10>, el=~^O, hz, il1=~^Z$<40>, ind=^J, kbs=, kcbt=~, kclr=~, kcub1=\b, kcuf1=^P, kf0=~0\r, kf1=~1\r, kf2=~2\r, kf3=~3\r, kf4=~4\r, kf5=~5\r, kf6=~6\r, kf7=~7\r, kf8=~8\r, kf9=~9\r, ktbc=~.\r, lines#24, rmso=~^Y, sc=~^E, smso=~^_, h1520|hazeltine 1520, cr=^M, cud1=^J, ind=^J, bel=^G, il1=~^Z, am, cub1=^H, ed=~^X, el=~^O, clear=~\034, cup=~^Q%p2%c%p1%c$<1>, cols#80, dl1=~^S, cud1=~^K, hz, lines#24, cuf1=^P, rmso=~^Y, smso=~\037, cuu1=~^L, home=~^R, # Info: # The h1552 has tildes and backprimes and everything! # Be sure the auto lf/cr switch is set to cr. # h1552|hazeltine 1552, cols#80, it#8, lines#24, bel=^G, clear=\EH\EJ, cr=\r, cub1=\b, cud1=\n, cuf1=\EC, cup=\EY%p1%'\s'%+%c%p2%'\s'%+%c, cuu1=\EA, dl1=\EO, ed=\EJ, el=\EK, ht=\t, il1=\EE, ind=\n, kbs=\b, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf1=\EP, kf2=\EQ, kf3=\ER, lf1=blue, lf2=red, lf3=green, ri=\EI, h1552-rv|hazeltine 1552 reverse video, cr=^M, cud1=^J, ind=^J, bel=^G, smso=\ES, rmso=\ET, use=h1552, # Info: # h2000 won't work well because of a clash between upper case # and ~'s. # h2000|hazeltine 2000, cud1=^J, ind=^J, bel=^G, il1=~^z$<6>, am, cub1=^H, clear=~^\$<6>, cup=~^q%p2%c%p1%c, cols#74, dl1=~^s$<6>, home=~^r, lines#27, pad=\177, # Info: # Date: Fri Jul 23 10:27:53 1982 # I tested this termcap entry for the Hazeltine Esprit with vi. It # seems to work ok. There is one problem though if one types a # lot of garbage characters very fast vi seems not able to keep # up and hangs while trying to insert. That's in insert mode # while trying to insert in the middle of a line. It might be # because the Esprit doesn't have insert char and delete char as # a built in function. Vi has to delete to end of line and then # redraw the rest of the line. # esprit|Hazeltine Esprit I, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\E^Z, am, cub1=^H, cbt=\E^T, bw, ed=\E^W, el=\E^O, clear=\E\034, cup=\E^Q%p2%c%p1%c, cols#80, dl1=\E^S, cud1=\E^K, home=\E^R, is2=\E\077, kf0=^B\060\n, kf1=^B\061\n, kf2=^B\062\n, kf3=^B\063\n, kf4=^B\064\n, kf5=^B\065\n, kf6=^B\066\n, kf7=^B\067\n, kf8=^B\070\n, kf9=^B\071\n, kbs=^H, kcud1=\E^K, rmkx=\E\076, khome=\E^R, kcub1=^H, kcuf1=^P, smkx=\E\074, kcuu1=\E^L, lf0=0, lf1=1, lf2=2, lf3=3, lf4=4, lf5=5, lf6=6, lf7=7, lf8=8, lf9=9, lines#24, cuf1=^P, rmso=\E^Y, smso=\E^_, cuu1=\E^L, #ident "@(#)terminfo:hds.ti 1.8" # # -------------------------------- # # concept: (HUMAN DESIGNED SYSTEMS) # # Manufacturer: HUMAN DESIGNED SYSTEMS # Class: III # # Info: # There seem to be a number of different versions of the C108 PROMS # (with bug fixes in its Z-80 program). # # The first one that we had would lock out the keyboard of you # sent lots of short lines (like /usr/dict/words) at 9600 baud. # Try that on your C108 and see if it sends a ^S when you type it. # If so, you have an old version of the PROMs. # # You should configure the C108 to send ^S/^Q before running this. # It is much faster (at 9600 baud) than the c100 because the delays # are not fixed. # new status line display entries for c108-8p: # is3 - init str #3 - setup term for status display - # set programmer mode, select window 2, define window at last # line of memory, set bkgnd stat mesg there, select window 0. # # tsl - to status line - select window 2, home cursor, erase to # end-of-window, 1/2 bright on, goto(line#0, col#?) # # fsl - from status line - 1/2 bright off, select window 0 # # dsl - disable status display - set bkgnd status mesg with # illegal window # # # There are probably more function keys that should be added but # I don't know what they are. # c108|concept108|c108-8p|concept108-8p|concept 108 w/8 pages, is3=\EU\E z"\Ev^A\177 !p\E ;"\E z \Ev ^A\177p\Ep\n, rmcup=\Ev ^A\177p\Ep\r\n, use=c108-4p, c108+acs|alternate charset defns for c108, acsc=l\\qLkTxUmMjE, rmacs=\Ej , smacs=\Ej!, c108-4p-acs|c108-4p w/ acs, use=c108+acs, use=c108-4p, c108-8p-acs|c108-8p w/ acs, use=c108+acs, use=c108-8p, c108-rv-8p-acs|c108-rv-8p w/ acs, use=c108+acs, use=c108-rv-8p, c108-4p|concept108-4p|concept 108 w/4 pages, hs, eslok, dch1=\E\s1$<16*>, tsl=\E z"\E?\E^E\EE\Ea %+ , fsl=\Ee\E z , dsl=\E ;\177, is3=\EU\E z"\Ev\177 !p\E ;"\E z \Ev ^A p\Ep\n, xon, is1=\EK\E!\E F, smcup=\EU\Ev 8p\Ep\r\E^U, rmcup=\Ev ^A p\Ep\r\n, cvvis=\EW, cnorm=\Ew, # Info: # No delays needed on c108 because of ^S/^Q handshaking # pb@, cr=^M, ind=^J, cup=\Ea%p1%?%p1%{95}%>%t^A%{96}%-%;%' '%+%c%p2%?%p2%{95}%>%t^A%{96}%-%;%' '%+%c, use=c100, c108-rv|c108-rv-8p|concept 108 w/8 pages in reverse video, smcup=\EU\Ev 8p\Ep\r, rmcup=\Ev ^B p\Ep\r\n, use=c108-rv-4p, c108-rv-4p|concept108-rv-|concept108rv4p|concept 108 w/4 pages in reverse video, flash=\EK$<50>\Ek, is1=\Ek, smso=\EE, rmso=\Ee, use=c108-4p, c108-rv-4p-acs|c108-rv-4p w/ acs, use=c108+acs, use=c108-rv-4p, c108-na|c108-na-8p|c108-8p-na|concept108-na-|concept108na8p|concept 108 w/8 pages no arrows, kf7=\E;, kf8=\E<, kf9=\E=, smkx@, rmkx@, use=c108-8p, c108-na-acs|c108-na w/ acs, use=c108+acs, use=c108-na, c108-rv-na|c108-rv-na-8p|c108-8p-rv-na|concept 108 8 pages no arrows rev video, kf7=\E;, kf8=\E<, kf9=\E=, smkx@, rmkx@, use=c108-rv-8p, c108-rv-na-acs|c108-na w/ acs, use=c108+acs, use=c108-rv-na, c108-w|c108-w-8p|concept108-w-8|concept108-w8p|concept 108 w/8 pages in wide mode, is1=\E F\E", smcup=\EU\Ev 8^AD\Ep\r, rmcup=\Ev ^A0^AD\Ep\r\n, cols#132, use=c108-8p, c108-w-acs|c108-w w/ acs, use=c108+acs, use=c108-w, # Info: # Concept 100: # These have only window relative cursor addressing, not screen # relative. To get it to work right here, smcup/rmcup (which # were invented for the # concept) lock you into a one page # window for screen style programs. # # To get out of the one page window, we use a clever trick: # we set the window size to zero ("\Ev " in rmcup) which the # terminal recognizes as an error and resets the window to all # of memory. # # This trick works on c100 but does not on c108, sigh. # # Some tty drivers use cr3 for concept, others use nl3, hence # the delays on cr and ind below. This padding is only needed at # 9600 baud. One or the other is commented out depending on # local conventions. # # 2 ms padding on rmcup isn't always enough. 6 works fine. Maybe # less than 6 but more than 2 will work. # # Note: can't use function keys f7-f10 because they are # indistinguishable from arrow keys (!), also, del char and # clear eol use xon/xoff so they probably won't work very well. # # Also note that we don't define insrt/del char/delline/eop/send # because they don't transmit unless we reset them - I figured # it was a bad idea to clobber their definitions. # # The mc5 sequence changes the escape character to ^^ so that # escapes will be passed through to the printer. Only trouble # is that ^^ won't be - ^^ was chosen to be unlikely. # Unfortunately, if you're sending raster bits through to be # plotted, any character you choose will be likely, so we lose. # c100|concept100|concept|c104|c100-4p|hds concept 100, is2=\EU\Ef\E7\E5\E8\El\ENH\E\0\Eo&\0\Eo'\E\Eo!\0\E^G!\E^HA@ , is1=\EK, is3=\Ev $<6>\Ep\n, # cr=^M, ind=^J$<9>, cr=$<9>^M, ind=^J, bel=^G, cud1=^J, clear=\E?\E^E$<2*>, smcup=\EU\Ev 8p\Ep\r\E^U$<16>, rmcup=\Ev $<6>\Ep\r\n, il1=\E^R$<3*>, am, cub1=^H, ed=\E^E$<16*>, el=\E^U$<16>, cup=\Ea%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\E^Q$<16*>, dl1=\E^B$<3*>, rmir=\E\200, eo, smir=\E^P, ip=$<16*>, lines#24, mir, cuf1=\E=, ht=\t$<8>, kbs=^h, ul, cuu1=\E;, smul=\EG, rmul=\Eg, xenl, flash=\Ek$<20>\EK, pb#9600, vt#8, smul=\EG, rmul=\Eg, smso=\ED, rmso=\Ed, dim=\EE, rev=\ED, blink=\EC, prot=\EI, invis=\EH, sgr0=\EN\200, rep=\Er%p1%c%p2%' '%+%c$<.2*>, smkx=\EX, rmkx=\Ex, kcuu1=\E;, kcud1=\E<, kcub1=\E>, kcuf1=\E=, khome=\E?, kf1=\E5, kf2=\E6, kf3=\E7, kf4=\E8, kf5=\E9, kf6=\E:, kich1=\E^P, krmir=\E\0, kdch1=\E^Q, kil1=\E^R, kdl1=\E^B, kel=\E^S, ked=\E^C, kpp=\E., knp=\E-, kind=\E[, kri=\E\\, khts=\E], kctab=\E_, # Info: # \EQ"\EY(^W (send anything from printer to host, for xon/xoff) # cannot be # in is2 because it will hang a c100 with no printer # if sent twice. # mc5=\EQ"\EY(^W\EYD\Eo ^^, mc4=^^o \E\EQ!\EYP^W, c100-rv|c100-rv-4p|c100-rv-4p-pp|concept100-rv|c100 rev video, is1=\Ek, flash=\EK$<20>\Ek, cvvis@, cnorm@, smso=\EE, rmso=\Ee, use=c100, c100-rv-na|c100-rv-4p-na|c100 with no arrows, smkx@, rmkx@, use=c100-rv, oc100|oconcept|c100-1p|old 1 page concept 100, in, is3@, use=c100, # Info: # # ht through el included to specify padding needed in raw mode. # avt-ns|concept avt with status lins disabled, am, eo, mir, ul, xenl, xon, cols#80, it#8, lines#24, lm#192, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J$<38>, cnorm=\E[=119l, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, cvvis=\E[=119h, dch1=\E[P, dim=\E[1!{, dl=\E[%p1%dM$<4*>, dl1=\E[M$<4>, ed=\E[J$<96>, el=\E[K$<6>, home=\E[H, hpa=\E[%p1%{1}%+%dG, ht=\t$<4>, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL$<4*>, il1=\E[L$<4>, ind=\n$<8>, invis=\E8m, ip=$<4>, is1=\E[=103l\E[=205l, is2=\E[1*q\E[2!t\E[7!t\E[=4;101;119;122l\E[=107;118;207h\E)1\E[1Q\EW\E[!y\E[!z\E>\E[0:0:32!r\E[0*w\E[w\E2\r\n\E[2;27!t, kbs=\b, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, kdch1=\E^B\r, ked=\E^D\r, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, khome=\E[H, kich1=\E^A\r, kil1=\E^C\r, ll=\E[24H, mc0=\E[0i, mc4=\E[4i, mc5=\E[5i, pfloc=\E[%p1%d;0u#%p2%s#, pfx=\E[%p1%d;1u#%p2%s#, prot=\E[99m, rc=\E8, rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, ri=\EM$<4>, rmacs=^N$<1>, rmcup=\E[w\E2\r\n, rmir=\E4l, rmkx=\E[!z\E[0;2u, rmso=\E[7!{, rmul=\E[4!{, sc=\E7, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, sgr0=\E[m, smacs=^O$<1>, smcup=\E[=4l\E[1;24w\E2\r, smir=\E1, smkx=\E[1!z\E[0;3u, smso=\E[7m, smul=\E[4m, tbc=\E[2g, vpa=\E[%p1%{1}%+%dd, avt-rv-ns|concept avt in reverse video mode/no status line, is1=\E[=103l\E[=205h, flash=\E[=205l$<50>\E[=205h, use=avt-ns, avt-w-ns|concept avt in 132 column mode/no status line, is1=\E[=103h\E[=205l, smcup=\E[H\E[1;24;1;132w, use=avt-ns, avt-w-rv-ns|concept avt in 132 column mode/no status line, is1=\E[=103h\E[=205h, smcup=\E[H\E[1;24;1;132w, flash=\E[=205l$<50>\E[=205h, use=avt-ns, # Info: # Concept AVT with status line. We get the status line using the # "Background status line" feature of the terminal. We swipe the # first line of memory in window 2 for the status line, keeping # 191 lines of memory and 24 screen lines for regular use. # The first line is used instead of the last so that this works # on both 4 and 8 page AVT's. (Note the lm#191 or 192 - this # assumes an 8 page AVT but lm isn't currently used anywhere.) # avt+s|concept avt status line changes, is3=\E[2w\E[2!w\E[1;1;1;80w\E[H\E[2*w\E[1!w\E2\r\n, tsl=\E[2;1!w\E[;%p1%dH\E[2K, fsl=\E[1;1!w, eslok, hs, dsl=\E[0*w, lm#191, smcup=\E[2;25w\E2\r, rmcup=\E[2w\E2\r\n, .wind=\E[%i%p1%{1}%+%d;%p2%d;%p3%{01}%+%d;%p4%{01}%+%dw, avt|c5|avt-s|conceptavt|concept-avt| avt w/4 or 8 pages/80 columns, use=avt+s, use=avt-ns, avt-rv|avt-s-rv|avt-rv-s|concept avt in reverse video w/status line, is1=\E[=103l\E[=205h, flash=\E[=205l$<50>\E[=205h, use=avt+s, use=avt-ns, avt-w|avt-w-s|concept avt in 132 column mode w/with status line, is1=\E[=103h\E[=205l, smcup=\E[H\E[1;24;1;132w, use=avt+s, use=avt-ns, avt-w-rv|avt-rv-w|avt-w-s-rv|avt-w-rv-s|avt 132 cols w/status line, is1=\E[=103h\E[=205h, smcup=\E[H\E[1;24;1;132w, flash=\E[=205l$<50>\E[=205h, use=avt+s, use=avt-ns, #ident "@(#)terminfo:heath.ti 1.6" # # -------------------------------- # # heath: HEATHKIT and ZENITH # # Manufacturer: HEATHKIT and ZENITH # Class: I h19-a|heath-ansi|heathkit-a|heathkit h19 ansi mode, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\E[1L$<1*>, am, cub1=^H, ed=\E[J, el=\E[K, clear=\E[2J, cup=\E[%i%p1%d;%p2%dH, cols#80, dch1=\E[1P, dl1=\E[1M$<1*>, cud1=\E[1B, rmir=\E[4l, home=\E[H, smir=\E[4h, lines#24, mir, cuf1=\E[1C, smacs=\E[10m, rmacs=\E[11m, msgr, ht=^I, it#8, rmso=\E[0m, smso=\E[7m, cuu1=\E[1A, cvvis=\E[>4h, cnorm=\E[>4l, kbs=^h, kcuu1=\E[1A, kcud1=\E[1B, kcub1=\E[1D, kcuf1=\E[1C, khome=\E[H, kf1=\EOS, kf2=\EOT, kf3=\EOU, kf4=\EOV, kf5=\EOW, lf6=blue, lf7=red, lf8=white, kf6=\EOP, kf7=\EOQ, kf8=\EOR, ri=\EM, is2=\E<\E[>1;2;3;4;5;6;7;8;9l\E[0m\E[11m\E[?7h, h19-bs|heathkit w/keypad shifted, smkx=\Et, rmkx=\Eu, use=h19-b, h19-smul|heathkit w/keypad shifted/underscore cursor, smkx=\Et, rmkx=\Eu, use=h19-u, h19|heath|h19-b|heathkit|heath-19|z19|zenith|heathkit h19, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EL$<1*>, am, cub1=^H, ed=\EJ, el=\EK, clear=\EE, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\EN, dl1=\EM$<1*>, cud1=\EB, rmir=\EO, home=\EH, smir=\E@, lines#24, mir, cuf1=\EC, smacs=\EF, rmacs=\EG, msgr, ht=^I, it#8, ri=\EI, rmso=\Eq, smso=\Ep, cuu1=\EA, cvvis=\Ex4, cnorm=\Ey4, kbs=^h, kcuu1=\EA, kcud1=\EB, kcub1=\ED, kcuf1=\EC, khome=\EH, kf1=\ES, kf2=\ET, kf3=\EU, kf4=\EV, kf5=\EW, lf6=blue, lf7=red, lf8=white, kf6=\EP, kf7=\EQ, kf8=\ER, hs, eslok, tsl=\Ej\Ex5\EY8%p1%' '%+%c\Eo\Eo, fsl=\Ek\Ey5, h19-u|heathkit with underscore cursor, cvvis@, cnorm@, use=h19-b, # Info: # This still doesn't work right - something funny is going on # with return # and linefeed in the reach program. Apparently # cr acts like crlf and lf is ignored. There is a "literal end # of line mode" which works right, but this will cause cr's to # appear in files that are spooled. This description assumes # "normal end of line mode". # reach|h89|h89 running reach, cr@, cud1=\EB, ind=\r\l, is2=\Ey3\Ev, use=h19-b, alto-h19|altoh19|altoheath|alto-heath|alto emulating heathkit h19, lines#60, il1=\EL, dl1=\EM, use=h19, # Info: # The major problem with the Z29 is that it requires more # padding than the Z19. Once again, here's a little termcap # entry for it that will do the trick. # # The problem declaring an H19 to be synonomous with a Z29 is that # it needs more padding. It especially loses if a program attempts # to put the Z29 into insert mode and insert text at 9600 baud. It # even loses worse if the program attempts to insert tabs at 9600 # baud. Adding padding to text that is inserted loses because in # order to make the Z29 not die, one must add so much padding that # whenever the program tries to use insert mode, the effective # rate is about 110 baud. # # What program would want to put the terminal into insert mode # and shove stuff at it at 9600 baud you ask? # # Emacs. Emacs seems to want to do the mathematically optimal # thing in doing a redisplay rather than the practical thing. # When it is about to output a line on top of a line that is # already on the screen, instead of just killing to the end of # the line and outputing the new line, it compares the old line # and the new line and if there are any similarities, it # constructs the new line by deleting the text on the old line # on the terminal that is already there and then inserting new # text into the line to transform it into the new line that is # to be displayed. The Z29 does not act kindly to this. # # But don't cry for too long.... There is a solution. You can make # a termcap entry for the Z29 that says the Z29 has no insert mode. # Then Emacs cannot use it. "Oh, no, but now inserting into a # line will be really slow", you say. Well there is a sort of a # solution to that too. There is an insert character option on # the Z29 that will insert one character. Unfortunately, it # involves putting the terminal into ansi mode, inserting the # character, and changing it back to H19 mode. All this takes 12 # characters. Pretty expensive to insert one character, but it # works. Either Emacs doesn't try to use its inserting hack when # it's only given an insert character ability or the Z29 doesn't # require padding with this (the former is probably more likely, # but I haven't checked it out). # z29|zenith29|z29b|, cr=^M, cud1=^J, ind=^J, bel=^G, is2=\E<\E[?2h\Ev, il1=\EL$<1>, am, cub1=^H, ed=\EJ$<14>, el=\EK$<1>, clear=\EE$<14>, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\EN$<0.1*>, dl1=\EM$<1>, cud1=\EB, home=\EH, ich1=\E<\E[1@\E[?2h$<1>, lines#24, cuf1=\EC, rmacs=\EF, smacs=\EG, ind=\n$<2>, msgr, ht=^I, ri=\EI$<2>, rmso=\Eq, smso=\Ep, cuu1=\E$<1>A, cvvis=\Ex4, cnorm=\Ey4, kbs=^h, kcuu1=\EA, kcud1=\EB, kcub1=\ED, kcuf1=\EC, khome=\EH, kf1=\ES, kf2=\ET, kf3=\EU, kf4=\EV, kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, kf9=\E0I, kf0=\E~, lf0=home, cbt=\E-, smul=\Es8, rmul=\Es0, #ident "@(#)terminfo:homebrew.ti 1.7" # # -------------------------------- # # homebrew: HOME MADE TERMINALS # # Manufacturer: HOME MADE TERMINALS # Class: III # bc|bill croft homebrew, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=^Z, cols#96, home=^^, lines#72, cuf1=^L, cuu1=^K, nucterm|rayterm|nuc|nuc homebrew, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, clear=^L$<1>, lines#24, cols#80, cuf1=^C, cuu1=^N, home=^B, ll=^K, el=^A, ed=^E, carlock|klc|, cr=^M, cud1=^J, ind=^J, bel=^G, il1=^E, am, el=^U, clear=^Z$<100>, cup=\E=%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\177, dl1=^D, rmir=^T, home=^^, smir=^T, lines#24, cuf1=^L, rmso=^V, smso=^V, cuu1=^K, flash=\EV\EV, # Info: # EXIDY # ex3000, cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#80, home=^Q, exidy|exidy2500|exidy sorcerer as dm2500, cr=^M, cud1=^J, ind=^J, bel=^G, il1=^P^J^X, am, cub1=^H, el=^W, clear=^^, cup=^L%p2%'`'%^%c%p1%'`'%^%c, cols#64, dch1=\b, dl1=^P^Z^X, smdc=^P, ed=^X, rmir=^X, home=^B, ich1=^\, smir=^P, lines#30, cuf1=^\, ht=^I, smso=^N, rmso=^X, cuu1=^Z, sexidy|exidy smart, cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#64, clear=^L, home=^Q, cuf1=^S, cuu1=^W, cub1=^H, cub1=^A, kcud1=^S, # Info: # netx and xitex are almost identical, except for the padding # on clear screen. Hmm. # xitex|xitex sct-100, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=^F^E$<2000>, el=^E$<1600>, clear=^L$<400>, cup=\E=%p1%'@'%+%c%p2%'@'%+%c, cols#64, home=^D, lines#16, cuf1=\E+@A, ri=\E=@@^K, cuu1=^K, # NETRONICS netx|netronics|, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=^F^E$<2000>, el=^E$<1600>, clear=^L$<466>, cup=\E=%p1%'@'%+%c%p2%'@'%+%c, cols#64, home=^D, lines#16, cuf1=\E+@A, ri=\E=@@^K, cuu1=^K, smartvid|Netronics Smartvid 80, cr=^M, cud1=^J, ind=^J, bel=^G, smacs=\EG@, am, rmacs=\EGB, cub1=^H, cbt=\EI, bw, ed=\EY, el=\ET, clear=^L, cup=\E=%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\EW, dl1=\ER, cud1=^J, rmir=\ED, eo, home=^Z, ich1=\EQ, smir=\EC, lines#24, ll=^Z^K, msgr, cuf1=^A, rmso=\EG@, xmc#1, smso=\EGC, ri=^K, ht=\Ei, rmcup=^Z^K, rmul=\EG@, cuu1=^K, smul=\EGA, cnorm=^Z^K, xhp, smarterm|smarterm-s|netronics smarterm 80x24 naked terminal, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE, am, cub1=^H, cbt=\EI, ed=\EY, el=\ET, clear=^L, cup=\E=%p1%' '%+%c%p2%' '%+%c$<6>, cols#80, lines#24, dch1=\EW, dl1=\ER, cud1=^J, rmir=\ED, home=^Z, ich1=\EQ, smir=\EC, cuf1=^A, ht=^I, rmul=\EG@, xmc#1, ul, smul=\EGA, ubell|ubellchar|, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ht=^I, el=\Ed, clear=^Z, cup=\E=%p1%' '%+%c%p2%' '%+%c, cols#80, lines#24, cuf1=^L, cuu1=^K, home=^^, ttywilliams, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#12, cub1=^Y, cud1=^K, cuu1=^Z, clear=^^, el=^_, am, home=^], cuf1=^X, #ident "@(#)terminfo:hp.ti 1.13" # # -------------------------------- # # hp: HEWLETT PACKARD # # Manufacturer: HEWLETT PACKARD # Class: I # # Info: # Generic HP terminal - this should (hopefully) work on any HP # terminal. # hp|hewlett-packar|hewlettpackard, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EL, am, cub1=^H, ed=\EJ, el=\EK, hpa=\E&a%p1%dC, clear=\EH\EJ, cup=\E&a%p2%dc%p1%dY$<6>, cols#80, vpa=\E&a%p1%dY, lm#0, da, db, dch1=\EP, dl1=\EM, rmir=\ER, smir=\EQ, kbs=^H, lines#24, mir, cuf1=\EC, ht=^I, rmso=\E&d@, smso=\E&dJ, smul=\E&dD, rmul=\E&d@, cuu1=\EA, xhp, vt#6, kcbt=\Ei, hp110|hewlett-packard model 110 portable, lines#16,use=hp, hp+pfk+cr|hp function keys with CR, kf1=\Ep\r, kf2=\Eq\r, kf3=\Er\r, kf4=\Es\r, kf5=\Et\r, kf6=\Eu\r, kf7=\Ev\r, kf8=\Ew\r, hp+pfk-cr|hp function keys w/o CR, kf1=\Ep, kf2=\Eq, kf3=\Er, kf4=\Es, kf5=\Et, kf6=\Eu, kf7=\Ev, kf8=\Ew, # Info: # The 2621's use the same keys for the arrows and function keys, # but not separate escape sequences. These definitions allow the # user to use those keys as arrow keys rather than as function # keys. # hp+pfk+arrows|hp alternate arrow definitions, khome=\Ep\r, kll=\Eq\r, kind=\Er\r, kri=\Es\r, kcuu1=\Et\r, kcub1=\Eu\r, kcuf1=\Ev\r, kcud1=\Ew\r, kf1@, kf2@, kf3@, kf4@, kf5@, kf6@, kf7@, kf8@, hp+arrows|hp arrow definitions, kcuu1=\EA, kcud1=\EB, kcub1=\ED, kcuf1=\EC, khome=\Eh, kll=\EF, kind=\ES, kri=\ET, # Info: # Generic stuff from the HP 262x series # hp262x, dch1=\EP$<2>, ip=$<2>, rmso=\E&d@, smso=\E&dB, ed=\ED\EJ$<500>\EC, rev=\E&dB, smul=\E&dD, blink=\E&dA, invis=\E&dS, sgr0=\E&d@, rmul=\E&d@, sgr=\E&d%'@'%?%p1%t%'B'%|%;%?%p2%t%'D'%|%;%?%p3%t%'B'%|%;%?%p4%t%'A'%|%;%c, khome=\Eh, kcuu1=\EA, kcub1=\ED, kcuf1=\EC, kcud1=\EB, smkx=\E&s1A, rmkx=\E&s0A, knp=\EU, kpp=\EV, kri=\ET, kind=\ES, kil1=\EL, kdl1=\EM, kich1=\EQ, kdch1=\EP, kel=\EK, ked=\EJ, krmir=\ER, ind=\ES, ht=^I$<2>, xhp, ed=\EJ, # Info: # Note: no "home" on HP's since that homes to top of memory, not # screen. # # The only way to get the arrow keys to transmit anything at all # is to turn on the function key labels (f1-f8) with smkx, and # even then the user has to hold down shift! # # The default 2621 turns off the labels except when it has to to # enable the function keys. If your installation prefers labels # on all the time, or off all the time (at the "expense" of the # function keys) move the # 2621-nl or 2621-wl labels to the # front using reorder. # # Note: there are newer ROM's for 2621's that allow you to set # strap A so the regular arrow keys xmit \EA, etc, as with the # 2645. However, even with this strap set, the terminal stops # xmitting if you reset it, until you unset and reset the strap! # Since there is no way to set/unset the strap with an escape # sequence, we don't use it in the default. # # If you like, you can use 2621-ba (bad arrow keys). # hp2621-ba|2621-ba|2621 w/new rom and strap A set, smkx@, rmkx@, use=hp+arrows, use=hp2621, # Info: # 2621 with function labels. Most of the time they are off, # but inside vi, the function key labels appear. You have to # hold down shift to get them to xmit. # hp2621|hp2621a|hp2621A|2621|2621a|2621A|hp2621-wl|2621-wl|hp 2621 w/labels, is2=\E&jA\r, rmkx=\E&jA, use=hp2621-fl, # Info: # 2621 with function labels. Most of the time they are off, # but inside vi, the function key labels appear. You have to # hold down shift to get them to xmit. # hp2621-fl|2621-fl|hp 2621, is2=\E&j@\r, cbt=\Ei, cup=\E&a%p2%dc%p1%dY, dch1=\EP$<2>, ip=$<2>, pb#19200, smso=\E&dD, rmso=\E&d@, smul=\E&dD, rmul=\E&d@, sgr0=\E&d@, xhp@, use=hp+pfk+cr, smkx=\E&jB, rmkx=\E&j@, ht=^I$<2>, xon, use=hp, # Info: # To use 2621p printer, setenv TERM=2621p, PRINTER=2612p # hp2621p|2621p|2621P|hp 2621 with printer, mc5=\E&p11C, mc4=\E&p13C, use=hp2621, hp2621p-a|2621p-a|hp2621p with fn as arrows, use=hp+pfk+arrows, use=hp2621p, # Info: # hp2621 with k45 keyboard # hp2621-k45|hp2621k45|2621k45|k45|hp 2621 with 45 keyboard, kbs=^H, kcuu1=\EA, kcud1=\EB, kcub1=\ED, kcuf1=\EC, khome=\Eh, smkx=\E&s1A, rmkx=\E&s0A, use=hp2621, # Info: # This terminal should be used at 4800 baud or less. It needs # padding for plain characters at 9600, I guessed at an # appropriate cr delay. # # It really wants ^E/^F handshaking, but that doesn't work well # even if you write software to support it. # 2645|hp2645|hp45|hp 264x series, dim=\E&dH, rev=\E&dB, smul=\E&dD, blink=\E&dA, sgr0=\E&d@, sgr=\E&d%'@'%?%p1%t%'B'%|%;%?%p2%t%'D'%|%;%?%p3%t%'B'%|%;%?%p4%t%'A'%|%;%?%p5%t%'H'%|%;%?%p6%t%'B'%|%;%c, kcuu1=\EA, kcud1=\EB, kcub1=\ED, kcuf1=\EC, khome=\Eh, smkx=\E&s1A, rmkx=\E&s0A, knp=\EU, kpp=\EV, kri=\ET, kind=\ES, kil1=\EL, kdl1=\EM, kich1=\EQ, kdch1=\EP, kel=\EK, ked=\EJ, krmir=\ER, pb#9600, cr=^M$<20>, use=hp, # Info: # Hp 2624 B with 4 or 10 pages of memory. # # Some assumptions are made with this entry. These settings are # NOT set up by the initialization strings. # # Port Configuration # RecvPace=Xon/Xoff # XmitPace=Xon/Xoff # StripNulDel=Yes # # Terminal Configuration # InhHndShk=Yes # InhDC2=Yes # XmitFnctn(A)=No # InhEolWrp=No # # Note: the 2624 DOES have a true "home," believe it or not! # # The 2624 has an "error line" to which messages can be sent. # This is CLOSE to what is expected for a "status line". However, # after a message is sent to the "error line", the next carriage # return is EATEN and the "error line" is turned back off again! # So I guess we can't define hs, eslok, wsl, dsl, fsl, tsl # # This entry supports emacs (and any other program that uses raw # mode) at 4800 baud and less. I couldn't get the padding right # for 9.6. # hp2624|hp2624a|hp2624b|hp2624b-4p|2624-4p|2624|2624a|2624b|Hewlett Packard 2624 B, da, db, lm#96, flash=\E&w13F\200\200\200\200\E&w12F\200\200\200\200\E&w13F\200\200\200\200\E&w12F, use=hp+labels, use=scrhp, # Info: # These attributes are not set above: # # civis, cmdch, cnorm, csr, cub, cud, cuf, cuu, cvvis, dch, dl, # ech, eo, eslok, fsl, gn, hc, hd, hu, hz, ich, ich1, if, il, in, # indn, iprog, is2, is3, it, ka1, ka3, kb2, kc1, kc3, kclr, kf0, # kf10, khts, km, ktbc, lf0, lf1, lf10, lf2, lf3, lf4, lf5, lf6, # lf7, lf8, lf9, mc5p, os, pad, pfkey*, pfloc*, pfx*, prot, rc, # rep, rin, rmcup, rmdc, rmm, rs2, rs3, sc, smcup, smdc, smm, tsl, # uc, ul, vt, wind, wsl, xenl, xmc, xsb, xt # # not needed if tset is used: # if=/usr/lib/tabset/std, # # This 2626 entry does not use any of the fancy windowing stuff # of the 2626. # # Indeed, terminfo does not yet handle such stuff. Since changing # any window clears memory, it is probably not possible to use # this for screen opt. # # ed is incredibly slow most of the time - I am guessing at the # exact padding. Since the terminal uses xoff/xon this is intended # only for cost computation, so that the terminal will prefer el # or even dl1 which is probably faster! # # \ED\EJ\EC hack for ed from Ed Bradford - apparently ed is only # extra slow # on the last line of the window. # # The padding probably should be changed. # hp2626|hp2626a|hp2626p|2626|2626a|2626p|2626A|2626P|hp 2626, ed=\ED\EJ$<500>\EC, ip=$<4>, is2=\E&j@\r, pb#19200, da, db, lm#0, indn=\E&r%p1%dD, rin=\E&r%p1%dU, use=hp+pfk+cr, use=hp+labels, use=scrhp, # Info: # This entry is for sysline. It allocates a 23 line window with # a 115 line workspace for regular use, and a 1 line window for # the status line. # # This assumes port 2 is being used. # Turn off horizontal line, Create ws #1 with 115 lines, # Create ws #2 with 1 line, Create window #1 lines 1-23, # Create window #2 lines 24-24, Attach cursor to workspace #1. # Note that this clears the tabs so it must be done by tset before # it sets the tabs. # hp2626-s|2626-s|hp 2626 using only 23 lines, tsl=\E&w7f2p2I\E&w4f2I\r\EK\E&a%p1%dC, fsl=\E&d@\E&w7f2p1I\E&w4f1I, eslok, hs, is1=\E&q3t0{0H \E&w0f115n1I \E&w0f1n2I \E&w2f1i0d0u22l0S \E&w2f2i0d23u23l0S \E&w7f2p1I \r, lines#23, use=2626, # Info: # Force terminal back to 24 lines after being 23. # hp2626-ns|2626-ns|hp 2626 using all 24 lines, is1=\E&q3t0{0H \E&w0f118n1I \E&w0f1n2I \E&w2f1i0d0u23l0S \E&w3f2I \E&w7f2p1I \r, use=2626, # Info: # Various entries useful for small windows on 2626. # hp2626-12|2626-12, lines#12, use=2626, hp2626-12x40|2626-12x40, cols#40, lines#12, use=2626, hp2626-x40|2626-x40, cols#40, use=2626, hp2626-12-s|2626-12-s, lines#11, use=2626-s, # Info: # You should use this terminal at 4800 baud or less. # hp2648|hp2648a|2648a|2648A|2648|HP 2648a graphics terminal, clear=\EH\EJ$<50>, cup=\E&a%p2%dc%p1%dY$<20>, dch1=\EP$<7>, ip=$<5>, use=2645, # Info: # 2640a doesn't have the Y cursor addressing feature, and C is # memory relative instead of screen relative, as we need. # 2640|hp2640a|2640a|hp 2640a, cup@, smkx@, rmkx@, use=2645, 2640b|hp2640b|2644a|hp2644a|hp 264x series, smkx@, rmkx@, use=2645, # Info: # 2621 using all 48 lines of memory, only 24 visible at any time. # hp2621-48|2621-48|48 line 2621, vpa=\E&a%p1%dR, lines#48, home=\EH, cup=\E&a%p2%dc%p1%dR, use=hp2621, # Info: # 2621 with no labels ever. Also prevents vi delays on escape. # hp2621-nl|2621-nl|hp 2621 with no labels, smkx@, rmkx@, khome@, kcuu1@, kcub1@, kcuf1@, kcud1@, use=hp2621-fl, # Info: # Needed for UCB ARPAVAX console, since lsi-11 expands tabs # (wrong). # hp2621-nt|2621-nt|hp 2621 w/no tabs, ht@, use=hp2621, # Info: # The HP 150 terminal is a fairly vanilla HP terminal, with the # clreol standout problem. It also has graphics capabilities and # a touch screen, which we don't describe here. # hp150|Hewlett Packard Model 150, use=2622, # Info: # Hp 2382a terminals, "the little ones." They don't have any # alternate character set support and sending out ^N/^O will  # leave the screen blank. # hp2382a|hp2382|Hewlett Packard 2382a, da, db, lm#48, lh#1, use=hp+labels, rmacs@, smacs@, acsc@, sgr0=\E&d@, sgr=\E&d%{0}%Pa%?%p4%t%{1}%ga%+%Pa%;%?%p1%p3%|%p6%|%t%{2}%ga%+%Pa%;%?%p2%p6%|%t%{4}%ga%+%Pa%;%?%p1%p5%|%t%{8}%ga%+%Pa%;%?%p7%t%?%ga%ts%ga%'@'%+%e%'S'%;%e%?%ga%t%ga%'@'%+%e%'@'%;%;%c, use=scrhp, hp2621-a|hp2621a-a|2621-a|hp2621 with fn as arrows, use=hp+pfk+arrows, use=hp2621-fl, # Info: # new Hewlett Packard terminals # # This entry supports emacs (and any other program that uses raw # mode) at 4800 baud and less. I couldn't get the padding right # for >=9.6. # newhpkeyboard|generic entry for HP extended keyboard, kbs=^H, kcbt=\Ei, kclr=\EJ, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kdch1=\EP, kdl1=\EM, ked=\EJ, kel=\EK, use=hp+pfk-cr, khome=\Eh, kich1=\EQ, kil1=\EL, kind=\ET, kll=\EF, knp=\EU, kpp=\EV, kri=\ES, krmir=\ER, rmkx=\E&s0A, smkx=\E&s1A, newhp|generic entry for new Hewlett Packard terminals, am, bw, mir, xhp, xon, cols#80, lines#24, pb#4800, acsc=T1R!U2S"W3O#V4P$t5u6w7v8:'9(LQKWlRkT5I3@2[MAJSmFjGdHQ;Y+Z*X:4>q\,x.n/, bel=^G, blink=\E&dA, bold=\E&dF, cbt=\Ei, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, cuu1=\EA, # cub1=\ED, cud1=\EB, dch1=\EP$<2>, dim=\E&dH, dl1=\EM, ed=\EJ, el=\EK, ht=^I$<2>, hts=\E1, il1=\EL, ind=^J, invis=\E&dS, ip=$<2>, is1=\E&jB$<8>, # ind=\ES, nel=^M^J, pfkey=\E&f0a%p1%dk0d%p2%l%dL%p2%s, pfloc=\E&f1a%p1%dk0d%p2%l%dL%p2%s, pfx=\E&f2a%p1%dk0d%p2%l%dL%p2%s, rev=\E&dB, ri=\ET, rmacs=^O, rmir=\ER, rmso=\E&d@, rmul=\E&d@, rs1=\Eg, sgr0=\E&d@^O, # Info: # sgr is figured out as follows: # tparm parameters # 1=standout, 2=underlining, 3=reverse video, 4=blinking, 5=dim, # 6=bold, 7=blank, 8=protection, 9=alternate character set # The protection parameter is ignored. # combination parameters # standout = reverse + half-intensity = 3 | 5. # bold = reverse + underline = 2 | 3. # sgr=\E&d%{0}%Pa%?%p4%t%{1}%ga%+%Pa%;%?%p1%p3%|%p6%|%t%{2}%ga%+%Pa%;%?%p2%p6%|%t%{4}%ga%+%Pa%;%?%p1%p5%|%t%{8}%ga%+%Pa%;%?%p7%t%?%ga%ts%ga%'@'%+%e%'S'%;%e%?%ga%t%ga%'@'%+%e%'@'%;%;%c%?%p9%t^N%e^O%;, smacs=^N, smir=\EQ, smso=\E&dJ, smul=\E&dD, tbc=\E3, use=newhpkeyboard, memhp|memory relative addressing for new HP ttys, vt#6, clear=\EH\EJ$<40>, cub=\E&a-%p1%dC, cud=\E&a+%p1%dR, cuf=\E&a+%p1%dC, cuu=\E&a-%p1%dR, cup=\E&a%p1%dr%p2%dC, mrcup=\E&a%p1%dr%p2%dC, home=\EH, hpa=\E&a%p1%dC, ll=\E&a23R^M, vpa=\E&a%p1%dR, use=newhp, scrhp|screen relative addressing for new HP ttys, clear=\E&a0c0Y\EJ$<40>, cub=\E&a-%p1%dC, cud=\E&a+%p1%dR, cuf=\E&a+%p1%dC, cuu=\E&a-%p1%dR, cup=\E&a%p1%dy%p2%dC$<10>, mrcup=\E&a%p1%dr%p2%dC, home=\E&a0y0C, hpa=\E&a%p1%dC, ll=\E&a0y0C\EA, vpa=\E&a%p1%dY, use=newhp, hp+labels|"standard" label info for new HP ttys, lh#2, lw#8, nlab#8, pln=\E&f2a%p1%dk%p2%l%Pa%?%ga%t%ga%d%e1%;d0L%?%ga%!%t %;%p2%s, smln=\E&jB, hp+printer| "standard" printer info for HP ttys, ff=\E&p4u0C, mc0=\EH&p4dF, mc4=\E&p13C, mc5=\E&p11C, # Info: # The new hp2621b is kind of a cross between the old 2621 and the # new 262x series of machines. It has dip-switched options. # The firmware has a bug in it such that if you give it a null # length label, the following character is eaten! # hp2621b|2621b|hp 2621b with old style keyboard, lm#48, lh#1, lw#8, nlab#8, pln=\E&f0a%p1%dk%p2%l%Pa%?%ga%t%ga%d%e1%;d3L%?%ga%!%t%' '%c%;%p2%s\E%'o'%p1%+%c\r, smln=\E&jB, khome=\Eh, kll=\EF, kri=\ES, kind=\ET, kcuu1=\EA, kcub1=\ED, kcuf1=\EC, kcud1=\EB, use=hp2621, hp2621b-p|2621b-p|hp 2621b with printer, use=hp+printer, use=hp2621b, # Info: # hp2621b - new 2621b's with new extended keyboard # these are closer to the new 26xx series than the other 2621b # hp2621b-kx|2621b-kx|hp 2621b with extended keyboard, use=newhpkeyboard, use=hp2621b, hp2621b-kx-p|2621b-kx-p|hp 2621b with new keyboard & printer, use=hp+printer, use=hp2621b-kx, # Info: # Some assumptions are made in the following entries. # These settings are NOT set up by the initialization strings. # # Port Configuration # RecvPace=Xon/Xoff XmitPace=Xon/Xoff StripNulDel=Yes # # Terminal Configuration # InhHndShk(G)=Yes InhDC2(H)=Yes # XmitFnctn(A)=No InhEolWrp=No # # # Hp 2622a & hp2623a display and graphics terminals # hp2622|hp2622a|2622|2622a|hp 2622, use=hp+pfk+cr, is2=\E&dj@\r, pb#19200, da, db, lm#0, use=hp+labels, use=scrhp, # Info: # The 2623 is a 2622 with extra graphics hardware. # hp2623|hp2623a|2623|2623a|hp 2623, use=hp2622, hp2624b-p|hp2624b-4p-p|Hewlett Packard 2624 B with printer, use=hp+printer, use=hp2624b, # Info: # The Hewlett Packard B can have an optional extra 6 pages of # memory. # hp2624-10p|hp2624a-10p|hp2624b-10p|2624-10p|2624a-10p|2624b-10p|Hewlett Packard 2624 B w/ 10 pages of memory, lm#240, use=hp2624b, hp2624b-10p-p|Hewlett Packard 2624 B w/ extra memory & printer, lm#240, use=hp2624b-p, #ident "@(#)terminfo:lsi.ti 1.5" # # -------------------------------- # # lsi: LEAR SIEGLER (ADM) # # Manufacturer: LEAR SIEGLER # Class: III # adm1a|adm1|lsi adm1a, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=\E;$<1>, cols#80, home=^^, lines#24, cuf1=^L, cuu1=^K, adm2|lsi adm2, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE, am, cub1=^H, ed=\EY, el=\ET, clear=\E;, cup=\E=%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\EW, dl1=\ER, home=^^, ich1=\EQ, kcud1=^J, khome=^^, kcub1=^H, kcuf1=^L, kcuu1=^K, lines#24, cuf1=^L, cuu1=^K, adm3|lsi adm3, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, clear=^Z, lines#24, cols#80, adm3a|3a|lsi adm3a, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=^Z$<1>, cols#80, home=^^, lines#24, cuf1=^L, cuu1=^K, adm3a+|3a+|adm3aplus|lsi adm3a+, kcub1=^H, kcud1=^J, kcuu1=^K, kcuf1=^L, use=adm3a, adm5|lsi adm5, cr=^M, cud1=^J, ind=^J, bel=^G, ed=\EY, el=\ET, cud1=^J, kbs=^H, khome=^^, rmso=\EG, xmc#1, smso=\EG, use=adm3aplus, adm21|lear siegler adm21, cr=^M, cud1=^J, ind=^J, bel=^G, ed=\EY, el=\ET, il1=30*\EE, dl1=30*\ER, ich1=\EQ, dch1=\EW, smul=\EG8, rmul=\EG0, xmc#1, smso=\EG4, rmso=\EG0, kbs=^H, kcub1=^H, kcuf1=^L, kcuu1=^K, kcud1=^J, khome=^^, use=adm3a, # Info: # If the adm31 gives you trouble with standout mode, check the # DIP switch in position 6, bank @c11, 25% from back end of pad. # Should be OFF. # # If there is no such switch, you have an old adm31 and must use # oadm31 # adm31|31|lsi adm31, is2=\Eu\E0, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE, am, cub1=^H, el=\ET, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=\E*, ed=\EY, cols#80, dch1=\EW, dl1=\ER, rmir=\Er, home=^^, smir=\Eq, kf0=^A0\r, kf1=^A1\r, kf2=^A2\r, kf3=^A3\r, kf4=^A4\r, kf5=^A5\r, kf6=^A6\r, kf7=^A7\r, kf8=^A8\r, kf9=^A9\r, kcud1=^J, kcub1=^H, kcuf1=^L, kcuu1=^K, lines#24, mir, cuf1=^L, rmso=\EG0, smso=\EG1, cuu1=^K, smul=\EG1, rmul=\EG0, oadm31|o31|old adm31, smso=\EG4, smul@, rmul@, use=adm31, # Info: # I had an ADM36 at home for a month and setup the following # termcap entry for it. The entry is not fancy (doesn`t set tabs, # doesn't implement Highlighting or reverse video, etc.), but # works well with vi. It uses the terminal in ADM36 mode not the # alternate vt52 emulation mode. # 36|adm36|lsi adm36, el=\E[0K, ed=\E[0J, cup=\E[%i%p1%d;%p2%dH, cuf1=\E[D, cuu1=\E[A, cols#80, lines#24, am, cub1=^H, clear=\E[H\E[2J, il1=\E[1L$<100>, dl1=\E[1M, smir=\E[4h, rmir=\E[4l, mir, kcuu1=\E[A, kcud1=\EB, kcuf1=\EC, kcub1=\ED, is2=\E[6;?7h\E[4;20;?1;?3;?6;?4l\E(B\E)B\E>, adm42|42|lsi adm42, cvvis=\EC\E3 \E3(, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE$<270>, am, cub1=^H, ed=\EY, el=\ET, clear=\E;, cup=\E=%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\EW, dl1=\ER, rmir=\Er, smir=\Eq, ip=$<6*>, lines#24, cbt=\EI, cuf1=^L, rmso=\EG0, smso=\EG4, ht=\t, cuu1=^k, pad=\177, kcud1=^J, kcuf1=^L, kcuu1=^K, kcub1=^H, khome=^^, # Info: # The following termcap for the Lear Siegler ADM-42 leaves the # "system line" at the bottom of the screen blank (for those who # find it distracting otherwise) # adm42-nl|42-nl|lsi adm-42 with no system line, il1=\EE\EF ^I, cbt=\EI\EF ^I, ed=\EY\EF ^I, el=\ET\EF ^I, clear=\E;\EF ^I, cup=\E=%p1%' '%+%c%p2%' '%+%c$<6>\EF ^I, dch1=\EW\EF ^I, dl1=\ER\EF ^I, rmir=\Er\EF ^I, smir=\Eq\EF ^I, use=adm42, #ident "@(#)terminfo:microterm.ti 1.6" # # -------------------------------- # # microterm: MICROTERM # # Manufacturer: MICROTERM # Class: III microterm|act4|microterm act iv, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=^_, el=^^, clear=^L, cup=^T%p1%c%p2%c, cols#80, lines#24, cuf1=^X, cuu1=^Z, home=^], # Info: # The padding on cuf1 for act5 and mime is a guess and not final. # The act5 has hardware tabs, but in cols 8, 16, 24, 32, 41 (!), 49, ... # microterm5|act5|microterm act v, uc=\EA, ri=\EH$<3>, kcuu1=^Z, kcud1=^K, kcub1=^H, kcuf1=^X, use=act4, # Info: # Act V in split screen mode. act5-s is not tested and said not # to work. # Could have been because of the funny tabs - it might work now. # act5-s|act5s|act 5 in split screen mode, smcup=\EP, rmcup=\EQ, lines#48, cols#39, use=act5, # Info: # These mime1 entries refer to the Microterm Mime I or Mime II. # The default mime is assumed to be in enhanced act iv mode. # There is a ^Q in is2 to unwedge any lines that wedge on ^S. # mime|mime1|mime2|mimei|mimeii|microterm mime1, cup=^T%p1%{24}%+%c%p2%?%p2%{32}%>%t%{48}%+%;%{80}%+%c, cols#80, cr=^M, cud1=^J, ind=^J, bel=^G, il1=^A$<80>, am, cub1=^H, ed=^_, el=^^, clear=\035^C, dl1=^W$<80>, ht=^I, lines#24, cuf1=^X, it#8, uc=^U, cuu1=^z, home=\035, cud1=^K, is2=\E^S^Q, kcuu1=^Z, kcud1=^K, kcub1=^H, kcuf1=^X, ri=^R$<3>, vt#9, mime-na|mime with no arrow keys, kcuu1@, kcud1@, kcuf1@, use=mime, mime-3a|mime-adm3a|mime1 emulating adm3a, cols#80, lines#24, bel=^G, clear=^Z$<1>, cr=\r, cub1=\b, cud1=\n, cuf1=\f, cup=\E=%p1%'\s'%+%c%p2%'\s'%+%c, cuu1=^K, home=^^, ind=\n, kcub1=\b, kcud1=^K, kcuf1=^X, kcuu1=^Z, mime-3ax|mime-adm3ax|mime1 emulating enhanced adm3a, il1=^A$<80>, dl1=^W$<80>, ht=^I$<3>, it#8, el=^X, ed=^_, use=mime-3a, # Info: # Mimes using brightness for standout. Half bright is very dim # unless you turn up the brightness so far that lines show up on # the screen. # mime-fb|full bright mime1, smso=^Y, rmso=^S, is2=^S\E^Q, use=mime, mime-hb|half bright mime1, smso=^S, rmso=^Y, is2=^Y\E, use=mime, # Info: # These entries (for mime 2a) put the terminal in low intensity # mode since high intensity mode is so obnoxious. # This is the preferred mode (but ^X can't be used as a kill # character (?)) # mime2a|mime2a-v|microterm mime2a (emulating an enhanced vt52), cr=^M, cud1=^J, ind=^J, bel=^G, il1=^A$<20*>, cub1=^H, ed=\EQ$<20*>, cols#80, el=\EP, clear=\EL, cup=\EY%p1%' '%+%c%p2%' '%+%c, is2=^Y, dch1=^N, dl1=^W$<20*>, ip=$<2>, rmir=^Z, home=\EH, smir=^O, cuu1=\EA, ri=\EA, kcud1=\EB, kcub1=\ED, kcuf1=\EC, kcuu1=\EA, lines#24, cuf1=\EC, ht=^I, it#8, rmso=\E9, smso=\E8, smul=\E4, rmul=\E5, mime2a-s|microterm mime2a (emulating an enhanced soroc iq120), cr=^M, cud1=^J, ind=^J, bel=^G, il1=^A$<20*>, am, cub1=^H, ed=\EJ$<20*>, el=\EK, clear=\EL, cup=\E=%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\ED, dl1=^W$<20*>, kcub1=^H, kcuf1=^L, kcuu1=^K, kcud1=^J, home=^^, is2=\E), ri=\EI, smir=\EE, rmir=^Z, ip=$<2>, lines#24, cuf1=^L, cuu1=\EI, smso=\E:, rmso=\E;, smul=\E6, rmul=\E7, # Info: # Wed Mar 9 18:53:21 1983 # We run our terminals at 2400 Baud, so there might be some timing # problems at higher speeds. # The major improvements in this mod are the terminal now # scrolls down and insert mode works without redrawing the rest # of the line to the right of the cursor. This is done with a # bit of a kludge using the exit graphics mode to get out of # insert, but it does not appear to hurt anything when using # vi at least. If you have some users using act4's with programs # that use curses and graphics mode this could be a problem. # mm3|mime314|mm314|mime 314, am, cub1=^H, ht=^I, ed=^_, el=^^, clear=^L, cup=^T%p1%c%p2%c, cols#80, lines#24, cuf1=^X, cuu1=^Z, home=^], kcud1=^K, kcub1=^H, kcuf1=^X, kcuu1=^Z, il1=^A, dch1=^D, dl1=^W, smir=^S, rmir=^V, # Info: # Fri Aug 5 08:11:57 1983 # this entry works for ergo 4000's with the following setups: # ansi,wraparound,newline disabled, xon/xoff disabled in both # setup a & c # # WARNING!!! There are multiple versions of ERGO 4000 microcode # Be advised that very early versions DO NOT WORK RIGHT !! # Microterm does have a ROM exchange program- use it or lose big # m8|ergo4000|microterm ergo 4000, cr=^M, cud1=^J, ind=^J, bel=^G, ed=\E[0J$<15>, el=\E[0K$<13>, clear=\E[H\E[2J$<80>, cub1=^H, cuf1=\E[C, cuu1=\E[A, cud1=\E[B, cup=\E[%i%p1%d;%p2%dH, cols#80, lines#66, da, db, dch1=\E[1P$<80>, il=\E[1L$<5*>, dl1=\E[1M$<5*>, smir=\E[4h$<6>, rmir=\E[4l, is2=\E<\E=\E[?1l\E[?4l\E[?5l\E[?7h\E[?8h$<300>, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kcud1=\E[B, rmkx=\E=$<4>, kcub1=\E[D, kcuf1=\E[C, smkx=\E=$<4>, kcuu1=\E[A, lf1=pf1, lf2=pf2, lf3=pf3, lf4=pf4, msgr, ht=^I, rmso=\E[0m$<20>, smso=\E[7m$<20>, ri=\EM$<20*>, ind=\ED$<20*>, # # -------------------------------- # @(#)misc.ti 1.4 (1.23 2/15/83) # # misc: MISCELLANEOUS TERMINALS # # This file is for manufacturers with only a few terminals. # They are included alphabetically by manufacturer. Hard copy # terminals, personal computers, special "made up" terminals # and homemade terminals go in separate files. # # AED aed512|aed|AED 512, if=/usr/lib/tabset/aed, cr=^M, cud1=^J, bel=^G, cols#64, lines#40, clear=^L, cub1=^H, cuf1=\Ei0800\001, cnorm=\E\072004=000200??\001, flash=\EK0001??0000K0001202080\001, smso=\E\07200>8000140[80C00\001, rmso=\E[00C80\001, smul=\E\07200>8000140\001, rmul=\E\07200>8000100\001, uc=\Ei???>l0800i0102\001, smcup=\E\07200>8000140{<04<0??00001010L<0\072004=0002??00\001, rmcup=\E\07200>8000100{804<0??00001000L80\072004=000200??\001, ind=\E;1100\072004=000200??;1300\047\200\001\n\E\072004=0002??00;1200\001\n, cuu1=^K, .cup=\E;1300%p1%c%p2%c\001, # AMPEX ampex|d80|dialogue|dialogue80|ampex dialogue 80, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, is2=\EA, ul, smul=\El, rmul=\Em, am, bw, cub1=^H, ht=^I, clear=\E*$<75>, cup=\E=%p1%' '%+%c%p2%' '%+%c, il1=\EE$<5*>, cbt=\EI, ich1=\EQ, dl1=\ER$<5*>, dch1=\EW, el=\Et, ed=\Ey, smso=\Ej, rmso=\Ek, lines#24, cols#80, cuf1=^L, cuu1=^K, # BBN # Extended to include the two differing versions of the terminal # floating about (actually there are more...1.76 works like 1.25, # 2.0 c works like 2.0). Visible bell is a nice addition. bitgraph-ni|bg2.0|bg-ni|bbn bitgraph (no init), cr=^M, cud1=^J, bel=^G, il1=\E[L$<2*>, cub1=^H, ed=\E[J$<150>, el=\E[K$<2>, clear=\E[H\E[J$<150>, cup=%i\E[%p1%d;%p2%dH, cols#85, csr=\E[%i%p1%d;%p2%dr, dl1=\E[M$<2*>, cud1=\E[B, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kcud1=\E[B, rmkx=\E>, kcub1=\E[D, kcuf1=\E[C, smkx=\E=, kcuu1=\E[A, lf1=PF1, lf2=PF2, lf3=PF3, lf4=PF4, lines#64, cuf1=\E[C, ht=^I, rc=\E8, sc=\E7, rmso=\E[0m, smso=\E[7m, cuu1=\E[A, xenl, bitgraph-nv|bg2.0-nv|bg-nv|bbn bitgraph (normal video), is2=\E>\E[?5l\E[?7h, flash=\E[?5h\E[?5l, use=bg-ni, bg|bitgraph|bg2.0-rv|bg-rv|bitgraph-rv|bbn bitgraph (reverse video), is2=\E>\E[?5h\E[?7h, flash=\E[?5l\E[?5h, use=bg-ni, obitgraph|bg1.25|bbn bitgraph terminal, cr=^M, cud1=^J, bel=^G, il1=2*\E[L, cub1=^H, ed=150\E[J, el=2\E[K, clear=150\E[H\E[J, cup=%i\E[%p1%d;%p2%dH, cols#85, dl1=2*\E[M, cud1=\E[B, kf1=\EP, kf2=\EQ, kf3=\ER, kf4=\ES, kcud1=\EB, rmkx=\E>, kcub1=\ED, kcuf1=\EC, smkx=\E=, kcuu1=\EA, lines#64, ll=\E[64;1H, lf1=PF1, lf2=PF2, lf3=PF3, lf4=PF4, cuf1=\E[C, ht=^I, rmso=\E[0m, ind=\n$<280>, smso=\E[7m, cuu1=\E[A, obitgraph-nv|bg1.25-nv|bbn bitgraph (normal video), is2=\E>\E[?5l\E[?7h, flash=\E[?5h\E[?5l, use=bg1.25, obitgraph-rv|bg1.25-rv|bbn bitgraph (reverse video), is2=\E>\E[?5h\E[?7h, flash=\E[?5l\E[?5h, use=bg1.25, # COMPUTER AUTOMATION ca|ca22851|computer automation 22851, cr=^M, cud1=^J, ind=^J, bel=^G, cup=\02%i%p1%c%p2%c, cols#80, lines#24, clear=^L$<8>, am, cub1=\025, cuu1=\026, home=\036, el=\035, ed=\034, cuf1=\011, kcub1=\025, kcuu1=\026, kcud1=\027, khome=\036, # CHROMATICS # Curses was recompiled # in order to accomadate the large amount of definition. # Long strings were put in ti/te. Ti sets up a window that is smaller # than the screen, and puts up a # warning message outside the window. Te erases the warning message, # puts the window back to be the whole screen, and puts the cursor # at just below the small window. cg7900|chromatics|chromatics 7900, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#40, am, clear=^L, cub1=^H, cup=^AM%p2%d\,%p1%d\,, cuf1=\035, cuu1=^K, home=\034, ll=^A|, el=^A`, ed=^Al, il1=^A>2, dl1=^A<2, smir=, rmir=, ich1=^A>1, smdc=, rmdc=, dch1=^A<1, smso=^AC4\,^Ac7\,, rmso=^AC1\,^Ac2\,, uc=^A^A_^A\0, smcup=^AP0^AO1^AR1^AC4\,^Ac0\,^L^AM0\,42\,WARNING\ DOUBLE ENTER ESCAPE and \^U^AC1\,^Ac2\,^AW0\,0\,79\,39\,, rmcup=^AW0\,40\,85\,48\,^L^AW0\,0\,85\,48\,^AM0\,40\,, # CYBERNEX # Cybernex XL-83 terminal has a reverse-scroll capability. "sr" has been added. xl83|cybernex XL-83, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=^P$<62>, el=^O$<3>, clear=^L$<62>, cup=^W%p1%' '%+%c%p2%' '%+%c, cols#80, home=^K, kcud1=^J, kcub1=^H, kcuf1=^I, kcuu1=^N, lines#24, cuu1=^N, cuf1=^I, ri=^N, mdl110|cybernex mdl-110, cup=^P%p1%' '%+%c%p2%' '%+%c, cols#80, lines#24, am, clear=^X$<70>, cub1=^H, cr=^M, cud1=^J, ind=^J, bel=^G, cuf1=^U, cuu1=^Z, home=^Y, el=^N@^V$<145>, ed=^NA^W$<145>, il1=^NA^N^]$<65>, dl1=^NA^N^^$<40>, ich1=^NA^]$<3.5>, smdc=, rmdc=, dch1=^NA^^$<3.5>, smso=^NF, rmso=^NG, ht=\t$<43>, ed=^N@^V$<6>, # DATA GENERAL # The entry below has one or two quirks: in vi you have to use to # advance to the next line instead of just hitting the big NEWLINE # key (which is cursor down to vi). # # One pain with using the dasher on UNIX though is the fact that they use # ^H for home cursor. This causes problems with reading news and help # files on the system that assume ^H is backspace. # # The trouble with this terminal # is that you can't give it a linefeed without # having it add a carriage return. And there isn't any switch # that will turn off auto carriage return on receipt of linefeed. # Is there any way around this? [I used cud1=^Z to try to describe this -mrh] d200|d100|data general dasher 200, am, bel=^G, bw, clear=^L, cols#80, cr=^M, cub1=^Y, cud1=^Z, cuf1=^X, cup=^P%p2%c%p1%c, cuu1=^W, el=^K, home=^H, ind=^J, kcub1=^Y, kcud1=^Z, kcuf1=^X, kcuu1=^W, kf0=^^z, kf1=^^q, kf2=^^r, kf3=^^s, kf4=^^t, kf5=^^u, kf6=^^v, kf7=^^w, kf8=^^x, kf9=^^y, khome=^H, lf0=f10, lines#24, nel=^J, rmso=^^E, rmul=^U, smso=^^D, smul=^T, dg|dg6053|data general 6053, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cup=^P%p2%c%p1%c, clear=^L, home=^H, cuf1=^S, cuu1=^W, el=^K, cols#80, lines#24, # DATAGRAPHIX d132|datagraphix|datagraphix 132a, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#30, clear=^l, home=\Et, da, db, ind=\Ev, ri=\Ew, cuu1=\Ek, cuf1=\El, cvvis=\Ex, cnorm=\Em\En, il1=\E3, ich1=\E5, dch1=\E6, in, ich1=\E5, # DATAPOINT (see also pc) datapoint|dp3|dp3360|datapoint 3360, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=^_, el=^^, clear=^]^_, cols#82, home=^], lines#25, cuf1=^x, cuu1=^z, # DELTA DATA # This is untested. The cup sequence is hairy enough that it probably # needs work. The idea is ctrl(O), dd(row), dd(col), where dd(x) # is x - 2*(x%16) + '9' delta|dd5000|delta data 5000, cud1=^J, ind=^J, bel=^G, am, cub1=^H, clear=^NR, cup=^O%p1%p1%{16}%m%{2}%*%-%'9'%+%c%p2%p2%{16}%m%{2}%*%-%'9'%+%c, cols#80, lines#27, home=^NQ, cuf1=^Y, cuu1=^Z, el=^NU, dch1=^NV, # DIGILOG digilog|333|digilog 333, cub1=^H, cols#80, el=\030, home=^n, lines#16, cuf1=^i, cuu1=^o, cr=^M, cud1=^J, ind=^J, bel=^G, # DIRECT # I think the direct is supposed to be vt100 compatible, so all this # should probably be replaced by a use=vt100, but I can't test it. d800|direct|direct800|direct 800/a, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, am, clear=\E[1;1H\E[2J, cub1=^H, cup=\E[%i%p1%d;%p2%dH, cuf1=\E[C, cuu1=\E[A, el=\E[K, ed=\E[J, smso=\E[7m, rmso=\E[0m, smul=\E[4m, rmul=\E[0m, xhp, cvvis=\E[>12l, cnorm=\E[>12h, ind=\ED, ri=\EM, da, db, smacs=\E[1m, rmacs=\E[0m, msgr, ht=^I, kcub1=\E[D, kcuf1=\E[C, kcuu1=\E[A, kcud1=\E[B, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOT, kf6=\EOU, kf7=\EOV, kf8=\EOW, # ENVISION env230|envision230|envision 230 graphics terminal, mc5=\E[5i, mc4=\E[4i, mc0=\E[0i, xenl@, use=vt100, # FALCO falco|ts1|ts-1|falco ts-1, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, ht=^I, is2=\Eu\E3, il1=\EE, am, el=\ET\EG0^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=\E*, ed=\EY, dch1=\EW, cub1=^H, dl1=\ER, rmir=\Er, smir=\Eq, home=^^, kf0=^A0\r, kcud1=^J, kcub1=^H, kcuf1=^L, kcuu1=^K, cuf1=^L, rmso=\Eg0, smso=\Eg1, cuu1=^K, smul=\Eg1, rmul=\Eg0, # For falcos with the paging option. falco-p|falco tsl-1sp|falco with paging option, cr=^M, cud1=^J, ind=^J, bel=^G, is2=\EZ\E3\E_c, il1=\EE, am, cub1=^H, el=\ET\EG0^H\Eg0, clear=\E*, ed=\EY, cols#80, dch1=\EW, dl1=\ER, kcud1=\E[B, kcub1=\E[D, rmir=\Er, smir=\Eq, ht=^I, db, kcuf1=\E[C, kcuu1=\E[A, lines#24, cuf1=\E[C, rmso=\Eg0, smso=\Eg4, cuu1=\E[A, smul=\Eg1, smcup=\E_d, rmcup=\E_b, rmul=\Eg0, cud1=\E[B, cup=\E=%p1%' '%+%c%p2%' '%+%c, msgr, ul, khome=\E[H, da, mir, cbt=\EI, # FLUKE # The 1720a differences from ANSI: no auto margin, destructive tabs, # # of lines, funny highlighting and underlining f1720|f1720a|fluke 1720A, cr=^M, ind=^J, cud1=^J, bel=^G, is2=\E[;H\E[2J, cols#80, lines#16, cuu1=\E[A, cud1=\E[B, cuf1=\E[C, cub1=^H, cup=\E[%i%2;%2H, ind=\ED, ri=\EM, kcuu1=\034, kcud1=\035, kcuf1=\036, kcub1=\037, smso=\E[7m, rmso=\E[m, xmc#1, smul=\E[4m, rmul=\E[m, el=\E[K, ed=\E[J, xt, clear=\E[;H\E[2J, # INTERTEC # Intertec: I can't tell if these are the same terminal or not. # the cup entries are different. The it2 looks suspiciously like an # an Adds Regent 100, complete with the bug. # Intertec InterTube entry. it|intertube|intertec, cr=^M, ind=^J, cud1=^J, bel=^G, cub1=^H, am, clear=^L, home=^A, cuu1=^Z, cuf1=^F cup=\EY%p1%' '%+%c%p2%' '%+%c$<50>, smso=\E0P, rmso=\E0@, cols#80, lines#25 # The intertube 2 has the "full duplex" problem like the tek 4025: if you # are typing and a command comes in, the keystrokes you type get interspersed # with the command and it messes up. it2|intertube2|intertec data systems intertube 2, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, clear=^L, cols#80, home=^A, lines#25, cuu1=^Z, el=\EK, hpa=^P%p1%{10}%/%{16}%*%p1%{10}%m%+%c, vpa=^K%p1%c, cup=^N%p1%c^P%p1%{10}%/%{16}%*%p1%{10}%m%+%c, cuf1=^F, cud1=\n, ll=^K^X\r, smso=\E0P, rmso=\E0@, superbrain|intertec superbrain, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=\E~k<10*>, el=\E~K$<15>, bw, clear=\f$<5*>, cup=\EY%p1%' '%+%c%p2%' '%+%c$<20>, cols#80, kcud1=^J, kcub1=^U, kcuf1=^F, kcuu1=^K, lines#24, cuf1=^F, ht=^I, rmcup=\f, smcup=\f, cuu1=^k, # LIBERTY # FREEDOM 100 by Liberty Electronics USA, SF. f100|freedom|freedom100, am, bw, mir, msgr, xon, cols#80, lines#24, cr=^M, ind=^J, bel=^G, clear=^Z, home=^^, cud1=^J, cuf1=^L, cuu1=^K, cub1=^H, tbc=\E3, hts=\E1, ht=^I, is2=\Eg\Ef\r\Ed, cup=\E=%p1%' '%+%c%p2%' '%+%c, hpa=\E]%p1%' '%+%c, vpa=\E[%p1%' '%+%c, ri=\Ej, ip=$<6>, il1=\EE$<8.5*>, cbt=\EI, ed=\EY, el=\ET, dch1=\EW, dl1=\ER$<11.5*>, rmir=\Er, smir=\Eq, rmso=\EG0, smso=\EG4, rmul=\EG0, smul=\EG8, rmacs=\E$, smacs=\E%, flash=\Eb$<50>\Ed, kbs=^H, kcub1=^H, kcud1=^V, kcuu1=^K, kcuf1=^L, khome=^^, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, kf0=^AI\r, hs, tsl=\Eg\Ef, fsl=\r, ds=\Eg\Ef\r, f100-rv|freedom-rv|freedom 100 in reverse video, is2=\Eg\Ef\r\Eb, flash=\Ed$<50>\Eb, use=f100, # OMRON omron|omron 8025AG, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EL, am, cub1=^H, ed=\ER, cols#80, el=\EK, clear=\EJ, da, db, dch1=\EP, dl1=\EM, home=\EH, lines#24, cuf1=\EC, rmso=\E4, ind=\ES, smso=\Ef, ri=\ET, cuu1=\EA, cnorm=, cvvis=\EN, # ??? plasma|plasma panel, am, cub1=^H, clear=^L, cols#85, home=^^, lines#45, cuf1=\030, cuu1=\026, cr=^M, cud1=^J, ind=^J, bel=^G, # RAMTEK ramtek|ramtek 6000, cr=^M, cud1=^J, ind=^J, bel=^G, lines#24, cols#78, am, clear=[alpha]\n[erase]\n, cub1=^H, # SOROC soroc|iq120|soroc 120, cr=^M, cud1=^J, ind=^J, bel=^G, ed=\EY, el=\ET, clear=\E*$<2>, kcub1=^H, kcuu1=^K, kcuf1=^L, kcud1=^J, use=adm3a, # Note standout and underline are really sg#1, # but when you backspace up the whole screen does standout # or underline! The solution is to not specify sg#1 and live with it. # iq140 standout and underline are "limited". What we have included here # are reasonable possiblities for these two. Neither are really correct. iq140|soroc 140, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, am, clear=\E+, cub1=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, cuf1=^L, cuu1=^K, home=^^, ll=^^^K, el=\Et, ed=\Ey, il1=\Ee$<1*>, dl1=\Er$<.7*>, smir=\E9, cbt=\EI, rmir=\E8, mir, dch1=\Ew, smso=\E\177, rmso=\E\177, kbs=^H, kcuf1=^L, khome=^^, kcuu1=^K, kf0=^A0\r, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, smul=\E^A, rmul=\E^A, # SOUTHWEST TECHNICAL PRODUCTS swtp|ct82|southwest technical products ct82, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, il1=^\^y, ed=^v, el=^F, clear=^L, cup=^k%p2%c%p1%c, cols#82, lines#20, dl1=^z, cuf1=^s, cuu1=^a, smso=^^^v, rmso=^^^F, dch1=^\^h, ich1=^\^x, home=^p, ind=^n, ri=^o, ll=^c, is2=^\^r^^^s^^^d^]^w^i^s^^^]^^^o^]^w^r^i, # Another new terminal, tested, seems to work fine with vi: synertek|ktm|380|Synertek KTM 3/80 tubeless terminal, am, cub1=^H, cols#80, lines#24, ed=\EJ, el=\EK, clear=^Z, cup=\E=%p1%' '%+%c%p2%' '%+%c, cuu1=^K, cuf1=^L, # TAB # The tab 132 uses xon/xoff, so no padding needed. # smkx/rmkx have nothing to do with arrow keys. # is2 sets 80 col mode, normal video, autowrap on (for am). # Seems to be no way to get rid of status line. tab132|tab|tab 132/15, is2=\E[?7h\E[?3l\E[?5l, smkx@, rmkx@, cr=^M, cud1=^J, ind=^J, bel=^G, lm#96, da, db, il1=\E[L, dl1=\E[M, dch1=\E[P, rmir=\E[4l, smir=\E[4h, cup=\E[%i%p1%d;%p2%dH, kcuu1=\E[A, kcud1=\E[B, kcub1=\E[D, use=vt100, tab132-w, cols#132, is2=\E[?7h\E[?3h\E[?5l, use=tab132, tab132-rv, is2=\E[?7h\E[?3l\E[?5h, use=tab132, tab132-w-rv, is2=\E[?7h\E[?3h\E[?5h, use=tab132-w, # TEC (various terminals labelled "tec" - manufacturers unknown) # tec is untested, and taken from CB/Unix virtual terminal driver. # Upper case terminal, uses lower case for control sequences!!! # The driver shows the C ~ operator used on CM coordinates. tec400|tec scope, cr=^M, cud1=^J, ind=^J, bel=^G, cup=l%p2%~%c%p1%~%c, cuu1=x, cud1=h, cuf1=g, cub1=w, home=i, smso={, rmso=|, xmc#1, clear=f, il1=e, dl1=u, ich1=d, dch1=t, el=c, ed=s, # This entry has been tested. tec500|tec 500, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=^Z$<20>, cols#80, home=^^, lines#24, cuf1=^L, cuu1=^K, smso=^], rmso=^\, tec, lines#24, cols#80, clear=^l, cuu1=^k, cuf1=\037, am, cub1=^H, home=\036, cr=^M, cud1=^J, ind=^J, bel=^G, # TELETEC teletec|tec|teletec datascreen, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cols#80, clear=^l, home=^^, lines#24, cuf1=^_, cuu1=^k, # VOLKER-CRAIG vc404|volker-craig 404, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=^W$<40>, el=^V$<20>, clear=^X$<40>, cup=^P%p1%' '%+%c%p2%' '%+%c, cols#80, home=^Y$<40>, kcud1=^J, kcub1=^H, kcuf1=^U, kcuu1=^Z, lines#24, cuf1=^U, cuu1=^Z, vc404-s|volker-craig 404 w/standout mode, rmso=^O, smso=^N, use=vc404, vc404-na|volker-craig 404 w/no arrow keys, kcuf1@, kcuu1@, use=vc404, vc404-s-na|volker-craig 404 w/standout mode and no arrow keys, rmso=^O, smso=^N, use=vc404-na, vc415|volker-craig 415, clear=^L, use=vc404, # missing in vc303a and vc303 descriptions: they scroll 2 lines at a time # every other linefeed. vc303-a|vc403a|volker-craig 303a, cr=^M, cud1=^J, bel=^G, am, cub1=^H, el=^V$<20>, clear=^X$<40>, cols#80, home=^Y$<40>, kcud1=^J, kcub1=^H, kcuf1=^U, kcuu1=^Z, lines#24, ll=^P^@W, cuf1=^U, cuu1=^Z, vc303|vc103|vc203|volker-craig 303, cr=^M, cud1=^J, bel=^G, am, cub1=^H, clear=^L$<40>, cols#80, home=^K$<40>, kcud1=^J, kcub1=^H, kcuf1=^I, kcuu1=^N, lines#24, ll=^O$<1>W, cuf1=^I, cuu1=^N, # WYSE w1|wy100|100|wyse|wyse 100, cr=^M, cud1=^J, ind=^J, bel=^G, am, is2=\Eu\E0, il1=\EE, cub1=^H, el=\ET, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=\E;, cols#80, dch1=\EW, dl1=\ER, rmir=\Er, smir=\Eq, lines#24, mir, cuf1=^L, ed=\EY, cuu1=^K, cbt=^D, smul=\EG8, rmul=\EG0, rmso=\EG0, smso=\EG4, xmc#1, kf1=^A@^M, kf2=^AA^M, kf3=^AB^M, kf4=^AC^M, kf5=^AD^M, kf6=^AE^M, kf7=^AF^M, kf8=^AG^M, lf1=^AH^M, lf2=^AI^M, lf3=^AJ^M, lf4=^AK^M, lf5=^AL^M, lf6=^AM^M, lf7=^AN^M, lf8=^AO^M, kcub1=^H, kcud1=^J, khome=\E{, kbs=^H, kcuu1=^K, kcuf1=^L, ma=^Kk^Hh^Ll^Jj^^H, hs, i2=\EA30, tsl=\EF, fsl=\004, ds=\EA31, wsl#46 w2|wyse2|Wyse wy-100 no reverse video, cud1=^J, ind=^J, cr=^M, bel=^G, is1=\Eu\E0, il1=\EE, am, el=\ET, cup=\E=%p1%' '%+%c%p2%' '%+%c, ht=5^I, clear=\E*, cols#80, dch1=\EW, dl1=\ER, rmir=\Er, home=^^, smir=\Eq, lines#24, mir, cuf1=^L, rmso=], smso=[, cuu1=^K, kcub1=^H, kcud1=^J, kcuu1=^K, kcuf1=^L, kbs=^U, w3|wyse3|wyse30|Wyse wy-30, use=wyse50, # ZENTEC zen30|z30|zentec 30, cr=^M, cud1=^J, ind=^J, bel=^G, mir, cols#80, lines#24, ul, il1=\EE$<1.5*>, cub1=^H, el=\ET$<1.0*>, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=\E*, home=^^, cuf1=^L, rmso=\EG0, smso=\EG6, cuu1=^K, smir=\Eq, rmir=\Er, am, dch1=\EW, dl1=\ER$<1.5*>, ed=\EY, #ident "@(#)terminfo:pc.ti 1.9" # # PC - Personal Computers and Workstations emulating terminals. # # Manufacturer: PERSONAL COMPUTER TERMINALS # Class: III # # Info: # This category is strange. The typical personal computer offers # a program to emulate a "terminal" without documenting any # escape sequences. # # I don't have any direct personal experience with these, but # my impression is that the terminal emulator emulates an # ultra-dumb terminal, with the cursor cemented to the bottom # line, and no escape sequences. # # Many of the entries below were found in random places with # no indication of who they came from or how. In many cases, I # believe what has happened is that someone wrote their own # terminal emulator program, which understood some control # characters or escape sequences, and made their own entries. # # GENERIC PERSONAL COMPUTER # pc|any personal computer emulating a terminal, am, cols#40, bel=^G, cr=\r, cud1=\n, ind=\n, apple-soroc|apple emulating soroc 120, am, cols#80, lines#24, bel=^G, clear=\E*$<300>, cr=\r, cub1=\b, cud1=\n, cuf1=\f, cup=\E=%p1%'\s'%+%c%p2%'\s'%+%c, cuu1=^K, ed=\EY, el=\ET, home=^^, ind=\n, kcub1=\b, kcud1=\n, kcuf1=\f, kcuu1=^K, # Info: # For those of you with either Programma's Pie or Hayden's Pie, # I'm including a patch for DOS which allows them to function # interactively as a terminal, with data transfer. # # The following termcap entry works only with an Apple ][+ that is # equipped with a Videx 80 collumn card in slot 3. A special # routine must be installed at the apple end to enable scroll # down, here indicated with a ^U. The Videx card must have # inverse char set. # apple|apple-v80|Apple][+ w/Videx80 & custom scroll down, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, cub1=^H$<10>, smacs=^z2, rmacs=^z3, cup=\015\036%r%p1%' '%+%c%p2%' '%+%c$<6>, el=\035$<6>, home=\031$<50>, smso=^z3, rmso=^z2, cuf1=\034, cud1=\012, cuu1=\037, clear=\014$<40*>, xenl, am, ri=\020, ed=\013$<20*>, # Info: # -------------------------------------------------------------- # # Pieterm is written using Lisa 2.5. If any of the opcodes used # are confusing, refer to hex values in the left most column. # # # 1 TTL "PIETERM 1.0 # 2 NLS # 3 ; # 4 ; PIETERM: A program which patches 48k DOS 3.3 to allow # 5 ; Programma Pie, and Hayden Pie to function in # 6 ; a terminal mode. # 7 ; # 8 ; ASSUMES: Videx 80 collumn Videoterm in slot 3. # 9 ; 1200 baud Serial Card in slot 2. # 10 ; DOS 3.3 unmodified at $9D00 (master or slave) # 11 ; # 12 ; TO USE: Either from the Command level of Pie, or in a # 13 ; "HELLO" program, "BRUN PIETERM,A$6000". # 14 ; To enter terminal mode, from the Command level # 15 ; of Pie, enter "TERM" or "TERM ". # 16 ; "TERM" Sends a carriage return before entering terminal # 17 ; mode. Best for reentering csh. # 18 ; "TERM " Sends a ^D character before entering # 19 ; terminal mode. For example, "TERM " should be # 20 ; entered if returning to a cat>filename. # 21 ; # 22 ; RETURN: To return to the command level of Pie from the # 23 ; terminal mode, enter "^@". With an upper case # 24 ; locked keyboard, that is control-shift-P. With # 25 ; and Enhanser II lower case keyboard, that is ^0. # 26 ; # 27 ; SENDING: From the Command level of Pie, indicated by # 28 ; "Command:" (csh indicated by %), enter: # 29 ; # 30 ; Command:TERM # 31 ; % stty -echo;cat>filename;stty echo # 32 ; % ^@ # 33 ; Command:>#2 # 34 ; Command:TERM # 35 ; ^__space # 36 ; # 37 ; RECEIVING: % wc filename # 38 ; 46 123 4567 filename # 39 ; % sleep 20;cat filename # 40 ; ^@ # 41 ; Command:(1,46)<#2 # 42 ; # 43 ; BUGS: Extra linefeeds are sent both ways. A filter program # 44 ; at the UN*X end is required to strip every other \n. # 45 ; Arg "^J" Arg "" ^W^X will globally illiminate them # 46 ; within Pie. # 47 ; # 48 ; Since the Patch program overwrites the INIT portion # 49 ; of DOS, it must be brun every boot. A zap utility # 50 ; may be used to modify DOS directly on the disk. # 51 ; # 52 ; Pie gives no indication of what is going on. This # 53 ; takes a little getting used to. It is possible to # 54 ; get so involved with what you are doing in Pie, that # 55 ; you forget you are logged on. # 56 ; # 57 ; Because of the limitation of Pie's buffer, large # 58 ; file need to be transfered in chunks. # 59 ; # 60 ; -------------------------------- # 61 ; # 62 ; # 0800 63 ; # 06F8 64 NO EQU $6F8 ; address specific to videx # 0638 65 START EQU NO-$C0 ; card in slot 3. See # C080 66 DEV0 EQU $C080  ; reference manual. # C081 67 DEV1 EQU $C081 # 03B8 68 BASEL EQU $478-$C0 # CA2E 69 BASCLC1 EQU $CA2E # 0438 70 BASEH EQU $4F8-$C0 # 0800 71 ; # C0AE 72 STATUS EQU $C0AE ; Serial card specific to # C0AF 73 DATAPORT EQU $C0AF ; slot 2. Adjust as needed. # 0800 74 ; # FDED 75 COUT EQU $FDED ; Stdout # 0800 76 ; # A884 77 PUTNAME EQU $A884 ; DOS patch addresses # A909 78 PUTTOKEN EQU $A909 # 9D1E 79 PUTADR EQU $9D1E # AE8E 80 PUTPATCH EQU $AE8E # 0800 81 ; # 6000 82 ORG $6000 # 6000 83 OBJ $800 # 6000 84 ; # 6000 4C 0B 60 85 JMP MAIN # 6003 86 ; # 6003 54 45 52 87 NAME DCI 'TERM' ; hi-bit off except last # 6006 CD # 6007 40 70 88 TOKEN HEX 4070  ; need-filename optional # 6009 8D AE 89 ADRESS ADR PUTPATCH-1 # 600B 90 ; # 600B 91 MAIN: # 600B A2 04 92 LDX 4 # 600D BD 02 60 93 ^1 LDA NAME-1,X # 6010 9D 83 A8 94 STA PUTNAME-1,X # 6013 CA 95 DEX # 6014 D0 F7 96 BNE <1 # 6016 E8 97 INX # 6017 BD 07 60 98 ^2 LDA TOKEN,X # 601A 9D 09 A9 99 STA PUTTOKEN,X # 601D BD 09 60 100 LDA ADRESS,X # 6020 9D 1E 9D 101 STA PUTADR,X # 6023 CA 102 DEX # 6024 10 F1 103 BPL <2 # 6026 A2 73 104 LDX #ENDPATCH-PATCH+1 # 6028 BD 32 60 105 ^3 LDA PATCH,X # 602B 9D 8E AE 106 STA PUTPATCH,X # 602E CA 107 DEX # 602F 10 F7 108 BPL <3 # 6031 60 109 RTS # 6032 110 ; # 6032 111 PATCH: # 6032 112 PHS PUTPATCH # AE8E 113 ; # AE8E A2 8D 114 LDX #$8D # AE90 AD 04 02 115 LDA INBUFF+4 # AE93 C9 A0 116 CMP #" " # AE95 D0 02 117 BNE >0 # AE97 A2 84 118 LDX #$84 # AE99 8A 119 ^0 TXA # AE9A 4C BD AE 120 JMP SENDIT # AE9D AD AE C0 121 RECEIVE LDA STATUS # AEA0 29 01 122 AND #$01 # AEA2 F0 0C 123 BEQ SEND # AEA4 AD AF C0 124 LDA DATAPORT # AEA7 29 7F 125 AND #$7F # AEA9 C9 10 126  CMP #$10 # AEAB F0 1F 127 BEQ SCROLLD # AEAD 20 ED FD 128 PRINTIT JSR COUT # AEB0 AD 00 C0 129 SEND LDA $C000 # AEB3 10 E8 130 BPL RECEIVE # AEB5 8D 10 C0 131 STA $C010 # AEB8 29 7F 132 AND #$7F # AEBA D0 01 133 BNE SENDIT # AEBC 60 134 RTS # AEBD 48 135 SENDIT PHA # AEBE AD AE C0 136 S0 LDA STATUS # AEC1 29 02 137 AND #$02 # AEC3 F0 F9 138 BEQ S0 # AEC5 68 139 PLA # AEC6 8D AF C0 140 STA DATAPORT # AEC9 4C 9D AE 141 JMP RECEIVE # AECC 38 142 SCROLLD SEC # AECD A2 C3 143 LDX #$C3 ; for slot 3 # AECF AC F8 06 144 LDY NO # AED2 BD 38 06 145 LDA START,X # AED5 E9 05 146 SBC #$05 # AED7 29 7F 147 AND #$7F # AED9 9D 38 06 148 STA START,X # AEDC 20 2E CA 149 JSR BASCLC1 # AEDF A9 0D 150 LDA #$0D # AEE1 99 80 C0 151 STA DEV0,Y # AEE4 BD B8 03 152 LDA BASEL,X # AEE7 99 81 C0 153 STA DEV1,Y # AEEA A9 0C 154 LDA #$0C # AEEC 99 80 C0 155 STA DEV0,Y # AEEF BD 38 04 156 LDA BASEH,X # AEF2 99 81 C0 157 STA DEV1,Y # AEF5 A9 19 158 LDA #$19 ; home cursor # AEF7 20 ED FD 159 JSR COUT # AEFA A9 1D 160 LDA #$1D ; ceol # AEFC 20 ED FD 161 JSR COUT # AEFF 4C 9D AE 162 JMP RECEIVE # AF02 163 ; # AF02 164 DPH # 60A6 165 ORG $6000+*-$800 # 60A6 166 OBJ * # 60A6 167 ; # 60A6 168 ENDPATCH: # 60A6 169 END # ATT # # Info: # The official PC terminal emulator program of the AT&T Product # Centers. # # Note - insert mode commented out - doesn't seem to work on # AT&T PC. # simterm|attpc running simterm, am, cols#80, lines#24, bel=^G, clear=\EH\EJ, cr=\r, cub1=\b, cud1=\EB, cuf1=\EC, cup=\E=%p1%' '%+%c%p2%' '%+%c, cuu1=\EA, dch1=\ER, dl1=\EM, ed=\EJ, el=\EK, home=\EH, il1=\EL, ind=\n, rmcup=\EVE, .rmir=\EE, .rmso=\E&d@, smcup=\EVS, smir=\EQ, smso=\E&dB, # Info: # vic20|vic|vic Personal Computer, cr=^M, cud1=^J, ind=^J, bel=^G, am, clear=^K^L, home=^L, lines#20, cuu1=^^, cuf1=^\, cols#22, # Info: # (Dan Ingold) # # Following is a TERMCAP entry for the Datapoint UNITRM18 # asynchronous terminal emulation program. It has only been # tested out at 1200 baud, however, so I don't know if the # delays are correct. # # [what is control "="? keys send different codes from functions? - mrh] # unitrm18|datapoint 'UNITRM18' terminal emulator, cr=^M, ind=^J, cud1=^J, bel=^G, am, cub1=^y, ed=^?, el=^>, clear=^=^?$<12.5>, cols#80, cud1=^k, home=^=, kcuu1=^x, kcud1=^r, kcub1=^t, kcuf1=^v, lines#24, cuf1=^x, cuu1=^z, # Info: # FLORIDA COMPUTER GRAPHICS # Florida Computer Graphics Beacon System, using terminal emulator # program "host.com", as provided by FCG. Entry provided by # David Bryant (cbosg!djb) 1/7/83. # This description is for an early release of the "host" program. # Known bug: ed clears the whole screen, so it's commented out. # beacon|FCG Beacon System, cr=^M, cud1=^J, ind=^J, cols#80, lines#32, clear=\EZ$<10>, cub1=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c$<20>, cuf1=\EV, cuu1=\EU, el=\ET, .ed=\EY, dch1=\EW, ich1=\EQ, dl1=\ER, il1=\EE, smcup=\ESTART^M\E2\0540^M\E12^M\EEND^M$<10>, bel=\ESTART^M\E37^M\EEND^M$<1>, home=\EH$<10>, am, da, db, rev=\ESTART^M\E59\0541^M\EEND^M, smso=\ESTART^M\E70\0546^M\EEND^M$<20>, rmso=\ESTART^M\E70\0540^M\EEND^M$<20>, smul=\ESTART^M\E60\0541^M\EEND^M, rmul=\ESTART^M\E60\0540^M\EEND^M, blink=\ESTART^M\E61\0541^M\EEND^M, sgr0=\ESTART^M\E78^M\E70\0540^M\EEND^M$<20>, # Info: # This doesn't work because the cursor position isn't saved # with the window. # beacon-s|FCG Beacon System with status line, lines#31, eslok, hs, tsl=\ESTART^M\E45\0541^M\E41\054%p1%d\0541^M\EEND^M$<10>, fsl=\ESTART^M\E45\0540^M\EEND^M$<10>, is2=\ESTART^M\E45\0540^M\E65\05431^M\E66\05445^M\E45\0541^M\E65\0541^M\E66\0541^M\E45\0540^M\EEND^M$<30>, use=beacon, # Info: # Here is the xtalk termcap. I mostly use the terminfo (curses) # version myself since I am working at BTL where they have a # certain bias. I am sending the terminfo version too, so that # you can compare them if there are any undiscovered glitches # in the termcap version due to insufficient testing. # # First the termcap version -- # # d0|vt100|vt100-am|vt100|dec vt100:\ # :cr=^M:do=^J:nl=^J:bl=^G:co#80:li#24:cl=50\E[;H\E[2J:\ # :le=^H:bs:am:cm=5\E[i2252;787036H:nd=2\E[C:up=2\E[A:\ # :ce=3\E[K:cd=50\E[J:so=2\E[7m:se=2\E[m:us=2\E[4m:ue=2\E[m:\ # :md=2\E[1m:mr=2\E[7m:mb=2\E[5m:me=2\E[m:is=\E[1;24r\E[24;1H:\ # :rs=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:ks=\E[?1h\E=:ke=\E[?1l\E>:\ # :rf=/usr/lib/tabset/vt100:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:kb=^H:\ # :ho=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:ta=^I:pt:sr=5\EM:vt#3:xn:\ # :sc=\E7:rc=\E8:cs=\E[i2252;787036r: # d1|xtalk|IBM PC with xtalk:\ # :sc@:rc@:cs@:am@:xn@:al=99\E[L:dl=99\E[M:tc=vt100-am: # # The problem is in the "xtalk" entry. The "am" auto-margin # flag should not be turned off as shown above. The following # is the corrected "xtalk" entry. # # d1|xtalk|IBM PC with xtalk:\ # :sc@:rc@:cs@:xn@:al=99\E[L:dl=99\E[M:tc=vt100-am: # # This is the shell script that I execute from my profile when I # login from xtalk -- # # # set auto margins # echo '\033[?7h\c' # #set up tab stops # stty -tabs # echo '\033[3g' # for i in 1 2 3 4 5 6 7 8 9 # do # echo ' \033H\c' # done # stty tabs # echo # # # Now the terminfo version (This is the input to the 'tic' # compiler) -- # # Vanilla vt100 definitions. # vt100|vt100-am|dec vt100, # cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, it#8, # clear=\E[H\E[2J$<50>, cub1=^H, am, cup=\E[ip12252;p2787036H$<5>, # cuf1=\E[C$<2>, cuu1=\E[A$<2>, el=\E[K$<3>, ed=\E[J$<50>, # cud=\E[p12252B, cuu=\E[p1787036A, cub=\E[p1787088D, cuf=\E[p1787036C,  # smso=\E[7m$<2>, rmso=\E[m$<2>, smul=\E[4m$<2>, rmul=\E[m$<2>, # bold=\E[1m$<2>, rev=\E[7m$<2>, blink=\E[5m$<2>, sgr0=\E[m$<2>, # sgr=\E[?p1t;7;?p2t;4;?p3t;7;?p4t;5;?p6t;1;m, # rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, smkx=\E[?1h\E=, rmkx=\E[?1l\E>, # tbc=\E[3g, hts=\EH, home=\E[H, # kcuu1=\EOA, kcud1=\EOB, kcuf1=\EOC, kcub1=\EOD, kbs=^H, # kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, ht=^I, ri=\EM$<5>, # vt#3, xenl, xon, sc=\E7, rc=\E8, csr=\E[ip12252;p2787036r, # # # ibm xtalk terminal simulator -- similar to but dumber than # vanilla vt100 # Enjoy! # Rick Thomas # ihnp4!btlunix!rbt # (201)-522-6062 # # PS -- I just got word that there is a new revision of xtalk # (3.5 I think they said) that is supposed to fix the vt100 # emulation problems. # xtalk|IBM PC with xtalk communication program, am, mir, msgr, xon, cols#80, it#8, lines#24, vt#3, xmc#1, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, clear=\E[H\E[J$<50>, cr=\r, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C$<2>, cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, cuu1=\E[A$<2>, dl1=\E[M$<99>, ed=\E[J$<50>, el=\E[K$<3>, el1=\E[1K$<3>, enacs=\E(B\E)0, home=\E[H, ht=\t, hts=\EH, il1=\E[L$<99>, ind=\n, ka1=\EOq, ka3=\EOs, kb2=\EOr, kbs=\b, kc1=\EOp, kc3=\EOn, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kent=\EOM, kf0=\EOy, kf1=\EOP, kf10=\EOx, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOt, kf6=\EOu, kf7=\EOv, kf8=\EOl, kf9=\EOw, ri=\EM$<5>, rmacs=^O, rmkx=\E[?1l\E>, rmso=\E[m\s, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, smacs=^N, smkx=\E[?1h\E=, smso=\E[7m\s, tbc=\E[3g, # # Info: # \EI gets you out of inverse video mode. # # Info: # IBM # Thu May 5 19:35:27 1983 # ibmpc|ibm-pc|ibm5051|5051|IBM Personal Computer, cud1=^J, ind=^J$<10>, bel=^G, smir=\200R, am, cub1=^], kcud1=^_, clear=^L^K, cr=^M^^, home=^K, lines#24, cuu1=^^, cuf1=^\, cols#80, # Info: # According to the Coherent 2.3 manual, the PC console is similar # to a z19. The differences seem to be (1) 25 lines, (2) no status # line, (3) standout is broken, (4) ins/del line is broken, (5) # has blinking and bold. # pc-coherent|pcz19|coherent|IBM PC console running Coherent, cr=^M, cud1=^J, ind=^J, bel=^G, .il1=\EL$<1*>, am, cub1=^H, ed=\EJ, el=\EK, clear=\EE, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\EN, .dl1=\EM$<1*>, cud1=\EB, rmir=\EO, home=\EH, smir=\E@, lines#25, mir, cuf1=\EC, ht=^I, it#8, ri=\EI, rmso=\Eq, smso=\Ep, cuu1=\EA, kbs=^h, kcuu1=\EA, kcud1=\EB, kcub1=\ED, kcuf1=\EC, khome=\EH, # Info: # According to the Venix 1.1 manual, the PC console is similar # to a DEC vt52. Differences seem to be (1) arrow keys send # different strings, (2) enhanced standout, (3) added # insert/delete line. # # Note in particular that it doesn't have automatic margins (ick). # There are other keys (f1-f10, pgup, pgdn, backtab, insch,delch) # which I don't have time to add now. # pc-venix|venix|IBM PC console running Venix, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=\EJ, el=\EK, clear=\EH\EJ, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, lines#25, cuf1=\EC, ht=^I, it#8, ri=\EI, cuu1=\EA, kcuu1=\EH, kcud1=\EP, kcuf1=\EM, kcub1=\EK, kbs=^H, il1=\EL, dl1=\EM, khome=\EG, ibm|ibm3101|3101|i3101|IBM 3101-10, am, cols#80, lines#24, bel=^G, clear=\EK, cr=\r, cub1=\b, cud1=\n, cuf1=\EC, cup=\EY%p1%'\s'%+%c%p2%'\s'%+%c, cuu1=\EA, ed=\EJ, el=\EI, home=\EH, ht=\t, if=/usr/lib/tabset/3101, ind=\n, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, ibm-system1|system1|ibm system/1 computer, ind=^J, bel=^G, xt, am, cub1=^H, cup=^E%p1%' '%+%c%p2%' '%+%c, clear=^Z, cols#80, home=^K, lines#24, cuf1=^\, cuu1=^^, megatek|Pegasus Work Station Terminal Emulator, cols#83, lines#60, os, am, # Info: # sol and Microkit are for Corey - 6/11/82 - NS # microkit|mkt|microkit terminal computer, cr=^M, ind=^J, cud1=^J, bel=^G, il1=\El, am, cub1=^H, ed=\Ej, el=\Ek, clear=\Ee, cup=\Ey%p1%' '%+%c%p2%' '%+%c, cols#40, dch1=\En, dl1=\Em, rmir=\Eo, home=\Eh, smir=\E@, lines#23, mir, cuf1=\Ec, cuu1=\Ea, ht=^I, cvvis=^N^Lzv, cnorm=\Ex, kcuu1=\Eu, kcud1=\Ed, kcub1=\El, kcuf1=\Er, khome=\Eh, xenl, # Info: # OSBORNE # Thu Jul 7 03:55:16 1983 # # As an aside, be careful; it may sound like an anomaly on the # Osborne, but with the 80-column upgrade, it's too easy to # enter lines >80 columns! # # I've already had several comments... # The Osborne-1 with the 80-col option is capable of being # 52,80, or 104 characters wide; default to 80 for compatibility # with most systems. # # The tab is destructive on the Ozzie; make sure to 'stty -tabs'. # ozzie|osborne|osborne1|osborne 1, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE, cub1=^H, el=\ET, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=^Z, cols#104, dch1=\EW, dl1=\ER, kcuu1=^K, kcud1=^J, kcub1=^H, kcuf1=^L, cud1=^J, cuf1=^L, ich1=\EQ, lines#24, cuu1=^K, msgr, smso=\E), rmso=\E(, ul, smul=\El, rmul=\Em, xt, # Info: # SOL # I don't know which, if either, of these sol's to believe. # ^S is an arrow key! # sol|sol1|, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cup=\E^1%p1%c\E^2%p2%c, clear=^K, home=^N, cols#64, lines#16, cuf1=^S, cuu1=^W, kcub1=^A, kcuf1=^S, kcuu1=^W, kcud1=^Z, # Info: # sol and Microkit are for Corey - 6/11/82 - NS # sol2|sol terminal computer, cr=^M, ind=^J$<20>, cud1=^J, bel=^G, il1=20\EL, am, cub1=^H, ed=20\EJ, el=\EK, clear=20\EE, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#64, dch1=\EN, dl1=20\EM, rmir=\EO, home=\EH, smir=\E@, lines#16, mir, cuf1=\EC, cuu1=\EA, ht=^I, cvvis=^N^Lv, cnorm=\EX, kcuu1=\EU, kcud1=\ED, kcub1=\EL, kcuf1=\ER, khome=\EH, xenl, # Info: # SUN # smcup/rmcup control # lines scrolled on linefeed. The sun 2 # seems to handle this well with it set to 1, so both force this. # rmcup could use 0 or 3 just as well, I suppose. # sun|sun1|sun2|sun microsystems inc workstation, cr=^M, cud1=\E[B, ind=^J, bel=^G, am, km, cub1=^H, clear=^L, lines#34, cols#80, cup=\E[%i%p1%d;%p2%dH, cuf1=\E[C, cuu1=\E[A, el=\E[K, ed=\E[J, smcup=\E[1r, rmcup=\E[1r, kcud1=\E[B, kcub1=\E[D, kcuu1=\E[A, kcuf1=\E[C, khome=\E[H, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, ht=^I, il1=\E[L, dl1=\E[M, smso=\E[7m, rmso=\E[m, msgr, ich1=\E[@, mir, dch1=\E[P, terak|Terak emulating Datamedia 1520, am, xenl, cols#80, lines#24, bel=^G, clear=\f, cr=\r, cub1=\b, cud1=\n, cuf1=^\, cup=^^%p2%'\s'%+%c%p1%'\s'%+%c, cuu1=^_, ed=^K, el=^], home=^Y, ht=\t, ind=\n, kcub1=\b, kcud1=\n, kcuf1=^\, kcuu1=^_, khome=^Y, trs80|trs-80|trs80-1|Radio Shack TRS-80 model I, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cols#64, lines#16, # Info: # trs16|trs80-16|trs-80 model 16 console, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EL, am, cub1=^H, ed=\EJ, el=\EK, clear=^L, cup=\EY%p1%' '%+%c%p2%' '%+%c, cuu1=\EA, cols#80, dch1=\EQ, dl1=\EM, cud1=\EB, ich1=\EP, home=\EH, kbs=^H, kcud1=\EB, kcub1=\ED, kcuf1=\EC, kcuu1=\EA, kf0=^A, kf1=^B, lines#24, cuf1=\EC, ht=^I, rmso=\ER@, xmc#0, smso=\ERD, kf2=^D, kf3=^L, kf4=^U, kf5=^P, kf6=^N, kf7=^S, # Info: # Radio Shack model 100 running standard TELCOM Rom program # hacking by Yerazuws@RPI, Bownesrm@RPI 1/8/84 # tested at 300 baud (foneline), remember to set the 100's RS-232 # to ignore parity (eg. config to 37I1N) if you want to # run Emacs (which this termcap description will, quite nicely!) # # From: jgc@sunrise.UUCP Mon, 11-Jul-83 17:33:49 EDT # esc A - cursor up # esc B - cursor down # esc C - cursor right # esc D - cursor left # esc E - clear screen and home cursor # esc H - home cursor # esc J - erase to end of screen # esc K - erase to end of line # esc L - insert line # esc M - delete line # esc P - turn on cursor # esc Q - turn off cursor # esc T - sets system line (?) # esc U - resets system line (?) # esc V - turn off LCD (?) # esc W - turn on LCD (?) # esc Y row column - cursor motion (:cm=\EY%+ %+ :) # esc j - clear screen, don't move cursor # esc l - erase line, don't move cursor # esc p - begin reverse video # esc q - end reverse video # esc del - change char under cursor to space # trs80-100|trs100|trs-100|MZ|m-100|m100| Radio Shack Model 100, cr=^M, cud1=^J, ind=^J, bel=^G, ed=\EJ, el=\EK, cub1=^H, am, dl1=\EM, il1=\EL, cuu1=\EA, cuf1=\EC, cup=\EY%p1%' '%+%c%p2%' '%+%c, lines#8, cols#40, smso=\Ep, rmso=\Eq, kcuu1=^^, kcud1=^_, kcub1=^], kcuf1=^\, kbs=^H, home=\EH, clear=\EE, xt, civis=\EQ, cnorm=\EP, # XEROX x820|Xerox 820, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=1^Z, ed=^Q, el=^X, cols#80, home=^^, lines#24, cuf1=^L, cuu1=^K, #ident "@(#)terminfo:perkinelmer.ti 1.7" # # -------------------------------- # # perkinelmer: PERKIN ELMER # # Manufacturer: PERKIN ELMER # Class: II # # Following this message is a copy of our TERMINFO file for # Perkin-Elmer terminals. Please be aware that we are in the # process of revising it and will supply you a new version as # soon as its ready. In the mean time, though, this should get # you started. # # # perkinelmer: PERKIN ELMER # bantam|pe550|pe6100|perkin elmer 550, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, cols#80, el=\EI$<20>, clear=\EK$<20>, cup=\EX%p1%' '%+%c\EY%p2%' '%+%c, home=\EH, lines#24, ll=\EH\EA, cuf1=\EC, cuu1=\EA, fox|pe1100|perkin elmer 1100, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, ed=\EJ$<5.5*>, el=\EI, clear=\EH\EJ$<132>, cols#80, home=\EH, lines#24, ll=\EH\EA, cuf1=\EC, cup=\EX%p1%' '%+%c\EY%p2%' '%+%c, cuu1=\EA, flash=^P^B^P^C, owl|pe1200|perkin elmer 1200, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EL$<5.5*>, am, cub1=^H, ed=\EJ$<5.5*>, el=\EI$<5.5>, clear=\EH\EJ$<132>, home=\EH, ll=\EH\EA, cup=\EX%p1%' '%+%c\EY%p2%' '%+%c, cols#80, dch1=\EO$<5.5*>, dl1=\EM$<5.5*>, ich1=\EN, ip=$<5.5*>, kbs=^h, in, lines#24, cuf1=\EC, cuu1=\EA, rmso=\E!\200, smso=\E!^H, flash=^P^B^P^C, kf1=\ERA, kf2=\ERB, kf3=\ERC, kf4=\ERD, kf5=\ERE, kf6=\ERF, kf7=\ERG, kf8=\ERH, kf9=\ERI, kf0=\ERJ, pe1251|pe6300|pe6312|perkin elmer 1251, am, cols#80, it#8, lines#24, xmc#1, pb#300, vt#8, bel=^G, cr=^M, clear=\EK$<332>, el=\EI$<10*>, ed=\EJ$<20*>, cud1=\EB, home=\EH, cub1=\ED, cuf1=\EC, cuu1=\EA, cup=\EX%p1%' '%+%c\EY%p2%' '%+%c, ind=^J, hts=\E1, kf0=\ERA, kf1=\ERB, kf2=\ERC, kf3=\ERD, kf4=\ERE, kf5=\ERF, kf6=\ERG, kf7=\ERH, kf8=\ERI, kf9=\ERJ, kf10=\ERK, tbc=\E3, pe7000m|perkin elmer 7000 series monochrome monitor, am, cols#80, lines#24, bel=^G, cr=^M, clear=\EK, el=\EI, ed=\EJ, cud1=\EB, home=\EH, cub1=\ED, cuf1=\EC, cuu1=\EA, cup=\ES%p1%' '%+%c%p2%' '%+%c,ind=^J, is1=\E!\0\EW 7o\Egf\ES7 , smso=\E!\010, rmso=\E!\0, cbt=\E!Y, kf0=\E!\0, kf1=\E!\001, kf2=\E!\002, kf3=\E!\003, kf4=\E!\004, kf5=\E!\005, kf6=\E!\006, kf7=\E!\007, kf8=\E!\010, kf9=\E!\011, kf10=\E!\012, kbs=^H, kcud1=\E!U, khome=\E!S, kcub1=\E!V, kcuf1=\E!W, kcuu1=\E!T, ll=\ES7 , ri=\ER, rmul=\E!\0, smul=\E!\040, pe7000c|perkin elmer 7000 series colour monitor, am, cols#80, lines#24, bel=^G, cr=^M, clear=\EK, el=\EI, ed=\EJ, cud1=\EB, home=\EH, cub1=\ED, cuf1=\EC, cuu1=\EA, cup=\ES%p1%' '%+%c%p2%' '%+%c,ind=^J, is1=\E!\0\EW 7o\Egf\Eb0\Ec7\ES7 , smso=\Eb2, rmso=\Eb0, cbt=\E!Y, kf0=\E!\0, kf1=\E!\001, kf2=\E!\002, kf3=\E!\003, kf4=\E!\004, kf5=\E!\005, kf6=\E!\006, kf7=\E!\007, kf8=\E!\010, kf9=\E!\011, kf10=\E!\012, kbs=^H, kcud1=\E!U, khome=\E!S, kcub1=\E!V, kcuf1=\E!W, kcuu1=\E!T, ll=\ES7 , ri=\ER, rmul=\E!\0, smul=\E!\040, #ident "@(#)terminfo:print.ti 1.6" # # -------------------------------- # # print: PRINTERS # # Manufacturer: GENERIC LINE PRINTERS # Class: III # # Info: # Generic line printer. We assume it can backspace, since even # those line printers that can't have this hidden by UNIX lpr # driver. # lpr|lp|printer|print|printing|line printer,  cr=^M, cud1=^J, ind=^J, ff=^L, bel=^G, cub1=^H, lines#66, cols#132, hc, os, # Info: # The 'S' beginning mc4 and mc5 is checked for by lp, which # sleeps 5 seconds. # pbox|printerbox|box with print mode switch, mc5=Set printer switch to "print"\r\n, mc4=Set printer switch to "terminal"\r\n, 2621-pb|hp2621-pb|2621 with printer box, am, da, db, mir, xon, cols#80, lines#24, lm#0, pb#19200, vt#6, bel=^G, cbt=\Ei, clear=\EH\EJ, cr=\r, cub1=\b, cud1=\n, cuf1=\EC, cup=\E&a%p2%dc%p1%dY, cuu1=\EA, dch1=\EP$<2>, dl1=\EM, ed=\EJ, el=\EK, hpa=\E&a%p1%dC, ht=\t$<2>, hts=\E1, il1=\EL, ind=\n, ip=$<2>, is2=\E&jA\r, kbs=\b, kcbt=\Ei, kf1=\Ep\r, kf2=\Eq\r, kf3=\Er\r, kf4=\Es\r, kf5=\Et\r, kf6=\Eu\r, kf7=\Ev\r, kf8=\Ew\r, mc4=Set\sprinter\sswitch\sto\s"terminal"\r\n, mc5=Set\sprinter\sswitch\sto\s"print"\r\n, rmir=\ER, rmkx=\E&jA, rmso=\E&d@, rmul=\E&d@, sgr0=\E&d@, smir=\EQ, smkx=\E&jB, smso=\E&dD, smul=\E&dD, tbc=\E3, vpa=\E&a%p1%dY, cols#87, it#8, lines#72, bel=^G, clear=\f, cr=\r, cub1=\ED, cud1=\n, cuf1=\EC, cup=\EY%p2%'\s'%+%c%p1%'\s'%+%c, cuu1=\EA, dch=\Ee%p1%'\s'%+%c, dch1=\Ee!, dl=\EE%p1%'\s'%+%c, dl1=\EE!, el=\EK, ht=\t, ich=\Ef%p1%'\s'%+%c, ich1=\Ef!, il=\EF%p1%'\s'%+%c, il1=\EF!, ind=\n, kbs=\b, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf1=\Ex, kf2=\Ey, kf3=\Ez, mc4=Set\sprinter\sswitch\sto\s"terminal"\r\n, mc5=Set\sprinter\sswitch\sto\s"print"\r\n, h19-pb|heathkit h19 with printer box, am, eslok, hs, mir, msgr, cols#80, it#8, lines#24, bel=^G, clear=\EE, cnorm=\Ey4, cr=\r, cub1=\b,  cud1=\n, cuf1=\EC, cup=\EY%p1%'\s'%+%c%p2%'\s'%+%c, cuu1=\EA, cvvis=\Ex4, dch1=\EN, dl1=\EM$<1*>, ed=\EJ, el=\EK, fsl=\Ek\Ey5, home=\EH, ht=\t, il1=\EL$<1*>, ind=\n, kbs=\b, kcub1=\ED, kcud1=\EB, kcuf1=\EC, kcuu1=\EA, kf1=\ES, kf2=\ET, kf3=\EU, kf4=\EV, kf5=\EW, kf6=\EP, kf7=\EQ, kf8=\ER, khome=\EH, lf6=blue, lf7=red, lf8=white, mc4=Set\sprinter\sswitch\sto\s"terminal"\r\n, mc5=Set\sprinter\sswitch\sto\s"print"\r\n, ri=\EI, rmacs=\EG, rmir=\EO, rmso=\Eq, smacs=\EF, smir=\E@, smso=\Ep, tsl=\Ej\Ex5\EY8%p1%'\s'%+%c\Eo\Eo, mime-pb|mime with printer box, am, cols#80, it#8, lines#24, vt#9, bel=^G, clear=^]^C, cr=\r, cub1=\b, cud1=\n, cuf1=^X, cup=^T%p1%{24}%+%c%p2%?%p2%{32}%>%t%{48}%+%;%{80}%+%c, cuu1=^Z, dl1=^W$<80>, ed=^_, el=^^, home=^], ht=\t, il1=^A$<80>, ind=\n, is2=\E^S^Q, kcub1=\b, kcud1=^K, kcuf1=^X, kcuu1=^Z, mc4=Set\sprinter\sswitch\sto\s"terminal"\r\n, mc5=Set\sprinter\sswitch\sto\s"print"\r\n, ri=^R$<3>, uc=^U, citoh|ci8510|8510|c.itoh 8510a, cols#80, ri=\Er, bold=\E!, smul=\EX, rmul=\EY, sgr0=\E"\EY, it#8, is2=\E(009\054017\054025\054033\054041\054049\054057\054065\054073., rep=\ER%p2%03d%p1%c, cub1@, use=lpr, citoh-pica|citoh in pica, is1=\EN, use=citoh, citoh-elite|citoh in elite, is2=\E(009\054017\054025\054033\054041\054049\054057\054065\054073\054081\054089., is1=\EE, cols#96, use=citoh, citoh-comp|citoh in compressed, is2=\E(009\054017\054025\054033\054041\054049\054057\054065\054073\054081\054089\054097\054105\054113\054121\054129., is1=\EQ, cols#136, use=citoh, # Info: # Infinite cols because we don't want lp ever inserting \n\t**. # citoh-prop|citoh-ps|ips|citoh in proportional spacing mode, is1=\EP, cols#32767, use=citoh, citoh-6lpi|citoh in 6 lines per inch mode, is3=\EA, use=citoh, citoh-8lpi|citoh in 8 lines per inch mode, is3=\EB, lines#88, use=citoh, qms-diablo|diablo simulated by qms, smul=\EE, rmul=\ER, smso=\EW, rmso=\E&, use=lpr, #ident "@(#)terminfo:special.ti 1.5" # # -------------------------------- # # special: SPECIALS # # Manufacturer: SPECIAL GENERIC TERMINALS # Class: III # Info: # Generic "terminals". These are used to label tty lines when # you don't # know what kind of terminal is on it. The # characteristics of an unknown terminal are the lowest common # denominator - they look about like a ti 700. # arpanet|network|net|, use=unknown, bussiplexer, use=unknown, dialup, use=unknown, ethernet, use=unknown, plugboard|patch|patchboard|, use=unknown, dumb, am, bel=^G, cols#80, cr=^M, cud1=^J, ind=^J, unknown, gn, use=dumb, switch|intelligent switch, use=unknown, #ident "@(#)terminfo:sperry.ti 1.5" # # -------------------------------- # # sperry: SPERRY # # Manufacturer: SPERRY # Class: III # Info: # This is a terminal that is (going to be) used with increasing # frequency here, internally at sperry. It is also similar, i # believe, to the terminal that comes with the sperry pcs that # have recenty made an entry into the micro market. # It doesn't have everything that the uts30 has to offer, i'm # sure (read hope), but its a start. # # # This entry is for the Sperry UTS30 terminal running the TTY # utility under control of CP/M Plus 1R1. The functionality # provided is comparable to the DEC vt100. # # uts30|sperry uts30 with cp/m@1R1, am, bw, hs, cols#80, lines#24, wsl#40, bel=^G, blink=\E[5m, bold=\E[1m, civis=\ER, clear=\f, cnorm=\ES, cr=\r, csr=\EU%p1%' '%+%c%p2%' '%+%c, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\EB, cuf=\E[%p1%dC, cuf1=\EC, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, dch=\E[%p1%dP, dch1=\EM, dl=\E[%p1%dM, dl1=\EL, ed=\E[J, el=\E[K, fsl=\r, home=\E[H, ht=\t, ich=\E[%p1%d@, ich1=\EO, il=\E[%p1%dL, il1=\EN, kbs=\b, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, khome=\E[H, ind=\l, indn=\E[%p1%dB, is2=\E[U 7\E[24;1H, rc=\EX, rev=\E[7m, rf=/usr/lib/tabset/vt100, ri=\EI, rin=\E[%p1%dA, rmacs=\Ed, rmso=\E[m, rmul=\E[m, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\EW, sgr0=\E[m, smacs=\EF, smso=\E[7m, smul=\E[4m, tsl=\E], uc=\EPB, #ident "@(#)terminfo:tektronix.ti 1.7" # # -------------------------------- # # tektronix: TEKTRONIX # # Manufacturer: TEKTRONIX # Class: III tk|4105|4107|4109|tektronix terminals 4105 4107 4109, cvvis=\E%!3, cnorm=\E%!0, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=\EJ, el=\EK, clear=\ELZ, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, lines#24, cuf1=\EC, ht=^I, it#8, ri=\EI, cuu1=\EA, kcuu1=\EA, kcud1=\EB, kcuf1=\EC, kcub1=\ED, kbs=^H, smso=\E%!1\E[7;5m$<2>\E%!0, rmso=\E%!1\E[m$<2>\E%!0, smul=\E%!1\E[4m$<2>\E%!0, rmul=\E%!1\E[m$<2>\E%!0, bold=\E%!1\E[1m$<2>\E%!0, rev=\E%!1\E[7m$<2>\E%0, blink=\E%!1\E[5m$<2>\E%!0, dim=\E%!1\E[<0m$<2>\E%!0, sgr0=\E%!1\E[m$<2>\E%!0, sgr=\E%%!1\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m\E%%!0, tek|tek4012|4012|tektronix 4012, cr=^M, cud1=^J, bel=^G, ff=^L$<1000>, is2=\E^O, cub1=^H, clear=\E^L$<1000>, cols#75, lines#35, os, tek4013|4013|tektronix 4013, smacs=\E^N, rmacs=\E^O, use=4012, tek4014|4014|tektronix 4014, is2=\E^O\E9, cols#81, lines#38, use=tek4012, tek4015|4015|tektronix 4015, smacs=\E^N, rmacs=\E^O, use=4014, tek4014-sm|4014-sm|tektronix 4014 in small font, is2=\E^O\E\072, cols#121, lines#58, use=tek4014, tek4015-sm|4015-sm|tektronix 4015 in small font, smacs=\E^N, rmacs=\E^O, use=4014-sm, tek4023|4023|tex|tektronix 4023, cr=^M, cud1=^J, ind=^J, bel=^G, smso=^_P, rmso=^_@, cup=\034%p2%' '%+%c%p1%' '%+%c, cuf1=\t, cub1=^H, clear=\E^L$<4>, cols#80, lines#24, am, vt#4, # Info: # It is recommended that you run the 4025 at 4800 baud or less; # various bugs in the terminal appear at 9600. It wedges at the # bottom of memory (try "cat /usr/dict/words"); ^S and ^Q typed # on keyboard don't work. You have to hit BREAK twice to get # one break at any speed - this is a documented feature. # Can't use cursor motion because it's memory relative, and # because it only works in the workspace, not the monitor. # Same for home. Likewise, standout only works in the workspace. # # el was commented out since vi and rogue seem to work better # simulating it with lots of spaces! # # il1 and il had 145ms of padding, but that slowed down vi's ^U # and didn't seem necessary. # 4025|4027|4024|tek4025|tek4027|tek4024|4025cu|4027cu|tektronix 4024/4025/4027, cr=^M, ind=^F^J, cud1=^F^J, bel=^G, am, da, db, ht=^I, it#8, cub1=^H, lm#0, lines#34, cols#80, clear=^_era\r\n\n, is2=\41com 31\r\n^_sto 9 17 25 33 41 49 57 65 73\r, smkx=^_lea p4 /h/\r^_lea p8 /k/\r^_lea p6 / /\r^_lea p2 /j/\r^_lea f5 /H/\r, rmkx=^_lea p2\r^_lea p4\r^_lea p6\r^_lea p8\r^_lea f5\r, cuu1=^K, cuf1=^_rig\r, ed=^_dli 50\r, cmdch=^_, dch1=^_dch\r, ich1=^_ich\r ^H, il1=^_up\r^_ili\r, dl1=^_dli\r^F, il=^_up\r^_ili %p1%d\r, dl=^_dli %p1%d\r^F, cuu=^_up %p1%d\r, cud=^_dow %p1%d\r, cub=^_lef %p1%d\r, cuf=^_rig %p1%d\r, tek4025-17|4025-17|4027-17|tek 4025 17 line window, lines#17, use=4025, tek4025-17-ws|4025-17-ws|4025-17ws|4027-17-ws|tek 4025 17 line window in workspace, is2=\41com 31\r\n^_sto 9 17 25 33 41 49 57 65 73\r^_wor 17\r^_mon 17\r, smcup=^_wor h\r, rmcup=^_mon h\r, smso=^_att e\r, rmso=^_att s\r, use=4025-17, tek4025-ex|4025-ex|4025ex|4027-ex|tek 4025 w/!, smcup=\41com 31\r, rmcup=^_com 33\r, is2=^_com 33\r\n\41sto 9 17 25 33 41 49 57 65 73\r, use=4025, tek4105-30|4105-30|4015 emulating 30 line vt100, am, mir, msgr, xenl, xon, cols#80, it#8, lines#30, vt#3, acsc=``aaffggjjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~, bel=^G, blink=\E[5m$<2>, bold=\E[1m$<2>, clear=\E[H\E[J$<50>, cr=\r, csr=\E[%i%p1%d;%p2%dr, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C$<2>, cup=\E[%i%p1%d;%p2%dH$<5>, cuu=\E[%p1%dA, cuu1=\E[A$<2>, ed=\E[J$<50>, el=\E[K$<3>, el1=\E[1K$<3>, enacs=\E(B\E)0, home=\E[H, ht=\t, hts=\EH, ind=\n, ka1=\EOq, ka3=\EOs, kb2=\EOr, kbs=\b, kc1=\EOp, kc3=\EOn, kcub1=\EOD, kcud1=\EOB, kcuf1=\EOC, kcuu1=\EOA, kent=\EOM, kf0=\EOy, kf1=\EOP, kf10=\EOx, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf5=\EOt, kf6=\EOu, kf7=\EOv, kf8=\EOl, kf9=\EOw, rc=\E8, rev=\E[7m$<2>, ri=\EM$<5>, rmacs=^O, rmkx=\E[?1l\E>, rmso=\E[m$<2>, rmul=\E[m$<2>, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, sc=\E7, sgr=\E[0%?%p1%p6%|%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;m%?%p9%t^N%e^O%;, sgr0=\E[m^O$<2>, smacs=^N, smkx=\E[?1h\E=, smso=\E[1;7m$<2>, smul=\E[4m$<2>, tbc=\E[3g, # Info: # The 4110 series may be a wonderful graphics series, but they # make the 4025 look good for screen editing. # # In the dialog area, you can't move the cursor off the bottom # line. # # Out of the dialog area, ^K moves it up, but there is no way # to scroll. # # Note that there is a floppy for free from Tek that makes the # 4112 emulate the vt52 (use the vt52 termcap). There is also # an expected enhancement that will use ANSI standard sequences. # # 4112 in non-dialog area pretending to scroll. It really wraps # but vi is said to work (more or less) in this mode. # # 'vi' works reasonably well with this entry. # 4112|4112-nd|4113|4114|tek4112|tektronix 4110 series, cr=^M, cud1=^J, ind=^J, bel=^G, cuu1=^K, cub1=^H, am, clear=\E^L, lines#34, cols#80, smcup=\EKA0\ELV0\EMG0, rmcup=\EKA1\ELV1, tek4112-d|4112-d|tek 4112 in dialog area, am, clear=\ELZ, lines#34, cols#80, cuu1=^K, tek4112-5|4112-5|4112 in 5 line dialog area, lines#5, use=4112, tek4115|4115|tektronix 4115, am, xon, cols#80, lines#34, bel=^G, blink=\E[5m, bold=\E[1m, cbt=\E[Z, clear=\E[H\E[J, cr=\r, cub=\E[%p1%dD, cub1=\b, cud=\E[%p1%dB, cud1=\n, cuf=\E[%p1%dC, cuf1=\E[C, cup=\E[%i%p1%d;%p2%dH, cuu=\E[%p1%dA, cuu1=\E[A, dch1=\E[P, dl=\E[%p1%dM, dl1=\E[M, ed=\E[J, el=\E[K, home=\E[H, hpa=\E[%p1%{1}%+%dG, ht=\t, hts=\EH, ich=\E[%p1%d@, ich1=\E[@, il=\E[%p1%dL, il1=\E[L, ind=\n, invis=\E[8m, kbs=\b, kcub1=\E[D, kcud1=\E[B, kcuf1=\E[C, kcuu1=\E[A, khome=\E[H, rep=%p1%c\E[%p2%{1}%-%db, rev=\E[7m, rmso=\E[m, rmul=\E[m, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, sgr0=\E[0m, smso=\E[7m, smul=\E[4m, tbc=\E[2g, vpa=\E[%p1%{1}%+%dd, # Info: # t500 is a local entry for the oddball Tek 500 owned by Fluke # Labs # t500|Tek series 500, cr=^M, ind=^J, cud1=^J, bel=^G, lines#25, cols#80, cub1=^H, cup=\E=%p1%p1%' '%+%c%p2%' '%+%c, clear=^E$<20>, home=^T, bw, am, # Info: # I added the is string - straight Unix has ESC ; in the login # string which sets a ct8500 into monitor mode (aka 4025 snoopy # mode). The is string here cleans up a few things (but not # everything). # ct8500|tektronix ct8500, cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\E^L, am, cub1=^H, cbt=\E^I, bw, ed=\E^U, el=\E^T, clear=\E^E, cup=\E|%p1%' '%+%c%p2%' '%+%c, cols#80, da, db, dch1=\E^], dl1=\E^M, ich1=\E^\, lines#25, cuf1=\ES, ht=^I, ri=\E^A, rmso=\E , smso=\E$, rmul=\E , cuu1=\ER, smul=\E\041, is2=^_\EZ\Ek, #ident "@(#)terminfo:teleray.ti 1.5" # # -------------------------------- # # teleray: TELERAY # # Manufacturer: TELERAY # Class: III # Info: # A dumb teleray with the cursor stuck on the bottom and no # obvious model number is probably a 3700. # t3700|teleray3700|dumb teleray 3700, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, clear=^L, cols#80, lines#24, t3800|teleray 3800 series, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, ed=\EJ, el=\EK, clear=^L, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, cud1=\n, home=\EH, lines#24, ll=\EY7 , cuf1=\EC, ht=^I, cuu1=^K, t1061|t10|teleray|teleray 1061, tbc=\EG, hts=\EF, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EL$<2*>, am, cub1=^H, ed=\EJ$<1>, el=\EK, clear=^L$<1>, cup=\EY%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\EQ, dl1=\EM$<2*>, home=\EH, ich1=\EP, ip=$<0.4*>, kf1=^Z1, kf2=^Z2, kf3=^Z3, kf4=^Z4, kf5=^Z5, kf6=^Z6, kf7=^Z7, kf8=^Z8, lines#24, cuf1=\EC, ht=^I, rmso=\ER@, smso= \ERD, km, is2=\Ee\EU01^Z1\EV\EU02^Z2\EV\EU03^Z3\EV\EU04^Z4\EV\EU05^Z5\EV\EU06^Z6\EV\EU07^Z7\EV\EU08^Z8\EV\Ef, cuu1=\EA, smul=\ERH, rmul=\ER@, xhp, xt, xmc#1, t1061f|teleray 1061 with fast PROMs, il1=\EL, ip@, dl1=\EM, use=t1061, # Info: # teleray 16 - map the arrow keys for vi/rogue, shifted to # up/down page, and back/forth words. Put the function keys # (f1-f10) where they can be found, and turn off the other magic # keys along the top row, except for line/local. Do the magic # appropriate to make the page shifts work. # Also toggle ^S/^Q for those of us who use Emacs. # ya|t16|teleray 16, cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\E[L, am, cub1=^H, ed=\E[0J, el=\E[0K, clear=\E[H\E[2J, cup=%i\E[%p1%d;%p2%df, cols#80, kf1=^Z1, kf2=^Z2, kf3=^Z3, kf4=^Z4, kf5=^Z5, kf6=^Z6, kf7=^Z7, kf8=^Z8, kf9=^Z9, kf10=^Z0, dch1=\E[P, dl1=\E[M, home=\E[H, smcup=\E[U\E[?38l, rmcup=\E[V\E[24;1f\E[?38h, smir=\E[4h, rmir=\E[4l, lines#24, cuf1=\E[C, ht=^I, rmso=\E[m, smso=\E[7m, dch1=\E[P, cud1=\E[B, cuu1=\E[A, smul=\E[4m, rmul=\E[m, xhp, xt, ri=\E[T, da, db, mir, #ident "@(#)terminfo:televideo.ti 1.4" # # -------------------------------- # # televideo: TELEVIDEO # # Manufacturer: TELEVIDEO # Class: III tvi803, clear=\E*$<10>, use=tvi950, # Info: # There are some tvi's that require incredible amounts of padding # and some that don't. I'm assuming 912 and 920 are the old slow # ones, and 912b, 912c, 920b, 920c are the new ones that don't # need padding. # tvi912|912|920|tvi920|old televideo, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, il1=\EE$<33*>, am, cub1=^H, el=\ET, cup=\E=%p1%' '%+%c%p2%' '%+%c, clear=^Z, cols#80, dch1=\EW, dl1=\ER$<33*>, kbs=^h, kcuu1=^K, kcud1=^J, kcub1=^H, kcuf1=^L, kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, kf4=^AD\r, kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, kf9=^AI\r, home=^^, ich1=\EQ, lines#24, cuf1=^L, ht=^I, rmso=\Ek, smso=\Ej, cuu1=^K, smul=\El, rmul=\Em, xmc#1, # Info: # the 912 has a key that's like shift: 8 xmits # "^A8\r". The 920 has this plus real function keys that xmit # different things. # Terminfo makes you use the funct key on the 912 but the real # keys on the 920. # 912b|912c|tvi912b|tvi912c|tvi|new televideo 912, il1=\EE$<5*>, dl1=\ER$<5*>, use=tvi912, 920b|920c|tvi920b|tvi920c|new televideo 920, kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, kf4=^AD\r, kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, kf9=^AI\r, use=tvi912b, # Info: # We got some new tvi912c' that act really weird on the regular # termcap, so one of our gurus worked this up. Seems that cursor # addressing is broken. # 912cc|tvi912cc|tvi912 at cowell college, cup@, use=tvi912c, # Info: # Two page TVI 912/920. # set to page 1 when entering ex (\E-17 ) # reset to page 0 when exiting ex (\E-07 ) # tvi912-2p|tvi920-2p|912-2p|920-2p|tvi-2p|televideo w/2 pages, smcup=\E-17 , rmcup=\E-07 , use=tvi912, tvi950-ap|tvi 950 w/alt pages, is2=\E\\1, smcup=\E-06 , rmcup=\E-16 , use=tvi950, tvi950-b|bare tvi950 no is2, is2@, use=tvi950, tvi950-ns|tvi950 w/no standout, smso@, rmso@, smul@, rmul@, use=tvi950, # Info: # Now that we have is1, is2, and is3, these should be factored. # # is2 for all 950's. It sets the following attributes: # # full duplex (\EDF) write protect off (\E() # # conversation mode (\EC) graphics mode off (\E%) # # white on black (\Ed) auto page flip off (\Ew) # # turn off status line (\Eg) clear status line (\Ef\r) # # normal video (\E0) monitor mode off (\EX or \Eu) # # edit mode (\Er) load blank char to space (\Ee\040) # # line edit mode (\EO) enable buffer control (^O) # # protect mode off (\E\047) duplex edit keys (\El) # # program unshifted send key to send line all (\E016) # # program shifted send key to send line unprotected (\E004) # # set the following to nulls: # field delimiter (\Ex0\0\0) # line delimiter (\Ex1\0\0) # start-protected field delimiter (\Ex2\0\0) # end-protected field delimiter (\Ex3\0\0) # # tvi950|950|televideo950, tbc=\E3, hts=\E1, cr=^M, cud1=^J, ind=^J, bel=^G, is2=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O \El\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0 \Ex3\0\0\Ex4\r\0\Ef\r, il1=\EE, am, cub1=^H, cbt=\EI, ed=\Ey, el=\Et, clear=\E"6g\E*, cup=\E=%p1%' '%+%c%p2%' '%+%c, cols#80, dch1=\EW, dl1=\ER, cud1=^V, rmir=\Er, home=^^, smir=\Eq, kf0=^A0\r, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, kbs=^H, kcud1=^V, khome=^^, kcub1=^H, kcuf1=^L, kcuu1=^K, lines#24, mir, msgr, cuf1=^L, ht=^I, rmso=\EG0, xmc#1, smso=\EG4, ri=\Ej, rmul=\EG0, cuu1=^K, smul=\EG8, flash=\Eb$<20>\Ed, xenl, hs, tsl=\Eg\Ef, fsl=\r, dsl=\Eg\Ef\r, mc5=\E', mc4=\Ea, # Info: # is2 for 950 with two pages adds the following: # set 48 line page (\E\\2) # # place cursor at page 0, line 24, column 1 (\E-07 ) # # set local (no send) edit keys (\Ek) # # two page 950 adds the following: # when entering ex, set 24 line page (\E\\1) # when exiting ex, reset 48 line page (\E\\2) # place cursor at 0,24,1 (\E-07 ) # # set duplex (send) edit keys (\El) when entering vi # set local (no send) edit keys (\Ek) when exiting vi # tvi950-2p|950-2p|televideo950 w/2 pages, is2=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O \Ek\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0 \Ex3\0\0\Ex4\r\0\E\\2\E-07 , rmcup=\E\\2\E-07 , smcup=\E\\1\E-07 , smkx=\El, rmkx=\Ek, use=tvi950, # Info: # is2 for 950 with four pages adds the following: # set 96 line page (\E\\3) # place cursor at page 0, line 24, column 1 (\E-07 ) # # four page 950 adds the following: # when entering ex, set 24 line page (\E\\1) # when exiting ex, reset 96 line page (\E\\3) # place cursor at 0,24,1 (\E-07 ) # tvi950-4p|950-4p|televideo950 w/4 pages, is2=\EDF\EC\Ed\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O \Ek\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0 \Ex3\0\0\Ex4\r\0\E\\3\E-07 , rmcup=\E\\3\E-07 , smcup=\E\\1\E-07 , smkx=\El, rmkx=\Ek, use=tvi950, # Info: # is2 for reverse video 950 changes the following: # set reverse video (\Ed) # # set flash accordingly (\Ed ...nulls... \Eb) # tvi950-rv|950-rv|televideo950 rev video, tbc=\E3, hts=\E1, is2=\EDF\EC\Eb\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O \El\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0 \Ex3\0\0\Ex4\r\0, flash=\Ed$<20>\Eb, use=tvi950, # Info: # uses the appropriate entries from 950-2p and 950-rv # tvi950-rv-2p|950-rv-2p|televideo950 rev video w/2 pages, is2=\EDF\EC\Eb\EG0\Eg\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O \Ek\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0 \Ex3\0\0\Ex4\r\0\E\\2\E-07 , rmcup=\E\\2\E-07 , smcup=\E\\1\E-07 , smkx=\El, rmkx=\Ek, use=tvi950-rv, # Info: # uses the appropriate entries from 950-4p and 950-rv # tvi950-rv-4p|950-rv-4p|televideo950 rev video w/4 pages, is2=\EDF\EC\Eb\EG0\Er\EO\E\047\E(\E%\Ew\EX\Ee ^O \Ek\E016\E004\Ex0\0\0\Ex1\0\0\Ex2\0\0 \Ex3\0\0\Ex4\r\0\E\\3\E-07 , rmcup=\E\\3\E-07 , smcup=\E\\1\E-07 , smkx=\El, rmkx=\Ek, use=tvi950-rv, # Terminal Configuration Assumptions: # 1) Edit keys transmit (DUPE on S2 bit 1 down) # 2) Actually a 925 (not in 912/920 emulation) # 3) Visual Bell assumes a default of white on black # 4) Page attributes for special display # 5) This uses a solid underscore cursor when not in vi. # Solid Block cursor in vi. # 6) No function key definitions are given # 7) Only one page of memory is available # tvi925|925|televideo 925, am, bel=^G, bw, cbt=\EI, clear=^Z, cnorm=\E.4, cols#80, cr=^M, cub1=^H, cud1=^J, cud1=^V, cuf1=^L, cup=\E=%p1%' '%+%c%p2%' '%+%c, cuu1=^K, cvvis=\E.2, dch1=\EW, dl1=\ER, dsl=\Eh, ed=\EY, el=\ET, flash=\Eb$<20>\Ed, fsl=\r\Eg, home=^^, hs, ht=^I, hts=\E1, ich1=\EQ, il1=\EE, ind=^J, kbs=^H, kcub1=^H, kcud1=^V, kcuf1=^L, kcuu1=^K, kf0=^AI\r, kf1=^A@\r, kf2=^AA\r, kf3=^AB\r, kf4=^AC\r, kf5=^AD\r, kf6=^AE\r, kf7=^AF\r, kf8=^AG\r, kf9=^AH\r, khome=^^, kich1=\EQ, kdch1=\EW, kil1=\EE, kdl1=\ER, kclr=^Z, kel=\ET, ked=\EY, lines#24, rmso=\EG0, rmul=\EG0, smso=\EG4, smul=\EG8, tbc=\E3, tsl=\Eh\Ef, ul, xmc#1, #ident "@(#)terminfo:ti.ti 1.3" # # -------------------------------- # # ti: TEXAS INSTRUMENTS # # Manufacturer: TEXAS INSTRUMENTS # Class: II ti700|ti733|735|ti735|ti silent 700, cr=^M$<162>, use=ti745, ti|ti745|745|743|ti silent 745, cr=^M, cud1=^J, ind=^J, bel=^G, cub1=^H, cols#80, hc, os, ti800|ti omni 800, cols#132, use=ti745, #ident "@(#)terminfo:tymshare.ti 1.4" scanset|sc410|sc415|Tymshare Scan Set, msgr, am, bw, cols#80, lines#24, bel=^G, cub1=^H, cud1=^J, ind=^J, cuu1=^K, cr=^M, cuf1=^I, sc=^B, rc=^C, clear=\EH\EJ, kcuu1=\EA, kcud1=\EB, kcuf1=\EC, kcub1=\ED, cup=\EY%p1%' '%+%c%p2%' '%+%c, ed=\EJ, el=\EK, home=\EH, rs1=\E>, smacs=^N, rmacs=^O, acsc=l, clear=\Ev, cup=\EY%p1%' '%+%c%p2%' '%+%c, dch1=\EO$<4*>, dl1=\EM$<4*>, home=\EH, ich1=\Ei \b\Ej, is2=\E3\Eb\Ej\E\\\El\EG\Ed\Ek, kf0=\EP, kf1=\EQ, kf2=\ER, kf3=\E , kf4=\E!, kf5=\E", kf6=\E#, kf7=\E$, kf8=\E%, kf9=\E&, kcub1=\ED, kcuf1=\EC, kcuu1=\EA, kcud1=\EB, khome=\EH, cuf1=\EC, ht=^I, ri=\EI, cuu1=\EA, cvvis=\Ed, cnorm=\Ec, vi200-rv-ic|visual 200 reverse video using insert char, rmir=\Ej, smir=\Ei, ich1@, use=vi200-rv, # The older Visuals didn't come with function keys. This entry uses # smkx and rmkx so that the keypad keys can be used as function keys. # If your version of vi doesn't support function keys you may want # to use vi200-f. vi200-f|visual|visual 200 no function keys, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, il1=\EL, am, cub1=^H, ed=\Ey, el=\Ex$<4*>, clear=\Ev, cup=\EY%p1%' '%+%c%p2%' '%+%c, dch1=\EO$<4*>, dl1=\EM$<4*>, home=\EH, ich1=\Ei \b\Ej, is2=\E3\Eb\Ej\E\\\El\EG\Ed\Ek, smkx=\E=, rmkx=\E>, kf0=\E?p, kf1=\E?q, kf2=\E?r, kf3=\E?s, kf4=\E?t, kf5=\E?u, kf6=\E?v, kf7=\E?w, kf8=\E?x, kf9=\E?y, kcub1=\ED, kcuf1=\EC, kcuu1=\EA, kcud1=\EB, khome=\EH, cuf1=\EC, ht=^I, ri=\EI, cuu1=\EA, cvvis=\Ed, cnorm=\Ec, vi200-rv|visual 200 reverse video, smso=\E4, rmso=\E3, ri@, cvvis@, cnorm@, use=vi200, vi200-ic|visual 200 using insert char, rmir=\Ej, smir=\Ei, ich1@, use=vi200, # the function keys are programmable but we don't reprogram # them to their default values with "is" because programming # them is very verbose. maybe an "if" file should be made for # the 300 and they could be stuck in it. vi300|visual 300 ansi x3.64, cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G, am, cub1=^H, bw, mir, ht=^I, xenl, cols#80, lines#24, is2=\E[7s\E[2;3;4;20;?5;?6l\E[12;?7h\E[1Q\E[0;1(D\E[8s, cup=\E[%i%p1%d;%p2%dH, cuu1=\E[A, cud1=\E[B, cuf1=\E[C, ri=\EM, cbt=\E[Z, home=\E[H, ed=\E[J, clear=\E[H\E[2J, el=\E[K, il1=\E[L, dl1=\E[M, smir=\E[4h, rmir=\E[4l, dch1=\E[P$<40>, smso=\E[1m, rmso=\E[m, smul=\E[4m, rmul=\E[m, khome=\E[H, kcud1=\E[B, kcub1=\E[D, kcuf1=\E[C, kcuu1=\E[A, kf1=\E_A\E\\, kf2=\E_B\E\\, kf3=\E_C\E\\, kf4=\E_D\E\\, kf5=\E_E\E\\, kf6=\E_F\E\\, kf7=\E_G\E\\, kf8=\E_H\E\\, kf9=\E_I\E\\, vi300-rv|visual 300 reverse video, cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G, is2=\E[7s\E[2;3;4;20;?6l\E[12;?5;?7h\E[1Q\E[0;1(D\E[8s, use=vi300, # slow scroll doesn't work that well; if you type on the # keyboard while the terminal is scrolling it drops characters vi300-ss|visual 300 slow scroll, cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G, cvvis=\E[?4l, cnorm=\E[?4h, use=vi300, # some of the vi300s have older firmware that has the command # sequence for setting editing extent reversed. ovi300|visual 300 old, cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G, is2=\E[7s\E[2;3;4;20;?5;?6l\E[12;?7h\E[2Q\E[0;1(D\E[8s, use=vi300, # if your version of ex/vi doesn't correctly implement xn # use this termcap for the vi300 vi300-aw|visual 300 no autowrap, am@, xenl@, cvvis=\E[?7l, cnorm=\E[?7h, use=vi300, # the visual 550 is a visual 300 with tektronix graphics, # and with 33 lines. clear screen is modified here to # also clear the graphics. vi550|visual 550 ansi x3.64, cr=^M, cud1=^J, ind=^J, bel=^G, cr=^M, cud1=^J, ind=^J, bel=^G, lines#33, clear=\030\E[H\E[2J, use=vi300, # the visual 613 # Vanilla vt100 definitions. vt100|vt100-am|dec vt100, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, it#8, clear=\E[H\E[2J$<50>, cub1=^H, am, cup=\E[%i%p1%d;%p2%dH$<5>, cuf1=\E[C$<2>, cuu1=\E[A$<2>, el=\E[K$<3>, ed=\E[J$<50>, cud=\E[%p1%dB, cuu=\E[%p1%dA, cub=\E[%p1%dD, cuf=\E[%p1%dC, smso=\E[7m$<2>, rmso=\E[m$<2>, smul=\E[4m$<2>, rmul=\E[m$<2>, bold=\E[1m$<2>, rev=\E[7m$<2>, blink=\E[5m$<2>, sgr0=\E[m$<2>, sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, smkx=\E[?1h\E=, rmkx=\E[?1l\E>, tbc=\E[3g, hts=\EH, home=\E[H, kcuu1=\EOA, kcud1=\EOB, kcuf1=\EOC, kcub1=\EOD, kbs=^H, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, ht=^I, ri=\EM$<5>, vt#3, xenl, xon, sc=\E7, rc=\E8, csr=\E[%i%p1%d;%p2%dr, vis613|vis613 graphics terminal, smcup=\E[2l\E>\E[?7h, rmcup=\E[2l, clear=\E[;H\E[2J$<50>, use=vt100, #ident "@(#)terminfo:trailer 1.7" # # ------------------------ # # The following have been included for upward compatibility with previous # names. They are considered obsolete and the new name (which typically # contains an extra dash) should be used instead. These names will go # away eventually (read: "soon") so you should start converting! # tvi9122p|9122p|, use=912-2p, tvi9202p|9202p|, use=920-2p, tvi9502p|9502p|, use=950-2p, tvi9504p|9504p|, use=950-4p, tvi950rv|950rv|, use=950-rv, tvi950rv2p|950rv2p|, use=950-rv-2p, tvi950rv4p|950rv4p|, use=950-rv-4p, aaa-29|, use=aaa-30-s, aaa-29-ctxt|, use=aaa-30-s-ctxt, aaa-29-np|, use=aaa-30-s, aaa-29-rv|, use=aaa-30-s-rv, aaa-29-rv-ctxt|, use=aaa-s-rv-ctxt, aaa-59|, use=aaa-60-s, aaa18|, use=aaa-18, aaa20|, use=aaa-20, aaa22|, use=aaa-22, aaa24|, use=aaa-24, aaa26|, use=aaa-26, aaa28|, use=aaa-28, aaa29|, use=aaa-29, aaa30|, use=aaa-30, aaa36|, use=aaa-36, aaa40|, use=aaa-40, aaa48|, use=aaa-48, aaa59|, use=aaa-60-s, aaa60|, use=aaa-60, aaadb|, use=aaa-db, c100-rv-pp|, use=c100-rv, c1004p|, use=c100-4p, c100rv|, use=c100-rv, c100rv4p|, use=c100-rv-4p, c100rv4pna|, use=c100-rv-4p-na, c100rv4ppp|, use=c100-rv-4p, c100rvna|, use=c100-rv-na, c100rvpp|, use=c100-rv, c100rvs|, use=c100-rv, c100s|, use=c100, c108-4|, use=c108-4p, c108-8|, use=c108-8p, h19a|h19A|, use=h19-a, h19b|, use=h19-b, h19bs|, use=h19-bs, h19u|, use=h19-u, hp2621nl|2621nl|, use=2621-nl, hp2621nt|2621nt|, use=2621-nt, hp2621wl|2621wl|, use=2621-wl, mime2as|, use=mime2a-s, mime2av|, use=mime2a-v, mimefb|, use=mime-fb, mimehb|, use=mime-hb, tvi2p|, use=tvi-2p, tvi950b|, use=tvi950-b, tvi950ns|, use=tvi950-ns, vt100-np|, use=vt100, vt100am|, use=vt100-am, vt100nam|, use=vt100-nam, vt100s|, use=vt100-s, vt100w|, use=vt100-w, # # END OF TERMINFO # ------------------------ use=c108-8p, h19a|h19A|, use=h19-a, h19b|, use=h19-b, h19bs|, use=h19-bs, h19u|, use=h19-u, hp2621nl|2621nl|, use=2621-nl, hp2621nt|2621nt|, use=2621-nt, hp2621wl|2621wl|, use=2621-wl, mime2as|, use=mime2a-s, mime2av|, use=mime2a-v, mimefb|, use=mime-fb, mimehb|, uetc/umount100700 0 2 50150 4201206113 7305 37777777777 L! 8l@.text8 .data@@l8@.bssX0@X0@.commentXPÐETX0@RU RP P7jÐUlWVE@EEEE=tG=uLh0@E pKu @uh3@hh,@ jL7YE UJ<uh6@hh,@u j#7Yth9@hh,@R j7YhhQ@x E=tjjug }h@h`@hh,@ EPW[uE%=@tEPW:}5C980@u(WYt=\4@=@tWh@ =@t)W Y}LWdYF980@t8j#6Y.WY}#W;Y980@tj5YE=@EEPW}fE1E%=`u fEfEfEfEfEfEE=/tqj EPuh@hh,@ EP*Y +Rh@EP EP)Y +RWEPw E݄tEjh@%4E}h@h@hh,@7 j4YEPul}h4@h@hh,@ j4Yu/YEuho@h@@hh,@ j4Yuuu( ;Eth@h{@hh,@ jO4YEEEu7=@t+VW F@9Eu:EPV }VW uZF@tMEU;t?EPF Pd }F PWw tEU;u EU;t3E}trhh@E+EH~+EkHPuu2 EH+ƹHE}~kEHPVu2 j 3YH;u}tWh@hh,@/ j2Yu}U80@=tF=tj=tL==t=ta=Fhy@hh,@h@hh,@uh@hh,@ uh@hh,@ uh.@hh,@s uhF@hh,@\ uhW@hh,@E th@Yuh@hh,@  OUEh@h@&Eum3EE\4@E9E|h\0@YE9E|-\4@=#t5`4@u u Euhh\0@ z}tK9E~Ad4@=-u2EE=du @Ed4@EEuum'YEUPEh@uU\4@uEE9E}h@jU\4@uU} u80@3Ã} }uu +YEu80@ 380@h@5@Eu380@uu u u80@ 3xuYjuUE@= t80@"3CE@E4ÐUfE}} EE EEEE =$@fEEPju  EfEEPju EqfEEPju EUfEEPju E9Et1E=u380@ 80@܃}}$80@=t=t=.u 80@-E뭐UWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V l/@+V;}V3(Y}u +gEEvZ-ÐUWV@P@980@s 80@<@u!YtVuj, jh@j, W!YPWjo, jh@j^, u}ÐUWVSEPfYE =ruEEE =ruEEEl4@?t-l4@P>'Y45@rڋE =ru3EV'Yu 'YujS S&Yjuhd'@h`'@hX'@j%Y9Eu 3]u}ËEl4@S&Yu VUWVE@ uS"Yjj#+Ejj+Ejj+EEP: Y;4l4@tu980@tكuEuj*uj*uj*l4@Eu}Ð>*ÐUWV} C!t?F EF F F3҉Vl/@=at=rt=wt3u}ÀN jju% N G=+uf N ȸ*N*L$Q3ÐUPWE Ed,@ud,@t* d,@hX,@uu d,@ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËI:)ÐUWV}uW#YG uG tO G Dt1H,@"u}F @tV Y;5h/@rGGG tG l/@+GPwG P  | GG듸9tO O G tg aUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUWVS}u45@Etu WЋu 3]u}u V&u 45@ C45@ɐUWVS}u Ct ;ut Nj]u}ËG8u3UWVS} ]Ft ;utCuދ+E]u}U5X0@E Pu Ð;&&t3ÐUPWVS}u ]C}G8uO KuO GF҈uE]u}ÐN&3Ð6&3Ð&3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  l/@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}ClT)@Dž\9PtP؉PNKPPoYh~PW =uh~Phx)@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}85@E85@E+@s3UtE]85@E+@E+@E+@r5E,@r ,@E,@AE(,@s6EE]@)EE0,@r݋EE 9P܃}t؁85@5@v5@E8,@tI5@r05}fEf fEmE]mE܉E@0Ee @,@];r&=5|+85@u85@1}tCF0N<985@]Ћuԋ}ËEE0]@EEsEE 9P EEEE,@MU]vEu}fEf fEm]mE܉EFUR0EMm]E,@E5 ,@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G l/@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu  )G?}3W l/@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}X0@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wl/@UWH,@;=h/@r3}ÃG uUWH,@ WY;=h/@r}UWV}tlG t6G t3WVYG PY}80@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l/@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l/@+G?}3W l/@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l/@+G?}3W l/@+W;}WY3UWV}G G u}}&u5@9@GW l/@*h!YGt@O G Wl/@GGVYtG uO @u}G =@WRl/@UWV}G l/@+G}G l/@Wu};7}7𐐐3ÐU80@EEPhTu } E80@3ø6ÐÐU WVSE9ET=L0@u /etc/.mnt.lockumount -d %s umount: warning: cannot get current directory //etc/mnttabumount: warning: cannot open %s /etc/mnttabumount: warning: cannot stat %s /etc/mnttabumount: warning: cannot allocate space for %s /etc/mnttabumount: warning: read error on %s /etc/mnttab/etc/mnttabwarning: %s was not in mount table umount: not super user umount: %s no device umount: %s no such file or directory umount: %s not mounted umount: %s busy umount: %s block device required umount: warning: broken link detected umountumount: cannot unmount %s /etc/fstabr @pwd 2>/dev/nullr Unknown error: T@\@f@@@@@@@@@@%@6@H@T@j@v@@@@@@@@@ @ @* @B @O @e @t @ @ @ @ @ @ @ !@!@(!@A!@^!@y!@!@!@!@!@!@!@!@"@$"@9"@J"@W"@m"@"@"@"@"@"@"@"@"@#@%#@;#@K#@Y#@u#@#@#@#@#@#@#@#@#@#@#@$@/$@V$@{$@$@$@%@ %@%@%@$%@-%@6%@?%@H%@Q%@Z%@c%@l%@v%@%@%@%@%@%@%@%@%@%@%@%@%@%@&@ &@&@ &@*&@4&@>&@H&@R&@\&@f&@p&@z&@&@&@&@&@&@&@&@&@&@&@&@ '@'@+'@C'@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFFRtq.:^Q_yQI_-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@=@=@h/@=@0?@3.1bS03.1bS0h/@=@etc/update100755 0 2 1144 4201131302 7226 37777777777 L! 4P@.text4 .data@@P@.bssT@T@.commentTÐETT@RU RP PpjÐUt2jLY(58@Yj8@8@4(@8@<(@u2h0uYUu*YÐ( fÐ$Ð6t3Ð3ÐÐP@Ð@@(#)update 5.3b of Jan 27, 1988<@A@F@/bin/usr/usr/bin3.1bS03.1bS0@P@.bssT@T@.commentTÐETT@RU RP PpjÐUt2jLY(58@Yj8@8@4(@8@<(@u2h0uYUu*YÐ( fÐ$Ð6t3Ð3ÐÐP@etc/wall100755 0 2 57650 4201131366 6752 37777777777 La! E@.textE .data@@F@.bss@@.comment_ÐET@RU RP PuEjÐU8WVEEh\0@Y=u&x@4 @h@h@Y jEYH0@e0@EPh@}h @h @h@ jDYET0@9T0@th4 @h% @h@ jDYT0@$340@5T0@?YX0@uh` @h> @h@ jcDYjhj @nCE}h @ht @h@p j.DY5T0@5X0@u8 ;T0@th @h @h@2 jCYu>Yu u@P>YtTEP@P5=t9h @YEt'EU9uYEu@=?u'[P YEtj E0h@ }t u{YE@=80@t(V_Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V/Y}u +gEEvÐU WVju3} 3u؋}ÍEPVE|0E%=@u j/Yth/YG u%E%=@t x@VB/Y3뒉7G3G뀐UWV @, @9x@s x@< @u(YtVuj3 jh @jr3 W(YPWj_3 jh @jN3 u}ÐUWVS}u ]GF:u Nj]u}M}3UPWV}EtG GGEFGG9G| G3Gu/hw 7, GuEG3u}ËG GQ3ÐUW}W,*YjjG P,. GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PQ- +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P, ECG t8W(YG t g GGuu G P, E9Eus3lUWV}uW+YG uG tO G Dt1@"u}F @tV(Y;5@rGGG tG @+GPwG P % | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐÐUWEEEEEE2EEEPuu w ENj}ÐUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}t&-t3Ð T$tÐUW(E+4@EEPY=<@iGQiWkW<E=$@u=$@uWEPEP< $@E$@EE9E|)E9E}!E+8@EEPYG Nj}UWVEQUEE}} EQME<$@E $@ƙ5$@Ep $@}| FFFtmnEN}|ۉ5$@}=$$@ƹtmn=nu fJ@3 uH@+FuH@;}fJ@G$@5$@($@$@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph@v 3WW YkUjuuuu u#Ujuuuu uU$WVS},$@E,$@E@s3UtE],$@E@E@E8@r5E@@rL@EH@AEh@s6EE]@)EEp@r݋EE 9P܃}t؁,$@z$@vz$@Ex@t=$@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+,$@u,$@1}tCF0N<9,$@]Ћuԋ}ËEE0]@EEsEE 9P EEEEP@MU]vEu}fEf fEm]mE܉EFUR0EMm]EX@E5`@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}x@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u0@4@GW @*h!YGt@O G W@GGVYtG uO @u}G 8@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUx@EEPhTu } Ex@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@|@@@@E@3؋=|@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ|@;5|@v|@@|@ 9=@u |@@G(=|@95@u=@7tލ;r;l%;UWV}5|@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ0\FNL$0\F:L$0+L$0L$0 L$0 Ãx@ÐT$Ô@@(#)wall 5.3b of Jan 27, 1988%W% %D% %Q%??????/dev/123456789012wall: uname() failed, %s /etc/utmpstat failed on %s /etc/utmp'%s' too big. /etc/utmpcannot allocate memory for '%s'. /etc/utmp/etc/utmpcannot open '%s' /etc/utmpcannot read '%s' /etc/utmp/devr%s?? /dev/%swCannot send to %.-8s on %s openBroadcast Message from %s (%s) on %s %19.19s to group %s... %s -gOnly one group allowed Unknown group %s Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/grouprr/etc/passwdrrUnknown error: 0 @8 @B @\ @l @ @ @ @ @ @ @ @@@$@0@F@R@^@p@@@@@@@@@@@+@A@P@\@s@@@@@@@@@:@U@d@@@@@@@@@@&@3@I@^@g@p@@@@@@@@@'@5@Q@`@i@r@@@@@@@@@ @2@W@w@@@@@@@ @@@$@-@6@?@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF",,",,,,,,#","#,E#U#U#U#U#U#U#U#U#U#,,,,,,,,,,,l%,),,,,,,,,,,,,,,,,%,,,,,,,,,,,t#l%')o#t#,,h#,,$,,,A,,$,,%-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@8@8@@8@<:@3.1bS03.1bS0etc/unmodem100755 3 3 63170 4273204152 11336 1etc/modem37777777777 etc/setmodem100755 3 3 63170 4273204152 11507 1etc/modem37777777777 etc/fstyp.d/s5fstyp100755 0 2 31100 4201131424 10770 37777777777 L! $'< @.text$' .data@@< '@.bss0@0@ .comment02ÐET0@RU RP P&jÐU0EE@9Etuh,@h@@- j&YE PUEPum}uh7@h@@ jR&YE%=`t-E%= tuhN@h@@ j&Yju%E}uh@h@@ j%Yjhu! |hPuU =t#h@h@@8u Yj%Yu Y ~9EuBE=t=uEEE @Dž\sEtC0UE}u Et E.EE艅@ E@uEE E -ݝHN%=L%uBHu9O%=u Dž Dž, @CEO%=uDžl@ @Dž\L% H ‰PDž(Dž0Dž4Dž< @Dž$ @@PDP<9E}E<PLHQ ؃@t-E9D~ =0tDžlB @Dž\h~PW =uh~PhP @ 3W YkUjuuuu u#Ujuuuu uU$WVS}4@E4@Ex @s3UtE]4@E @E @E @r5E @r @E @AE@s6EE]@)EE@r݋EE 9P܃}t؁4@@v@E@tE@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+4@u4@1}tCF0N<94@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G D@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W D@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}0@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;=@@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG D@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G D@+G?}3W D@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G D@+G?}3W D@+W;}WY3UWV}G G u}}&u@@GW D@*h!YGt@O G WD@GGVYtG uO @u}G @WRD@UWV}G D@+G}G D@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6FÐ2ÐU WVSE9ET=$@u<(@ $@$@ (@@(@@$@@ @E@3؋=@E&;5@$@E@E=w= @jY@@;t?3Ee ƹ3tL3+‰EEE2@+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @@0E+E-@@;t@@@$@~Љ@;5@v@@@ 9= @u @ @G(=@95 @u= @7tލ;r;l%;UWV}5@%@9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$,@Ru ,@+D$ø!T$,@3øÐ@ÐT$@@(#)s5fstyp 5.3b of Jan 27, 1988s5fstyp specialUsage: %s cmd: cannot stat <%s> cmd: <%s> is not a block, or a character device cmd: cannot open <%s> cmd: cannot read superblock cmd: <%s> is not a System V file system cmd: <%s> is not a System V file system cmd: System V file system sanity check failed %s S51K 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFBBBBBBBjBvBBBBBBBBBBBB B BBBBBBBBBBBBBBBBBBBBBBBBBB    BBBBBBBB:BB-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@@@@,@3.1bS03.1bS0@@@etc/log/filesave.log100644 0 2 0 4213306411 11016 37777777777 etc/fstyp100755 0 2 1245 4201131423 7117 37777777777 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" # # Determine the fs identifier of a file system. # #! chmod +x ${file} if [ $# -ne 1 ] then echo "Usage: fstyp special" exit 1 fi if [ ! -r $1 ] then echo "fstyp: cannot read <$1>" exit 1 fi # # Execute all heuristic functions in /etc/fstyp.d and # return the fs identifier of the specified file system. # for f in /etc/fstyp.d/* do msg=`$f $1 2>&1` if [ $? -eq 0 ] then echo ${msg} exit 0 fi done echo "Unknown_fstyp" exit 1 l or intended publication of such source code. #ident "%W% %D% %Q%" # # Determine the fs identifier of a file system. # #! chmod +x ${file} if [ $# -ne 1 ] then echo "Usage: fstyp special" exit 1 fi if [ ! -r $1 ] then echo "fstyp: cannot read <$1>" exit 1 fi # # Execute all heuristic functions in /etc/fstyp.d and # return the fs identifetc/infocmp100755 0 2 143730 4201206124 7454 37777777777 Lk! LwhL0@.textLw .data@@hLx@.bssd@d@0.commentTÐETd@RU RP PwjÐU5{@h@h`@,P jvUWVe@e@e@@Hke@@ke@@F95e@~Jke@ L@ke@ DW@H u <>@uke@@@30kd@ l?@Hkd@@kd@@F95e@~Jkd@ M@kd@ W@H u Ee@9EkEe@p4E=h@jkEe@xV}LkEe@@kEe@MHkEe@MH kEe@M8HkEe@@=l@t=l@uG=\@u=`@u =d@t hp@::Ef~akEd@@kEd@fpkEd@MH f~"kEd@f9ptkEd@@E d@f~u=l@t2PkEd@pkEd@pkEd@0=`@tekEd@f9puUPkEd@0h@K9 6=d@t+kEd@fxukEd@0h@9=\@t=X@tVh@h`@3 VQG ;$@vG$@PlV(@=(@uRVh@5(@%4 (@@d@@^_Ð@d@@^_UWVh,@FPEh4@6Pe@e@E {@h@@u u- @gǃVA1t?봐X@j {5\@m,Px b\@v`@jd@^h@Rl@P 搸ސ\@e@t@\@e@x@j hT@5\@03 up@hV@5\@3 up@hX@5\@2 up@whZ@5\@2 u3p@Oh\@5{@hl@. jW5{@h|@h`@-1 h@h`@1h@h`@ 1h4@h`@0hP@h`@0hp@h`@0h@h`@0h@h`@0h@h`@0h @h`@0h$ @h`@y0hD @h`@g0h\ @h`@U0h @h`@C0jVBCILc.$d!============DP=\@)EE \@=d@t7}t}u+}uE E \@EEEE=l@t#}uEEEEE \@=h@u=\@u =`@t%}5{@h @h`@. =h@ue=l@u\=`@uS=d@uJ}t}u8}uEEEEE \@l@P% \@=p@u/l@ |&t p@E \@\@d@\@EPujh @Sd@5e@5d@A5e@3#p@p@s\@F\@9E~VE \@4i؃=h@tu uu 3^_UWVu} Eq@EEE2q@}t E q@^_Ð><Fu}(]@tEEEEF>uՋEWy&E>.u_F}'E]@tEEEEF>uԋEW0&E5{@h!@h`@O, F>*t>/u>*uE琐>>tuEE$EE<F>t5{@h !@h`@+ E tE$EEMދE} ~E EEU}~}~uuhH!@W4,*}~ uhP!@}~uhT!@W, }thX!@W-}=EM0UWVi@i@}i@^_Ð|Vhx!@W+ uh!@Wx+ uh!@uh!@փ uh!@ʃ uh!@뾃 uh!@벃:uh!@W +눐^uh!@뎃\uh!@낃 |u4@Ph!@W* iVh!@W* GEE0  UVujPV EPPPh!@hm@n*m@^ÐUWVu} t*WEPh!@V) usG^_3^_ÐUWVu} GGE t2FFE t&}*uEEMՐE9Et3^_Ð}u^_ÐUu@u@u@u@!@ÐUVu0t t^95u@t@=u@u=u@u95u@uh%@5u@VFu@u@u@u@+u@u@3^ÐUVuE j%V5) u^Ðu>%t u@u@EPh%@V t>EP t!uh!@EE !@^h%@6EPh%@V9 tEP uh%@2EPh%@V t:EP xh&@5u@ Eu@EPh&@V tEP4 (h&@2EPh&@V t:EP h &@5u@Du@aEPh$&@V5 t:EP h,&@5u@9Du@EPh0&@V t>EP` TEPh<&@5u@& u@ EPhD&@V t hH&@EPhL&@Vq t"hP&@5u@Cu@eEPhT&@V9 E8EEP EPEPhl&@5u@&u@>%u@!@^ÐUE&@ÐUE&@ÐU}~E&@ÐUE&@ÐU EENEEEE M 8u5EE MI8HuÐEE MI8H~EEEE M 8EEE9E~3UWVu} &@ttt=^_ÐWh'@ !^_ÐWh'@ WB@&@^_ÐVh'@ Wh'@븐U=&@u h'@ &@ÐU=&@u'=&@t5&@h&@u =&@}}W&@t tt7Ðuh'@3 Ðu h'@ u 8ANuh(@ʐ&@ttt8Ðuh (@릐u h(@u @&@Ðuh(@o&@ttYt\u@E}E=&@~SEE&@@;&@~>&@ttXtu 뮐u릐h"(@"&@=&@&@t*tAt\h$(@&@븐h((@&@fh,(@&@ &@Ch0(@&@*&@t t=u h4(@^&@}&@t)tDtch6(@&&@uh8(@ E&@Ðu h@(@E@&@E@uhD(@뺐&@tt!ttYhP)@&@뻐hT)@&@fhX)@&@ &@Ch\)@&@*&@t t=u h`)@n&@}&@t)tHtg hb)@6&@uhd)@E&@u hl)@E@&@E@uhp)@붐&@tt)thVuhx)@ EE느}th)@&@Vu h)@u EE@&@EEsVuh)@J EE'^ÐU=&@t=&@uFh)@7=&@~.&@t t uh)@h)@&@=&@|5{@h)@h`@ =&@u h)@ÐUWVu@u@|Vh)@WB uh)@W$ uh)@uh)@փ uh)@ʃ uh)@뾃 uh)@벃,uh)@릃^uh*@뚃\uh*@뎃 uh*@낃 |u4@Ph *@W iVh*@W| GEE0  u@^_ÐUWVu} tWPh0*@V ^_ÐUWVuFFE=utu ^_E^_UlSWV}uhx*@42E}tE8u`*@EDž}t Eh*@1 ?u2W2=~fv*@WPO2Pt2/E/uW2jPe: } =dd@ ts}Xh*@P1P2EGuW1jP9}e=dd@ u fv*@9jh*@ t fv*@fv*@}t Euh\@31vhP0 E5}fv*@4}ufv*@{@V=uVfVTVBV0VEDž=t*@h@5d*@ tjj-5h*@ tIj5l*@ t(h5p*@ 5l*@=75h*@/75d*@!7fv*@}u fv*@fؘP8O^_[Ðt*@d*@ԁ@h*@|@l*@@p*@@}x} Dž\|@u9uA4 u$=p*@@05p*@m6}t Ejud*@P d*@ƀd*@ h*@d*@ l*@d*@ p*@d*@d*@3҉} uu &3 uE d*@fM fl5d*@d*@ȋf3fDFd*@d*@d*@ƀd*@ȋлj4jd*@Py d*@VWpf_^VW5 h*@=h*@9v$ u9v+PjW tFl*@ZV9s7}fff u9s+$Pj= Phju n1 @t3t*t!l*@ffHl*@ffDžDžh*@s+Eh*@c+}t%u ~l*@ffHt' ~l*@ffp*@SVJE9s3}}M u9s+$Pj uV.3 d*@%=ud*@ d*@xtp*@3҉d*@+d*@P5h*@5d*@2 d*@( d*@+P5l*@d*@P2 d*@l d*@(+P5p*@d*@(Pl2 d*@PEp*@E7EM*@ td*@M <*@ tE} |ád*@4Fl*@fxud*@xufx| l*@f@EPE*@M<t04  ud*@ <*@ E}|d*@ǀEE*@ tO}~ 0E4[  t)}u:E4d*@2  ud*@M <*@!E}kd*@ȋI\xd*@ȋIh|d*@ȋIx3^_[UEǀEǀEf3ffEfffhjEP ÐUd*@t%d*@PhTd*@lP, 3ÐUd*@pPhTd*@lPw, 3UEPju h |EÐUWVu} } u,3^_Ð>t&>$u~tF~>t M}uՋE^_ÐU WVuF=nc=bstK=ns=pttiEjuhDW@h*@V%Eh*@E}*jEPd*@p`) t ?ut\3^_ÐjEPd*@@ t؀? uӀu'jEPd*@p0 t ? ut^_ád*@,^_ËEE^_ÐU VuE juhW@h+@V2El*@E}u ^ÐEMA^ÐUWVu} EjuhW@h,+@VEp*@E}u3^_ËEME t?tP7'%uP%@E^_ÐUhX.@h`@Fh\@v*@4d.@h`@& h`.@h`@ÐUd*@tt%d*@pPhTd*@lP) 3ÐUWV3}O;vǙ+E}uM AM4u uEM AM4u E }}룐}~uF떋EM A^_Ð^_ÐU WVuEE]@uJFEE]@uE+t-u EFEE]@u3^_Ð0+E 0+EFE]@u؃}t^_Ë^_U WV=\@u[\@9E~E \@8-u E xu ^_Ðh\@E \@4f u \@ϐE \@\@05\@:tVu =\@tSƈEE E 0"PE 0j+ h\@"Ph\@j* jEPj* E \@\@\@8u\@\@?^_G?:E \@\@xtE \@\@@\@\@9Ed=\@tƈEE E 0!PE 0j<* h\@!Ph\@j* jEPj* @E \@\@\@\@8E \@\@\@8u\@\@\@^_ÐUVE E`@u`@t* `@h`@uu `@ t ^Ð^ÐU}rE=\@uEy@Px%$y@9EvEy@P5\@'\@Ey@Ey@E EEPuÐUWVy@EE +EE;EBM+EEEEEu} +}9uuVy@E uE)EuVϐ}}muWuy@E uWEEu?}~69uu!WEEuV EEuWV+}뗐+}9}r9uuKE+EM +M;|u EEPEE uuEEEVE)EuW E)E}^_UWVu} y@E|==\@t4PV5\@& uWV& u5\@W& ^_ÐEFEMu^_ÐUWVu} y@E|M=\@tDPV5\@C& uuV4& uWu%& u5\@W& ^_ÊEEFEEEMu^_UVEEE@ uE@ t(EH uuu R E@ t ^Ð^ÐW|$D$ L$% ‹ʁD$_ÐUVEEEEEE2EEEPuu  E^Vt$T$ :?3:.":: 3^ËH^ÐWVt$ |$;}pm`]PM@=0-  3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_Ð!z$ÐWVt$ |$;aL$AIUREI>;.I'$I 3^_ß^_ÐV|$3O|$ ыt$ D$^UE%EE%EMEE0ÐUWVu} Ex 2t@M +J)EM HuuWjVEMI^_WVE0h" NjM^_ÐULWVu}EDž$EEG G2u c@ E tz%tuuFE t%u+E܉E; vPWu%u|! }+G )G; v 2t W]G Dt/G uuj +EP t W[G t ^_ËE^_Ð3EEEEEFFFE X .$TaMܐMԐM̐MĐM@E뵐E@uE E @E }؉Eu덐E E @E u뵐EDuM E0k E0FE]@uE@tEEMEE E @Eȍ3E܉E؃}}&E\@E}E؉E,Et E\@EtE\@EEȉ  uWE@u_L ff f Š*Ȁ0M܋E܈ M܋E܊0E@: EM+M+ ! EEM EE E @Eȍ3E܉EE"EPNM܋M܈ EEEEEE E @Eȃ}XuD]@X]@Eԍ3E܉E؋Eȉ uE@uDEEM3M܋E܋#MMԊ %M uE@tEM+M+ ~ EEME}EXt;ot xtEE\@EE\@ꐐE@uEE E VW}p_^E%=Eu=E%=uEDž$}Eu]@|]@E܃rE%=uE\@EE EEEE}EEl]@EX]@8EPEP}}E@PVWu_^, E܃}t E\@'Et E]@EtE]@E(E؋E܀8tE܊0ME؈}u Et EE.E!E܀8tEE؋ME܊ ك~EEM(E܍EEE]@thEH } ~ 0MEME䊍0 ME0E9Ew}E]@u+-MME]@tEeMM+EEEME@uEE E VW}p_^E%=Eu1E%=uEDž$E|]@EFE%=uE]@EE EEEEEX]@El]@EPEPE<|<PVWu_^ E܃}tE;E}E܀80t E]@%Et E]@EtE ]@E(E؋EE~E܀8t}|0 EEE܊ME؈Eu}~ EE.E<|<9E~EME+EE0E}~E܀8t}|0 EEE܊ME؈yɍ(EE@u E}uEE E VW}p_^E%=EuDE%=uE}Gu]@|]@E܃EDž$E%=uE ]@EE EEEE}GEt]@ED]@uF Du V3 t3^_F c@EEE 9}w9} wًF9FrqF ur^WuF PJ E;tN E 3EE+u ^_V @uE H+u ȋE+^_ÐEEENM+E ~;rljEPuuW E)EFF c@+F 3;} VY+}uF Dt-F uEE Pj u t VTE^_ÐUWVud@E u 3^_ÐE8tE0V t^_ÐUWVu} G8Gu F~=u^_À>u=t3^_ÐW|$D$ L$H_3_ÐÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUVt`@95c@w^ÐV95c@w^ÐUWVu u^_ÐF t<F t3 VVF P }dd@F tvnFF FF낐UVuF u,BF t"~tF9FvVQF tF t^3^ÐUVu F %RBu<F N9 c@FM V@F %u2EEjEPF P N F %u~tF9Fu>uF Du V3 uDF D)VAyVEP ENFF t ^ÐE^ÐUWVuF~+ljE~F Dt3F c@+FF c@+F 3;} Vp}~#uWF P ;Et N ^_3^_ÐUVuF %tF u^ÊF $ F ~u VNF9Fu>F Du3F c@+FF c@+F 3;} V3^UWVu~ F uV}) u @@FN c@BhF tN F NF @N c@FFWt tF uN @^_ÐUWVuF c@+F }F c@F^_Ð9>~>^_Ð63ÐUdd@EEPhTu }Edd@3ÐÐ6ÐUWVE}v3^_Ð=xd@u6|d@ xd@xd@ |d@ld@|d@hd@xd@ld@td@EE5hd@Eu>5hd@9=td@u5td@>tދE;wE;R$;w9=ld@Bxd@6E}v5td@jhld@;t?EEe ǹ t@Ǚ+ډUNjE'E ld@+ td@+EEe E;EE=vh@|mu@u+EPT=td@ld@8E+EDld@;tld@ȋ ld@xd@bEhd@;spd@hd@hd@ 95td@u hd@td@F^_ÐUWVu=hd@$ld@9u=td@^_ÐUWV}Gt WG+Eu L t9uu^_ËE EE9EsEEEPuV6 E;sƋEE;rEE+Mpd@띐WV|$ t$L$Njʁ^_øÐT$d@R d@+D$øIT$d@3ø*Ð%3ÐÐdd@ÐOT$%s: malloc is out of space! @(#)infocmp.c 1.1 87/04/09 There are %d boolean capabilities. There are %d numeric capabilities. There are %d string capabilities. unknown_booleanunknown_numberunknown_stringNULLkbbskBbtkCclkllekddokrndkuupkDdckLdlkScdkEcekhhokTstkIickIimkAalkFsfkHllkRsrkMeikactknkolooking at 'bs' \bbslooking at 'pt' \tptlooking at 'nc' \rnclooking at 'ns' nslooking at 'ug' uglooking at 'dB' dBlooking at 'dC' dClooking at 'dF' dFlooking at 'dN' dNlooking at 'dT' dTlooking at 'bc' \bbclooking at 'nl' \nnlsetting up terminal type '%s'. %s: malloc is out of space %s=%d. %s=%d. %s=''. adding in terminal type '%s'. comparing %s (TERMINFO=%s) to %s (TERMINFO=%s). comparing %s (TERMINFO=%s) to %s. comparing %s to %s (TERMINFO=%s). comparing %s to %s. comparing booleans. %s= T. !%s. %s: %c:%c. %s: %d:%d,changed=%d,seen=%d. comparing numbers. %s: use= order dependency found: %s: %s has %d, %s has %d. %s= %d. !%s. %s: %d:%d. %s: %d:%d,changed=%d,seen=%d. comparing strings. use= order dependency found: %s: %s has '', %s has ''. %s= ''. !%s. %s: '',''. %s: '':'',changed=%d,seen=%d. use=%s, %s: 'use=%s' did not add anything to the description. setting TERMINFO=%s. TERMINFO=%se@TERMTERMINFOducnILCvV1rw:s:A:B:dilcinfocmp.c 1.10%s: version %s usage: %s [-ducn] [-ILC] [-1Vv] [-s d|i|l|c] [-A directory] [-B directory] term-names ... -d print differences (the default for >1 term-name) -u produce relative description -c print common entries -n print entries in neither -I print terminfo entries (the default for 1 term-name) -C print termcap entries -L print long C variable names -1 single column output -V print program version -v verbose debugging output -s change sort order -A set $TERMINFO for first term-name -B set $TERMINFO for other term-names %s: must have at least two terminal names for a comparison to be done. /dev/null%s: mandatory padding removed %s: padding information moved to end %d.%d%d.%d*@(#)cexpand.c 1.1 87/04/09 \%.3o\E\t\b\f\n\r\072\^\\^%c%c%s%s%s@(#)infotocap.c 1.1 87/04/09 !!! MUST CHANGE BY HAND !!!%r%p*%d%d%p*%02d%2%p*%03d%3%p*%2.2d%2%p*%3.3d%3%p*%c%.%p*%'*'%+%c%%+%c%i%i%%%%p*%'*'%>%+%p*%'*'%+%;%%>%c%c@(#)print.c 1.1 87/04/09 <ambsbwdadbeoeshchshzinkmmimsncnsosptulxbxnxoxsxt1codBdCdFdNdTknlipbsgugALDCDLDOICLERISFSRUPaealasbcbtcdcechclcmcsctcvdcdldmdsedeifshoi1i2icifimipisk0k1k2k3k4k5k6k7k8k9kbkdkekhklkokrkskul0l1l2l3l4l5l6l7l8l9ndnlpcr1r2r3rcrfrpscsesosrsttetitsucueupusvbvevivs%s, %s:\ Terminal type %s %s flags %s@, :%s@:\  %s@ %s, :%s:\ %s :\ : :%s@,%s@%s@,%s,%s%s, :\ numbers %s@, :%s@:\ %s @ %s#%d, :%s#%d:\ %s = %d :\ : :%s@,%s@%s@,%s#%d,%s#%d%s = %d, :\ strings %s@, :%s@:\ %s@ %s=, . :%s%s=:\ %s = '' :\ : :%s@,%s@%s@,%s=%s,.%s=%s%s = '%s', : %s: WARNING: termcap entry is too long! end of strings \%.3o\E\t\b\f\n\r\,\^\\\s^%c%c@(#)iexpand.c 1.1 87/04/09 %sunknown @4*@ԁ@|@@@TERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS#$" !+,&      n ijk    lopmqr&5   %)*./ 024361ABDEFGHIJKCN9;?TPM<>QRU@V87=XLOSY:WZ[]^_`abcd\' fe!"ghwstxvuz{|~}y+#(,$- /usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . P-@T-@x-@-@-@-@.@(.@auto_left_marginauto_right_marginno_esc_ctlcceol_standout_glitcheat_newline_glitcherase_overstrikegeneric_typehard_copyhas_meta_keyhas_status_lineinsert_null_glitchmemory_abovememory_belowmove_insert_modemove_standout_modeover_strikestatus_line_esc_okdest_tabs_magic_smsotilde_glitchtransparent_underlinexon_xoffneeds_xon_xoffprtr_silenthard_cursornon_rev_rmcupno_pad_charnon_dest_scroll_regioncolumnsinit_tabslineslines_of_memorymagic_cookie_glitchpadding_baud_ratevirtual_terminalwidth_status_linenum_labelslabel_heightlabel_widthmax_attributesmaximum_windowsback_tabbellcarriage_returnchange_scroll_regionclear_all_tabsclear_screenclr_eolclr_eoscolumn_addresscommand_charactercursor_addresscursor_downcursor_homecursor_invisiblecursor_leftcursor_mem_addresscursor_normalcursor_rightcursor_to_llcursor_upcursor_visibledelete_characterdelete_linedis_status_linedown_half_lineenter_alt_charset_modeenter_blink_modeenter_bold_modeenter_ca_modeenter_delete_modeenter_dim_modeenter_insert_modeenter_secure_modeenter_protected_modeenter_reverse_modeenter_standout_modeenter_underline_modeerase_charsexit_alt_charset_modeexit_attribute_modeexit_ca_modeexit_delete_modeexit_insert_modeexit_standout_modeexit_underline_modeflash_screenform_feedfrom_status_lineinit_1stringinit_2stringinit_3stringinit_fileinsert_characterinsert_lineinsert_paddingkey_backspacekey_catabkey_clearkey_ctabkey_dckey_dlkey_downkey_eickey_eolkey_eoskey_f0key_f1key_f10key_f2key_f3key_f4key_f5key_f6key_f7key_f8key_f9key_homekey_ickey_ilkey_leftkey_llkey_npagekey_ppagekey_rightkey_sfkey_srkey_stabkey_upkeypad_localkeypad_xmitlab_f0lab_f1lab_f10lab_f2lab_f3lab_f4lab_f5lab_f6lab_f7lab_f8lab_f9meta_offmeta_onnewlinepad_charparm_dchparm_delete_lineparm_down_cursorparm_ichparm_indexparm_insert_lineparm_left_cursorparm_right_cursorparm_rindexparm_up_cursorpkey_keypkey_localpkey_xmitprint_screenprtr_offprtr_onrepeat_charreset_1stringreset_2stringreset_3stringreset_filerestore_cursorrow_addresssave_cursorscroll_forwardscroll_reverseset_attributesset_tabset_windowtabto_status_lineunderline_charup_half_lineinit_progkey_a1key_a3key_b2key_c1key_c3prtr_nonchar_paddingacs_charsplab_normkey_btabenter_xon_modeexit_xon_modeenter_am_modeexit_am_modexon_characterxoff_characterena_acslabel_onlabel_offkey_begkey_cancelkey_closekey_commandkey_copykey_createkey_endkey_enterkey_exitkey_findkey_helpkey_markkey_messagekey_movekey_nextkey_openkey_optionskey_previouskey_printkey_redokey_referencekey_refreshkey_replacekey_restartkey_resumekey_savekey_suspendkey_undokey_sbegkey_scancelkey_scommandkey_scopykey_screatekey_sdckey_sdlkey_selectkey_sendkey_seolkey_sexitkey_sfindkey_shelpkey_shomekey_sickey_sleftkey_smessagekey_smovekey_snextkey_soptionskey_spreviouskey_sprintkey_sredokey_sreplacekey_srightkey_srsumekey_ssavekey_ssuspendkey_sundoreq_for_inputkey_f11key_f12key_f13key_f14key_f15key_f16key_f17key_f18key_f19key_f20key_f21key_f22key_f23key_f24key_f25key_f26key_f27key_f28key_f29key_f30key_f31key_f32key_f33key_f34key_f35key_f36key_f37key_f38key_f39key_f40key_f41key_f42key_f43key_f44key_f45key_f46key_f47key_f48key_f49key_f50key_f51key_f52key_f53key_f54key_f55key_f56key_f57key_f58key_f59key_f60key_f61key_f62key_f63clr_bolclear_marginsset_left_marginset_right_marginlabel_formatset_clockdisplay_clockremove_clockcreate_windowgoto_windowhangupdial_phonequick_dialtonepulseflash_hookfixed_pausewait_toneuser0user1user2user3user4user5user6user7user8user9.@.@.@.@.@.@.@/@/@$/@4/@H/@X/@h/@|/@/@/@/@/@/@/@/@ 0@0@$0@40@@0@X0@`0@l0@t0@0@0@0@0@0@0@0@0@ 1@1@(1@01@@1@X1@h1@x1@1@1@1@1@1@1@1@1@1@2@2@(2@82@D2@T2@h2@t2@2@2@2@2@2@2@2@3@3@,3@D3@X3@l3@3@3@3@3@3@3@3@4@4@,4@84@L4@\4@l4@|4@4@4@4@4@4@4@4@4@4@4@5@5@5@ 5@(5@05@85@@5@H5@P5@X5@`5@h5@p5@x5@5@5@5@5@5@5@5@5@5@5@5@5@6@ 6@6@6@$6@,6@46@<6@D6@L6@T6@\6@d6@p6@x6@6@6@6@6@6@6@6@6@7@7@ 7@07@<7@H7@T7@d7@p7@x7@7@7@7@7@7@7@7@7@7@8@8@ 8@,8@08@@8@P8@`8@l8@t8@|8@8@8@8@8@8@8@8@8@8@8@9@9@$9@49@<9@H9@T9@\9@h9@t9@9@9@9@9@9@9@9@9@9@9@9@:@ :@:@(:@4:@@:@P:@\:@h:@t:@:@:@:@:@:@:@:@:@:@:@:@;@ ;@;@$;@0;@<;@H;@P;@\;@l;@x;@;@;@;@;@;@;@;@;@;@<@ <@<@$<@,<@4<@<<@D<@L<@T<@\<@d<@l<@t<@|<@<@<@<@<@<@<@<@<@<@<@<@<@<@<@<@<@=@ =@=@=@$=@,=@4=@<=@D=@L=@T=@\=@d=@l=@t=@|=@=@=@=@=@=@=@=@=@=@=@=@=@>@>@>@,>@<>@L>@X>@`>@l>@x>@>@>@>@>@>@>@>@>@>@>@>@>@>@>@bwamxsbxhpxenleognhckmhsindadbmirmsgroseslokxthzulxonnxonmc5ichtsnrrmcnpcndscrcolsitlineslmxmcpbvtwslnlablhlwmawnumcbtbelcrcsrtbccleareledhpacmdchcupcud1homeciviscub1mrcupcnormcuf1llcuu1cvvisdch1dl1dslhdsmacsblinkboldsmcupsmdcdimsmirinvisprotrevsmsosmulechrmacssgr0rmcuprmdcrmirrmsormulflashfffslis1is2is3ifich1il1ipkbsktbckclrkctabkdch1kdl1kcud1krmirkelkedkf0kf1kf10kf2kf3kf4kf5kf6kf7kf8kf9khomekich1kil1kcub1kllknpkppkcuf1kindkrikhtskcuu1rmkxsmkxlf0lf1lf10lf2lf3lf4lf5lf6lf7lf8lf9rmmsmmnelpaddchdlcudichindnilcubcufrincuupfkeypflocpfxmc0mc4mc5reprs1rs2rs3rfrcvpascindrisgrhtswindhttsluchuiprogka1ka3kb2kc1kc3mc5prmpacscplnkcbtsmxonrmxonsmamrmamxoncxoffcenacssmlnrmlnkbegkcankclokcmdkcpykcrtkendkentkextkfndkhlpkmrkkmsgkmovknxtkopnkoptkprvkprtkrdokrefkrfrkrplkrstkresksavkspdkundkBEGkCANkCMDkCPYkCRTkDCkDLksltkENDkEOLkEXTkFNDkHLPkHOMkICkLFTkMSGkMOVkNXTkOPTkPRVkPRTkRDOkRPLkRITkRESkSAVkSPDkUNDrfikf11kf12kf13kf14kf15kf16kf17kf18kf19kf20kf21kf22kf23kf24kf25kf26kf27kf28kf29kf30kf31kf32kf33kf34kf35kf36kf37kf38kf39kf40kf41kf42kf43kf44kf45kf46kf47kf48kf49kf50kf51kf52kf53kf54kf55kf56kf57kf58kf59kf60kf61kf62kf63el1mgcsmglsmgrflnsclkdclkrmclkcwinwingohupdialqdialtonepulsehookpausewaitu0u1u2u3u4u5u6u7u8u9LD@PD@TD@XD@\D@dD@hD@lD@pD@tD@xD@|D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@D@E@E@ E@E@E@E@ E@$E@(E@,E@0E@8E@?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~h3? ?@C?$@?$@$@$@@@c@@0@)#(@cbil83i-sc:6rc/us.1t1.1 )#(@cbil83i-eg:6em/ntesm1 s.1..)#(@cbil83i-eg:6ts/nrhcr1 s.1..)#(@cbil83i-eg:6ts/npmcr1 s.1..)#(@cbil83i-eg:6ts/npcnr s.y1.1)#(@cbil83i-ys:6ca/sssec1 s.1..)#(@cbil83i-eg:6ts/nmcnr s.p1.1)#(@cbil83i-eg:6ts/ntacr1 s.1..a3.55)#(@cbil83i-eg:6ce/nc.tv1.1 )#(@daehlav:.seu.1 h h)#(@daehnan:1 h.2..)#(@cbil83i-eg:6em/nrhcm1 s.1..)#(@cbil83i-ys:6er/ss.da1.1 )#(@cbil83i-eg:6ts/nypcr1 s.1..)#(@cbil83i-eg:6ts/nnelr1 s.1..)#(@cbil83i-ys:6lc/s.eso.1 s s)#(@cbil83i-eg:63i/nd_68.ata.1 s s)#(@cbil83i-ys:6oi/s.ltc.1 s s)#(@cbil83i-eg:6am/nd_ll.ata.1 s s)#(@cbil83i-eg:6em/nypcm1 s.1..)#(@cbil83i-ys:6po/ss.ne1.1 )#(@cbil83i-ys:6bs/ss.kr1.1 )#(@cbil83i-ys:6rw/s.eti.1 s s)#(@cbil83i-ys:6ik/ss.ll1.1 )#(@cbil83i-ys:6eg/sdipt1 s.1..)#(@cbil83i-rc:6ec/trorr1 s.1..)#(@cbil83i-eg:6uc/ntixe1 s.1..83i-eg:6em/nrhcm1 s.1..)#(@cbil83i-ys:6etc/volcopy100755 0 2 76040 12541741 7436 37777777777 Lj" [$ @.text[ .data@@$ [@.bss<@<@.comment|ÐET<@RU RP PZjÐUhjZUEEET@ET@9>@t/hX@8Yt9-u <@EEPNYh$jYET@h@Yt؃=>@tj >@HPYjYYjhg@<@U4`3 uEEjhk@<@U4<3 uEEEEE8u}|}|<@U U jhw@ho@+ jhYYUj >@HP-YUh@Yuj 3YYU u&Y=T@th@&YEAE=AtL=N=Y=at/=nt~=ytmh@\&Y5>@j EP$ 멸9>@ujh@5>@W jXY=>@tj >@HPDXj^XYK3DU\EEEhjWjh@E p1 uzEE PRU0|3EE=93U#tE PRRu3#YYL@E ME pu#YYL@jh@E p0 uvEE PRU0|3EE=93U#tE PRRbY @E ME PRRAY @^jh@E pi0 urEE PRU0|3EE=93U#tE PRR"Y@@E ME p!Y@@jh@E p/ uoE PRU0|3EE=93U#tE PRR!Y<@hE ME po!Y<@Kjh@E pV/ u P@'jh@E p2/ uEjh@E p/ u@Ejh@E p. u Ejh@E p. u T@jh@E p. u @mjh@E px. u @Hjh@E pS. u@E E ph@h 8@" jTYE ME P=-e}t'9@uh@h 8@"jVTY}t'9@uhS@h 8@o"j)TYE >@h@h@H>@h>@&Y9Et,h@h 8@!"h@h 8@"j SYjE pRE=}BE ph@h 8@! h@<@H<@Puh!@! j nSYYjE p_RE=}BE ph@h 8@y! h@<@H<@Puh!@ j SYYEPu,|E%= t*h@<@H<@Puh!@k j RYYEPu,|E%= t*h"@<@H<@Puh!@ j xRYYjuE p p>@juE pp>@=>@t3=>@t*hB@<@H<@Puh!@ j RYY=0@u 0@d0@ PPY>@%>@>@C@=>@u=>@u <@9<@t =>@0h5>@uE =s*hb@<@H<@Puh!@ j @C@P>@D>@C@P>@*hv@<@H<@Puh!@ j mPYYC@P?@@@h5>@uD =sTh@h 8@a=>@u3E}u3U th@Yuj OYjC@PhB@8! jC@PhB@! C@PA@B@9<@t`=>@tWh@ Yh@Yh@*Yuj NOYjE ph@@ jE p h@@ =>@>@=4@E>@=4@t3E8@58@h@rh@eYh9@ZYjE ph<@ jE phB@ jE pEP jE phB@ =>@<@;<@u<@;8@tW<@P<@PhV@h 8@\58@5<@ht@h 8@>h@Yuj MYjh<@EPH jh@@E pC' tZh@@E ph@C =>@u3E}u3U th@?Yuj cMYjh@E p & tsjh@@E p & tZh@@E p h@ =>@u3E}u3U th@Yuj LYE P =-u E @ @@E P=-u E @B@9<@u3EB@;@@~3U#tLE pph@ hB@sYPh @}uh@Yuj LYjhB@E p% tDhB@E ph- @ h@Yuj KYjE phB@5 A@9?@~+=>@u"hZ @>Yh@gYuj KY=>@uLjhB@h@@$ t4hB@h@@hu @ }uh@Yuj 6KYE pph @ }t$h @Yu(h @Yj JYh @Yj gYuEYuEYwrjE pIEjE pIE=>@tr8@<@<@<@>@<@4@<@0@ <@0@<@>@ ~hh<@uI E pEP>=>@thh<@ub> 9<@~e<@H4@0@>@j>@ P=>@tEEPD =>@t?@A@C@@+>@>@EP=>@tu58@5<@hi$@ =>@tu58@5<@h$@Yh$jH7=>@tEPEPu` EEPEPuH Euu>u5>@h @xu g Y=>@tjHYjHYU4>@>@>@=P@@9L@EPYE̍EPYU t5;@h @jEHY>@=>@t$uBYuBYE>@E>@7uBYuBYE>@E>@jh!@5>@-G >@n0@9>@~>@0@=>@9>@u10@)>@Q>@D@9>@~>@0@jEP5>@; E}| E=rt69>@ujh!@5>@tF jGY EPY0@ P5>@uJ; >@0@ ;td5>@h!!@iE>@UfPE0@9Eu=>@uj>@0@ PuA =,@uW9>@tJ9<@uB,@j>@pC@P j>@pC@P =>@tqjh=!@5>@RE jEP5>@B: E}| E=wt49>@ujh?!@5>@E jEYEPe Y0@ P5>@u D >@0@ ;5>@5;@hA!@ =>@t{9>@uj h_!@5>@D j$EYhj!@YtBh!@Y <@H@>@>@>@jH@ Pu @ j DY=>@tMjh!@5>@D 9>@t+0@)>@>@D@9>@~>@0@0@)>@>@D@=>@~4@9D@x9>@ujh!@5>@xC =>@jEP5>@V8 E>@0@~d}| E=rt EP YjEP5>@8 E}| E=wt EPd YjEP5>@7 E}| E=Dt EP2 Yjh!@5>@B 5>@>Y5>@>Y=>@~ X3QjEP5>@l7 E}|E=DujBYU<@H<@Puh!@s j BYUu;YU j h!@u' trjh!@u t\j h!@u tFjh!@u t0jh!@u tjh!@u t3ËE>@<@jYhh<@u]6 u}u h!@Y h!@YjYYjh "@h<@G h"@h 8@=>@u:h@gYuj AYju h<@ B@Uh("@<@H<@Puh!@ j ?AYY)<@u }uhG"@h 8@Yj AYE =-ujh<@u f Yju h<@b tCu h<@h\"@h 8@h@Yuj @Yju h<@  =@uih"@!Y5>@jEP E=ct E=Cu*@(h"@h 8@{@@ @}u^9@u"<@8@<@@@<@L@99@u,<@8@<@ @<@@ 8@9@=@@u3u h"@- 5>@j EP EP Y@@=@@9@@=L@u2h"@ Y5>@j EPP EPu YYL@ 9L@uk@@4@0@9L@uk@@4@j9L@uk@@x4@h(#@h 8@ L@q= @uOEPh#@h 8@ hH#@ Y5>@jEP EPY @= @t=@uKh#@ Y5>@jEPB E=yt E=Yu @ @5@5 @- 4@h<@h#@Q 9@u<@@<@5@@h#@' L@<@5L@h#@ M5 @jYPh#@  @<@9@uh#@h $@ Y@<@EU>@Ej YhuuF1 E=t`jZ Yh$@h 8@ =>@t0h@Yuj <Yju h<@ uN7Y3j YEP<@ju @P tTu E@Ph.$@h 8@{ hK$@Yt3=>@t ju h<@ jE@Pu w j3cUPE Eƀ<@E9Erjh`$@h<@. U=>@tu58@5<@hi$@0 =>@tu58@5<@h$@ Ujh$@=uh$@h 8@x j2;Yh$@ Yh"%@ Yh>@9YPhB@hB@Eph@@h@@phG%@ P $ P Yh%@ Yj:YUD@>@H@<@<@<@uM5Yj Yj5>@o9E}~ 9E~ h%@KYhh<@u9 j5>@'9E}~ 9E~ h &@YuutE<@;<@S5<@h&@h 8@ <@Ph$&@h 8@ uo4Y>@} h%@Y5<@h%@>@` ;@5>@j EP >@@ t 9;@tEP-YHEEUEt+EPu|-=>@tjEPh<@d E 8t>@=>@j5>@7E}~ 9E~ h%@Yuuu=>@tu58@5<@hi$@=>@tu58@5<@h$@YEUE=Ru?h9&@Y5>@5<@h&@ j >@HP7j7YËE=Wu hV&@qYht&@YUPuY,YHEEU= uu;,YHEEUh&@uth&@uuh&@uhth&@uTuh&@u9uh&@uu3U9Eu&@ø9Eu&@9Eu&@ܸ9EuҸ&@UPE9E u3E9Eu"}th&@h 8@jh6Yø9Eu }t9Eu }txи9Eu }t빸9Eu머9Eu뗸9Et 9Eu <y3rUuYPYUWVS<@&@GF҈uEk@'@<@GFGFGFGE@k'@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW<@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUPWVS}E15@uJG15@u=+t =-u EG15@u 3]u}ø0+Ëk 0+G15@uރ}t뾋븐UWVS} uEE~,F t!O>(V?Y=uE9Eu~3]u}N;>}Sj vucEtE+E؋E)F>}3V $;@+V;}V-Y}u +gEEvUWVD'@)@9;@s ;@h~PW =uh~Ph05@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}t<@Et<@EX7@s3UtE]t<@E`7@Eh7@E7@r5E7@r7@E7@AE7@s6EE]@)EE7@r݋EE 9P܃}t؁t<@<@v<@E7@t<@r05}fEf fEmE]mE܉E@0Ee 7@];r&=5|+t<@ut<@1}tCF0N<9t<@]Ћuԋ}ËEE0]@EEsEE 9P EEEE7@MU]vEu}fEf fEm]mE܉EFUR0EMm]E7@E57@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G $;@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W $;@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}<@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð* L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W$;@UW8@;= ;@r3}ÃG uUW8@ WY;= ;@r}UWV}tlG t6G t3WVYG PY};@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG $;@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G $;@+G?}3W $;@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G $;@+G?}3W $;@+W;}WY3UWV}G G u}}&uC@ G@GW $;@*h!YGt@O G W$;@GGVYtG uO @u}G K@WR$;@UWV}G $;@+G}G $;@Wu};7}7𐐐3ÐU;@EEPhTu } E;@3ø6ÐÐU WVSE9ET=<@u<<@ <@<@ <@;@<@;@<@;@<@E@3؋=;@E&;5;@<@E@E=w=<@j Y;@@;t?3Ee ƹ3tL3+‰EEE2;@+<@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5<@;@0E+E-;@@;t;@;@;@<@~Љ;@;5;@v;@;@;@ 9=<@u ;@<@G(=;@95<@u=<@7tލ;r;l%;UWV}5;@%;@9u5<@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ;@Nj]u}WV|$ t$L$Njʁ^_øÐT$ <@Ru <@+D$øT$ <@3øÐ0[NL$0[:L$0+L$0L$0 L$0%Ã%3Ð;@ÐsT$@@(#)volcopy RTS 5.3b of Jun 29, 1988Want Shell? PS1PS2/bin/sh/bin/shWant to quit? Type `y' to override: YES ABORT (y or n)?-bpi-type-feet-reel-buf-a-scsi-s-y-tc-tr-nonscsi<%s> invalid option Options for both cartridge and reel tape have been specified. Options for both cartridge and reel tape have been specified. /dev/ttyrUsage: volcopy [options] fsname /devfrom volfrom /devto volto %s: cannot open%s: cannot openFrom device not character-specialTo device not character-specialUse dd(1) command to copy tapesread error on inputFile System type unknown--get helpRead error on output olcopy: IF TAPE 1 HAS NOT BEEN RESTORED, STOP NOW AND START OVER *** Continue? You will need %d tapes. ( The same size and density is expected for all reels) Tape disagrees: Reel %d of %d : looking for %d of %d arg. (%.6s) doesn't agree with from fs. (%.6s) -arg. (%.6s) doesn't agree with from vol.(%.6s) %s less than 48 hours older than %s To filesystem dated: %sarg.(%.6s) doesn't agree with to vol.(%.6s) from fs larger than to fs warning! from fs(%.6s) differs from to fs(%.6s) From: %s, to: %s? (y or n) volcopy: STOP (DEL if wrong) END: %ld blocks. olcopy: cannot open pipe, err = %d rwRRead error on block %ld... rWWrite error %d, block %ld... Tape errorWant to try another tape? Type `y' when ready: wDoneDone%s %d reel(s) completed /dev/rdsk/frdsk/f/dev/rsctrsct/dev/rctrctinput tapeoutput tapeVolcopyNot a labeled tape. Input tape not made by volcopyInput tape is empty Header volume(%.6s) does not match (%s) Enter type of tape, (c)artridge or (r)eel : Enter size of reel in feet for <%s>: Size of reel must be > 0, <= 3600 Tape density? (i.e. 800 | 1600 | 6250 )? Bpi must be 800, 1600, or 6250 Enter the type of tape (i.e. 300 | 600A | 615A | 600XTD ) : %s is an unknown type of tape. Is the cartridge tape drive a SCSI drive? Reel %.6s, %d feet, %d BPI , %s tape, scsi drive ,non-scsi drive Cannot read header Volume is <%.6s>, not <%s>. Want to override? Volcopy Writing TAPE %d of %d, VOL = %.6s Reading TAPE %d of %d, VOL = %.6s /etc/log/filesave.logvolcopy: cannot access /etc/log/filesave.log tail -200 /etc/log/filesave.log >/tmp/FSJUNKcp /tmp/FSJUNK /etc/log/filesave.logecho "%s;%.6s;%.6s -> %s;%.6s;%.6s on %.24s" >>/etc/log/filesave.logrm /tmp/FSJUNKchgreelMount tape %d Type volume-ID when ready: output ERRoutput ERRCannot re-write header-%s Try again!input ERRNeed tape %d, label says tape %d olcopy: read sequence error olcopy: write sequence error volcopy: pipe error reel %d, %d blocks 600600A615615A300600XTD300615A600A600XTDA 300 is not a scsi tape. Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDecUnknown error: )@)@)@)@)@)@)@*@"*@4*@D*@W*@i*@z*@*@*@*@*@*@*@*@*@+@+@++@?+@P+@_+@n+@+@+@+@+@+@+@+@,@,@6,@O,@^,@l,@,@,@,@,@,@ -@-@-@%-@=-@T-@h-@}-@-@-@-@-@-@-@-@-@ .@$.@B.@X.@i.@.@.@.@.@.@.@.@.@.@.@/@/@$/@?/@\/@s/@/@/@/@0@D0@M0@V0@_0@h0@q0@z0@0@0@0@0@0@0@0@0@0@0@0@0@0@1@ 1@1@1@(1@21@<1@F1@P1@Z1@d1@n1@x1@1@1@1@1@1@1@1@1@1@1@1@1@1@2@2@'2@12@A2@O2@^2@o2@2@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c3@3@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFN8BBZ8B|ABBBBy868BB8f8B8888888888BBBBBBBBBBB:BY?BBBBBBBBBBBBBBBBg:BBBBBBBBBBA8:<Y?88BB8BBQ:BBBAB:BBg:-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$K@$K@ ;@,K@L@3.1bS03.1bS0 ;@,K@etc/killall100700 0 2 37140 4201131442 7410 37777777777 L! ( X @.text( .dataX @X @X)@.bssP@P@ .commentP>ÐETP@RU RP P jÐUWE=t(=u(E phYW5YPY}ÿ E 0h @h`@c jYUWVS3Džl3l؃u$h @Y`dhjh @'t)jh@V =t f@'V"Y f@'jh @&uh @Yy3hpPV =u%@='h @YjYptrp=td~;uWEtlFE;l~:uEPl&=u#j h @j@& EP-YPPYG@;33UuAYUWE\@E}}E؉EE3-}u(E @UMEEG|΃}t EM-E@E}ÐUPWVS}Eq@uJGq@u=+t =-u EGq@u 3]u}ø0+Ëk 0+Gq@uރ}t뾋븐UWV @X @90@s 0@< @uYtVuj$ jh @j$ WYPWj{$ jh @jj$ u}ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËjP'$ËjP'#øUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  d@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlL@Dž\9PtP؉PNKPPoY Ek E-0GEq@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlR@Dž\?E2ETMDžlU@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhEq@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hx@YEt Eu =t@t3txE@t@h@EPbuEPSjEP |>h~PW =uh~Php@ 3W YkUjuuuu u#Ujuuuu uU$WVS}`@E`@E@s3UtE]`@E@E@E@r5E@r@E@AE @s6EE]@)EE(@r݋EE 9P܃}t؁`@@v@E0@tq@r05}fEf fEmE]mE܉E@0Ee 8@];r&=5|+`@u`@1}tCF0N<9`@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G d@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W d@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}P@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3J ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@@ WY;=`@r}UWV}tlG t6G t3WVYG PY}0@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG d@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G d@+G?}3W d@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G d@+G?}3W d@+W;}WY3UWV}G G u}}&u@"@GW d@*h YGt@O G Wd@GGVYtG uO @u}G &@WRd@UWV}G d@+G}G d@Wu};7}7𐐐3ÐU0@EEPhTu } E0@3ø6JÐU WVSE9ET=D@u @P @\ @r @~ @ @ @ @ @ @ @ @@@#@2@J@W@m@|@@@@@@@@"@0@I@f@@@@@@@@@@,@A@R@_@u@@@@@@@@@@-@C@S@a@}@@@@@@@@@@@ @7@^@@@@@@@#@,@5@>@G@P@Y@b@k@t@~@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@@"@3@K@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF ,)Yiiiiiiiii   1 | U  -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@&@&@`@&@\(@3.1bS03.1bS0`@&@etc/unlink100700 0 2 774 4201131444 7231 37777777777 L ! D@.text .data@@D@.bss@@.commentÐET@RU RP PjÐU9Etjh@j9 jOYE p Yj;Yø 3ÐÐ@ÐT$UÐ@@(#)unlink 5.3b of Jan 27, 1988Usage: /etc/unlink name 3.1bS03.1bS0etc/captoinfo100755 0 2 124674 4201206120 10005 37777777777 Lk! n6<t@.textn .datat@t@6to@.bssE@E@<.comment4ÐETE@RU RP% PYnjÐUWVu} >t#E 8uI8Hu^_Ð?tE 8uI8Hu֐3^_ÐUV5I@V*> t > t>:uF>>.=@tFPFPh@hA@PDFPh@h$8@* uFPh@h8@ rFPhP@h8@ TFP5S@5S@h@hA@C-=@tVh@hA@C F t<#t[:t2=t]@tdV5S@5S@h@hA@|CEE=@}u.X@dEڐEΐE}u `@0E th@E tp@|@PVh@hA@BVh@h$8@ t,}} V5S@5S@h@Vh@h8@t t-}}V5S@5S@h@pVhP@h8@0 t-}}V5S@5S@h$@,V}u h@?}u p@0E tx@E t@@P5S@5S@h@hA@A^ÐUWV5S@5I@{#tE u @u@@PW5S@5S@h$@hA@6A3^_Ð=@t7h\@hA@A5I@hA@"h`@hA@@=I@u.34$8@' I@ 0N@1=@~U4$8@hd@hA@@ 4-@ht@hA@}@ I@0N@0Ph@hA@Z@ F<$8@t348@d& I@ E@fq=@~U48@h@hA@@ 4.@h@hA@? I@E@pPh@hA@? F<8@s=I@u E@I@3xh@hA@?I@I@<tSI@I@8u?48.@48@5S@5S@h@hA@??I@I@F<8@hI@48@5& I@ I@=@[48@h@hA@> 48.@h@hA@> I@I@<h@hA@>I@I@4hA@V6h@3b4@0%k I@1R@=@~;4@h$@hA@(> kI@0R@Ph4@hA@> F<@u3f4@$ I@fqR@=@~<4@h@@hA@= I@pR@PhP@hA@= F<@u3qhx@hA@q=I@R@tLI@R@8u84P@5S@5S@h@hA@&=I@DŽR@F:t>u95I@t65I@5S@h@hA@<5$N@h@hA@; ^_ÐUWVu=@~Vh@hA@; 3G@uDE8.t<8*t7VPh$@EP7Vh,@EP7 EPWp^_ÐUWV=@~h@hA@`6I@ t@R@nE3DI@ t@R@GE衸I@ t@R@<8#I@R@GE顸I@ t@R@<8,uG=@~5h<@hA@5EPhA@x-hT@hA@5EEVE4D@HsuV?7 tdEP5S@5S@hx@hA@-5VhA@,h@hA@ 5uhA@,h@hA@4EE}E@u>.t >*Fސ}u4EP5S@5S@h@hA@4h@hA@3I@ t@R@<8^_ÐUWVu} LjEEEPl*PhH@V3 ^_ÐUWV=@~h@hA@t3I@ x@R@E3zI@ x@R@FE=@~5h@hA@3EPhA@*h@hA@2I@ x@R@<0I@R@FE=@~6h@hA@2EPhA@h@hA@w2E3uEPD4 5S@5S@h@hA@22EPhA@T4P@h4@hA@2 uhA@)hT@hA@1EPhA@hh@hA@1EG}@u >.t>*u ^Ð>tF~%UWVu3>t>F~%u>tBtDt ntrt F t^_Ð3^_ÐUWVI@E3eE8*uEEME EE>EE|EEuH tYh@uEE48.@5S@5S@h@hA@+hD@hA@*LE=%)EEE>t"+t.t23}u[}t,hh@u#EuEa5EEb*hl@uEuE1 EE2+NjEE32}.+ta.qhp@uEYht@搋EE%EEMEE.EEMEEdhx@uGEEME h|@놐h@uEEME h@uEEME h@h@h@uEE>tBt΃Dtуdg+NjZh@uEh@B/D&dntrtEE%EEMEEE EPuEE=@t@h@hA@[(I@I@4hA@ h @hA@-(F<8.@I@I@4 tփ=@tG48.@h@hA@' I@I@4hA@h@hA@'I@I@EI@I@M EE>@uE8.t 8*E|EEh@PEE>@u E8.EEME ΐEI@^_UV5$N@h@q3"0N@<0tjjj4-@wF<$8@u73)E@f/uVh@hE@P$ Vh$J@h@hE@3$=@thE@h@hA@" ^ÐU=@t5S@h@hA@" 5S@h @hI@#ÐUWVu=@tVh(@hA@Z" >#u"=@VhD@v!>@t8=@tfG?t>@u?uHhH@*!9G?t2?|t?:u=@tVhL@hA@! ^_Ð=@th\@hA@!3^_ÐUWVu=@tVhp@hA@e! h@V? uV5S@h@hA@8!^_Ð@V%PS@ t CNWhP u^_ÐU WV3YG;}SE44" }EEEȋ EM E EE ȋ E M 몐FE<t3뛐^_UV3F<-@uVE0N@VE4N@5(N@h$8@h-@@3F<8@uPDE@PDE@5,N@h8@h.@3F<8@uPzDI@PgDI@5E@h8@h8.@^U(E@|I@|$N@E S@E1t?tQVtBvt5wtju5=@Phi@bjH5S@h@hA@ h@hA@h@hA@h @hA@jGh@u u E@-j=@9E 3ÐE =@4=@=@9E3U3ÐUEUEU| @@N@E ta>/tKh @: tPu  uVu;7^_Ðjh @jVDujh @D^_ÐDž u9us0~\u*NZE;w@5:t(958N@v5tu~ct ^_ÐjFPP ?:tG?u@N@=@N@ ~5t8t>u%?|t ?:t?u^_Ð?:t ?|tG?u?t?:tGuUVu >:tF>u>:uF^ÐU WV8N@EuE8u ^_ËEME 8uՋE8t͋EME 8HuE8@tȀ8#uE E80u3EE0E>@u؋^_ÐUV58N@V>u3^ÐM8u>tܬ8Auր>t>:u ^Ð>@t뺐UV58N@V>u3^ÐM8u>tܬ8Auր>@t>=uFu V ^ÐUWVuE 8FFE :\t^u FF%EEʐEX!@FFEEE;Eu EEEE8u܋E>@tm0EeFF0 EMt>@u낐2E 08^_UE!@ÐUE!@ÐU}~E!@ÐUE!@ÐU EENEEEE M 8u5EE MI8HuÐEE MI8H~EEEE M 8EEE9E~3UWVu} !@ttt=^_ÐWh"@^_ÐWh"@W4@!@^_ÐVh"@Wh"@븐U=!@u h"@!@ÐU=!@u'=!@t5!@h!@u =!@}}W!@t tt7Ðuh"@Ðu h"@u 3Nuh"@ʐ!@ttt8Ðuh#@릐u h #@u 3!@Ðuh#@o!@ttYt\uh3E}E=!@~SEE!@@;!@~>!@ttXtu 뮐u릐h#@!@=!@!@t*tAt\h#@!@븐h #@!@fh$#@!@ !@Ch(#@n!@*!@t t=u h,#@>!@}!@t)tDtch.#@!@uh0#@E!@Ðu h8#@E@!@E@uh<#@뺐!@tt!ttYhH$@ !@뻐hL$@ !@fhP$@ !@ !@ChT$@~ !@*!@t t=u hX$@N !@}!@t)tHtg hZ$@ !@uh\$@ E!@u hd$@ E@!@E@uhh$@붐!@tt)thVuhp$@ EE느}thx$@l !@Vu h|$@U EE@!@EEsVuh$@* EE'^ÐU=!@t=!@uFh$@7=!@~.!@t t uh$@h$@!@=!@|5S@h$@hA@\ =!@u h$@ÐUWVDN@DN@|Vh$@WZ uh$@W<  uh$@uh$@փ uh$@ʃ uh$@뾃 uh$@벃,uh$@릃^uh$@뚃\uh$@뎃 uh%@낃 |u4@Ph%@W iVh%@W GEE0  DN@^_ÐUWVu} tWPh(%@V ^_ÐU} uhE@3Ð} }hE@"萐}uu ~,E u hE@ hE@h=@5=@:E thE@Pu uF uhE@ rujuEx Y@EÐU WVuEE>@uJFEE>@uE+t-u EFEE>@u3^_Ð0+E 0+EFE>@u؃}t^_Ë^_U WV==@u[=@9E~E =@8-u E xu ^_Ðh=@E =@4 u =@ϐE =@=@05=@:tVug ==@tSƈEE E 0#PE 0j. h=@#Ph=@j- jEPj- E =@=@=@8u=@=@?^_G?:E =@=@xtE =@=@@=@=@9Ed==@tƈEE E 0 #PE 0j(- h=@"Ph=@j - jEPj, @E =@=@=@=@8E =@=@=@8u=@=@=@^_ÐU WVu }EE ~ G u 3^_ÐN|O;|ƉEPj wunE t+EEEE)EGG D@+G 3;} W'}tEE^_Ð+u ~?W@pE9EuRUWVEPW }3^_ÐE 8ruEEE 8ruEEE E DR@>t-DR@P'R@r݋E 8rEW&u&uju u&juh=@h=@h=@2jh}#EDR@u&u W^_ÐUWVEp P?"jj*Ejj*Ejjq*Eu =hE@uEP) ;*ÐUWVu ! u3^_G EG G 3ɉOO D@at%rtwt*ÐO ~+ug O ^_jju% O א*)L$Q3ÐUVE EA@uA@t* A@hA@uul A@ t ^Ð^ÐWV|$ t$T$L$IB:3I1:"I :I:^_3^_UVEEE@ uE@ t(EH uuu  E@ t ^Ð^ÐUWVu~u V"F uF N F Dt-xA@9=D@vG @tWߐFFF tF D@+FPvF P xFF^_Ð>tN N F tf ^_ÐUVEEEEEE2EEEPuu d E^Vt$T$ :?3:.":: 3^ËH^ÐWVt$ |$;}pm`]PM@=0-  3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐD$Pt$Ð5E@t$ t$  Ð;+& &3ÐUE%EE%EMEE0ÐUWVu} Ex 2t@M +J)EM Hua uWjVEMI^_WVE0$ NjM^_ÐULWVu}EDž$EEG G2u D@ E tz%tuuFE t%u+E܉E; vPWu%u,# }+G )G; v 2t WG Dt/G uuj +EP t WG t ^_ËE^_Ð3EEEEEFFFE X .$xVMܐMԐM̐MĐM@E뵐E@uE E @E }؉Eu덐E E @E u뵐EDuM E0k E0FE>@uE@tEEMEE E @Eȍ3E܉E؃}}&E=@E}E؉E,Et E=@EtE=@EEȉ  uWE@u_L ff f Š*Ȁ0M܋E܈ M܋E܊0E@: EM+M+ ! EEM EE E @Eȍ3E܉EE"EPNM܋M܈ EEEEEE E @Eȃ}XuH>@\>@Eԍ3E܉E؋Eȉ uE@uDEEM3M܋E܋#MMԊ %M uE@tEM+M+ ~ EEME}EXt;ot xtEE=@EE=@ꐐE@uEE E VW}p_^E%=Eu=E%=uEDž$}Eu>@>@E܃rE%=uE>@EE EEEE}EEp>@E\>@8EPEP}}E@PVWu_^, E܃}t E>@'Et E>@EtE>@E(E؋E܀8tE܊0ME؈}u Et EE.E!E܀8tEE؋ME܊ ك~EEM(E܍EEE>@thEH } ~ 0MEME䊍0 ME0E9Ew}E>@u+-MME>@tEeMM+EEEME@uEE E VW}p_^E%=Eu1E%=uEDž$E܀>@EFE%=uE>@EE EEEEE\>@Ep>@EPEPE<|<PVWu_^ E܃}tE;E}E܀80t E >@%Et E >@EtE>@E(E؋EE~E܀8t}|0 EEE܊ME؈Eu}~ EE.E<|<9E~EME+EE0E}~E܀8t}|0 EEE܊ME؈yɍ(EE@u E}uEE E VW}p_^E%=EuDE%=uE}Gu>@>@E܃EDž$E%=uE>@EE EEEE}GEx>@EH>@@uEEEuLu9}$E܀x0u}}|E9E~HEw+EE E E E @((E@"E E @EE@uP(E܉EE܉8tMyꋅHNKpVpVKpVUpVpVpVpVKKpVKKpV,L9L9L9L9L9L9L9L9L9LpVpVpVpVpVpVpVpVpVpVpVPOpV4TpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpV$NpVpVpVpVpVpVpVpVpVpVVLPOR4TKLpVpVLpVpVNpVpVpVVpVMpVpV$N$tT}tE>@EE-Et E>@EtE>@EDž$E+E܉EEEE9E EEEE t-Eu M+EE E+EEEEEE+EPWjh>@ً; vPWh>@'h>@ }tQE; vPWuu+"uu }tT; vPWjuju8 EEE PWjh0>@|ً; vPWh0>@7'h0>@ ~Y; vPWu$u0 EsEEPWjh0>@pً; vPWh0>@+'h0>@ EtRE; vPWuu#uu+ EnE9EbE+EPWjh>@hً; v#PWh>@#h>@z UWV}u1h>@E t8u=@@t3^_ÐE>@@@h>@tP!uPjtP |@hPV =uhPh>@ 3V ^_Ð juuuu uU juuuu uUSE @@}fEf%f fEf%f fEm]f%E f=DeE@@%E@@m] mf%Ef=@E@@fEmUmmmUMm]mf} -@@mm@@fEEmm@@ 5@@E]mfE@[Uwn}@@E@@ءuF Du V3 t3^_F D@EEE 9}w9} wًF9FrqF ur^WuF P E;tN E 3EE+u ^_V@uE H+u ȋE+^_ÐEEENM+E ~;rljEPuu E)EFF D@+F 3;} V+}uF Dt-F uEE Pj u t VE^_ÐUWVuE@E u 3^_ÐE8tE0V t^_ÐUWVu} G8Gu F~=u^_À>u=t3^_ÐW|$D$ L$H_3_Ð" ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð L$ÐU<Pu u(ÐUVuVVu u ^ÐU WVu t}tE8u3^_ÐE x+E at>rtQwu tEhPu E }-뤐 tf ɐ t뽐3EF tE 8ruF E 8au ujju 1F 3ɉNN D@^_ÐUVxA@F t95D@w3^Ð^ÐUVxA@95D@w^ÐV95D@w^ÐUWVu u^_ÐF t<F t3 VVF P }hE@F tvFF FF낐UVuF u,BF t"~tF9FvVQF tF t^3^ÐUVu F %RBu<F N9 D@FM V@F %u2EEjEPF P N F %u~tF9Fu>uF Du V3 uDF D)VAyVEP ENFF t ^ÐE^ÐUWVuF~+ljE~F Dt3F D@+FF D@+F 3;} Vp}~#uWF P ;Et N ^_3^_ÐUVuF %tF u^ÊF $ F ~u VNF9Fu>F Du3F D@+FF D@+F 3;} V3^UWVu~ F uV}) u S@$W@FN D@BhF tN F NF ,[@N D@FFWt tF uN @^_ÐUWVuF D@+F }F D@F^_Ð9>~>^_Ð3ÐUhE@EEPhTu }EhE@3ÐÐ6zÐfÐUWVE}v3^_Ð=|E@u6E@ |E@|E@ E@pE@E@lE@|E@pE@xE@EE5lE@Eu>5lE@9=xE@u5xE@>tދE;wE;R$;w9=pE@B|E@6E}v5xE@jhpE@;t?EEe ǹ t@Ǚ+ډUNjE'E pE@+ xE@+EEe E;EE=vh@|mu@u+EPT=xE@pE@8E+EDpE@;tpE@ȋ pE@|E@bElE@;stE@lE@lE@ 95xE@u lE@xE@F^_ÐUWVu=lE@$pE@9u=xE@^_ÐUWV}Gt WG+Eu L t9uu^_ËE EE9EsEEEPuV6 E;sƋEE;rEE+MtE@띐WV|$ t$L$Njʁ^_øÐT$E@R E@+D$øT$E@3øÐ0oZL$0oCL$01L$0L$0 L$06Ã%3ÐÐhE@ÐT$bsncnsptMTxrdBdCdFdNdTugknbckomanlrsmlmu@(#)captoinfo.c 1.1 87/04/09 t@x@|@@@@@@@@@@@@@@@@@@I@E@termcap string '%c%c' commented out. %s: TERM=%s: commented out code '%.2s' is unknown. looking at termcap string '%.2s'. %s: TERM=%s: unknown type given for the termcap code '%.2s'. booleannumericstringcanceledunknowntype of '%.2s' is %s. %s: TERM=%s: wrong type given for the boolean termcap code '%.2s'. %s: TERM=%s: wrong type given for the numeric termcap code '%.2s'. %s: TERM=%s: wrong type given for the string termcap code '%.2s'. booleannumericstringcanceled(unknown type)%s: TERM=%s: the %s termcap code '%.2s' is not a valid name. non-existent or invalid entrycannot open $TERMCAPunknown reason%s: TERM=%s: tgetent failed with return code %d (%s). bp=. boolcodes=%s, boolnames=%s, flag=%d. numcodes=%s, numnames=%s, num=%d. strcodes=%s, strnames=%s, str=. str=NULL. %s: TERM=%s: cap %s (info %s) is NULL: REMOVED oboolcodes=%s, flag=%d. onumcodes=%s, num=%d. ostrcodes=%s, ostr=. ostr=NULL. %s: TERM=%s: cap %s (no terminfo name) is NULL: REMOVED %s: obsolete 2 character name '%2.2s' removed. synonyms are: '%s' looking for termcap value of %s. value is:. termcap name '%s' not found in ostrcodes. value is:. %s: TERM=%s: termcap name '%s' not found. looking for terminfo value of %s. value is:. terminfo name '%s' not found. changing value for %s to %d. value was: %d. %s: TERM=%s: the boolean name '%s' was not found! changing value for %s to %d. value was: %d. %s: TERM=%s: the numeric name '%s' was not found! changing value for %s to . value was:. %s: TERM=%s: the string name '%s' was not found! %s$<%d>$<%d>alkil1bskbsbtkcbtcdkedcekelclkclrctktbcdckdch1dlkdl1dokcud1eikrmirhokhomeickich1imkich1lekcub1llkllndkcuf1sfkindsrkristkhtsupkcuu1working on termcap ko string. key termcap name is ''. looking at termcap name %s. %s: TERM=%s: a function key for '%s' was specified with the value , but it already has the value ''. %s: TERM=%s: the unknown termcap name '%s' was specified in the 'ko' termcap capability. 4@8@@@D@H@L@T@X@\@`@d@h@p@t@|@@@@@@@@@@@@@@@@@@@@@@@@@@@@kcud1kcud1kcud1kcuu1kcuu1kcub1kcub1kcuf1kcuf1khomekclr%s @@j@@k@h@ @ (@l0@H8@ @@working on termcap ma string. key value is ''. the vi key is ''. looking at vi character '' %s: TERM=%s: the vi character '' (info '%s') has the value '', but 'ma' gives ''. %s: the unknown vi key '' was specified in the 'ma' termcap capability. assigning defaults. crcr crcrcud1cud1 cud1ind indindbelbelcub1cub1cub1xoxonhtta hthtcub1crffcud1htsgxmc%s: TERM=%s: Warning: termcap sg and ug had different values (%d<->%d). kmkmrs2%s needs copying, was:. $<%p1%Pa%p2%Pb%s: TERM=%s: Warning: the string produced for '%s' may be inefficient. It should be looked at by hand. %g%p%c%d%''%+%c%Pc%?%''%>%t%gc%''%+%Pc%gc%{10}%/%{16}%*%gc%{10}%m%+%Pc%gc%gc%{16}%m%{2}%*%-%ga%'`'%^%Pa%gb%'`'%^%Pband has become:. use=%s, %s: Null termname given. changing cap to info, TERM=%s. use= found, %s uses %s. reading from /etc/termcap TERMcurrent directory name=%s. TERMCAP=%sTERMCAP=%s/%ssetting the environment for %s. setting the environment for TERM=%s. TERM=%sextracting name from '%s'. %s returning %s. returning NULL. reading from %s. r%s: cannot open %s for reading. 1vVw:usage: %s [-1Vv] [filename ...] -1 single column output -v verbose debugging output -V print program version tgetent(): TERM=%s: Termcap entry is too long. @(#)otermcap.c 1.1 87/04/09 TERMCAPTERM/etc/termcap/etc/termcaptgetent(): TERM=%s: Termcap entry too long tnchktc(): TERM=%s: Bad termcap entry tnchktc(): TERM=%s: Infinite tc= loop tnchktc(): TERM=%s: Termcap entry too long E^^\\::n r t bf @(#)print.c 1.1 87/04/09 <ambsbwdadbeoeshchshzinkmmimsncnsosptulxbxnxoxsxt1codBdCdFdNdTknlipbsgugALDCDLDOICLERISFSRUPaealasbcbtcdcechclcmcsctcvdcdldmdsedeifshoi1i2icifimipisk0k1k2k3k4k5k6k7k8k9kbkdkekhklkokrkskul0l1l2l3l4l5l6l7l8l9ndnlpcr1r2r3rcrfrpscsesosrsttetitsucueupusvbvevivs%s, %s:\ Terminal type %s %s flags %s@, :%s@:\ %s@ %s, :%s:\ %s :\ : :%s@,%s@%s@,%s,%s%s, :\ numbers %s@, :%s@:\ %s @ %s#%d, :%s#%d:\ %s = %d :\ : :%s@,%s@%s@,%s#%d,%s#%d%s = %d, :\ strings %s@, :%s@:\ %s@ %s=, . :%s%s=:\ %s = '' :\ : :%s@,%s@%s@,%s=%s,.%s=%s%s = '%s', : %s: WARNING: termcap entry is too long! end of strings \%.3o\E\t\b\f\n\r\,\^\\\s^%c%c@(#)iexpand.c 1.1 87/04/09 %sbwamxsbxhpxenleognhckmhsindadbmirmsgroseslokxthzulxonnxonmc5ichtsnrrmcnpcndscrcolsitlineslmxmcpbvtwslnlablhlwmawnumcbtbelcrcsrtbccleareledhpacmdchcupcud1homeciviscub1mrcupcnormcuf1llcuu1cvvisdch1dl1dslhdsmacsblinkboldsmcupsmdcdimsmirinvisprotrevsmsosmulechrmacssgr0rmcuprmdcrmirrmsormulflashfffslis1is2is3ifich1il1ipkbsktbckclrkctabkdch1kdl1kcud1krmirkelkedkf0kf1kf10kf2kf3kf4kf5kf6kf7kf8kf9khomekich1kil1kcub1kllknpkppkcuf1kindkrikhtskcuu1rmkxsmkxlf0lf1lf10lf2lf3lf4lf5lf6lf7lf8lf9rmmsmmnelpaddchdlcudichindnilcubcufrincuupfkeypflocpfxmc0mc4mc5reprs1rs2rs3rfrcvpascindrisgrhtswindhttsluchuiprogka1ka3kb2kc1kc3mc5prmpacscplnkcbtsmxonrmxonsmamrmamxoncxoffcenacssmlnrmlnkbegkcankclokcmdkcpykcrtkendkentkextkfndkhlpkmrkkmsgkmovknxtkopnkoptkprvkprtkrdokrefkrfrkrplkrstkresksavkspdkundkBEGkCANkCMDkCPYkCRTkDCkDLksltkENDkEOLkEXTkFNDkHLPkHOMkICkLFTkMSGkMOVkNXTkOPTkPRVkPRTkRDOkRPLkRITkRESkSAVkSPDkUNDrfikf11kf12kf13kf14kf15kf16kf17kf18kf19kf20kf21kf22kf23kf24kf25kf26kf27kf28kf29kf30kf31kf32kf33kf34kf35kf36kf37kf38kf39kf40kf41kf42kf43kf44kf45kf46kf47kf48kf49kf50kf51kf52kf53kf54kf55kf56kf57kf58kf59kf60kf61kf62kf63el1mgcsmglsmgrflnsclkdclkrmclkcwinwingohupdialqdialtonepulsehookpausewaitu0u1u2u3u4u5u6u7u8u9,%@0%@4%@8%@<%@D%@H%@L%@P%@T%@X%@\%@`%@d%@h%@p%@t%@|%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@&@&@&@ &@&@&@&@ &@$&@,&@0&@8&@@&@H&@P&@X&@`&@h&@l&@t&@|&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@'@ '@'@'@$'@,'@0'@4'@8'@<'@@'@D'@L'@P'@T'@X'@`'@h'@p'@x'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@(@(@(@(@ (@((@,(@0(@8(@<(@@(@D(@H(@L(@P(@T(@X(@\(@`(@d(@h(@l(@p(@t(@x(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@)@)@ )@)@)@)@ )@$)@,)@0)@8)@@)@H)@P)@X)@`)@h)@p)@x)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@*@*@*@*@ *@(*@0*@8*@@*@H*@P*@X*@`*@h*@p*@x*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@+@ +@+@+@$+@,+@4+@<+@@+@H+@P+@X+@`+@h+@p+@x+@+@+@+@+@+@+@+@+@+@+@+@+@+@+@+@+@,@,@,@,@ ,@(,@0,@8,@@,@H,@P,@X,@`,@h,@p,@x,@,@,@,@,@,@,@,@,@,@,@,@,@,@,@,@,@,@-@-@ -@-@-@$-@,-@0-@8-@@-@H-@P-@X-@`-@h-@l-@p-@t-@x-@|-@-@-@-@-@bwamxbxsxneognhckmhsindadbmimsosesxthzulxonx5iHCNRNPNDcoitlilmsgpbvtwsNllhlwmaMWbtblcrcsctclcecdchCCcmdohovileCMvendllupvsdcdldshdasmbmdtidmmhimmkmpmrsousecaemeteedeiseuevbfffsi1isi3ificalipkbkakCktkDkLkdkMkEkSk0k1k;k2k3k4k5k6k7k8k9khkIkAklkHkNkPkrkFkRkTkukeksl0l1lal2l3l4l5l6l7l8l9mommnwpcDCDLDOICSFALLERISRUPpkplpxpspfporpr1r2r3rfrccvscsfsrsastwitatsuchuiPK1K3K2K4K5pOrPacpnkBSXRXSARAXNXFeALOLF@1@2@3@4@5@6@7@8@9@0%1%2%3%4%5%6%7%8%9%0&1&2&3&4&5&6&7&8&9&0*1*2*3*4*5*6*7*8*9*0#1#2#3#4%a%b%c%d%e%f%g%h%i%j!1!2!3RFF1F2F3F4F5F6F7F8F9FAFBFCFDFEFFFGFHFIFJFKFLFMFNFOFPFQFRFSFTFUFVFWFXFYFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfSCDKRCCWWGHUDIQDTOPUfhPAWAu0u1u2u3u4u5u6u7u8u92@2@2@2@2@2@2@2@3@3@3@ 3@3@3@3@3@ 3@$3@(3@,3@03@43@83@<3@@3@D3@H3@L3@P3@T3@X3@\3@`3@d3@h3@l3@p3@t3@x3@|3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@3@4@4@4@ 4@4@4@4@4@ 4@$4@(4@,4@04@44@84@<4@@4@D4@H4@L4@P4@T4@X4@\4@`4@d4@h4@l4@p4@t4@x4@|4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@4@5@5@5@ 5@5@5@5@5@ 5@$5@(5@,5@05@45@85@<5@@5@D5@H5@L5@P5@T5@X5@\5@`5@d5@h5@l5@p5@t5@x5@|5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@5@6@6@6@ 6@6@6@6@6@ 6@$6@(6@,6@06@46@86@<6@@6@D6@H6@L6@P6@T6@X6@\6@`6@d6@h6@l6@p6@t6@x6@|6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@6@7@7@7@ 7@7@7@7@7@ 7@$7@(7@,7@07@47@87@<7@@7@D7@H7@L7@P7@T7@X7@\7@`7@d7@h7@l7@p7@t7@x7@|7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@7@8@8@8@ 8@8@8@8@8@ 8@pwd 2>/dev/nullrt=@--: option requires an argument -- : illegal option -- /bin/shsh-c-+ 0x0X--+ --+ --+ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFCHRCLASSascii/lib/chrclass/ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~h3? ?@C?$@?$@$@$@<[@<[@D@D[@\@)#(@cbil83i-sc:6rc/us.1t1.1 )#(@cbil83i-ys:6cf/s.ltn.1 s s)#(@cbil83i-ys:6ip/ss.ep1.1 )#(@cbil83i-eg:6em/npccm s.y1.1)#(@cbil83i-eg:6ts/nrhcr1 s.1..)#(@cbil83i-eg:6ts/npmcr1 s.1..)#(@cbil83i-eg:6ts/npcnr s.y1.1)#(@cbil83i-ys:6xe/s.lce.1 s s)#(@cbil83i-ys:6xe/s.vce.1 s s)#(@cbil83i-ys:6xe/sevce1 s.1..)#(@cbil83i-ys:6xe/ss.ti1.1 )#(@cbil83i-ys:6of/ss.kr1.1 a3.55)#(@cbil83i-eg:6ce/nc.tv1.1 )#(@daehlav:.seu.1 h h)#(@daehnan:1 h.2..)#(@cbil83i-eg:6em/nrhcm1 s.1..)#(@cbil83i-ys:6er/ss.da1.1 )#(@cbil83i-eg:6ts/nypcr1 s.1..)#(@cbil83i-eg:6ts/nnelr1 s.1..)#(@cbil83i-ys:6aw/ss.ti1.1 )#(@cbil83i-ys:6lc/s.eso.1 s s)#(@cbil83i-eg:63i/nd_68.ata.1 s s)#(@cbil83i-ys:6oi/s.ltc.1 s s)#(@cbil83i-ys:6sl/s.kee.1 s s)#(@cbil83i-eg:6am/nd_ll.ata.1 s s)#(@cbil83i-eg:6em/nypcm1 s.1..)#(@cbil83i-ys:6po/ss.ne1.1 )#(@cbil83i-ys:6bs/ss.kr1.1 )#(@cbil83i-ys:6rw/s.eti.1 s s)#(@cbil83i-ys:6is/slang1 s.1..)#(@cbil83i-ys:6ik/ss.ll1.1 )#(@cbil83i-ys:6eg/sdipt1 s.1..)#(@cbil83i-rc:6ec/trorr1 s.1..)#(@cbil83i-eg:6uc/ntixe1 s.1..83i-eg:6ts/nnelr1 s.1..)#(@cbil83i-ys:6aw/ss.ti1.1 )#(@cbil83i-etc/cshrc100755 0 2 244 4273202021 7034 37777777777 if (-r /etc/motd) cat /etc/motd setenv TZ `sh -c ' . /etc/TIMEZONE ; echo $TZ' ` if($?mail) then if (-e $mail && ! -z $mail) echo You have mail. endif umask 022 83i-eg:6em/nypcm1 s.1..)#(@cbil83i-ys:6po/ss.ne1.1 )#(@cbil83i-ys:6bs/ss.kr1.1 )#(@cbil83i-ys:6rw/s.eti.1 s s)#(@cbil83i-ys:6is/slang1 s.1..)#(@cbil83i-ys:6ik/ss.ll1.1 )#(@cbil83i-ys:6eg/sdipt1 s.1..)#(@cbil83i-rc:6ec/trorr1 s.1..)#(@cbil83i-eg:6uc/ntixe1 s.1..83i-eg:6ts/nnelr1 s.1..)#(@cbil83i-ys:6aw/ss.ti1.1 )#(@cbil83i-etc/TIMEZONE100644 0 2 31 4141416771 7150 37777777777 # TZ=PST8PDT export TZ etc/motd setenv TZ `sh -c ' . /etc/TIMEZONE ; echo $TZ' ` if($?mail) then if (-e $mail && ! -z $mail) echo You have mail. endif umask 022 83i-eg:6em/nypcm1 s.1..)#(@cbil83i-ys:6po/ss.ne1.1 )#(@cbil83i-ys:6bs/ss.kr1.1 )#(@cbil83i-ys:6rw/s.eti.1 s s)#(@cbil83i-ys:6is/slang1 s.1..)#(@cbil83i-ys:6ik/ss.ll1.1 )#(@cbil83i-ys:6eg/sdipt1 s.1..)#(@cbil83i-rc:6ec/trorr1 s.1..)#(@cbil83i-eg:6uc/ntixe1 s.1..83i-eg:6ts/nnelr1 s.1..)#(@cbil83i-ys:6aw/ss.ti1.1 )#(@cbil83i-etc/profile100755 0 2 624 4242672374 7416 37777777777 : umask 022 if [ -r /etc/motd ] then cat /etc/motd fi # if there is no TERM defined (ie. Single-User mode), use altos5 if [ ! "$TERM" ] then TERM=altos5 export TERM fi if [ "$TERM" = "dumb" ] then TERM=altos5 export TERM fi TERMINFO=/usr/lib/terminfo if [ -r /etc/TIMEZONE ] then . /etc/TIMEZONE else TZ=PDT8PST export TZ fi export TERMINFO if test -s "$MAIL"; then echo You have mail.; fi 1 s.1..)#(@cbil83i-eg:6uc/ntixe1 s.1..83i-eg:6ts/nnelr1 s.1..)#(@cbil83i-ys:6aw/ss.ti1.1 )#(@cbil83i-etc/install100755 0 2 14066 4103253353 7455 37777777777 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident @(#)install.sh 1.3 87/07/28 direct=. # INSTALL COMMAND FLIST=$ROOT/etc/syslist DEFAULT="$ROOT/bin $ROOT/usr/bin $ROOT/etc $ROOT/lib $ROOT/usr/lib" FOUND="" MOVOLD="" ECHO=echo PATH=/bin:/etc:/usr/bin FLAG=off USAGE="eval echo 'usage: install [options] file [dir1 ...]'; exit 2" MODE=755 GROUP=`expr "\`id\`" : ".*(\(.*\)).*"` OWNER=`expr "\`id\`" : ".*(\(.*\)) "` if [ $OWNER = root ] then ROOTFLAG=on OWNER=bin GROUP=bin else ROOTFLAG=off fi for i in $* do if [ $FLAG = on ] then case $i in -*) echo "install: The -c, -f, -n options each require a directory following!" exit 2;; *) FLAG=off continue;; esac fi case $i in -c) if [ x$ARG = x-f -o x$arg = x-i -o x$arg = x-o -o x$arg = x-n ] then echo "install: -c dir: illegal option with ${arg-"-f"} option!" exit 2 elif test $# -lt 3 then echo "install: -c option must have at least 3 args!" exit 2 else direct=$2 FLAG=on ARG=-c shift; shift fi;; -f) if [ x$ARG = x-c -o x$arg = x-i -o x$arg = x-n ] then echo "install: -f dir: illegal option with ${arg-"-c"} option!" exit 2 elif test $# -lt 3 then echo "install: -f option must have at least 3 args!" exit 2 else direct=$2 FLAG=on ARG=-f shift; shift fi;; -i) if [ x$ARG = x-c -o x$ARG = x-f ]  then echo "install: -i: illegal option with $ARG option!" exit 2 elif test $# -lt 3 then echo "install: -i option requires at least 3 args!" exit 2 else DEFAULT="" arg=-i shift fi;; -o) if [ x$ARG = x-c ] then echo "install: -o: illegal option with $ARG option!" exit 2 elif test $# -lt 2 then $USAGE else MOVOLD=yes arg=-o shift fi;; -n) if [ x$ARG = x-c -o x$ARG = x-f ] then echo "install: -n dir: illegal option with $ARG option!"  exit 2 elif test $# -lt 3 then echo "install: -n option requires at least 3 args!" exit 2 else LASTRES=$2 FLAG=on FOUND=n arg=-n shift; shift fi;; -s) if test $# -lt 2 then $USAGE else ECHO=: arg=-s shift fi;; -u) if [ $ROOTFLAG = off ] then echo "install: -u option available only to root -- ignored" else OWNER=$2 echo new owner is $OWNER fi FLAG=on shift; shift;; -g) if [ $ROOTFLAG = off ] then echo "install: -g option available only to root -- ignored" else GROUP=$2 fi FLAG=on shift; shift;; -m) MODE=$2 FLAG=on shift; shift;; *) break;; esac done # make up to 3 levels of directories if required # double test -d because mkdir exit code not reliable if test ! -d $direct then d1=`dirname $direct` if test ! -d $d1 then d2=`dirname $d1` if test ! -d $d2 then d3=`dirname $d2` if test ! -d $d3 then mkdir $d3 if test ! -d $d3 then exit 1 fi echo Made directory $d3 fi mkdir $d2 if test ! -d $d2 then exit 1 fi echo Made directory $d2 fi mkdir $d1 if test ! -d $d1 then exit 1 fi echo Made directory $d1 fi mkdir $direct if test ! -d $direct then exit 1 fi echo Made directory $direct fi FILEP=$i FILE=`echo $i | sed -e "s/.*\///"` if [ x$ARG = x-c -o x$ARG = x-f ] then case $2 in -*) $USAGE ;; "") : ;; esac if test -f $direct/$FILE -o -f $direct/$FILE/$FILE then case $ARG in -c) echo "install: $FILE already exists in $direct" exit 2;; -f) GROUP=`ls -l $direct/$FILE | awk '{print $4}'` OWNER=`ls -l $direct/$FILE | awk '{print $3}'` if [ -k $direct/$FILE ] then chmod -t $direct/$FILE $direct/$FILE < /dev/null > /dev/null tbit=on fi if [ "$MOVOLD" = yes ] then mv -f $direct/$FILE $direct/OLD$FILE cp $direct/OLD$FILE $direct/$FILE if [ $? = 0 ] then $ECHO "$FILE moved to $direct/OLD$FILE" chgrp $GROUP $direct/$FILE chown $OWNER $direct/$FILE else echo "install: cp $direct/OLD$FILE $direct/$FILE failed" exit 2 fi fi if cp $FILEP $direct/$FILE then $ECHO "$FILEP installed as $direct/$FILE" fi if [ "$tbit" = on ] then chmod +t $direct/$FILE fi exit;; esac else cp $FILEP $direct/$FILE if [ $? = 0 ] then $ECHO "$FILEP installed as $direct/$FILE" chgrp $GROUP $direct/$FILE chown $OWNER $direct/$FILE chmod $MODE $direct/$FILE fi fi exit fi  shift PUTHERE="" for i in $* do case $i in -*) $USAGE ;; esac PUTHOLD=`find $i -name $FILE -type f -print` PUTHERE=`expr "\`echo $PUTHOLD\`" : '\([^ ]*\)'` if [ "$PUTHERE" != "" ] then break fi done if [ -r $FLIST -a "$PUTHERE" = "" ] then PUTHERE=`grep "/${FILE}$" $FLIST | sed -n -e '1p'` if [ "$PUTHERE" != "" -a "$ROOT" != "" ] then PUTHERE=${ROOT}${PUTHERE} fi fi if [ "$PUTHERE" = "" ] then for i in $DEFAULT do PUTHOLD=`find $i -name $FILE -type f -print` PUTHERE=`expr "\`echo $PUTHOLD\`" : '\([^ ]*\)'` if [ "$PUTHERE" != "" ] then break fi done fi if [ "$PUTHERE" != "" ] then if [ -k $PUTHERE ] then chmod -t $PUTHERE $PUTHERE < /dev/null > /dev/null tbit=on fi if [ "$MOVOLD" = yes ] then old=`echo $PUTHERE | sed -e "s/\/[^\/]*$//"` mv -f $PUTHERE $old/OLD$FILE cp $old/OLD$FILE $PUTHERE if [ $? = 0 ] then $ECHO "old $FILE moved to $old/OLD$FILE" chgrp $GROUP $PUTHERE else echo "install: cp $direct/OLD$FILE $direct/$FILE failed" exit 2 fi fi FOUND=y if cp $FILEP $PUTHERE then if [ "$tbit" = on ] then chmod +t $PUTHERE fi $ECHO "$FILEP installed as $PUTHERE" break else exit 2 fi fi case $FOUND in "") echo "install: $FILE was not found anywhere!" exit 2;; y) : ;; n) cp $FILEP $LASTRES/$FILE if [ $? = 0 ] then $ECHO "$FILEP installed as $LASTRES/$FILE by default!" cd $LASTRES chgrp $GROUP $FILE chown $OWNER $FILE chmod $MODE $FILE fi;; esac fi FOUND=y if cp $FILEP $PUTHERE then if [ "$tbit" = on ] then chmod +t $PUTHERE fi $ECHO "$FILEP installed as $PUTHERE" break else exit 2 fi fi case $FOUND in "") echo "install: $FILE was not found anywhere!" exit 2;; y) : ;; n) cp $FILEP $LASTRES/$FILE if [ $? = 0 ] then $ECHO "$FILEP installed as $LASTRES/$FILE by default!" cd $LASTRES chgrp $GROUP $FILE etc/altos.src100644 0 2 22475 4266712001 7717 37777777777 # # -------------------------------- #ident "@(#)terminfo:header 1.4" # ------------------------ # # This file describes capabilities of various terminals, as needed by # software such as screen editors. It does not attempt to describe # printing terminals very well, nor graphics terminals. Someday. # See terminfo(5) in the Unix Programmers Manual for documentation. # # Conventions: First entry is two chars, first char is manufacturer, # second char is canonical name for model or mode. # Third entry is the one the editor will print with "set" command. # Last entry is verbose description. # Others are mnemonic synonyms for the terminal. # # Terminal naming conventions: # Terminal names look like - # Certain abbreviations (e.g. c100 for concept100) are also allowed # for upward compatibility. The part to the left of the dash, if a # dash is present, describes the particular hardware of the terminal. # The part to the right can be used for flags indicating special ROM's, # extra memory, particular terminal modes, or user preferences. # All names are always in lower case, for consistency in typing. # Because of file naming restrictions, terminal names should not contain # period or slash, in fact, entirely alphanumeric characters plus dash are # highly recommended. These restrictions do not apply to the verbose name. # # The following are conventionally used flags: # rv Terminal in reverse video mode (black on white) # 2p Has two pages of memory. Likewise 4p, 8p, etc. # w Wide - in 132 column mode. # pp Has a printer port which is used. # na No arrow keys - terminfo ignores arrow keys which are # actually there on the terminal, so the user can use # the arrow keys locally. # # The number of lines on the screen. # s With a status line. # # There are some cases where the same name is used for two different # terminals, e.g. "teleray" or "2621" or "vt100". In these cases, # if a site has one of these, they should choose a local default and # bring that terminal to the front in the reorder script. This works # because tgetent picks the first match in /etc/terminfo. # # If you absolutely MUST check for a specific terminal (this is discouraged) # check for the 1st entry (the canonical form) since all other codes are # subject to change. We would much rather put in special capabilities to # describe your terminal rather than having you key on the name. # # ALTOS COMPUTER SYSTEMS ( 4/15/88 ) # # The following entries are for Altos-supported terminals # a2|alt2|altos2|altos 2|Altos II, ed=\E[0J, el=\E[0K, clear=\E[;H\E[2J, cuu1=\E[A, cud1=\E[B, cuf1=\E[C, cub1=\E[D, cup=\E[%i%p1%d;%p2%dH, home=\E[H, il1=\E[L, dl1=\E[M, ich1=\E[@, dch1=\E[P, cols#80, lines#24, ri=\EM, ind=\ED, nel=\EE, sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p5%t;2%;%?%p6%t;1%;%?%p7%t;8%;m, is1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, if=/usr/lib/tabset/vt100, kcuu1=\E[A, kcud1=\E[B, kcuf1=\E[C, kcub1=\E[D, khome=\E[f, kbs=^H, cr=^M, bel=^G, hs, knp=\E[S, kpp=\E[T, kich1=\E[@, kil1=\E[L, kdch1=\E[P, kdl1=\E[M, kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, kf4=^AD\r, kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, kf9=^AI\r, kf10=^AJ\r, kf11=^AK\r, kf12=^AL\r, kf13=^AM\r, kf14=^AN\r, kf15=^AO\r, kf16=^A`\r, kf17=^Aa\r, kf18=^Ab\r, kf19=^Ac\r, kf20=^Ad\r, kf21=^Ae\r, kf22=^Af\r, kf23=^Ag\r, kf24=^Ah\r, kf25=^Ai\r, kf26=^Aj\r, kf27=^Ak\r, kf28=^Al\r, kf29=^Am\r, kf30=^An\r, kf31=^Ao\r, a3|alt3|altos 3|altos3|Altos III, sgr=\E[%?%p3%p4%A%p5%A%t11%e%p3%p4%A%t10%e%p3%p5%A%t9%e%p4%p5%A%t3%e%p1%t9%e%p2%t4%e%p3%t7%e%p4%t5%e%p5%t2%e%p6%t9%;p^H, xmc#1, civis=\E[>5h, cvvis=\E[>5l, use=alt2, a132|alt132|altos3_132|a3_132|Altos III_132, sgr=\E[%?%p3%p4%A%p5%A%t11%e%p3%p4%A%t10%e%p3%p5%A%t9%e%p4%p5%A%t3%e%p1%t9%e%p2%t4%e%p3%t7%e%p4%t5%e%p5%t2%e%p6%t9%;p^H, xmc#1, civis=\E[>5h, cvvis=\E[>5l, cols#132, use=alt2, smso=\E[7m, bold=\E[1m, rev=\E[7m, blink=\E[5m, dim=\E[2m, invis=\E[8m, # # altos-4: see wyse 50 # a5|alt5|altos 5|altos5|Altos V, use=alt2, # # ---- END OF TERMINFO FOR ALTOS # # w5|wyse5|wyse50|Wyse wy-50, ed=\EY, el=\ET, clear=\E+, xmc#1, cud1=^J, ind=^J, cr=^M, bel=^G, cub1=^H, cuu1=^K, cuf1=^L, kbs=^H, cup=\E=%p1%' '%+%c%p2%' '%+%c, home=^^, il1=\EE, dl1=\ER, ich1=\Eq, dch1=\EW, smir=\Eq, rmir=\Er, cols#80, lines#24, am, mir, ht=5^I, ri=\Ej, sgr=\EG%?%p3%p4%A%p5%A%tv%e%p3%p4%A%t6%e%p3%p5%A%tt%e%p4%p5%A%tr%e%p1%t4%e%p2%t8%e%p3%t4%e%p4%t2%e%p5%tp%e%p6%t4%e%p7%t1%e0%;^H, is1=\Eu\E0, if=/usr/lib/tabset/std, kcuu1=^K, kcud1=^J, kcuf1=^L, kcub1=^H, khome=^^, knp=\EK, kpp=\EJ, kf0=^A@\r, kf1=^AA\r, kf2=^AB\r, kf3=^AC\r, kf4=^AD\r, kf5=^AE\r, kf6=^AF\r, kf7=^AG\r, kf8=^AH\r, kf9=^AI\r, kf10=^AJ\r, kf11=^AK\r, kf12=^AL\r, kf13=^AM\r, kf14=^AN\r, kf15=^AO\r, smso=\E[7m, bold=\E[1m, rev=\E[7m, blink=\E[5m, dim=\E[2m, invis=\E[8m, w3|wyse3|wyse30|Wyse wy-30, use=wyse50, a4|alt4|altos4|altos IV, use=wyse50, w7|wyse7|wyse75|Wyse wy-75, ed=\E[J, el=\E[K, clear=\E[H\E[2J, cud1=^J, ind=^J, cr=^M, bel=^G, cuu1=\E[1A, cud1=\E[1B, cuf1=\E[1C, cub1=\E[1D, cup=\E[%i%p1%d;%p2%dH, home=\E[H, il1=\E[L, dl1=\E[M, ich1=\E[@, dch1=\E[P, smir=, rmir=, cols#80, lines#24, ri=\EM, smso=\E[7m, rmso=\E[m, smul=\E[4m, rmul=\E[m, is1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, if=/usr/lib/tabset/vt100, kcuu1=\E[A, kcud1=\E[B, kcuf1=\E[C, kcub1=\E[D, khome=\E[H, kbs=^H, cr=^M, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, w8|wyse8|wyse85|Wyse wy-85, ed=\E[J, el=\E[K, clear=\E[H\E[2J, cud1=^J, ind=^J, cr=^M, bel=^G, cuu1=\E[1A, cud1=\E[1B, cuf1=\E[1C, cub1=\E[1D, cup=\E[%i%p1%d;%p2%dH, home=\E[H, il1=\E[L, dl1=\E[M, ich1=\E[@, dch1=\E[P, smir=, rmir=, cols#80, lines#24, ri=\EM, smso=\E[7m, rmso=\E[m, smul=\E[4m, rmul=\E[m, if=/usr/lib/tabset/vt100, kcuu1=\E[A, kcud1=\E[B, kcuf1=\E[C, kcub1=\E[D, khome=\E[H, kbs=^H, cr=^M, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, kf1=\E17~, kf2=\E18~, kf3=\E19~, kf4=\E20~, kf5=\E21~, kf6=\E31~, kf7=\E32~, kf8=\E33~, kf9=\E34~, smkx=\E=, rmkx=\E>, is1=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h\E[36h\E[2l\E[?16l\E>\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134, smcup=\E[36h\E[2l\E[?16l\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134, rmcup=\E[36h\E[2l\E[?16l\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134, # # For wyse 95 see altos2 # w9|wyse9|wyse95|Wyse wy-95, use=altos2, # w1|wyse|wyse100|Wyse wy-100, ei=\Er, im=\Eq, ta= 5^I, li#24, nd=^L, sg#1, up=^K, ma=^K^P^L, use=wyse50, # # Vanilla vt100 definitions. vt100|vt100-am|dec vt100, cr=^M, cud1=^J, ind=^J, bel=^G, cols#80, lines#24, it#8, clear=\E[H\E[2J$<50>, cub1=^H, am, cup=\E[%i%p1%d;%p2%dH$<5>, cuf1=\E[C$<2>, cuu1=\E[A$<2>, el=\E[K$<3>, ed=\E[J$<50>, cud=\E[%p1%dB, cuu=\E[%p1%dA, cub=\E[%p1%dD, cuf=\E[%p1%dC, smso=\E[7m$<2>, rmso=\E[m$<2>, smul=\E[4m$<2>, rmul=\E[m$<2>, bold=\E[1m$<2>, rev=\E[7m$<2>, blink=\E[5m$<2>, sgr0=\E[m$<2>, sgr=\E[%?%p1%t;7%;%?%p2%t;4%;%?%p3%t;7%;%?%p4%t;5%;%?%p6%t;1%;m, rs2=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h, smkx=\E[?1h\E=, rmkx=\E[?1l\E>, tbc=\E[3g, hts=\EH, home=\E[H, kcuu1=\EOA, kcud1=\EOB, kcuf1=\EOC, kcub1=\EOD, kbs=^H, kf1=\EOP, kf2=\EOQ, kf3=\EOR, kf4=\EOS, ht=^I, ri=\EM$<5>, vt#3, xenl, xon, sc=\E7, rc=\E8, csr=\E[%i%p1%d;%p2%dr, vis613|vis613 graphics terminal, smcup=\E[2l\E>\E[?7h, rmcup=\E[2l, clear=\E[;H\E[2J$<50>, use=vt100, #ident "@(#)terminfo:ansi.ti 1.9" # # ANSI - standards and other nonexistent terminals emulated in software. # # Manufacturer: ANSI - Generic # Class: III # # Info: # This category is used for terminals people "make up" in software # that do not represent a particular piece of hardware. This # includes standards, such as the ANSI standard, as well as # emulator programs that accept a particular set of escape # sequences. # # ANSI capabilities are broken up into pieces, so that a terminal # implementing some ANSI subset can use many of them. # ansi+local, cud=\E[%p1%dB, cub=\E[%p1%dD, cuf=\E[%p1%dC, cuu=\E[%p1%dA, ansi+local1, cud1=^J, cub1=^H, cuf1=\E[C, cuu1=\E[A, ansi+tabs, ht=^I, cbt=\E[Z, hts=\EH, tbc=\E[2g, ansi+inittabs, it#8, use=ansi+tabs, ansi+erase, ed=\E[J, el=\E[K, clear=\E[H\E[J, ansi+rca, hpa=\E[%p1%{1}%+%dG, vpa=\E[%p1%{1}%+%dd, ansi+cup, cup=\E[%i%p1%d;%p2%dH, home=\E[H, ansi+rep, rep=%p1%c\E[%p2%{1}%-%db, ansi+idl, dl=\E[%p1%dM, il=\E[%p1%dL, ansi+idl1, dl1=\E[M, il1=\E[L, ansi+idc, dch1=\E[P, ich=\E[%p1%d@, ich1=\E[@, # smir=\E6, rmir=\E6, commented out by ehr3 ansi+arrows, kcuu1=\E[A, kcud1=\E[B, kcub1=\E[D, kcuf1=\E[C, khome=\E[H, kbs=^H, ansi+sgr|ansi graphic renditions, rev=\E[7m, blink=\E[5m, invis=\E[8m, sgr0=\E[0m, ansi+sgrso|ansi standout only, rmso=\E[m, smso=\E[7m, ansi+sgrul|ansi underline only, rmul=\E[m, smul=\E[4m, ansi+sgrbold|ansi graphic renditions; assuming terminal has bold; not dim, bold=\E[1m, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p6%t1;%;m, use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, ansi+sgrdim|ansi graphic renditions; assuming terminal has dim; not bold, dim=\E[2m, sgr=\E[%?%p1%t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p5%t2;%;m, use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, ansi+pp|ansi printer port, mc4=\E[4i, mc5=\E[5i, mc0=\E[0i, # # Series 500 console uses this. # at|AT|at386|AT386,PC/AT display monitor, use=vanilla, am, cols#80, lines#25, xon, use=ansi+cup, use=ansi+rca, use=ansi+erase, use=ansi+tabs, use=ansi+local1, use=ansi+local, use=ansi+idc, use=ansi+idl1, use=ansi+idl, use=ansi+rep, use=ansi+sgrbold, use=ansi+arrows, vanilla, bel=^G, cr=^M, cud1=^J, ind=^J, t7;%;%?%p2%t4;%;%?%p3%t7;%;%?%p4%t5;%;%?%p5%t2;%;m, use=ansi+sgr, use=ansi+sgrso, use=ansi+sgrul, ansi+pp|ansi printer port, mc4=\E[4i, mc5=\E[5i, mc0=\E[0i, # # Series 500 console uses this. #etc/sys.stop100744 0 2 717 4220305323 13304 1etc/init.d/sys.stop37777777777 etc/brc100744 0 2 775 4220305306 6511 37777777777 : # @(#)brc 5.3b of Jan 28, 1988 # Boot time rc file # PATH=/etc:/bin:/usr/bin if [ -r /etc/TIMEZONE ] then . /etc/TIMEZONE else TZ=PDT8PST fi export PATH TZ # # Set system clock if [ -c /dev/clock -a -r /dev/clock ] ; then echo "\nCurrent System Time is: \c" date -s else echo asktime fi # # make the /dev/ttyXX files to be sure they are correct # makettys # # Initialize mount table, this must be done after clock is set # echo 'root /' | setmnt # # check to see if they want to go singleuser sulogin . #etc/inittab.9100644 0 2 1643 4231442113 7556 37777777777 init:2:initdefault: brc::bootwait:/etc/brc /dev/console 2>&1 r1:1:wait:/etc/rc1 /dev/console 2>&1 r2:2:wait:/etc/rc2 /dev/console 2>&1 r3:3:wait:/etc/rc2 /dev/console 2>&1 rsr2:2:restart:/etc/rc2 restart /dev/console 2>&1 rsr3:3:restart:/etc/rc3 restart /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail /dev/console 2>&1 cons:23:respawn:env - TERM=altos5 /etc/getty console 9600 tt02:23:respawn:env - TERM=altos5 /etc/getty tty02 9600 tt03:23:respawn:env - TERM=altos5 /etc/getty tty03 9600 tt04:23:off:env - TERM=altos5 /etc/getty tty04 9600 tt05:23:respawn:env - TERM=altos5 /etc/getty tty05 9600 tt06:23:respawn:env - TERM=altos5 /etc/getty tty06 9600 tt07:23:respawn:env - TERM=altos5 /etc/getty tty07 9600 lt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail /dev/console 2>&1 r1:1:wait:/etc/rc1 /dev/console 2>&1 r2:2:wait:/etc/rc2 /dev/console 2>&1 r3:3:wait:/etc/rc2 /dev/console 2>&1 rsr2:2:restart:/etc/rc2 restart /dev/console 2>&1 rsr3:3:restart:/etc/rc3 restart /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail /dev/console 2>&1 cons:23:respawn:env - TERM=altos5 /etc/getty console 9600 tt02:23:respawn:env - TERM=altos5 /etc/getty tty02 9600 tt03:23:respawn:env - TERM=altos5 /etc/getty tty03 9600 tt04:23:off:env - TERM=altos5 /etc/getty tty04 9600 tt05:23:respawn:env - TERM=altos5 /etc/getty tty05 9600 tt06:23:respawn:env - TERM=altos5 /etc/getty tty06 9600 tt07:23:respawn:env - TERM=altos5 /etc/getty tty07 9600 tt08:23:off:env - TERM=altos5 /etc/getty tty08 9600 tt09:23:off:env - TERM=altos5 /etc/getty tty09 9600 tt10:2:off:env - TERM=altos5 /etc/getty tty10 9600 tt11:2:off:env - TERM=altos5 /etc/getty tty11 9600 tt12:2:off:env - TERM=altos5 /etc/getty tty12 9600 tt13:2:off:env - TERM=altos5 /etc/getty tty13 9600 tt14:2:off:env - TERM=altos5 /etc/getty tty14 9600 tt15:2:off:env - TERM=altos5 /etc/getty tty15 9600 tt16:2:off:env - TERM=altos5 /etc/getty tty16 9600 tt17:2:off:env - TERM=altos5 /etc/getty tty17 9600 tt18:2:off:env - TERM=altos5 /etc/getty tty18 9600 tt19:2:off:env - TERM=altos5 /etc/getty tty19 9600 tt20:2:off:env - TERM=altos5 /etc/getty tty20 9600 tt21:2:off:env - TERM=altos5 /etc/getty tty21 9600 tt22:2:off:env - TERM=altos5 /etc/getty tty22 9600 tt23:2:off:env - TERM=altos5 /etc/getty tty23 9600 tt24:2:off:env - TERM=altos5 /etc/getty tty24 9600 tt25:2:off:env - TERM=altos5 /etc/getty tty25 9600 tt26:2:off:env - TERM=altos5 /etc/getty tty26 9600 tt27:2:off:env - TERM=altos5 /etc/getty tty27 9600 tt28:2:off:env - TERM=altos5 /etc/getty tty28 9600 tt29:2:off:env - TERM=altos5 /etc/getty tty29 9600 tt30:2:off:env - TERM=altos5 /etc/getty tty30 9600 tt31:2:off:env - TERM=altos5 /etc/getty tty31 9600 tt32:2:off:env - TERM=altos5 /etc/getty tty32 9600 tt33:2:off:env - TERM=altos5 /etc/getty tty33 9600 tt34:2:off:env - TERM=altos5 /etc/getty tty34 9600 tt35:2:off:env - TERM=altos5 /etc/getty tty35 9600 tt36:2:off:env - TERM=altos5 /etc/getty tty36 9600 tt37:2:off:env - TERM=altos5 /etc/getty tty37 9600 tt38:2:off:env - TERM=altos5 /etc/getty tty38 9600 tt39:2:off:env - TERM=altos5 /etc/getty tty39 9600 tt40:2:off:env - TERM=altos5 /etc/getty tty40 9600 tt41:2:off:env - TERM=altos5 /etc/getty tty41 9600 tt42:2:off:env - TERM=altos5 /etc/getty tty42 9600 tt43:2:off:env - TERM=altos5 /etc/getty tty43 9600 tt44:2:off:env - TERM=altos5 /etc/getty tty44 9600 tt45:2:off:env - TERM=altos5 /etc/getty tty45 9600 tt46:2:off:env - TERM=altos5 /etc/getty tty46 9600 tt47:2:off:env - TERM=altos5 /etc/getty tty47 9600 tt48:2:off:env - TERM=altos5 /etc/getty tty48 9600 tt49:2:off:env - TERM=altos5 /etc/getty tty49 9600 tt50:2:off:env - TERM=altos5 /etc/getty tty50 9600 tt51:2:off:env - TERM=altos5 /etc/getty tty51 9600 tt52:2:off:env - TERM=altos5 /etc/getty tty52 9600 tt53:2:off:env - TERM=altos5 /etc/getty tty53 9600 tt54:2:off:env - TERM=altos5 /etc/getty tty54 9600 tt55:2:off:env - TERM=altos5 /etc/getty tty55 9600 tt56:2:off:env - TERM=altos5 /etc/getty tty56 9600 tt57:2:off:env - TERM=altos5 /etc/getty tty57 9600 tt58:2:off:env - TERM=altos5 /etc/getty tty58 9600 tt59:2:off:env - TERM=altos5 /etc/getty tty59 9600 tt60:2:off:env - TERM=altos5 /etc/getty tty60 9600 tt61:2:off:env - TERM=altos5 /etc/getty tty61 9600 tt62:2:off:env - TERM=altos5 /etc/getty tty62 9600 tt63:2:off:env - TERM=altos5 /etc/getty tty63 9600 0 tt54:2:off:env - TERM=altos5 /etc/getty tty54 9600 tt55:2:off:env - TERM=altos5 /etc/getty tty55 9600 tt56:2:off:env - TERM=altos5 /etc/getty tty56 9600 tt57:2:off:env - TERM=altos5 /etc/getty tty57 9600 tt58:2:off:env - TERM=altos5 /etc/getty tty58 9600 tt59:2:off:env - TERM=altos5 /etc/getty tty59 9600etc/fstab100644 0 2 155 4220305311 7025 37777777777 # format: mountdev fs [-[rd]] [fstype] # This file is used by /etc/mount, /etc/mountall, and /etc/rmountall :off:env - TERM=altos5 /etc/getty tty62 9600 tt63:2:off:env - TERM=altos5 /etc/getty tty63 9600 0 tt54:2:off:env - TERM=altos5 /etc/getty tty54 9600 tt55:2:off:env - TERM=altos5 /etc/getty tty55 9600 tt56:2:off:env - TERM=altos5 /etc/getty tty56 9600 tt57:2:off:env - TERM=altos5 /etc/getty tty57 9600 tt58:2:off:env - TERM=altos5 /etc/getty tty58 9600 tt59:2:off:env - TERM=altos5 /etc/getty tty59 9600etc/mountall100744 0 2 3407 4220305312 7606 37777777777 : # @(#)mountall 5.3b of Jan 28, 1988 : # Mount file systems according to file system table /etc/fstab. # Note: written to depend on as few commands as possible. # file-system-table format: # # column 1 block special file name of file system # column 2 mount-point directory # column 3 "-r" if to be mounted read-only # "-d" if distributed (remote) resource # column 4 file system type (may be column 4) # column 5+ ignored # White-space separates columns. # Lines beginning with "#" are comments. Empty lines are ignored. # a '-' in any field is a no-op. fstab=/etc/fstab cat ${fstab} | while read dev fs fsflags fstype dummy do case ${dev} in '#' | '') # Ignore comments, empty lines continue esac case ${dev} in '-') # Ignore no-action lines continue esac case ${fsflags} in '-r') # This is the only valid flag in mountall ;; '-d' | '-dr' | '-rd') # remote mounts are done in rmountall continue ;; '-') # Ignore '-' fsflags='' ;; *) # It isn't an option, must be fstype fstype=${fsflags} fsflags='' ;; esac if [ "${fstype}" = "-" ] then fstype='' fi if [ "${fstype}" != "" ] then fstype="-f ${fstype}" fi # First check file system state and repair if necessary. if [ "${dev}" = "-" ] then /etc/mount ${fsflags} ${fstype} ${dev} ${fs} continue fi msg=`/etc/fsstat ${dev} 2>&1` case $? in 0) /etc/mount ${fsflags} ${fstype} ${dev} ${fs} ;; 1) echo "${dev} is being checked." /etc/fsck -y -D -t /tmp/fsck.tmp ${dev} /etc/mount ${fsflags} ${fstype} ${dev} ${fs} ;; 2) echo "${dev} already mounted" ;; 3) /etc/mount ${fsflags} ${fstype} ${dev} ${fs} if [ $? != 0 ] then echo "${dev} is not a valid filesystem" fi ;; esac done then /etc/mount ${fsflags} ${fstype} ${dev} ${fs} continue fi msg=`/etc/fsstat ${dev} 2>&1` case $? in 0) /etc/mount ${fsflags} ${fstype} ${dev} ${fs} ;; 1) echo "${dev} is being checked." /etc/fsck -y -D -t /tmp/fetc/rc1100744 0 2 1433 4220305312 6435 37777777777 : # @(#)rc1 5.3b of Jan 28, 1988 : # "Run Commands" for init state 0 # Leaves the system in a state where it is safe to turn off the power # or go to Single-user mode. stty sane tab3 2>/dev/null echo '\nSystem services are now being stopped.\n' if [ -d /etc/rc1.d ] then for f in /etc/rc1.d/K* { if [ -s ${f} ] then /bin/sh ${f} stop fi } # system cleanup functions ONLY (things that end fast!) for f in /etc/rc1.d/S* { if [ -s ${f} ] then /bin/sh ${f} start fi } fi trap "" 15 kill -15 -1 sleep 5 /etc/killall 9 sleep 5 sync;sync;sync /etc/umountall stty sane 2>/dev/null sync; sync set `who -r` case "$7" in 0 ) echo '\nThe system is going down.\n' sync /etc/haltsys ;; * ) echo '\nThe system is going to Single-user mode.\n' /etc/init s ;; esac etc/rc1.d/K* { if [ -s ${f} ] then /bin/sh ${f} stop fi } # system cleanup functions ONLY (things that end fast!) for f in /etc/rc1.d/S* { if [ -s ${f} ] then /bin/sh ${f} start fi } fi trap "" 15 kill etc/rc2100744 0 2 1410 4220305313 6432 37777777777 : # @(#)rc2 5.3b of Mar 9, 1988 : # "Run Commands" executed when the system is changing to init state 2, # traditionally called "multi-user". if [ -r /etc/TIMEZONE ] then . /etc/TIMEZONE else TZ=PDT8PST fi export TZ if [ -d /etc/rc2.d ] then if [ $# -eq 1 -a "$1" = restart ] then # run any restart scripts for this runlevel for f in /etc/rc2.d/R* { if [ -s ${f} ] then /bin/sh ${f} restart fi } exit 0 fi set `who -r` if [ "$9" = S ] then echo \\nEntering Multi-user mode...\\n fi for f in /etc/rc2.d/K* { if [ -s ${f} ] then /bin/sh ${f} stop fi } for f in /etc/rc2.d/S* { if [ -s ${f} ] then /bin/sh ${f} start fi } if [ "$9" = 3 ]; then # only if we were running RFS echo Run level 2 processing completed fi fi " = restart ] then # run any restart scripts for this runlevel for f in /etc/rc2.d/R* { if [ -s ${f} ] then /bin/sh ${f} restart fi } exit 0 fi set `who -r` if [ "$9" = S ] then echo \\nEntering Multi-user mode...\\n fietc/rc5100744 0 2 1007 4220305313 6437 37777777777 : # @(#)rc5 5.3b of Jan 28, 1988 # "Run Commands" for init state 5 # Leaves the system in a state where it is safe to shut down the system. # Called via /etc/shutdown. trap "" 15 if [ -d /etc/rc5.d ] then for f in /etc/rc5.d/K* { if [ -s ${f} ] then /bin/sh ${f} stop fi } # system cleanup functions ONLY (things that end fast!) for f in /etc/rc5.d/S* { if [ -s ${f} ] then /bin/sh ${f} start fi } fi /etc/killall 9 sleep 5 /etc/umountall echo "\n The system is going down. \n" /etc/haltsys )rc5 5.3b of Jan 28, 1988 # "Run Commands" for init state 5 # Leaves the system in a state where it is safe to shut down the system. # Called via /etc/shutdown. trap "" 15 if [ -d /etc/rc5.d ] then for f in /etc/rc5.d/K* { if [ -s ${f} ] then /bin/sh ${f} stop fi } # system cleanup functions ONLY (things that end fast!) for f in /etc/rc5.d/S* { if [ -s ${f} ] then /bin/sh ${f} start fi } fi /etc/killall 9 sleep 5 /etc/umountall echo "\n The system is going down. \n" /etc/hetc/shutdown100744 0 2 4275 4220305314 7634 37777777777 : # @(#)shutdown 5.3b of Jan 28, 1988 : # Sequence performed to change the init stat of a machine. # This procedure checks to see if you are permitted and allows an # interactive shutdown. The actual change of state, killing of # processes and such are performed by the new init state, say 0, # and its /etc/rc0. # Usage: shutdown [ ] TTY=`tty` a=`basename ${TTY}` if [ "$a" != "console" -a "$a" != "syscon" ] then echo "$0: You must be on the console to shut the system down." 1>&2 exit 1 fi a=`pwd` if [ "$a" != "/" -a "$a" != "@`uname -n`" ] then echo "$0: You must be in the / directory to run /etc/shutdown." exit 1 fi # Check the user id. if [ -x /usr/bin/id ] then eval `id | sed 's/[^a-z0-9=].*//'` if [ "${uid:=0}" -ne 0 ] then echo "$0: Only root can run /etc/shutdown." exit 2 fi fi grace=60 askconfirmation= initstate=5 while [ $# -gt 0 ] do case $1 in [0-9]* ) grace="$1" ;; -* ) echo "Illegal flag argument '$1'" exit 1 ;; * ) echo "Usage: $0 [ ]" exit 1 esac shift done if [ -n "${askconfirmation}" -a -x /etc/ckbupscd ] then # Check to see if backups are scheduled at this time BUPS=`/etc/ckbupscd` if [ "$BUPS" != "" ] then echo "$BUPS" echo "Do you wish to abort this shutdown and return to command level to do these backups? [y, n] \c" read YORN if [ "$YORN" = "y" -o "$YORN" = "Y" ] then exit 1 fi fi fi if [ -z "${TZ}" -a -r /etc/TIMEZONE ] then . /etc/TIMEZONE fi echo ' Shutdown started. \c' date echo sync cd / trap "exit 1" 1 2 15 a="`who | wc -l`" if [ ${a} -gt 1 -a ${grace} -gt 0 ] then su -n root -c /etc/wall<<-! PLEASE LOG OFF NOW ! ! ! All processes will be killed in ${grace} seconds. ! sleep ${grace} fi /etc/wall <<-! THE SYSTEM IS BEING BROUGHT DOWN NOW ! ! ! ! if [ ${a} -gt 1 -a ${grace} -gt 0 ] then sleep 20 fi if [ ${askconfirmation} ] then echo "Do you want to continue the shutdown procedure ? (y or n): \c" read b else b=y fi case $b in [yY][eE][sS] | [yY] ) ;; * ) /etc/wall <<-\! False Alarm: The system will not be brought down. ! echo 'Shut down aborted.' exit 1 ;; esac /etc/init ${initstate} /bin/kill -9 0 lled in ${grace} seconds. ! sleep ${grace} fi /etc/wall <<-! THE SYSTEM IS BEING BROUGHT DOWN NOW ! ! ! ! if [ ${a} -gt 1 -a ${grace} -gt 0 ] then sleep 20 fi if [ ${askconfirmation} ] then echo "Do you want to continue the shutdown procedure ? (y or n): \c" read b else b=y fi case $b in [yY]etc/powerfail100744 0 2 226 4220305315 7722 37777777777 : # @(#)powerfail 5.3b of Jan 28, 1988 : # # invoked by init from /etc/inittab during powerfail. echo "POWER FAILURE - SYSTEM GOING DOWN" | /etc/wall /etc/init ${initstate} /bin/kill -9 0 lled in ${grace} seconds. ! sleep ${grace} fi /etc/wall <<-! THE SYSTEM IS BEING BROUGHT DOWN NOW ! ! ! ! if [ ${a} -gt 1 -a ${grace} -gt 0 ] then sleep 20 fi if [ ${askconfirmation} ] then echo "Do you want to continue the shutdown procedure ? (y or n): \c" read b else b=y fi case $b in [yY]etc/umountall100744 0 2 1562 4220305315 7776 37777777777 : # @(#)umountall 5.3b of Jan 28, 1988 : # Unmounts all but the root, "/", file system. # kill= if [ $# -ge 1 ] then case "$1" in -k ) if [ ! -x /etc/fuser ] then echo >&2 "$0: -k option not available. No /etc/fuser found." exit 1 fi kill=yes ;; * ) echo >&2 "Usage: $0 [ -k ] -k kill processes with files open in each file system before unmounting." exit 1 esac fi /etc/mount | sort -r | while read fs dummy1 dev mode mode2 dummy2 do case "${mode}" in 'read/write/remote')  mode=-d # remote resource ;; 'read') case "${mode2}" in 'only/remote') mode=-d ;; esac ;; esac case "${fs}" in / | '' ) continue ;; * ) if [ "${mode}" = "-d" ] then /etc/umount -d ${dev} else if [ ${kill} ] then /etc/fuser -k ${dev} sleep 10 fi /etc/umount ${dev} fi esac done ing." exit 1 esac fi /etc/mount | sort -r | while read fs dummy1 dev mode mode2 dummy2 do case "${mode}" in 'read/write/remote') etc/singleuser100744 0 2 1226 12541642 10073 37777777777 : # @(#)singleuser 5.3b of Jan 28, 1988 : # # If any argument prompt user # ASK=false if [ $# = 0 ] then ASK=true fi # # First check if we are already Single-User # set `who -r` if [ $7 = "S" ] then echo "\nThe system is already in System Maintenance Mode." exit 1 fi # if [ "$ASK" = "true" ] then echo "\nYou will kill all currently running processes." echo "Do you wish to continue? (y/n) \c" read answer case $answer in [yY]*) echo "\nKilling all processes..." ;; *) echo "singleuser: aborted."  exit 1 ;; esac fi echo "\nEntering System Maintenance Mode...\n" /etc/init 1 sleep 30 # so user won't get another prompt before init changes state dy Single-User # set `who -r` if [ $7 = "S" ] then echo "\nThe system is already in System Maintenance Mode." exit 1 fi # if [ "$ASK" = "true" ] then echo "\nYou will kill all currently running processes." echo "Do you wish to continue? (y/n) \c" read answer case $answer in [yY]*) echo "\nKilling all processes..." ;; *) echo "singleuser: aborted." etc/multiuser100744 0 2 1043 4220305317 10003 37777777777 : # @(#)multiuser 5.3b of Jan 28, 1988 : # # If any argument prompt user # ASK=false if [ $# = 0 ] then ASK=true fi # # First check if we are already Multi-User # set `who -r` if [ $7 = "2" ] then echo "\nThe system is already in Multi-User Mode." exit 1 fi # if [ "$ASK" = "true" ] then echo "\nYou will kill all currently running processes." echo "Do you wish to continue? (y/n) \c" read answer case $answer in [yY]*) echo "\nEntering Multi-User Mode...\n";; *) echo "multiuser: aborted." exit 1 ;; esac fi /etc/init 2 kill -9 0 988 : # # If any argument prompt user # ASK=false if [ $# = 0 ] then ASK=true fi # # First check if we are already Multi-User # set `who -r` if [ $7 = "2" ] then echo "\nThe system is already in Multi-User Mode." exit 1 fi # if [ "$ASK" = "true" ] then echo "\nYou will kill all currently running processes." echo "Do you wish to continue? (y/n) \c" read answer case $answer in [yY]*) echo "\nEntering Multi-User Mode...\n";; *) echo "multiuser: aborted." exit 1etc/sulogin100744 0 2 24330 4220305317 7456 37777777777 L!  L@.text .data@@ @.bss(@(@L.comment(ÐET(@RU RP PjÐU WVSEPh@tZh@u]YPuj Yh@5@ h@nY5@bYh@WYjkY'h@YHh!@uYPuj Yh@5@h@Y5@Yh@YjY\h@uYPuj$ Y=h@5@2h@Y5@Yh@YjYhR@u,YPuj Yuh@EYjYYGuwVFwS Y5Uh@5@h@uYPujC Y5@uYPuj% Yh@ulYPuj YjYUh@uBYPuj YjYU(Wjh@iE=uEjjE܍EPhTuE EEfefMEPhTu (@E(@EO(@sGUhFjBj  YjEPu1 ~ E=u(@u)E E= tE=u(@vj Yh@uYPuj YfEfEEPhTuM uj}t uYE؋}Uu YPujS Uu YUPWVS3&E@J (@@J (@G|33Q(@E3 (@(@F|E(@(@E3 (@(@F|E)@C@;|37k0)@@(@ 0Fk0)@ @(@F|GV3 @,@G0|]u}UWVS3E(@J @,@F@|EL3t"@0,@F |3(t"@,@JkU0)@23ˆ,@F0|3k,@,@,@,@U,@,@‹P @؍%,@%,@%,@%,@FK3#t"@p"@2P"@,@3ш0F |3p"@,@0F |E9E3'p"@0p"@t"@ 2 0t"@׈0F |3h@HEp"@U E 0F@|ދ]u}UWVS3Ɔ,@FB|3'3+Ëȋ%,@CF|FEEt@|h,@Y3Ɔ,@FB|3oE E 2-@Z~9~.3Aˋt3k,@Ekkӊ(,@,@kÊU(,@C|F|3jh,@F|3833k,@ C|.9~Z~Lj4-@F |Ɔ4-@3-@u 2-@3-@2-@]u}U5(@u u  ÐUW+t7uu=Nj}ÐU="@uh"@hx"@"@5"@$YU="@t5"@| Y"@UW}G?t=:t = u= u ?tGNj}U="@uh"@hx"@N"@u35"@YUWuhhD-@_ =F1@WQY=J1@WBY=:j EPW EWYPj:W$ 9Eu`WY}| `9E~aEN1@t4=:t*j EPW. EW>YPj:W 9Et3}WY}| `9E~aER1@=Z1@=^1@W^Y=b1@WOY=f1@W@Y=J1@G?t =,u?tG=V1@F1@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vucEtE+E؋E)F>}3V '@+V;}V Y}u +gEEvUWVS}u ]GF:u Nj]u}M}3UW}WYjjG P GGg G tg }ÐUWV}uWU YG uG tO G Dt1$@"u}F @tVVY;5'@rGGG tG '@+GPwG Pq | GG듸9tO O G tg aÐUWV}u ;u 3u}F;t N+GuU WVS}uE} tE 8$E"@u5GEE"@uE=+t =-u EGEu309Et "G=xt G=XuE"@tEE"@t E-0#E"@t E-WE-7E;| 3]u}Ãu;09Eu1G"@tG=xt G=Xu EE"@t E-0#E"@t E-WE-7+EGE"@tEE"@t E-0#E"@t E-WE-7E;|} tE 8}t;  3ÐUWV}u;h$@YEt Eu =$@t3txE$@$@h$@EP:uEP+jEP |>h~PW =uh~Ph"@. 3WYkUWVS}(@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3Z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W'@UW$@;='@r3}ÃG uUW$@ WY;='@r}UWV}tlG t6G t3WVYG PY}(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG '@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G '@+G?}3W '@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G '@+G?}3W '@+W;}WY3UWV}G G u}}&ul1@t5@GW '@*h!YGt@O G W'@GGVYtG uO @u}G |9@WR'@UWV}G '@+G}G '@Wu};7}7𐐐3ÐU(@EEPhTu } E裨(@3ø6ÐÐU WVSE9ET=(@u<(@ (@(@ (@(@(@(@(@(@(@E@3؋=(@E&;5(@(@E@E=w=(@jY(@@;t?3Ee ƹ3tL3+‰EEE2(@+(@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5(@(@0E+E-(@@;t(@(@(@(@~Љ(@;5(@v(@(@(@ 9=(@u (@(@G(=(@95(@u=(@7tލ;r;l%;UWV}5(@%(@9u5(@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ(@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$(@Ru (@+D$øT$(@3øvÐ0NL$0:L$0+L$0L$0 L$0 Ã(@Ð@@/etc/inits/etc/passwd **** PASSWORD FILE MISSING! **** root **** NO ENTRY FOR root IN PASSWORD FILE! **** Type Ctrl-d to proceed with normal startup, (or give root password for system maintenance): Login incorrect Unable to execute program "" to go single user /dev/tty @@(#)sulogin 5.3b of Jan 28, 1988:2*" <4,$ >6.&@80( 91)! ;3+# =5-% ?7/'(08@ '/7?&.6>%- 5=$, 4<#+ 3;"* 2:!) 1991)! :2*" ;3+# <4,$?7/'>6.&=5-%      )4%/7(3-!0,1'8"5.*2$                                                                                                                                     @,@`,@/etc/passwdrr ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/9@9@'@9@;@3.1bS03.1bS0'@9@etc/inittab.top100644 0 2 1035 4220305310 10176 37777777777 init:2:initdefault: brc::bootwait:/etc/brc /dev/console 2>&1 r1:1:wait:/etc/rc1 /dev/console 2>&1 r2:2:wait:/etc/rc2 /dev/console 2>&1 r3:3:wait:/etc/rc2 /dev/console 2>&1 rsr2:2:restart:/etc/rc2 restart /dev/console 2>&1 rsr3:3:restart:/etc/rc3 restart /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail /dev/console 2>&1 wait:/etc/brc /dev/console 2>&1 r1:1:wait:/etc/rc1 /dev/console 2>&1 r2:2:wait:/etc/rc2 /dev/console 2>&1 r3:3:wait:/etc/rc2 /dev/console 2>&1 rsr2:2:restart:/etc/rc2 restart /dev/console 2>&1 rsr3:3:restart:/etc/rc3 restart /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail @G@P@Y@q@@@@@@@@@ @ @2@@@X@v@@@@@@@@@@!@*@3@F@O@X@s@@@@@@Q@x@@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@[@e@u@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error3.1bS03.1bS0Error 100Error 101Error 10etc/asktime100755 0 2 3760 4132230573 7424 37777777777 : # # @(#)asktime.sh 1.5 87/10/06 # # Copyright (C) Microsoft Corporation, 1983 # # This Module contains Proprietary Information of Microsoft # Corporation and AT&T, and should be treated as Confidential. # #*** asktime -- prompt user for date and time, set things accordingly # # If a real-time clock exists, it is used as the reference. O.w. # the system clock is used. # # We (silently) force the real-time clock and the system clock # to agree. This is done even if the user does not change the # things from the reference. # # The method is basically as follows (unfortunately shell script # limitations make the actual implementation rather convoluted): # # 'real-time clock' means clock/calendar unaffected by power-downs, # etc. # 'system clock' means clock kept track of by kernel, initialized # at boot time from date on super-block. # # ref=`date` reference comes from real-time clock # date -s > /dev/null sync system clock to real-time # read new user override # date -c $new > /dev/null sync real-time clock to override # date -s > /dev/null sync system clock to real-time # exit 0 PATH=/bin:/usr/bin # Figure out if we have a real-time clock. If so, synchronize system clock # to it. rtc=FALSE if [ -c /dev/clock -a -r /dev/clock ] ; then rtc=TRUE date -s > /dev/null fi # Reference date=`date` hour=`date +%H\%M` echo "Current System Time is `date`" echo "Enter date (yymmdd) or press RETURN if ok: \c" read date echo "Enter time (hhmm) or press RETURN if ok: \c" read time if [ -z "$date$time" ] ; then exit 0 elif [ -z "$time" ] ; then time=$hour fi if [ $rtc = TRUE ] ; then dateflag=-c else dateflag= fi until date $dateflag `/lib/cvtdate $date$time 2>&1` 2>/dev/null ; do echo "\nTry again" echo "Enter date (yymmdd) or press RETURN if ok: \c" read date echo "Enter time (hhmm) or press RETURN if ok: \c" read time if [ -z "$date$time" ] ; then exit 0 elif [ -z "$time" ] ; then time=$hour fi done if [ $rtc = TRUE ] ; then date -s > /dev/null fi exit 0 if [ -z "$date$tetc/checklist100644 0 2 12 3756714654 7702 37777777777 /dev/root hen exit 0 elif [ -z "$time" ] ; then time=$hour fi if [ $rtc = TRUE ] ; then dateflag=-c else dateflag= fi until date $dateflag `/lib/cvtdate $date$time 2>&1` 2>/dev/null ; do echo "\nTry again" echo "Enter date (yymmdd) or press RETURN if ok: \c" read date echo "Enter time (hhmm) or press RETURN if ok: \c" read time if [ -z "$date$time" ] ; then exit 0 elif [ -z "$time" ] ; then time=$hour fi done if [ $rtc = TRUE ] ; then date -s > /dev/null fi exit 0 if [ -z "$date$tetc/dump.hd100700 0 2 1060 4224504261 7303 37777777777 : # @(#) dump.hd.sh 1.5 87/12/23 - streaming tape version echo " This procedure dumps the hard disk to cartridge tape. The system should be in single-user mode. Be sure there is a tape cartridge in the drive. Do you wish to have the tape automatically verified? \c" read LINE case "$LINE" { [yY]*) echo Each tape will be verified after it is finished. OPT=-V ;; *) echo "Tapes will not be verified" ;; } swapsize=`sizefs /dev/hd0.layout 1` fssize=`sizefs /dev/hd0.layout 2` archive $OPT -e -i "SWAPBLOCKS $swapsize FSSIZE $fssize" /dev/rhd0b /dev/rct tape version echo " This procedure dumps the hard disk to cartridge tape. The system should be in single-user mode. Be sure there is a tape cartridge in the drive. Do you wish to have the tape automatically verified? \c" read LINE case "$LINE" { [yY]*) echo Each tape will be verified after it is finished. OPT=-V ;; *) echo "Tapes will not be verified" ;; } swapsize=`sizefs /dev/hd0.layout 1` fssize=`sizefs /dev/hd0.layout 2` archive $OPT -e -i "SWAPBLOCKetc/group100644 0 2 226 4202435643 7075 37777777777 root:x:0:root other::1: sys:x:2:sys bin:x:3:bin,lp adm:x:4:adm uucp:x:5:uucp mail::6: daemon:x:7:daemon rfs_rem:NOLOGIN:60001: rfs_loc:NOLOGIN:60002: ngle-user mode. Be sure there is a tape cartridge in the drive. Do you wish to have the tape automatically verified? \c" read LINE case "$LINE" { [yY]*) echo Each tape will be verified after it is finished. OPT=-V ;; *) echo "Tapes will not be verified" ;; } swapsize=`sizefs /dev/hd0.layout 1` fssize=`sizefs /dev/hd0.layout 2` archive $OPT -e -i "SWAPBLOCKetc/makedevs100755 0 2 3775 4273204662 7602 37777777777 : PATH=/bin:/usr/bin:/etc M=mknod # @(#)makedevs.sh 1.11 88/02/25 # do NOT redirect output to /dev/null, it may not exist, and then # mknod'ing it would fail if test ! -d $1 then mkdir $1 fi if test ! -d $1/sys then mkdir $1/sys fi cd $1 if test $? -ne 0 then exit $? # exit if cd fails fi $M console c 5 0 $M syscon c 5 0 $M systty c 5 0 $M mem c 7 0 $M kmem c 7 1 $M log c 26 13 $M pty c 29 0 chmod 666 ./pty cd sys $M mems c 7 8 $M var c 7 9 $M proc c 7 10 $M procmax c 7 11 $M swplo c 7 12 $M swapdev c 7 13 $M sysinfo c 7 14 $M minfo c 7 15 $M syswait c 7 16 $M pagemap c 7 17 $M swaptab c 7 18 cd .. $M null c 7 2 $M fd0 b 1 0 $M fd096 b 1 1 $M fd096ds9 b 1 2 $M fd048 b 1 3 $M fd048ds8 b 1 4 $M fd048ss9 b 1 5 $M fd048ss8 b 1 6 $M rfd0 c 1 0 $M rfd096 c 1 1 $M rfd096ds9 c 1 2 $M rfd048 c 1 3 $M rfd048ds8 c 1 4 $M rfd048ss9 c 1 5 $M rfd048ss8 c 1 6 $M hd0 b 0 0 $M hd0a b 0 1 $M hd0b b 0 2 $M hd0.fsck b 0 7 $M hd0.boot b 0 12 $M rhd0 c 0 0 $M rhd0a c 0 1 $M rhd0b c 0 2 $M rhd0.fsck c 0 7 $M rhd0.drinfo c 0 10 $M rhd0.badlist c 0 11 $M rhd0.boot c 0 12 $M rhd0.layout c 0 14 $M rhd0.secmap c 0 15 $M rct c 2 0 $M rsct c 2 128 if [ "$SYSID" = "$ACS2086" ] ; then $M plp c 3 0 fi # create tty devices (but not when run from root floppy) if test -x /etc/makettys; then /etc/makettys .; fi $M tty c 6 0 $M clock c 8 0 $M staticram c 8 1 $M nsnet c 14 0 $M dl c 15 0 $M error c 16 0 # create links ln fd0 fd0.auto ln fd096 fd096ds15 ln fd096ds9 fd0.altos ln fd096ds9 fd0.swap ln fd048 fd048ds9 ln rfd0 rfd0.auto ln rfd0 mt1 ln rfd0 tar ln rfd096 rfd096ds15 ln rfd096ds9 rfd0.altos ln rfd096ds9 rfd0.swap ln rfd096ds9 ffmt ln rfd048 rfd048ds9 ln hd0a swap ln hd0b root ln hd0.fsck hd0.roc0 ln rhd0a rswap ln rhd0b rroot ln rhd0.fsck rhd0.roc0 ln rhd0.drinfo hd0.drinfo ln rhd0.badlist hd0.badlist ln rhd0.layout hd0.layout ln rhd0.secmap hd0.secmap ln rct dump chmod 644 * sys/* chmod 666 null chmod 666 wt* > /dev/null 2>&1 chmod 666 console tty* *lp *ct* null *fd* tar mt1 nsnet chmod 755 ./sys . find . -type d -exec chmod 755 {} \; lnetc/motd100644 0 2 70 4175200555 6662 37777777777  Welcome to Altos Computer Systems' System V/386 5.3b n rfd096ds9 rfd0.swap ln rfd096ds9 ffmt ln rfd048 rfd048ds9 ln hd0a swap ln hd0b root ln hd0.fsck hd0.roc0 ln rhd0a rswap ln rhd0b rroot ln rhd0.fsck rhd0.roc0 ln rhd0.drinfo hd0.drinfo ln rhd0.badlist hd0.badlist ln rhd0.layout hd0.layout ln rhd0.secmap hd0.secmap ln rct dump chmod 644 * sys/* chmod 666 null chmod 666 wt* > /dev/null 2>&1 chmod 666 console tty* *lp *ct* null *fd* tar mt1 nsnet chmod 755 ./sys . find . -type d -exec chmod 755 {} \; lnetc/passwd100644 0 2 1722 4203401354 7255 37777777777 root::0:2:The Super User:/:/bin/sh admin::0:2:The Systems Administrator:/:/bin/sh daemon:NOLOGIN:1:7:Daemon for periodic tasks:/: listen:NOLOGIN:0:4:MUST be root for RFS remote mounts to work:/usr/net:/bin/rsh rfs_rem:NOLOGIN:60001:60001:for RFS files created by a remote user:: rfs_loc:NOLOGIN:60002:60002:for RFS files created by a local user:: sys:NOLOGIN:2:2:The owner of system admin files:/usr/sys: bin:NOLOGIN:3:3:The owner of system files:/bin: adm:NOLOGIN:4:4:Administration:/usr/adm:/bin/sh uucp::5:5:Account for uucp program:/usr/spool/uucppublic:/usr/lib/uucp/uucico lp:NOLOGIN:6:3:LP Administrator:/bin: PCpath:NOLOGIN:9:0::/etc/net/pc/partitions: asg:NOLOGIN:11:3:For assign command:/bin: standard::12:1:0000-Admin(0000):/usr/:/bin/aomlogin dosadm:NOLOGIN:13:1:DOS server administrator:/usr/lib/adlantes/dos: pcuser::14:1:AdLANtes/PC user:/usr/pcuser:/usr/bin/doslogin user::200:1::/usr/user:/bin/sh unix::201:1::/usr/unix:/bin/sh altos::202:1::/usr/altos:/bin/sh :4:Administration:/usr/adm:/bin/sh uucp::5:5:Aetc/ttys100644 0 2 1007 4273205167 6766 37777777777 16console 06tty01 16tty02 16tty03 06tty04 16tty05 16tty06 16tty07 16tty08 06tty09 06tty10 06tty11 06tty12 06tty13 06tty14 06tty15 06tty16 06tty17 06tty18 06tty19 06tty20 06tty21 06tty22 06tty23 06tty24 06tty25 06tty26 06tty27 06tty28 06tty29 06tty30 06tty31 06tty32 06tty33 06tty34 06tty35 06tty36 06tty37 06tty38 06tty39 06tty40 06tty41 06tty42 06tty43 06tty44 06tty45 06tty46 06tty47 06tty48 06tty49 06tty50 06tty51 06tty52 06tty53 06tty54 06tty55 06tty56 06tty57 06tty58 06tty59 06tty60 06tty61 06tty62 06tty63 06lp le 06tty01 16tty02 16tty03 06tty04 16tty05 16tty06 16tty07 16tty08 06tty09 06tty10 06tty11 06tty12 06tty13 06tty14 06tty15 06tty16 06tty17 06tty18 06tty19 06tty20 06tty21 06tty22 06tty23 06tty24 06tty25 06tty26 06tty27 06tty28 06tty29 06tty30 06tty31 06tty32 06tty33 06tty34 06tty35 06tty36 06tty37 06tty38 06tty39 06tty40 06tty41 06tty42 06tty43 06tty44 06tty45 06tty46 06tty47 06tty48 06tty49 06tty50 06tty51 06tty52 06tty53 06tty54 06tty55 06tty56 06tty57 06tty58 06tty59 06tty60 06tty61 06tty62 06tty6etc/ttytype100644 0 2 1502 4273205171 7500 37777777777 altos3 console altos3 tty01 altos3 tty02 altos3 tty03 altos3 tty04 altos3 tty05 altos3 tty06 altos3 tty07 altos3 tty08 altos3 tty09 altos3 tty10 altos3 tty11 altos3 tty12 altos3 tty13 altos3 tty14 altos3 tty15 altos3 tty16 altos3 tty17 altos3 tty18 altos3 tty19 altos3 tty20 altos3 tty21 altos3 tty22 altos3 tty23 altos3 tty24 altos3 tty25 altos3 tty26 altos3 tty27 altos3 tty28 altos3 tty29 altos3 tty30 altos3 tty31 altos3 tty32 altos3 tty33 altos3 tty34 altos3 tty35 altos3 tty36 altos3 tty37 altos3 tty38 altos3 tty39 altos3 tty40 altos3 tty41 altos3 tty42 altos3 tty43 altos3 tty44 altos3 tty45 altos3 tty46 altos3 tty47 altos3 tty48 altos3 tty49 altos3 tty50 altos3 tty51 altos3 tty52 altos3 tty53 altos3 tty54 altos3 tty55 altos3 tty56 altos3 tty57 altos3 tty58 altos3 tty59 altos3 tty60 altos3 tty61 altos3 tty62 altos3 tty63 ty24 altos3 tty25 altos3 tty26 altos3 tty27 altos3 tty28 altos3 tty29 altos3 tty30 altos3 tty31 altos3 tty32 altos3 tty33 altos3 tty34 altos3 tty35 altos3 tty36 altos3 tty37 altos3 tty38 altetc/sysdisp100644 0 2 4735 4211165376 7473 37777777777 # # @(#) @(#)sysdisp 1.2 88/02/01 # This file describes the system disipline. # This is a description of all POSSIBLE board types for this system. # Blank lines are ignored as well as everything following '#' # The entries are of the form: # # # # where: # is the board type (see sys/bootinfo.h> # is the board group type. Can be used to by programs # to associated different boards with similar functions # ( e.g. SIO and MultiDrop both belong to the group "tty" ). # is a string describing # (e.g. "SIO", "MultiDrop". It may be up to 28 bytes. # is a GROUP dependant argument. There are 5 # of these - all of which MUST be specified. # # All fields other than MUST be quoted in double quotes. # If the format is deviated from, this file will be ignored and default # values used (a message is printed to standard error by the disipline # library routines). # # Arguments for the GROUP "tty" : # # is the major number of devices associated with # is the device prefix of devices associated with # This prefix will be used by library routines to # form device names. If it does not begin with a '/' # '/dev/' will be prepended to it. # is the number of ports per board of this type. If this # is "", then this number will be computed based # on the total number of ttys divided by the number # of boards of this type in the system. # is the first tty number to be associated with # devices for . If this field "" an ioctl will # be made to the kernel to attempt to determine it # (see for IOCHOWMANY). # is the last tty number to be associated with # devices for . If this field is "" # but is not, the total number of ports will # be added to to determine the last tty device. # If both and are "", then # the values returned by an IOCHOWMANY ioctl will be used. # # 0 "emp" "empty" " " " " " " " " " " 3 "tty" "SIO" "5" "tty" "10" " " " " 4 "tty" "MultiDrop" "10" "tty" " " " " " " 5 "fp" "File Processor" " " " " " " " " " " 6 "tty" "ACPA" "10" "tty" " " " " " " 127 "unk" "unknown" " " " " " " " " " " d to to determine the last etc/systemid100644 0 2 6 3760703135 7540 37777777777 Altos vice. # If both and are "", then # the values returned by an IOCHOWMANY ioctl will be used. # # 0 "emp" "empty" " " " " " " " " " " 3 "tty" "SIO" "5" "tty" "10" " " " " 4 "tty" "MultiDrop" "10" "tty" " " " " " " 5 "fp" "File Processor" " " " " " " " " " " 6 "tty" "ACPA" "10" "tty" " " " " " " 127 "unk" "unknown" " " " " " " " " " " d to to determine the last etc/termcap100644 0 2 42666 4043434604 7451 37777777777 # @(#) termcap 1.3 87/04/23 # # /etc/termcap # # This file is divided into 2 parts. The entries in the first # part of this file have been tested and will be supported # by Altos Computer Systems. # # The entries in the second part of this file have not # necessarily been tested by Altos and are supplied for # information only. # # This file also contains upgraded entries (including Wyse entries) # taken from /usr/multiplan/termcap (from Microsoft) which were # unavailable in the /etc/termcap.UCB (the Berkeley termcap). # # Pconfig, the configuration program for Xenix, uses this file # as the basis for terminals available to Xenix. # # # Termcap for Altos II terminal # a2|altos2|alt2|altos 2|Altos II:\ :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\ :up=\E[1A:do=\E[1B:nd=\E[1C:bc=\E[1D:cm=\E[%i%d;%dH:ho=\E[H:\ :al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:im=:ei=:SP=\E[i:\ :co#80:li#24:ug#0:sg#0:bs:pt:sr:\ :so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:if=/usr/lib/tabset/vt100:\ :ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:kh=\E[f:kb=^H:cr=^M:\ :XU=^Aq\r:XD=^Ar\r:XR=^As\r:XL=^At\r:\ :YU=^AQ\r:YD=^AR\r:YR=^AS\r:YL=^AT\r:\ :HL=^AP\r:\ :IS=\E[@:DE=\E[P:IL=\E[L:NS=\E[S:PS=\E[T:\ :LO=\E[0q:LC=\E[5q:LL=\E[6q:\ :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:\ :k4=^AD\r:k5=^AE\r:k6=^AF\r:k7=^AG\r:\ :k8=^AH\r:k9=^AI\r:kA=^AJ\r:kB=^AK\r:\ :kC=^AL\r:kD=^AM\r:kE=^AN\r:kF=^AO\r:\ :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: # # Termcap for Altos III terminal # # a3|altos3|alt3|altos 3|Altos III:\ :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\ :up=\E[1A:do=\E[1B:nd=\E[1C:bc=\E[1D:cm=\E[%i%d;%dH:ho=\E[H:\ :al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:im=:ei=:SP=\E[i:\ :co#80:li#24:ug#0:sg#0:bs:pt:sr=\EM:\ :so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:if=/usr/lib/tabset/vt100:\ :ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:kh=\E[f:kb=^H:cr=^M:\ :XU=^Aq\r:XD=^Ar\r:XR=^As\r:XL=^At\r:\ :HL=^AP\r:\ :IS=\E[@:DE=\E[P:IL=\E[L:NS=\E[S:PS=\E[T:\ :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:\ :k4=^AD\r:k5=^AE\r:k6=^AF\r:k7=^AG\r:\ :k8=^AH\r:k9=^AI\r:kA=^AJ\r:kB=^AK\r:\ :kC=^AL\r:kD=^AM\r:kE=^AN\r:kF=^AO\r:\ :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: w1|wyse|Wyse wy-100 w/reverse video:is=\Eu\E0:\ :al=\EE:am:bs:ce=\ET:cm=\E=%+ %+ :ta=5^I:cl=\E*:co#80:dc=\EW:dl=\ER:\ :ei=\Er:ho=^^:im=\Eq:li#24:mi:nd=^L:se=\EG0:so=\EG4:sg#1:up=^K:\ :kl=^H:kd=^J:ku=^K:kr=^L:ma=^K^P^L :\ :GV=\EH6:GH=\EHZ:GU=\EH=:GD=\EH0:G1=\EH3:G2=\EH2:G3=\EH1:G4=\EH5:\ :MP=^^\E+:\ :BS=^U:CL=^V:CR=^B:RK=^L:UK=^K:LK=^H:DK=^J:HM=\036: w2|wyse2|Wyse wy-100 no reverse video:is=\Eu\E0:\ :al=\EE:am:bs:ce=\ET:cm=\E=%+ %+ :ta=5^I:cl=\E*:co#80:dc=\EW:dl=\ER:\ :ei=\Er:ho=^^:im=\Eq:li#24:mi:nd=^L:se=]:so=[:sg#1:\ :up=^K:kl=^H:kd=^J:ku=^K:kr=^L:ma=^K^P^L :\ :BS=^U:CL=^V:CR=^B:RK=^L:UK=^K:LK=^H:DK=^J:HM=\036:\ :GV=\EH6:GH=\EHZ:GU=\EH=:GD=\EH0:G1=\EH3:G2=\EH2:G3=\EH1:G4=\EH5: a4|altos4|altos 4|Altos4|Altos 4|alt4|Altos IV:\ :cd=\EY:ce=\ET:cl=\E+:\ :up=^K:do=^J:nd=^L:bc=^H:cm=\E=%+ %+ :ho=^^:\ :al=\EE:dl=\ER:ic=\EQ:dc=\EW:im=:ei=:\ :co#80:li#24:sg#1:ug#1:am:bs:mi:pt:ta=5^I:sr=\Ej:\ :so=\EG4:se=\EG0:us=\EG8:ue=\EG0:\ :is=\Eu\E0:if=/usr/lib/tabset/std:\ :ku=^K:kd=^J:kr=^L:kl=^H:kh=^^:kb=^H:cr=^M:\ :NS=\EK:PS=\EJ:\ :GS=\EH^B:GE=\EH^C\ :GV=\EH6:GH=\EH\072:GU=\EH=:GD=\EH0:G1=\EH3:G2=\EH2:G3=\EH1:G4=\EH5:\ :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:\ :k4=^AD\r:k5=^AE\r:k6=^AF\r:k7=^AG\r:\ :k8=^AH\r:k9=^AI\r:kA=^AJ\r:kB=^AK\r:\ :kC=^AL\r:kD=^AM\r:kE=^AN\r:kF=^AO\r:\ :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: w5|wyse5|wyse50|Wyse wy-50:\ :cd=\EY:ce=\ET:cl=\E+:\ :up=^K:do=^J:nd=^L:bc=^H:cm=\E=%+ %+ :ho=^^:\ :al=\EE:dl=\ER:ic=\EQ:dc=\EW:im=:ei=:\ :co#80:li#24:sg#1:ug#1:am:bs:mi:pt:ta=5^I:sr=\Ej:\ :so=\EG4:se=\EG0:us=\EG8:ue=\EG0:\ :is=\Eu\E0:if=/usr/lib/tabset/std:\ :ku=^K:kd=^J:kr=^L:kl=^H:kh=^^:kb=^H:cr=^M:\ :NS=\EK:PS=\EJ:\ :GS=\EH^B:GE=\EH^C\ :GV=\EH6:GH=\EH\072:GU=\EH=:GD=\EH0:G1=\EH3:G2=\EH2:G3=\EH1:G4=\EH5:\ :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:\ :k4=^AD\r:k5=^AE\r:k6=^AF\r:k7=^AG\r:\ :k8=^AH\r:k9=^AI\r:kA=^AJ\r:kB=^AK\r:\ :kC=^AL\r:kD=^AM\r:kE=^AN\r:kF=^AO\r:\ :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: w3|wyse3|wyse30|Wyse wy-30:\ :cd=\EY:ce=\ET:cl=\E+:\ :up=^K:do=^J:nd=^L:bc=^H:cm=\E=%+ %+ :ho=^^:\ :al=\EE:dl=\ER:ic=\EQ:dc=\EW:im=:ei=:\ :co#80:li#24:sg#1:ug#1:am:bs:mi:pt:ta=5^I:sr=\Ej:\ :so=\EG4:se=\EG0:us=\EG8:ue=\EG0:\ :is=\Eu\E0:if=/usr/lib/tabset/std:\ :ku=^K:kd=^J:kr=^L:kl=^H:kh=^^:kb=^H:cr=^M:\ :NS=\EK:PS=\EJ:\ :GS=\EH^B:GE=\EH^C\ :GV=\EH6:GH=\EH\072:GU=\EH=:GD=\EH0:G1=\EH3:G2=\EH2:G3=\EH1:G4=\EH5:\ :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:\ :k4=^AD\r:k5=^AE\r:k6=^AF\r:k7=^AG\r:\ :k8=^AH\r:k9=^AI\r:kA=^AJ\r:kB=^AK\r:\ :kC=^AL\r:kD=^AM\r:kE=^AN\r:kF=^AO\r:\ :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: w7|wyse7|wyse75|Wyse wy-75:\ :cd=\E[J:ce=\E[K:cl=\E[H\E[2J:\ :up=\E[1A:do=\E[1B:nd=\E[1C:bc=\E[1D:cm=\E[%i%d;%dH:ho=\E[H:\ :al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:im=:ei=:\ :co#80:li#24:ug#0:sg#0:bs:pt:sr=\EM:\ :so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:if=/usr/lib/tabset/vt100:\ :ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:kh=\E[H:kb=^H:cr=^M:\ :k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS: w9|wyse95|wyse9|Wyse wyse-95:\ :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\ :up=\E[1A:do=\E[1B:nd=\E[1C:bc=\E[1D:cm=\E[%i%d;%dH:ho=\E[H:\ :al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:im=:ei=:\ :co#80:li#24:ug#0:sg#0:bs:pt:sr:\ :so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:if=/usr/lib/tabset/vt100:\ :ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:kh=\E[f:kb=^H:cr=^M:\ :XU=^Aq\r:XD=^Ar\r:XR=^As\r:XL=^At\r:\ :YU=^AQ\r:YD=^AR\r:YR=^AS\r:YL=^AT\r:\ :HL=^AP\r:\ :IS=\E[@:DE=\E[P:IL=\E[L:NS=\E[S:PS=\E[T:\ :LO=\E[0q:LC=\E[5q:LL=\E[6q:\ :k0=^A@\r:k1=^AA\r:k2=^AB\r:k3=^AC\r:\ :k4=^AD\r:k5=^AE\r:k6=^AF\r:k7=^AG\r:\ :k8=^AH\r:k9=^AI\r:kA=^AJ\r:kB=^AK\r:\ :kC=^AL\r:kD=^AM\r:kE=^AN\r:kF=^AO\r:\ :c0=^A`\r:c1=^Aa\r:c2=^Ab\r:c3=^Ac\r:\ :c4=^Ad\r:c5=^Ae\r:c6=^Af\r:c7=^Ag\r:\ :c8=^Ah\r:c9=^Ai\r:cA=^Aj\r:cB=^Ak\r:\ :cC=^Al\r:cD=^Am\r:cE=^An\r:cF=^Ao\r: a5|altos5|alt5|altos 5|Altos V:tc=altos3: w8|wyse8|wyse85|Wyse 85:\ :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\ :up=\E[1A:do=\E[1B:nd=\E[1C:bc=\E[1D:cm=\E[%i%d;%dH:ho=\E[H:\ :al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:im=:ei=:\ :co#80:li#24:ug#0:sg#0:bs:pt:\ :so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :ks=\E=:ke=\E>:\ :is=\E[36h\E[2l\E[?16l\E>\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134:\ :vs=\E[36h\E[2l\E[?16l\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134:\ :ve=\E[36h\E[2l\E[?16l\E[?7h\EP1;1|43/1B;44/08;45/0A;46/1B5B66\E\134:\ :if=/usr/lib/tabset/vt100:\ :ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:kb=^H:\ :HL=\E[28~:kh=\E[f:\ :IS=\E[@:DE=\E[P:IL=\E[L:DL=\E[M:NS=\E[S:PS=\E[T:\ :LO=\E[0q:LC=\E[5q:LL=\E[6q:\ :k0=\E17~:k1=\E18~:k2=\E19~:k3=\E20~:\ :k4=\E21~:k5=\E31~:k6=\E32~:k7=\E33~:k8=\E34~: v3|tvi950|Televideo 950:if=/usr/lib/tabset/std:\ :am:al=2*\EE:bs:ce=\ET:cm=\E=%+ %+ :cl=^Z:co#80:dc=\EW:dl=2*\ER:ei=:\ :cd=\Ey:ku=^K:kd=^V:kl=^H:kr=^L:\ :k0=^A@\r:k1=^Aa\r:k2=^Ab\r:k3=^Ac\r:\ :k4=^Ad\r:k5=^Ae\r:k6=^Af\r:k7=^Ag\r:k8=^Ah\r:k9=^Ai\r:\ :ho=^^:im=:ic=\EQ:li#24:nd=^L:pt:ta=5^I:\ :se=\EG0:so=\EG<:up=^K:us=\EG8:ue=\EG0:\ :ma=^K^P^V^N^L :sg#1:ug#1: # The tvi950 is repeated for the tvi925 Z7|tvi925|Televideo 925:\ :am:al=2*\EE:bs:ce=\ET:cm=\E=%+ %+ :cl=^Z:co#80:dc=\EW:dl=2*\ER:ei=:\ :cd=\Ey:ku=^K:kd=^V:kl=^H:kr=^L:\ :k0=^A@\r:k1=^Aa\r:k2=^Ab\r:k3=^Ac\r:\ :k4=^Ad\r:k5=^Ae\r:k6=^Af\r:k7=^Ag\r:k8=^Ah\r:k9=^Ai\r:\ :ho=^^:im=:ic=\EQ:li#24:nd=^L:pt:ta=5^I:\ :se=\EG0:so=\EG<:up=^K:us=\EG8:ue=\EG0:\ :ma=^K^P^V^N^L :sg#1:ug#1: # This tvi920 is a copy of the following tvi 912 v1|tvi920|Old Televideo 920:if=/usr/lib/tabset/std:\ :al=33*\EE:am:bs:ce=\ET:cm=\E=%+ %+ :cl=^Z:co#80:dc=\EW:dl=33*\ER:ei=:\ :ku=^K:kd=^J:kl=^H:kr=^L:k0=^A@\r:k1=^Aa\r:k2=^Ab\r:k3=^Ac\r:\ :k4=^Ad\r:k5=^Ae\r:k6=^Af\r:k7=^Ag\rk8=^Ah\r:k9=^Ai\r:\ :ho=^^:im=:ic=\EQ:li#24:nd=^L:pt:ta=5^I:\ :se=\Ek:so=\Ej:up=^K:us=\El:ue=\Em:\ :ma=^K^P^L :sg#1:ug#1: v1|tvi912|Old Televideo 912:if=/usr/lib/tabset/std:\ :al=33*\EE:am:bs:ce=\ET:cm=\E=%+ %+ :cl=^Z:co#80:dc=\EW:dl=33*\ER:ei=:\ :ku=^K:kd=^J:kl=^H:kr=^L:k0=^A@\r:k1=^Aa\r:k2=^Ab\r:k3=^Ac\r:\ :k4=^Ad\r:k5=^Ae\r:k6=^Af\r:k7=^Ag\rk8=^Ah\r:k9=^Ai\r:\ :ho=^^:im=:ic=\EQ:li#24:nd=^L:pt:ta=5^I:\ :se=\Ek:so=\Ej:up=^K:us=\El:ue=\Em:\ :ma=^K^P^L :sg#1:ug#1: # This tvi910+ is a copy of the following tvi 910 v4|tvi910+|Televideo 910+:if=/usr/lib/tabset/std:\ :am:bs:cd=\EY:ce=\ET:cm=\E=%+ %+ :ta=5^I:\ :co#80:cl=^Z:do=^J:ho=^^:li#24:\ :ku=^K:kd=^V:kl=^H:kr=^L:\ :nd=^L:up=^K:ue=\EG0:us=\EG4:ug#1 v4|tvi910|Televideo 910:if=/usr/lib/tabset/std:\ :am:bs:cd=\EY:ce=\ET:cm=\E=%+ %+ :ta=5^I:\ :co#80:cl=^Z:do=^J:ho=^^:li#24:\ :ku=^K:kd=^V:kl=^H:kr=^L:\ :nd=^L:up=^K:ue=\EG0:us=\EG4:ug#1 av|viewpoint|addsviewpoint|ADDS Viewpoint:\ :cr=^M:do=^J:nl=^J:bl=^G:\ :am:le=^H:bs:li#24:co#80:cm=\EY%+ %+ :cd=\Ek:ce=\EK:nd=^F:\ :up=^Z:cl=^L:ll=^A:kl=^U:kr=^F:kd=^J:ku=^Z:kh=^A:\ :so=^N:se=^O:us=^N:ue=^O:is=^O\E0`:vs=^O\E0P:ve=^O\E0`: # Note: if return acts weird on a980, check internal switch #2 # on the top chip on the CONTROL pc board. d1|vt100|DEC VT100:\ :co#80:li#24:am:cl=50\E[;H\E[2J:bs:cm=5\E[%i%2;%2H:nd=\E[C:up=\E[A:\ :ce=3\E[K:cd=50\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :is=\E>\E[?3l\E[?4l\E[?5l\E[?7h\E[?8h:ks=\E[?1h\E=:ke=\E[?1l\E>:\ :if=/usr/lib/tabset/vt100:ku=\EOA:kd=\EOB:kr=\EOC:kl=\EOD:\ :kh=\E[H:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:pt:sr=5\EM: :am:le=^H:bs:li#24:co#80:cm=\EY%+ %+ :cd=\Ek:ce=\EK:nd=^F:\ :up=^Z:cl=^L:ll=^A:kl=^U:kr=^F:kd=^J:ku=^Z:kh=^A:\ :so=^N:se=^O:us=^N:ue=^O:is=^O\E0`:vs=^O\E0P:ve=^O\E0`: d2|vt125|DEC VT125:\ :co#80:li#24:am:cl=50\E[;H\E[2J:bs:cm=5\E[%i%2;%2H:nd=\E[C:up=\E[A:\ :ce=3\E[K:cd=50\E[J:so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:im=:ei=:\ :is=\E>\E[?7h:ks=\E=:ke=\E>:\ :if=/usr/lib/tabset/vt100:ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:\ :kh=\E[H:k1=\EOP:k2=\EOQ:k3=EOR:k4=\EOS:pt:sr=5\EM:sg#0: :vs=\E[2l\E>\E[?7h:ve=\E[2l: d3|vt240|DEC VT240:\ :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\ :up=\E[1A:do=\E[1B:nd=\E[1C:bc=\E[1D:cm=\E[%i%d;%dH:ho=\E[H:\ :al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:im=:ei=:\ :co#80:li#24:ug#0:sg#0:bs:pt:\ :so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :ks=\E=:ke=\E>:\ :is=\E[2l\E>\E[?7h\EP1;1|23/1B;24/08;25/0A;26/1B5B66\E\134:\ :vs=\E[2l\E>\E[?7h\EP1;1|23/1B;24/08;25/0A;26/1B5B66\E\134:\ :ve=\E[2l\EP1;1|23/1B;24/08;25/0A;26/1B5B66\E\134:\ :if=/usr/lib/tabset/vt100:\ :ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:kb=^H:\ :HL=\E[28~:kh=\E[f:\ :IS=\E[@:DE=\E[P:IL=\E[L:DL=\E[M:NS=\E[S:PS=\E[T:\ :LO=\E[0q:LC=\E[5q:LL=\E[6q:\ :k0=\E17~:k1=\E18~:k2=\E19~:k3=\E20~:\ :k4=\E21~:k5=\E31~:k6=\E32~:k7=\E33~:k8=\E34~: v6|vis613|Visual 613:\ :cd=\E[J:ce=\E[K:cl=\E[;H\E[2J:\ :up=\E[1A:do=\E[1B:nd=\E[1C:bc=\E[1D:cm=\E[%i%d;%dH:ho=\E[H:\ :al=\E[L:dl=\E[M:ic=\E[@:dc=\E[P:im=:ei=:\ :co#80:li#24:ug#0:sg#0:bs:pt:\ :so=\E[7m:se=\E[m:us=\E[4m:ue=\E[m:\ :ks=\E=:ke=\E>:\ :is=\E[2l\E>\E[?7h:\ :vs=\E[2l\E>\E[?7h:\ :ve=\E[2l:\ :if=/usr/lib/tabset/vt100:\ :ku=\E[A:kd=\E[B:kr=\E[C:kl=\E[D:kb=^H:\ :HL=\E[28~:kh=\E[H:\ :IS=\E[@:DE=\E[P:IL=\E[L:NS=\E[S:PS=\E[T:\ :LO=\E[0q:LC=\E[5q:LL=\E[6q:\ :k0=\E17~:k1=\E18~:k2=\E19~:k3=\E20~:\ :k4=\E21~:k5=\E31~:k6=\E32~:k7=\E33~:k8=\E34~: ######################################################################### # # # The remainder of the entries in the termcap file have not been # # tested by Altos. These entries are provided for information only. # # # ######################################################################### Ca|cdc|CDC722:\ :cl=\035\014:\ :bs:cm=^P%r%+ %+ :\ :ue=\025:us=\024:\ :bl=^G:co#80:li#24:cr=^M:do=^J:nl=^J:\ :EG#1:ES=#:EE=#:\ :RK=^D:UK=^E:LK=^S:DK=^X:HM=^Q:\ :GS=^^^\:GE=^^^]:GV=!:GH= :G1=#:G2=":G3=$:G4=%:GU=':GD=&: Ca|cdce|CDC722 w/arrow keys:\ :cl=\035\014:\ :bs:cm=^P%r%+ %+ :\ :ue=\025:us=\024:\ :bl=^G:co#80:li#24:cr=^M:do=^J:nl=^J:\ :EG#1:ES=#:EE=#:\ :BS=^B:RK=^X:UK=^W:LK=^Y:DK=^Z:HM=^H:\ :GS=^^^\:GE=^^^]:GV=!:GH= :G1=#:G2=":G3=$:G4=%:GU=':GD=&: CD|cdc722-10|CDC722-10 :\ :cl=^^P:cm=^P%.%.:co#80:li#24:\ :sg#1:se=]:so=[::EG#1:ES=#:EE=#:\ :BS=^B:RK=^X:UK=^W:LK=^Y:DK=^Z:HM=^H:\ :GS=^^^\:GE=^^^]:GV=!:GH= :G1=#:G2=":G3=$:G4=%:GU=':GD=&: CD|cdc752|CDC752 :\ :cl=^^P:cm=\E1%.%.:co#80:li#24:\ :sg#1:se=]:so=[::EG#1:ES=#:EE=#:\ :BS=^B:RK=^U:UK=^Z:LK=^H:DK=^J:HM=^Y:\ :GS=^^^\:GE=^^^]:GV=!:GH= :G1=#:G2=":G3=$:G4=%:GU=':GD=&: # This adm5 was taken from /usr/multiplan/termcap Z1|adm5|LSI ADM5:\ :am:bs:cm=\E=%+ %+ :cl=1^Z:co#80:ho=^^:li#24:ma=^K^P:nd=^L:up=^K:\ :MP=^Z:MR=^Z:\ :sg#1:se=\EG:so=\EG:ME=^G:\ :BS=^U:CL=^V:CR=^B:RK=^L:UK=^K:LK=^H:DK=^J:HM=\036: # This adm21 was taken from /usr/multiplan/termcap Z2|adm21|LSI ADM21:\ :ce=\ET:cm=\E=%+ %+ :cl=60\E+:cd=\EY:co#80:dc=\EW:dl=\ER:li#24:\ :sg#1:se=\EG0:so=\EG4:GG#1:\ :BS=^U:CL=^V:CR=^B:RK=^L:UK=^K:LK=^H:DK=^J:HM=\036: # l1|adm31|LSI ADM31:is=\Eu\E0:\ :al=\EE:am:bs:ce=\ET:cm=\E=%+ %+ :cl=\E*:co#80:dc=\EW:dl=\ER:\ :ei=\Er:ho=^^:im=\Eq:li#24:mi:nd=^L:se=\EG0:so=\EG4:up=^K:\ :kl=^H:kd=^J:ku=^K:kr=^L:ma=^K^P^L : la|adm3a|LSI ADM3a:\ :am:bs:cm=\E=%+ %+ :cl=^Z:co#80:ho=^^:li#24:ma=j^Jk^P^K^Pl :nd=^L:up=^K: k1|h19|Heathkit h19 :\ :al=\EL:am:bs:cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :co#80:dc=\EN:dl=\EM:\ :dn=\EB:ei=\EO:ho=\EH:im=\E@:li#24:mi:nd=\EC:as=\EF:ae=\EG:\ :pt:se=\Eq:so=\Ep:up=\EA:.vs=\Ex4:.ve=\Ey4:ks=\Et:ke=\Eu:\ :kb=^h:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\EH:kn#8:\ :k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:\ :l6=BLUE:l7=RED:l8=WHITE:k6=\EP:k7=\EQ:k8=\ER:\ :GS=\EF:GE=\EG:GV=`:GH=a:GU=u:GD=s:G1=c:G2=f:G3=e:G4=d:\ :CO=\Ey5:CF=\Ex5:KO=\Ey2:KF=\Ex2:\ :MP=\EE\Ex6\E=: k1|h19A|Heathkit h19 ansi mode:\ :al=\EL:am:bs:cd=\EJ:ce=\EK:cl=\EE:cm=\EY%+ %+ :co#80:dc=\EN:dl=\EM:\ :dn=\EB:ei=\EO:ho=\EH:im=\E@:li#24:mi:nd=\EC:as=\EF:ae=\EG:\ :pt:se=\Eq:so=\Ep:up=\EA:.vs=\Ex4:.ve=\Ey4:ks=\Et:ke=\Eu:\ :kb=^h:ku=\EA:kd=\EB:kl=\ED:kr=\EC:kh=\EH:kn#8:\ :k1=\ES:k2=\ET:k3=\EU:k4=\EV:k5=\EW:\ :l6=BLUE:l7=RED:l8=WHITE:k6=\EP:k7=\EQ:k8=\ER:\ :GS=\EF:GE=\EG:GV=`:GH=a:GU=u:GD=s:G1=c:G2=f:G3=e:G4=d:\ :CO=\Ey5:CF=\Ex5:KO=\Ey2:KF=\Ex2:\ :MP=\EE\Ex6\E=: # This esprit was copied from /usr/multiplan/termcap ZB|hesprit|Hazeltine Esprit:\ :cm=\E^Q%r%H\037\140%.%H\037\140%.:co#80:li#24:cl=\E\034:\ :sg#1:se=]:so=[::EG#1:ES=#:EE=#:\ :BS=^U:WL=^V:WR=^B:RK=^P:UK=\E^L:LK=^H:DK=\E^K: H5|h1500|Hazeltine 1500:\ :al=~^Z:am:bs:cd=~^X:ce=~^O:cl=~^\:cm=~^Q%r%.%.:co#80:\ :dl=~^S:do=~^K:hz:li#24:nd=^P:.se=~^_:.so=~^Y:up=~^L: H6|h1510|Hazeltine 1510:\ :al=\E^Z:am:bs:cd=\E^X:ce=\E^O:cl=\E^\:cm=\E^Q%r%.%.:co#80:\ :dl=\E^S:do=\E^K:hz:li#24:ma=j^Jk^P^K^Pl :nd=^P:.se=\E^_:.so=\E^Y:up=\E^L: MS|soroc120|Soroc 120:\ :cd=\EY:ce=\ET:cl=2\E*:ma=^K^P^R^L^L :kl=^H:ku=^K:kr=^L:kd=^J:tc=adm3a: # Regent: lowest common denominator, works on all regents. a0|regent|ADDS Regent series:\ :am:bs:cl=^L:cm=^K%+ ^P0.:co#80:ho=^A:li#24:nd=^F:up=^Z: # Regent 100 has a bug where if computer sends escape when user is holding # down shift key it gets confused, so we avoid escape. a1|regent100|ADDS Regent 100:\ :cm=^K%+ ^P0.:k1=^B1\r:k2=^B2\r:k3=^B3\r:k4=^B4\r:\ :k5=^B5\r:k6=^B6\r:k7=^B7\r:k8=^B8\r:\ :kh=^A:kl=^U:kr=^F:ku=^Z:kd=^J:tc=regent: # Regent 20, untested ar2|regent20|ADDS Regent 20:\ :cd=\Ek:ce=\EK:cm=\EY%+ %+ :tc=regent: ar3|regent25|ADDS Regent 25:\ :k0=^B0\r:k1=^B1\r:k2=^B2\r:k3=^B3\r:k4=^B4\r:\ :k5=^B5\r:k6=^B6\r:k7=^B7\r:k8=^B8\r:k9=^B9\r:\ :kh=^A:kl=^U:kr=^F:ku=^Z:kd=^J:tc=regent20: # Regent 40: untested ar4|regent40|ADDS Regent 40:\ :al=\EM:dl=\El:is=\EB:se=\E0@:so=\EOP:ue=\EO@:us=\E0`:vb=\ED\Ed:\ :tc=regent25: # Regent 60: untested a6|regent60|ADDS Regent 60:\ :dc=\EE:ei=\EF:im=\EF:is=\EV\EB:ko=dc,im,ei:tc=regent40: # This dec vt52 w/highlight is a copy of the dec vt52 following. dv|vt52h|DEC VT52 with highlight:\ :bs:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :co#80:li#24:nd=\EC:\ :pt:sr=\EI:up=\EA:ku=\EA:kd=\EB:kr=\EC:kl=\ED: dv|vt52|DEC VT52:\ :bs:cd=\EJ:ce=\EK:cl=\EH\EJ:cm=\EY%+ %+ :co#80:li#24:nd=\EC:\ :pt:sr=\EI:up=\EA:ku=\EA:kd=\EB:kr=\EC:kl=\ED: l4|adm42|LSI ADM42:vs=\EC\E3 \E3(:\ :al=270\EE:am:bs:cd=\EY:ce=\ET:cl=\E;:cm=\E=%+ %+ :co#80:\ :dc=\EW:dl=\ER:ei=\Er:im=\Eq:ip=6*:li#24:\ :bt=\EI:nd=^L:se=\EG0:so=\EG4:ta=\t:up=^k:\ :ma=^K^P:pc=\177: m4|act4|Microterm act iv:\ :am:bs:cd=^_:ce=^^:cl=^L:cm=^T%.%.:co#80:li#24:nd=^X:up=^Z:ho=^]: pf|pe-550b|Perkin Elmer 550B/1100:if=/usr/lib/tabset/std:\ :am:bs:cd=5.5*\EJ:ce=\EI:cl=132\EH\EJ:co#80:ho=\EH:li#24:\ :ll=\EH\EA:nd=\EC:cm=\EX%+ \EY%+ :up=\EA:vb=^P^B^P^C: # This beehive was copied from /usr/multiplan/termcap ZD|b-100|Beehive B-100/150:\ :cm=\EF%+ %+ :cl=\EE:co#80:li#24:\ :sg#1:so=[:se=]:EG#1:ES=#:EE=#: # # This zephyr and cobra entries were copied from /usr/multiplan/termcap ZZ|z-zephyr|Zentec Zephyr:\ :cm=\E=%+ %+ :cl=\EY:cd=\EY:co#80:li#24:\ :sg#1:se=\EG0:so=\EG4:\ :BS=^U:CL=^V:CR=^B:RK=^L:UK=^K:LK=^H:DK=^J:HM=\036: ZZC|z-cobra|Zentec Cobra:\ :cm=\E=%+ %+ :cl=\EY:cd=\EY:co#80:li#24:\ :sg#1:se=\EG0:so=\EG4:\ :BS=^U:CL=^V:CR=^B:RK=^L:UK=^K:LK=^H:DK=^J:HM=\036: # # This gt-100a was copied from /usr/multiplan/termcap ZC|gt-100a|General Terminal GT-100A/101:\ :cm=\Ef%r%+ %+ :co#80:li#24:cl=^L:\ :sg#1:se=]:so=[::EG#1:ES=#:EE=#:\ :RK=\EC:UK=\EA:LK=\ED:DK=\EB:HM=\EH:\ :GS=^N:GE=^O:GV=A:GH=@:G1=G:G2=F:G3=E:G4=H:GU=C:GD=D: dumb:\ :am:bs:co#80:li#24: se=\EG0:so=\EG4:\ :BS=^U:CL=^V:CR=^B:RK=^L:UK=^K:LK=^H:DK=^J:HM=\036: ZZCetc/rc3.d/remove.this100644 0 2 0 4201205446 11036 37777777777 etc/rc3100744 0 2 1115 4211073224 6440 37777777777 : # @(#)rc2 5.3b of Jan 28, 1988 : # "Run Commands" executed when the system is changing to init state 2, # traditionally called "multi-user". if [ -r /etc/TIMEZONE ] then . /etc/TIMEZONE else TZ=PDT8PST fi export TZ if [ -d /etc/rc2.d ] then set `who -r` if [ "$9" = S ] then echo \\nEntering Multi-user mode...\\n fi for f in /etc/rc2.d/K* { if [ -s ${f} ] then /bin/sh ${f} stop fi } for f in /etc/rc2.d/S* { if [ -s ${f} ] then /bin/sh ${f} start fi } if [ "$9" = 3 ]; then # only if we were running RFS echo Run level 2 processing completed fi fi is changing to init state 2, # traditionally called "multi-user". if [ -r /etc/TIMEZONE ] then . /etc/TIMEZONE else TZ=PDT8PST fi export TZ if [ -d /etc/rc2.d ] then set `who -r` if [ "$9" = S ] then echo \\nEntering Multi-user mode...\\n fi for f in /etc/rc2.d/K* { if [ -s ${f} ] then /bin/sh ${f} stop fi } for f in /etc/rc2.d/S* { if [ -s ${f} ] then /bin/sh ${f} start fi } if [ "$9" = 3 ]; then #etc/ldunix100755 0 2 243066 4253775236 7355 37777777777 Lf" 8l@.text .data@@8@.bss:@:@l.commenthÐET:@RU RP PjÐUPWVh@mY>@J@`/@@wE=Dt8=bt=su251@h@=I51@hp@(4>@,EPh@LE 0h@:jؿYh@u u E=eVY8&P裿Yu}U@UW}h@lY=>@|+@9>@}>@<@t4@Wh@ 5>@Wh@菔 }UPWVS}h@lY$@;F%=u WY؋FEuE@t u5Y@uG t u "Y4u0u,u(u$u uuuuu uߓ,h@ғY%=t=t=u3]u}øh@諈Y!h@萈YUW}h@wkY=$t3=%t,=&t>='t7=It=Jt)h@EY}Ã=@u=@u=@t@ҸːUW9EsE6@G t3}EG O UW}G u }Ãu!hYGu h@茇YO GGhwG P }+9t G uO O 눋GGzUPWVS} uEEEEӈ t O~| FFV'Y؃uуuE9Eu 3]u}ËEEEUWVS}u} ~} 3]u}E;E'| FFVY؃tGӈEE 9E|EE9E|EUWVS}u ]g G t}bt\EuujjG PR U+ЋEE+}~(E9E G+G9E|EG)3]u}SVG P E9Eu3UWV}G t#G G t!wxYG>@G GGƋu}UWVS}}3u؋:@Nǹ 0+ˆǙ|t N-N :@w:@]u}UWV}ƀu3@t4@Gu؋Eu}ÐUWVS3hg@ogY=:@3Ehp@YjGPhr@hp@EPP"PY EPEP=t'EpNjEPE=u'EPj>#048Eh>@8YjlPue l=Lf|fEPDY|nA MBR蠴YEu)uYh@ Y:@EE@ @ @ЍEG$u}UWVSh@iaY=@uY@t ]u}h@-Y:@G wFtF% =@t h+@ψYwEP耨EP訨Y+Rh-@EP G PGPEPh<@肈F u hQ@jYTFtF PhS@M53)GPCW ;uY@^@PCG ;rϋ=:@EwG tPFuC@thc@ʇY}uEhe@谇Ywh{@袇uh@荇YEUWVh@_Yh@mY=:@t:@p h@JYh@?Y:@t9uu}GPG PG Pwh@ 36FW ;u@@PG0PG0Ph@҆FG ;rw8w4h@趆 wXG`PwTwPwLh@蘆Pw|wxwth[@th@[ wYUWVS}h@7^Yt1h@Yt+GPOYPGPh@ $]u}GP$YPh@хGu`G PG PG PGPGPh@衅ft4GЉU3ERh*@sFEG;|fGЉU3wEtijuh`@EPPl PhD@E@="uE@ Rha@Ep hg@ڄFEG;|GuIftBGЉU3+E4|@E@Rh@膄 FEG;|fyGЉU3KE@Rh@CEfxt(h@,YE@RYh@YE0h@Efx@ ЉU3h @h@̓E%?=t E@E@PE%?4@萃E@t*h @vYE@RgYh@YY/Et h@?YE@Ph"@*CEE@;7FEG; U WV}u=:@EE=<=*e=#t8/="u GPhK@蠂W苢Y@ǣ:@u}=&uGPEPhB@m WXY@ǣ:@=-t =+t =/uG:@j4YEP'Yj"Y=Its=C=>eE=<u+@0@PցYG:@jYh5@軁YjYh7@訁YjGPhJ@EPNPͅ PhG@wG :@=Dt=NtM=MEPh9@5tGPh=@W Y@ǣ:@yGW W W ‹VhP@ɀG:@+UWf}hS@h:@bfu T@}ǩthY@h:@ǩtha@h:@cǩthg@h:@Gǩthl@h:@+ǩths@h:@ǩthy@h:@ǩ@th@h:@ׄǩ th@h:@軄ǩth@h:@蟄ǩth@h:@胄ǩth@h:@gǩth@h:@K:@UW=@@uh@Y}3k@@ЉUWh@~E0h@~E0ueYh@~YEph@~EpKeYh@~YEph@~Ep!eYh @x~YEp h@g~Ep dYh#@N~YEph%@=~G;=?@3b@@E@@RWh4@} E0hG@}E0~dYhZ@}YEph\@}EpTdYhp@}YEphr@}Ep*dYh@}YEp h@p}Ep dYh@W}YEph@F}EpcYh@-}YEph@}EpcYh@}YEph@|EpcYh@|YEph@|G;=?@3 @@ЉU0h@|E0$cYh@{|YEph@j|EpbYh@Q|YEph@@|EpbYh"@'|YEph$@|EpbYh5@{YEph7@{Ep|bYhG@{YEphI@{EpRbYhZ@{YEph\@{Ep(bYhm@{YEp ho@n{Ep aYh@U{YEp$h@D{Ep$aYh@+{YEp(h@{Ep(aYh@{YEp,h@zEp,aYh@zYEp0h@zEp0VaYh@zYEp4h@zEp4,aYh@zYEp8h@rzEp8aYh@YzYEp@yYEpLh@@yEpL0`YhS@yYEpPhU@vyEpP`Yhg@]yYEpThi@LyEpT_Yh{@3yYEpXh}@"yEpX_Yh@ yYEp\h@xEp\_Yh@xYEp`h@xEp`^_Yh@xYEpdh@xEpd4_Yh@xYEphh@zxEph _Yh@axYEp h@PxEp ^Yh@7xYEplh@&xEpl^Yh@ xYEpph@wEpp^Yh@wYG;=?@$3t@@ЉUWh@wE0h$@wEph6@wEp@@?@PhG@tw Ep h]@awG;=@@|3`@@ЉUWhp@6wE@?@Ph@wEp h@ wEp ]Yh@vYG;=@@|UWh@NY:@t!uwwuNj}Ëu3UWVS}h@NYWYuWj]u}F t Wj݋^Ct N E F Cu Wj뫀N CuE F UWV}h@ NYWYuW'Yu}F t WjDN UWh@MYj"Yu h@jY;@juh@GP>Py =;@}UWVS}GEh@ZMYE@UЉUEEUЉUR7Yuuwj eF uZF tuwjX =^N fCf~V]YCuC% =u F uF EEE@9EW]u}UWVS}u h@qLYu=;@=<t~=*tF;=#="W Y@ǣ;@GP\Y]u}ÍG;@VjoEVjaUЋʍG;@VjDEVj6Pu5f뛡:@EEPU@UЉUE=&QGPSYu GPVYC u-GP--YuGPvj jGP\WY@ǣ;@C=-t:e=+G;@Vj`EVjRUЋG;@Vj3EVj%U+Ћ=/mG;@VjEVjE}u3PE}D=I=CtC=>G;@VjEVjPudWܑY@ǣ;@Gu F GPYEt E@ GPvj 3G ;@GPYEt0E@="uER 4YYWE@ LjGPh@EPP|u Pvj 3=DWY@ǣ;@Gu F@ GPYEtEPB GPvj: 3=Nte=MW荐Y@ǣ;@Gu F{GPYEt E@^GPvj 3FGW W W ‰EG;@EjYE@URGPquWݏY@ǣ;@EEEE@9E|EEGPvj W萏Y@ǣ;@3UWVS}h@GY5:@^CЉUEvjWus u];@U JHJHJ H E@="u!E@ Љ&;@&;@-;@f";@;@]u}EEC9E|^3ULWVSEh@FY=@to(jh@ȘE=uh@j]u}h@uhEP3YuYP@Y h @2Y=>@tEPh>@s=tjh>@=E=uh>@jipEIuh>@jJh>@dnYgjEPuD E=Lth>@j 7Eܣ>@fEfuh>@jjEP_@PƓY:@uh@:mY:@@:@p@ @ @@>@EPVuCD fEft =b3t(fFFF fFfFfFfFFuh>@j+%Pu蘒YEh>@*mY-=@u:@:@9t h6@0Y:@:@9u jY:@:@ hJ@0Y8@=t hT@0Y<@=t h^@0Y@@=t hi@j0YH@=t9L@t9P@ts=:@wFt"G twj =O G G u*G tO G tfFf~WYuE3[=:@G t8wF t&F G=>@tGPwhw@j GuEEEC|@=:@G @GP?@wFtG =twj!G Ft?@@@f@@~FusFt@@F tWFtGP5?@\?@FtGP5?@\?@G V?@?@@@f@@?@?@Ek@P8YEP5YE:@=@t jY:@=u3PUY9Et u>YU,WVSh@3AYE:@EEPBEEEuEPcYu h@]Y:@EEPUEEpu؍EPEpu-C|=w |$@;u]EH;rWyY]ȋű}jv FEPl t뼍FPVZtjuh@EPŇPDl PjBjEE]EEFE@=NuEP U؁MEUR PUԋE@ tME}tME@N@ EE@EEE@UЋEЉVEE@9E|ҋEEDEEENjjEtv`k ~rEЋ MJMEЋ NJE+Ћ;rjuvk EЋM MJEE+E9EVEE}2EB u$}uEEuuAuEEE9UsjEpEPXj tLUPWVS}u h@=Y_CVUR;uC="t&=Nt 3]u}ËE@ 9C u.)UR @PS @Pdft3UDWVS3Eh@1=Yjh>@Iujh>@eh>@eYljEPW< jEPWw< j(EPW; EfEfMfuh>@U6Yu=>@h@xdYSh@ldsh@\ds h@Ldsh0@@dU$WVSEEh@G;Yjh>@_E=ujh>@ch>@cYh>@cYh>@4YuWh@cuDl?@OHOHO H OHOHOHOHO H O$H$Wh@cuA?@OHOHO H OHOHOHOHO H O$H$QWh@7cu??@OHOHO H OHOHOHOHO H O$H$j3Y"@!?@@j=H j3[JC;u5P?@h@=J5\?@h@*JP?@|?@?@Ph@ J|?@?@Ph@I5:@Y=>@t h@UYP?@+L?@P5P?@hl?@uA5|?@5x?@5P?@hl?@h@.j5\?@h?@ukA5?@5?@5\?@h?@h @W.u蔅YEj5?@jh?@h%@+.?@PڅY:@R?@:@Љ:@h>@_Y0E5:@F tVYu5:@Y:@,@@,@@5(@@0@@Ph*@jK8@@8@@@@@@@@=>@t h2@SYhA@4AYH?@+P?@;Pt'h@AYpH?@+P?@PhJ@>^ 5H?@h@Gh@B>YEuph@@YEH khs@]Y9Et uYj/Yu=:@t5:@Y:@jZY]Ћuԋ}ËE0j)h@=YEuh@;@YEH E0j)h@|=YEuh@@YEh@?YH h@?YH h@?YH h@?YH h@?YH h@?YH 2>j5:@}5:@EFE@tF tEF t uV:uh~j_BT?@+\?@E5\?@h@EP*E uh@Euh@EET?@9Ps$h@\Y5T?@Eph@\ E@ u5T?@E0|E5T?@E0 FE@ uuE0LEE@uhP@$[Y'>@D@@R H@@P5>@jjB 36U H?@Eh@h@zEu h@Z1uj>@05>@xu h@ZYuQ|Yh@h@zEu h@_Z^E3E=>@tuh @2Zuuh5D?@wu h& @ZYu{YT?@+\?@EhH @h@ @yEu hJ @YdE3E=>@tuhc @Yuuh@?@\?@Pvu h @pYYu5{YU8WVS}wh @Z1YG@@ЉUf~FЉUFt0F t%jE@RjE@+@?@P:DEaEfPfu EWE@R9E̋E@ƉEEЊP hp@EPFxh @EP}]wEPn]EЍ@ PEPg0EȋEЋU9tA0uh @4X uȋEЍ@ Ph @X uh @ Xj諂Yu8Ytuj:bcu:YC tK uj,9:EfxtURujD EЋURuh`?@W@ EEF9E]u}UdWVSEh!@W/YjvDY=:@G t1wEFu F% =t=>@tVYuh8@jh*!@jDh<@jh2!@jDhH@jh:!@jChL@jhB!@jChP@jhH!@jCE@P|Y,@@(@@u hN!@qKY]u}UWVS}EEhf!@9.YwGk@@EG@@E@@EEEuFtV @@EE܀?@ @@9UsE܋@R9uԡ?@ @@9Uu hp!@JYFt+EE0@JH EЋ @IJUJFtvEEЋ @IJEЋ @IJUJ HFt;h!@FPEPtPYjEPjE@+@?@P*@FtRjwuoV PYh!@FPEPctPYjEPjE@ +@?@P?WYH?@EGHGPH?@9>@~wP5H?@h!@?T wPwHuG@Pw"T?@EGpGxT?@9>@~wx5T?@h!@S wxwpuGhPw"EGx@~5`?@h!@S jjPw("hp@EP#sh"@EPZXwEPKXEPEPH&C= C=C= ;t]CEfC fG<S PEG@kU(‰EC=t ES+P PRu8<EuM5YE@ u ExtIEMHMHMH MH @05YEEMMHMHMH EEEH AUK+J JH9>@~9Ep@ PEp0h"@QsEpp hH"@QEH :@UM :@K }XEEEEE܉EFucuh"@FP tK9>@~*h"@FP,@@+(@@Ph"@=Q,@@,@@UJuh"@FP tK9>@~*h"@FP8@@+4@@Ph"@P8@@8@@UJuh"@FPO tK9>@~*h"@FP@@@+<@@Ph"@wP@@@@@@UJFuh"@FP t EUJuh"@FP t EUJHuh"@FP t EUJHuh"@FPr t EUJHuh"@FPN t EUJHuh"@FP* t EUJHuh#@FP t EUJHuh #@FP t EUJH uh#@FP t EUJH$uh#@FP t EUJH(uh#@FPv t EUJH,uh&#@FPR t EUJH0uh/#@FP. t EUJH4uh5#@FP  t EUJH8uh<#@FP t EUJH@~%5d?@5h?@5`?@suh#@Ksuh`?@j4 Du+YEt:@UM u*.Y:@M:@UEPjX~t}uFPhG$@KjEPBuE=uwjph>@KYjwTuy" wPED?@Pu! G`EjwXuB" hp$@u萷Eujj EPE+GLEEE:@ЋUB t*GH+GLP:@UPuEPu5GH+GLPjuEPu5EMcuTYjw|ut! wxE@?@Pu E2ju7! hr$@u腶Eujj EP起uewE@ t-P豴u詸Y9Et uoYjh>@IptxËE+GtEEE:@ЋUB t*Gp+GtP:@UPuEPu4Gp+GtPjuEPul4EMuYu_nYSEFUЁvFPFURh#@-H F|EPL@@M|EF9ErFFt EV PFt EV Puh#@FPP t,Ft EUJFt EUJuh#@FP  t.Ft EUJHFt EUJHFtHuh#@FP t EUJHuh#@FP t EUJH Fuh#@FPd t EUJHuh#@FP@ t EUJH uh#@FP &EUJHUWV}WIfYht$@WYVuWJ uEPu @Gu3u}UWVS}h}$@Y5:@F ^f{CЉUEE@rW>/=>@tvWh$@E ]u}ËE@RWFu0E= w |$@Wvj.趰 @pEEC9E|$3UPWVSh$@Y=:@G wf~tvFЋEZCRuEu@twuh$@D ]u}EF9E|e3U肭ENEE=Nu+}~Epj>VCPh%@uxC E="utuaYS;vEpj?CPuu9C Gt5E @@ЉUuh %@GP t EUJHCE@tuCRCE%?EG9E| ]u}fFftFЉUR YEuu#YE@ uE@@?@EEUPUF ЋE#UU0W?@@5:@gY@=:@G @W9Y@h0%@EP_hp@EP_hN%@EPEwEPDEPEPEt=EfP fuxtPR%E@EPjEuË6h>@EP<_EPEPEt=EfP fuxtPR%E@EPjDEuË}UW?@@5:@2Y@=:@G tGx@W Y@u׃@@?@?@0@@@?@?@@?@?@@?@@%@k?@@%@@@@%@?@@%@@@@%@@}UPWVSEx3fGЉU3EfPfu EuE@R(EEfx@ЉUE8uphp@EP.]hP%@EPeBj/EpBE}u EPUEuEP/BE@ PEP(EEUEE@%FEG;Ë]u}ULWVSEx3fGЉU3EfPfu EuE@REEfx@ЉUE8uphp@EP \hR%@EP@Aj/Ep@E}u EPUEuEP AE@ PEPEEUEE@%FEG;Ë]u}U h%@YEPh@@=uh@h%@};jfY>@Uh%@YEEEEP>[YEEEPYUWVS}h%@YPZY=u&SG t@AP^G t#h&@j?=*tHPYu7PNYt$G tVSj1 Vj2եCWhP- $sUWVhL&@Yuj28P 2vV&@04Åt<t<=:td&@ҾT%@<68:u%u3v@P-PFЃ 뒃 >uq&@UPWVS}uE UЋh~&@YE=,t$= tUn= t ?= tC&@G+E]u}= Gh&@W:=)ti=(ub&@Gj&@G[==t%=:u4&@G<&@G-=?u&@GƉ8h&@W9;r E @9E+EUdWVh&@YuPWuh&@7PWYЋW6Ytu W6Yu#PpYtWh&@7넋UPW}h&@Yh&@WT9EWPWY9Eu3}UPWV}h&@YjEPu T9 E8t 3u}É7U WV} h&@Y9E~ &@u؋}Ë=?uh&@Y3ݍEP7;=u&@E%=@u&@E% t`u'@눁u *'@v7KVY=dr C'@]7h>@U3GUWV}u hQ'@Y0=,t!=?u h\'@Y6YO3u}UPWVS}u he'@Y=,u O=?uhp'@|YOE|LF=(u?F =)ty'@]u}vEPu'@ۃ =(t =)u'@uSkO>3U8WVS}u ]h'@Y=?u4h'@vEPTP9EPY3]u}ÍEP69=u'@E%E= t`9Et'@fEf=>@t%%P%Pvh'@*43yu:6h'@'5u'F=(uF =,u F=)t (@0vEPtvEPsu (@E Ef=>@g%P%Pvh)(@l3=UPWVS}u hD(@YF==6hR(@C4uhH@FPj ]u}6hZ(@4u"vEPu`(@ȋEL@6hp(@33vhP@hv(@늋=?u h(@iYhH@Vjx uYO`utF==u+6h(@`3uhH@FPj4 hH@Vj t=?uh(@Y.(@6EPu (@EL@F=?u h(@YvhP@Su (@v3oUh(@YkEPWY%@u h(@m&Y%@,;@UPWVS}uh)@Y,;@,;@؋Eju h)@CPPPR5 {sECt %@EP]u}ËE9Pt4Ћ@B;s(ƋU;BvE@PE0CP3j*E9]rUWh)@Y=@u舛@t}h-)@b0YhA)@W0Y=%@T@t hr)@30Y7EPOht)@EP5GPEP 5EPOY+Rhv)@EP)4 9GuG+d?@h?@GwEPh)@/ 9Gtwh)@/;=,;@:h)@{/Yh)@0Yph)@b/h)@Yph)@G/h)@Yph)@,/h)@/Yh*@Yph)@/h*@Yph*@.h/*@Yph*@.h8*@.YhK*@xYph:*@.ha*@]YphP*@.hw*@BYphf*@t.h*@g.Yh*@Yph*@N.UW}h>@.Y!9%@t 5%@TYjW4X%@=uWjb3}jEP5%@ E=LufEfX;@fuWj6"jEP5%@uuuS =uh*@jjh>@. ?9%@u23aj(h0;@5%@u T;@u 0;@6fX;@f X;@fu5%@RY%@3U0WVS}u k=%@t05%@@,YtWj6譗jEPSb E=Lu֋E^;@b;@juSuuuHR =uh*@jGjh>@{, jS蹘%@k^;@UЉf;@ju蕘Z;@ SvQYumQY3=%@35%@jjhj;@蔙tItb;@=@{;@~wz;@= ui5%@jjEPKu:W%@@ u-UWZ;@@ ;6b;@ {;@Eޣr;@{;@~3j{;@kP5%@M ={;@b;@z;@=tIz;@=t;=@z;@= t z;@=tz;@= =j;@tM=q;@1jhj;@h*@h~;@IP". j;@~;@-j;@n;@EE~;@jf;@n;@P5Z;@^ =un'7Pb;@@b;@;^;@ 5%@ИYPIOY5Z;@轘YP6OY%@3EEЋӈt,M|'Z;@| P@ 5Z;@@Y؃uƃ}}jZY~;@-j;@n;@j;@cUWV}Wu uVH u&h*@j jh>@A)u};th*@j-jh>@)Uuu uN =uh*@j訓jh>@(Uh*@Y=%@t5%@QY%@UU`E}9Et uMYjuQE=|jEPu E=Lu fEfEfu!uj6ueMYE3jEPuuuuM =uh*@j訒jh>@' E!j(EPuE E@tE}u fEfMfũ}uuh*@&3auLYEEPuEtAEEԃ8tE EԋPUu u'Euh*@L&3julPE=uuj蚑3jEEPuuuuaL =uh*@j`jh>@& jEPu uKYEQEԃ8tE EԋPUu u&uE}t Eԋ@+EE}uEPjqEu}tEPjVEu}uu h*@% 3U0WVSh+@ Yjh>@uh>@j8TFE3EfF fu!F= tF=t F= u%E>t VDY@EFPqDY@EjjuEP@@=>@t h+@YE@UEPJY؅=@EPJY=@tlE=@=@E@=@=@E=@ЉUE@P3JYEEtuh>@u' h,@#Yjh>@=$]ċuȋ}fF fu%F= tF=tF= >tVFPuBEFC=@U VC F=t F=u[F =t"=t/=utVFPYE衂=@U U~t4EH VP=@U VvE0h`?@ =@U uj^=>@t h+@6YE3=@؍EEE43"EЋ M؋JM܋JMJ MEU MԋEЋ KJKJK J EME)EE+Ћ;=@ru3"EЋM؉ M܉JMJMJ EUMԉ GE+E;EE}=>@t h+@Y3 EС=@U =@UЉG;}|uvIY3=@'+=@GfU<@;~܃E=@;rGfUfE<@~=>@nh+@ZY^UWVS}E<@E@E<@EEEE=@Ћ;5=@vh0,@Yj)JY6W Eu%F @u<F t/Ƌ]u}Ã}} EHEE@EE9EtF tP-C t$3W tFC u늃3Wt3qUW}=@}UWVhX,@Y==@P@@ЋG t w7;ru}UWVS}u ]he,@WYjvW ;\?@r v@?@ vD?@PWT fF fjvW hk,@WE=>@t}vSF PVhm,@dujj EPu:VE@ t-PuY3]u}uv SEPfF fN fuuČYU WVSE+@u =Y@PCY+@u h,@ YH@@u<Y@%D@@uGP<GGG G G3GNj]u}É}7uEuG @tCE}}:GuH<Y@PBYGuEh,@JY8댋Gu<Y@PBYGu h,@YH@@u;Y@%D@@uFP;FFF F F3FE0uE}Ex?F t}uEx!7uz} G <G >;uۃ}}<>EEP u UP xE@ U;uE@ VC ;Eu3<9EuESPC ESPCE3҈S P r<9Eu{GC_EWPG{GC_EWPGG tG ;EuEUP C E@ EC G }u=+@E@9EuExExzUPWVS}u u+@t]u}Ë]tCPVw GESWփ}tɍCPVu UW}t?E 9Gu7h,@tu wtu w}Uu5+@UWVS}h,@HYG uw 6S@BYƅuW1BY]u}UWV}u h,@Yu,=@jh}5+@ =@u}V5=@X =@UWV}u h,@Yujh;~5+@` u}7wG PwVh,@ZUW}G u;G u07$Yu$7Yu7j9萃j7}UWV}u(E@=@jh~5+@ u}G u7 Y77Y@%V75=@L =@W0F=@UWVS}h$-@YT?@+X?@\?@WV7W=7Y@%T?@Ë]u}U WVS}u VYEEuɋE FUWV}WyYN E FƋu}UWVS}u WPYC uK sË]u}UWVS}u ]wYE@ tI+E@ t@j=@WPGPVuEpGPV]u}jb;YEu h1-@ YEUJpfWfPUP EUPUWVS}fu ]SYEu SIYEE@ t!uEpPW]u}j:YEu hF-@Q YEUJxfpUP EUPUWVS}fu ]EEtjSPWoE@ t!uEpPWK]u}j.:YEu h[-@YEUJxfpUP EUPUPWVS}u;=\?@r @?@D?@E =wl|h$+@hp-@7Y]u}h-@!Yh-@Yh-@Yh(.@Y뽋Ɖ뵋+EVWE Ph^.@UWVSE E=w4|0$+@w7hH?@k D?@wSw ]܋u}w7hT?@7 @?@wSw7hT?@ E@?@wSwv w7h`?@ +d?@h?@zh?@jh.@j?@Ph.@j h.@Y@@?@@@35@@EЋ @IJUJ JJE@C;?@|h?@jh.@jk?@Ph.@j| h.@Y@@?@@@3&k@@EЋ @IJ UJJC;?@|h@@jh.@j@@Ph.@j h.@Y@@?@@@h?@jh.@jh@@jh.@j?@Ph.@j h.@#Y@@?@ @@3 @@Et@ERPpPlP PdPhP`P\PXPTPLPHPDP@P@hh'/@j h-/@wY@@?@L@@3L@@UJ C|?@?@EPh3/@j h@Eph/@ h/@YU==@uju5=@}3ø=@UW3Ƈ=@G|jEPE0* =s3}jEPh=@ E=@=@UE00YEUh/@Y=>@|-@9>@} >@<@t4@uh/@5>@uh0@ j35YUuh40@x ÐUh<0@YUPWVS}@Eh?0@SYuhC0@5 Y]u}jWU4u W+uY@E5jEPV) ؃tu#WtYEPhT0@ ttV/YE@{U0WVhW0@Yh[0@PH)h^0@hP4)EPh_0@S=uha0@itYfEfE=hc0@ YjPC3uPtYjEPW( t#tEPPhf0@ ojEPh0@- ufEfEEU;uW.YhPP8(PjEPh0@hP(P PM fEfEh0@P1 E=hPh0@Uu'Ytuh0@3UWVSh0@Yuh0@u'Y@=d|$uh0@ÍEPu` =uujrNjE3P-Y؅u h0@/YuYEG=.u!GG=.u GjGPh0@S&P Ph0@ujPt&P P EPjP =ujPjq$E%=@uh0@S_ EjY*EDžƋ؋RSЋ JJJ Ћ KJKJK J +Ћ;rPSЋ JJ J E+9h0@P$rSP S$Y+Rh0@P P$Y=@|(Ph0@h0@PO$E;rPc$Y~Ph0@YVp-YUWV}h0@GYt{980@t4580@W$Yt/1@Ph1@ 580@)YjW.80@=u4Wh31@Wj>o3u}ø980@u3jh>@580@A# u Wjnt)t Wj-n580@[)Y80@3f>@ft>@{UPWV91@ueE91@}#E 1@ =-u E Au u}h1@E 1@4u 1@΋E 1@ 1@=1@:tWuu=1@tOLjEE E 0`"YPE 0j, hx1@E"YPhx1@j, jEPj, E 1@ 1@@1@u1@1@?F=:1@@U 1@t1@@U 1@1@1@@1@;E|l=1@tOLjEE E 0}!YPE 0j, hT1@b!YPhT1@j+ jEPj+ 1@?GE 1@1@ 1@1@8E 1@ 1@@1@u1@1@1@UWEE=6@1h6@mY=uE9E3} 6@6@=6@Wj 56@uEtE+EE)6@6@=6@}36@6@9@+6@;} h6@%Y}MMEEeUPWE E6@u6@t* 6@h6@uu 6@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_ËD$Xpxh Z`P+␋T$D$;j tZrzj bu@bVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_UWVS} ]Ft ;uuCuދ+E]u}WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐUWVS} ]Ft ;utCuދ+E]u}U WVS}uE} tE 8$E3@u5GEE3@uE=+t =-u EGEu309Et "G=xt G=XuE3@tEE3@t E-0#E3@t E-WE-7E;| 3]u}Ãu;09Eu1G3@tG=xt G=Xu EE3@t E-0#E3@t E-WE-7+EGE3@tEE3@t E-0#E3@t E-WE-7E;|} tE 8}tV|$3O|$ L$Oϋt$ +D$^ÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_ø%3ÐV|$3O|$ ыt$ D$^UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  9@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl3@Dž\9PtP؉PNKPPoYh~PW =uh~Ph3@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}$>@E$>@E5@s3UtE]$>@E5@E5@E86@r5E@6@rL6@EH6@AEh6@s6EE]@)EEp6@r݋EE 9P܃}t؁$>@r>@vr>@Ex6@t5>@r05}fEf fEmE]mE܉E@0Ee 6@];r&=5|+$>@u$>@1}tCF0N<9$>@]Ћuԋ}ËEE0]@EEsEE 9P EEEEP6@MU]vEu}fEf fEm]mE܉EFUR0EMm]EX6@E5`6@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 9@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 9@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}:@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W9@UW6@;=9@r3}ÃG uUW6@ WY;=9@r}UWV}tlG t6G t3WVYG PY}>@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 9@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 9@+G?}3W 9@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 9@+G?}3W 9@+W;}WY3UWV}G G u}}&uX@@`D@GW 9@*h!YGt@O G W9@GGVYtG uO @u}G hH@WR9@UWV}G 9@+G}G 9@Wu};7}7𐐐3ÐU>@EEPhTu } E>@3ø6:Ð&ÐU WVSE9ET=:@u<:@ :@:@ :@|:@:@x:@:@|:@:@E@3؋=x:@E&;5|:@:@E@E=w=:@j Y|:@@;t?3Ee ƹ3tL3+‰EEE2|:@+:@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5:@|:@0E+E-|:@@;t|:@|:@|:@:@~Љx:@;5x:@vx:@:@x:@ 9=:@u x:@:@G(=x:@95:@u=:@7tލ;r;l%;UWV}5x:@%|:@9u5:@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ:@Nj]u}WV|$ t$L$Njʁ^_øVÐT$:@Ru :@+D$ø!T$:@3øÐ>@ÐT$ì@@(#)ldunix RTS 5.3b of Jun 8, 1988LBOOT (TEST,1,1a,1b,1c,1d,1e,1f,1g,1h,1i,2)@@@ @'@7@F@V@g@{@mainb:s:Dunknown option %c %s: [ -b boot_directory ] [-s system_file] [-D] Error 0No such file or directoryI/O errorSpecial device cannot be usedBad file numberNo such deviceNot a directoryInvalid argumentToo many open filesFile too largeperror%s: %s %s: errno=%d error Illegal error actionUnknown error numbererror_actionerror_action() failedno memory for FILE buffert@@@@@ @ @ 0@ Q@ t@ @@@@#@C@i@@@@! @S @ @ @ @ @ @# @\ @  @! @" @# @$: @% @& @' @( @)a @*u @+ @, @- @. @/ @0& @1T @2h @3s @4 @5 @6 @7 @8'@96@:c@;y@<@=@>@?@@$@A>@BT@Cr@D@E@F@G@H7@I^@J@memory overflowMAXCNTL exceededUndefined expression elementflexname too longUnsupported relocation typeDriver %s: not processed by mkboot(1M)Driver %s: major number greater than 127Driver %s: missing section .textDriver %s: not a valid object file%s: No driversLBE ignored at board code %d; LBE must be at board code 14 or 15INCLUDE: %s; driver not foundINCLUDE: %s; driver is EXCLUDEDINCLUDE: %s; device not equippedEXCLUDE: %s; driver is INCLUDED%s: dependent driver %s not available%s: dependent driver %s is EXCLUDED%s: device not equipped for dependent driver %s%s: data initializer #C(%s) unknown; zero assumed%s: data initializer #D(%s) unknown; zero assumed%s: data initializer #M(%s) unknown; zero assumed%s: data initializer &%s cannot be resolved%s: data initializer #%s unknown; zero assumed%s: data initializer %s unknown; zero assumed%s: warning: not executable%s: not MAC32 magic%s: no section headersNo drivers available, absolute BOOT program must be used%s: device not configured (LBE %d, board code %d)%s: required driver is EXCLUDED%s: flagged as ONCE only; #C set to 1Driver not found for %s device (board slot %d)Driver not found for %s device (LBE %d, board code %d)Device %s previously configured on LBE (board code 0x%X) at ELB board code %dDevice %s previously configured at board slot %dDevice %s (board slot %d) not configuredDevice %s (LBE %d, board code %d) not configuredNo section loaded at virtual address zero; interrupt vectors are inaccessible%s: already definedSection %s(%s) overlaps %s(%s)%s: not flagged as KERNEL by mkboot(1M)%s: previously allocated%s: truncated read%s: routine %s: unknown id; RNULL assumed"%s" does not exist"%s": not object file and not ascii text fileSystem: line %d; %sSystem: %sSection %s(%s) loaded below MAINSTORE addressSection %s(%s) loaded beyond end of MAINSTORESection %s(%s) overlaps boot program%s: invalid object file%s: truncated string table%s: no symbolsExternal symbol %s is undefined; set to zero%s: already allocated%s: already defined%s: previously defined%s: routine %s() not found%s: illegal character string initialization; zero assumed%s: character string initializer truncatedSystem: line %d: too longSystem: line too longParameter %s multiply defined %s: %s = %d %s: %s = %d (%s EXCLUDED, parameter ignored) %s: %s = %d (set to zero) %s: %s = "%s"  %s: %s = "%s" (%s EXCLUDED, parameter ignored) %s: %s = "%s" (set to zero)%s configured for more memory than available - use /etc/system %s configured for less memory than available @ @&@,@2@9@@@H@N@V@\@./usr/sys/boot.d/usr/sys/systemm@n@t@z@@@@@@@@@@@@FHGCED*.*.*.c.c.c.Q(Q(Q(Q(QQQ(Q(Q(QRRSSRnulldevnosysnodevrtruerfalsefsnullfsstraynopkgnoreachrpasscmn_dprintfindrivers/.text.data.bss.data.bssNo memory for driver linked-list fake_sectprint_configuration CONFIGURATION SUMMARY =====================  ----driver---- #devices int_major major %s %4d %4d S%4d %4x %4x, ----module---- %s print_driver Kernel: NO KERNEL Driver linked-list: %9s flag=%4X #C=%d #M=%d maj(sys)=0x%x(0x%x)%s, #syms=%d symptr=0x%x text: vaddr=0x%6X sz=0x%x sptr=0x%x #rel=%d rptr=0x%x data: vaddr=0x%6X sz=0x%x sptr=0x%x #rel=%d rptr=0x%x bss: vaddr=0x%6X sz=0x%x print_master flag=%d %s %s nvec=%d prefix=%s software=%d ndev=%d cpus=%o dependency=%s parameter: %s = "%s" 0x%x nosysnodevtruefalsefsnullfsstraynopkgnoreach routine %s() {%s} variable %s[](0x%x) 0x%xcsil%dc ={ %s% expression= } } 0x%x } min(max(,)#%s(%s)%s%s%s"%s"%dnone,KERNEL,ONCE,REQ,BLOCK,CHAR,FUNDRV,REQADDR,TTYS,SOFT,FUNMOD,NOTADRV,FSTYPbdevsw is NULL bdevsw[%d]: d_open (%x) : d_close (%x) : d_strategy (%x) : d_print (%x) : flags : (%x) cdevsw[%d]: (%x) d_open (%x) : d_close (%x) : d_read (%x) : d_write (%x) : d_ioctl (%x) : d_ttys (%x) : d_str (%x) : flags: (%x) fs_init (%x) : fs_iput (%x) : fs_iread (%x) : fs_iupdat (%x) : fs_readi (%x) : fs_writei (%x) : fs_itrunc (%x) : fs_statf (%x) : fs_namei (%x) : fs_mount (%x) : fs_umount (%x) : fs_getinode (%x) : fs_openi (%x) : fs_closei (%x) : fs_update (%x) : fs_statfs (%x) : fs_access (%x) : fs_getdents (%x) : fs_allocmap (%x) : fs_freemap (%x) : fs_readmap (%x) : fs_setattr (%x) : fs_notify (%x) : fs_fcntl (%x) : fs_fsinfo (%x) : fs_ioctl (%x) : fs_symlink (%x) : fs_readlink (%x) : fs_rdchk (%x) : fsinfo[%d]: fs_flags = (%x) fs_pipe = (%x) fs_name = [%s] (%x) fs_notify = (%x) fmodsw[%d] : f_name = [%s] f_str = (%x) : searchdriverincludeexcludeignoreNo memory for EXCLUDE listdependencyevalsearchparamloadunixrBOOT:?No memory for kernel optional header INCLUDE:? EXCLUDE:?ROOTDEV:?PIPEDEV:?RSTRTDEV:?SWAPDEV:? ? ?driver for %s set to major number %d check_paramNo memory for parameter checking checkcmpabsolute Section header: s_name = %s s_paddr = 0x%x s_vaddr = 0x%x s_size = 0x%x s_scnptr = 0x%x s_relptr = 0x%x s_nreloc = %d s_flags = 0x%x UNIXrelocatable.text.data.bssnot enough memory to build kernel imageStextSdataEtexttextSIZEUNIX real sections loadedUNIXUNIXUNIXio_initDrivers loadedtextSIZEloaded text size %x does not match calculated text %x textSIZEetextedataedataendendsbsssbssSbssdataSIZEEdatabssSIZEEbssENDdataSIZEEdataSbssWarning: 'sbss' being relocated to a higher address Old value was %x, new value is %x bssSIZEEbssENDno memory for kernel symbol table No memory for driver symbol table processing ksymbolswfopen of ksymbols failed fwrite to ksymbols failed kimagetwfopen of kimaget failed writing %x pages to kimaget file fwrite to kimaget failed kimagedwfopen of kimaged failed writing %x pages to kimaged file fwrite to kimaged failed alloc_variables/The variable %s is declared with size %d The value of variable %s is %d The size of %s has changed build_io_subsysrootdevpipedevswapdevswplonswapNo memory for io_init[]loadriverNot enough entries in fstypsw tableinfoinfoloadriver: text at v_locctr %x size %x loadriver: data at v_locctr %x size %x loadriver: bss v_locctr %x size %x /loadriver: STATIC name %s value %x flag %x size %x sptr->s_vaddr -%x sptr->s_paddr +%x s->n_value %x initio_init[%d]: %s%s initshutdev_shut[%d]: %s%s shutrstrtdev_rstrt[%d]: %s%s rstrtinitiputireadiupdatreadiwriteiitruncstatfnameimountumountgetinodeopenicloseiupdatestatfsaccessgetdentsallocmapfreemapreadmapsetattrnotifyfcntlioctlfsinfosymlinkreadlinkrdchkintrvector # %d, device %s is > 255 openclosestrategyprintreadwriteioctlloadriver: BSS symbol %s value %x at v_locctr %x p_origin %x v_origin %x couldn't find %sintr(), left as novec() rrfunctionroutineRoutine %s resolved from driver %s variablevariable %s resolved from driver %s initdataToo many initializers for variable %s. The size is %d bytes. nameflagnotfy ///&@_&@`&@ a#&@aD@+&@a8@3&@c;&@a<@C&@a@@findsystemCould not stat system file: %s systemfsystemsystemBOOTEXCLUDEINCLUDEDUMPDEVROOTDEVSWAPDEVPIPEDEVRSTRTDEVinterpretline too longsyntax errorsyntax errorparse :,()?=:,()?= prompt%s ? %s; re-enter blankline numericdo_bootsyntax errorBOOT:no such filecannot boot directorycannot boot special devicecannot boot special filepath too longdo_excludeEXCLUDE:do_includeINCLUDE:syntax errorcount must be numericsyntax errordo_device:no such filefile not BLOCK or CHAR special%s major=0x%X minor=0%o DEVsyntax errormajor/minor must be numeric%s major=0x%X minor=0%o do_swapdeviceswapdevswplomust be numericnswapmust be numericSWAPDEV: swapdev=swapdevsyntax errorSWAPDEV: swplo=must be numericSWAPDEV: nswap=must be numericalloc_loadmapNo memory for loadmapmake_loadmapprint_loadmap LOAD MAP ======== --------section-------- --------address------- () %s p %6X v %6X Stext p %6X StextEtext p %6X EtexttextSIZE p %6X textSIZE Sdata p %6X SdataEdata p %6X EdatadataSIZE p %6X dataSIZE Sbss p %6X SbssEbss p %6X EbssbssSIZE p %6X bssSIZE END p %6X ENDsresetCould not find data section in file: %s Symbol [%s] not found in [%s] There are no symbols in the file: %s ƃу׃_,$=qDŽffKsymreadUNIX symbol table countedUNIX symbol table readUNIX symbol table sortedUNIX symbol table indexes builtNo memory for symbol table Ksym_name: INTERNAL ERROR p > Ksymmax Ksym_copyallKloadrKload: section %s relocating %d at %x size %x No memory for XsymbolNo memory for XsymbolNo memory for Xsymbol %s Xsym_freeXdepthXprint [%2d] size=%5d flag=%2x 0x%8x %s alloc_stringNo memory for XrelocNo memory for XrelocNo memory for Xrelocrelocate: R_ABS absolute (error) relocate: R_RELBYTE direct 8-bit (unsupported) relocate: R_RELWORD direct 16-bit (unsupported) relocate: R_PCRBYTE pc-relative 8-bit (unsupported) relocate: R_PCRWORD pc-relative 16-bit (unsupported) relocate: unknown type %o paddr %x value %x cdevcntcdevswcdevswbdevcntbdevswbdevswfmodcntfmodswfmodswfstypcntnfstypfstypswfstypswfsincntfsinfofsinfonovecCan't find function 'novec()'ivectivectdev_shutdev_shutdev_rstrtdev_rstrttreset/dev//devhd0anodeviceBdev %x file %x Can not open.Can not read block %d, errno %d Bad readpanicFatal error: %s: %s Fatal error: %s: Unknown errno %d %s shcatUsage: cat file %spwd..../ %s: missing entry for inode %d .//..%s %s lsFiles in %s are: %s: pathname too long No memory for directory list // %s %s directorydirectory: dir %s open, closing fd %d BADdirectory: open of %s failed : option requires an argument -- : illegal option -- -- 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFvvžvvvvvvΞv!!!!!!!!!vvvvvvvvvvv8vvvvvvvvvvvvvvvvvϠvvvvvvvvvv@8R;@vv4vvvvv vnvvϠ-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@xH@xH@9@H@J@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0.file gcrt1.s.text<.data@.bss:@.comment:@.init_istart.filegvers.c.text.data@,.bss:@.comment.file+gmain.cmain$, perror$_error]$!k$~#.text=.data@4 .bss:@.comment.fileEgstdio.cfdopenhB/_filbuf.$1fgetsbl3fread7$y5fseek$7fdclose`$_9itoabo;lcase.b==.text.data@.bss:@.comment.fileOgerror.c.textl.data$@ H.bss:@.comment.filegloadunix.cl S&:  =U0w  WD] IYQ A[^ D]o+b_z$Ra h?cinclude?  eexclude  Mgignore$! Yi}! kevali"$mX'holoadunix($q- mscheckcmp1,uabsolute1dw3dry;${= }? @ functionP,VroutineP,variableQ,initdataR lresetbV bssscangV$]datascanW$&countbssX.%Z.%.textlSo!.data@..bss:@.comment driver:@kernel:@:@N_index:@N_value:@edtlist;@.filegsubr.c4[ Gsystem{[ 3fsystem[ \bparse\]$lprompt^ #c_,<numeric_,=do_boot_b-`bT8 abCabMcb[de 4ie vOf Ohh[ih-&n hn ;sresetn *pprintfn$n$.text4[.dataT%@.bss,;@T.comment(syntaxT%@loadmap%@nextmap,;@.filegtables.cKsymreadq 4whxh3x$MKloadx,$yh#| l3} OXvalue}$} GXdepth}$\Xprint;~ T~ R~ )a.Vallocate.define|hredefineh%6B$4@v J4 T˂  relocated  generate treset׈ _.textqdy.data+@L.bss<@.comment0K_ascii<@K_index=@Ksymtab=@Ksymmax=@K_value=@templatel+@.file,gmisc.cbcopy8$!"bzeroY$$.text8<.data`/@.bss=@.comment8.file>gminmax.cmint$0max$2umin$4umax$6.texttT.data`/@.bss=@.comment@.fileSgstandio.c^ȉ$,Bk$bDopendirVh-Freaddirh\Hclosedirߋ$J.textȉ00.data`/@.bss=@x.commentHunix_fd=@.file_gdebug.cpanic$dW.textd .data/@@.bss>@.commentP.filekgsyscall.celapsed\$c.text\.data40@.bss>@.commentX.filegshell.cshellt$ocat$qpwd5$sxb$uls  why.textt8.data80@.bss>@.comment`.fileggetopt.cgetopt$b.textd8.dataT1@D.bss$>@.comment$>@error1T1@error2x1@.fileggets.cgetsb.text.data1@.bss$>@.comment$>@.filegopt_data.c.text.data1@.bss$>@.comment$>@.filegprintf.cprintf$_.text`.data1@.bss$>@.comment$>@.filegmemccpy.s.textD@.data1@.bss$>@.comment$>@ .filegsetjmp.s.text@.data1@.bss$>@.comment$>@ .filegstrchr.s.textė8.data1@.bss$>@.comment$>@ .filegstrcmp.s.textX.data1@.bss$>@.comment$>@ .filegstrcspn.cstrcspnT$@.textT@.data1@.bss$>@.comment$>@.filegstrncpy.s.text<.data1@.bss$>@.comment$>@ .filegstrspn.cstrspnИ$@.textИ@.data1@.bss$>@.comment$>@.filegstrtol.cstrtol$.text.data1@.bss$>@.comment$>@.filegstrncat.s.text,8.data1@.bss$>@.comment$>@ .filegstrncmp.s.textdL.data1@.bss$>@.comment$>@ .file%gstrrchr.s.text$.data1@.bss$>@.comment$>@ .file/gstat.s.textԛ.data1@.bss$>@.comment$>@.file9gstrcat.s.text0.data1@.bss$>@.comment$>@ .fileQgdoprnt.c$D=_dowrite`$k?_doprnt˜$'A.text.data1@Y.bss$>@.comment$>@_blanks1@_zeroes1@uc_digs1@lc_digs1@lc_nan2@uc_nan2@lc_inf2@uc_inf2@.file^gctype.c$U.text.data3@(.bss$>@.comment$>@5@.fileogecvt.cecvtȱbbfcvtbdcvtbTf.textȱ .data5@.bss$>@P.commentt>@buf$>@.file{gfwrite.cfwriteX$s.textX .data6@.bsst>@.commentt>@.fileggetenv.cgetenvbAnvmatch1b@.text.data6@.bsst>@.commentt>@.filegmemchr.s.textt.data6@.bsst>@.commentt>@ .filegread.s.text.data6@.bsst>@.commentt>@.filegstrcpy.s.text4.data6@.bsst>@.commentt>@ .filegstrlen.s.textض.data6@.bsst>@.commentt>@ .filegfopen.cfopenhfreopen h"_endopen+h9.textt .data6@.bsst>@.commentt>@.filegfindiop.c_findiopdh,.textd,.data6@.bsst>@.commentt>@.filegflsbuf.c_cleanup "fclose$fflush9$`_flsbuf$7_xflsbufк$_wrtchkX$_findbuf$_bufsync$:.textP%.data6@.bsst>@.commentt>@.filegclose.s.text.data6@.bsst>@.commentt>@ .filegdata.c.text.data6@.bsst>@.commentt>@.filegisatty.cisatty$9.text<.datax:@.bsst>@.commentt>@.filegioctl.s.text4.datax:@.bsst>@.commentt>@ .fileglseek.s.textH.datax:@.bsst>@.commentt>@ .file/gmalloc.cmalloc\bfree 3!realloc7b#.text\9.datax:@.bsst>@.commentt>@allocpx:@alloct|:@allocx:@allocend:@.file9gmall_data.s.text.data:@.bsst>@.commentt>@$.fileCgmemcpy.s.text$.data:@.bsst>@.commentt>@ .fileMgopen.s.text.data:@.bsst>@.commentt>@.fileXgsbrk.s.text,@.data:@.bsst>@.commentt>@nd:@.filebgwrite.s.textl.data:@.bsst>@.commentt>@ .filelgcerror.s.text .data:@.bsst>@.commentt>@ .filevgcuexit.s.text.data:@.bsst>@.commentt>@ .filegcrtn.s.text.data:@.bsst>@.init_start_mcountenviron:@exit_S_I_@ERRORt>@IOERROR>@ABORT>@@@@BreakHit@maxmem@topboot>@@prt>@@endJ@Bdev`/@optarg1@@strcpyp@debug>@@sys_nerr@errno>@errortab$@_iob6@readlseekH_ctype3@sys3bsym>@>@hiwater" PajÐUuuuuu u#=^@t 5^@jjYU=@uuuuu uPjP5,@h^@b@0h7@h Y@YUuuuuu u#=^@t 5^@,jj{YU=@uuuuu uPjPb@0h7@h Y@XUWS}}Ef]@f]@h7@u@j]@]}=ft-=7txY=3to/=1tf=0t]rf ]@M=2tCX=5t7 =4t.C=6t"7=bt1x=9t V=8}t#Wh7@)3Nf ]@EjEPEHPj f]@=af ]@@=cf ]@=rt!G=mt#,=jf ]@^f ]@Sf ]@H=ouXf ]@6=tt=su=f ]@f ]@ =xu f ]@EE\JWh7@3:UPb@-b@=|>h8@u uuuuu=^@t 5^@vgjŒYYb@U UPUP=<W=*t}-=#="z=&j=-tG =+t>j=/t2^=I9#=C( =>1E @=NdE@=NRE=*te=+t8=-tD=/td=<=>E UR9PzE ЋMRQPxE ЋMR+QPeE ЋMRQPQExu E @hD8@u uuuuu=^@t 5^@djYYhZ8@hh^8@u uuuuuw=^@t 5^@djjYY,v@@Phv@Ph@d@%x^@qjjh>v@e x^@9x^@~5x^@ht8@1+@'@hGt@+EHECEM>t2@@t$@8~5@\,@~SE4v@ 94v@u ,@,@,@4v@ƃ=@w@P@,@E:@ 9G~h:@Y$ @WPf@@^@@-@=|h:@Y @@f@Ph:@UEt)7uY=t.Ph:@ZUEt7h:@p E=it,=S6=It=C@@3=L#=Z}=V 7_Y@fB@@=vh(;@{Y @fPfuhN;@h Y@B@@RPf@=c@=vt&[=sto=luh@^@T7Y@fB@fPfu1h;@h Y@-B=zu@7@Ps@@^@iG^@\^@@@ @]@jjjjN>^@j7wj+#^@j7wj-^@j7wj*^@j7wj/^@wp%YEE6@UE6@7jjj&^@o7jjj"t^@X7jjjN]^@A7rY=~@7jjjI1^@H|=5w |$6@5p@t@x@Ep@rh8@Y]u}ËE^@HNHNH N EL0@E==@}@} @E@E|p9E|dE,@E@93@uH@^@x^@ JHJHJ H EE=@ @E4@E=us=@}f@} @E,@EE9uU9PuEE8| E@9uE@E}3}u@=w |$06@E|@2@UE}E+Ћ^@V JHJHJ H E+ЋڋE1@E1@@E9E}E,@EU93@E1@,@E}E+Ћ^@V JHJHJ H E+ЋڋE1@E1@@E9E}E,@EU93@tE1@,@EEx@t@5p@|@7E4@6@IOtEE<@6@u؋E<@6@7h9@ G]@]@t @9]@vס@9]@rhd;@nY]@%?='@E="t=It=NPUrP Uhp J#YEt5E@E="t=NuEP UE@ w@EE=NtE="t E=Iu-E=Nu>}t8]@@Ph;@]@@Ph;@oE="u3umY]@R;v]@@Ph;@1@=Nu'9P9P|]@fRfP ]@@@@fP7Yb@b@G@^@^@]@]@;@rh<@Y]@uġ]@%?='@E="t=It=NPUrP Uhp c!YEt5E@E="t=NuEP UE@ w@EE=NtE="t E=Iu-E=Nu>}t8]@@PhK<@]@@Ph*<@E="u3ukY]@R;v]@@Phy<@J@=Nu'9P9P|]@fRfP ]@@@@fP7Yb@b@^@wE4ŀ6@&KtEE<ŀ6@u׋E<ŀ6@t#jwwń6@P^@cwh<@s7uJtEEEu߃}t$jjj7YP"^@7jjj#^@wuZJtEEEuރ}t&wjjwYP^@wwh<@ 5p@t@x@E@@RL0@U}|49E}*E,@93@uE,@U*@s-U E=@EEb@,@dE=?tG=dt*=kt/=mt=xu>,@5G@=@)G@=@G@EE 05 =@h=@u u+ E={}uE9G@|E 05 =@E b@h8[ oY@=@u h=@~Y}f@hh=@u }jE G@4YPh=@EPgPK j.EPGEtEf@hEP<YPE G@4, G@E9G@t==@t3U0@@(@@@@@ @@@@@w@ w@ju%YPh=@EP gPJ E<@8@j.EPFEtE5=@h^@fh=@h^@Ku h^@oKh=@h^@f|@uh^@uh=@ ÍEУ^@PEYt(^@5|@PhYuh=@5|@6Y|@@ th^@h>@G5|@4Yb,@uVh@u $=u?_ E=,@t5@u >u5@uEPuuh>@^@5|@pgYU Exuuh&>@%3EEEEEP5<@,=t}u5<@uhK>@ 3uEP4u5<@uhe>@ 3uutU,W98@j5<@.$E}uu 5<@h>@P 3}ÿSEPWu1& u5<@h>@3ɋE%@=@u=8@E0@E4@Gd|u"Y8@9Eu3{UP9=@u6j5<@7n=@=u5<@u h>@ 3á0@9E}5<@u uh>@_3ס0@)E4@Eju5=@i ;Etu 5<@uh?@3jEP5=@ c =t5<@u h;?@ 3ZERU,@ƅ},@=*e=$u ƅK>PbYh\?@PC9 j=P[Buh`?@Yhm?@PBtTuDV@t-bYhp?@DC9th?@YOaY=~ @Yth?@I (@-@=d~ h?@Yj5(@A KaYh?@B9uh?@Yh@@]BЉ="u@(@@NjPh%@@^APEB (@B 8t h)@@AY(@uhP& dË="u@=\u8u΋="t h@@Y됋(@@"@PY-w@(@fB UUW}9E ~EE%?=uGPuu_M GEaGEUEPE@%EE>E@%EE*hE@@)YjjYH|=w |$=@M }}tE@%EE}tEE@%EGE%?UPEEhk@@5=@P~^PECu P^YR$CPY!iP5=@hm@@P=juhE=uuhy@@:uhP^h E=uPh@@ujPu =Ltuh@@ eujPurEU+Љt fEfjEAYPjPuPuuuuj(Put t t Pj(Pu<fffh^Puf ;t89uP5YPh@@jhPu[ 9uuYuaYuaYEEP@Y=u#9\@tPh@@1PP!=uYPh@@T9Et uGaY9Et u4aYPK@Yuh@@]ÍP,@Y=uꍅPh@@UPE 0ZYEE0ZYU+ЋUPE 0 YEE0 YU+ЋUHWVEE@@fNfO@!%E@fPf~U+@fPE@f@@@EUЍR%E(@-@@fBf~@U+@fPE@f@@@UЍR%E@fPf~U+@fPE@f@@@UЍR%E@@kUЍR%E@fPf~U+@fPE@f@E@%EEP^_YEu hA@YEEEkUf|t5kUD@UMԉkEEEUEԋMMILEkUD @ЉUEMEkU@t8EkUD@UMԉkEEEUEԋMMILE̋EkUD9E|EС@@9E)h1juu"EEEԍUЋURYE̋EEE+ẺEuuu t EE9EvE9EwEUԋLE+@f4EUԋLMuu؋EEPCa +@UfEEEԋE9ENu'`YEčPn]YEu h2A@YEEGC@7YwY뗊Gjw CP1 C @t=DtP=Nt%G=Mu@G tw CPQGMCS+QY@ã@GPhkA@+ƍȋG%3F|ݍC@U}u]@EE=<tkP=*tb)=#="=&t}=-t0 =+t'=/ty=It-A=CtJ/=>u`E@]@jgYj_YEE@ ]@8=Dt/=Nt&=MuuPY@E]@ E@]@]@+EÐUPW} EGu GtuhA@fGGuu u  u t3uh B@GjhJB@GP/ G G G fGf~uhKB@fGfGf~uhvB@`fGG tGuuhB@4EGtGtuhB@ EGtGtuhGC@EG@tGtuhC@EGtGuuhC@EGtGuuhD@bEG =vuhOD@CEGt&u  u tuhrD@EEt3}UW}(uV@t Pz1YGuҋE}UW}(uV@t Pc1YGuҋE}UPEEEuEËEE=/uU WS}WLY +Jw@-w@;~ hD@AYw@ w@E~w@@w@G\eG=7tLa=3tC!=1t: =0t1=2t%=5t =4t=6E-0E=rtK=ft#.=bubw@w@ w@ =nu4w@ =vt=tuw@ w@ zw@qE-0EGE@E=}=0| =7~ă}u hD@ԿY9E~uhD@輿w@U?yw@@w@w@E]}UWV}@jVWK/ u Ƌu}Ã;5(@r3UWVS}uWu u{J ؃uVY]u};tVhD@߿3UWVS}uWu uU ؃uV]Y]u};tVhD@艿3Uuu uP =uu Y3Ub@0hE@Po) uuuuu uPIYR?)PhYUWVSuhE@hE@YE xt#@P3YPE @Ph(E@ E @P YPh/E@|E @ PE @ PE @ PE @PE @Ph3E@HE fxt<@U ЋEU RhtE@EE @9E|؋E fxtd@U ЋEDVjjhE@F="uF U RhE@v hE@EE @9E|E fxtG@U ЋE'4A@CU RhE@U EE @9E|͋E fxz@U ЉUERE@U RhE@Efxt)h F@YE@U R,Yh F@YE0hF@Efx@ U ЉUEh4F@YE%?=t E@E@PE%?4A@PE@t+hCF@6YE@U RvYhPF@Y/Et hTF@YE@PhXF@EEE@9E:EEE @9E]u}U W}u= ]@E=<=*t~c=#t5,="u GPhF@YWFY@ǣ ]@}=&uGPEPhF@( WEY@ǣ ]@=-t =+t =/uG ]@E=*t E=/u2 ]@=+t ]@=-uEhaF@YEjY}t hcF@YEPheF@|E=*t E=/u ]@=+tV ]@=-tGE=-uP ]@=-t- ]@=+t ]@=*t ]@=/uEhhF@YEj/Y}hjF@Yz=Ito=C|=>UE=<ulF@qF@PYG ]@jYhvF@dYjYhxF@QYGPjhF@; G ]@=Dt=NtN=MEPhzF@ tGPh~F@ WCY@ǣ ]@GW W W ‰EPhF@ G ]@4UWf}hF@h]@Bfu F@}ǩthF@h]@'ǩthF@h]@q'ǩthF@h]@U'ǩthF@h]@9'ǩthF@h]@'ǩ@thF@h]@'ǩ thF@h]@&ǩthF@h]@&ǩthF@h]@&ǩthF@h]@&ǩthF@h]@u&ǩthF@h]@Y&]@UÐU@uYuËE@ =ejE@-<PEp Epjj$ E f@ ejjuN upujj(V7Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V \@+V;}V>Y}u +gEEvVt$|$ ;tL$t^^3ÐUXWVEE} j7V u6tG =DFGfFfG fF fGFG #?8 >u}jju> EjkEURu{> =trjEPu7 =uZue>YEtJE-PE@Puy7 U;u%EUJ ujuu > =ujuu= 9FrE9F|!uk=Y}u|@Y7EFPL}u"u.=Y}t uC@Y3u}jEPu6 F@)EFtjEPu6 } fG GfGG ?t8uju@E} {uEPu86 E=Ltur<YKEEjuu< E؋EEUWVG@I@9\@s \@E^@Px;YR@E^@E^@E EURu+ËE9^@sˣ^@P5R@>R@UWVS^@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW^@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu^@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u ^@|?=R@t6SW5R@= SVW= S5R@V= ]u}ÊEGFUKuUWVS}u ]^@E9E|R=R@tIuW5R@< uSW< uVS< u5R@Vr< ]u}ÊEGCFUMuӐUW}Wx4YjjG Px8 GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P7 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P47 ECG t8W3YG t g GGuu G P6 E9Eus3lUPE EPuhX@d UPEEPu uI UW}EEEljEEW0YEE2uu EP }ÐUWVS}u Dž^@ ^@ ^@We=~*uDžF DžDžk -0FV@u؃u DžÉ=lt h9uF؅[uPVV@tDžlW@؃nt_= ^@uVctQ[tL^@} W@ Y GGV@u ^@W&=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf^@fl9uEEP^@{EEP^@dEPWSt'= ^@tu /$Fu V@td= ^@u^@} W Y GGV@u ^@Wp=u ^@y%uF؃%^@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$R@EE EE^@}WyY3]u}ËGG=+t=-t =0t8EM^@} W(Y GG؃0i9E }9Eo^@} WY GGEh~PW =uh~PhV@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}(^@E(^@EDX@s3UtE](^@ELX@ETX@EX@r5EX@rX@EX@AEX@s6EE]@)EEX@r݋EE 9P܃}t؁(^@v^@vv^@EX@t9^@r05}fEf fEmE]mE܉E@0Ee X@];r&=5|+(^@u(^@1}tCF0N<9(^@]Ћuԋ}ËEE0]@EEsEE 9P EEEEX@MU]vEu}fEf fEm]mE܉EFUR0EMm]EX@E5X@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G \@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W \@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}\@u'3]u}ËÃ0Wtۃ;uUWV}u  G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W\@UWX@;= \@r3}ÃG uUWX@ WY;= \@r}UWV}tlG t6G t3WVYG PY}\@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG \@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G \@+G?}3W \@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G \@+G?}3W \@+W;}WY3UWV}G G u}}&u@@H@GW \@*h!YGt@O G W\@GGVYtG uO @u}G P@WR\@UWV}G \@+G}G \@Wu};7}7𐐐3ÐU\@EEPhTu } E\@3ø6JÐ6ÐU WVSE9ET=\@u<\@ \@\@ \@\@\@\@\@\@\@E@3؋=\@E&;5\@\@E@E=w=\@j Y\@@;t?3Ee ƹ3tL3+‰EEE2\@+\@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5\@\@0E+E-\@@;t\@\@\@\@~Љ\@;5\@v\@\@\@ 9=\@u \@\@G(=\@95\@u=\@7tލ;r;l%;UWV}5\@%\@9u5\@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ\@Nj]u}WV|$ t$L$Njʁ^_øfÐT$\@Ru \@+D$ø1T$\@3øÐÐ\@ÐT$X@X@\\n v t br f -HHHHHHHuuu= I I X d                                          AABB  5?JLVAAMWBB NXABOYBS PZQ[R\^_       !7777777777777777"#$%%%%%%%%'(&& &) ! +) + ,)')( / 0"# - +$%%%%%%%% +* 1 +* 2 3 + 4 + 4*) 4 + 4 . +6666666666 4 .666666666666666666666666666666666666666666666666666677777777888888888888::::::::::9:::::::::::::::::::::::::::9::::::::::::::::::::::::::$;$;$;$;$;$;$;$;$<$<%<%<%<%<%<%<%<%<%<%<&>&>&>&>&>&>&>&>&>&>$=&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>$=&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>&>(?(?(;;;;;;;;;;;;;;;;;<;<9H9H9H9H9H9H9H9H9H9H(?(?9H9H9H9H9H9H(?(?)A(?(?9H9H9H9H9H9H)A(?)B(@(?)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C)C*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D*D+,,,+,,,.,.,<<<<<<<<<<<<<<<<<<<<++,,,,.,.,+,,,/,+,,,/,.,+,,,.,+,,,.,0,.,//,0,+,,,+E,E+,,,/,.,.E/,.,00,/,1,/,2,0,1,1,2,0,/,/E0,/,0,11,1F22,3,0,1,4,0E3,2,0,1,4,2,1,2,1,2,33,44,1,3,1E2,1,4G2E3,2,4G3,KT4G3,4GKUKUKUKUKUKUKUKU3,3E4G3,4E4,=I=I=I=I=I=I=I=I=I=IU]=I=I=I=I=I=IU^U^U^U^U^U^U^U^>>>>>>>>>>>>>>>>>>>>=I=I=I=I=I=I>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>@J@K@K@K@K@K@K@K@K@L@M@N@O@P@Q@RDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDE,F,E,F,G,G,E,E,FF,GG,E,F,E,F,GGE,F,GGE,F,GGGGE,F,EEFEE,F,GGGEG,IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII@ @@P'@(@@0@j@h'@8@@@@@'@H@@'@P@.@X@@`@@'@h@@p@@x@@@@@@@@@j@@@@@@@@@@@'@@@@@@@(@@@$@@0@@8@@D@@P@0@\@@h@@x@@@@@@(@@@(@@@(@@@@6@@L @@ @0)@@J@'@@F@'@@@@2@'@$@@'@0@@'@@@\@L@R@'@X@@'@h@@'@x@@@@(@@@(@@@(@@@@(@@@(@@!@(@@#@(@@#@(@@@x$@@@@0)@@%@0)@@&@'@@"@'@@@'@ @@)@@r&@(@ @@,@T#@@@@@@@@@4@@<@#@@D@@L@@T@@\@@d@@l@@t@@|@@@@>'@P'@  "##########0000000088#AAAAAAGGGGGGGGGGGGGGGGGXGG##_AAAAAAGGGGGGGGGGGGGGGGGXGG##@  67EC0/J2"@P$G+)*L,FI>BMN+)-*',+)D*,'=+)4*,+)&*+,K.A,%?1!(89:;< 5OHQ 3#   VUTSRQJIHGFEDCB@>:"        ---{[-((#&-}%]+-*/(-))(=,,{))},   645!13% "$+,-.0#)2(*/&)'p""9@9@9@9@9@9@9@ <@<<@><@<@<@<@<@<@<@<@<@<@<@<@w@&Ib0qb0b0b0Qbaub"LZb0,Gb}%s: %s: line %d, %s %s: %s nonemultiple vector numbers in "%s"illegal device flags "%s"too many expression nodesillegal node type "%c" for expressionstring table overflow (string table overflowillegal character constant: '\%o'"%s" truncated to "%s"illegal character 0%obad switch yylook %dyacc stack overflowsyntax errornoneprefix "%s" truncated to %d characterstoo many dependenciesstring table overflowstring table overflowtoo many routine definitionsnosysnodevtruefalsenopkgnoreachpassunknown routine type "%s"too many variable definitionstoo many variable definitionstoo many size specifierstoo many size specifierscC"%%%d%s" is an illegal length specifierLOC 1 FOR ILLEGAL LENGTH character strings must not be larger than 255 characterstoo many size specifierscCsSiIlLvVzZcCsSiIlL"%%%s" is an illegal length specifierNo storage allocated %%V value must be less than 255 bytesNo storage allocated more initializers than size specifiersillegal initialization for %%%dcnumeric initialization must be zero for %%%dcstring initialization too long for %%%dcmore initializers than size specifiersillegal initialization for %%%dcnumeric initialization must be zero for %%%dcstring initialization too long for %%%dcminmaxunknown function "%s"CDMcdmCDMcdmunknown variable reference "#%s(%s)",=@>=@N=@--+-+- -?-/usr/sys/master.d/usr/sys/boot.d%s [-m master_directory] [-d boot_directory] [-k kernel] [objfile] ...Usagexm:d:k:out of memory for optional headerkernel/r%s: not processed; cannot open %s%s: not processed%s: I/O error%s: not processed%%%s encountered with no symbol namesymbol %s not found in %ssymbol %s in %s NOT an initialized data item%s couldn't be opened to get %s valueCouldn't find .data section in %sCouldn't get %s value from %sBad addr %x for %s in file %sSeek to %x in %s for %s value failedError reading value for %s in %s syntax error 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_syntax errorparameter %s already definedparameter table overflow syntax error missing '"' for end of string value not numeric or stringerror in declaration of a structure /%s/%s: cannot open%s: cannot open%s: bad magic%s: truncated write%s: cannot unlink existing file%s: cannot link%s: cannot unlink%s: not processedno memory for building expressionsno memory for building string tabletoo many expressionsillegal node type "%c" in expressionE@E@E@E@E@E@E@E@E@F@F@"F@&F@*F@.F@%s: illegal flags -- no flags allowed for kernel object files%s: vectors, prefix, major, devices and interrupt level ignored%s: dependencies not applicable for kernel%s: routine definitions not applicable for kernel%s: illegal flag combination -- TTYS only valid with CHAR|FUNDRV%s: illegal flag combination -- BLOCK|CHAR|FUNDRV|FUNMOD|SOFT mutually exclusive with NOTADRV%s: illegal flag combination -- CHAR mutually exclusive with FUNDRV%s: illegal flag combination -- REQADDR not valid with SOFT%s: illegal flag combination -- ONCE only valid for SOFT|NOTADRV%s: illegal flag combination -- REQ only valid for SOFT|NOTADRV|FUNMOD%s: major number cannot exceed 127%s: fields not applicable for NOTADRV|FUNMODstring table overflow\0 illegal within stringillegal character escape: \%o%s: truncated read%s: truncated write%s: %s: flag=%d %s %s nvec=%-2d prefix=%-4s software=%-3d ndev=%-2d ipl=%-2d dependency=%s parameter: %-*.*s = "%s" 0x%X nosysnodevtruefalsefsnullfsstraynopkgnoreach routine %s(){%s} variable %s[](0x%X) %%0x%X%%c%%s%%i%%l%%%dc ={ expression= } } 0x%X } ()%c()min(max(,)#%c(%s)%c%s%.*s"%s"%dnone,KERNEL,ONCE,REQ,BLOCK,CHAR,REQADDR,TTYS,SOFT,NOTADRV,FUNDRV,FUNMOD,FSTYPF@@(#)mkboot 5.3b of Feb 8, 1988` %ldr! ` %ld: option requires an argument -- : illegal option -- --Unknown error: I@I@I@ J@J@4J@>J@XJ@jJ@|J@J@J@J@J@J@J@J@K@K@ K@/K@?K@NK@_K@sK@K@K@K@K@K@K@K@L@ L@#L@4L@OL@bL@~L@L@L@L@L@L@M@M@8M@RM@[M@dM@mM@M@M@M@M@M@M@M@N@N@ N@4N@FN@TN@lN@N@N@N@N@N@N@O@O@O@"O@5O@>O@GO@ZO@cO@lO@O@O@O@O@P@'P@eP@P@P@P@P@P@P@P@P@P@P@P@P@P@Q@ Q@Q@ Q@*Q@4Q@>Q@HQ@RQ@\Q@fQ@pQ@zQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@R@R@R@$R@.R@8R@BR@LR@VR@oR@yR@R@R@R@R@R@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error`````````````````````??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFzt:~:~t:~}:~:~:~:~tbt:~ntt:~tttttttttt:~:~:~:~:~:~:~:~:~:~:~v:~{:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~:~v:~:~:~:~:~:~:~:~:~:~}uvy{tu:~:~t:~:~}v:~:~:~}:~2v:~:~v-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@`@`@ \@h@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0etc/mdl100755 0 2 223537 4266524635 6626 37777777777 L" <3P x @.text .datax @x @<3x@.bss>@>@P .comment0ÐET>@RU RP P]jÐUWVH@95(@h( @Ξ @5(@%bYG@ @5(@ dYG@ @ @5(@cYG@ @(@E @ @5(@aY$ @ @ @w @l @a @V @K @@5(@JcYG@ @$(@G@ @5(@cY @ @(@ @ @5(@bY @ @ @5(@bYG@ @ @(@0@ @~ @v5(@bY @ @] @(@ @K @C @(@G@1 @) @! @-A|=7w |$8@54@u ub E=:50@AYXU@j5XU@-E5XU@hH@= @t0uuuuuuuuh:@i$h:@豞YhG@juhW} = @u hd@>eY5>@:Yhk@= @t0uuuuuuuuh:@i$h:@5YYh,@h(@5G@? =,@=(@t/H@H@ EH@E=(@t#fH@fH@ fH@U ЋH@H@=,@t=(@t'H@H@ H@E=(@t#fH@fH@ fH@U ЋH@H@H@G@H@G@WuCG= tbh GPhm@+ j0h@= @t0uuuuuuuuh:@Jg$h:@jYj&Y3i8H@PVu}B Fru,Y= @t= @t5iG@9H@t-5G@h@ +j赤Y9G@ @hiG@8H@P= @u$E @= @t5G@a9YG@= @u = @tjRwYPu*= @tu5G@5G@u= @t5G@u= @t5G@u= @t5G@u= @u$= @u= @u= @u = @t5G@ui= @t5G@uj= @t5G@u= @t5G@ul+= @t5G@u3u}UPWVE܋Eju)Ej Wus } = @u h@`Y5>@轢YWo+Y=tPh@(j蓢YGPVu } = @u h$@b`Y5>@^YV.YG tuuVWuu Ou}GtuuVWuu G%?Ph7@B(jYUPWVS}uH@iE8H@EC(EԋC,E؃= @t EU E5 @E@ P2EPtY= @u!ft~t F @  @ @t @@% @ @G@ E 3tE E3)EG@ U+ЉU @G GE9EvE-Ph]@'jY= @t +EEEG@ EFtG@ EF@% G@ EFEGt G@%GEEEĩtEEč@%EEEGt G@%GEGt G@%GUЉŨ= @tG@PuG5E}uh{@&j誟YEЉEvYEjvuҚ vuu F 3EG@ E܋EE܋E܉E+EЉFFEEEEjEt E܍@%E܉EuO0YE=Ep NYEjEpu& Ep uuZ E@ 3EPuuuuuju虜Y= @jr5 @pE@3҉P E=uyEf`Ex2U܉P2fǀPUHǀLUWW U @ @EU @PE @G FE=u9= @t*js5 @"ptE@3҉P GEEE@V(;u&EUWMO щP*Eܣ>@uuEЋ@B PEpuE܋EЋR 9P~Ћ@+B Puu E܋E>@+UЉP@ЋR 9P| ЋJH EЋJ HE EE9E= @tjs5 @ouuuuuutEEEDEUPUMJс UfBu~-YE EE9Erjuui vuuhȪ4LE@*fF(G GG EWP.WP6juuhKW}$Yj WuhȪKV'YGPVuhȪKE+EЉEȋE9Ev5E+EPh@!h@!Yh0@!YhP@!YE@UЉUȉuuu8 ]u}U WVEp aYhk@= @t0uuuuuuuuh:@\$h:@YYjEU PRu Ep VuhJffEPh@= @t0uuuuuuuuh:@\\$h:@|YffEPuu E EEPuua E % EfPEPh@= @t0uuuuuuuuh:@[$h:@Y EWuh@= @t0uuuuuuuuh:@s[$h:@蓐Y = @u = @tAh@= @t0uuuuuuuuh:@ [$h:@@YYBh@= @t0uuuuuuuuh:@Z$h:@YYG?uGEP ;h@= @t0uuuuuuuuh:@Z$h:@觏YYjEU PRu蠓 Ep VuhȪjHu}UWV}h@= @t0uuuuuuuuh:@Z$h:@'YYWR YGPuu* U GЋVh@= @t0uuuuuuuuh:@Y$h:@軎YjVu軒 jEPuhGEPh@= @t0uuuuuuuuh:@1Y$h:@QYEPuu^ E EEPuu< E %U ЋfEPh@= @t0uuuuuuuuh:@X$h:@辍Y= @u = @th @h@= @t0uuuuuuuuh:@DX$h:@dYYjVuf jEPuhȪ1FWpYEMh@= @t0uuuuuuuuh:@W$h:@YYu}UWVS}u ]G;uG]u}à Nu3UWV}uu}UWVSH@iE 8H@= @u(= @uh@nYFth@@DYjY= @fj5G@hffSjh }!= @u 5G@RY5>@舔YCux= @toh @jh虏 } = @u h^@CRY5>@?YSjhd }!= @u 5G@ RY5>@ Y= @t$C9 @t5 @CPhl@* C @F>Pjh } = @u h@QY5>@蛓Y @FBNBh]Y= @tG@Vu u1 =0@uE @aPG@@0Ph@h@E @aPG@@0P50@h@|P9ej|PEjjuhC} = @u h@PY5>@ÒYVu u(0 FPjuhB} = @u h@~PY5>@zYuQYWu0PleYNVu u0 UWViE 8H@= @u"= @uh@UY$(G th#@1YjݑYGuɃ= @tG@Wu ur/ Guu u>= @,j5G@xffVjx }!= @u 5G@6OY5>@2YFt7VjxP }-= @u hB@NY5>@Y hR@5Yx轋Y=0@uE @aPG@@0Ph@hu@E @aPG@@0P50@h@|Pbj|PEh( @juh@} = @u h@CNY5>@?YuYWu u- P.cYOWu u- UWViE 8H@= @u"= @uh@Y$(Gth@Yj蟏YGtɃ=0@uE @aPG@@0Ph@h@E @aPG@@0P50@h @|Poaj|PJEjjuhH?} = @u h@LY5>@YuЉYWu uU, B ,j5G@xffVjx׉ }!= @u 5G@LY5>@|YVjx衉 } = @u h#@KLY5>@GYxYkUWiE 8H@= @u= @uh2@LYxG uu ug=0@uE @aPG@@0Phr@h_@E @aPG@@0P50@hs@|P_j|PEGGPjuh=} = @u h@>KY5>@:YuYWu u* UWViE 8H@E= @u= @uh@0Yu}Guu h@Gu h@YjG:% W:Puh<jVuh<= @u = @FjG:% W:@PuhR<jFPuhȪ<<= @ jG:% W:Puh<jVuhȪ;= @u = @tC @jG:% W:Puh;jVuhȪ;F=x=uFFjG:% W:@PuhH;jFPuhȪ2;UWViE 8H@E= @u= @uh@Yu}Guu h+@ۀw@Wu uP( UWVS} u+ljjWu诅 juuh{:hD@= @tHh:@L$h:@3YY+=s+uhZ@= @tHh:@K$h:@輀YESPu} } = @u he@HGY5>@DYSPuhȪW9} = @u h@ GY5>@Y;h@= @tHh:@J$h:@YYUWV}u GNuu}UWVS}ju uhx83h@= @t0u uuuuuuuh:@&J$h:@FYYsu h@= @t0uuuuuuuuh:@I$h:@~YE Vh@uhȪ7} = @u h@uEY5>@qY+؅\h@= @t0u uuuuuuuh:@>I$h:@^~YYË]u}UWVSH@PnYE PPu7 E= @t8vh@;Ev$v h@(E v,v(h*@E w= @unh_@DYhe@DYhl@DYhu@DYh}@DYh@DYh@DYh@DYh@DYh@DY3k i8H@= @uE= @u = @t3= @t ;G@t= @k ;E upk ‹9Pu/uSPh Pk PuS +uSP9 Pk Pus C;]U WkE EEH@EЋ@BEG(G,EEH9E sE @k UЋBE+E}U= @= @E Ph@Ch@CYh@CYh@BYh@BYuE ph@B ja5G@h@B h@BYE ph@Bh@BYU0WViE 8H@EGjG:% W:Puh3jVuh3jFV % VN сPuh3jEPuh3Gu== @t5G@h@ = @tu h @s uȋ}Ã= @u h9@zAG Phg@iAGPh{@XAGPh@FAPh@5AG tPh@AfG*PG*Ph@@ w.h@@w2h@@w6h@@:fG:PG:Ph+@@ FPhF@@FPFPhS@t@ FPPhf@^@ FPh|@L@EPFP!w>h@+@wBh@@LHFPh@?PPh@?E1= @u hz@?h@?YGuG G tPh@w?#F=u h@]?Y h@P?YPh@A?G Ph@0?Pi9YPh6@?FPPhW@> FPFPh@> {Gt9h@>YG Ph@>P8YPh@>7h@>YG Ph-@>P8YPhQ@k>hr@R> fG*PG*Ph@3> w.h@#>w6w2h@> h@= >NwBw>hU@= 6u h@==u h@=YPh@=G@th@h@~=YG%'=t1=t7=t==!up%Ph@A=Th@2=YGh@%=Y:F=u$=u h@=Yh@<Y h@<YGtT=u h@<YPh@<F=u h@<YFPh@< h@<YYPh@g<uh@Q< GtE @aP5G@h @E @aP5G@h @< GPh @<G Ph! @;h$ @;YGRkU tRkU tRkU Puh@;EP9Erh0@; hX@j; P5YPh@O;Ph@:;Ph@%;fPPh@; fPPh@: fPPh@: fPPh@: fPPh)@l: fPPhD@G: fPPh_@": ~UE ffUfPfUfPfUfPfUfPfUfP fUfP fUfPfUfPfUfPfUfPfUfPfUfPfUEPEPEPEPEPEPh& @9EPEPEPEPEPEPhd @W9EPh @E9h @89YEt h @"9YEt h @ 9YEt h @8YE@t h @8YE橀t h @8YEt h @8YEt h @8YEt h @8YEt h @r8Yh @g8YUPu uxE}= @u u7YjyYEU= @u%u$u uuuuu uh:@;$U= @t0u$u uuuuu uh:@_;$h:@pYUPWV}= @tbiG@8H@Ft== @t E = @t5 @F PmV5G@W u}EviE8H@FtY= @u Fu ;G@u-= @t E = @t5 @F PmVuW E9ErjUWVSH@3Ti8H@Gt:u1FEjKYE3uU+ЉWSu C|]u}UE Pjuh'} h @5YUPW}=(@u =,@t)=(@tGW GfG}UPW}=(@u =,@w=(@t f=(@tGW GfG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"G W  G E=(@tfG fW  fG U ЋG G =,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=(@tGW GfG}UPW}=(@u =,@=,@tk=(@t  E=(@tff fU Ћ=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"G W  G E=(@tfG fW  fG U ЋG G =,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"G W  G E=(@tfG fW  fG U ЋG G =(@tG(W( G(fG(=(@tG*W* G*fG*}UPW}=(@u =,@=(@t f=(@tGW GfG=(@tGW GfG=(@tGW GfG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"G W  G E=(@tfG fW  fG U ЋG G =,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG}ÐUWV}30i8H@;ui9H@t Ƌu}Fr˸UW3i9H@uNj}Gr߸UPYE PPu EDž9E tH k D9E r\ k  k @D U U;w/E Í k ‹U9Pr k DE9oU 0H@E4H@EEU f fUPEE kU f EkU f kE U ЋEMIk R+TMIk TkE U ЋE kM RTt#kE U ЋE kM RTR%kE U ЋE kM RT‹UkM D EE9EPEEUMIk +D MIk D hCj uu'EU WVuEEiE8H@GtffEfFF EE2fEfRkU LNRkU LN EEP9ErE9EohCj uu&Eu}UWV}u F9GuF9Gwu}ËF9GvUWV}u F9Gv u}ø񐐐UWV}30k ; @u$E k @Ek @u}F|UW3EU 8fm Gr}UW3EU 8m Gr}ÐUfEfE}t8= @uhP!@YjfY= @thz!@Yj}fY= @tBja5G@8t3fEjm5G@8t3fE}u1= @u(EEEEE}u}5G@NY=t+=uHf}u\5G@h"@jeY?f}u85G@h"@jeY5G@h#@jxeY}uG@@0PhR#@hA#@G@@0PuhS#@h>@i7>@uYE9Eu}uEEE9Eu}uEEEE9Erf}f}}tN}tHE9E} EG@5G@h!@ #)EG@5G@h!@# }t.EG@9E5G@h!@"}t.EG@9E5G@h "@"h+"@ZYjdYf}tL}t.EG@9Ef5G@hS"@E"Nhw"@YjcY6f}+}t.EG@9E5G@h"@!h"@Yj\cYU j]6YE+EEEPb6YE}uh#@h>@E5Q9E}E0pph#@h>@5W39E}$Ep P4 !@h#@h>@4)EPlRP4 !@h#@h>@4>@UW}jiE G@RuhhWuh{WY}UW}jiE G@RuhFWvYhWuhȪ)WYY}UW} j5G@uhj0WuhWKY}UW} j5G@uhW Yj0WuhȪWY}UPW}=(@u =,@J=,@tk=(@t  E=(@tff fU Ћ=(@tGW GfG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"G W  G E=(@tfG fW  fG U ЋG G =(@tGW GfG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"GW GE=(@tfGfW fGU ЋGG=,@tq=(@t"G W  G E=(@tfG fW  fG U ЋG G =,@tq=(@t"G$W$ G$E=(@tfG$fW$ fG$U ЋG$G$=,@tq=(@t"G(W( G(E=(@tfG(fW( fG(U ЋG(G(=,@tq=(@t"G,W, G,E=(@tfG,fW, fG,U ЋG,G,7h#@yGPh#@gwh#@Ww h#@GGPh#@5wh#@%}UPW}=(@u =,@ =,@tq=(@t"G*W* G*E=(@tfG*fW* fG*U ЋG*G*=,@tq=(@t"G.W. G.E=(@tfG.fW. fG.U ЋG.G.=,@tq=(@t"G2W2 G2E=(@tfG2fW2 fG2U ЋG2G2=,@tq=(@t"G6W6 G6E=(@tfG6fW6 fG6U ЋG6G6=,@tq=(@t"G:W: G:E=(@tfG:fW: fG:U ЋG:G:=,@tq=(@t"G>W> G>E=(@tfG>fW> fG>U ЋG>G>=,@tq=(@t"GBWB GBE=(@tfGBfWB fGBU ЋGBGB=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=(@t f=(@t f=(@t f=(@t f=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ=,@=(@t( E=(@t$ff fU Ћ}Uh[jEOEj!Yuuuuu UEj!Yuj OEU5G@h$@h:@y jcOYUPWV}WYt(t$V YEVWUЋ‹u}øUPWVS}u 3ESaY;uEC;|E]u}UWVS}u u!u5 '@h'@hF@ W YEP#YE9tkE8tc9t_8tZP0tSh('@@0P!t>EP]t4h+'@@]P tEPlth.'@@lP u 3]u}WYƋ؋E@?=/u+E@]PYPE@?Ph1'@hF@ /E@]PYPE@?P5 '@h8'@hF@F@xUW}r }8UWV}='@u '@15F@|9t9>u9u5F@Ƌu}U WVEEhO'@hB'@AEuF@$$@>F@>@>@EG?t= t7@u߀?= =#G?t= t =#uFlPF]PFNPF?PF0PFPF!PVhQ'@P(|9tAh'@uh'@h:@h'@h:@uBYF@$$@.uhP uaBYU WVS=F@h'@G!P!G]t5h'@G]Pt Glth'@GlP3EEEPhhG0P,YPEF }tMG]t?h'@G]Pt*G]PYUM+Rh'@GlP ,EPh'@G]P EPh'@GlP |93E0Fr3$h'@SYPY@!PtCr׃t!SYPY@]P=YHE]ԋu؋}SsYPYh(@G!Pu}E<utEE@EuYEucYUЋEHEuh(@G]P uh (@GlP VY;EuE0FrCTDUWVS}33 VY;uCFrË]u}U WVS}WYWY؊FNth (@FNPu6F]PYEFlPYE~E+E@EE FNPYEE]u}UWfE='@hCY'@uh(@jYjjHY5'@^Yf}t]jYEjh(@E@]P` j(h(@E@lPJ 3 '@8G| '@Gr'@}ÐUPWVS}E7@uJG7@u=+t =-u EG7@u 3]u}ø0+Ëk 0+G7@uރ}t뾋븐UuaYPYUWVS(G@$(@GF҈uEk@>(@(G@GFGFGFGE@kT(@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW(G@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUPWVS}E7@uJG7@u=+t =-u EG7@u 3]u}ø0+Ëk 0+G7@uރ}t뾋븐UPWV9(@ueE9(@}#E (@ =-u E Au u}h(@E (@4u (@΋E (@ (@=(@:tWu =(@tOLjEE E 0L9YPE 0jC h(@19YPh(@jC jEPjC E (@ (@@(@u(@(@?F=:(@@U (@t(@@U (@(@(@@(@;E|l=(@tOLjEE E 0i8YPE 0jB h|(@N8YPh|(@jB jEPjB (@?GE (@(@ (@(@8E (@ (@@(@u(@(@(@UWVS} uEE~,F t!O>(V#Y=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V =@+V;}V<Y}u +gEEvUWV(@ +@9>@s >@<(@u6YtVuj7A jh(@j&A W6YPWjA jh(@jA u}ÐUPWE E:@u:@t* :@h:@uu :@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_U9Er=(4@u>ELG@P <Y(4@EHG@EDG@E EURu+ËE9LG@sˣLG@P5(4@>(4@UWVSDG@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuWHG@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVuHG@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u DG@|?=(4@t6SW5(4@= SVW= S5(4@V= ]u}ÊEGFUKuUWVS}u ]DG@E9E|R=(4@tIuW5(4@F= uSW9= uVS,= u5(4@V= ]u}ÊEGCFUMuӐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh:@d UPEEPu uI UW}EEEljEEW2YEE2uu EP }ÐUWVS}u DžPG@TG@ PG@W=~*uDžF DžDžk -0F7@u؃u DžÉ=lt h9uF؅[uPV7@tDžl8@؃nt_=TG@uVctQ[tLPG@} W@ Y GG7@u PG@WN=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfPG@fl9uEEPPG@{EEPPG@dEPWSt'=TG@tu /$Fu 7@td=TG@uPG@} W Y GG7@u PG@W=uTG@y%uF؃%PG@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$,4@EE EEPG@}WyY3]u}ËGG=+t=-t =0t8EMPG@} W(Y GG؃0i9E }9EoPG@} WY GGE@"3C7@u9Eun7@t`7@t07@t7W+ЉUE9E}t}u EEEE}.u EEtmet E}EEuyFӈPG@} WY GG7@u+t-t7@t.FӈPG@} WY GGM}}}tPEPY]}tE]l9EuEBETEBE@}t9EtE؉El9EtGh9Eu=EBfUf PG@WS=u TG@E6EBUU WVS}u ]tEB3EEcu!utEUEK~UPG@E} u.Y EP@E=t'suE7@u[uEU<t9EuTG@ PG@)~% PG@uu =u TG@E9Eu 3]u}Åt ctEU WVS}u E=^uEGh}u3PV E=]t -9EudEUGX}u 3]u}ø-9Eu2E=]t%G;]}E+@PuP4 G EUGE=]u랐U(WVS}EEG7@u=+t =-uEG3EEEE.}tE0u7EzM }k  9E}kE EkE EEM}M }k ؋-0' 9E}kE EkE E-0EEG7@U.uEEBu4@]̋uЋ}É]E]9E~ EME]Eteur3E= t=+t =-uEG7@t:} k -0G7@u؃}t)EE}4@EEEE4@u(4@C4@  [4@r4@E}؋4@E4@E|tE ]tkEP}}EuE\$ ]}t EEUWV}uW]*YG uG tO G Dt1:@"u}F @tV^'Y;5=@rGGG tG =@+GPwG Pu$ | GG듸9tO O G tg aU W}tE4@uE}ÍEPu u ؅~8E=>@"E5@s4@4@뫋E=}!>@"5@E 5@]r؋ȸEE}^E 5@]wϸEEM3UW}E 5@uE}E(5@vEE]E85@rE 05@EE]E@5@rEH5@vEE뒐W|$D$ L$~% ‹ʁD$_ÐÐUWEEEEEE2EEEPuu o ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø& ,Ð T$tÐUW(E+P5@EEPY=X5@iGQiWkW<E=XG@u=\G@uWEPEP< XG@E\G@EE9E|)E9E}!E+T5@EEPYG Nj}UWVEQUEE}} EQME<`G@EdG@ƙ5hG@EpxG@}| FFFtmnEN}|ۉ5tG@}=|G@ƹtmn=nu ff5@3 ud5@+Fud5@;}ff5@GlG@5pG@G@`G@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph7@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}G@EG@E9@s3UtE]G@E:@E :@ET:@r5E\:@rh:@Ed:@AE:@s6EE]@)EE:@r݋EE 9P܃}t؁G@G@vG@E:@tG@r05}fEf fEmE]mE܉E@0Ee :@];r&=5|+G@uG@1}tCF0N<9G@]Ћuԋ}ËEE0]@EEsEE 9P EEEEl:@MU]vEu}fEf fEm]mE܉EFUR0EMm]Et:@E5|:@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G =@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W =@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}>@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_ÐR ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W=@UW:@;==@r3}ÃG uUW:@ WY;==@r}UWV}tlG t6G t3WVYG PY}>@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG =@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G =@+G?}3W =@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G =@+G?}3W =@+W;}WY3UWV}G G u}}&u\U@dY@GW =@*h!YGt@O G W=@GGVYtG uO @u}G l]@WR=@UWV}G =@+G}G =@Wu};7}7𐐐3ÐU>@EEPhTu } E裔>@3ø6ÐÐU WVSE9ET=>@u<>@ >@>@ >@>@>@>@>@>@>@E@3؋=>@E&;5>@>@E@E=w=>@j Y>@@;t?3Ee ƹ3tL3+‰EEE2>@+>@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5>@>@0E+E->@@;t>@>@>@>@~Љ>@;5>@v>@>@>@ 9=>@u >@>@G(=>@95>@u=>@7tލ;r;l%;UWV}5>@%>@9u5>@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ>@Nj]u}WV|$ t$L$Njʁ^_øÐT$>@Ru >@+D$øT$>@3øvÐ0DNL$0D:L$0+L$0L$0 L$0 Ã>@ÐT$@(#) mdl.c 1.17 88/07/12 @@x[[[[[7}[[[2[[[[[[[[[["\[[[[Lh[[*[:a:A:b:Bc:d:De:EgGhHiI:M:m:n:N:pP:qr:Rs:S:tT:vVxGetting status from '%s'...M_STAT Incompatible process tables [board's(%d) != mine(%d)] sizeof( struct memtab ) = %d Cannot download over process %d No room in process table. Cannot read headerBad magic: 0x%02x Cannot read headerCannot load: invalid cpu type 0x%02x Stack too large by %ld bytes Cannot fit image of %ld bytes malloc for segment tablemalloc for relocationWARNING: task size bigger than estimate by %ld bytes. (Please give this message, your task image and mdc code to Michael Thompson.) Attempting to continue... Relocating symbol table... ...Type(%04x); seg(%04x) --> (%04x); offset(%04lx); name('%s') Relocating... Location(0x%05x); ref(0x%04x) --> ref(0x%04x) No channel or pid specified. Use '-c or -P' Process already initialized. iopmem GETMEMwarning: IOPMEM size (%dK) != requested size (%dK) GETADDR (probably wrong kernel)%s/dev/mdm/mdm%c%c%s/dev/mdm/mdm%c%cM_INITM_IDENTNo channel or pid specified. Use '-c or -P' Can't restart exited process. iopmem STARTFORwarning: IOPMEM is not allocated. %s/dev/mdm/mdm%c%c%s/dev/mdm/mdm%c%cM_STARTNo channel or pid specified. Use '-c or -P' Cannot remove or exit kernel tasks %s/dev/mdm/mdm%c%c%s/dev/mdm/mdm%c%cM_EXITiopmem STOPFORNo channel or pid specified. Use '-c or -P' %s/dev/mdm/mdm%c%c%s/dev/mdm/mdm%c%cM_IDENTNo channel or pid specified. Use '-c or -P' pid %d: no such process Can only alter priority of running tasks No channel or pid specified. Use '-c or -P' pid %d: no such process Loading segment to 0x%05lxError reading source imageError writing destination image Zeroing 0x%05lxError zeroing MDC memory Multidrop memory size: %ld bytes Start of foreign area: 0x%08lx length 0x%08lx Start of free area: 0x%08lx length 0x%08lx PID Chan State Nice Start Size Free Dev Ident Name (%02d) ? Memory --(--) -------- %-7ld %-7ld %d%c(K) ------ <%06lx> No process on channel %d No such process; pid %d Multidrop process info for process %d ---- p_name '%s' p_ident %s p_status 0x%02x p_chan %d p_exitstat 0x%04x p_Start 0x%04x:%04x p_textlen 0x%08lx p_datapos 0x%08lx p_datalen 0x%08lx p_taskentry 0x%04x:%04x [ pid(%d), ss:sp(%04x:%04x), pri: 0x%02x(0x%02x), syspage(0x%02x) ] p_iopaddr 0x%08lx p_ioplen 0x%08lx p_nearseg pid(%d), start(0x%08lx), len(%ld) p_numsegs %d p_farseg[%d]: pid(%d),start(0x%08lx),len(%ld) p_image start(0x%08lx), len(%ld) p_stack start(0x%08lx), len(%ld) p_starttime %sp_Chan_data 0x%02x p_Chan_cntl 0x%02x p_main 0x%04x:%04x p_stop 0x%04x:%04x p_cmd  0x%04x:%04x p_cntl 0x%04x:%04x p_debug 0x%04x:%04x p_dmaintr 0x%04x:%04x p_igate 0x%04x:%04x Multidrop process info for process %d ---- Process loaded and EXITED; status 0x%04x and SUSPENDED and running Controlling channel: %d Process name: '%s' Start time: %s Current niceness (priority): 0x%02x(0x%02x) Current stack pointer: 0x%04x:%04x and initialized but not running. Process name: '%s' Init time: %sbut not initialized. Process name: '%s' Load time: %s Image area starts at 0x%08lx length 0x%08lx Entry point: 0x%04x:%04x; text length 0x%08lx Data area starts at 0x%08lx length 0x%08lx Stack area starts at 0x%08lx length 0x%08lx Iopmem memory starts at 0x%08lx length %dK %02d ? %03d * Load Init Exit:%-2d Halt Wait Run zz%02x(zz) (%02x) zz(zz) %s %-7ld  %-7ld %d%c(K) %d%c %-6s %s ax=%04x, bx=%04x, cx=%04x, dx=%04x, si=%04x, di=%04x cs=%04x, bp=%04x, ss=%04x, sp=%04x, ds=%04x, es=%04x ip=%04x Flags: CF PF AF ZF SF TF IF DF OF M_INTRXINUNUXIIXUNUNIXd#@h#@l#@p#@t#@x#@|#@#@#@#@#@#@Must specify -b with alternate root Do not specify both -r and -T Defaulting to board %d (Multidrop) Defaulting to board %d (ACPA) Defaulting to board %d (Multidrop) Defaulting to board %d (ACPA) No Multidrop or ACPA boards in system. Defaulting to board %d (Multidrop) No Multidrop boards in system. Defaulting to board %d (ACPA) No ACPA boards in system. Board %d is not a Multidrop board. Board %d is not an ACPA board. Board %d is not a Multidrop or ACPA board. %s/dev/mdm/mdm%c%s/dev/mdm/mdm%cJanFebMarAprMayJunJulAugSepOctNovDec ? %02d:%02d:%02d %s %-4d %s %4d clock=%lx SYS_HZ=%x HZ=%lx PCLK=%lx ptabsize=%x memsize=%lx Command to board %d timed out. SIOtty5tty10MultiDroptty10tty64File Procfpunknownunkemptyemp'@/dev%s/console\0\0\0%s%02d%s/%s%02d/etc/sysdispr%d "%14[^"]" "%28[^"]" "%14[^"]" "%14[^"]" "%14[^"]" "%14[^"]" "%14[^"]"Invalid disipline format; line %d, %s; /etc/sysdispusing default disipline. tty\0\0\0%d%d%dttytty%d%d\0getsysinfo%d%dDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec: option requires an argument -- : illegal option -- --Unknown error: $+@,+@6+@P+@`+@x+@+@+@+@+@+@+@+@,@,@$,@:,@F,@R,@d,@s,@,@,@,@,@,@,@,@,@-@-@5-@D-@P-@g-@x-@-@-@-@-@-@-@.@..@I.@X.@|.@.@.@.@.@.@.@.@ /@/@'/@=/@R/@[/@d/@x/@/@/@/@/@/@/@ 0@0@)0@E0@T0@]0@f0@y0@0@0@0@0@0@0@0@0@&1@K1@k1@1@1@1@1@1@1@1@2@2@2@!2@*2@32@<2@F2@P2@Z2@d2@n2@x2@2@2@2@2@2@2@2@2@2@2@2@2@2@3@3@3@"3@,3@63@@3@J3@T3@^3@h3@r3@|3@3@3@3@3@3@3@3@3@3@4@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error6r3r3r3rbr6rbrbrbrbrbr?rbrbrbrbrbr6rbrbrHr??GA>???5@5@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFґґґ@ґґґґ=ґ*ґm}}}}}}}}}ґґґґґґґґґґґґґґґґґґґґґґґґґґґґ+ґґґґґґґґґґEґґґґґґґiґʉґґ+-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@|]@|]@=@]@_@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0.file gcrt1.s.text<.datax @.bss>@.comment>@.init_istart.fileVgmdl.cmain$<loadL 'load286s  relsymD reloc& filpos$5load86   >![ ##' %/@$'<[ $s)bmove .+zero"  -mzero".T/IF$ 1memfree9&.R3parea&$5pproc>'$|7reg_dump/ 9openfilp1$8;error1 3=DEBUG1 >?set_time2 AS3$vC]3 <Erel_conv3 HGg4 Ir7 Kseg_conv< M.textP?.datax @x9.bss>@.commentSccsIdx @.filebgchantopid.c|`@$HZ.text`@H.data @.bss>@.comment.filexgmemalloc.c@$0fgetslot@.hgetholesA.jgetareasB.lC$>nC$'p.text@`.data @.bss>@.comment.filegswaptype.cswaptypeD C|shortsetKD "~longsetmD  .textD.data @0.bss>@.comment.filegmdlcomm.cmdmnameDbvreltimeHbget_procH Kput_procI Rget_mmapkI >put_mmapI EI O  bcmd[$Rbtimeout[$%.textDl .data !@ .bss>@(.comment .filegsysdisp.cbasechan[$FB\$9ttystr{\bF]$!disp]hM/^$fix_ttys_$8num_typea$.'b$bi.text[t .data$$@.bss>@D.comment(sysdef$$@sysdisp>@sysinfoF@Dev '@sysptr'@.filegatol.catolpc$.textpc.data$(@.bss(G@.comment(G@.filegctime.cctimedbasctime1dbct_numb$ebJ.textdT .data$(@X.bss(G@.commentDG@cbuf(G@.filegatoi.catoipe$.textpe.data|(@.bssDG@.commentDG@.fileggetopt.cgetoptf$b.textfd8.data|(@D.bssDG@.commentDG@error1|(@error2(@.file gfgets.cfgetshb.texth.data(@.bssDG@.commentDG@.filegopt_data.c.textTi.data(@.bssDG@.commentDG@.file"gperror.cperrorTi }.textTi .data(@.bssDG@.commentDG@.file,gerrlst.c.texti.data(@D .bssDG@.commentDG@.file8gprintf.cprintfi$_0.texti`.data(4@.bssDG@.commentDG@.fileBgmemccpy.s.text4j@.data(4@.bssDG@.commentDG@ .fileWgqsort.cqsorttj zFqs1j pHqsexc^l pJqstexcl L.texttj(.data(4@.bssDG@ .commentPG@qsbuf(4@qsesDG@qscmpHG@.filecgfprintf.cfprintfhm$][.texthm`.data,4@.bssPG@.commentPG@.filesgscanf.cscanfm$gfscanfm$isscanfn$Ak.textm|.data,4@.bssPG@.commentPG@.filegdoscan.c_doscanDn$wnumberq$fystringBv${setupZwl}.textDn p.data,4@T.bssPG@.commentXG@chcountPG@flag_eofTG@.filegatof.catof,x'.text,x.data4@h.bssXG@.commentXG@pow1_254@.filegfilbuf.c_filbufz$.textz.data4@.bssXG@.commentXG@.filegldexp.cldexp{'.text{ .data4@8.bssXG@.commentXG@.filegfrexp.cfrexp|'.text|.data 5@0.bssXG@.commentXG@.filegmemset.s.text<}8.dataP5@.bssXG@.commentXG@ .filegalarm.s.textt}.dataP5@.bssXG@.commentXG@ .filegsprintf.csprintf}$F.text}H.dataP5@.bssXG@.commentXG@.filegstrchr.s.text}8.dataP5@.bssXG@.commentXG@ .filegstrcmp.s.text~X.dataP5@.bssXG@.commentXG@ .filegsysconf.s.text\~.dataP5@.bssXG@.commentXG@ .filegtime.s.textp~.dataP5@.bssXG@.commentXG@.filegtime_comm.c~hgmtimeChytzset getznameb{ gettime*b getdigitbTgetdstZ$getusa2 sundayĄ$T.text~E .dataP5@t.bssXG@,.commentG@XG@end_dst\G@d5@.file+gungetc.cungetc$^#.text`.data5@.bssG@.commentG@.fileCgdoprnt.cx$D/_dowrite$k1_doprnt'$'3.textx.data5@Y.bssG@.commentG@_blanks5@_zeroes5@uc_digs5@lc_digs6@lc_nan6@uc_nan$6@lc_inf,6@uc_inf06@.filePgctype.cP$G.textP.data7@(.bssG@.commentG@%9@.fileagecvt.cecvt$bTfcvtBbVcvt`bTX.text$ .data9@.bssG@P.commentG@bufG@.filemgfwrite.cfwrite$e.text .data:@.bssG@.commentG@.file{ggetenv.cgetenvLbAqnvmatchb@s.textL.data:@.bssG@.commentG@.filegmemchr.s.textП.data:@.bssG@.commentG@ .filegread.s.text.data:@.bssG@.commentG@.filegstrcpy.s.text4.data:@.bssG@.commentG@ .filegstrlen.s.text4.data:@.bssG@.commentG@ .filegfopen.cfopenLhfreopeneh"_endopenh9.textLt .data:@.bssG@.commentG@.filegfindiop.c_findioph,.text,.data:@.bssG@.commentG@.filegflsbuf.c_cleanup "fclose$fflush$`_flsbuf$7_xflsbuf,$_wrtchk$_findbufI$_bufsync$:.textP%.data:@.bssG@.commentG@.filegclose.s.text<.data:@.bssG@.commentG@ .filegdata.c.textT.data:@.bssG@.commentG@.filegisatty.cisattyT$9.textT<.data>@.bssG@.commentG@.filegi386_data.s.text.data>@.bssG@.commentG@$.file gioctl.s.text.data>@.bssG@.commentG@ .fileglseek.s.text.data>@.bssG@.commentG@ .file+gmalloc.cmallocbfree` 3reallocb.text9.data>@.bssG@.commentG@allocp>@alloct>@allocx>@allocend>@.file5gmall_data.s.textP.data>@.bssG@.commentG@$.file?gmemcpy.s.textP$.data>@.bssG@.commentG@ .fileIgopen.s.textt.data>@.bssG@.commentG@.fileTgsbrk.s.text@.data>@.bssG@.commentG@nd>@.file^gwrite.s.textȪ.data>@.bssG@.commentG@ .fileigsignal.s.textܪt.data>@.bssG@.commentG@ 0D.filesgcerror.s.textP .data>@.bssG@.commentG@ .file}gcuexit.s.text\.data>@.bssG@.commentG@ .filegcrtn.s.textx.data>@.bssG@.init_start_mcountenviron>@exit\chanG@pidG@boardG@niceness @Aflag @aflag @bflag @Bflag @cflag @dflag @Dflag @eflag @Eflag @gflag @Gflag @hflag @Hflag @iflag @Iflag @mflag @Mflag @nflag @Nflag @pflag @Pflag @qflag @Rflag @rflag @sflag @Sflag @tflag @Tflag @vflag @Vflag @xflag @memsize @intvecG@;G@iopnameG@pname @striplst @E @P$ @]G@proc_locG@addressG@tabptrsG@memtabH@ptable8H@pargs( @__bswap(@__wswap,@root0@devnameXU@optarg(@strcpy_iob:@ioctlerrno>@timep~readlseekstrchr}writeȪclose<opentsignalܪalarmt}strcmp~_ctype7@sysconf\~optind(@optopt(@opterr(@strlen4memccpy4jh=@sys_nerr +@s(@memcpyPmemset<}_lastbuf=@_cerrorPtimezoneP5@altzoneT5@daylightX5@tzname\5@memchrП_sibuf\U@_sobufdY@_smbufl]@_allocs>@sbrkbrkend_@sighold)sigrelsesigpause sigsetetextxedata>@init_taskstart_taskexit_taskremove_taskset_prioritytoggle_debugprint_mapchecktimeinterruptxhead_convxext_convchantopidallocprocastart_compalen_compmmap_convproc_convboard_posboardtypegetsys_dispnum_portsgetsys_infolocaltimestart_dstmonth_size_lowdigitsetchrclassfirst_call_sigreturntype_liststack_sizescratch_sizememtab_loc_bufendtabsys_errlistsigignore)sigrelsesigpause sigsetetextxedata>@init_taskstart_taskexit_taskremove_etc/rc100744 0 2 2372 4222504164 12303 1etc/init.d/sys.start37777777777 inittab.pcf100666 0 0 1035 4316732613 7413 37777777777 init:2:initdefault: brc::bootwait:/etc/brc /dev/console 2>&1 r1:1:wait:/etc/rc1 /dev/console 2>&1 r2:2:wait:/etc/rc2 /dev/console 2>&1 r3:3:wait:/etc/rc2 /dev/console 2>&1 rsr2:2:restart:/etc/rc2 restart /dev/console 2>&1 rsr3:3:restart:/etc/rc3 restart /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail /dev/console 2>&1 wait:/etc/brc /dev/console 2>&1 r1:1:wait:/etc/rc1 /dev/console 2>&1 r2:2:wait:/etc/rc2 /dev/console 2>&1 r3:3:wait:/etc/rc2 /dev/console 2>&1 rsr2:2:restart:/etc/rc2 restart /dev/console 2>&1 rsr3:3:restart:/etc/rc3 restart /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail /dev/console 2>&1 r1:1:wait:/etc/rc1 /dev/console 2>&1 r2:2:wait:/etc/rc2 /dev/console 2>&1 r3:3:wait:/etc/rc2 /dev/console 2>&1 rsr2:2:restart:/etc/rc2 restart /dev/console 2>&1 rsr3:3:restart:/etc/rc3 restart /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail uENE;r+E^_ÐU(WVEPEPEE @kE| ~ ^_ÐOE|=Eu EE&E |; }Ex @8puE }|}ElVEF;|W=nu}|E E@EMuEHEܸm܉E܋EEܸ<m܉E܋EEܸ<m܉EaEt ;}uEEE܃} u!@E܍EPnx tmEM܉3^_U WV @E8u ^_Ð ME)xdۋE8tE0 |ă E @^_ÐUPWV9h@ueE9t@}#E t@ =-u E Au u}hl@E t@44u t@΋E t@ h@=x@:tWu=p@tOLjEE E 0t$YPE 0jZ- hP@Y$YPhP@j?- jEPj/- E t@ h@@h@ut@h@?F=:h@@U t@th@@U t@|@t@@t@;E|l=p@tOLjEE E 0#YPE 0jw, h,@v#YPh,@j\, jEPjL, h@?GE t@t@ |@h@8E t@ h@@h@uh@t@|@UPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu ' E@ t }ËUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸ T$tÐUW(E+@EEPY=@iGQiWkW<E= @u=!@uWEPEP<  @E!@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<!@E!@ƙ5 !@Ep!@}| FFFtmnEN}|ۉ5!@}= !@ƹtmn=nu f@3 u@+Fu@;}f@G!@5!@$!@!@u}Ëƹtmn)EFƹtmn9E}<UPh@"YE5@uEjh@u) E@-@!@3 @@5@uhEtC@Et0=;t(jh@u Et E=;th!@h @E@P UPEE@u3ËE E U M~E@E@uEE@u E E M}EUW3EE}t-E=-u3Eu E=+uEEPuEt^iEE=:uHEPE@PXEt0kE<E=:uEPE@P-EtE}t E ډE 8E}UE@u3ËE E k U0E@E@uՋEUE3EEPuEtyME=/ujEPE@P EtOE=,uFEPE@P?Et*ME=/ujEPE@P9 Eu3ËE iUQUEiUQU @+ @+щUPEEEkU @9P|EkU @E kU @E0uEUE 0u0U EiQ E iQUWV}u :|"Gtmn-m+GG+‹u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoY Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅Hd@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅Hl@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h @YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}(!@E(!@E,@s3UtE](!@E4@E<@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁(!@v!@vv!@E@t9!@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+(!@u(!@1}tCF0N<9(!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&ux!@%@GW @*h YGt@O G W@GGVYtG uO @u}G )@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU @EEPhTu } E @3ø62ÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ @Ru @+D$ø!T$ @3øÐ @ÐT$X@@(#)cvtdate 5.3b of Jan 27, 1988@cvtdateubad conversion %s usage: %s [ -u ] [[[yy]mm]dd]hhmm[.ss] %02d%02d%02d%02d%02d%s: %s: (warning only): : option requires an argument -- : illegal option -- --@@W`/Lw/K:/JMFw/GMT TZ  000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF$!Qaaaaaaaaax)x{tM-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@)@)@@)@ +@3.1bS03.1bS0@lpinstall100700 0 2 477 4201130524 7156 37777777777 : # this install script is located at the root of the lp tar diskette # it simply removes the remove.this files located in the empty # directories created for the lp command echo Installing the lp system files and directories find /usr/spool/lp -name remove.this -exec rm {} \; echo Installation complete. rm lpinstall c3 restart /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail /dev/console 2>&1 hlt0:5:wait:/etc/rc5 /dev/console 2>&1 halt:6:wait:/etc/haltsys /dev/console 2>&1 powr:23:powerfail:/etc/powerfail  <:z:<D V!<4<C<*;%; ;;;; ;;;::::::::::::::::::::::::::{:v:q:l:g:b:]:X:S:N:I:D:?:::5:0:+:&:!::::D$yÐUW}A|ZNj}ÐUW} 9EtFG tG9GwG9Gu+?u&GuW8YGHGUE}øWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_UWEE EP@YtujWQ Nj}Uu@YU WVSE9EU@8u<@R@P@T@@P@T@\@E@3؋=P@E&;5T@;=@E@E=w=\@j8YT@@;t?3Ee ƹ3tL3+‰EEE2T@+\@+ЉU3Ee E;r"EE9Ev&h7Y=u 3]u}Ámu7Y=u+EP7Y3Ή5\@T@0E+E-T@@;tT@T@T@@}ЉP@;5P@vP@X@P@ 9=\@u P@\@G'=P@95\@u=\@7tލ;r;l%;UWV}5P@%T@9u5\@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuW ;s1E;rE+ƹX@Nj]u}ÐUPWVS}u ]C}G8uO KuO GF҈uE]u}ÐUWVS}u ]GF:u Nj]u}M}3WV|$ t$L$Njʁ^_UPWVS}] u}GN}E]u}ÐUWVS}u ߋG8uOGF҈uË]u}W֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUWV}uW YG uG tO G Dt35$@"u}F @tV`Y(@;0rGGG tG ,@Ћ+GPwG P3 | GG눸9tO O G tg VUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu ÉE)G?}3W  ,@ʋ+W;}W Y+ÅqE^UW}} W3Y}ËGGUWVS} uEE~0F t%O>,VY=uE9E3]u}N;>}Sj vuEtE+E؋E)F>}3V  ,@ʋ+V;}V Y}u +YEElUWEE$@805$@Y=uE9E3}á$@H$@8Wj puEtE+EE$@)P8}3$@$@R  ,@ʋ$@ +J;} 5$@Y}@MEEZU$@}5$@IYá$@P@UPWVS}E} WY GGֈFK|G u G tG u G t]u}ËE𐐐UWVS} 3G %=utG9Gu!?uG DuWnY 3,@W MG u>u)YEPuG PS0 E]u}WpY=uGEU+Ѕҋ~SjuuEt E+EH؋)G?}3W  ,@ʋ+W;}W Y}t*G @tWY=u PIE]UWVS} E!}WFPd GG֊ FK}G % ]u}ÐUW} }WEP }ËGGUUS]$@H}@PP]á$@P@È琐UW}a|zNj}ÐUWVS}}~cG %=utG9Gu?uG Du W>Yu*3u",@W MEE ;ur;u s 3]u}ËG9GreG urRVuG P . ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  ,@ʋ+W;}WY+Åu>G Dt+G uEE Pj u* tWYYEEMUW=$@ WY(@;8r}UWV}tmG t6G t3WWYG P*Y}L@G tw@YGG GGƋu}UW}G u3}WsYG uG ttG9GwG t3UPW} G %R=BuE,@W 9GGGU= uQWY=E}G %=u7EEjEPG P{+ =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G ,@Ћ+G?}3W  ,@ʋ+W;}WY~'SVG PO* ;tO ]u}3UW}G %=t&G u }G % G uWcYG9GuSG DuHG ,@Ћ+G?}3W  ,@ʋ+W;}WY3{UPWV}G G }(u@@G,@O ,h@YGtAO ,@W O GGVYtG uO @u}ÍE,@W @MOI UWV}G ,@Ћ+G},@W Ou};7}7UPWV}g G 9E}qtkG u`7E E}ujjG PM' +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P& ECG t8W9YG t g GGuu G P& E9Eus3lUPWVS}u ]}CKt GFut GKuE]u}ÐUL@EEPhTu% } EL@3øUpPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu)% E|WEG tE =ruG E =au$u jju$ } 3]u}á,@W G3ɉO ِUW=$@(@;8r3}ÃG u鐐UWVS3$@@%=u*$@xt$@R9Pu*xu$@Du$@@PY 3,@$@R M$@@PY=u$@XE+Å~VjuSNEtE+Ë$@)PPx}3$@@$@R ,@ʋ$@ +J;}$@@PNY}tA$@PB @Dt&$@@PY=u]u}ËE'UPWEEE@ uE@ t(EH uuu  E@ t }ËUPWE E$@@u$@@t2$@H$@@Puu $@@ t }ËUWEEEEEE2EEEPuu  ENj}ÐUW}E`@uE}Eh@vEE]Ex@rE p@EE]E@rE@vEE뒐D$%=uD$% D$tøÐUPWVS}u ];t$GF+…EtE]u}K}3UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSxYSVjWwES]u}VWE0 ƋUUWVS}uEDž,Dž(Dž F FE29u E ,@Ћ‰EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu" E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}lE`EDuM E-0 M1EE E PP~؉]P}CDžl|@Dž\9PtP؉PNKPPcYrÐ^3ÐÐ66Ð%"3Ð ÐÐÐT$0@Ru 0@+D$øT$0@3ø3Ð T$tÐ ^3ÐFÐ2ÐU(WVS}EEG@@0u=+t =-uEG3EEEE.}tE0u7EzM }k  9E}kE EkE EEM}M }k ؋-0' 9E}kE EkE E-0EEG@@0R.uEE?u$@]̋uЋ}É]E]9E~ EME]Eteux3E= t=+t =-uEG@@0t=} k -0G@@0uՃ}t)EE}@EEEE,@u(8@C4@  [@r@E}؋@@E<@E|tE ]tkEP}}EuE\$ ]}t EE}U W}tED@uE}ÍEPu u] ؅~8E=L@"E\@sT@L@뫋E=}!L@"l@E t@]r؋ȸEE}^E d@]wϸEEM3r??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF(((<(((((9(&(iyyyyyyyyy(((((((((((!(&(((((((((((((((('!((((((((((A(!#&((((!(((e(( (('!-+ 0x0X--+ --+ --+ : option requires an argument -- : illegal option -- --nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@??GA>@(#)shlibc:spec 1.53.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:gen/i386_data.s 1.1@(#)libc-i386:gen/abs.s 1.13.1bS03.1bS0@(#)libc-i386:gen/strcmp.s 1.13.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:gen/memcpy.s 1.13.1bS03.1bS0@(#)libc-i386:gen/strcpy.s 1.1@(#)libc-i386:gen/strlen.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:gen/isnand.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:sys/signal.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:crt/cerror.s 1.1@(#)libc-i386:sys/close.s 1.1@(#)libc-i386:sys/access.s 1.1@(#)libc-i386:sys/chdir.s 1.1@(#)libc-i386:sys/chmod.s 1.1@(#)libc-i386:sys/creat.s 1.1@(#)libc-i386:sys/fcntl.s 1.1@(#)libc-i386:sys/fstat.s 1.1@(#)libc-i386:sys/getpid.s 1.1@(#)libc-i386:sys/ioctl.s 1.1@(#)libc-i386:sys/kill.s 1.1@(#)libc-i386:sys/lseek.s 1.1@(#)libc-i386:sys/open.s 1.1@(#)libc-i386:sys/read.s 1.1@(#)libc-i386:sys/sbrk.s 1.1@(#)libc-i386:sys/stat.s 1.1@(#)libc-i386:sys/time.s 1.1@(#)libc-i386:sys/unlink.s 1.1@(#)libc-i386:sys/utime.s 1.1@(#)libc-i386:sys/write.s 1.13.1bS03.1bS0/shlib/libc_s6.file gbranchtab.text.data@.bss|@.comment.lib.filegctype_def.c.text.data@.bss|@.comment.file gmall_def.c.text.data@.bss|@.comment.file*greall_def.c.text.data @.bss|@.comment$.file4gfree_def.c.text.data@.bss|@.comment,.file>gallocs_def.c.text.data@.bss|@.comment4.fileHgstdio_def.c.text.data@.bss|@.comment<.fileRggen_def.c.text.data0@ .bss|@.commentD.file\gopt_data.c.text.data<@.bss|@.commentL.filefgi386_data.s.text.dataL@.bss|@.commentT$.filepgabs.s.text .dataP@.bss|@.commentx.file|gold_tolower.c.bt88$t.text.dataP@.bss|@.comment.filegungetc.c.bt90$^.text`.dataP@.bss|@.comment.filegstrcmp.s.textxX.dataP@.bss|@.comment .filegcalloc.c.bt17b1.bt18 .text@.dataP@.bss|@.comment.filegmalloc.c.bt54b.bt35 3.bt67b.text6.dataP@.bss|@.commentallocpP@alloctT@allocxX@allocend\@.filegstrncat.c.bt83bB.textD.data`@.bss|@.comment.filegmemccpy.c.bt55b3.text4.data`@.bss|@.comment.filegmemcpy.s.text$$.data`@.bss|@.comment .filegmemset.c.bt59Hb).textH,.data`@.bss|@.comment.filegstrcat.c.bt78tb0.textt0.data`@.bss|@.comment .filegstrcpy.s.text4.data`@.bss|@.comment .filegstrlen.s.text.data`@.bss|@.comment4 .filegfilbuf.c.bt5$.text.data`@.bss|@.commentT.filegfread.c.bt34 $.text .data`@.bss|@.comment\.file&gfgetc.c.bt28 $".text $.data`@.bss|@.commentd.file2gfgets.c.bt29 b*.text .data`@.bss|@.commentl.file>ggets.c.bt46 b6.text .data`@.bss|@.commentt.fileJggetchar.c.bt42 $*B.text ,.data`@.bss|@.comment|.fileVggetw.c.bt47 $uN.text x.data`@.bss|@.comment.filebgfputs.c.bt334 $TZ.text4 T.data`@.bss|@.comment.filengputw.c.bt65$Mf.textP.data`@.bss|@.comment.filezgfputc.c.bt32$0r.text0.data`@.bss|@.comment.filegputchar.c.bt63$:~.text<.data`@.bss|@.comment.filegold_toupper.c.bt89D$.textD.data`@.bss|@.comment.filegfwrite.c.bt40`$.text` .data`@.bss|@.comment.filegflsbuf.c.bt4 $.bt24($.bt27$`.bt8$8.bt10H$.bt9$.bt6$.bt2V$E.text'.data`@.bss|@.comment.filegfseek.c.bt38$#.text$.data`@.bss|@.comment.filegstrncpy.c.bt85b>.text@.data`@.bss|@.comment.filegisatty.c.bt49$9.text<.data`@.bss|@.comment.filegfopen.c.bt30<h.bt36Uh"_endopenwh:.text<x .data`@.bss|@.comment.filegfindiop.c.bt7h..text0.data`@.bss|@.comment.filegputs.c.bt64$x.textx.data`@.bss|@.comment.filegfprintf.c.bt31\$].text\`.data`@.bss|@.comment.filegprintf.c.bt62$k.textl.data`@.bss|@.comment.file(gsprintf.c.bt76($F .text(H.data`@.bss|@.comment.file4gfrexp.c.bt37p',.textp.data`@0.bss|@.comment .file@gisnand.s.bt50'+Љ8.text,.data@.bss|@.comment .fileLgmemcmp.c.bt57,$<D.text,<.data@.bss|@.comment4.filedgdoprnt.ch$DP_dowrite$kR.bt1$9T.texth.data@Y.bss|@.comment<_blanks@_zeroes@uc_digs@lc_digs@lc_nan@uc_nan@lc_inf@uc_inf@.filepgmktemp.c.bt60P1bh.textP1.data@.bss|@.commentD.file~ggetenv.c.bt431bBtnvmatch62b@v.text1.data@.bss|@.commentL.fileggetopt.c.bt44x2$b.textx2d8.data@D.bss|@.commentTerror1@error2@.filegsetbuf.c.bt694 .text4.data@.bss|@.comment\.filegsignal.s.text5t.data@.bss|@.commentd  6.filegecvt.c.bt236b.bt2666bcvtT6bT.text6 .data@.bss|@.commentbuf@.fileggcvt.c.bt418bf.text8h.data@.bss|@.comment.filegatol.c.bt15:$.text:.data@.bss|@.comment.filegatoi.c.bt14:$.text:.data@.bss|@.comment.filegmemchr.c.bt56;b1.text;4.data@.bss|@.comment.filegstrchr.c.bt79;b+.text;,.data@.bss|@.comment.filegstrncmp.c.bt84;$G.text;H.data@.bss|@.comment.filegstrrchr.c.bt86(<b/.text(<0.data@.bss|@.comment.filegcerror.s.textX< .data@.bss|@.comment .filegclose.s.textd<.data@.bss|@.comment .file&gaccess.s.text|<.data@.bss|@.comment .file0gchdir.s.text<.data@.bss|@.comment$ .file:gchmod.s.text<.data@.bss|@.commentD .fileDgcreat.s.text<.data@.bss|@.commentd .fileNgfcntl.s.text<.data@.bss|@.comment .fileXgfstat.s.text<.data@.bss|@.comment .filebggetpid.s.text=.data@.bss|@.comment .filelgioctl.s.text=.data@.bss|@.comment .filevgkill.s.text$=.data@.bss|@.comment.fileglseek.s.text<=.data@.bss|@.comment  .filegopen.s.textP=.data@.bss|@.comment@.filegread.s.textd=.data@.bss|@.comment\.filegsbrk.s.textx=@.data@.bss|@.commentx.filegstat.s.text=.data@.bss|@.comment.filegtime.s.text=.data@.bss|@.comment.filegunlink.s.text=.data@.bss|@.comment .filegutime.s.text>.data@.bss|@.comment .filegwrite.s.text>.data@.bss|@.comment  .filegatof.c.bt13(>'.text(>.data@h.bss|@.comment,pow1_25@.filegldexp.c.bt52@'.text@ .dataD@8.bss|@.comment4@_doprnt_bufsync_cerror .bt3X<_cleanup_filbuf_findbuf_findiop_flsbuf#_wrtchk(_xflsbuf-abs2.bt11access7.bt12|<atof<atoiAatolFbrkK.bt16=callocPcfreeUchdirZ.bt19<chmod_.bt20<closed.bt21d<creati.bt22<ecvtnfclosesfcntlx.bt25<fcvt}fflushfgetcfgetsfopenfprintffputcfputsfreadfreefreopenfrexpfseekfstat.bt39<fwritegcvtgetchargetenvgetopt.bt150=getsgetwioctl.bt48=isattyisnandkill.bt51$=ldexplseek.bt53<=malloc memccpymemchrmemcmpmemcpy.bt58$memset"mktemp'open,.bt61P=printf1putchar6puts;putw@readE.bt66d=reallocJsbrkO.bt68x=setbufTsigholdY.bt705$^.bt715signalc.bt725sigpauseh.bt735sigrelsem.bt745sigsetr.bt755sprintfwstat|.bt77=strcatstrchrstrcmp.bt80xstrcpy.bt81strlen.bt82strncatstrncmpstrncpystrrchrtime.bt87=.:ungetcunlink.bt91=utime.bt92>write.bt93>getpidF@S@` @n@y@@@ @$@(@,@0@4@8@opterr<@optind@@optoptD@optargH@errnoL@etextAedata|@end|@_lowdigit_sigreturn___Fp_Usedsigignoreold_tolowerold_toupper_libc__ctype_libc_malloc_libc_realloc_libc_free_libc__allocs_libc__sibuf_libc__sobuf_libc__smbuf_libc__iob_libc__lastbuf_libc__bufendtab_libc_end_libc__cleanup_libc_environ$@(@,@0@4@unix100744 0 2 1472310 4273637033 6267 37777777777 L "  .text .data @.bss```P`Xp&pypypypzp zpzpzp'zp`zpzpzpzp{p {p{p{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p{p{p|p|p|p!|p*|p3|p<|pE|pN|pW|p`|pi|pr|p{|p|p|p|p|p|p|p|p|p|p|p|p|p|p|p}p }p}p}p&}p/}p8}pA}pJ}pS}p\}pe}pn}pw}p}p}p}p}p}p}p}p}p}p}p}p}p}p}p}p~p~p~p"~p+~p4~p=~pF~pO~pX~pa~pj~ps~p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p4{p@{pL{pX{pd{pp{p|{p{p{p{p{p{p{p{p{p{pypypypzp zpzp'zp`zpzpzpzpp {p{p{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p{p{p|p|p|p!|p*|p3|p<|pE|pN|pW|p`|pi|pr|p{|p|p|p|p|p|p|p|p|p|p|p|p|p|p|p}p }p}p}p&}p/}p8}pA}pJ}pS}p\}pe}pn}pw}p}p}p}p}p}p}p}p}p}p}p}p}p}p}p}p~p~p~p"~p+~p4~p=~pF~pO~pX~pa~pj~ps~p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p"{p4{p@{pL{pX{pd{pp{p|{p{p{p{p{p{p{p{p{p{p```P  @XehxhϚϒϖdbhbh4chchdhldhdhϒxpxxxpxxxpxxxpxxxpxxxpxxxpxxdbb4ccdlddxzxpxxxxXp$pqppksegkseg - ptmemall failedgetcpages!getcpages - waiting for %d contiguous pagespinsert - pinsert dup  phandPOWER FAILURE DETECTED DURING RESTART - RESTART ABORTED The system must be reset I/O error on restart partition; error: %d POWER FAILURE RESTART SUCCESSFULLY COMPLETED POWER FAILURE CONDITION IGNORED because power returned All processes signalled INITIATING SHUTDOWN PROCEDURES (SHUTKILL) INITIATING SHUTDOWN PROCEDURES (SHUTSAVE) Devices shutdown Devices restarted I/O error on restart partition; error: %d POWER FAILURE SHUTDOWN (SHUTSAVE) COMPLETED SUCCESSFULLY AC back on.... continuing panicrestartCould not open %s partition; error: %d I/O error on %s partition; error: %d panicrestart/dev/hd0.restartCan not open %s partition: %s errno %d /dev/hd0.restartIllegal major/minor for %s partition: %s /dev/hd0.restartI/O error on restart partition while saving memory; error: %d I/O error on restart partition while writing header; error: %d l,U,,-(NULLPTR)0123456789ABCDEF%s on dev %u/%uerror on dev %s (%u/%u), sector=%D cmd=0x%x status=0x%04x NOTICE: WARNING: PANIC: DOUBLE PANIC: NESTED PANIC'S: unknown level in cmn_err (level=%d, msg="%s")assertion failed: %s, file: %s, line: %d!%s - Insufficient memory to %s %d %s page%s - system call failed lock allocate contiguoussDRegion table overflowdupregdupregdupreggrowreggrowregptexpandno swap for u-area ogogogogogoggogogogpppqCst:vw.vcorecore.vpixsig access error %x (%d) not on wait Q! Configured value of NOFILES (%d) is less than min (%d) NOFILES set to %d.Configured value of NOFILES (%d) is greater than max (%d) NOFILES set to %d.Call to internal routine of package that isn't installedSpinwait timed out on address %x (with value %x)DANGER: Out of swap space. Waiting for %d pages. %s - swpuse count overflow. swapdel - too few free pagesNo idler process POWER FAILURE SHUTDOWN (SHUTKILL) COMPLETED.** %s System Shutdown ** ABNORMALNormalReboot failed ׺OOOOlOOOOϻOOP ƴ v Q<jSystemKernel mode trap. Type 0x%xUserUser mode invalid tss faultUser mode segment not present faultUser mode double faultusrxmemflt. impossible condition %xNo register information cr0=%.8x, cr2=%.8x, cr3=%.8x ax=%.8x, bx=%.8x, cx=%.8x, dx=%.8x, si=%.8x di=%.8x, bp=%.8x, sp=%.8x, fl=%.8x, eip=%.4x.%x ds=%.8x, ss=%.8x, es=%.8x, fs=%.8x, gs=%.8x %s mode memory parity error%s mode AXB bus error%s mode AXB bus timeoutpower failure %s mode unknown NMI %x Timeout table overflow Altos System V Release %c %s Version %s %s%sTotal real memory = %d (%dK) Available memory = %d (%dK) Kernel buffers = %d (%dK) main - swapadd failedmain - copyout of icode failedvhandvhandbdflushbdflushphandphandschedschedSlave %d returned from swtchs idleridler@blkdevdevtabinit process exitted with status 0x%x.system process %s exitted with status 0x%x.EEpfault: - pd changed! pfault: - pd changed! vfault - bad dbd_typefinddbd: can't find page table entryFile table overflow newproc - no procsnewproc - fork failed uballoc/etc/emulatorNo floating point emulator found in %s WARNING: Cannot allocate memory for emulator Floating point in kernel mode with no hardwareNo floating point emulatorCoprocessor error with no numeric processorCoprocessor overrun with no numeric processor)##$$*$*$#tune.t_maxsc reduced to %d.tune.t_maxfc reduced to %d.getpages: a DBD_INVAL page is marked validgetpagesgetpages - pbremove!Swap space running out. Needed %d pages. DANGER: Out of swap space. bumprcnt - region count list overflow.iget - inode table overflowNull m_mount in iget mp: %x iget - mounted on inode not in mount table.@x@_@@@textlockdatalockdatalock(stack)OKDLLMsvirtophys - not present.!unknown interrupt 0x%x mfree map overflow %x. Lost %d items at %d qqGsrrt.u_cdir not set in namei for local filenamei: Invalid fs dependent namei returnswapseg - i/o error in swapuseracc - couldn't lock page$mޠDDDDDDUp#tB ܗ] |. &  NF@ȩ@Yn0[  - ԁA0@iPl|*@fҷIqQpŋҋrW\ƴğ ƴ:@F\  *¡Z ğP#1L356"7P7`@P!$@sYȽ ȻѤH - K ɧ 3FѤ"8{P|h|229???? @ @ @ @execeLUb~~OFeR 9    strrheadstrwheadout of streamsfreelink: link not on used list?could not unlink stream module, closing anyway zzzzzzzzz(====zzzz|`{}~ABCDEFGHIJKLMNOPQRSTUVWXYZM,],m,},_LdLiLLL\MrMN({)}!|^~'`\@@d,X` 0 ^bufcall: could not allocate stream event^value configured for v.v_nqueue was not an even number^cannot allocate stream data blocksAllocated only %d of %d streams class %d data blocks. Allocated only %d of %d streams message blocks. ^cannot allocate more stream queuesisr = %x, irr = %x PANIC(asm): process %x switching with %d locks @``9bzero() called with non-word aligned address/size#S+Sj 5/etc/inirc8\n*** Debug Interrupt ***\n000000000Y~ (Y^~ ?Zh=ڢ@(M0Ecs$(M|۾ux4p T+@(ձ+WWWWWWWWWWWWWWWWWWWWWWWWWWWWWQK`IvLbfO8ztRp|<H`rsoqTwDHZEr^}_zM{Mv\WeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWeWex Ub(7$?: $!hyy<2 2(|4$4X(   unix5.3.1b386/1000unix5.3.1b PZ#+ ?(((` ;՞DD/JDDDD՞D/ΦΦSΦWW3SSxSDevice %x not ready Cannot read config info on device %x Invalid config info on device %x Cannot read layout info on device %x scsiscsiscsiio: FORMAT UNIT not supported! Bogus scsi operation %x Couldn't read bad list on device %x Couldn't reassign bad sector on device %x Couldn't clear bad list on device %x  P"EPT P"E ("E(*P ("E(*P޳fd /P3Hc}o ;& FMultidrop %d found system bus or RAM errorMultidrop %d had local RAM error!Multidrop %d got unknown board error interrupt type %dparity errorreceiver overrunframing errorinput char(s) lostcarrier present too longbad receiver packetCRC error receivedreceiver overrunno response from secondarybad secondary packetbad packet length receivedbad packet count receivedpacket from bad addressUnknown multidrop error type %don multidrop board %d, channel %d (%d times)Unable to allocate memory for mdm driverc(%x,%x); src(%x:%x:%x:%x); dst(%x:%x:%x:%x) d2(PCan't allocate message buffer. dfgEsYshmctl,D[ AJLOG@(#)Configured at 08:25:37 on 07/21/88 by tom@(#)Unix Release 5.3b X17 created 3/30/88 13:39:23 X17 3/30/88 13:39:23no file semaphore table overflow d `@,v!Y<!$Small model shared data copy failureSmall model shared data copy failureshared data table overflowS51KBad free countno spacebad blockrdev==NODEV in ialloc s5ialloc: inode was already allocated Out of inodesTried to demand load a page that was past the end of the filepage read errors5readmap: failure in copyout System V inode table overflow Allocated Entry in s5inode free list NULL fs pointer in s5iput s5iupdat - fifo iaddress > 2^24s5iupdat - iaddress > 2^24s5init: s5init not found in fstypsw WMUCUUTgVWCUNULL mp in s5getinode()zzzzz{{N{s5umount dev has Fs2BLK set srmount - cannot mount rootsrmount - not a valid rootInvalid root filesystem typeTfT  |`{}\~ABCDEFGHIJKLMNOPQRSTUVWXYZc|,dc,<`N`4Ι֙k<ldld BBCDR(FO2setrq - proc on q.d  8CLONEa !(    ݂qԂq sdtaYVPffȋ@%QfffFfFffFJPZ^5P^мP ƇƇRPPtbxbbbbXp5PXPf=`ft Ƈىbb5bʉ b P `f `@ ``?`` `bIf (PA`P`XeteeeVeG ee ``P @@@?? P?  C;rĻ ;t00Ӹ »\ »\PfPPP(P0P" "P-PPxfffffм PƀPi+P(P0P" "PxfffffмP-HPf=PufP uPhP3fDPƀe`P-@PSR;~ECutfCfSfCfCfSfCfSCfCCcffCfZ[ÐUWVS}~2-fjWh`i f feu 3]u}+;Б|+;ԑ}AfSWhg f fejjWhe)3둋))jjW -@- %Rjthej& - %׈ PVzUPWVS} ؋- %EVj -@- %RjnxIfSVhf f feEƀ]u}ÐUfUf fUUWVfu_Yf ft -@u}Ã} tjjuhf'3ڡ@9q~uh fjz$ qwfq9E~k=t$f fhSsYf fV!xYptwf9E~ kf fVwYUPE EfjjEPjf fUPWVSE9|p++Ћ8t+G EE t ;wM}t ;r;rV3]u}ËFVPFVPFFtV_YF%FfFF ;sE)+ U0WVS} uuuu =t-t0=u)%t E]ċuȋ}øETCE؋CU؉PE؋SPCCtS{YC%CfCC }tEf@GEԋ+ EЋMԋEЋ% Љ't}EWuEPm EttEcEUPljE@Eԋ+ EЋMԋEЋ% ЉE܁ tEE9E|E]؃E9E3uU WVS} uEp%t%=G%+ЋfCfHfCfuNt %uCCCXCCCX }tEfH}t)t%%=uV7Yu Vu tt %}t`EtSWuEP EtEFfEfF fF9EufNGPjVu .v@tCjG PaEjG PFEPuW% fGf~jVu > E Z`u"E9Fv- HNHN ;uڋMMNMNf=uf fjhh? fG f=t'f fhBYf f9Euf E GO+BHUWVS}u fCf~CPWVL= SK+)PHf=uf fjhh> fC fHfC fupt t\SYf=t'f fhAYf fmf=t'f fhIAYf fC8Et uzIYS/Y+P`¹ EG HOHOE H9E|ܸHOHOD]u}U8WVS}EG=}f=uf fjhh< fG f=t'f fh@Yf fNj]u}Ã(tE}tGW+@&GW+W UW‰E4+E;ԑ}6+8t w8GYjjuhk@z 3_}uVG+;Б}88t w8tGYjjGPhkz 3 G)E)}tGPw8E8w8FYf=uf fjhh: 븋EfH uYf=t'f fh >Yf fE}u Gz 3Eff(tЍR0P(ЍR4P,\u GPUԉB Eԃx H H$3EԋP P$FG ;|׋EfWfPfffWfPfWfPWPfWfP3G(t G(EEԋP(UG,EEԋP,U<G EEԍP UG$EEԍ@$‰Eu j!Ef=uf fjhh8 븋EfH u Yf=t'f fh<Yf fz 3jjQEjuEf=uf fjhh8 븋EfH u'Yf=t'f fh;Yf fz 3EUEU؉EUEUG +‰E9E~ ER tH+EE+EE+EEظ+EE3E܋%=tE EU E܋%=t?E%t3E@%+ЉUEf@E܋M̋%=hkEPRE؋f=uf fjhh6 븋EfH uYf=t'f fh9Yf fz 3E؋M̉CEEEE;]kFG ;EU4WVS}E} u 3]uċ}ËE@E} }EE 79Et7+E ;ԑ}'jju hkz 돸9EtDEfxt:+E ;Б}*jju hkz A9EtE )Efxt E )ZEE PuWhuu utA9EtE Efxt E z 9Eu EfU fPE9Eu3 EE Ex(t P(2P,EP 4P$EE t EEE +‰E9E~E 9E~~ U+Ћ)EE t6 U+ЋE+ U+ЋE)E U+Ѝ U+ЍEE E+E)EMME% ЉEtrVuEP Et[EJEЋUPЋM EЋUPEE̋ȋE% ЉEE9E|EMUCEE  ;$u Wh/ 8EfU fP9Et U PHLEx(t P(2P,EP 4P$E U+ЉU9E~EEE ;~=EE +)EEE +EE +EuuVuQCE ;>轿E Efxt E 褿u uUUWVS}u ]9]&F =ut- E@ =u EPUEQ @HEE V+B;UE V+B U ;F E8E@ =uEQ @+‰E EPUE VJ;UFE VJ U ;P`UE EF =u }~ F@+EFEFEFE}~ EEHEE9uEfP fB EE@ =u}~ E@+E@E@E EPUE U ;tME9Er59Et@9Es9Es6E9Ev}tE9Er E E8TuVC,t]u}3UWVS}GEE E U +‰E } E =uZjw0jw4G4G,G0G(譼ft蟼E G E G$*j6ej3YE W ;rE ft E E  W;}~ME  PqYE} E Puw 6 EGPw yEG YGU  +GU  +E  fG} p9E}Һ-;ԑ-輺jYG0u!蜺蜺]u}jfYG4u,jw0G0XX뺍G0G(G4G,fG3뤋E  E9EQ+EW;Б}*jjGU+Rhk9 tGU+Ћ)GU+Ћ E))蘹uHYE}u=u tGU+ЋGU+Ћ E7 t2E Puw 3 GPw EG G$fEfG}~0G W( G$W, G0G4G(G,(ut_jY;uj6<;ur3j6j3E W ;w-E EftE E lU(WVS}E@;tE@;u3fEf}u!ENjUJс;&f}uuEP8BLYEUU +P u;t =tE@ =u EE +EE}~juu jƍ +EPu |hEUPf}u%YE=E fuEP8BYuY=zu =t]̋uЋ}ËE U +‹znWu +/]EP0Rʸ9EEP0RUEM9EEEEEE E@ E 9E~ U+Ћ3ۋE@ +‰E9E~EEx(tP(EE@ ‰Euu褰EYE@=uE܁ E@E؋ȋE% ЉEECEE;]|F;uEPPEftEf u'Y32UWVS}u _`QC =u,@ S+;v1;sw,3Y]u};sr@ S;rԃ ;u3UWVS}u _` C ;t ;uuHk W`;s Ë]u}3U9E uEfHu5@#ËEf`U WVS}u _`XC =uE@ S+UC@ECEE@ SЉU;ur;us Ë]u}à Eu3U WVS}u E((t-uw(juj*#w(>YG(0G,UIuEW Rjjj"EW RJ>YG U4G$M GU +‰E9E~ E t+E38VW趭E%tEC;]| t E+EEG 9Ef']u}UWVSE%E%EEEEPjE@ Pj:=t E]u}ËEx(t P(:P,2EP E#YWG8PY f=`%?= t +`  +=4t:G=u/fPfufO$ 8@8GHDtW~"YWG8PYz Pqt!W|Yzu 3 UWz4-lofEEfEEPhN=zt3}hWG8PD҃[G=LX\`\@`R;v,`\@R;v \=4t:G=u/fPfufO$ 8@8GHDtW !YjWG8P҃ ffWG8PYf=\tWG8PY=`t2WG8PYh7lLYz W}Yzu [3TU WV5t|u[EF EF 9t'jEPv =uzu}|EtEx>H$fx<*=uG;FuG$t G =t>@uf fhrzojhhhhr  f=huGhf fhrF Fplg$W| Yjhhhhr f=l܃=l} z  hf fhrhh YU$WVS=|u>%?= u xp!tEex%EEp=lH=x$lu f fjh5p 6P9u9=p%?= t|wEE-[|wEEu:5pEr E;vAEf%?= u/uEࡠU4YEp2uEࡠU4YEp%Eu5E@=uTEx8t p8Yu=YS5AEx8t Ep8YuLYCt#EuYhSuY%?= u EpE%E䡄fUDE衄fUD55pWfUML_Ef%?= u/uEܡU4YEp2uEܡU4YEp%Eu5E@=ukEx8t p8Yu肻YS5@uEx8p8YEx8t Ep8YuzYCt#EuYhSuLY55p}t uߺYhSuY)P9u,=p%?= t|sEE-#|wEEu;5@H;@;%;ul@@;u @@%s £flf fhrhhY3]Ћuԋ}E@E<t@;urH@9pt5%?= upP8pP89suzEfPf@ f@"f f@uYflf fhrhhYflH$Pu@ flf fhrhhmYU WVS=fE %?Eo؃=HtSY3]u}G= vG E%EG;EvEG9Eg$EtO$EEffu(u G$jYt}O$}tf Eff Ef@f f9E(u G$Nu5Y=E G4G,>}tf Ef t4 f Ef@f fh Y f Ef@f fO$u$(u G$uxYg$SYEt~ffE G4G,>O$}tf Eff Ef@f f4g$SY35YUPWVS} fG4%?Ef4t&u@,>t9>u>t.G,G4f Ef@SY]u}GPWhLl辪 UWVS}%?EEEE3E]Eff\9~4uRF4F,EF,}uuuF$uF~ EF;EsFEF,؋uf Ef@}tEP,Ef f}t5LYuYE$E쀸Pt;E~ E8E9E|ҋ]܋u}UWV}f=t =u Wj&=t =uf fhW)Yf fG$u"G~85aY#GP;s P8VYu}ÐUWq-@%Ph U JHJHJ H JHJHfPfEfu0PfEffEHffPfdlPȸfhlE 5D5L+ P -@PL 9~9} 9~ 9|~ | 9 ~  9~  9(~ (?9L 9L} L9rh=u =|u |=u  = u   =s 9vu9sh=u =|u |=u = u  = 9ue=u =|u |=u = u  = 9sr=u d=|u |d=u = u  =u d=u d=$u$ PY WYWkY<- ȸPhh ֭WY= HPWHD}UWVS}ȸ؍%u&G hG -@PF% -@Nj]u}UWVS+E jujV讍E P5LH G BG#uH jujVCE P56k  jujV؋ PSE3i֐\`Fk ;5|ߋE]u}UWVS}ȸ؍%u G V-@ʺD% -@ ʺ‹jF% P"3G C|h hL9L}7L55h|lj{5Lhljf B9L~5L55hlj75Lhmj" L`\L@%f|Nj]u}UWVjh5hdb4 @dh@hGNB8P@`XX\`fPPƀPʺP@H@$@hYBX @P\|ЍR%5h(a|HPh(ax +£hHP5h`3jXYu}UUPWVS} -@EE3UR Ё@ڋǹ31} t;} s.  -@PNYt FGrDžuMEs%ǣLE]u}ÃEEUE EH -@hS2@UPW3ff3D=t%=t=u'=}fƇƇG|=(uL=~ Hk (9Lw9(~ (E-@EkEE|E=u7-@9~E%E#EE E+k0 ;r Ek0 EE@%Ef=t uQYEf=t u)BYEE(EE@%EEE@%EPYPY-@Ek$DEE@%Ek  EE@%EiE E@%E89EE@%EkPEE@%E|EE@%EkT4EE@%EkP$EE@%Ekd EE@%E\EE@%EkEE@%EPyYE@%E$4k0EE@%Ep4k EE@%ETfk` EE@%E<kEE@%EPY }UWVEEU3fff 3=t =ui d%R#YEEUi d%E=xlt-;jh@[ iǩEOtE8tE8tB= u f=u3fFEUu}Un/ĢnÐUWVff=,f,f `f fTX tVF܈Y$;5rf=fG&u_fG(ftVG$FtKO&fG(f fuf fGLhqhqWG8P҃ W蟮Yf f fGLP;=sf fuj_Yff,f fTu}UzUUU3UEUzAUh(mjUEPuhamj袜UWVS} =$mt9$mr -$m5$mƐ;r5tF;u5$mƋ]u};5$mu3UE @=u E UP(E @=uE URP E fPfu EfPE@T=tUPTE Ejhj EkEt1kEtVkE P E}}E@U;u}}!kEEEkEU‰EkE) E@t EE EEE9u|ME% ЉE@EċȋE% ЉEUE7G0pEME% ЉE@EċEEEMċE% ЉG7G0EPX EErE̋UPEEȋMȋE% ЉE@EċEEEMċE% ЉEE9E|EE9uUWVS}%k EG%U+B ؋E@ËȈE}u7E@=t(@;Bw5YPTE]u}UWVS}%k G%+F ؋F]u}UWVS}%k G%+F ؋F=ru hmji 3]u}ËFUWVS3k ~u uqmU;ubE 9F uZFtAE9Fu6ffqF V+ЋqNj]u}zCo}zk zjjEPE%kl҃ =ztFfFvfEfE F EFF^p))pS蝞YF~u"ppFFpFpfF5<YPT=u݋U WVSf}u EEE:kE ؃{t%;u 9s uEECuEE9E|}}z]u}Ã}uz kE Cu[o+C;ԑ}"ohmj訔z 듋C S+Ћ)fofKC9C} uYC9CuS YEGUWVEf0xWEpn nE@jjP%kp҃ u}UWVS|=fGtf fGGfN t~VŀYEVfY[3v<@juu-uVY3xhu uhV艆uOfEfH(f fuf膀fN tƀV Y V輂Y豀3ZfN 蜀%?= tA@u;t#%?= ur@ucuuuuEEW$?PS }YfEfH(f fufhS螇3BE@ PEPuuuSthuEP8BDЃufV~Yuwuk%=@tG%?= uEEG,EG,P[YEfG,EVu蔰VEEG$PhS EbUWVS}E@V9~Y}t3unY(~^fE@&tf Ef@LEH&f f@LfGtf fGHfOf fGfGfuW |Y}t.uAY#fG f#W{Y}t uY w|Ë]u}UWVS}u C8EFEjjSŅ EuS{Y3]u}W[YEPV}t uPYhjuuutE{EfH }uu}Y{{[}t Ef EuU WVS} Ep}E3b=uR}t%EP0RUFM9EEvWFPݪ u 3]u}ËF E;X|+EU WE EE(EEPxtVEEЋ@B(,uEP8BY9vz3ffEf=vffEUB (If PE~U@;v z 3~Uff=@EE +EExE E9u.EP0@E 3ҋ1EEE WPz+fEE@Pu ~WPǨ u3E)EG;HE @U‹UM +hU WVS}Ep}EjE  PuF  3]u}ËE0wY3=}t%EP0RUFM9EEFFF fuEP8BY=zu =tE0wY3TF E;XZE0vYEf +EU8WVS}5^=EtEȣP8t$PVNэR(VD~u~(u F$t0j躩Yt$UPVNэR(V^tuj!~Y]u}U%?= t jhp8 UWVS}u ;~rH^ F+NjC;^w&SYtEPSV]u}F U WSEx0uf=t]E;EXEp4uREE}zEUP8H=$nXEPAPAj5ͦqn9nuxl]}ø9nuEnP89ntuho빡Xu_YE}Xu`YE}hXu``YE}H=tzEP85E9P8|R9P8}Hj 5败xu#x(u @$j趦YMXju.Wh#ojo XU WVEEP0U=E5E=====tOKBf=t1EPAPA҉PAfu}ËEPBPBEPAPAEuh?oZjuhojmE+9P<n\E=tr=tB=ZE@@tzhj0t$E@@th =E@@hE@@h=uf\YE}= r= t== Uuj]YEKjuthDoj]l*= juHh`oj1l=t0= E Ep4uME=uu\YE=t~?=tu=tl =tc~=tZu=tQ =tHc=t?Z=t6=t- =t$?=t6=t =t $=uEPEp8p< X UB8EPVNэR(V}t uV>~u~(u F$t0jIYt$PVNэR(VFP8uSPȸu3V#u.9~&Pdl;uFhl;tt+Php8e jvYUTWVS}G@ER9G0u  %ẸtEEfPfU$z=EG,E=&tL=&t9=(t&=&t=( u<8, EE%EE%EfE;z%?= tE=?Ew~}u tzs%=r{zFE=1EU;|v NEU|H=Lt`-wE 3PUE3ʸU#t$fUfP"f@ 5dY9^%?= uNtGD@ GD@E>t3P5tu =uzVY=HtHz?=u~u053Yt ug=zu^zU=zuL=Lt"5X5T5PL zt4 G$ӡEf%=ztWzG,zEff@ff=fP8 G,G$%?= twEFE;nu7@u5 uY  %G, G$ E9E|9Eug,g$G$G =Lti@$u[-wE 3`UE3ʸU#tEfUfP"f@ uПY襱Exux(u @$tjAYtܟPURMIэR(MQEPP8uYPȸu3UR#u19~QPdl;u?E@hl;t-PURMIэR(MQt4EUR;u +EPhp8 tujoY]u}Uz5߯YUWVS}f_ffE pHUYB Et5nYu3]u}átUP9GuGtи9t<tи9tЋEE tU9Gu.Ftи9utU=tЋEE tUtЋEE EEtU9Gt9GgpH谕YB Et5ɭYh9GtU8t  tUUPUUP@tUU t~ PtUUP UUPx PtUUUPxt  PtUUPUUP UU P UUPZE3EEnEU t 9GuFtи9F9Gu:Ftи9Ftи9nt<Ct #EEnEU t @@t.tСMEn Etи9t<t~ hP9GuGtи9Bt<3tи9t~ @uLtMEntСMEn EEnEU t tСMEn QEEnEtU$tMEnfFE;4%H|=w|$o%H|=w |$ntUEfFE;|Utj 5zUUWVS E %tp=BE L蓯-@U‹؋C% -@U ‹Vu(%?= tGPYEE9Ev'E9EsjE+EPcu5E}uJ%?= u9j謏YEE9EwYuaYtLu5趂E}t2uu+u_Yu hoj8[ Nj]u}UWVS}-ظ9G0f=t:GA% GA%GAG4f]u}G<t3G4G<ts躭-@‹%tPF% -@ ‹%tO4%t %t ZGA%GA% GAfo3,UW}uhoSY}fPfGPfGPfGHPfG Pw8fG<Pw@G<%=uGDGPwwww$w(w w,蒬P般P~PhoTSPuUPfEfeE=t4=tA=tN=tG=tT=uThpjYuhpjX uhpjX uhpjX Kju EPuhpjXUPWV0f;r u}UWā fNj}ÐUWVS]蒫Ef-tef fpq-9}hpjWqu UYuīY3]u}Ë+؃ t9~)~ uFNHNHN H ;sE G@Eu@EEGEG f fpu&YE\UPWVS}lEf[9~uSF؋ƋӋ JHJHJ H ~ uf fpu豪Y]u}Ã~ uUWVS=t= k]u}ËMOMOMO MONONO N ƃx uf fpuUYf t?~UP}~?MEu@Phz tj@Pj{ u趩YUPWVSEfKE 9Gu@E9G u8EGNj֋ JHJHJ H  u  uf fpS)YE]u}U WVSPȸPί=PtЃ?uCfPj襷YqЃ?u=u=t/=u!fffqh su =s1hGqhFqhh PhqjSL PL PhHqjS P PhgqjS P5hqjfS=t/55P thqj)ShlPjx/3 jj3YhjjhSY]fK B EjuV:i SVYjjXhj5hS]fK jjVh -SVYe JH@e JH@Ef@E@@fP P@PP@EU JHE@f 5Bjh ͧ thqjQ9P~  hl3]u}hlPj-tJ3 jhhq艦 jhlhqu ehlPjQ-tM3 jhhq) jhlhq =2hlPj,tM3 jhhqƥ jhlhq貥 3?Pt5θPj|,t`@)PF|jhhrL jhlh r8 WKUW~P蚲PPhrjO }UjXޢYjhh.rǤ jhlh4r賤 P@0!qP<@X@$@@芣P觾Pq=t$Pdl;thY8={Pdl;udUW3!$uhl$G;=|3k|ukhl|G;=h|ۋ}ÐUWV5tf=;'f fu1=5Y5^Yk=t zYjhx螐tDG=t z hWG8PD҃=zt Wl^Y =W轤Yf f fG,<x G>G ,D'w@t'f fG2W蔔Y f fG2,@t?%,f f^h,TYS4YqG<]u}f f^U WVSf}u ]E#4k E fhPrYf fLrE*E9pu@ ;uEu EEPUE9EuhPr趡YE]u}UPWVSf}u %;h|hXrj D#4k Ѕ҉Uuh_rjCE Df f^ @hPrYfjSC2Py f CS P C SP  Df f^f fC21hPr谠YG[;]u3hTr耠YhPr荠Y9Tr~LhTruYv9suC f;utmff>f=Pru9Tru,=4tCf3۸9tj腥Ytff ff,98u; ,@hTr蝟Yf fLrjh,h^ }8fCS P C SP  Df f^tl f fC2hTrYf fLrwSYkfhPr˞Yf fLrEX CSPCSPf fC2EPSCZXf{ sEChTryYf fLrڔË]u}UWVf fG2f fLr蛔WY`GWPGWPf fG2FGwx~fG Gf fLr<Nju}þ,f=Pru輓=4tCf39tjYtff fLf,98tL=8fGW P G WP Df f^ ,@f fLrjh,h^: UW}fʒjWG2P ftf fG2f tG#zuz}UW}ftsf fG2fu `=`u0=dt'df fDrh`豍Yf fDrWk'f fG2W}Y}UEpp4:E@&UWVf}MFV P F VP Df f^f fF2讑V.YFf58@t5=t V ;u fof fF2v ,uf f^6u}UWVfGW P G WP Df f^f fG2אWWY; ,uWhf f^褐jh=j菈 kH2)fh=8tq+G8;0Hr9nUӏdjh`hDr f=`uf fDrUWVSf}fhPr;Yf fLrESkE Ћ^9C ;u+1Ef f fC2u觏Y[;uE09E|hPrҘY]u}UW؎fEf f@2WNY}U WVS,ƉFF FFEEE%EEHfG EG4ukYGwFGx~GWYE@E9Er=x8E3G@G iE`PBkYGiE`G4@E8H;riE`PkYGiE`G4G E(kE EkU MLkU LE09ErTr3PrÉC,CCC CC,0]u}ÐUW=t%PY}UWVS5f$FDF=u 9Etuhlrj9 1F$t(FPR;}uhhrj83 |G|3%`E}t`uYG;=L|蜛3 |G|FFV;u@= t7 V;u'jFPnPY fR5(pY5(HIY=,t5,OY5,'IY3;4u G|VӚYJ,tFuYF`E/E@8Et uYu;Yhu+DEEufEfFFL FPEfF<fCC8=u E%=uC$tC =uS~Y{@uPS@V<F<}tjPlFV;u7 [@VFS;ufCÐ; rfFFF(jv8l~pt vppYf fhr΂]u}UWj5hhr؁ fx<=tZ=usG$%=udG =uYO$G G f fhr}Ã\ujWHf fhr؋@nx<6f fhrz UPWVS}} t7@W‹؃P~PӈPG GGLGP G(GG$G4GpfG fG"w89~Hi;u&f f`suz 5GffGfFfGf f`sPufF fG LJPqtfG fF fG fFfGfFfGFGF|G|F(G(FGFxGxGDF$%  G$EtO$-ffGGGF@(GFtGtE GfGfFt=dt=eu0E9ErE@0 @4ߺfsf3UPU9u4st h@eY{PstuYE@PdYEƀ{Ust h@dYP{UPjEd%?= uhrh2dYujYU WVSEszE4jhNfYuuhsj% 3]ԋu؋}F=u~u V2'Y3ًF EjjhuE}uhsY3랋E))h-@U‰EE`EfUfPUPUP]FHE9EsCE$$m CE$ EME$ ЈfEfCEE%EME$ ЈE@E$ EME$ ЈE@EFfVF8PY=zt-juu> V%YE3/V}%YE@PffGfG+GUWV@(hh h@WoEGE$ EME$ Ј%?= u@ ONFE$ EME$ Ј%?= ufFru}fF2U$W} tEPFY+ljEEPGYE9EvEf%?= u uEPWuEPE Pwh E9EuE EEP59EuE Ze-@UD% -@U ‰EPudEE܋@%+ЉUE=tEEE%=t(=t=u'E6E!EE1E&EEEU% UM E@PEPEPf >Et uYE%=u uxYEE܁@uZYNj}U f%?= uj EPpD#j EP@HRD Pkf =u áUP8UPY f fCLEUW}fG(=fg$G= uG4=4t"fG*fG(=u8@8GHWG8PYG(=2'tLf fuWG8PPYfG(=~ fO(f fuWEY}GtGWPljGfGfO(xGG =f fufG=PuG,=u 4tWYG=PuG,=u 4tW^Yg&G&tg&f fGLWs5jEppuEP8B`ЃzE@;u%EPEppuG CuX;YEpPEPuuuv;YU\WVS}EԉEt3EEEEEEE1EEEEEEEf}juЋE p9 =EЋ@EE;EtE;EtE;EE@t =t$=EЋWPUEЋPU EЋUPU}QE@}tEEE}E@E U9Pt9Ptf}tE;Eu3E%=vr}tDEua%?= uu z]u}ËE U9Ptf}t E;Et EtE U9Pt9Pt 9Pu3Ef}ufE PUEEE@}~ EEE?}}9%=v(EE} zIEE؉EEEEfPfUfPfUE U9Pt9Pt 9PuE;EufG<E 9PEPuuuWju EfUf0E@=u EЋU)PE@=u EЋW)PjE pu6 =]zQE 9PuEPjuuWj'EPjuuWE EPEfG} tf fu}UW}Gt fgW%Y}UWV}fEPYf fu u}Ë7fPfV fPfV } t3fFEFEF3UW}G9E E9G9G }øE 9GG9E 9Eظ3͐UW}=q}UvUWVS3E`E@@E@%tu u7]u}á%?= t uYP9u "={tE xD9PHt f@HfE+E;5wVYl={t+- h Sh@* ?{ujLE@P5) =u E@ P,=u E@Pn,=fPfft`f3PE@P?,=SE@\P$,=5u,=sUP8UPD}u +9PGW Y+EEHHЋ HE8uUWVSE@E`EU 9rRxNjU#‹+Nj؋EU 9r2tG+E +ÉEE}ta@E Puu HEE8u3]u}ËEU P+U ҉uEEHH҉PuEU8WVS} 3DžDžfDžfDžXE ]hS54U E=t==tHuPfPfuU%=jw1zzfPft/9E~EأEufPfãE=@u}E=/uM,Et6E@E9EtM9Eu EP5,VuU5J(EtsE@E9Eu u}9EuAEP5(/=Qt=BuuE6uhwj軺VYffF(f fut=u Dž3F=@u fF*fuVYzj VF8PD҃t VqYE܊uE܉EVE=.E@=.utEPuj;5,uFEZEtQF$tFX 9Et}UW=tGGGt}UWVS3}atBtEjhx:t%fG,fEG=`t G= u ]؋u܋}3EEfX Dffu}u3]f)}t#ES;uf fw3$;rEuf fwfEfCC f fwEP4WYjhx?u WWY;u-ffN(f fu}tzWWYF=@uE@t@ Z fEf~E;|f fuzF(=u F$t6EZ ;uG=`tzf fuf fuE@t@3EE@t@3EPuEpSWEȈ҃=zuJfCsfN$^4;tWۖYV4Yff#f f fw;tW裖YtV蘖Ytfzjz^UPWVSE^t9jhxGt$G=@t Ef_,fX <]u}t$}t V;t;~u WV0ǃ$;5rf fwzWĕYUWV}f'ff fw} t u 葕YWG̈Y=zu%wGVYff$F4VRY=zt)ff'ff fwu}fUuYUUWtE0[YEE0[YEtEu z }ËExG=u Ex} z؋E 9P| zWYG$ t"W YG$ tWYz늋EW9P}?<t%jh@pWjاt WzYTEpWG8P҃?EPWfO$BEPBtEEPWG8P\҃WYUq UW=t[tqXS}UWV5t>`rzu}f=t";t @ ;u f(F[tffP fP f=zuU UWV5t>`rzu}f=t";t @;u f$ZtffPf=zu'U U졤@ @UWV=5t>t(GW;t $fGfGG u}U>UWVS5t>W@PRBtPS2@- ]u}UfEEPhx9Uh(YUGYt h,YU WVS}jhxtF=@tz]u}j VF8PD҃u~,uF#t]EPVF8P\҃?t=t7CY=zu#VY?t7oY7KY7eV=YYUWV5tjhxt'fEFEEPWG8PX҃uWYu}fO$@WُYUWV5tjhxt1fEfFfEfFfEEPWG8PX҃uW胏Yu}fO$@WnYU WVtE%>5 ,GȸEE%=tV====U!Px j'hjh %?= uP$U Px u}áU!Px ߍG|zfU!P(U!Pxf f@ XExt9Pt9Pt U P|@x#Et  G| E9PuU PxNGUJ |U!Px,%?= u(u uP$ XU!P|%?= uG| ~E@fE;E~;s(f}Ef@f=tEf@fGf| G|GUJ |fU!P(f f@lfp<z=tv@uf fWYoj5аZUWVStEx| E9P|z]u}EE~   5u fFf)f~ G;uGV;}G;fft<W ;t-W ;tW ;tW ;u;u2E 9Pu%~=zf f`sEExt pW`ǐ;= f f`s}zUW=tj7h tzq }UW=tGG %%?= uG wNY}UWVSt=wDGD5 ]u}Uj'hj UWV=t%fPY5 u}UWV=ttEfPftjEPw /jEPwW tzu}áqEEjhx蒺tV ;t%ft t zhVF8PD҃zuVF0u&fPft!kDt zfN$FEPEPVF8P҃ VY9U WVS=t=tc=tA=ta==@%?= u|G ]u}á9G~ OtG j5u wp`EvL  ufG oG%fE~%fE%fEz/E@E Euȑ+E EEp`C9Fv}t E@9Fsu >u܋@ SЋE }taEp5  E t9EP U Q+ P5  jΨY) 9 v  %?=   +ЉU 9EE EU;ufG UD%=uEP脧Y@ fEEU;r}UW=tGt=u7}zUWVf=`u Luu}`f fd=tH|p=wi|e$}^X V$YGEGEE EfE EfEUJ fjY#zf`f fd6UHW=tt.j-7h =uz  }á%?= j EPh j EPh j EPh j EPh j EPh n ffEffEEj67EP =6*%?= %=j EPh j EPh j EPh j EPh j EPh  ffEffEEjD7EP7 =qe%=j EPhE j EPh2 j EPh j EPh j EPh  ffEffEEjD7EP =zj EPh j EPh j EPh} j EPhj ffEffEEj,7EP =2&UWVS=t5tG^ ]u}U@WVS5t9~}f3k$X C;Ff fwCpS>{E}uz]u}jEPuC҃ =ztz6EPjEԉEfEfEjEPEP jEPEP %?= uuj6EP tzuYGG;=f fwzUWV}EfGfE3 EW 2 0F|3 EW 2 0F|ju EP }zu}ÐUWVStE%?= ug@0@؋ KNFFE$ EME$ Ј 7]܋u}ËEf@fEEffEEE;rE;w Ct z똋EЋB=@#ЋFt ;=r;=;vf KNFFE$$EME$ ЈuE9Es E@E$$"z m E@E$ EME$ ЈEfUf@EE%EME$ ЈE =:UPWVS=t%?= tvffEfGfEE;rE;w Fuz]u}E;uf-@0ffCCCC$C$CC묐U$E ;jEP=E}uËEUR PUU D%=u(E ;u  E P蠝YEZP"YU  +‰EEHEhuuE R?E P˝YEE܃}uU DE@ EE@EEE+EEME ;t }}tEE U ;ts}~E썀 E}}E؍ @E}tEЋ@$BEEЋ@(B9EsEЋ@(BEE9EvEUjSXu SĩYhEPE%PhW\VfO uWXYVVE@(%Et;E9EwC0@EE+E3ҋM1U.C0@EE3ҋM1UC0@EE3ҋM1UEE%?= ucE+EE8u#hhu졄@P諂4hE0u졄@P舂E@0=u E@E u;t2uVS ffffE@(EEHfEE䍀+‰EhhuRfffft,hhE썀P@HPyE ;}EEtRE@(%Et9E9Ew1C0@E܋E+E3ҋM1EC0@E܋E3ҋM1)EEuuuSEEPV7suBEEEE UUU +…Et%juVe }hV[W;SYtFE썀P5vmWRYWE썀PE@0=t"=t= iY%?= u@EjY!~EEܸ9EsE@E؊$$m E@E؊$ EԋM؊EԊ$ ЈEfUf@E؋E%EԋM؊EԊ$ ЈE@0=uw~P苁YUB$EP5ttWQYWu謃6zS̤YzuzSqYSN^YkE =@$uYhSC8PD҃u fC fhSC8PD҃u fC"fffP ffP@$tH$@$tj5誂S]Y3ULEUEEEPUEE EPP uEP8BY=tu+]YËEfH$ urYE+E EU 9E U9P9 PE 4E E jhN蒎Et$EPuu t.z= u zSsz= tezT\E@0=#tzTu2\YE fxufSfPCGfCG(CU R;vE fSfP CGCG(E `u7G9C s/E %?=tE @S;uC GC+C G E ;p$%?= uhGEuEP8BY=t 3]u}E=~u 9Gu E E G0=u GGG$UW}E @GGG E@GE@GE@G GGG  dE f@?йGfJfHE@ ?G,GG$G(E=uGGfG00GGGfG0 E= u E  E }UWV} tYj5jt0>t+@8Et u;Y6FYhVOEP XfGf~E@$ffEЋ MJMEUR豙YWju* u u}E;tnЋM MJE;v;E+PE@Rז@$ukhuEP8BDuEfP fhuEP8BDЃuEfP"fffP ffP@$tH$@$tj5\wuDRY3UWjttYPjktYP軕 ttxtzp jhx΃Et؍xPEPu uE=#tzTuQY롸9EvEEfH$ u֗YDžDžDž}3})EأEfuEP8BY=tz>zU2Eع39DžB=t!=u2R R t4;w9f9t zU^P`#E9B8u  8uufؑ98|zVuЕYuOYxPtPjjEPo=uuY{8u~YuYOYj tpP4 t'uuKY 8zE  Ut0Yt 8zUPWVEx` E9GuG =u P8U ?uۃ}u?3u}ËE9F8t (u藔YVHAYF)dhWIuøUWVSEx(E@+j Pu bS  3]u}ËE X0AY3=GE9E} 9G~z E 0j@Y3딃uG}t9GHfhhSERmE$hwSERimGG GG fuEP8BY=zu =tE 0?Y3 E;p$E 0x?YUWG;|}UUz3Uz3Uz3UWVS=t=t*=tk=!H ]u}Ë5tjEPv衔 ==tE3z뭋5tFE}9EEExtE@~؉]C8u+EPvu< <z0Ext!EPEpΕu  EC9ErzUWVSfPftz ]u}ËEx4ulf5Ef~t;FE@%= u%E@,UR,;uE9Et UJ4H4 ;5rf f@sE@4t\G t hWj̄ tzKGt z6O = uOB'}u z?C$PmYu?8h^jp83fC>fCC <z?,049,~,44fGEGGGfGfGGG G$G(G,G0h~h~S0 ljC8CO E@,% W Ex4= uOu E@,PSw *EgW莆Y}uUOWoY3fC>fCC < <E@4=zqze= tGt ffWG$g3Cu[{ t3P{ t3E PE@,P-$PC܋P҃=u=zuz C u= t&Gt=zu ffWG$g_W^YUPW蓉E= ujj4 u Yt E,Nj}UW} , = }U WVSEp4@4jV:.E udNhVh8 : EhSj) uFt C fxuu0YfW?Yu jC -$P( { sjSLm$iCEC3CfC~tvOfYFVY3fC>fCC <W谈Y3EUPB = uEP 2 YueYEE}uNj]u}UWVS蹇EEP4U3fEx$+9u_t^EX$W}Yu3Ex(+9u_t^EX(W}Yuf fu辇Y]u}U WVSEp4F@t$F@tFz]u}Eˆ/}u FuPjV>0 t W=Y빋-$PiYtW Y=ty{C@ t2=t= t=uSzMS-$PLmSC+C u(}tS-$P(m/SdY#EpSdY C+C P5!Etjus C0 =zt ScYEC ][ubYtC9C st =ut/FtSzcYfS-$Pclnfe-$PhhY؋C =uF,t*jv$_f~tC PFPFgSbY=ty@tC@ = t=FUWVS}u _F@ == \= $=  =~= sm= b=t-H=;F@ VWAv]u}ËF EtDE@t =t"=u+C% CcC% CEt EfPfSEt EfPfWEt EfPfWEt EfP fW E t EfP fW"VaYGW";GfgWtYtxtWOuY=F EC{E@9CsS9~Y=='=F@ =u@CpKC,t js$bC0t=jS0u*C,t js$0C0t jSCtjEPW_ =zt1u$Yh~h~u\ E܋ЋMJ8HEH@Ef@ufsYE܍@$PYsYuPsYE+ G9EujWkE ЉU9E 9E Ex PR4҉U E@@ u07:YP E juuW0G EMs Et'=t,=Z G% GgG% GGtGt3EjuEPx XzLEuEfG$EuEfG$EjEPux @EtEt EPB u EPB = u zMEPB =u EEEԣẸfGPj$EPuJw _}E3uIYEEċPR4҉UE@Pt@@y@{EB E Gt z7,G@.Yt2GtVtYz{ujW Y-$PHWYtC@ = t$S-$P[VtYzMVytYC EjYE}S-$PZEU `EUjuu,v t:zEU `S-$PnZE`SNQY rG@tGzTE܋P U܃}tEE܋9Buۃ}t3 hWj#k t zGPwG uʁO = uOjE@,P-$PEu=zu2z)= tGt ffWE$G @t9@ -$Pu dYE؃}t E؋zt}t uhdYg_WmY EH 9Ju.j uEP?t zE衔9E|Ajjj uhp rZ tр=w:fmEEPU}t E9u}E-}u]f fjfYEuujqYz f}t EUPEG$EEUPE G,}}tEUJH EPW$ufYG,G$EE@ G,EPU}udE9uAf fupYjuE@Pr %zEPU}uzf fuKpYEЋ@+B P5pEtjuċEp  =zEPU}t EPB uEȋEEأfJEЋ@+B P5OpEtjuċEp n =z$EPU}t =uE+EȉEЋE+EjuEPLq t z EP UEx um$E@9E0E#P fBfEP fBfEf=ufl5lEP^ofE]؅}3E;|E; p9E~ z"'mujWg t VfnYEup ]SYtVBnYuGPEPEPEEP EM up P ҃=Qbv ~ u~9t zfuYERFujjHEu z )C ECC@ EUffPffPEf@SVUWVE x| l9P~!zu}jjj ujjDt܋GEU JH E ffPffP@@G@ GEx tuE p W ukEHhuh[  EEf@h@Pjd u E@uUEfH@t >zEfxu`VkYuYWQIYEfH@Pt@@u@믋E@RuYEfxu`ExtpHYE@EHEU hA hJHVQkYWEr B Ѓ=t_jE x|'xt@k2Puh 貾 EEH E@@t(@@tE@zE`bhuj^b u E@ ukE@ t>zE`xtpGYE@E x| u#YV9jYE@PEeYEx2x@`E x| uھYViYE@PdYG EG@ =t=uYExtF@FExt@8EP x tE p WX tE UJ H zWFYAU0WVS}u ]EEEEG4E@@t,E@@tE@z3]ċuȋ}jEPuj t z3Et z3hE]E@t8C3FjuEPj tzuhY3sPjuY uEt E@tE-$PJYEru%hYEPB = u$uE-$PpNzM3=tI\E@tM>|#}tEPB tEԋFEeF}tEEPB t8MEE EEPU}t EPB uE@;|}tEԋCEC}tM}t EUPEE}tuE-$PeM E`juEPh zwE-$PDIYEP =uE@,t3jp$7$EfxtEP PE@PHuCY=tZER҉UtEPB = eEztA@u8Et/@,t jp$E@0t juEEЋ@+B PubfEt>uuЋEp g t&zE`EuBY,EEЋEUP ЋR9P rEPUuAYE+E؅E~}tEPB t }O+EԉFxEЋ@+B PueEt>uuЋEp f t&zE`Eu-BYnEEЋEUP ЋR9P rEPUu8AYE+E؅E~}t }\+EԉC4UWVS}u ]G4E@Pt*E@@tE@z]u}EuEt~} zԋEB fPfUEB fPfUfufl5lEP]dfECE}} EfEE9E|E9E p9F~ z"NbE'PjuL tuIcYEuEr =HYtu cYuE@PSVuEuEr B Ѓ=>WU WVS}3G@t ]u}bGtSbYGtEP Uz t EztE tE@uGuE tGuxtE tGtu\}uVjWYEt\EU PfW(PG(f fE G0SaY3SaYWKtYSaYW6tYz 3UWVS}u Qu 3]u}E`Es F0C0~0t%@tF0@$F0-$X EC$F0w7S fKfK>uuEPSP҃=ujjS& u`Y3Xu`YEUPWVS}E} tN=tT_ t3EPWP ҃GW> ©_0t WQYW P  tG$PnQYW0P 3fG>fGG= <V_Y]u};tG$;u)}t ESPC;uE][ujWCjG$PCKUE@t0uZYE`UE@t@PPZYE`UE@ tu,ZYE`UPWVS}G X Sh_Eju6uz 3]u}ËE=t=u:uvu _ 2uvu %` tV!;Yz3V;Y3럋EE F@ EF+؋ƉGNqUWVS}G p CG+G PV^Su w ` tz3]u}Ë+E tuUPW=$ujj%u3}]EG $(G =(u]YEE GEGUPWV}\E;=(t5(/G ($G =$u,]Yu}9~ t v ~ u~ uu]YhmjʋG F UWVS}u (,93u%9{tsWt]u}Ë[ u3UWVS}u (4;t,t;;u$t;su}tC9Eu Ë]u}Ë[ u3UW}  uNj}UE SEEEEjEPu =zt&}tyhjzE`E PB4E`E-$Eh~h~u EЋMJ8Hu%Yu Y3øU E0YE-Ek@ ЉUu uuu=tjju EuUWE@$EU JfQ fP U JfQfP"U JfQfPU JfQ fPEPfB fG EPfBfG"EPfBfGEPfB fG}U WVS}u 3EEt EEEt EEGEGE!juu) t 3]ԋu؋}uu1EtʋEPEB uEpu[ tzut6Y3먋EUP]~FEFE}t3EUЉUA9E} uu&1Eju3YE= uEEEEuEEP0EujuEHEEP0EuHuEHEEP0Eu&juu 4S+6Y3}t$EEuEPR+P9U} UP PEPR+PRuYEt6uEpuY tzu4YS5Y3EUPEE)Eu] uS#7}aU@$Phzu u2uh9E~PuQ2YEE3@$Phzu EHEEEPC2uEE9E|z?h@$PjO t*@$Phzu u3z븡@$Phzu u23UW}Et=E u*z !E!GuQYE uz}E t!E-$EEE@EEEEPE GuujN sG#Et#G@tGzn3gUWVS}u t#=t?}uVW5W]u}V5WW ؅t1zփ}uVW5V V5WV )UW}W5Y}z} =u3UW=u }5XY}z UWVS}u 3C} GF҈u]u}ÐUWV}Htr9GHthE = ttQ6=TtH=Tt? =Tt6A=Tt-8=tt$/=tt&=tt = tt =tu SEE =t 5=a)=T=Tb=Tz@=TfG8fEfG:fEfGfEGXEjEPGbPT juEPU TfE=C;$܀jWG4ЃjWG4ЃjWG4ЃjWG4Ѓ{tuW^uW#MjE PuT E ?E %Wl ˆGlu}=TWYT9E u jW=zjEPuS (GXU;t8EE;ujhDWGX҃G>fEfG8fEfG:fEfGjGbPEP"S G>t GfGjGgGkGXU;t3EGXujhDWGX҃2uW $G>;tuVhDWGX҃=TqWGY=zfEfjWG4Ѓt=DTtF_=T,fEt=t =fE@%PWH'juWR =aGl%%E juE PR G=mt#= d%=dquGDPz=fQG@v u*G>u?G>QGYF 7=tt9=tGXE juE PQ =ojE Pu)Q =S9E | zGX;E ujhDWGX҃ujhDWE GX҃t=t5GlWfO<L=ttv3=tt^= tt0= tWYjW$=zuW fg>u zfEufgO=tt(=tjWL+=tuu W" =xtL=ttKw=tjE PuO uNgmE %GmG<%W YGm%E juE P8O z=tuDGl% e=xt =xu!u W G=u  T4E %=Duuuu WGX҃z3jGHPjHD Huu}LY@UPWV}GXfG8&fG:fG<Gl%E=ufO<E=ufO<fO< fG>;3 GbP0F ru}UPW}KKELfO@ hG:PjC t/=zuzfg@uKYjWG4Ѓ}ÃuG@!uUWVS}E tZV YGP!YujWG4ЃG@@tfg@GPRFYG@ tfg@ߍG:P7FYE tdVw YG P YuTJVW YW YuGYSJYjWG4ЃG@t fg@WEY]u}U WVS}IE?uwGYqG@ttueJY]u}G>u&GfuGgt2fg@G@uWYfO@jWjA GYtG>t)uIYEG PuWYEuGYuIYV}uB\Gd;uNGe;u Gf;u^EGd;tGe;tGf;uN7G>t$}\t N\\u /\uEFӈ t,Gg;t$Gh;urNWY'OY-xG PFPSKuGUW}jWG4Ѓ}Ut9E uVjEPuJ =uzEUPbUPcUPjUPk@>tEUPfUPgËEPbUPcUPjUPkUEEjuEPJ =uzUWV}jEPu oI =uzu}fG8fG:fg>0fg<@ E% f G<E%=ufO<@EGdEGeE tfO: ttfO:fO:tfO8fO:fO>tfO>t*fO8fO:tfO: t*fO:"fO: tfO:tfO: utOG>t GfGjGgGkGgGf tfg8fO<0>fO8& fO:fO< fO>$GjGfGkGgfO8& fO:fO< fO>fO8@t"ƀtfg8fg0fg<@ E% f G<E%=ufO<@EGdEGeutfO<tfO:tfO:tfO8fO:fO>tfO>ufO> t*fO8fO:tfO: t*fO:"fO: tfO:tfO: utOG>t GfGjGgGkGgGf tfg8fO<0BfO8& fO:fO< fO>(GjGfGkGgGhfO8& fO:fO< fO>fO8@t"ƀtfg8fguG:u G>tG>tG<t@G8t΀G:t*G:tG:t* "G:tG:tG:%=u $G:tG:tG:t@G: tfEju EPtD =uzu}UWV}G<%EEGdEGeE3G>uG:u G<tG>tG>tG> uG<t@G8t΀G:t*G:tG:t* "G:tG:tG:%=uG:tG:t@G: tuju EPB tzu}UW}Ht9GHtz}ÃLu z@EGHfGBfGPfPfWBG@GTfg@WlYfG:fEfGRfG:fEfGRfG\fEGUG\EGUu/@YwUW}Lu z}t?EfG:fEfGRfG:fEfGRfG\fEGUG\EGUfGPfGBx9E ujGBPg!jW%GT%f G@GHGHP:Yu?YmUx9E fEfE%;E%U;հ~E%<ŬthE%UkpŬU‹UPLEUP@EfJ:fHR@UËE@@EEU9PLt z3׋E =t`=TtN=Tt =Ttj=Tu{juhTuExHu fJ:fHRp=tt%@= tt = tu0juh t=tujuu uG'3 UPWEx@9GHuGG:EfGRfG:fEfGRfGPfGBGT%f G@GHGHP8YE@@}ÐUWV}5FV;u"= ufGBfuGB fFfGB= uGB fGDfjjhDWfO@u}UW}G@tdfg@jjhDWT@R;u#GB9 uGBR;ufGBGHGDPDhY}UWVS};jGHPj04 Ht 9GHuG >u.tGYuS><Y]u}WYS%<Yz9rxVYEE@UR+P5<EP5E@URP= tzuYE)6VYE|>uP?tz =t z/G@9jWG4ЃUWVS}G@t r:]u}jGHPj2 Ht 9GHuS:YG<%9G~F:jWG4ЃfO@@jGPjI2 G<%9GVq:Y=9r~EE@P5:EPE@P5; tzu|YnE)EUPuuW 8Pl=YE}} z! juW =8jWG4ЃV9YUWVS}Gm% E}tG@t3EG8ظ9E u8G>t-jGBPÀu jW]u}G2W0+fEfG2fG0fEftt }u3EG@tfEfEG,E}tG@t3EEtE;XLWE+RDi @G,=u G,ffG0fG29~jW~G>tG<%UE}tG@t3EwaEEu }GGb;u7}t}u+jGBPÀ jWGc;u7}t}u+jGBPÀjWGi;u/}t}u#Àu jW\j WG4Ѓ}ttu3E u@tGYGg;tGh;tG@\t}ttu EfO@Gd;u:t2t jjW  jj W  Ge;u) t!t jVW  bGf;uZGYO\t}ttut,Efg@ }ttuEfO@tE9G}jVWT jWG4ЃfEfMfu,fg@Gf9rGYgtG@uWYYtG@t fg@W0Y9G8uGmG@Yu jWG4ЃEu}u] u@t Eֈ! uÀu5t Eֈt ArZw WVEfEfMfuG,EUWVS}G@tG>t 3G:؃}uCEE Eu&|EGPV=]u}EuE|GPu j NjE @U R‰EE EQE tE8 t E|GPj |U+‹E%E}u3&9Eu3 9Eu 9E|GPj NuT@tE t E%E9Eu E8t8j@P2 9Eu9Eu E T=w |$|GPu to }E@t=Àt EEGPu~6GPu%GPhGP PEMu}EuIY7EE|9G@u.uGPh=|GPV*G>tPE %EE;ujj\W[ E@ EE8uЃA|Z jj\W. t a|zuEG\E3E%?fUWVS}G@ tufg@ߍG:P*YG$?t_>t(+RYfO@G?%@PWh6- G?3]u}EG@u G:ul>t"+RYGPY@R+fFfF@R‰E>u@=uvfFEQu(GPY|I~ÈG?}u6EEEӈfFF;sGPWY}fFfFG@@t%G<%9Gfg@GP0)YEUW}fg@G>uGgu}Ã?ufuG@tGYG@tfg@W(YfO@GgkPWhQS UPWV}E =D=D=DuqG>3EfEt\, tC?tG GWGGG HOHOG  JHJHGYV,Yu}Ã,uD,jWG4ЃV,YWYG@ujW/$t*G$+RYG$,tG,+RYG,RG,jhj# S@G,=tffG0fG2j WG4ЃUPWVS}M+E?~ewFVF%FV;uBGuG5=th&Yuu+YË]u}UPWVS} *EGt F;uIޡuu++Y]u}Ë3FFuw3wFVFҊM u*Y3UWV**tGGV*YNju}UWV})==thu%YVU*Yu}UWVS})؋GtFV+)GuGS*YƋ]u}UPWVS}u O)EFu~;~GW+u)Y3]u}UWVS35EFPaY؍Cz3zs$ (5 Gƀ;=(|z]u}UPWVS}u (E>GPY؍Cz3zs$= ǀNu(Y]u}ÐU!(E(E}uu(YX3ËE(}t*LPT9L~LTTu\(YEUWVS}WYE= | 3]u}'E39E u kET%9E u+EX kEXkU9P}E,ExhE@E= }i9E u kET%9E u+EX kEXkU9P}E,uExhtjeYuu$'Y3E,kEP\`d9\~\ddElEpEUt9l~El EtUtuv&YCCsFC CF F UWV}WY 9E u kT#9E u+ƋX kXk9P} <,uWF=tZ9E u kT#9E u+ƋX kXk9P}<,t u}3UWV}3F } u;wƋu}U WVuY9E u kT#9E u+ƋX kXt9E u+ƃt VPFGF3uEPBfEf)GEPU}uGW ;sfgGW";w1Gt&fgW_ YtxttW YSY]u}UWVS}EG%EwGGfGfguY@} u/FP t%@ =tF@ =t VWVYuEGW";w&}t W YtxttW YuY]u}U}u 3ËEP UEx tztE@t EfH3ɸU WVS}u F@ %E؃tGPB %9Ew%t G0F wFwBGEEUEPB %;EsEPVxt2wEpuEPBfEfGEPU}uGW ;rfO}G@uGtW YSY]u}U WVS}u F@ %E؃tGPB %9ErGFtpwwKGEEUE8tB@ %;Ew݋Et ErwE0FuEPBfEfGEPU}uGW ;rfO}G@uGtWr YSY]u}UPWVS}u ]ƅtFCt_^GCt__]EPBfEfGEPU}uGW ;rfOG@uGtW Y]u}UW} t&9E t9E tjjSu3}ËGU P WuEЃUW} t&9E t9E tjju3}ËGU P GGUWuEЃUWVS=āu%ā$EE#]؋u܋}ËE$P $EE\9E| EEE  EE4T9E|lE(kU lLkE ЉlEd9E|ΡPth>j PE CHCEHP-9E|CX \ ‹` ‹d ‹h‹l‹p‹t‹x E}u E+E;Б|F+E;ԑ|6E))jjju#EueEhvjd3`\Xx3tplhE=EEXE,Et¹dkUTEx™kUXEDEGEGEEEGEEEE,<,EE9E|ME}M(EkEЋ(5(E9E|E,E 9E|E,E 9E|(oU WVS3E=āuEEE+EjjHu&HWlYhj<3u}É5F́HNHNH N HNHNHNHNH N F$ JHJHJ H JHJHJHJHJ H <@D9<~<DDWY=UW}GtG$-$ t GtG$}Ë-$3UW}GtG$u w G Ѓ}Ë-$UWV}xt` GtV Yu}fO=u=x=GV YUWVS =((EXkkPEEU+EEEMEEUJHEpYfElPlf f=(t}~ E@EuEЋ@++EEEMEEUJHEpYfElPlf f=(t}~ E@EuEЋ@++EEBMEUJH EpYfElPlf f=(t}~ E@ EuKE7Gu fgxt_ WPY' u=(V Y]u}UWPdl;u3 =t(=uW\ Y}WD YUWVS}363,;uu Ƌ]u}C |F;5|¸UWVS}3_FuƋ]u}UWV f5lujj u 3u}ËFlFFf fW` YUElPlÐU(-<L-<@L-<L-<(-< pE$EWe9ĉuMpE9E|U(-< (-<E(-< (-<EPuhp? ÐUWV}fu fftN;t5W;t&fW;tW;tfW#t 3u}z UWVS}}u333iGtUE9G uSE %=uz3]u}ËE %W#t z 3؋E˅u}C;E|E u z3릅tZEE % fGEG fffGffGfG^Gt}C;E|z3:T$:rZj b $J+ËT$:rZj bJU؎E׋}GEGw W_+]k#9uPh tXË%=t+++tf=^PFX jj5jj,jj#jjjjjjjj jj jj jj jj jj jj jj jj jj jj jj jj jj! jj" jj#x jj$o jj%f jj&] jj'T jj(K jj)B jj*9 jj+0 jj,' jj- jj. jj/ jj0 jj1 jj2 jj3 jj4 jj5 jj6 jj7 jj8 jj9 jj: jj; jj< jj= jj> jj?| jj@s jjAj jjBa jjCX jjDO jjEF jjF= jjG4 P "XÐ?d "   ËD$#ËD$#ËD$#ËD$#ËD$#ËD$#!!!!!!fD$fD$ù1*#L pĊ Ê P L pĊ ËL$P  PЃS.P P V=t=u jhjjffffPfU3]ÜXUEP]UE;E vE ]UE;E sE ]UW}M t!ۀe UW}M ׁu7сu-ۀ_]øh؃j虪USVW] t5u} |&t΁+| _^[]+USVWe USVWfxu-UUfffuu u# uu u _^[]USVWfxuU U M fffjf uPP% ؋% uQPW vY uwXX3Ë] tHu} u} |(t΁+d|dd+_^[]ø=r =w3=r=wrwS3f=w3 u=r =wfuu3[USfxtu^ []Uzfلd[]USfxtu []U0fلd[]USfxtu []Ufلdf[]USfxtu u []UW_fE لd+[]USfxtu u# []U?W._fE لd+[]ø[]USfxtu u []UW_ffE لdf+[]UVWuMAO+΋};vbA} _^]áfxuUVWUQ} MDžd u+ыH_^]øUSVWu] }+|8f>tV}^߃uN8Ot^^+ut+U_^[]ËD$fD$Q2YUEnZZZZ;Eu8ZZZZu3n]ꬆ %" "ȃUWfPf3M }Xf_]UVWߎNj} +ы}>ѹO~+ttف+E_^UVW}u u+u_^]ËL$ UVWu} >t tr @ tr@H_^]UVW}u M㵤I㱀uUW}+H_UVW}u M_^]UfUE ]UfU3]UĈ 2]UĈ t ]ñĈ ñĈ D$t ÐT$3%  uùi@t:udRZ%D$ %D$ `fxffff=Pu$$0PTE@uG uaEFFtG@GGG3iȓGTGXGPLJLJLJLJLJLJLJLJLJLJLJLJLJLJLJLJLJ LJfG GGfG0G"GGGF]u}U,WVSf}=Tu TAf}%u %pׁp+‰EiEȓEE @jSj uu5t-E@Pׁk u$Y]ȋű}%=uǩtzuYǁ YDd%=u%=uff&FFf~ F"f fF2uoYVVYEjVF2P ftF#uF$=u D{u =DPhjٙ F %=uF#z&@t&f fF2VY f fF2#VSYSYuYZF %=u8C%&f~ FF4EE%= |E@Pׁk ǩuExXu@X&FC0EFE fF F"f fF2uYV}YEjVF2P2 fttPhj+ F4E@ =tPhCj EPS&FC0EFE fF F"f fF2uYVYEjVF2P[ fttPhejT F4EE@PEE,EEU܋ ЋEHELEHE Eܸ 9Er;%u%pp+‰E%u%pp+9Eu E@Pk L E@Pׁk  ǩu zz&@t&f fF2V(Y f fF2VOY#SYuYzE%=E%=u$zu$\uz fH! fH!z?fPfL!*EEEܸ9ErF4E@E@F"f fF2u YVYeEjVF2P ftKUWVSf}%u %pׁp+iȓEf}%=tF;;FPׁk $E%=u%=ufRF?Ef #f{ C"FCf fC2uYSYEjSC2P8 ftf fC2uWYEf #f{ CC"f fC2uYSYoEjSC2P ftf fC2uYtzfC SLYF6FE%=u6E%=u&fL!f=H!tt蕫]u}ÍFPUk tE E9E|փ}uŃ~ t z북&UWVS}G %uG %pW p+iȓGG&G %uG %pW p+k"G" tG3CCG %=thGEG EFPW k ‰Eut"FȋGE}|EEU;B~G#WQ|G" t G#'ut G"EFG%WV5F"uV/Yf'f fG2ukY]u}UWVS}F uF"]u}F"FC%S YFC %=uC"= uNC %uC %pS p+k""u?C %uC %pS p+‹q"jjS9YPjF %uF %pV p+ XPn0UWVSE%iȓG"t.^ C%tC %uC %p]u}øS p+kq+S8$"C %uC %pS p+k"C %uC %pS p+kEC %uC %pS p+‹q+"E("&C#=t=C#F#WSYG6C$C u{C$A=6=+CE9CvC+C&3ChC#S$ PC"PSҌECSQYC#8C$%=$XC$@uJC$t?CC&C#C$@u%C$uۋCC&C#C$@tCC&C#C$uC&C#EC#C#{C"= u3 tC#ZC#TCE9CvC+C&3ChC#S$ PC"PS蕋ECSnPYC#C u3FFSKPY {#u#F#C F SLYWBYff=Ht"D=sfHhHYf fPE9ErC#]UW=E%=uHE%=u8r8+E%=u$jEP()sɸjEPjh tzu =b=t }É=UW=E%=uHE%=u8r8+E%=u$jEP])sɸjEPjh?t zk=t }É=UPEfHjhHhP= fE%uE%pUp+i=sfHL@3fLf fPuYu EPLP!Ph7UWVSE%uE%pUp+iȓE%=uE%=ufeE%uE%pUp+iȓEu:E =St = S]u}SEPdE%uE%pUp+HE =M=Mte=Mtk=Mt8=Mt>=Mt@=Mt=uY MZEg3Eg&EEEKEkE'z@jVF2P fu܁&fEfF EF"Ff fF2uYV|YEjVF2P1 fttF#z&@t&f fF2VGY f fF2uYUWVSE@ %uE@ %pUR p+iȓ؋E@ %=u E@ EpCPUR k DE@*E@"=$GUJ"E@ %=uGGGG'GGGֈGUR GGUJ"GGGGGGUJ"GGGE@ %=CuGUJ"GGGGGUJ"GGGGRGiGUJ"GGGGGFGUJ"GGGE@ %=uGSGGEqP83]u}hj聃ߋE@"Phjc UUWV} [BE@jWj uf &FG0EFE%u E%pUp+U fF F"f fF2uYVY EjVF2PN ftt uhQG0EEF4EE3EUи9t#EU4{YUMEE9ErŋEHEEU0IYUEU&FE@FE%u E%pUp+U fF F"f fF2u\YVCYEjVF2P fttGuhj F#z&@t &V Yf fF2E@&&FG0EFE%u E%pUp+U fF F" f fF2uFYV-YEjVF2P fttuh"j F#z&@t &VYf fF2V9Y'WYuYu}UEEEE@ EE@ EE@ EEUWVS}w tv E X9_9^ v uE G p u EU P]u}U rEE@ -@EPRfEEP"Uf@fEE@ -@EEfEfE_EU9PukU9Pub@#uWE@"U;uHfEfEUE@ -@EfEfEfEuYt E=@rfEfE=E=EUJHEUMщPUfJ fH UP"@#@$UJ%H%@&UJ H u聮YUB EP4UfE4EEBUMEUfMf PfEEU;ruZYUEE@#@ -@EUEP#UP$U@ -@EP٭YUB u6YEEEWE9Eu7EUJ H EUP#UP$u=YE@ -@EEEE@ -@Eu[Yt E<uupYÐUWVSf}#=@uY@FCjjhLYPjjP^dC`fjY#P觬YFtCu zG<uh%k4tfO@2fg@E u#fO@jG Pjǵ G@tWGXY?UWSE%ء$$$kp0%l%kkL L fg<PY=u/`%;s3`%+¹@3@ƀ|G@ t)$Ӂʺ#ufg@WGXYӁʺ %=uG@uxG<tfGBfgE@8uX$MEfH8fH<fH@$U<uU ,$U$U=>AE@8t$UEf`8$Uh=AAt;=@A?zE%E$fMf _=BAE+0%p a 4=ttd=h=u3plEtlˆEjuEP' =zjEPu蚺 =tN}t EHm E`mjuH E@m% EjuEP赺 =czW=ttE =tuEkl%EfEE =tu Ekl%ЍR UfEEPuE PuqcjuEEP蚻Yff~EE׈fEE= rEkl%ЍR UEEME$ ЈlEEP9Yff~EE׈fEE= rEkl%ЍR UEEME$ ЈU WVSf=t E3h]u}ËE=tE=u8EĉEȸ pEֈ8%FE;} 9E|`%2Pu3`%J‰Ejjujjjujjjuj;r@%j h@%YP`%t33`%+¹@3@PjAE@% iƩENtE8t@%`%u`%=u `% Hftlf`%f=u@`%+f+=u@`%+ff@xx 0% լxtlJŰ=0%2Bx fGDG4{Gl#Gmh%k43ɈLk4LÃptl;r=tx3KPtAkp0%RgYjk4h%RYPVj0%kpfD@F|jjjjc4%UPWV0%iT =u Hu薐Y%EEP肐Y%9EtE0%kpEuaY%EEPMY%9EtE%EEd%i EEh%k4EEl%kEEp%kE=0%uE0%kpEE$EE$EE$EE$uEEu}UWf}E=@r E=BvE=PrE=_wEEE EKE `%;s3E `%+¹@3@EE PmYEE kp0%E茱EE=E=E U ʺ$hE@@Pj菩 t=zuzE U ʺ $=zu EPnuu聱Y}ËE@@ aEfH@ E U ʺ$E U ʺ%EffO҈PnE U ʺ$hE@@Pj蔨 t=zuzE U ʺ $=z E@@uE@@ bEfH@ E U ʺ $EEiE d%E@UR‰E׈PEPUf3E@׊M }fGfrEUPE@=xltE-;jh@E@UR+= rU WS}GD%kp%EfGu/$U<t $U4$U43jVFX҃UE kl%EUeEEUI  ;u^EP ˆP ‹UR ;E Ph* l%U k$E PYkE PY^l%U k$E PYEEU;u9E@ @ UR ;tEjE Ph* 3øUWVEE k4h%E kp0%ЋfF8fE'F8tP@f!EF0=sjVFX҃F,Eu 3u}E@t?E%=ujVFX҃EEfN0EEtyG@%GE% =uAEEEEGEGEEU EEEfEf)F0EuEEfN0EE"UWV}9E t?EPEPE=sE4jZQx|3G<0ƉE = ~E E!E 4EPѬ5EP\ 9E t"G0PEPEPEPjP#G0PEPEPu EPjPF[AU=4%t{EE= tEfE(%fBfE(%f(~EPEMEfE(%E= uj jujEPjujqUWV}G$EGD%E} E H|j= wc|_$E%Uʺ#t5 EEG@ jWEu}fg@ݢEG@jjujE$Uʺ#t%G@ tntfGnf)G(GnG$GnE$Uʺ#t G@PYfg@_fg@E$Uʺ#G@P违YfO@fO@fg@h%kU4LkU4Lfg@hWfO@j Wh6 fg@p%kUt jWoEG@!E$Uʺ#t G@PYS>t fFfu#>tF)WGXYt"FP6Z~YPujEuuYEE$Uʺ#uEEUʺ$hG@PjΘ t9EUʺ $=zczWEUʺ $G@ 9jWntE}U WVEkp0%Ekl%E l%UkfD fl%UkD f~)G,E}u%Du@U=uEu}ËEUEEU EffNf~EfPfHfujWGX҃f~EEtUP0%UkpD@ uSEkl%E@ E@ $PE@ P|YPEPj0%UkpDnj2EPh  UW3'jju3`%WPj+G;|΋}UPS]`%;r`%+%?E<s]Ë]ÐUPjhB0t%=t%uhjNJ5t%({Y%Et%BP{Y%9EtUPW=t%t!E%PYE;| z}iEt%ffufPfR;tzUPWE%PjYEiEt%Ћf}UPWVSE%P2YEiEt%Ћ39vWCPyYP5 Pj Pj@EPf ‹V5CPޞ tz]u}Ë)=t;JUPWVSE%PCYEiEt%Ћ39vWCP5ܝ tz]u}W5CPxYP Pj PjAEPf ‹)=t;JyUWE%PQYEiEt%ЋE tJ=iEUk ‰Ejuuۜ tz}jGPwYPu PjPjBEPjuGP uE t z똃}thGPuN ohGP^wYPu PjPjBEPK}thuGPW f   ¢zUUWVE%PYEiEt%]EjGPj虑 uGE GEUˆGuuuqvYPE%PGPjGPj< uuqYu}UWEU 3E@U8}Gr3E@U8mGr}UW3EU 8@U8} }Gr3E@U8mGr}UWE iUk ‹t6EPE PEPGЃ E%=0u G}EPE PEPS UWEit%ЋGGP^Y}UWVS}33=t=uCF;rދË]u}UuHuDu@uu_fOGt fgWfYf~t=fF @PFhH=hPhx%P f f 4f4=4u h4Y54f f4]u}UWV=tfEPj05dh(w7謈uf f4u}f f4-(03Ejuh4 fE8uf f4}t:F3FfFf`fF3fF fFF(3F$qF,-(0V dЉ fEu踋Yf f4 UWVph P)Y 4uhj.<fpX-x%fjpPhx%P} f f 43411F  G;=l|u}UWVS=t7`YEtCE-(03Ehu*}z]܋u}E3EfEu`Yf f47YEu<%?= ut)$zz,xE9Et{%?= ut)$zz,E-(03EfEu藉Yf f43ۋEp u@u? ~F9G u)u])G 9F}t EV9P~u]ދ6u}E@9G}Gu z GE@EjwE@PΏ t z}tFG@fjuE@ hС 4PV7 =zE EUfRf)PfJfH qP(Pƀuuu @Gtb%?= ut(#zz+fEuYf f4@EfHfEu讇Yf f4hE@Pj+ 0zUWVS=t7Yto-(03EhV讂+GE|L\9EBjEPw腍 t#zz ]u}ø9E} zfEu諆Yf f47YEu?%?= u"t)$zwz,k9ut{E-(03E%?= ut)$zz,fEuYf f4FUF;G fNfEu菅Yf f4hVj z7YEk9uffV7Y:=4uBG .fEuYf f4hh4 f44f f4f}MEhH=hPhx%JvE#f f 4G t z f|%f f 4f4=4u h4$Y4f f4fEuYf f4hhx%jw 1z7FYE9uE-(03EfEuzYf f4f f 4}G@fjuEHEhС 4P1 =ztxfE@PEhH=hPhx%t f f 4f4=4u h4謂Y4f f4fFfEfFfPfVqF$ECfEfC}tEfC ~u ÉFFF^FtffPƀFPY UW=t9v z}ÃttUWVS=t3ۡ%?= tz]܋u}7YthV|GuhV|;| zz^S5Yu  GG t G%Gf{tCP=Y} z *GtPjwhS <EFtYF Pu>uz]u}ËFES.YhV,7 $4E%E9XuqP(fJfH맃E0k0$49UrUPWVS=t%?= EPj055$4w7*ut+}9Gr 9GvzfF]u}jjj/ ؅ufFfNGF^F(3F$qF,fFfPfVf  .fK O.S-YtF9Gv zm+$40V Љ EUW=t9v z}ÃtUWVSX`$C =t@ SЋ;s ;u׍?%t Nj]u}øU조ÐUh4l4U9Eu6E04EEtEE 9E|9E|ËEUP@EUPP8E-04 UPExtyPUE@h49Eu h4l49Eul45T4XYju_jE@$P_E@@8UWVSE PB =l=tq=E P t juL_E P jE-$P%_E P "u ul]u}ËEXE p =t-==h4h4E PB =l4E xtl4PT4@T4P X4T4@+B 3\4F E PB u uk;E PB u ukE PB u ukE Ћ@+B =E xP U@t`4=h4u Ef`E@tBd4=l4t*E@PE@-04 Pj,i u Ef`E@ uu VYGE@% = u EEEqPqP f,E@-04 UfBE@Ed4P}u VYEtrE pVYEtVEUPwul4p]l49P|pZYPUYl4@W'xY uTYE@4E`4PVwu h4p?]h49P|bp[ZYP0UYDwu l4p]l49P|pZYPTYl4@WwwYh4@E PB HQP H AHP u uh_UWV}v%-@Eǹ@3EEU4t-%-@ǹ334u 3u}øU0WVSEt`4=h4ufeEt0d4=l4tEPE PEP ufeE tE% = uE]ċuȋ}EjhMEtjjMEu uRY뽋EPB pR+PUEE3FU EE=%uwE=st%FU EM}QEEЋGANEEE0>YtEH FCM;t 9EwEEME8t9ETEVP3EPEЋ E@G|EPB UP@P UfUfEfU fPqPqP UPfUfPEEd4P}uRYEtouQYEtVEUPsul4pYl49P|pVYPQYl4@W tY uPYEE`4P>suh4p'Yh49P|bpCVYPQYDsul4pXl49P|pVYPPYl4@W_sY$h4@UWEPUr;Ep ;XYuuuY+EHuEp P ҃uUYEuWrY}UWVSf}fu ]X4EE\E@:} EP}@Ef;t Eff}*E@;t EfPf}]u}ÃEE\49E|3UWVjY5tfEF%EfEPfEEPhx atFGf;t%W.YfEEPhx`zWoYuW.Yu}hW肆UPWjhx`t?G=Pu G,=t:%?= uuz}z%Gf;t znWYtcG4@=u/%?= uu z/z&&hWG8PD҃=zu MEu W-Y]ExWtYHUWtE0EYEu z }ËExGf;t zG=Pu G,=t/%?= uu zz%W'sYG4U9Pt/%?= uu z/z&&G4UJHfff} pjYfO$WsY%UjYUjYU WtE0+YEu z }ËExGf;t zG=Pu G,=t/%?= uu zz%똋G4@=u-%?= uGz&]WqYG4P!E9EuWqYz3EPU}uփ}t?G4ff4WqY%?= uz&fO$E@G4ffJff}PEBG4UPG4W4MJHWRqYfg&G&t g&WhYj'uGLPfe WpYG4@=u}uG4f@fPG4fEUJHExu G4UPfO$@EEPU}u}ËG4fugYEPU}ufO$@G4W4B3҉PUPWV3`G@=PG@,=f=pu/f f@shYzu}ápEPpEf@@WPfOf f@sfPfB(f fu`F;5L!3UWp4Jk D=p4=x4 G G Hk p4;r}UWEx4t }fx4u*f ft4hjz3뿋Gx4fG3GfGEx4fH$f ft4zUfEP4x4BEP4x4@4f ft4UWVSfEfu 3]u}E;(E(;}z"f+89Ћҋu4Lft<Lf+E89UCE3E@zf fPf2E 9G|9GuNGU;}BEC9E|؃}u~C;|>zf fPfE 9GuGU;uEfCfu HfHfCfSfCҍ‹fEf);((;}(z"fEff fPf=ffu|CfSfJfSҍ‹-OHǃ;rfCfu<9Hfu Hf%HfEE9uEU}uf fPf3FNHƃ;wE GfEfGEff fPf3^UPWV}}z3u}ËǙ=|4-|4 5Ejuh@f'_ fE8uf f@fFtǙ=V ;t4fEu0bYf f@fz3F?U(WVS=t7Yt?-|4 5E G= RJ$,;tV;t FPj7 FE^;tV;t Ct%?= tzjPw g =Eff twj Pw g =ff j Pw f =HffffF% fFqFhV5[%?= tdNNN fFfFFjw P1f =taNNN fFfFFj w Pe =j w Ve =zhVZF9GFWD hVYF9GFWD hVYmF9GFWУ LhVqY6G fFE^hV1YF9Gs4FWD hVXF9Gr z%?= tg $9G GFfG fftf{t)fCCP]Yf{tfCCP\YfPfSww7Q hV?XG fjFEPP? =zE$UEP;$v z"F9ErFPj7 E^cUEUffftf{t)fCCP[Yf{tfCCP[YËfJfHF9ErfEu[Yf f@f3fCff{tCPk[YfCf{tCPT[YfCEMufF-5@PFPh84M f fDf}fF fF fF5jjS =zEMu UWVS+89ЋҋtfGfOGE]u}ÍGUtqY-|4 5EGUDSЉUWM‰E}|Z$9EPEfUf}ufxtf@@PYYGUf f~Efxtf@@PYYfEuYYf f@fEMfGf9=Hfu Hf5Hf 9>u6uf fPffLf=Lf+E89Uf fPfoUWVS=tfEPj 5h|4w7Tuf f Xf CC H ;rC dXfuz]̋uЋ}áXfP XfG4@ %fEhWG҃thWG҃=zExt98u zEP U}u؋G4@ EPP Yf}t(jj#EOG4Uu YG4URYtPjPhu EuuYG4@ t9juu }hu z G4f` uiY%?= j1YUR+ЋG4@ЉUj]0Y9E@EEHE9EsE@E܊$$m E@E܊$ E؋M܊E؊$ ЈEfUf@E܋E%E؋M܊E؊$ ЈjU0YUR+ЉSE@\+ ul@W4R@E` +9Ev z k@‰CuP=z2@;r:uYhu5z XfC XfW YftPG4@PEpR,CE@\WRY;fC%C S %?= t u jS%?= u C fC CUWtE@jjhxe=z=zfEE@ %EfEPfEEPhx=tPGf;t%W YfEEPhx<zW. Yu@z4}fO$@ZG=Pu G,=t)%?= u tz%G(=tzW_ YWYG4UfRfPf@f@UR ʀfP jhx;6G=Pu G,=t*%?= uz%*G(=u zGf;tzW YEpW.UPWu 2}átE0Yt WYUWV}G @tW'Y%?= u#P4fGfBP4@)\ u[P4fBfEjWfGU;fGEPP褓 rP4fGfBf5Gf;tf;sP~*Y )\D;uf-WZYG9uW XfG =Xfu}áEP U9z uEW P UWVE0VMYx`G =u F49t ?uF(=u"F4fJ F4fN$DV5Y7YhWu}UPWVtE0Yt(P4R E@tG uzu}txE@tB%?= uu zz&f j'7jA uGJ4Q;sj8YufO @G TE@DfG;UPWtE0~YtWY}UWV}P4R uf&g P4fB t f&7CYu}UPWtE0 YtP4B }UPWtE0Yu}ËP4fJ j'7j? P4BU;Bt֋P4B UWVS|ts%?= t uuWH}t5%?= tpG tAP4fGfB u]u}ËG;uˈL;sӋP4fBfGUW}} uEGJ4Q;v/G @tP4B tWYYP4fGfB}ËP4BW;vWYP4fBfGG @tˋP4B tfGUWVS}p`F =u C49t >uC4@@PvwG t hhY]u}UWVS}p`F =u C49t >uC4@@PwvG t hY]u}UYuUPWVS}u n{teXfEuztPEiXfP XfESPfSfPS P P f@([ u]u}ËE@fJ(]S U}uXfC XfLJUW=Tf=`fG  `Hk Tf;r}UWEx4t }f`fu*f f\fhj2z3뿋`fEx4f f\fUfEP4`fEP4`f@4f f\fÐUWVS}fwG P4Uj EPEPj; fEuϋEfPf@UfJfIfJэ‹PSu uEtEƀfPf'f fǀhSPʣ Ezu+EUJ4ffPh@PEP4RRD EfPf~@=2u菨YPhfEf@ǀtƀPt=Yf Efǀh?YPh8z3]u}ËEƀP=Y(f EfǀhSP EupYEUWVS}u f_G P4Uj EPEPI9 fEuPVu) tf Efǀ]u}ËEƀfPf f@@E@=2Ef fǀhVP萨 EP4E@hEP4RRE@P B Epf@ƀuYEƀP;Y-E@UfJfBщ4Eƀf fǀUW}9E rG9E |EPh'}3UWVSEfPfUP z4j PP7 fuƇf fLJEPuu!ƇP:Y3]܋u}Ë^fCfuJfE fCE %fFfEfF*fN$ffF ffF"FEh!jhqhqV VY/ffffLJd%@fE@?EhuEPn E=ztuyYfE tEP4UECff~AEffu!ffJffMf PEfEE@ 9E|u Yff~E9ELff~JfPfLJ=dtPfLJdffffJfҍUfffEfLJfLJƇPo8YEPhHPz3CUE 9E|C%= t=Pt=`u)E=uh jfEfF,ECftfƇhqhqV ƇP7YUPWVS}GEfPftfGf؋G0P r4#]u}j PP3 fuƆf fdžfƆEf@hqhqW Ɔ=d|;s$ffffPƆP6Y,UWVS}GEx8EGEH}E}EEEH}E +;Б| +;ԑ}z 3]u}Í ) ) P@YUB8؅u0G'f  O3G'uWS  Fƙ}uUUWVS}GEG9E ~&zhXj]؋u܋}ËE E;G~ G+E EEEfG.fEEE }EEUP8ڋEEU +ЉU?9<;t=E9E~{tus3EP$u3EP9 WVY8Eff fF2u-9Yt#EPhVYE+EEE9E~E9Et}} z,huЋE@.P E=ztu芋YEp4EPPV+ E=t0EffEftEE8}} EE)=}t uYu}|zUEܣf}|=t=tẸFEE;ur.EEE EEffu+ Y=zu7Ef@fE܋EEܣu Y=ztEf@*ZEf@*fH$uYuYjumEЀ=zhuЋE@.Pu E=ztu耉YEp4PVE=uzuJYEuE%EEEEuEEEEuY)=fEEܣfEu Y=zEfH*fH$@E@9EEfH*fH$@fEEܣfEu& YuSYEE@9EuKEfH*fEEܣfEuYE uYE@9EuE@*=uEfH*EEfx*uh}u}t\EP0UuY}tuuEfH*uY}t)uu\EfH*u_Y uTYUWVS}u _W ;t FtXG0u&fPft,kDtz3]u}=th=t3fcf=tfW";tfF%f CG$ tCuWSYfftfcfFfG fFfG"XUWV}u =t 3u}Ã~}G= tzFU WEE}E EPfftAG=.uGu +EE%G=.u9G=.u.Gu'+EEm9EsE E}øUPWVS}u u#hj"z3]u}Ãu0ujhW t5CEf@2Ef@4(u#ujh Wu3랋CEUWVS}u _ftfC2fC2fu C2PYtGt(fC2fuf fGLz]u}fC4fC4fu C4PcYt2'uTuNjC4PGLP ffC4ftt$jC2PGLP ffC2ftf fGLfUWVS}u GEft0EfP2fJfP2f@6tEf`6@4PYt0EfP4fJfP4f@6tEf`6@2P_YEfP2ffP4ff fGL Ff fGL]u}ËE@U}tE@uw0K}GEf@.f@0fO$B륐UWVS}<t;G=t G=@u%jjP5Wj.u$=t=}G= tz]؋u܋}Ë_C%E== t5=@=`==zfG,fEfO$E% t WYmEPE%YKffC4fttf fGLfK6g&G&t g&WVYjC2PGLP WQYtC.jWE=zZEE>ffEE}}9E覅VLY;= tu5 uEP{uuEP;{ ~&tE}tjuF4EP" 9EusE)GP9| EE;EuKP+E9G}>fEft&hHr)#Yf fF2uYVYfO$zu=t }9EPtf3fC0fC.fC6t0fc6f fGLPƀC4PVYf fGLU WVS}<t;G=t G=@u%jjP5Wju$=zu=}G= tz]ԋu؋}Ë_C%E== t8=@=`v=k=`zfG,fEfO$BE% t WYEPE%YlEfC2fP9v9G}EP+G)Estf fGLfK6g&G&t g&WYjC4PGLP" WYfG=PTfC2fu)z f fGLj 58f fGLC0EjWE=zt}zEEffEE9Et'9Eu}u P+E9G| 9EuuuEP~ ;= tu5 uEPwuuEPv juF4EP t V>zYE`9Eu4JEff fF2uYVY{YVzY9Et@9Et 9Euu W.-U WVS}u <t jWE4tG=@tG=PtWHYF=wBEGfG,fE=t0= t=`u5Yt-WY]u}uW~@tWSYffG(=15Qf~tGFE@,U;u5E@;u*9}t%f fuf f@sk ;5r`ufEX f fuf f@sW YE% tuW荀$juEPE% ҃ W^ YEtDE@U;u5f fwf fuf f@swE$9Erf fwf fuf f@sEPTwYjuEPE%kp҃ EPFP E}uC9EuCtfcVWU EPU EPB =tm=EP =tEP =u ju0EP =tEP =u5jE-$P EP UºT9t ET9uuEp P ҃Muu*=Ep Yuuuuu6u uYE@uuYEUWVS}u E_tu>EPU0]܋u}C{tKC C@t EEC u C%=EsC%=C@E,KCC@tC#EC%=uC@uEC%=C@C @E9EEC@C@ECUXC%=uC@t E4E+C%=uC@t EE C=w |$`}tC@}t)uw G Ѓuj w H EEЋR9P s Ct3CEЋR9P uW3}tEHQJ9Pry}tw YYtuw G Ѓw :YuVW3-jj@赺Eu#Whwjj@製VWX3EP @ ECCA9E|Z9E`9EuEP\@E'|9EuEP\@E!~9EuEP\@E^l{9EuEP\@E(M}9EuEP\@E).E%=\u\9EuEP\@eCuEP@ECta9E|z9Em E%Ex%?EuCEP@E 9EuC%= 9EuCtE 9EuCuCD 9Eu@Ct5Cu$fKE %?EEH fcEP@EEEEx}tuw G ЃVսYwEP @CCEHI9HrԋEH pCtEP@ EP@EHI9Hr EH2M}u$UPEPU@uVEЍRjujE@$PjhEp jhEp0 u j Ep UE P UPB EEPUE=D= D=Tt=Tt =TEUfJfHf ffJfHJ H J H J H J H J HJHJHJHEf f@f@@ E@ @@u Ep P ҃ËE PB E@ u uu Ep P ҃UW}fgfOWY}ÐU= u z3t+% t%=$u zu 5$Ou P%҃U= u z3t'% t5$UYP%YU= u z3t'% t5$]YP%YU= u z3t2% tuuu 5$#_uuu P%҃U= u z3øUWVSPȸEEE3ۿ*}t f hY5=t<P;4<t,Pdl;f=Pft ;5tF$%=Fhl;u EF#EtntPdl;uS~t;uuHFP;u 3V+;w&u]FP;u 3V+Ћދv, EP;4<tPqEu }tf f&]Fhl;u u F,F,C,FPF}tf ft&9uq qP׈P49P~;5tP<tmƋ]u}UWV}5;uhj9u}Ëv,uޡG,=U} | (9E ~S^uE EE (9E |E '} }E E U W}u{E %E9E}E uz}w7u|} E %EjuuuEBЃE=u뱋E % EEEEP Uz uEPBEUujuЈ҃ EuuuEB Ѓ)uYEUJ4H4EE`Et EU9Pt EL9E|׋E@4EP4EMHJEP4z utYuYEUWVS3ۃ=Hu9hE %=u7;Ë]u}áԃ9Euft7f=tf=tf=t;3=qt#3fPft==t =uWG`ECE@=uE@p"Efx t@ EE@}pE EEut quGdlP;tv=tEEfEE8x uE=of fpqqt+dl 9Esf=t qtu u q38F|9vu@pdl 9Ew$EE9s l9vOpdl 9E/l2EE  ExtPEE9E|q38F|qqfE=)?*f?uqfEpfE9~ G=t79k|'9k} 9| 9uGDt$ODuGD9G4u GDP?Y jW9oG=(rGW@(G=u"G$&qfEpfEf f`sxǐ;= =qtqDH=qtqLPkU¹3fqukU¹3fL=tPT=tX\ q"q9} heY q̑qh=Y t 5Y9vu8=vt%f=&f fpv v/UE%t=tzUUPWEuX 9sXx5 +PljWqPz =zug}ø9r z5+P1){E=thYHE-;UOUWSEuM 9sM5 +PjWqPy ]}ø9r z5+PG,hYE-;PyYuOUWVSqjYċ%@0%@0F%@0F%@0F%@0F%@0F%@0F%@0F%@0F%@0F  %@0F  %@0F WXYĩ]u}UPWVSqEj@rY%jcY%G% ؈G%G% ؈G%G% ؈G%G% ؈G%k G % G %G % ؈ j@Y%%ƹ3Ā ]u}.filegspinwait.data,w.filegkp.data@,{.filegvuifile.dataP,w.dataP,w.dataP,w.bss,w.bss,w.text,w.text,w.file"gstart.dataP`,w.textlc,wdomungeT$Astart$H.file,gdscrtables.c.textl.data`PA.bss.comment.file:gmmgt.ckseglb>0unkseg$2.textl..datae.bss.comment.filepgpage.cmemlockh$ >t$@$ Bi6Dfreepage$=F"$Hptmemall $Jpfree $Leffdev| $0Npfind hPpinsert $Rpremove$$Tsptalloc$VsptfreeV$Xgrabmem$Zmeminit$\punmount($^pbremove$>`-$b8$dB$fpageproih.texth`.dataeT.bss .comment.filegpower.cphand$tupscheck$8vshutkill$xshutsave$xzexistrs'"$|openrs #h~copymem#$Mb$$shutype %$q.text  .dataPf.bss.comment.filegprf.cprintf|%$printn}'$wsprintf($putchar)$panic*$'prdev*$fW+$,deverrF+$Acmn_err+$b9.$%l^.$$assfail.$'nomemmsg.$a.text|% .datai.bss.comment .filegregion.creginit / reglock/$Hregrele/$hrlstlock?0$Kw0$Vregwait0$Xgetreg81hallocreg1hfreereg2 6h&78 dupreg :h growregB$F$Mptexpand0I$AmapregqO$^findregRhkfindpreg:ShHchgprotS 4vtopregShy/T$oU$.text /(!.datapkH.bss.comment(.filegsched.cschedW$swapout[$Cswapin]$vtop2a$E.textW .datak$.bss.comment0.filegsig.csignalXa$ppsignala$*issigb$jstop\f$;psigf$fsigg$Qcoreg$aZl$ ptraceYn$ procxmtp$M.textXa  .datakp.bss.comment8.file(gslp.cmsleepdw$unmsleep)z$wakeupz$`setrun#|$ .textdw[.dataLl.bss.comment@.fileFgstartup.cmlsetup|$q,i$|.mktables$%0p0u $2p0init$4machinit$ 6scanmem.8$":Ë$S<$#>.text|DU .datadl.bss.commentH.filefgsubr.cupdate<$FJnodev$ Lnulldev$Nrtrue$ Prfalse$Rrpass$Tnopkg$ Vnoreach$X̎$Zprfindho\convoffY$^.text<- .data$mp.bssP.commentP.filegswapalloc.cswalloc$ jswfree1$lswpuse$@nswpincӓ$hpswapadd;$rswapdel$6tswaprem<$yvgetswap$Fxunswap$zswapfind$|.textp .datamp.bss`.commentX.filegswtch.cqswtch`$Gpswtchh.text` .datan.bss`.comment`.filegsyslocal.csysaltosl$swapfuncp$stkgrowZ$jftimeğ$napP$rrdchk¡$xshutdown:$shutdwn1U$|aunameѤ$5csysname$BseteugidH$aauaccess$asetpmap $#fscraft-$symlinkK$~readlinkɧ$}setversF$]numusers$=sreboot$sysconf$5setlogin,$$clrloginP$ .textl.datant.bss`.commenth.filegtext.cxalloc\h'xumount$xrele[$swapclup$xdup h$v$($.text\` .datan.bss`.commentp.file gtrap.cs_trap$$9addupcι$mk_trap;$Fu_trap$systrap$X'$sysargs nosys$(nullsys$1$<d$+showregs$err_nmi0$clr_nmi$Bget_nmi/-/.text.datanl.bss`.commentx.file gtimeout.ctimeout`$-G$timein$delay$KQ$.text`01.datap.bss`.comment.file2gmain.cmain$B$[$>&dumproc$ (e$_*.text.dataq(.bss`.comment.fileBgacct.csysacct|$6acct$8compress+$G:.text|S.dataclosef$%suser$'ufalloc$@fallocBhfinit$5unfalloc,$D.textx7.data@s.bss`.comment.filegfork.cforkp$xnewproc$procdup $setuctxt$uaccesshq$ruballoch8ubfreeJ$_.textp< .data\s<.bss`.comment.filegfp.cfpbugchk$pfpsave$|$9$?fpesetup$Kfpeinitj$fptrapU$0fpemerr$<$$Sr$W.text .datas .bss`.comment.fileggetpages.cpglstlk$R$Gvhande$[ $ getpages"$addspgu'$addfpg($}($'+$memfree+$bumprcnt-$freelistE.$R.textF .datat.bss`.comment.file0ggrow.csbreak.$grow1$2$Kptalloc4iuptalloc,4iptsalloc@4iU4ipt0alloci4i uptfreez5$"uptsfree5$$upt0free5$B&6$@(.text. .datau.bss`.comment.fileHgiget.cinoinit(7$~4iget7h6iput<$8iflushh>$:iunhash?$9<icheckV?$z>iinit?$_@.text(7 .dataul.bss`.comment.file`glock.clock0@$Ltextlock@$NtunlockA$PdatalockxB$cRdunlockD$TproclockE$KVpunlock F$vX.text0@P{.data4v8.bss`.comment.fileglocking.clockingF$+ddo_locksG$flockedlP$hdR$/jdeadlockS$lunlckfT$n ThplockfreeZU$ErwakechkU$$tlockaddU${v>V$Tx.textF .datalv.bss`.comment.filegmachdep.cclksetV$timepokeV$sendsigV$7X$setregsY$copysegK[$Fvtop[$)q\$4]$?]$.K*^$7Va^$bo^$+n^$jy_.dscraddr_.%`$Ntextoffsa.va$usigclean^c$ rebootgd$novecWe$enableione$_e$]mappages*f$h$Efixtss k$l.textV.datav<.bss`.comment.filegmalloc.cmallocxl.gmfreel$ptmallocm$.textxl8.datav,.bssh.comment.filegnami.cnameinh.textns.datavh.bssh.comment.filegpdt.cchkpdXu$Sloadpdu$;chpdprotv$.textXu4.dataXw.bssh.comment.filegphysio.cswapw$swapseg9y$physio z$.textwH .dataXw.bssh.comment.file gpipe.cpipeԁ$plockׂ$Dprele$I.textԁ.datatw.bssh.comment.filegprobe.cuseraccd$\userdma$undma܆$$ .textd@@.datatw .bssh.comment .fileRgsys2.cread$"write$$rdwrʉ$&getmsgŋ$ (putmsgҋ$ *msgioߋ$,pollr$.g$0polltime )2open#$4creatB$6copena$(8copen1$7:close$5<seek$>linkܗ$@mknod$Bsaccess $Dmkdir$4FrmdirQ$Hgetdentsp$sJ.text@.dataw.bssh.comment(.filegsys3.cfstat$BVstat&$ Xlstat3$ Zstat0@$\stat1ݛ$^$z`fstatfs\$Rbstatfs$Kdstatfs1$fdup$hfcntl$jioctlf$lstty $!ngtty-$!psmountN$rsumountF$t$v$x$ zchsize$K|.text$.dataw8 .bssh.comment0.filegsys4.cgtime$stime$)setuid@$getuidȩ$setgid$getgidi$getpid$!setpgrp$Osync$ nice$]unlink]$chdir|$chroot$chdirec$chmod$achown$kssigP$kill$times$5profil$Oalarm0$+pause[$umaskq$=utime$ulimitƴ$.text).dataw.bssh.comment8.filegsysent.c.text.dataw<.bssh.comment@.filegutssys.cutssys$2uadminҷ$uname$ ustatȻ$,ustat0$iustat286]$h.text(.data}.bssh.commentH.filegxdata.cexecsegȽ$D $.textȽ !.data}.bssp.commentP.filegbitmasks.c.text.data}.bssp.commentX.file gbrk286.c$brkctl$getsegs$lbrkseg$.text.data~.bssp.comment`.file2gexec.cexec$exece$ gethead$getxfile$/$stackbld$exec_err$DG$%U$getV7hdrc$ /O$0":$;$D$%&N$(Zo$*.text&1.data~.bssp.commenth.fileHgfstyp.cfsinit$$)6fsnullM$ 8fsstrayW$:fsistrayed<gsh>sysfs$W@.text$!.data~.bssp.commentp.filegstreamio.cstropen$LstrallockhMNstrfree$Pstrclose$jRstrcleanA$Tstrread$jVstrrputb$XqT$kZ|$\strwritep$^strwsrv$`strioctlx$bf$dH$fD$hstrpoll$gjqattach@$lqdetach$!nstrtime8 $#pstr2time[ $%rstr3time $$tputiocd $vgetiocdu!$fx!hdzfreelink?"$~|"$H~#hPgetendqU#hmunlinkn#$/$$[setq$$%h'$strwaitq($.text7<".data~.bssp.commentxioc_idp.filegmove.ciomove)$passc*$Qcpassp*$Mstr8cpy*$0.text)l.data.bsst.comment.filegtty.cttiocom*$Cttinit33$}ttywait3$qttyflush!4$canon5$ttrstrt6$tgsetc7$7$9$;$|R=$xpropen>$xprclose?$xprioctl+@$ A$a.text*0.data,.bsst.comment.filegtt1.cttopen B$wttcloseB${ttreadC$vttwriteD$ttin(F$|ttxputK$ ttoutO$tttimeoQ$vttioctlR$.text B .data0.bsst.comment.filegclist.cgetcS$putcCT$getcfThAputcfU$Igetcb^UhIputcbU$PcinitU$r+iV$p.textS0/.data.bsst.comment.filegpartab.c.textV.data.bsst.comment.filemgstream.c5VhxallocbTWhtestbdY$getclass3Z$(bufcall[Z$-?[$freebQ\$!freemsg]$"#dupb8]hM%dupmsg]hT'copyb]h)copymsge^hT+linkb^$!-unlinkb^h/rmvb^hU1IK_$3adjmsga$5xmsgsizea$=7msgdsize b$/9getq:bh;rmvq c$=flushqc$?canputd$IAputqe$Cputbqf$Einsq4g$Gputctlg$WIputctl11h$bKstrinith$MS[l$Oallocq ph QbackqqhISqreply\q$7Uqenableq$mWqueuerunr$Y]t$W[findmodit$R]qsizet$$_seallocthpasefreeOu$c.textV(.data.bsst.commentgtrā.file{gi8259.cinit8259hu$q|u$Ss.texthu.data(\.bssx.comment.filegipc.cDv$}ipcgetvh .textDv.data.bssx.comment.filegcswitch.data0,w.textw,wresumex$rresumex$longjmpw$savex$setjmpw$swtch7x$.filegfpsup.data,w.textdy,wcltsy$do_finituy$fclexy$frestmy$fsavedy$i387inityy$set387cwy$settsy$.filegintr.data,w.textyv,wsetem|~$z$brktrapz$dbgtrapy$div0trapy$gptrap{$invalint+{$"{$z$z$ivctM0{$ivctM0S0<|$ivctM0S1E|$ivctM0S2N|$ivctM0S3W|$ivctM0S4`|$ivctM0S5i|$ivctM0S6r|$ivctM0S7{|$ivctM1{$ivctM1S0|$ivctM1S1|$ivctM1S2|$ivctM1S3|$ivctM1S4|$ivctM1S5|$ivctM1S6|$ivctM1S7|$ivctM2|$ivctM2S0|$ivctM2S1|$ivctM2S2|$ivctM2S3|$ivctM2S4|$ivctM2S5|$ivctM2S6}$ ivctM2S7 }$ ivctM3|$ivctM3S0}$ivctM3S1}$ivctM3S2&}$ivctM3S3/}$ivctM3S48}$ivctM3S5A}$ivctM3S6J}$ivctM3S7S}$ivctM4|$ ivctM4S0\}$"ivctM4S1e}$$ivctM4S2n}$&ivctM4S3w}$(ivctM4S4}$*ivctM4S5}$,ivctM4S6}$.ivctM4S7}$0ivctM5!|$2ivctM5S0}$4ivctM5S1}$6ivctM5S2}$8ivctM5S3}$:ivctM5S4}$<ivctM5S5}$>ivctM5S6}$@ivctM5S7}$BivctM6*|$DivctM6S0}$FivctM6S1}$HivctM6S2}$JivctM6S3~$LivctM6S4~$NivctM6S5~$PivctM6S6"~$RivctM6S7+~$TivctM73|$VivctM7S04~$XivctM7S1=~$ZivctM7S2F~$\ivctM7S3O~$^ivctM7S4X~$`ivctM7S5a~$bivctM7S6j~$divctM7S7s~$fndperr{$indptrap'z$knmiinty$moverrunz$o z$qpftrap {$sresvtrap{$uz$wstktrapz$ysw_2404{${sw_241@{$}sw_242L{$sw_243X{$sw_244d{$sw_245p{$sw_246|{$sw_247{$sw_248{$sw_249{$sw_250{$sw_251{$sw_252{$sw_253{$sw_254{$sw_255{$z$.file=gmisc.dataȃ,w.text~ _,wcopycomL$$_cr0~$_cr2~$_cr3~$_dr0~$_dr1~$_dr2~$_dr3~$_dr6~$_dr7~$_wdr0~$_wdr1~$_wdr2~$_wdr3~$_wdr6~$_wdr7~$bcopy$bzero$bzerobak$copyinH$copyout$c$dscracc~$a$endcopyׇ$fbcopy<$flushtlb~$fubyteB$fuibyteB$fuiword$fushortӃ$fuword$icodech~$idle0$inb$$loadldtr~$loadtr~$longswapJ$max[$e$ minK$ nomem$outb$v$restflgA$saveflg>$Յ$)$spathN$spl0k$spl12$ spl2+$"spl3$$$spl4$&spl5$(spl6$*spl7$,spl8$.splhi$0splni$2splpp$4spltty$6splx$8strcat$:strcmpn$<strcpyM$>strlen$@strncmph$Bstrncpy$Dsubyte$Fsuibyte$Hsuiwordz$Jsushort$Lsuwordz$N4W$Qupathx$SupsdsblP$Uupsenbld$Wupsoff$Yupson'$[vstart$]wzeroˆ$`.fileIgspinwait.datad ,s.textx,satomdecl$Katomincl܈$Mspinwait$O.filecgttrap.datap,w.text 1,wcmnint$mcmntrap $odonesys$q@$snoaddupc$uO$wZq$yd${sys_call$$}p$.fileqgraw.data,w.text,wchksum$ksachksum$msbchksumތ$oschksum-$q.filegticker.cclkstart`$}uclkreldݍ$ wclkstop$y}$'{.text` .data.bssx.commentstextsdatadf_stackkpd0kpt0 kpt1@kpti0sbss$kstack$syssegs$u$etextgdt``gdtsize`bidt`Pidt2`Xktssdbktss1bktss24cmaxmaskptpwrval`feeeegdtdscr(Pidtdsc10Pidtdsc28Pidtdscr0PbootdbgPbootdevPPdbgcr2 Pdbgcr3$P PmaxcpusPPmycpu_idPXPP dftssXeltssxktss3cktss4dktss5ldktss6dktssptrj>ÐUE+E E=r@t3Ã=@t5v@h@h@j v@v@=@t$EP5v@h@h@+E;v@}ÐUWV3u E ;w^_ÐU=@tV@jh@O=@ }4h@h@jjh@5@*4 5@X h<@h@Vhp@h@h@=j h@5@3 |Ԁ=@Nt =@nu j'=ÐUEz@HE@Ej P5j@8 }uh@h@ 3ÐEEz@H9E}6E@=z@Uh 4@5n@3 = t뮐uh@h hƄ@5j@2 E= tuE}~hEPE@=z@4@hƄ@ E ~6M+ȃQh@h@ h@@EEE uuh @E@=z@Uh 4@5n@ 2 E= uh,@}}}=@mf@9E_ÐUjE P5j@6 } j0E}5@EEPh4@h@E EEƀƄ@EE ;EjEE P5j@36 } jE}} Ek E-0GE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl @Dž\?E2ETMDžl @Dž\EE C~u~E܉TMs؍gh݅H$ @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H, @u+-hJhE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPJuEP;jEP|>h~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@ED@r5EL@rX@ET@AEt@s6EE]@)EE|@r݋EE 9P܃}t؁@L@vL@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE\@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ed@E5l@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_ÐR ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h!YGt@O G W@GGVYtG uO @u}G @WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裄@3ø6NÐ:ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@j Y@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}WV|$ t$L$Njʁ^_øjÐT$@Ru @+D$ø5T$@3øÐ-Ð@ÐT$ Bad tape. Did %d retries Aborting. Please insert a new tape. Verifying the tape: Verify Successful. Verify Failed. Exiting This tape is done. Please insert the next tape. Archive completed. controller retries = %d retries = %d nominal = %ld /dev/ttyarchive: can't open /dev/tty Type Y to continue, or N to abort the archive. Before typing Y, insert the next tape. Please type something more.  Cannot seek disk to block %ld. Block %6ld Error on verify of block %ld. Block %6ld%6ld Error detected in Block %ld, errno = %d. Block %6ld%c%c%c%c%c%c%6ld%c%c%c%c%c%c%6ld%c%c%c%c%c%c%6ld Error detected in Block %ld, errno = %d. usage: archive [-e] [-i string] [-A] [-V] file-system tape Error seeking on file system %s.Error opening file system %s.Error reading from file system %s.Error opening tape %s.Error writing on tape %s.Unrecoverable error. Error no = %d Sorry, you must be super-user to execute archive. -e-darchive %s %s %s from %s to %s System type unknown! Tape is not ready. Tape did not read correctly. Tape header not in correct format. Cannot re-read tape header. New tape starting block = %ld Tape is not ready. Please insert the tape. Tape is write protected. Please try again. Aborting. Erasing the tape Tape is not ready. Please insert the tape. Tape is write protected. Please try again. Write error on tape. Please try another tape. Aborting. Tape is not ready. Please insert the tape. Tape is write protected. Please try again. Write error on tape. Please try another tape. Aborting. ChecksumTape number: %d Date created: %sStarting block number: %ld File system name: %s Tape style: %d (no checksum record at end of archive)(checksum record at end of archive)(unknown tape style) @(#)archive RTS 5.3b of Jun 13, 1988 @Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec @ @W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF J*J* J*)J*J*J*J* r J*~ J* J*J*J*J*J*J*J*J*J*J*J* #J*'J*J*J*J*J*J*J*J*J*J*J*J*J*J*J*J*"J*J*J*J*J*J*J*J*J*J*)! #&%'!!J*J*!J*J*"J*J*J*)J*B"J*J*"-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@@@@usr/bin/recover100755 3 3 43160 4231442703 10264 37777777777 L! 6 Nd@.text6 .datad@d@ d7@.bssp&@p&@NÐETp&@RU RP Pq6jÐU SWVEEu u =@2u{ E5 @D1jj5=@?u< h@h@j5 @0j5=@(j5@ 5@ j&@EE}_u EluE5 @]0j'}h@h"@h@ j4^_[USWVuE ; ^_[USWV}@EE}'EM@8@  @9E^_[USWV=@C@jh$@n3t&@h0@h"@~jA5t&@Rjhx&@5t&@(* hP@h"@1j hx&@5t&@) hx@h"@^_[USWV&@HEE&@E@=&@UhE4@5 @) EE&@H9EEE@=&@Uh E4@5 @<) =  j jjjjjj5&@h@ E@=&@Uh E4@5 @( E= %&@&@&@&@&@&@E@=&@4@0&@=@j&@ P5@z-  j@h E@=&@4@5@r1 E+=P&@5P&@5&@h@h"@ &@&@jjjjjj5&@h@V }#=P&@&@&@&@&@&@&@E@=&@4@&@=@j&@ P5@>,  jh E@=&@4@5@60 E+=P&@5P&@5&@h@h"@ &@&@&@jjjjjj5&@h(@. } j QEE&@9EE@=&@UuEu=@Dh E4@5@h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}&@E&@E!@s3UtE]&@E!@E!@E"@r5E"@r$"@E "@AE@"@s6EE]@)EEH"@r݋EE 9P܃}t؁&@&@v&@EP"@t&@r05}fEf fEmE]mE܉E@0Ee X"@];r&=5|+&@u&@1}tCF0N<9&@]Ћuԋ}ËEE0]@EEsEE 9P EEEE("@MU]vEu}fEf fEm]mE܉EFUR0EMm]E0"@E58"@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G %@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W %@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}p&@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3Z ÐUWVS}u ߋGF҈u]u}ÐUWV}GGu+Ƌu}UW`"@ WY;=%@r}UWV}tlG t6G t3WVYG PY}P&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG %@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G %@+G?}3W %@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G %@+G?}3W %@+W;}WY3UWV}G G u}}&u@@GW %@*h!YGt@O G W%@GGVYtG uO @u}G &@WR%@UWV}G %@+G}G %@Wu};7}7𐐐3ÐUP&@EEPhTu } EP&@3ø6ZÐFÐU WVSE9ET=d&@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@6@6@%@>@@%@>@usr/bin/assign100755 3 3 51630 4201205746 10105 37777777777 L! B x@.textB .data@@ C@.bss8@8@x.comment`8OÐET8@RU RP PmBjÐUWE 8E M3@G=/u =duـ?u`ME G=dt=ut=vu$@4@(@W5@h@; jAY}tE 8=-tE@E @5@0 Y|@x@5@Y5@/<Y=@t!5@5@jKY}Ã=@~5@5@ UEjjt@Ejje@EjjV@EjjG@EhE}u9jtYj5@ =u j@Yj@YEP6YEtmuj?uj?uj?uj?EM~ h@ 5@h"@ j@YjYEU=@t-jj5@ ; k@|HhSWs5 }3ƹ<3h^ jE=5@5@hW@; jYfEftyEPEP|eE= uZEtEP5@hj@ :jh@S jEPC$P E%C4jt G;tu]u}3UWV}W|-Y|jWh@ u| =ruGNju}UW@G$EPY;E=@tG PY@E@ Wh@juu u3t+uh!@=@t@uh+@.G PWuh=@=@tuhX@hb@Y53ÐUuYPYUWVS<@d@GF҈uEk@~@<@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW<@]u}UW}G 9E |E R0ˆG GE R0‹GNj}Ð33Ð33Ð/ÐÐ3ÐUPWE ED @uD @t* D @h8 @uuy D @ t }ËU9Er=@u>E`@PX.Y@E\@EX@E EURu+ËE9`@sˣ`@P5@0@UWVSX@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW\@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu\@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u X@|?=@t6SW5@/ SVW/ S5@V/ ]u}ÊEGFUKuUWVS}u ]X@E9E|R=@tIuW5@~/ uSWq/ uVSd/ u5@VR/ ]u}ÊEGCFUMuӐ03ÐU}u3jYEh(jy/EEE}t6E9Ev)EE&E+EEEEEMuj,/hd@YuubYljUYE}| uj.} }}}t EEP YEE2Ujhd@EøÐ/ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}Ð6.t3Ð T$tÐUW(E+@EEPY=@iGQiWkW<E=|@u=@uWEPEP< |@E@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<@E@ƙ5@Ep@}| FFFtmnEN}|ۉ5@}=@ƹtmn=nu f@3 u@+Fu@;}f@G@5@@@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~PhX@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E @E @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁@@v@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G L@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W L@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}8@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø~ L$tÐUW( @ WY;=H@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG L@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G L@+G?}3W L@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G L@+G?}3W L@+W;}WY3UWV}G G u}}&u@@GW L@*h!YGt@O G WL@GGVYtG uO @u}G @WRL@UWV}G L@+G}G L@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET=,@u<0@ ,@,@ 0@ @0@@,@ @(@E@3؋=@E&;5 @,@E@E=w=(@jY @@;t?3Ee ƹ3tL3+‰EEE2 @+(@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5(@ @0E+E- @@;t @ @ @,@~Љ@;5@v@$@@ 9=(@u @(@G(=@95(@u=(@7tލ;r;l%;UWV}5@% @9u5(@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ$@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$4@Ru 4@+D$øT$4@3øvÐ0TCNL$0TC:L$0+L$0L$0 L$0 Ã@ÐT$Ì@@(#)assign 5.3b of Jan 21, 1988@@@@@/devasglock/etc/atab/etc/utmpassign%s: Bad key -%s Please wait %s: Can't set lock %s: Can't create control file .%s: Can't read %s %s: %.14s: name too long Permission DeniedNo ttyNo utmpBad utmp read%s: %s de-assigning %s -d%s assigned to %.8s Device %s doesn't exist Can't assign %s assigning %s nrmt%-4s FREE last assigned %s%-4s owned by %.8s at %.8s since %s Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec(@,@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF!B+B+!B+*B+B+B+B+!j!B+v!!B+!!!!!!!!!!B+B+B+B+B+B+B+B+B+B+B+$B+(B+B+B+B+B+B+B+B+B+B+B+B+B+B+B+B+#B+B+B+B+B+B+B+B+B+B+* "$&(" "B+B+"B+B+#B+B+B+*B+:#B+B+#-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@(@(@H@0@@@(#)libc-i386:csu/crt1.s 1.13.1bS03.1bS0@(#)libc-i386:sys/chdir.s 1.13.1bS0@(#)libc-i386:sys/chmod.s 1.1@(#)libc-i386:sys/chown.s 1.1@(#)libc-i386:sys/getgid.s 1.1@(#)libc-i386:sys/getuid.s 1.1@(#)libc-i386:sys/creat.s 1.13.1bS03.1bS0@(#)libc-i386:sys/setuid.s 1.13.1bS0@(#)libc-i386:sys/alarm.s 1.1@(#)libc-i386:sys/pause.s 1.1@(#)libc-i386:gen/setjmp.s 1.13.1bS03.1bS0@(#)libc-i386:sys/fork.s 1.1@(#)libc-i386:sys/time.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:sys/fstat.s 1.1@(#)libc-i386:sys/stat.s 1.13.1bS0@(#)libc-i386:sys/unlink.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:sys/read.s 1.13.1bS03.1bS0@(#)libc-i386:sys/wait.s 1.13.1bS0@(#)libc-i386:sys/close.s 1.13.1bS03.1bS0@(#)libc-i386:gen/i386_data.s 1.1@(#)libc-i386:sys/ioctl.s 1.1@(#)libc-i386:sys/lseek.s 1.13.1bS0@(#)libc-i386:gen/mall_data.s 1.13.1bS0@(#)libc-i386:sys/open.s 1.1@(#)libc-i386:sys/sbrk.s 1.1@(#)libc-i386:sys/write.s 1.1@(#)libc-i386:sys/signal.s 1.1@(#)libc-i386:crt/cerror.s 1.1@(#)libc-i386:gen/cuexit.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:sys/read.s 1.13.1bS03.1bS0@(#)libc-i38usr/bin/deassign100755 3 3 51630 4201205753 10414 37777777777 L! B x@.textB .data@@ C@.bss8@8@x.comment`8OÐET8@RU RP PmBjÐUWE 8E M3@G=/u =duـ?u`ME G=dt=ut=vu$@4@(@W5@h@; jAY}tE 8=-tE@E @5@0 Y|@x@5@Y5@/<Y=@t!5@5@jKY}Ã=@~5@5@ UEjjt@Ejje@EjjV@EjjG@EhE}u9jtYj5@ =u j@Yj@YEP6YEtmuj?uj?uj?uj?EM~ h@ 5@h"@ j@YjYEU=@t-jj5@ ; k@|HhSWs5 }3ƹ<3h^ jE=5@5@hW@; jYfEftyEPEP|eE= uZEtEP5@hj@ :jh@S jEPC$P E%C4jt G;tu]u}3UWV}W|-Y|jWh@ u| =ruGNju}UW@G$EPY;E=@tG PY@E@ Wh@juu u3t+uh!@=@t@uh+@.G PWuh=@=@tuhX@hb@Y53ÐUuYPYUWVS<@d@GF҈uEk@~@<@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW<@]u}UW}G 9E |E R0ˆG GE R0‹GNj}Ð33Ð33Ð/ÐÐ3ÐUPWE ED @uD @t* D @h8 @uuy D @ t }ËU9Er=@u>E`@PX.Y@E\@EX@E EURu+ËE9`@sˣ`@P5@0@UWVSX@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW\@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu\@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u X@|?=@t6SW5@/ SVW/ S5@V/ ]u}ÊEGFUKuUWVS}u ]X@E9E|R=@tIuW5@~/ uSWq/ uVSd/ u5@VR/ ]u}ÊEGCFUMuӐ03ÐU}u3jYEh(jy/EEE}t6E9Ev)EE&E+EEEEEMuj,/hd@YuubYljUYE}| uj.} }}}t EEP YEE2Ujhd@EøÐ/ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}Ð6.t3Ð T$tÐUW(E+@EEPY=@iGQiWkW<E=|@u=@uWEPEP< |@E@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<@E@ƙ5@Ep@}| FFFtmnEN}|ۉ5@}=@ƹtmn=nu f@3 u@+Fu@;}f@G@5@@@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~PhX@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E @E @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁@@v@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G L@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W L@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}8@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø~ L$tÐUW( @ WY;=H@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG L@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G L@+G?}3W L@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G L@+G?}3W L@+W;}WY3UWV}G G u}}&u@@GW L@*h!YGt@O G WL@GGVYtG uO @u}G @WRL@UWV}G L@+G}G L@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET=,@u<0@ ,@,@ 0@ @0@@,@ @(@E@3؋=@E&;5 @,@E@E=w=(@jY @@;t?3Ee ƹ3tL3+‰EEE2 @+(@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5(@ @0E+E- @@;t @ @ @,@~Љ@;5@v@$@@ 9=(@u @(@G(=@95(@u=(@7tލ;r;l%;UWV}5@% @9u5(@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ$@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$4@Ru 4@+D$øT$4@3øvÐ0TCNL$0TC:L$0+L$0L$0 L$0 Ã@ÐT$Ì@@(#)assign 5.3b of Jan 21, 1988@@@@@/devasglock/etc/atab/etc/utmpassign%s: Bad key -%s Please wait %s: Can't set lock %s: Can't create control file .%s: Can't read %s %s: %.14s: name too long Permission DeniedNo ttyNo utmpBad utmp read%s: %s de-assigning %s -d%s assigned to %.8s Device %s doesn't exist Can't assign %s assigning %s nrmt%-4s FREE last assigned %s%-4s owned by %.8s at %.8s since %s Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec(@,@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF!B+B+!B+*B+B+B+B+!j!B+v!!B+!!!!!!!!!!B+B+B+B+B+B+B+B+B+B+B+$B+(B+B+B+B+B+B+B+B+B+B+B+B+B+B+B+B+#B+B+B+B+B+B+B+B+B+B+* "$&(" "B+B+"B+B+#B+B+B+*B+:#B+B+#-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@(@(@H@0@@@(#)libc-i386:csu/crt1.s 1.13.1bS03.1bS0@(#)libc-i386:sys/chdir.s 1.13.1bS0@(#)libc-i386:sys/chmod.s 1.1@(#)libc-i386:sys/chown.s 1.1@(#)libc-i386:sys/getgid.s 1.1@(#)libc-i386:sys/getuid.s 1.1@(#)libc-i386:sys/creat.s 1.13.1bS03.1bS0@(#)libc-i386:sys/setuid.s 1.13.1bS0@(#)libc-i386:sys/alarm.s 1.1@(#)libc-i386:sys/pause.s 1.1@(#)libc-i386:gen/setjmp.s 1.13.1bS03.1bS0@(#)libc-i386:sys/fork.s 1.1@(#)libc-i386:sys/time.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:sys/fstat.s 1.1@(#)libc-i386:sys/stat.s 1.13.1bS0@(#)libc-i386:sys/unlink.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:sys/read.s 1.13.1bS03.1bS0@(#)libc-i386:sys/wait.s 1.13.1bS0@(#)libc-i386:sys/close.s 1.13.1bS03.1bS0@(#)libc-i386:gen/i386_data.s 1.1@(#)libc-i386:sys/ioctl.s 1.1@(#)libc-i386:sys/lseek.s 1.13.1bS0@(#)libc-i386:gen/mall_data.s 1.13.1bS0@(#)libc-i386:sys/open.s 1.1@(#)libc-i386:sys/sbrk.s 1.1@(#)libc-i386:sys/write.s 1.1@(#)libc-i386:sys/signal.s 1.1@(#)libc-i386:crt/cerror.s 1.1@(#)libc-i386:gen/cuexit.s 1.13.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(#)libc-i386:sys/read.s 1.13.1bS03.1bS0@(#)libc-i38usr/bin/bc100755 3 3 73210 4201127255 7201 37777777777 Lf! J+E @.textJ .data @ @+J@.bssx6@x6@E.commentxvÐETx6@RU RP PIjÐU z9Ea9E~ @a9 @Gz9 @6i9Euf9 @u Ew9Euh9 @u E f9Euo9 @u E ds9Euq9 @u EAr9Eue9 @u Eb9Eur9 @u Ed9Eue9 @u Es9Euc9 @u Eb9Eu a9 @ti9Eub9 @u E~o9Eub9 @u E^d9Eui9 @u E>a9Euu9 @u El9EuDe9 @u7E @E=a| z9E~E @Eøq9Eu(u9 @uha+@IYhx2@g>Y4GŋE-a @>@멸09E| 99E~A9E|F9EE>@oE=/Q=-tV/="=!Cj!h j= @;EtE @E j-hj- @;EtE @E  @=* @~=*ur @=/u @WE @ @>@=+dj+hj+ @;EtE @E =.% ==tE=<ju4j>h j= @;EtE @E E @ @U>@9 @r&h*@Yha+@!Yhx2@?;Y DwE="u @ @}PE 9Et 9Et\9EU @;EtE @E UP>@@9>@|ha+@qYhx2@:Y\C6@h2@>@n56@9Y>@>@>@ >@h*@5>@76@u(h*@Yha+@Yhx2@ :YBÃ= @}'6@}56@Y6@P@ @E @9EtE뭡>@@>@;>@*U EEEU` @E=d @tDuuh*@9 /m@9` @r h*@Y` @` @U EEMǡ` @` @E>@U=d @tuh+@>@9Er m@9EruYËEE0YE8uUuY` @>@h+@kYhx2@8Y @6@ @ @Uh+@<YuTYu h+@%hx2@A8Y @U졸>@9>@~ >@+@5>@>@@Puh!+@hx2@7Y @6@ @ @ @ @` @>@U5>@uh9+@j>@>@h=+@uh;+@5>@j>@>@U5>@uh@+@j>@>@hE+@uhC+@5>@j>@>@Ujjm?E >@EHE>@=>@u 6@h2@>@>@>@P>@=>@u 6@h2@hH+@5>@`46@uhJ+@[Yha+@_Yhx2@}6YJ?Uha+@?Yhx2@]6Y*?UE-aE @UE-aE @UE3E9E=?t=ct=dt =luEEhx2@5Y>hc+@u u E=u}t}u E @g+@}t/ME }t E @v+@u uM9>EPY u;j8YuYu8Yu8Yu u\=j8YuGYu8Yu8Yjh+@h+@h+@bjh+@h+@h+@IU WVSXr@m@\r@o@`r@dr@hr@lr@pr@5Xr@\r@`r@EXr@rh+@Y]u}ËE>@E(@E==pr@}pr@} pr@Epr@E|Z9E|NE @Epr@9!@u2pr@>@>@EE=lr@3 lr@(E$@E==pr@}spr@} pr@Eh @vh+@Ylr@T=pr@Opr@wOYh+@ @4L @h+@5>@w5>@j9w5>@h+@YuYuh+@{hx2@2Y @ @ @h+@Y @3 @h+@jh+@7j h+@jh+@7h+@jywh+@7j`~wE-aE @YPh+@w7j*Hwh+@w7wh+@j$wE-aE @YPh+@ww7wE-aE @YPh+@wj$h+@ @H @+$ @4L @jz h+@ @4L @5>@wjQoh+@ @4L @5>@h+@j&Dh+@ @4L @5>@h+@jh+@7j h+@w7h+@jh+@7j h+@w7h+@jh+@7j} h+@w7h+@j_}G>@ph+@j>\h,@j*Hw7h+@YuYuh+@khx2@/Y @h,@wwjwwwjw5>@h+@Yu,Yuh+@hx2@/Y @h,@wwjewwh,@wwjEw5>@h+@YuYuh+@hx2@.Y @h ,@wwh ,@wjwh,@7j>@,@>@,@>@,@>@,@>@,@>@,@  @7wjU s>@hh,@7wj1Oh ,@7wj6h",@7wjh$,@7wjh',@7wjh*,@7wjh-,@7j h2,@7wjh4,@7wjlh9,@7h6,@jQoh;,@7wj8Vh=,@7wj=h?,@7wj$hB,@7wj wE-aE @YPhD,@wjwhH,@whF,@j7hO,@7hM,@j}7hV,@7hT,@j`~wh],@wh[,@jA_wE-aE @YPhh,@whd,@wE-aE @YPhb,@wj wE-aE @YPhp,@whl,@wE-aE @YPhj,@wj wE-aE @YPhx,@wht,@wE-aE @YPhr,@wj' EwE-aE @YPh,@wh|,@wE-aE @YPhz,@wj h,@jh,@jh,@jh,@jyh,@jeh,@jQoh,@j=[h,@j)Gh,@j3h,@jh,@j h,@jh,@wE-aE @YPh,@wjh,@wE-aE @YPh,@jj7h,@jT r7h,@j> \7h,@wh,@j >h,@wh,@j">@,@7h,@j wh,@7jwh,@w7wh,@jwE-aE @YPh,@wh,@7jgwE-aE @YPh,@wh,@w7wE-aE @YPh,@wj ("h,@wj h,@wj h,@jh,@wj 7h,@j h-@7j h-@w7h-@jah-@7jK ih -@w7h -@j-Kh-@7j 5h-@w7h-@jh-@jh-@jh-@jwE-aE @YPh-@j @ @ @>@_ @ @>@ @f @ @R @>@ @ @ @ @ @[9 @u @a9 @u  @{9 @|&h -@Yha+@"Yhx2@@%Y . @ @ @ @$ @wE-aE @Y>@>@0-@>@1-@ @ @3$ @J75>@uh9+@j >@>@h=+@uh;+@5>@j>@>@Y75>@uh@+@j>@>@hE+@uhC+@5>@j>@>@YwE-aE @Y>@-w=zld$L(@EE9uU9PuEE8| Epr@9uE@E}3C}ulr@=w |$<(@Edr@@UE}E+ЋF>@E+ЋڋE@E@@E9E}E @EU9!@|E@ @Ec}E+ЋF>@E+ЋڋE@E@@E9E}E @EU9!@tE@ @EE`r@\r@5Xr@dr@1(@U}|49E}*E @9!@uE @U{p@s~)v*ÐUPWV9p-@ueE9|-@}#E |-@ =-u E Au u}ht-@E |-@4u |-@΋E |-@ p-@=-@:tWu)=x-@tOLjEE E 0xYPE 0j) hX-@]YPhX-@j( jEPj( E |-@ p-@@p-@u|-@p-@?F=:p-@@U |-@tp-@@U |-@-@|-@@|-@;E|l=x-@tOLjEE E 0YPE 0j/( h4-@zYPh4-@j( jEPj( p-@?GE |-@|-@ -@p-@8E |-@ p-@@p-@up-@|-@-@*'L$Q3ÐUPWE E2@u2@t* 2@hx2@uui 2@ t }ËUWV}uWi!YG uG tO G Dt1h2@"u}F @tVjY;55@rGGG tG 5@+GPwG P | GG듸9tO O G tg aUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuU5x6@E Pu Ð;&&t3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  5@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlt/@Dž\9PtP؉PNKPPoYh~PW =uh~Ph/@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}|6@E|6@E1@s3UtE]|6@E1@E1@E2@r5E 2@r,2@E(2@AEH2@s6EE]@)EEP2@r݋EE 9P܃}t؁|6@6@v6@EX2@t6@r05}fEf fEmE]mE܉E@0Ee `2@];r&=5|+|6@u|6@1}tCF0N<9|6@]Ћuԋ}ËEE0]@EEsEE 9P EEEE02@MU]vEu}fEf fEm]mE܉EFUR0EMm]E82@E5@2@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 5@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 5@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}x6@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3Z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W5@UWh2@;=5@r3}ÃG uUWh2@ WY;=5@r}UWV}tlG t6G t3WVYG PY}X6@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 5@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 5@+G?}3W 5@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 5@+G?}3W 5@+W;}WY3UWV}G G u}}&utr@|v@GW 5@*h!YGt@O G W5@GGVYtG uO @u}G z@WR5@UWV}G 5@+G}G 5@Wu};7}7𐐐3ÐUX6@EEPhTu } EX6@3ø6ÐÐU WVSE9ET=l6@u*@A*@D*@G*@J*@M*@P*@S*@V*@Z*@^*@b*@f*@ j*@l*@n*@p*@r*@t*@v*@x*@z*@|*@~*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@>@ } } } ^!Z(dVO)JtK$$\][XYW/'g.,*#+-hc.! ,*b+`-%%._<.,*r+,--!ef.&/,*+-$x$/L!/s/MN!/%.5%,*!+-"AU!U5!/U "5 U  !0 "A   U1= "  Q"STRQ"FBSTRv"STRQ"STR346789:;?@v"6789:;STR.34,*+-6789:;346789:;/?@6789:;6789:;6789:;HIDE6789:;6789:;HIDE6789:;6789:;P2a.>CG,*+-ijklmnopquwyz{|}.~,*+-/.,*+-.,*.+-/,*+-/u/./,*+.-,*+-//_ ll 1 lllllllllWClllllll llll##r(tkOlllllllllllll=9_/llllllllvll!!!llcg,e_[ P.sx OK*9                ;{ ~-(? _ ;+-*/%^=[((=(==~(((),[())}(=[====[[){]]),[))(;<>   ));=])]]]) )=},v XijktttSW`pqr,-w{=@"#$%&'EGIKMO*)b7Xijk>FJN?HLPVTsu5689:; RlnX4bU_x|<Q^+YZcdefgh]a(ACmo!./0123<BD ! !y)[\)z  CgGr/C   #<Un5Ng ,F0DXl/Mixi "@Vt   %9 AA  0 1 2 3 4 5 6 7 8 9 10 11 12 13 14abcdefghijklmnopqrstuvwxyz.string space exceededrcannot open input filebundle %d elements at %o bundling space exceededroutput(%o) []s%s teletypec[%s on line %d, %s]pc SLs.0SLs.rcannot open input fileqdcl/usr/lib/lib.b/usr/lib/lib.b/bin/dcdc-/usr/bin/dcdc-yacc stack overflowsyntax error0Qps.[]Ps:ls;:QQ0Q0QkKkiIioOofYc s.s. S+-*/%%^=><!=!>!< 0!=+- 0-*/%%^;ld1+sl1+dsl1-dsld1-s;d1+:;1+d:;d1-:;1-d:Kd1+kK1+dkKd1-kK1-dkId1+iI1+diId1-iI1-diOd1+oO1+doOd1-oO1-dolxlx . . .l.ldsldsd:;d:ZX?vLdkKdkdiIdidoOdoKIOlprogram too big: option requires an argument -- : illegal option -- -- 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFf'&1&1r'&10&1&1&1&1'N'&1Z'~'&1''''''''''&1&1&1&1&1&1&1&1&1&1&1)&1q.&1&1&1&1&1&1&1&1&1&1&1&1&1&1&1&1)&1&1&1&1&1&1&1&1&1&10'),q.''&1&1'&1&1i)&1&1&10&1)&1&1)-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@z@z@5@z@|@3.1bS03.1bS05@z@usr/bin/bdiff100755 3 3 45110 4231442704 7667 37777777777 L~! < D @.text< .data@@ =@.bss8*@8*@D .comment8JÐET8*@RU RP P<jÐU8 +@9E| 9E~ h@b Yh@E pu"h@E pu h@) Yh@E pu E(&@jjE p PEh@E pvu E(&@jjE pW PED+@ 9E~yE P =-uE P B=stNE p YD+@=u h @U Y9Eu+E P=-uE PB=su %+@+@+@uhP uhP uuj:YuuPuuPTuuj*:YuuPJuuPhh+@YDž^Pd @ t +@h8@ YuhPo t D+@9|/Yh+@[YDž^P @ t +@he@# YuhP t D+@9|8/YPY}(>3Y23Yh@YTuy 3Yj3Y Y2Yjh+@hh+@h@h@ j2Yh@h@h*@R h*@Y2Yj&C=0|=9P`YPh@ hP] u-YP`-Yt"h@h@h*@{ h*@FYD+@+@hh+@Yh+@YUPWhH+@YE})uux +@u hu uu,-Y}UPjjhH+@VPEuE Ph@ uhuH uu,YhH+@YUPlE= t=,t=at=ct=duEPh@ E*EPuE+@Euh@P E8uU졨+@@P5+@h@) u u5+@h@ j>uju5YUP+@@Ph@ +@Eu uLu5+@h@ j ԐUWV}3k G-0=0| =9~܀?t u}ËUWVS}u 3k G0‹=0| =9~މNj]u}ÐUWVh W3t VW 3G|܋u}UE<@t]hD@z)YPhD@j2 E4@Z)YPE4@j2 hP@:)YPhP@j2 ju2u Yjh@2~jj]2=j.YP2YUWVu(Y@PSYjuVY h*@VYP }3u+ f*@fuVh@h*@ h*@Yu Yu u$| Nju}h @u搐UWu u!1 9*@ub} uuh @h*@K 69E uuh2 @h*@* uhH @h*@ h*@Yhl @u\Nj}UuYu3ht @ht @-Uuy Yth| @u 3UW*@=t-= t>=t=ts=us @ @~*@uh @WH fu&Y@PcYjuWi }*@uYPh @W # @*@u 5*@h @W WY}ÐZ+d$D$␐UWVS}E GF҈uOuE]u}ÐUWVu&Y@E-=/u O;}wE=/tE.E@Eu}ÐU+@+@jh!@j. =+@t?jh!@j. 5+@}%YP5+@j. jh!@j. jh!@j. uA%YPuj. jh"!@jx. +@@tjY+@ t u+@Y+@%?t(=t=uh+@ YjYP.Y!@ÐUEUPjj .Etuj-$!@@$!@=u$j`.PB.Ð)R.ÐUE PuUWVS3h0!@'#YEuE5!@j/utD!@E|PuW u |P_*@=td=t$= tV= t8=u2FwBVYDž|E!@|DžxTCwt *@ hlpø9x|*@xxt|xBM t ɉ u|Ph(!@lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U58*@u u` ÐUWVS} 3G %=utG9Gu!?uG DuWB%Y 3G L)@UG u;u!YEPuG P+ E]u}WY$Y=u~GEU+Ѕҋ~SjuupEt E+EH؋)G?}3W L)@+W;}W%Y}t*G @tW#Y=u ]VEgUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V L)@+V;}V$Y}u +gEEv&*ÐUWV} S t?F EF F F3҉VL)@=at=rt=wt3u}ÀN jju$ N G=+uf N ȸ*)L$Q3ÐUPWE ED&@uD&@t* D&@h8&@uu D&@ t }ËUWVS}u ]GF:u Nj]u}M}3UWV}uW"YG uG tO G Dt1(&@"u}F @tVY;5H)@rGGG tG L)@+GPwG P | GG듸9tO O G tg aU}u3jYEhXj9'EEE}t6E9Ev)EE&E+EEEEEMuj&h<*@YuubYljUYE}| uj&} }}}t EEP YEE2Ujh<*@EøÐ&ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu W ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸;%%t3ÐUWVS}3%uYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!%Ð%3Ð$3Ð $3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  L)@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu " E}E+F)EF;EvF =2tVwYF Dt*F uuj E+EP` tVoYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}Cl4#@Dž\9PtP؉PNKPPoYh~PW =uh~PhX#@ 3W YkUjuuuu u#Ujuuuu uU$WVS}T*@ET*@E%@s3UtE]T*@E%@E%@E%@r5E%@r%@E%@AE&@s6EE]@)EE&@r݋EE 9P܃}t؁T*@*@v*@E&@te*@r05}fEf fEmE]mE܉E@0Ee &@];r&=5|+T*@uT*@1}tCF0N<9T*@]Ћuԋ}ËEE0]@EEsEE 9P EEEE%@MU]vEu}fEf fEm]mE܉EFUR0EMm]E%@E5&@]UWVS}}~bG %=utG9Gu?uG Du WzYu)3u!G L)@UEE ;ur;u s 3]u}ËG9GreG urRVuG P6 ;tO |3؋3u WfY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuuE  )G?}3W L)@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}8*@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3. ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUW(&@;=H)@r3}ÃG uUW(&@ WY;=H)@r}UWV}tlG t6G t3WVYG PY}*@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG L)@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G L)@+G?}3W L)@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G L)@+G?}3W L)@+W;}WY3UWV}G G u}}&u+@/@GW L)@*h!YGt@O G WL)@GGVYtG uO @u}G 3@WRL)@UWV}G L)@+G}G L)@Wu};7}7𐐐63ÐU*@EEPhTu } E*@3ø6ÐÐU WVSE9ET=,*@u<0*@ ,*@,*@ 0*@ *@0*@*@,*@ *@(*@E@3؋=*@E&;5 *@,*@E@E=w=(*@jY *@@;t?3Ee ƹ3tL3+‰EEE2 *@+(*@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5(*@ *@0E+E- *@@;t *@ *@ *@,*@~Љ*@;5*@v*@$*@*@ 9=(*@u *@(*@G(=*@95(*@u=(*@7tލ;r;l%;UWV}5*@% *@9u5(*@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ$*@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$4*@Ru 4*@+D$øT$4*@3øÐ0D=NL$0D=:L$0+L$0L$0 L$05Ã%3ÐÐ*@ÐWT$ä@@(#)bdiff 5.3b of Jan 27, 1988%W% %D% %Q%diff/tmp/bdXXXXXarg count (bd1)--both files standard input (bd2)--non-numeric limit (bd4)bdiff: can not write to temporary file (bd7)bdiff: can not write to temporary file (bd7)cannot fork, try again (bd3)cannot execute '%s' (bd5)%s'%s' failed (bd6)%c %s%c%d%da%d,%d %d,%dd%d wr\@p@@@@@@@@@@SIGNAL: (ut12) Illegal instructionTrace/BPT trapIOT trapEMT trapFloating exceptionKilledBus errorMemory faultBad system callBroken pipeAlarm clockdump.coredirectory `%s' nonexistent (ut1)xcreat`%s' unreadable (ut5)`%s' unwritable (ut6)`%s' unreadable or unwritable (ut7)xopenpipexunlinkno file (ut3)`%s' nonexistent (ut4)directory `%s' unwritable (ut2)no space! (ut10)write error (ut8)errno = %d, function = `%s' (ut11)ERROR []: /bin/shPATH:/bin:/usr/binsh 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFF%%R%t$%%%%q.%:^%%%%%%%%%%%%%Q"%%%%%%%%%%%%%%%%_%%%%%%%%%%y$Q"%%%%I%%%$%%%_-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@3@3@H)@3@|5@3.1bS03.1bS0H)@3@usr/bin/bfs100755 3 3 65634 4201127261 7377 37777777777 L! \,d)`@.text\ .data`@`@,`]@.bss+@+@d).commentkÐET+@RU RP PE\jÐU4WVS} uEEEEEF;]t u2 u N+@u=d0@uj)A+Y]uċ}ÍEEh0@3Ex0@^ux0@N;} F؃*t\u ={t};]uGE9Etj**Y댋= =$=*=.=[=\F= =(=)L=n6={2}WEEREEЅ2j,*YG=d0@u NG+@E9E j$)Y}E=E=uE;Et= GmG;Es GEE 9h0@| j+C)YEEh0@GGh0@h0@E9E3GGUJU EF؃\uGkNFE0|:95kE -0EF؃\t,uظ9E~j (YQj(YDGUԈ,DF=}t j-a(Y}u GUԈ;G%W; j.&(Y /1|*9%1;]| j(Y$GGӈ}GGӈEEԸ9E|EF؃^u EFEt u j1'YAÀt6}t0EG ;EsiGE EEԸ 9E|-}F؃]u @GÀtb}t\EG ;Er j2&YGE EEԸ 9E|EЋE%@E9]|]؋Ћ%@F؃]}t EE }t 9Eu EG(E2E4EE9E|'UWVS}u =x0@t=l0@VWd]u}=u4F;uVW8t =l0@ËG8u3VWuًG8uUWVS}u EF-|=)w|$@FG;͋G8뿊볉=p0@]u}GEU@# oEGEEu%EU@#t3U3X F<+@F<+@FEVKYUV?YF P0YEFPYA+@UF+@+EEPWu/ E+@UF+@+EEWߋG8uG;tFqGEU@#uރ HEGEEu%EU@#t3U3uO;=t0@VW;wG;E+@ +@u G;Eu+@ +@u=+@}G둊G+@ +@uGEU@#G+@ +@uˋ"GEU@#t+@ +@uσ=+@}G"GEEuEU@#u3U3+@ +@u?GEEuEU@#u3U3u+@ +@u=+@}G>EuWu\- tVWt 1E+;s3!NJGO+@ +@u;UW}G%+@=u N+@}%++@U9E| 9E~h@j."jhQY0@/@9Eu@jh'@)EHU ЋF@RyYtjQYjKYF@EEjhD@hC@h@x0@0@hL0@2+Yh jEPh!@jr!h"@(Y@@uYUjhL0@*U=@u$x@= t != ud3@d9p@tl=p@u=@t h$@I(Y@jjjPj@P"Yih&@j$ju^|:E@ =gt.==tJt=!tLU= uYÃ=@ujuh(@j uYuoY=:[uY=etR=P<=@u2-=@uu0Ynh'@jZ3@N=fuY5=vt6=ptV=ku%Yu1 Y=@ujuh)@j =quiu&$t:$Y=xt@=wu9uY=@uut Ymh*@jY=@th+@j~Y=@u=@u@3Yth@j9G;3US=a| =z~h@j]ni= th"@j3ujjj5|0@jjui t뫡0@ӋMI |0@ 3US= th"@jg3ujjjjjju t ]óa!0@Ӄ<tPh@Àz~3UW}= th"@j3u#jj5|0@5|0@jjuy t ËExPW_PYGE;x3U= th"@jW3tjDYU-b|_=wX|T$@uVYuYuoYulYuYuYuYh@jU4WVS3jj5|0@5|0@jjuP t = uh@je]uċ}=zu =C@t3=nu6=C@tjjjEPjuiEPjjj PEPju?jjjEPJREPj=}jjjEPjt ;= th"@j3th@jl5|0@EPj Udjj jEPj ujjjjjjuth@EPt@أ@@h @EPt @h @EPt@3h @jUdWjjjjjju-t}A= tEG= uE;uh @j"EPjUdWjj jEPjujjjjjjut }À}u69t@uh @j5t@;Yt@O9t@th @jqhEP}h1 @jIv=t@3iUW= tj Y|@= th"@j3ujjjjjjut }É=|@3UWS=0| =9~h> @j]}0Y= tM=\u 7=!EPY} hM @YjJYEj?YEp@Ej:Yu#Yj:YuYu9Yu9YS@u/Yj9Yp@3G$kd8G@:= ukd8G@8=@tEEp@jv9YuYud9YuoYuR9Y@x@ 3UlWVSjj jEPj ujj50@jjjutÀ}uhW @j5F@EPthd @jhEP}hx @jd놋t@|@E@E5t@|@@ @$K@@ K@ExPWPZYGE;xր=@t5$K@5 K@h @> V7Yt@E|@E@3Ujj|0@@P|0@@Pjju?t u`YU = th"@jI 3ujjj50@jjutËEph @zUjjjjjjuU@@h @j uY=@u=@u@3UWd9p@tx@ j Y|jj;d9p@t =@t'j52@h @h @h @FjT;Y=p@tj6Y5p@YW5YG|jh @h @h @j;Yjjx:hC@O1Y;u=C@h jS:=p@td9p@u,4@<4@u=@t=@u h @Y3}UP}u|0@E}uEEEU9|} h @u  ËE8}'@U A UE@U A U E9}BUP@ME9P| 0@9P9P| 0@9P~} u(h @u p gEЋR9P~%} t Jh @u > 5}t EP|0@3UWSE@ =,t%=;tu ua}Nj]}U UB 3؄}h @u = u E@  UB 3UWSu uV} Nj]}K=,t=;t3܋EP|0@ EX u uUPWS3 = t =7 =/8=+t~Y=$t += s> E@U A 0@4='G u u=-t =,=.E@U A |0@=3ta!=1tX =0tO=2tC=5t7 =4t.=6t"=<t?-=9t =8u uV=;m=?t "=>u](Pu u) $=^u;E@U A |0@Juu uNj]}3UWu &Y} }ËE@U A <3UEEE U<0| E=9~݋EEPN YE|Eh @uUPWVS3=+uFNz ؀+t-t܉u}= uE@U ‹Zj6Y~0E8|(@U ‹u uc-E@U ‹U3]u}UPS =a| =z~h @u ]60@Ӄ<uh @u ֋EBU0@Ӌ E@U 3UPWVSK U;u!jjEPhh3@u E=/t=<t)=>t=?u3 333E@ =;uEX|0@EBUjVWShh3@u 'URM}]u}3U WVS}tE@E50@EEHE0@EjhE@hD@u F=u.}h @uË}*PWhD@PSuU;u΃}u}uUh @u뗋}3PW]hD@Ptc;}uȃ}t Jh!@uI5UWS=p@u'=F@th!@uød9p@u 2@0@jj5p@^- u h!@h(K@ jhE@hD@h(K@=u녍F= u;hD@Ptx@ d3@3>GW5p@uh$!@u) UPWSE} = uFE=\u=@u qGlE=\u=@t S׈GL}t"V?U;uE=\u_$3]};} u U;tLjG]_Zh4!@u\U=@,E=,tS=$t6o=tK= h;!@YhV!@tYhx!@dYh!@TY=hc!@9Y=*t(=)h!@Yh!@Ys=+uah!@Y_=1t,7=.tB=-u;h!@Y9h"@Y,h,"@Y=2u h;"@Y hY"@Y=@u hd"@|YU}t&@tu hg"@U hk"@FY=p@tFh4@EЋ Yp@x@ d3@@@@U=d3@d3@x@ød9p@u=@u @h4@EЋ Yp@=ujW.Y=@u&=p@u=@t=@t hn"@XY@9p@u =@u$=@uhx@5p@:Q@9p@u=@t @@Ud9Eu(E 2@2@҈u< 2@x@ 3ju u# =tu>(Yx@ 3ӸUWVSEE؍EDž0@x0@DžEE2@0@EEl0@ l0@p0@9l0@r݋EHEE%p0@u1Y=|@=\u&hp"@u 2@hq"@Vv=0| =9~#hr"@jh"@uh"@-0kd8G@PDžp0@p0@EhC@uh"@uD2@u2@0@}W52@,i3t u}ËUW3EG<uNj}UWV}u FG҈uNƋu}UWV}u Gu u}F;t3鐐)'Ð'Ð*'L$Q3ÐUPWE E'@u'@t* '@h'@uu '@ t }ËUWV}G tG t wA%Yg E GuaO }8uHK@PO@GW *@GGu}G XS@WR*@G W*@V!YtO @U}u3jYEhl7j &EEE}t6E9Ev)EE&E+EEEEEMuj%h/@YuubYljUYE}| uj%} }}}t EEP YEE2Ujh/@EøÐ%ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu W ENj}ÐU5+@E Pu Ð;$$t3ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  *@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVKYF Dt*F uuj E+EP` tVCYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl$@Dž\9PtP؉PNKPPoYh~PW =uh~Ph$@ 3W YkUjuuuu u#Ujuuuu uU$WVS}/@E/@E&@s3UtE]/@E&@E&@E,'@r5E4'@r@'@E<'@AE\'@s6EE]@)EEd'@r݋EE 9P܃}t؁/@J0@vJ0@El'@t 0@r05}fEf fEmE]mE܉E@0Ee t'@];r&=5|+/@u/@1}tCF0N<9/@]Ћuԋ}ËEE0]@EEsEE 9P EEEED'@MU]vEu}fEf fEm]mE܉EFUR0EMm]EL'@E5T'@]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G *@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W *@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}+@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø~ L$tÐUW|'@ WY;=*@r}UWV}tlG t6G t3WVYG PY}l+@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG *@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G *@+G?}3W *@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G *@+G?}3W *@+W;}WY3UWV}G G u}}&uHK@PO@GW *@*h!YGt@O G W*@GGVYtG uO @u}G XS@WR*@UWV}G *@+G}G *@Wu};7}7𐐐3ÐUl+@EEPhTu } El+@3ø6ÐÐU WVSE9ET=+@u<+@ +@+@ +@t+@+@p+@+@t+@|+@E@3؋=p+@E&;5t+@+@E@E=w=|+@jYt+@@;t?3Ee ƹ3tL3+‰EEE2t+@+|+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5|+@t+@0E+E-t+@@;tt+@t+@t+@+@~Љp+@;5p+@vp+@x+@p+@ 9=|+@u p+@|+@G(=p+@95|+@u=|+@7tލ;r;l%;UWV}5p+@%t+@9u5|+@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹx+@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$+@Ru +@+D$øT$+@3øvÐ0,]NL$0,]:L$0+L$0L$0 L$0 Ãl+@ÐT$d@@(#)bfs 5.3b of Jan 27, 1988 @7I) Hy5WcW D @555555555 55555*arg count[^%]*% *bad commandcan't opentoo many linestoo many linestoo many linestoo many lines%.0fLine too long--output truncated %s syntaxRE-syntaxbad comd listbad comd listbad mark%c bad commandsyntaxsyntax01syntaxno fileno diversionalready divertedcan't createdigit requiredTry againno file nameno change indicatedcan't create%.0f %d /bin/shsh-c/bin/shsh-t! adr countrangeadr1 > adr2syntaxbad numbad markundefined markRE syntaxnot foundnot foundjump on tty^: *%s$label not foundsyntaxRange endpoint too large. Bad number. digit out of range. Illegal or missing delimiter. No remembered search string. () imbalance. Too many (. More than 2 numbers given in { }. }expected after . First number excceds second in { }. [] imbalance. Regular expression overflow. RE error. ? %s ? *usage: %digitcannot open %ssyntax 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFZ;EEf;EDEEEE;B;EN;r;E;;;;;;;;;;EEEEEEEEEEE=EeBEEEEEEEEEEEEEEEEs=EEEEEEEEEED;=?eB;;EE;EE]=EEEDE=EEs=-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@hS@hS@*@pS@T@3.1bS03.1bS0usr/bin/dosrm100755 3 2 63454 4300345157 7754 37777777777 L# ND*@.textN .data@@O@.bss'@'@D*.commentgÐET'@RU RP PuNjÐU EE C@j/0)C@u E C@C@h@5C@@"u3EE G@E E U‰Ej:u!Et EE}t Eu3EŜC@5G@u5@h$#@5 Yj~MY@UŘC@UŜC@@@9@u 5C@h@h$#@ j2MYM7EeEEj*E4ŜC@ uYj?E4ŜC@ uAuEPuE4ŜC@4ŘC@ME衼@9E|jLYEuEPuE4ŜC@4ŘC@ =uU8juEG@@ PGYEPuujh@E0uu EPuoEu*}t h@YuFYuIYj/u tj/u ['EEE EЋE=*uaj.u 3'EtMjh@E@P& u5}t/h@uYEPYE=ytE=YMuuԍEPuutuԍEPuuEuEYuHYUu5@h$#@ ÐU9E ujjuF Eu uIE}}uh@h$#@7 jJYhh'@u@ E=t uuh@h$#@jBJYE'@E@%@EE@PE%URYEE@PE%URYEE@PE%URY}EG@H@G@UUPE@PE%URYG@BG@UP UR PUPURPd@G@JM d@Pd@ G@RQ PEUE%URUd@G@JM d@Pd@ G@RQ PUPWV} d@G@JM d@Pd@ G@RQ PG@@ PCYE}u7jh@uuh$#@ h@h$#@jHYhEd@0-Y PG@@ PWu: hEd@G@BPY PG@@ Puu 3#7U2;tuEY3u}FG@@ ;ru\EYUW} d@G@JM d@Pd@ G@RQ PhNd@0=Y PG@@ PWuJ hNd@G@BPY PG@@ PWu }UWVS} uGEF=/tjh@V! uh@V<>tbuEE=/tE8uEuuVWu2EuE3]u}ËuƊӄ҈mEU(WV} ud@G@JM d@Pd@ G@RQ Ph@Vth@Vuu uЋ}ÍEPEPV& EEu EG p@GP1Yu6E-G@Bd@BYP(Y EhEuܡG@@ Ph)@u'EGE)@u E,EPEPE)@P^ t E9EtHEE衜G@@9Es}tuuE؃}u9E 3EEUU슊)@ E 9ErދEUЋ{d@@EPY EhEuhh)@u#EYE)@u E>EPEPE)@PZ tE9E@=p@t2EE9Es}tE졜G@@ 9E};UEEE EE%=E@EU;t E=?uEEE=*EE9E|E@EEEEEEU;tE=?t EuEEE=*uEE9E|3UWVS]} uE3EzE=.u-h@S*th@St E@EME<tD5 @tEPYU EЊ  E9Ex9Eu!E=.uE EE 9E|EEREEÀ8taEE5 @tEEP7YUEUӊ E}t9E| EE 9E|E]u}UWV}G@pO=h@9uE3u;rou7jh@uuh$#@ h@h$#@jF@YuE3uСG@PU3E‹u};v3+¹3+Ud@G@JM d@Pd@ G@RQ PE-G@Bd@BUWV}u ǹ33t%V%V ‹u}UWVS}u G@xu7jh @uuh$#@ h@h$#@j>YG@@EG@G@@d@+B@3ҋM1@EVStC;]r;]u 3]u}Åt SVWG hVS8 UWVS}u VWjVW Ë]u}UWVS}u ]ǹ33t#%Ӂ ˆ%%%V ˆF]u}UWV}u GNuu}UPjuu8 }h/@uYjl=YYuu uU E;Et)E9Eu4@9@PuYj,=YYN9EuUWVS}uG =u3؃uu}tzh?@Ym}u"t=.tYGPWh^@ E}tuGPWh{@ 't0WVu - uGPWh@| 3]u}øUWVSE@P`YhEWbE-G@Bd@BYPTY PG@@ Ph1@u]311@tK%=t.t 3]u}FG@@;ru WTUWVS}uEEt@jj:G@=thj:}ut GPDYVS؁rVu hEE%Phh9@u OEƂ9@hNE%Phh9@u 5G@j#:t@t3]u}UPWVj/u EuE EEuh@u u .F3h@u `u.F.F33&E8t=.tFU E FG|ՋE=.uE3E8tFU E FG|݋u}Ë FG | FG |UWV}uEEj/WEEuuWVu u6Wh@uuh$#@ h@h$#@ j9YFPYE~u EWF %=uFPYU6Wh@uuh$#@d h@h$#@R j8YE/FEuu V E}u7jh@uuh$#@ h@h$#@ j-8YEEuuE9EruuEu7jh@uuh$#@ h@h$#@v j7YhVuE-G@Bd@BYPY EEu}UWVSd@G@JM d@Pd@ G@RQ PExu3VE@P+Yu0E-G@Bd@BYP"Y EhEuhuu *3T3(E%FrӁEhEuhuu GG@;xruuE9E33]u}ád@@PbY EhEuhuu j3.E%tuUЋFrGG@;x rzUd@G@JM d@Pd@ G@RQ P} tG@9Pu E%ád@@3t E%ߋE%Ud@G@JM d@Pd@ G@RQ P} tG@9PuE3ád@@3tE3ًE3Ujj4t@Ut@jj3G@=thj3U5G@j3t@UW}G%W W  ‹}UW}G% ‹}UW3EEϋU ~}UEEU EEU UuYj[3YUu uh$#@ h@h$#@j)3YUWVS} uG}t=Pux@x@U;@9x@u ju=|@t;= t1j x@x@U;@9x@u juY u |@B|@Pux@x@U;@9x@u ju^NuE]u}ËE+Ux@x@U ;@9x@u juU} uI=|@t@j ux@x@U;@9x@u ju|@=x@t85x@h;@u0 ;x@th@h$#@jE1Yx@UPWVuE HUЉU)|~ ~ }t 3u}F;uvҸU E PqYEPUEPUEE@-PEEPBUP UE%fEE%f EE %f EE%fEE%f EE %f EEUPUPUPUPU WV}EEG@xu7jh3@uuh$#@} h@h$#@kj/YG@@EG@G@@d@+B@3ҋM1@WEEPuE9ur䡜G@UPU‹u}UWEE=#@1h#@4Y=uE9E3} #@#@=#@Wj 5#@uVEtE+EE)#@#@=#@}3#@#@(&@+#@;} h#@6)Y}MMEEeUWVX@@9&@s &@ Ek E-0GE5 @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl @Dž\?E2ETMDžl @Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE5 @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h<"@YEt Eu =8"@t3txEE"@8"@hK"@EPJuEP;jEP|>h~PW =uh~Ph4 @ 3W YkUjuuuu u#Ujuuuu uU$WVS}DC@EDC@E\"@s3UtE]DC@Ed"@El"@E"@r5E"@r"@E"@AE"@s6EE]@)EE"@r݋EE 9P܃}t؁DC@C@vC@E"@tUC@r05}fEf fEmE]mE܉E@0Ee "@];r&=5|+DC@uDC@1}tCF0N<9DC@]Ћuԋ}ËEE0]@EEsEE 9P EEEE"@MU]vEu}fEf fEm]mE܉EFUR0EMm]E"@E5"@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G (&@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W (&@+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}'@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW#@ WY;=$&@r}UWV}tlG t6G t3WVYG PY}&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG (&@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G (&@+G?}3W (&@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G (&@+G?}3W (&@+W;}WY3UWV}G G u}}&uG@K@GW (&@*h!YGt@O G W(&@GGVYtG uO @u}G O@WR(&@UWV}G (&@+G}G (&@Wu};7}7𐐐3ÐU&@EEPhTu } E&@3ø6ÐÐU WVSE9ET='@u< '@ '@'@  '@&@ '@&@'@&@'@E@3؋=&@E&;5&@'@E@E=w='@j Y&@@;t?3Ee ƹ3tL3+‰EEE2&@+'@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5'@&@0E+E-&@@;t&@&@&@'@~Љ&@;5&@v&@'@&@ 9='@u &@'@G(=&@95'@u='@7tލ;r;l%;UWV}5&@%&@9u5'@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ'@Nj]u}WV|$ t$L$Njʁ^_øÐT$'@Ru '@+D$øT$'@3øvÐ0\ONL$0\O:L$0+L$0L$0 L$0 Ã&@ÐT$Ô@@(#)dosdel RTS 5.3c of Aug 10, 1988+@dosrmdir%s: too many files Bad FAT (duplicate inconsistent)File not found ???Are you sure? (Y/N) Usage: %s [-r] device:path G@Cannot open "%s". Cannot read "%s". return = %d Floppy is not in valid DOS format.*.**.???......Floppy is not in valid DOS format.Floppy is not in valid DOS format.seekreadwriteCannot remove root directory. "%.8s.%.3s" is a directory. "%.8s.%.3s" is not a directory. Directory "%.8s.%.3s" is not empty. ...%s does not exist%s is not a directoryRoot directory fullNo space for directory write failed on output Floppy is not in valid DOS format.Unknown error: @@@@@@ @$@6@H@X@k@}@@@@@@@@@ @@+@?@S@d@s@@@@@@@@@@.@J@c@r@@@@@@@@'@0@9@Q@h@|@@@@@@@@@@ @8@V@l@}@@@@@@@@@ @@&@/@8@S@p@@@@@1@X@a@j@s@|@@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@@@@@"@;@E@U@c@r@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF-77-767777--7--7%.5.5.5.5.5.5.5.5.5.77777777777L0747777777777777777/77777777776T.L0f24O.T.77H.77/777!77/77/-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@O@O@$&@O@XQ@3.1bS03.1bS03.1bS0usr/bin/calendar100755 3 3 1612 4201127271 10341 37777777777 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # @(#)calendar.sh 1.3 87/11/06 # calendar command, uses /usr/lib/calprog PATH=/bin:/usr/bin _tmp=/tmp/cal$$ trap "rm -f ${_tmp} /tmp/calendar.$$; trap '' 0; exit" 0 1 2 13 15 /usr/lib/calprog > ${_tmp} case $# in 0) if [ -f calendar ]; then egrep -f ${_tmp} calendar else echo $0: `pwd`/calendar not found fi;; *) cat /etc/passwd | \ sed 's/\([^:]*\):.*:\(.*\):[^:]*$/_dir=\2 _user=\1/' | \ while read _token; do eval ${_token} # evaluates _dir= and _user= if [ -s ${_dir}/calendar ]; then egrep -f ${_tmp} ${_dir}/calendar 2>/dev/null \ > /tmp/calendar.$$ if [ -s /tmp/calendar.$$ ]; then mail ${_user} < /tmp/calendar.$$ fi fi done;; esac exit 0 /lib/calprog > ${_tmp} case $# in 0) if [ -f calendar ]; then egrep -f ${_tmp} calendar else echo $0: `pwd`/calenusr/bin/clear100755 3 3 50760 4201127313 7703 37777777777 L! :@.text: .data@@:@.bss1@1@.commentPQÐET1@RU RP P9jÐU<h@/YEEEЍEԉẼ}uj|9YuP=tj[9YEPh@t1@EPh@\Eȃ}thDh@YPu }uP8Y3UPEPju A |EUPWVS}u ]uu-3]u}=$u G=<tKF׊ Gt?u׋Eǀ?tG=>uUWV}W=nc=bstT=ns=pttsEjuh@h @WE'@E9E3u܋}jEP '@p` t=uFtz3jEP '@@ t= uFtF3jEP '@p0 t&= uFu3_ '@,u G3@EU1U W}E juh@hD@WE'@E9Eu}ËEUPUWV}u Ejuh(@h\@WE'@E9Eu 3u}ËEU Mt>tu6-u8-Y@EŐUWVS}3EE '@@,91@t '@91@uE*@t!k G-0*@uk =.u:G*@t -0G*@uEG=/u E=*tۃ}tu =>u#Gt '@xt"}uNj]u}ËCPUYuVZUW}t>=1@1=$uG=<uuu W GPUY?u3}ÐUPWVS}'@xu} '@%E}~ 9Er]u}ËEE&@ '@t 3ۋǙSU YO3먐U '@rt& '@nPhT '@lP/ 3UWVS}G%%؁u tu]u}ËЋU<WVS}uh@'@e)YE}t Eu'@EDž}t EhE'@')Y>V*Y@u)YЁ~f '@VP)P)YЋ/FFU /FuVd)jP2} 91@}VhN'@P)P/)YЋEVuV(jP1}c 91@tjhc'@ tf '@#f '@f '@}t Euh2@m(hP:( ,Yf '@B9uf '@'(2@WTY9uW7YW'YWYWYWYDž='@hl,Y '@tyj[,Y'@t\jJ,Y'@t?h6,Y'@<@9'@t 5'@.Y5'@.Y5'@.Y5 '@.Yf '@}u  '@P0Y_'@ '@ 8@'@<@'@<@'@<@x9s Dž2@uP+Y}t Eju '@P '@ƀ'@'@'@ '@ǂ3҉9E uu c*YuE  '@fU fl5 '@ǀ3ffffhjP Y '@ '@3f@ы '@Bƀ '@ǁj4jP. '@nPhT '@lP) 3 '@ '@n JHJHJ H fJfHWV, '@@5'@G;sFӁu;s+PjV^ tG'@'@@:W6Y;s"} fffu;s#+ùEPjS Phju ?( =t0t&t'@ffPffDžDžhw'@/"Yh}'@"Yt&Y~'@ffPt%Y~'@ff'@'@?WY;s'} Ëu;s#+ùPjSV Wy* '@%=uK '@f '@t& '@PhT '@lPn& 3 '@xt'@'@3҉ '@@+ '@P5'@5 '@) '@@( '@R+P5'@ '@@P) '@l '@R(+P5'@ '@@(Pv) '@L'@DžS$'@ ɉ t '@&@ p 9| '@4'@@=u '@xu fPf| '@f@DžT0'@<t04Wu '@&@ 9r '@ǀDž4'@ ɉ tM~04t39u@4 '@u '@&@!9G '@ '@J\tJhxJx|3UEǀǀ3ffffhjP U '@t& '@PhT '@lP" 3U '@nPhT '@lP" 3ÐUWV3EHmƹE}uEU MJ4uuEU MJ4u E}}EH }~E@;~u}ËE UPUh(@h-@"h2@ '@4'@h-@ h(@h-@ÐUPWVS}E*@uJG*@u=+t =-u EG*@u 3]u}ø0+Ëk 0+G*@uރ}t뾋븐US] -@}h-@Pp]á-@-@ӈ琐UPWEEE@ uE@ t(EH uuu  E@ t }ËUPWVS}] u}GN}E]u}ÐUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}Ð!$ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  0@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl*@Dž\9PtP؉PNKPPoY Ek E-0GE*@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl*@Dž\?E2ETMDžl*@Dž\EE C~u~E܉TMs؍gh݅H )@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H()@u+-hJhE*@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h,@YEt Eu =,@t3txE,@,@h,@EPbuEPSjEP |>h~PW =uh~Ph*@ 3W YkUjuuuu u#Ujuuuu uU$WVS}1@E1@E,@s3UtE]1@E,@E,@E@-@r5EH-@rT-@EP-@AEp-@s6EE]@)EEx-@r݋EE 9P܃}t؁1@1@v1@E-@t1@r05}fEf fEmE]mE܉E@0Ee -@];r&=5|+1@u1@1}tCF0N<91@]Ћuԋ}ËEE0]@EEsEE 9P EEEEX-@MU]vEu}fEf fEm]mE܉EFUR0EMm]E`-@E5h-@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G 0@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 0@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}1@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW-@ WY;=0@r}UWV}tlG t6G t3WVYG PY}1@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 0@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 0@+G?}3W 0@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 0@+G?}3W 0@+W;}WY3UWV}G G u}}&uA@E@GW 0@*h YGt@O G W0@GGVYtG uO @u}G I@WR0@UWV}G 0@+G}G 0@Wu};7}7𐐐3ÐU1@EEPhTu } E裀1@3ø62ÐU WVSE9ET=1@u<1@ 1@1@ 1@1@1@1@1@1@1@E@3؋=1@E&;51@1@E@E=w=1@jY1@@;t?3Ee ƹ3tL3+‰EEE21@+1@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή51@1@0E+E-1@@;t1@1@1@1@~Љ1@;51@v1@1@1@ 9=1@u 1@1@G(=1@951@u=1@7tލ;r;l%;UWV}51@%1@9u51@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ1@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$1@Ru 1@+D$ø!T$1@3øÐ1@ÐT$@@(#)clear 5.3b of Jan 27, 1988TERMpcclli      n ijk    lopmqr&5   %)*./ 024361ABDEFGHIJKCN9;?TPM<>QRU@V87=XLOSY:WZ[]^_`abcd\' fe!"ghwstxvuz{|~}y+#(,$- "@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@#@#@#@ #@ #@#@#@#@#@#@#@!#@$#@'#@*#@-#@0#@3#@6#@9#@<#@?#@B#@E#@H#@K#@N#@Q#@T#@W#@Z#@]#@`#@c#@f#@i#@l#@o#@r#@u#@x#@{#@~#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@$@$@$@ $@$@$@$@$@$@$@ $@#$@&$@)$@,$@/$@2$@5$@8$@;$@>$@A$@D$@G$@J$@M$@P$@S$@V$@Y$@\$@_$@b$@e$@h$@k$@n$@q$@t$@w$@z$@}$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@%@%@%@ %@ %@%@%@%@%@%@%@"%@%%@(%@+%@.%@1%@4%@7%@:%@=%@@%@C%@F%@I%@L%@O%@R%@U%@X%@[%@^%@a%@d%@g%@j%@m%@p%@s%@v%@y%@|%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@%@&@&@&@ &@ &@&@&@&@&@&@&@!&@$&@'&@*&@-&@0&@3&@6&@9&@<&@?&@B&@E&@H&@K&@N&@Q&@T&@W&@Z&@]&@`&@c&@f&@i&@l&@o&@r&@u&@x&@{&@~&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@&@bwamxbxsxneognhckmhsindadbmimsosesxthzulxonx5iHCNRNPNDcoitlilmsgpbvtwsNllhlwmaMWbtblcrcsctclcecdchCCcmdohovileCMvendllupvsdcdldshdasmbmdtidmmhimmkmpmrsousecaemeteedeiseuevbfffsi1isi3ificalipkbkakCktkDkLkdkMkEkSk0k1k;k2k3k4k5k6k7k8k9khkIkAklkHkNkPkrkFkRkTkukeksl0l1lal2l3l4l5l6l7l8l9mommnwpcDCDLDOICSFALLERISRUPpkplpxpspfporpr1r2r3rfrccvscsfsrsastwitatsuchuiPK1K3K2K4K5pOrPacpnkBSXRXSARAXNXFeALOLF@1@2@3@4@5@6@7@8@9@0%1%2%3%4%5%6%7%8%9%0&1&2&3&4&5&6&7&8&9&0*1*2*3*4*5*6*7*8*9*0#1#2#3#4%a%b%c%d%e%f%g%h%i%j!1!2!3RFF1F2F3F4F5F6F7F8F9FAFBFCFDFEFFFGFHFIFJFKFLFMFNFOFPFQFRFSFTFUFVFWFXFYFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfSCDKRCCWWGHUDIQDTOPUfhPAWAu0u1u2u3u4u5u6u7u8u95MS7)  @8'@ 8@<@<@<@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS'@'@'@'@(@+(@_(@t(@/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFz:#:#:#":#:#:#:#b:#n:#:#:#:#:#:#:#:#:#:#:#:#:# :#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#:#" :#:#:#:#}:#:#:#":#2:#:#-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@I@I@0@I@LK@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0usr/bin/cu104111 5 2 223264 4243357464 7256 37777777777 Lލ" x\> 3H@.textx .dataH@H@\>H@.bssE@E@ 3.comment%ÐETE@RU RP P-jÐUDžxDžtDžpDžlDžhDždJ@E@J@F@J@G@J@H@J@I@@h @hT@hT@jYj8jYth @hA@jYYjjYth- @hA@͡j3YjiYthL @hA@觡j YJ@k @J@J@J@I|=ntZ=ht4=dt^=?p @ @@hh @DYEPnY=e=x@tE 0h| @hA@ j&Y|@=luyl/@J@g=st=M=ouW=|@tE 0h @hA@` jYx@#h@/@J@=tu t@ho @u u" |=E9/@} =/@h=/@htEEE /@ MuY`h @u9`t =J@t EJ@Bht"uE 0h @hA@ZjYd=J@uppt)=@~E 05@hA@ jwY5J@Y=;|)=@~hr @5@hA@՞ j;YhJ@hTj5 u3J@J@t J@ K@J@t J@K@J@t J@K@J@t J@K@J@t J@K@J@t J@K@J@%T@J@% T@h$jh$jh$jxdtJltE 0hs @hA@臝 =h@tE 0h @hA@g uC hJ@$[YT@5T@SYE@=E@tDDP5T@bufHfT@ fT@h5E@ەT@]PYt5 PӬY}%=@~h @h @hA@襜 =T@}6=@~T@4@5@hA@o T@PY=@t 5T@+Yh"jjY=@~h @h @hA@ hl#jh#jh$jh"jj=T@~S@5@9@|T=:t=>C=>u3؃t jS~jjV hS}5=@~S5@hA@J h@YjqYE3= udV*Y=@~h@5@hA@ن =@h@h@hA@謆 ~<+RPV< +ЋE Y5T@CY==@~h/@h@hA@( jAYh@跄Y3ijP Y=@~h@h@hA@Յ =@~u5@hA@超 =@~5@hA@蔅 jPU9@|uh0@hA@U }u=J@thJ@hTj hJ@hTj 9Eusf%J@?f J@ f J@f%J@f%J@=@u f%J@ f J@=t@tf J@f J@J@J@9Euf J@f J@hJ@hTj 8UWV3 %};F|=@t hA@Y=@~hH@5@hA@ Nju}U E}u3EE@EEЋM l@9 J@5T@OYt jCYuM3ø9E@u9@u/ K@۸9@|3he@hI@hA@c huu E|}~EUJ@Ul@}~(EJ@J@% K@P K@3BU9Eu3T@9EuEG@EEU9J@ru(Yu3ËEJ@J@ K@U 9Eu3T@9EuEG@EEU9J@|9E@9@u^=@~h|@hf@hA@ j9@|uh@hA@ j 5T@uUYYEJ@+EPuu> E]EUJ@ËEUJ@3UPW}WIYEPW5T@ ;Et!=@~h}@5@hA@ }Uh"jh"j@U9@|uh~@hA@軀 j!}P9Eu PYËEU9@|uh@hA@n j 5T@uYUP9@|uh@hA@- jjjjEP!Y=@~h@h@hA@ 9Eu}EP&YËEUh#j@U9@|uh@hA@ 5T@蟏Y=T@~7T@P5E@JxjhT5T@Ž 5T@cYjO!YjYuYU|=@~uh@hA@~ =@~"jju~ Ph@hA@~ EPhTu; }0E@Euh@EP' E裄E@EPC}YÃ=@~EPh@hA@k~ =@~EPh@hA@K~ =@~EPh'@hA@+~ =@~EPh3@hA@ ~ =@~EPh?@hA@} =@~EPhK@hA@} EG=@~uhW@hA@} =@~EUPh]@hA@~} E9E|=@hh@he@hA@M} UWhK@uY| =&K@ugEhw@hi@KEtCujEPz uYEEt*j EP詎tE y@&K@jWu G}UPWVS9Eti@9EtE@;t jh@ƹ2tjh@j @]u}Ëù R0ˆEjEPj詾 ù2ujh@j芾 C;|E@UUUE>@uuu \/EU EE>@u֋EU EEuዅƅHh@h@<E}t~XHP Ph@ Po{=|/ tEtEP P贌t"ƅHuh P6x uuuYHPu 7EPu ЖUWVS}u ]EPK@T=\u1G=Dt!=TuuV_uSu7EE EE8uGG?uEPK@]u}EEUE҈uUpWVS}u E@;~v3y9@|vh@hA@Gy ~uFF@h@wv FVWCЃE}E37Yt=9@|3h@hA@x T@ h@y7Y룃 ; 9EvaY=u69@|vh@hA@[x T@ >9@|vh,@hA@%x F=/tvh@@P艉 vP蹯jhH@>PYhT@ YtNܵY9@|jhJ@hA@w hm@h`@T@ hTj-j 蓈Y=$U@t%9@|jhu@hA@3w jjP~EP:YjPcEj.Y}}x9@|Ph@hA@v 9@|5E@h@hA@v h@h@T@ 襴Y=$U@9@|jh@hA@Lv jjuuu %Pjubu }=9@|5E@h@hA@v uYT@ "u/Yt>uY9@|Ph@hA@u T@ jhTu jv 3YPnYPu 9@|hT@h@hA@Ju 9@|wh>@hA@(u whT@6=EPEPj@ l9@|jhC@hA@t T@ j20Pv =}C9@|vhW@hA@t h@hu@T@ 9~uFF@4wv P]P4Pu8P-P t=T@}| uޱYp5Yh@d2Y~ph(U@=E`UWVS}u ;uGC;u?tuً]u}UPWVS}u ]9@Wh@hA@r K@=#trK@= tdK@= tVK@= tHSVhK@ Et2>t-t)W6薄uBVY YE]u}hhK@DfB3UpEE pY=u69@|E ph@hA@r T@ ËE ph@EPh h@E ph@EPLE ph@EP5 9@|EPh@hA@q 9@|EPh@hA@gq 9@|EPh@hA@Dq =@~EPh@hA@%q =@~EPh@hA@q =@~EPh@hA@p E p t.YPjYEPEPEPEPE}|Bjuu E ph(U@\=@~?jh-@hA@sp )E pY=@~jh8@hA@Hp EGUEEjh@@}EP9YhT@NYtP9@|hO@hB@hA@o uYuYuYT@hTjmu蚧YkE9EsEP趀Yju ӱE}Z9@|9u hW@hA@Jo "9@|uh@hA@&o T@ \9@|u hf@hA@n u6Yt5uY9@|u hr@hA@n T@ juENuYt5u覬Y9@|uh@hA@^n T@ 9@|uh@hA@2n juuZ uYEPuu@ EE9EtSj)Y9@|5E@h@hA@m uYuYT@9@|jh@hA@m u褫Yjh@ϯEP苫Yju踯Ej~YujY}}A9@|h@h@hA@m T@u-YGjju&l %Pjul EUpWVDžDžDžE P=/tE ph@P~ E pP5+@3E@PjPLM }0h@+0T@DYtC7OY9@|Ph @hA@k T@ +@3E@jjD t8jjD tjjkD ufh-@C/t ?JYt *JYt JYT@+@3E@jG }h5@.9@|ph<@hA@{j 9@|-hj@E pP> PhR@hA@Aj E P=\E PB=xt3E PB=Xt"E PB=otE PB=OurE p>9@|h@hl@hA@i h@h@T@LYh3EE P:=\u GU B=Nu 0GU J90GF} E P:uPphT@@zY9@|jh@hA@h h@h@t GYt GYt GYT@KYQhTjjyY+@3E@3_VF tF 9+@VY=jFRj yYG|jxYt FYt FYt FYh@z+T@JY>j{xYh@?+t ;FYt &FYt FYT@/JY+@3E@UPWVS}u ]E^G= t= t= ut8EGGt= t= t = uE9]|E]u}UPWVSE8=\GG=7t?K=3t6=1t- =0t$u=2tl=5t =4t Z=6uSE=st/=nt=bu,F: F4 F.=ru F!=tu F\FFFG?,EE8 ]u}=0|%=7e-0EC+=|у}u \FNFFUC느UWE9@|uh0@hA@d 9@|u h=@hA@yd EPhTu u:jhTuˢ 3fEfEfEfE%E} ~@}fe}t3 f E=|@tEufM P=x@tAEt(=@~j5@hA@c jYfMfM fM0=@ufe=t@tfMfeEPhTuܡ 1hhq@5E@hp@hV@tjYE 9uGE?u}}$jZhM@uhL@hB@.j;YfEfEUEPhTu= u%EufMEPhTu UW}WƠYtjhTW }US]hM@hT5\U@̠ uh9@|Phz@hA@)b =Rt@=St=Xu-M@=tM@hM@hT5\U@` ]M@=@tM@@hM@hT5\U@. UPhM@hTj EM@% fM@f M@f M@ EUhM@hTj̟ ÐUW}@u7臤Pj h@h@rmPh@h@hM@rWhM@h@ =uhhM@}YWbYt;/hM@}Y9@|h=@h!@hA@` }WhM@h@" uWY3UWV}EjW躢E9@|Wh>@hA@7` 9Eu?9E@t9@+5E@hN@hA@_ j EPu蕗 uY t-9@h@h}@hA@_ EPXYEju¢t 9E@u19@|h@h@hA@O_ u}ø9@|uh@hA@ _ 9@|Vh@hA@_ 9@|Wh@hA@^ W{Yt-9@uh&@h @hA@^ Y3WUPW3 9@|jhP@hA@sN u YÃ}t]W@tTh[@u?`u@9@|jh_@hA@N hi@YPhd@u @ 뉃}tBn@t9hq@u_u%9@|jht@hA@M Eظ9@|jhx@hA@M }?=\3G=ct[=d =Mm=E:=DuSS YGu-9@|jh@hA@L E9@jh@hA@L l+~(u+RPu xظ9@|jh@hA@KL E+~(u+RPu Dظ9@|jh@hA@K j\Y+~(u+RPu ؃=pj@u*9@Cjh@hA@kK *9@|jh@hA@EK f xj@htj@hTu 裉 9@5E@h@hA@J =K+~(u+RPu ظ9@|jh@hA@J u Y?=Tt.=N C"uSSIY=\C=p=m=e+~(u+RPu ظ9@|jh@hA@I E[+~(u+RPu gظ9@|jh@hA@:I j GY+~(u+RPu 2؃=pj@u*9@jh@hA@H 9@|jh&@hA@H f%xj@htj@hTu }?9@|25E@h6@hA@VH =su C \CCG?}t C+~ u+RPu -9@jhP@hA@G hUE U}tuu u ø9@|OjYu EhS@P-9@|jPhA@>G uu u@ ;Et3뀋E U = }'^U M @EE9E|ZU WV}u jYu3EhT@WYhTj;EEU}ts9@|*E= }_@a@Ph\@hA@!F 9@|PE= } E @EPhb@hA@E !9@|jhe@hA@E jEPW@ =tj-VYjEPW@ =t u}jVYe}ts9@|*E= }j@l@Phg@hA@6E 9@|PE= } E @EPhm@hA@D !9@|jhp@hA@D EU;EE9EM3&U#u|YPu u4_ u3E E uԸU EPKXYEPYXYEk@dUBEj;u._EE@>@h@h@E@PD =} @k@<@ETEh@{YPuh@W^ t7h@{YPuh@7^ u E9P|h9P^EUE?E4@T{YPuE4@] uEU9PuEEE<@uE}uE>@*}tiEE>@uEPEPh@uZC=|LE9EtD9E}7E9EE9E~/j,uaTEtEE83ËE9EɸUPEEE=0| E=9~ EE8uۋEÐU(EEؠ@Eܦ@E@EUE@E@E9@|h@h@hA@A Ext3jh@pU\ uEPR@ EP@ExtPUE@E@EPYE9@|uh@hA@BA EÐUW3uk@$Sutk@@k@@k@@k@@k@@9@|uh~@hA@@ 3}Gk@cU}uE E3U}u2E9@|uh@hA@7@ jUY9E t7u .[YE}tT@Pu8u ~Yu~Y3UPEPuu u#UWV=dS@u;hhS@uth@uu}dS@`S@@`S@=duu) Y=tŃ=pS@~ pS@9Ewjuu u,38j5pS@E Pu+;5pS@t }BipS@)EpS@9Es}t6juE Pu+;ut| %EU3U$E}u`E E+@3E@E 0-Y=tE0-Y=uh@E 0D3Uu 0Yu i!Y3U}DE E9@|jh@hA@= 3ø9@|$EP}t@ @PhA@= EPhSE 0| =uc9@.E 0h @hA@V= }9@EPh: @hA@ = EPEPOujhSE 0o{ =u-9@E 0hX @hA@< EPjEP n9@|EPhw @hA@< EPhSE 0z =u.9@|E 0h @hA@?< gjEPu9@Bh @h @hA@; &U=+@+@9+@u h @P@M 9@| +@4(,@PhA@; +@4(,@u 跿9+@u-9@|h @:YPh @hA@=; ø 9+@uuY5+@h @PL Pu :5+@u h!@PbL9@|jPhA@: 9@iu S9YPh!@hA@: HUPWV+@3E@u#YH|C=w<|8$T@!@,'!@%.!@7!@?!@J!@ S!@3tQ9@|Vh[!@hA@9 u(Y=t5f=t%?t+=u|g!@zu}þh!@kz!@d!@]=uQq!@O=tA=u:!@8!@1=@t= u!@!@=u!@!@9@|Vh!@hA@,9 ]jju, ECuuc#=u)9@|Ep h!@hA@8 uYUWV}WpY@PFwYt WV`pƋu}U W} EPuT=uu7Y}ÁtDE#;t8R1U;u E#;tF1U;uE#;u3E@ 또UuYUu uyUEH=$&@jS@4!@%RjS@4"@ RjS@4#@QjS@4!@jS@4"@jS@4#@uh'@hj@H h'@hj@7UU#@3"@!@h<'@h%'@nEtP8h>'@P8IEuuhA'@p t EPu=!@uMhJ'@Y!@=!@u*hh'@5!@ho'@h`'@\jiY!@="@uMh'@>Y"@="@u*hh'@5"@h'@h'@jY"@=#@uMh'@Y#@=#@u*hh(@5#@h(@h'@谹j轵Y#@US@3S@%@3$@h=(@h%(@YmEtyah?(@PGEuuhB(@ t3hK(@jwGEu uhN(@ t ,Pu UE EQulYUЉUE9EtWE@= uIEHEE 9EtEE@=\u&E@ uE +EPu1 uE+E UPu lYPu uN uukYE E u#3ËEuu Et-E@E j:u EEuuu Eu3UPS@S@*S@S@US@-S@=}hV(@jEEuS@UES@+j=E0DE} E@EhY(@E0Duuh!@ha(@E0Duuh"@hi(@E0Duuh#@yhq(@E0iDuuh$@mQhu(@E0ADuuh%@E)E0hz(@hj@C h(@hj@=EE-S@=} E8UE tEEÃEE8uh(@u ƅE=/th(@h(@PB uPMjPuDPYUE8u&hSh(@0h(@h(@Nj[YEh(@jCE}L,UE tEEÃEE8uh(@u GuYUE8u&hjh )@0h(@h(@辴j˰YEh(@jCE}uU=S@t 5S@:jYS@S@=S@t 5S@jYS@S@YU=S@t 5S@iYS@S@=S@t 5S@iYS@S@U=S@t 5S@iYS@S@U=!@uh)@uvYY=S@t 5S@AiYS@S@=S@u 'u35S@u u, t۸U=S@t 5S@hYS@S@#=S@t5S@hYS@;S@/h%)@S@4!@fS@tS@S@ RU=%@tS@<%@u3u S@S@4%@u8> אUPWVS}u }>@W}tSuf=uo\G=tJ= t== t0= tG= t:= t-=\t^Sh<)@W< JnGDtG>bG8rG2fG,vG&\u}tSu<u\GGӈF5E]u}ÐUPE}u3EE8t>@u}tڋE8t҃} u-j 0iYE tEE @@E=\ueEE=Ot8=Xt=ot*=xijhn@E@EPw U Bjhn@E@EPX U BE xu}u %kY E 0phn@pgU BE U EEEEEE8tG}u->@t0E=9t#E=8uE>@uEt!9EtE>@u$E8thD)@hA@(E 3ME UE>@t E-0.E>@tE?@E-7MU U}ue9E~6E-0+UUʺJ#‹U MIM E@҉Uu4E UJU$}t3EuE UJUM}~ E9E}uho)@hA@'3}uE+EPE EPu EEU EEMu +EUEEU E EMuU}t$}tE9Esh)@hA@1'3Ã}u&ueYEuh)@hA@'3uu u,i EUDuYu3jjiEEEdTEEEȉEEPhSu e }ujRi+@3uj7i(9EtE@+@3hE H~=sk$)@jjb#EE uuPj(j##EEtuuEtuE@ PEuuEPE@P_bjj"EKE6uu} #jjP"E Euu>j$j"EEtuuEtuE@ PEtzűE@P}djjj!EtWEtuu|aE}+@u}h0*@h Su'] E}uh6*@hSu] jjEaEEEPhdTjEPuu ujauY\Yauj`(9Et'+@E@u\Y#t)EEGEԉGE؉G E܉GEGEG=*@uIjjM:+@k+@8Pj*@u+@u[YkE8*@Ћ(MЉL$MԉL$M؉L$M܉L$ ML$ML$ML$ML$ML$ ML$$Vu60|jhSua[ }u*Y+@F0 +@F0EUPWu[Yu }jjY_Et w]Yt w]Yw]Yw]YWYuhZYuj _3뛐U$WVS} EuYu+@ 9C(u+@]Ћuԋ}Ã{,trEPhSu7Z E#}oC 9u=^9Efu- V= KC$<*@C EECEEEE}EEPEPEPuE}% 9E@+@9EuE}>}utEf#}t Et`E}uQf#JE}tf 9ErG{,uA~u}t E~t }tf C0+@C0EG{,t+@E@G#uuuuSC EEECEC+EEECCEEEPEPEPuE}+@9EuE}t%+@E@GC,]EC+@ CUWVS} kE8*@Ћڸ9C(u+@]܋u}jj[ESu^ CEGFFGF FEt!FPwuwu FFEt!FPwuwuY FF EC EEEEEjtG3PEPu}!+@ujZjSu uujZujZ3U WVS} EkE8*@Ћڸ9C(u+@]ԋu؋}Ã{,t+@ ދC EECECEECEEPEPEPuE}- 9E@u +@ +@m9EuE}t+@E@89Eu= t4= uuuuS +@ 9EF F9EtG9E9FwG 9F v+@ vEFPw=X FGv EFPw"X F Guuw X EGG$3C+@E@G%U(WEu>Yu }ø9G(u+@jj!XE؃,t/G 9u#G EEGEGEEGEu2YE}ujWu9Et!ujW+@JG EEGEGEEGEEPEPEPu~E}!ujFW+@9EuE}t+ujW+@E@ujVG,EEܸ 9Er Eܺ 9t+@E@GUf'4G0+@G0&9G4u G0+@ G0+@G0O4} tME 9E~+@ E U܋JH uupU E UPU܋JH3U,WV} EuYu+@ 9F(u+@ű}ËFEEt E EEEFEEE؉}E؉E;F$vE@F$EEt E@ E@E܉EEEԉEuEPEPu}-E9Eu8 9E@ +@!E)EEԃ}[F0+@F0E+EU(WuYu }EEGEEEEEEPhSuO E} 멃,u}9EEE܃,t/GE= t(}t"Eܺ 9uUG,E܋U؋E- |p= wi|e$h*@"@}t} }t$}~+@E@G3U@uJG>@u=+t =-u EG>@u 3]u}ø0+Ëk 0+G>@uރ}t뾋븐UZIÐUPWV9/@ueE9/@}#E /@ =-u E  Au u}h/@E /@4u /@΋E /@ /@=/@:tWu!=/@tOLjEE E 0(=YPE 0jG h/@ =YPh/@jG jEPjG E /@ /@@/@u/@/@?F=:/@@U /@t/@@U /@/@/@@/@;E|l=/@tOLjEE E 0E<YPE 0jF hh/@*<YPhh/@jF jEPjF /@?GE /@/@ /@/@8E /@ /@@/@u/@/@/@ÐUWEE=A@1hA@Y=uE9E3} A@A@=A@Wj 5A@uEtE+EE)A@A@=A@}3A@A@D@+A@;} hA@@Y}MMEEeUWEE EP(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V D@+V;}V?Y}u +gEEvÐDÐ( DÐUWV/@ 2@9E@s E@DÐUPWE EA@uA@t* A@hA@uui A@ t }ËVCÐWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuhA@d UPEEPu uI UW}EEEljEEWF7YEE2uu EP }ÐUWVS}u DžS@S@ S@W=~*uDžF DžDžk -0F>@u؃u DžÉ=lt h9uF؅[uPV>@tDžl?@؃nt_=S@uVctQ[tLS@} W@ Y GG>@u S@WV=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfS@fl9uEEPS@{EEPS@dEPWSt'=S@tu /$Fu >@td=S@uS@} W Y GG>@u S@W=uS@y%uF؃%S@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$;@EE EES@}WyY3]u}ËGG=+t=-t =0t8EMS@} W(Y GG؃0i9E }9EoS@} WY GGE@t@u9Eun>@t`>@t0>@t7W+ЉUE9E}t}u EEEE}.u EEtmet E}EEuyFӈS@} WY GG>@u+t-t>@t.FӈS@} WY GGM}}}tPEPY]}tE]l9EuEBETEBE@}t9EtE؉El9EtGh9Eu=EBfUf S@WS=u S@E6EBUU WVS}u ]tEB3EEcu!utEUEK~US@E} u.Y EP@E=t'suE>@u[uEU<t9EuS@ S@)~% S@uu=u S@E9Eu 3]u}Åt ctEU WVS}u E=^uEGh}u3PV E=]t -9EudEUGX}u 3]u}ø-9Eu2E=]t%G;]}E+@PuP4 G EUGE=]u랐U(WVS}EEG>@u=+t =-uEG3EEEE.}tE0u7EzM }k  9E}kE EkE EEM}M }k ؋-0' 9E}kE EkE E-0EEG>@U.uEEBu;@]̋uЋ}É]E]9E~ EME]Eteur3E= t=+t =-uEG>@t:} k -0G>@u؃}t)EE}h;@EEEE;@u(;@C;@  [;@rh;@E}؋;@E;@E|tE ]tkEP}}EuE\$ ]}t EEUWV}uW/YG uG tO G Dt1A@"u}F @tV,Y;5D@rGGG tG D@+GPwG P) | GG듸9tO O G tg aU W}tE;@uE}ÍEPu u ؅~8E=E@"E;@s;@;@뫋E=}!E@";@E <@]r؋ȸEE}^E ;@]wϸEEM3UW}E<@uE}E<@vEE]E <@rE <@EE]E(<@rE0<@vEE뒐W|$D$ L$~% ‹ʁD$_Ð.F33Ð.33ÐU}u3jYEhߴjq2EEE}t6E9Ev)EE&E+EEEEEMuj$2hS@YujL2YufYj2YjVYE}| uj1} }}}t EEP!YEE'UjhS@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu 7 ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐUWVS}uT@Etu WЋu 3]u}u V&u T@ CT@ɐUWVS}u Ct ;ut Nj]u}ËG8u3UWVS} ]Ft ;utCuދ+E]u}ÍD$Pt$Ð5E@t$ t$  Ð;//t3Ð T$tÐUW(E+8<@EEPY=@<@iGQiWkW<E= T@u=T@uWEPEP<  T@ET@EE9E|)E9E}!E+<<@EEPYG Nj}UWVEQUEE}} EQME<T@ET@ƙ5T@Ep,T@}| FFFtmnEN}|ۉ5(T@}=0T@ƹtmn=nu fN<@3 uL<@+FuL<@;}fN<@G T@5$T@4T@T@u}Ëƹtmn)EFƹtmn9E}@u3ËE E U M~E@E>@uEE>@u E E M}EUW3EE}t-E=-u3Eu E=+uEEPuEt^iEE=:uHEPE@PXEt0kE<E=:uEPE@P-EtE}t E ډE 8E}UE>@u3ËE E k U0E@E>@uՋEUE3EEPuEtyME=/ujEPE@P EtOE=,uFEPE@P?Et*ME=/ujEPE@P9 Eu3ËE iUQUEiUQU 8<@+ <<@+щUPEEEkU d<@9P|EkU h<@E kU l<@E0uEUE 0u0U EiQ E iQUWV}u :|"Gtmn-m+GG+‹u}ø!(ÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_UPWVu#Yt8EPu|%E%= ujh<@'} 3u}þfEft EU;uuh<@h8T@+EPh8T@EPh8T@|=EU;u1E%= u!t EU;uW,"Y8T@\jEPW =TjjWe" NuW!Y3 '3Ð&3ÐV|$3O|$ ыt$ D$^ø?&ÐUW} 9EtFG tG9GwG9Gu+?u&GuW= YGHGUE}ø :&3Ð"&ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  D@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl>@Dž\9PtP؉PNKPPoY@Dž\EtDžl>@Dž\P 9u E@u K@0E@FE+ËU+Љ)ETMEE E PP~؉]PJKPPkY5Dž0Dž4Dž0Dž4EE E PPX9Eu<@<@<Dž$=@Dž<<@E@uEE E -ݝHN%=L%uUHuLO%=u Dž Dž,E9Eu =@=@؍CEO%=uDžl>@Dž\L% H ‰PDž(Dž0Dž4E9EDž$ =@Dž<<@@PDPE@=}E@PLH* HE能@tDžl>@Dž\@Dž\EtDžl>@Dž\sEtC0UE}u Et E.EE艅@ E@uEE E -ݝHN%=L%uBHu9O%=u Dž Dž,=@CEO%=uDžl>@Dž\L% H ‰PDž(Dž0Dž4Dž<<@Dž$ =@@PDP<9E}E<PLHQ ؃@t-E9D~ =0tDžl>@Dž\@Dž\EtDžl>@Dž\sEDDž8~t 98|0 8CUEEu}~ E.E<9E}E<9E ME+E܉T E@u E }uEE E -ݝHN%=9L%uUHuLO%=u Dž G9Eu =@=@؍CEDž, O%=uDžl>@Dž\L% H ‰PDž(Dž0Dž4G9E8Dž$ =@Dž<<@~؉]P[E@ETMl@PDP9E}EPLHJ ݅H4=@u DžDE艅ESY9xEE E @ss؍CEoE E XE@uSYЉUHtM}鋅HE- |=Xw |$<=@O,to t Džl>@Dž\Dž @Dž\EtDžl>@Dž\Dž,E+É\T(89E8EEEE t5EuM+8E E+8EE쉅8EE+8EPVjh<@9؋E;EvEPVh<@h<@u E\tOE\;EvEPV\l, \lu E(tNE@;EvEPVj$j$uz EDž(EEEPVjh<@9؋E;EvEPVh<@Gh<@u E~EE;EvEPVSSu EE؄EE܉EPVjh<@9؋E;EvEPVh<@_h<@u EE؀tOEX;EvEPVXh Xhu EE89EE+8EPVjh<@9؋E;EvEPVh<@e6h<@u Ek E-0GE>@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl>@Dž\?E2ETMDžl>@Dž\EE C~u~E܉TMs؍gh݅H$=@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H,=@u+-hJhE>@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@@YEt Eu =@@t3txE@@@@h@@EPJuEP;jEP|>h~PW =uh~Ph>@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}XT@EXT@E@@s3UtE]XT@E@@E@@EDA@r5ELA@rXA@ETA@AEtA@s6EE]@)EE|A@r݋EE 9P܃}t؁XT@T@vT@EA@tiT@r05}fEf fEmE]mE܉E@0Ee A@];r&=5|+XT@uXT@1}tCF0N<9XT@]Ћuԋ}ËEE0]@EEsEE 9P EEEE\A@MU]vEu}fEf fEm]mE܉EFUR0EMm]EdA@E5lA@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G D@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W D@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}E@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WD@UWA@;=D@r3}ÃG uUWA@ WY;=D@r}UWV}tlG t6G t3WVYG PY}E@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG D@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G D@+G?}3W D@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G D@+G?}3W D@+W;}WY3UWV}G G u}}&uo@s@GW D@*h!YGt@O G WD@GGVYtG uO @u}G w@WRD@UWV}G D@+G}G D@Wu};7}7𐐐*3ÐUE@EEPhTu } E裄E@3ø6ÐÐU WVSE9ET=E@u@S@e@x@@@@@@@ @) @T @e @r @ @ @ @ @ @USAGE:%s [-s speed] [-l line] [-h] [-n] [-t] [-d] [-o|-e] telno | systemname Connect failed: %s Cannot open: %s Remote line gone Can't execute shell Can't divert %s Use `~~' to start line with `~' after %ld bytes %d lines/%ld characters File transmission interrupted Can't fork -- try later r Can't transmit special character `%#o' Line too long r IO error Use `~$'cmd Use `~+'cmd Can't get terminal status Sorry, you can't cu from a 3B console Parity option error Telno cannot exceed 58 digits! cucu: cannot read Systems files cu: cannot read Devices files cu: cannot read Dialers files Anydhteons:l:c:%s: cannot have both even and odd parity %s: cannot have both even and odd parity Please enter the number: 0123456789=-*#%s: bad phone number %s Phone numbers may contain only the digits 0 through 9 and the special characters =, -, * and #. %s: warning: -l flag ignored when system name used %s: warning: -s flag ignored when system name used Unable to setuid/gid Connected transmit started [%s] got break in transmit got a tintr echo ' ~> ';mesg y;stty echo call tilda(%s)  %c (continue)(continue) %c (continue)(continue)(continue)call _shell(%s) SHELL/bin/shsh-ccall _dopercen("%s") taketakeusage: ~%%take from [to] (continue)stty -echo;test -r &&(echo '~>':;cat ;echo '~>');stty echo putputusage: ~%%put from [to] (continue)r(continue)stty -echo;(cat - >)||cat - >/dev/null;stty echo bbbreakbreakdddebugdebug(continue)nostopnostop(continue)cdcdHOMECannot change to %s (continue)Cannot change to %s (continue)(continue)~%%%s unknown to cu (continue)_receive started cu: open|creat failed~>No diversion file open cu: close failed~> Lost Carrier call _mode(%d) doforkgot read error, not EINTR cu: Output blocked call _rcvdead(%d) call _quit(%d) call _bye(%d) Disconnected call cleanup(%d) device status for fd=%d F_GETFL=%o, tdmp for fd=%diflag=`%o',oflag=`%o',cflag=`%o',lflag=`%o',line=`%o' cc[0]=`%o',[%d]=`%o' , /etc/systemidrLocal + @r1@r1@6@6801212TLITLIS/usr/lib/uucp/Dialcodesr%s%sInternal caller type %s \Tinterface(%s) failedUNIXmlock %s failed mlock %s succeeded /dev/%s/generic open timeout generic openTIMEOUTopening with O_NDELAY set device %s generic open failed, errno = %d generic openFAILEDclear O_NDELAY clear O_NDELAY failed, errno %d failed to lock device %s processdev: calling setdevcfg(%s, %s) MASTER Setup failed%s not found in Dialers file generic call to gdialFAILED\DUNIXgdial(%s) called mlock %s failed /dev/%s%s%s</dev/%sUse Port %s, acu - %s, Phone Number %s Trying modem - %s, acu - %s, calling %s: SUCCEEDED FAILED /DN write %s timeoutcan't open %s %s is open failed to lock device %s can't open %s failed to lock device %s dcf is %d ACU write error %d ACU write ok%s /Line open %s failed/dev/%st_opentlicall: failed to lock device %s t_alloct_bindtlicall: bound to %s t_connect to addr "%s" \tlicall: stoa failed tlicallstring-to-address failedtimeout tlicall tlicallTIMEOUTt_connectt_connect,X `  % KKfixline(%d, %d) BAD SPEEDculine.cRETURN FROM fixline ioctlculine.csetline - %c H@X@n@y@@@@@@@@@@@@ @"@.@9@E@P@e@x@@@@@@@@@@(@6@I@[@x@@@@@/usr/spool/uucp/usr/spool/uucppublicCAN'T OPENCAN'T WRITECAN'T READCAN'T CREATECAN'T ALLOCATECAN'T LOCKCAN'T STATCAN'T CHOWNCAN'T CHMODCAN'T LINKCAN'T CHDIRCAN'T UNLINKWRONG ROLECAN'T MOVE TO CORRUPTDIRCAN'T CLOSECAN'T FORKFILE EXISTSSUCCESSFULNO DEVICES AVAILABLEWRONG TIME TO CALLTALKINGCONVERSATION FAILEDBAD SEQUENCE CHECKLOGIN FAILEDDIAL FAILEDBAD LOGIN/MACHINE COMBINATIONDEVICE LOCKEDASSERT ERRORSYSTEM NOT IN Systems FILECAN'T ACCESS DEVICEDEVICE FAILEDWRONG MACHINE NAMECALLBACK REQUIREDREMOTE HAS A LCK FILE FOR MEREMOTE DOES NOT KNOW MEREMOTE REJECT AFTER LOGINREMOTE REJECT, UNKNOWN MESSAGESTARTUP FAILEDCALLER SCRIPT FAILED%*d %s/LTMP.%d/usr/spool/locksulockf failed in onelock() ulockf file %s Lock File--can't read (errno %d) --remove it! Lock File--bad format--remove it! Lock File--process still active--not removed kill pid (%d), returned %d--ok to remove lock file (%s) ulockf failed in unlink() TOO MANY LOCKS../uucp/ulockf.cCAN NOT ALLOCATE FOR../uucp/ulockf.c%s.%s/usr/spool/locks/LCK.%s.%s/usr/spool/locks/LCK.%s %s %dULOCKC%s: link(%s, %s) ULK err %s %dULOCKLNK%s %dULOCKFfilelock: F_SETLK returns %d, errno is %d filelockF_SETLK failed - lock existsfilelockF_SETLK failed -- ENOLCKfilelockF_SETLK failed -- EFAULTfilelockF_SETLK failedfilelock: ok r@u@x@{@~@@@conn(%s) getto ret %d Call Failed: %s Device Type %s wanted Requested Device Type Not Found AnyAnyAnyAny9600AnyAnyAnyAnyBAD LINE../uucp/conn.c/dev/,MProtoStr = %s chat: TCGETA failed, errno %d FAILEDexpect: (^%c%c) """"got it lost line errno - %d LOGINLOST LINE%s^%cenough already got it timed out BREAKBREAKBREAK EOTEOTEOT     """""" sendthem ( ECHO CHECK ON ECHO CHECK OFF DELAY PAUSE BREAK ) set CLOCAL ignored ) CLOCAL set TCSETAW failed, errno %d ) clear CLOCAL ignored ) CLOCAL clear TCSETAW failed, errno %d ) ????????%s^%c?%s^%c?SuMoTuWeThFrSa%dAnyAnyWkWk%d-%ddummyAnyaltconn called /dev/ACUDirectgetto ret %d tp83cRcp@tp83cRcu@cceeey@tpeeRcqixiiiiiiUNIXTLITLISset interface %s ret restline - %d twrite: t_getinfo tsetup: t_sync tssetup: SLAVE mode: leaving ok tssetup: optionally POPing %s tssetup: POPing %s tssetup: I_LOOK on fd %d failedtssetup: I_POP: %s not there tssetup: I_POP on fd %d failedtssetup: PUSHing %s tssetup: I_PUSH on fd %d failedtssetup: MASTER mode: leaving ok %s: %%s tlicall: system errorunknown tli error %d%s: unknown tli error %dT_UNBINDT_IDLET_OUTCONT_INCONT_DATAXFERT_OUTRELT_INRELstate is %sNO ERRORT_LISTENT_CONNECTT_DATAT_EXDATAT_DISCONNECTT_ORDRELT_ERRORT_UDERRUNKNOWN ERROR reason is %s disconnect reason #%d l,lDl\ltllbad access type %dsysaccess/usr/lib/uucp/Sysfilesr service=/usr/lib/uucp/SystemsCAN'T ALLOCATEscansys: Systems../uucp/sysfiles.c/usr/lib/uucp/DevicesCAN'T ALLOCATEscansys: Devices../uucp/sysfiles.c/usr/lib/uucp/DialersCAN'T ALLOCATEscansys: Dialers../uucp/sysfiles.c/usr/lib/uucp/Devconfigr service= device= systemsdevicesdialerspoppushunrecognized label %sSysfiles|Devconfig::%s//usr/lib/uucpCAN'T ALLOCATEsetfile: tptr../uucp/sysfiles.c::CAN'T ALLOCATEsetioctl: tptr../uucp/sysfiles.cuucicoruucicoruucicor%.3odobase: Illegal trailer on address string stoa: dobase: number to long xfer: destination not long enough xfer: malloc failed }x~}~~p\timodtimodM9Ӓݒ11111EUoeytimod-@!-@:-@S-@h-@-@-@-@-@-@.@+.@C.@b.@.@.@.@.@.@/@?/@@/@A/@B/@C/@D/@E/@F/@G/@H/@I/@J/@K/@L/@M/@N/@O/@P/@Q/@R/@S/@T/@U/@V/@W/@X/@Y/@Z/@[/@\/@]/@^/@_/@`/@a/@b/@c/@d/@e/@f/@No ErrorIncorrect address formatIncorrect options formatIllegal permmissionsIllegal file descriptorCouldn't allocate addressRoutine will place interface out of stateIllegal called/calling sequence numberSystem errorAn event requires attentionIllegal amount of dataBuffer not large enoughCan't send message - (blocked)No message currently availableDisconnect message not foundUnitdata error message not foundIncorrect flags specifiedOrderly release message not foundPrimitive not supported by providerState is in process of changing: option requires an argument -- : illegal option -- --Unknown error: 2@2@"2@<2@L2@d2@n2@2@2@2@2@2@2@2@3@3@&3@23@>3@P3@_3@o3@~3@3@3@3@3@3@3@3@ 4@!4@04@<4@S4@d4@4@4@4@4@4@4@4@5@55@D5@h5@5@5@5@5@5@5@5@5@6@6@)6@>6@G6@P6@d6@v6@6@6@6@6@6@6@7@7@17@@7@I7@R7@e7@n7@w7@7@7@7@7@7@7@8@78@W8@8@8@8@8@8@8@8@8@8@9@ 9@9@9@(9@29@<9@F9@P9@Z9@d9@n9@x9@9@9@9@9@9@9@9@9@9@9@9@9@9@:@:@:@":@,:@6:@@:@J:@T:@^:@h:@r:@|:@:@:@:@:@:@:@:@:@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error??GA>???<@<@W`/Lw/K:/JMFw/GMT TZ/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ$6$ZZZZZZZZRZZ-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@(w@(w@D@0w@x@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0D@0w@x@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1busr/bin/doscopy100755 3 2 74340 4273204437 10310 37777777777 LZ" D^;@.textD^ .data@@_@.bss8@8@;.commentxÐET8@RU RP P]jÐU,Ed@EE j@9E} E 0,YEEE0hi@6Rh@hi@l7hi@hE0h@h4@r( j8YYu Yt EE9Et 9Eu'9L@th@h4@(jXY9L@}h@h4@'jXYEVUHE5i@jE0_ i@Ej@@ PSYEPuz u&h@h4@|'u!SYuYEөt hu $E},u h @h4@% uqQYuTYKEP9YEEPYE}}C5@@u!h9 @h4@m%uQYu QYu$TYhSuYPY Pj@@ Ph A@uj@@ ;Es j@@ EE}t7=D@t @@"uh A@ !u3@@E5@@uh A@uuukEj@@ )E9E5@@u}~hP @h4@B$uOYuSYEPhg @#=@@thj @#Yhu @#YU\E PUEE5i@j0k i@Ej@@ POYE}uhw @7#Yj_TYuukujh @uaYj*u%uj?u%t uh @h4@0# uQYuuuh8@u t uh @h4@" uQYh @uHEu)uh @h4@" uaNYu|QY끃=D@t @@Kuhjh A@ Ejju" uh A@u3@@?uh 9@uuEPEEuu[EűE 9@PEj@@ EPNYEEE=@@3EEEuuEuh @h4@!jJRY}uEEuYPY Ehd^uuuuEEuujuhErEtEȋUEM ERE} un"Y EP@Eu݋u}UWV}1@t P(YF>u݋u}U@E5i@jE0 i@Ej@@ PJYEPu6uh!@h4@8jNYEpEPCEPYuuEphI@uu uLY3uLY=6I@t'I@t3Uuh:!@Iuhl!@9uh!@)uh!@uh!@ j/NYU9E ujjuXI Eu uME}}uh4"@h4@ jMYhh>tbuEE=/tE8uEuuVWu2EuE3]u}ËuƊӄ҈mEU(WV} u"@j@JM "@P"@ j@RQ Ph"@Vth"@Vuu uЋ}ÍEPEPV! EEu EG $"@GP,Yu6E-j@B"@BYP#Y EhSuܡj@@ PhEPEPEj@=th'j>}ut GPDYVS؁rVu hSE%Phh<[@u OEƂ<[@hd^E%Phh<[@u 5j@j|=("@t3]u}UPWVj/u EuE EEuhu#@u u .F3hw#@u u.F.F33&E8t=.tFU E FG|ՋE=.uE3E8tFU E FG|݋u}Ë FG | FG |UWV}uEEj/WwEEuuWVu u6Whz#@uuh4@ h#@h4@ jj<YFPYE~u EWF %=uFPYU6Wh#@uuh4@A h#@h4@/ j;YE/FEuu V E}u7jh#@uuh4@ h#@h4@ j;YEEuuE9EruuEu7jh#@uuh4@e h#@h4@S j;YhVuE-j@B"@BYPY EEu}UWVS"@j@JM "@P"@ j@RQ PExu3VE@P+Yu5E-j@B"@BYP"Y EhSuhuu *3T3(E%FrӁEhSuhuu Gj@;xruuE9E33]u}á"@@PbY EhSuhuu j3.E%tuUЋFrGj@;x rzU"@j@JM "@P"@ j@RQ P} tj@9Pu E%á"@@3t E%ߋE%U"@j@JM "@P"@ j@RQ P} tj@9PuE3á"@@3tE3ًE3Ujj\7("@U("@jj;7j@=th'j 7U5j@j 7("@UW}G%W W  ‹}UW}G% ‹}UW3EEϋU ~}UEEU EEU Uu Yj6YUu uh4@ h#@h4@j6YUWVS} uG}t=Pu,"@,"@U<]@9,"@u ju=0"@t;= t1j ,"@,"@U<]@9,"@u juY u 0"@B0"@Pu,"@,"@U<]@9,"@u ju^NuE]u}ËE+U,"@,"@U <]@9,"@u juU} uI=0"@t@j u,"@,"@U<]@9,"@u ju0"@=,"@t85,"@h<]@u.4 ;,"@th#@h4@j4Y,"@UPWVuE HUЉU)|~ ~ }t 3u}F;uvҸU E PYEPUEPUEE@-PEEPBUP UE%fEE%f EE %f EE%fEE%f EE %f EEUPUPUPUPU WV}EEj@xu7jh#@uuh4@Z h#@h4@Hj3Yj@@Ej@j@@"@+B@3ҋM1@WEEPuE9urj@UPU‹u}Ð/ÐUWVS}}~EE ;ur;u s 3]u}Ã?'W Y=uE H3u U+ЋO;7sSwu1 ÉE)G?}3W 7@+W;}W,Y+Å{EhÐ1ÐUWV $@\&@98@s 8@< $@u]&YtVuj0 jh$@j0 W1&YPWj0 jh$@j0 u}ÐUPWE E4@u4@t* 4@h4@uu 4@ t }ËUPWEEE@ uE@ t(EH uuu _ E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG Pe+ +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P* ECG t8W&YG t g GGuu G P* E9Eus3lUWV}uW%)YG uG tO G Dt14@"u}F @tV&&Y;57@rGGG tG 7@+GPwG P=# | GG듸9tO O G tg a.F.3Ð..3ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø$Ð T$tÐUW(E+d/@EEPY=l/@iGQiWkW<E=h~PW =uh~Ph1@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}he@Ehe@E4@s3UtE]he@E4@E 4@Eh4@r5Ep4@r|4@Ex4@AE4@s6EE]@)EE4@r݋EE 9P܃}t؁he@e@ve@E4@tye@r05}fEf fEmE]mE܉E@0Ee 4@];r&=5|+he@uhe@1}tCF0N<9he@]Ћuԋ}ËEE0]@EEsEE 9P EEEE4@MU]vEu}fEf fEm]mE܉EFUR0EMm]E4@E54@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 7@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 7@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}8@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_ÐR ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W7@UW4@;=7@r3}ÃG uUW4@ WY;=7@r}UWV}tlG t6G t3WVYG PY}8@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 7@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 7@+G?}3W 7@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 7@+G?}3W 7@+W;}WY3UWV}G G u}}&uj@n@GW 7@*h!YGt@O G W7@GGVYtG uO @u}G r@WR7@UWV}G 7@+G}G 7@Wu};7}7𐐐3ÐU8@EEPhTu } E裨8@3ø6ÐÐU WVSE9ET=8@u<8@ 8@8@ 8@8@8@8@8@8@8@E@3؋=8@E&;58@8@E@E=w=8@j Y8@@;t?3Ee ƹ3tL3+‰EEE28@+8@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή58@8@0E+E-8@@;t8@8@8@8@~Љ8@;58@v8@8@8@ 9=8@u 8@8@G(=8@958@u=8@7tލ;r;l%;UWV}58@%8@9u58@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ8@Nj]u}WV|$ t$L$Njʁ^_øÐT$8@Ru 8@+D$øT$8@3øvÐ0^NL$0^:L$0+L$0L$0 L$0 Ã8@ÐT$@@(#)doscopy RTS 5.3b of Jul 21, 1988P\^2,9Unknown flag %c You may only copy 128 files at once bad file %s target not a directory too few arguments /Target not a directory /FAT duplicate inconsistent %s not found can't open %s for writing size/fat inconsistent size/fat inconsistent %s Raw copy Not enough memory. Bad FAT (duplicate inconsistent)Can't find %s target "%s" already exists rcan't find %s No space in DOS partition No space in DOS partition FAT duplicate inconsistent %s - copy files between UNIX and DOS partitions Usage: 1. %s unxfile dosfile 2. %s dosfile unxfile 3. %s dosfile [ dosfile ... ] unxdir 4. %s unxfile [ unxfile ... ] dosdir j@Cannot open "%s". Cannot read "%s". return = %d Floppy is not in valid DOS format.*.**.???......Floppy is not in valid DOS format.Floppy is not in valid DOS format.seekreadwriteCannot remove root directory. "%.8s.%.3s" is a directory. "%.8s.%.3s" is not a directory. Directory "%.8s.%.3s" is not empty. ...%s does not exist%s is not a directoryRoot directory fullNo space for directory write failed on output Floppy is not in valid DOS format.Unknown error: `&@h&@r&@&@&@&@&@&@&@&@ '@'@1'@B'@T'@`'@v'@'@'@'@'@'@'@'@'@(@(@'(@6(@N(@[(@q(@(@(@(@(@(@(@(@)@&)@4)@M)@j)@)@)@)@)@)@)@)@*@*@0*@E*@V*@c*@y*@*@*@*@*@*@*@*@ +@ +@1+@G+@W+@e+@+@+@+@+@+@+@+@+@+@+@,@$,@;,@b,@,@,@,@ -@-@-@'-@0-@9-@B-@K-@T-@]-@f-@o-@x-@-@-@-@-@-@-@-@-@-@-@-@-@-@.@.@.@".@,.@6.@@.@J.@T.@^.@h.@r.@|.@.@.@.@.@.@.@.@.@.@.@.@ /@/@&/@7/@O/@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/@/@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF;nEnE;nEDnEnEnEnE;;nE;;nE <<<<<<<<<<nEnEnEnEnEnEnEnEnEnEnE0>nEBnEnEnEnEnEnEnEnEnEnEnEnEnEnEnEnE=nEnEnEnEnEnEnEnEnEnED8<0>J@B3<8<nEnE,<nEnE=nEnEnEEnEf=nEnE=-+ 0x0X--+ --+ --+ (((((  H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@r@r@7@r@|t@3.1bS03.1bS03.1bS07@r@usr/bin/dosdel100755 3 2 63454 4300345157 12611 1usr/bin/dosrm37777777777 usr/bin/dosdir100755 3 2 64324 4273204507 10113 37777777777 LZ"  E=t uuh;@h$@jBHYE0@E@%@EE@PE%URYEE@PE%URYEE@PE%URY}EtbuEE=/tE8uEuuVWu2EuE3]u}ËuƊӄ҈mEU(WV} u @EPEPE2@PZ tE9E@=@t2EE9Es}tEYuE3uС Ek E-0GE!@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl!@Dž\?E2ETMDžl!@Dž\EE C~u~E܉TMs؍gh݅H< @DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅HD @u+-hJhE!@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h#@YEt Eu =#@t3txE#@#@h#@EPJuEP;jEP|>h~PW =uh~Ph!@ 3W YkUjuuuu u#Ujuuuu uU$WVS}L@EL@E$@s3UtE]L@E $@E$@E\$@r5Ed$@rp$@El$@AE$@s6EE]@)EE$@r݋EE 9P܃}t؁L@:M@v:M@E$@tL@r05}fEf fEmE]mE܉E@0Ee $@];r&=5|+L@uL@1}tCF0N<9L@]Ћuԋ}ËEE0]@EEsEE 9P EEEEt$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E|$@E5$@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G '@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu  )G?}3W '@+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}(@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW$@ WY;='@r}UWV}tlG t6G t3WVYG PY}(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG '@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G '@+G?}3W '@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G '@+G?}3W '@+W;}WY3UWV}G G u}}&uPO@XS@GW '@*h!YGt@O G W'@GGVYtG uO @u}G `W@WR'@UWV}G '@+G}G '@Wu};7}7𐐐3ÐU(@EEPhTu } E補(@3ø6ÐÐU WVSE9ET=(@u<(@ (@(@ (@(@(@(@(@(@(@E@3؋=(@E&;5(@(@E@E=w=(@j Y(@@;t?3Ee ƹ3tL3+‰EEE2(@+(@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5(@(@0E+E-(@@;t(@(@(@(@~Љ(@;5(@v(@(@(@ 9=(@u (@(@G(=(@95(@u=(@7tލ;r;l%;UWV}5(@%(@9u5(@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ(@Nj]u}WV|$ t$L$Njʁ^_øÐT$(@Ru (@+D$øT$(@3øvÐ0PNL$0P:L$0+L$0L$0 L$0 Ã(@ÐT$@@(#)dosdir RTS 5.3b of Jul 21, 1988Usage: %s device[:path] ... -empty %d File(s) %ld bytes free Bad FAT (duplicate inconsistent)%s not found%-8.8s %3.3s %5ld %2d- %2d:*.*@O@Cannot open "%s". Cannot read "%s". return = %d Floppy is not in valid DOS format.*.**.???......Floppy is not in valid DOS format.Floppy is not in valid DOS format.seekreadwriteCannot remove root directory. "%.8s.%.3s" is a directory. "%.8s.%.3s" is not a directory. Directory "%.8s.%.3s" is not empty. ...%s does not exist%s is not a directoryRoot directory fullNo space for directory write failed on output Floppy is not in valid DOS format.Unknown error: T@\@f@@@@@@@@@@%@6@H@T@j@v@@@@@@@@@ @@*@B@O@e@t@@@@@@@ @@(@A@^@y@@@@@@@@@$@9@J@W@m@@@@@@@@@@%@;@K@Y@u@@@@@@@@@@@@/@V@{@@@@ @@@$@-@6@?@H@Q@Z@c@l@v@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@ @@+@C@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFF/99R/9t89999q/./9:/^/9//////////9999999999919Q69999999999999999_19999999999y8/13Q6//99/99I199989099_1-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@pW@pW@'@xW@X@3.1bS03.1bS03.1bS0'@xW@usr/bin/dosmkdir100755 3 2 62604 4273204462 10442 37777777777 LZ" L\2 @.textL .data @ @M@.bssl%@l%@\2.commentleÐETl%@RU RP PLjÐU9E}E 0h @j_LYMu EE E U‰Ej:u Et EEEuE @U J@UJ@ @댋E<J@uh @YjKYE4J@4 J@E @9E|jKYU$juE N@@ PFYEPuujh#@E E)E@tEPL&YUEE8uj/u tGj/u &@=.uu hD@lj/u l&Pu hU@KYjuu hp%@utu hm@!uh%@u uEPEuj Eujh@EuuEu E􍀐%@P}Eƀ%@jYEPE􍀐%@PuE􍀪%@P0hMuuPhh%@uu YP Y Ehh%@ h@h%@%@uh%@h@h%@%@uh%@hMu N@@ Ph%@uj uuu GYtjHYÐU9E ujjuD Eu uGE}}uh@h|!@ jHYhh-@u> E=t uuh@h|!@jZHYE-@E@%@EE@PE%URYEE@PE%URYEE@PE%URY}E N@@ N@UUPE@PE%URY N@B N@UP UR PUPURP@ N@JM @P@ N@RQ PEUE%URU졼@ N@JM @P@ N@RQ PUPWV} @ N@JM @P@ N@RQ P N@@ PAYE}u7jh @uuh|!@ hq@h|!@jFYhC@0(Y P N@@ PWu5 hC@ N@BPY P N@@ Puu 3#7U2;tuCY3u}F N@@ ;rutCYUW} @ N@JM @P@ N@RQ PhM@08Y P N@@ PWuE hM@ N@BPY P N@@ PWu }UWVS} uGEF=/tjh-@V uh1@V:>tbuEE=/tE8uEuuVWu2EuE3]u}ËuƊӄ҈mEU(WV} u@ N@JM @P@ N@RQ Ph7@Vth9@Vuu uЋ}ÍEPEPV! EEu EG @GP,Yu6E- N@B@BYP#Y EhCuܡ N@@ Ph/@u"EGE/@u E,EPEPE/@P^ t E9EtHEE N@@9Es}tuuE؃}u9E 3EEUU슊/@ E 9ErދEUЋ{@@EPY EhCuhh/@uEYE/@u E>EPEPE/@PZ tE9E@=@t2EE9Es}tE N@@ 9E};UEEE EE=E@EU;t E=?uEEE=*EE9E|E@EEEEEEU;tE=?t EuEEE=*uEE9E|3UWVS]} uE3EzE=.u-h<@S/th>@St E@EME<tD@tEPYU EЊ  E9Ex9Eu!E=.uE EE 9E|EEREEÀ8taEE@tEEPTYUEUӊ E}t9E| EE 9E|E]u}UWV} N@pO=@9uE3u;rou7jhA@uuh|!@ hq@h|!@jc>YuE3uС N@PU3E‹u};v3+¹3+U졼@ N@JM @P@ N@RQ PE- N@B@BUWV}u ǹ33t%V%V ‹u}UWVS}u N@xu7jhd@uuh|!@ hq@h|!@j=Y N@@E N@ N@@@+B@3ҋM1@EVStC;]r;]u 3]u}Åt SVWG hVS8 UWVS}u VWjVW Ë]u}UWVS}u ]ǹ33t#%Ӂ ˆ%%%V ˆF]u}UWV}u GNuu}UPjuu6 }h@u-Yj;YYuu uU E;Et)C9Eu@@Pu YjI;YYM9EuUWVS}uG =u3؃uu}tzh@Ym}u"t=.tYGPWh@ E}tuGPWh@ 't0WVu - uGPWh@ 3]u}øUWVSE@P`YhCWgE- N@B@BYPTY P N@@ Ph7@u]317@tK%=t.t 3]u}F N@@;ru WTUWVS}uEE@jj8N@=thj8}ut GPDYVS؁rVu hCE%Phh?@u OEƂ?@hME%Phh?@u 5N@j@8@t3]u}UPWVj/u /EuE EEuh@u u .F3h@u e u.F.F33&E8t=.tFU E FG|ՋE=.uE3E8tFU E FG|݋u}Ë FG | FG |UWV}uEEj/W#EEuuWVu u6Wh@uuh|!@ hq@h|!@ j.7YFPYE~u EWF %=uFPYU6Wh0@uuh|!@Q hq@h|!@? j6YE/FEuu V E}u7jhF@uuh|!@ hq@h|!@ jJ6YEEuuE9EruuEu7jhZ@uuh|!@u hq@h|!@c j5YhVuE- N@B@BYPY EEu}UWVS@ N@JM @P@ N@RQ PExu3VE@P+Yu5E- N@B@BYP"Y EhCuhuu *3T3(E%FrӁEhCuhuu G N@;xruuE9E33]u}á@@PbY EhCuhuu j3.E%tuUЋFrG N@;x rzU졼@ N@JM @P@ N@RQ P} t N@9Pu E%á@@3t E%ߋE%U졼@ N@JM @P@ N@RQ P} t N@9PuE3á@@3tE3ًE3Ujj 2@U@jj1N@=thj1U5N@j1@UW}G%W W  ‹}UW}G% ‹}UW3EEϋU ~}UEEU EEU UuYjx1YUu uh|!@ hq@h|!@jF1YUWVS} uG}t=Pu@@UA@9@u ju=@t;= t1j @@U􈐐A@9@u juY u @B@Pu@@UA@9@u ju^NuE]u}ËE+U@@U A@9@u juU} uI=@t@j u@@UA@9@u ju@=@t85@hA@u. ;@ths@h|!@jb/Y@UPWVuE HUЉU)|~ ~ }t 3u}F;uvҸU E PYEPUEPUEE@-PEEPBUP UE%fEE%f EE %f EE%fEE%f EE %f EEUPUPUPUPU WV}EE N@xu7jh@uuh|!@j hq@h|!@Xj-Y N@@E N@ N@@@+B@3ҋM1@WEEPuE9ur N@UPU‹u}ÐUWV@@9L%@s L%@<@u#YtVuj, jh@j, W#YPWjo, jh@j^, u}ÐUPWE Ex!@ux!@t* x!@hl!@uu x!@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø$Ð T$tÐUW(E+@EEPY=@iGQiWkW<E=I@u=I@uWEPEP< I@EI@EE9E|)E9E}!E+ @EEPYG Nj}UWVEQUEE}} EQME<I@EI@ƙ5I@EpI@}| FFFtmnEN}|ۉ5I@}=I@ƹtmn=nu f@3 u@+Fu@;}f@GI@5I@I@I@u}Ëƹtmn)EFƹtmn9E} Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžln@Dž\?E2ETMDžlq@Dž\EE C~u~E܉TMsgh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h @YEt Eu = @t3txE @ @h @EPJuEP;jEP|>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}I@EI@E @s3UtE]I@E @E @E !@r5E!@r !@E!@AEG Dt+G uEE Pj u tWTYEEWUWVS}l%@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW\!@ WY;=|$@r}UWV}tlG t6G t3WVYG PY}L%@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG $@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G $@+G?}3W $@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G $@+G?}3W $@+W;}WY3UWV}G G u}}&u N@(R@GW $@*h!YGt@O G W$@GGVYtG uO @u}G 0V@WR$@UWV}G $@+G}G $@Wu};7}7𐐐3ÐUL%@EEPhTu } EL%@3ø6ÐÐU WVSE9ET=`%@u@H@R@\@f@p@z@@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device errorp@t@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF+55+555555,+5+,5I,Y,Y,Y,Y,Y,Y,Y,Y,Y,55555555555p.525555555555555555.5555555555!5x,p.02s,x,55l,55-555E55-55.-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@V@@V@|$@HV@W@3.1bS03.1bS03.1bS0usr/bin/dostype100755 3 2 62634 4273204533 10317 37777777777 LZ" M@2 @.textM .data @ @M@.bss%@%@@2.commenteÐET%@RU RP PLjÐUE N@E E U=-ucE@E=ru@EPh@h!@ 5N@u5@h!@ Yj+LYEEj:u Et EE}t Eu,E5N@u5@h!@g YjKY@UJ@UJ@@=uh3@h!@&jKYM=@u%5N@u5@h!@ YjQKYEE4J@4J@5E@9E|jKYUu5@h!@ U E=t uuh@h!@jBHYE-@E@%@EE@PE%URYEE@PE%URYEE@PE%URY}EN@@N@UUPE@PE%URYN@BN@UP UR PUPURP@N@JM @P@ N@RQ PEUE%URU@N@JM @P@ N@RQ PUPWV} @N@JM @P@ N@RQ PN@@ PAYE}u7jh"@uuh!@ h@h!@jFYhC@0(Y PN@@ PWu5 hC@N@BPY PN@@ Puu 3#7U2;tuCY3u}FN@@ ;ru\CYUW} @N@JM @P@ N@RQ Ph4M@08Y PN@@ PWuE h4M@N@BPY PN@@ PWu }UWVS} uGEF=/tjhE@V uhI@V:>tbuEE=/tE8uEuuVWu2EuE3]u}ËuƊӄ҈mEU(WV} u@N@JM @P@ N@RQ PhO@VthQ@Vuu uЋ}ÍEPEPV! EEu EG @GP,Yu6E-N@B@BYP#Y EhCuܡN@@ Ph/@u"EGE/@u E,EPEPE/@P^ t E9EtHEEN@@9Es}tuuE؃}u9E 3EEUU슊/@ E 9ErދEUЋ{@@EPY EhCuhh/@uEYE/@u E>EPEPE/@PZ tE9E@=@t2EE9Es}tEN@@ 9E};UEEE EE=E@EU;t E=?uEEE=*EE9E|E@EEEEEEU;tE=?t EuEEE=*uEE9E|3UWVS]} uE3EzE=.u-hT@S/thV@St E@EME<tD@tEPYU EЊ  E9Ex9Eu!E=.uE EE 9E|EEREEÀ8taEE@tEEP<YUEUӊ E}t9E| EE 9E|E]u}UWV}N@pO=@9uE3u;rou7jhY@uuh!@ h@h!@jK>YuE3uСN@PU3E‹u};v3+¹3+U@N@JM @P@ N@RQ PE-N@B@BUWV}u ǹ33t%V%V ‹u}UWVS}u N@xu7jh|@uuh!@ h@h!@j<YN@@EN@N@@@+B@3ҋM1@EVStC;]r;]u 3]u}Åt SVWG hVS8 UWVS}u VWjVW Ë]u}UWVS}u ]ǹ33t#%Ӂ ˆ%%%V ˆF]u}UWV}u GNuu}UPjuu6 }h@u-Yjq;YYuu uU E;Et)C9Eu@@Pu Yj1;YY4M9EuUWVS}uG =u3؃uu}tzh@Ym}u"t=.tYGPWh@ E}tuGPWh@ 't0WVu - uGPWh @ 3]u}øUWVSE@P`YhCWgE-N@B@BYPTY PN@@ Ph7@u]317@tK%=t.t 3]u}FN@@;ru WTUWVS}uEE@jj8N@=th4j8}ut GPDYVS؁rVu hCE%Phh?@u OEƂ?@h4ME%Phh?@u 5N@j(8@t3]u}UPWVj/u EuE EEuh1@u u .F3h3@u e u.F.F33&E8t=.tFU E FG|ՋE=.uE3E8tFU E FG|݋u}Ë FG | FG |UWV}uEEj/W EEuuWVu u6Wh6@uuh!@ h@h!@ j7YFPYE~u EWF %=uFPYU6WhH@uuh!@Q h@h!@? j6YE/FEuu V E}u7jh^@uuh!@ h@h!@ j26YEEuuE9EruuEu7jhr@uuh!@u h@h!@c j5YhVuE-N@B@BYPY EEu}UWVS@N@JM @P@ N@RQ PExu3VE@P+Yu5E-N@B@BYP"Y EhCuhuu *3T3(E%FrӁEhCuhuu GN@;xruuE9E33]u}á@@PbY EhCuhuu j3.E%tuUЋFrGN@;x rzU@N@JM @P@ N@RQ P} tN@9Pu E%á@@3t E%ߋE%U@N@JM @P@ N@RQ P} tN@9PuE3á@@3tE3ًE3Ujj2@U@jj1N@=th4j1U5N@j1@UW}G%W W  ‹}UW}G% ‹}UW3EEϋU ~}UEEU EEU UuYj`1YUu uh!@ h@h!@j.1YUWVS} uG}t=Pu@@UA@9@u ju=@t;= t1j @@U􈐈A@9@u juY u @B@Pu@@UA@9@u ju^NuE]u}ËE+U@@U A@9@u juU} uI=@t@j u@@UA@9@u ju@=@t85@hA@u. ;@th@h!@jJ/Y@UPWVuE HUЉU)|~ ~ }t 3u}F;uvҸU E PvYEPUEPUEE@-PEEPBUP UE%fEE%f EE %f EE%fEE%f EE %f EEUPUPUPUPU WV}EEN@xu7jh@uuh!@j h@h!@Xj-YN@@EN@N@@@+B@3ҋM1@WEEPuE9urN@UPU‹u}ÐUWV@@9d%@s d%@<@u#YtVuj{, jh@jj, Wm#YPWjW, jh@jF, u}ÐUPWE E!@u!@t* !@h!@uu !@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø$ÐUW(E+ @EEPY=(@iGQiWkW<E=I@u=I@uWEPEP< I@EI@EE9E|)E9E}!E+$@EEPYG Nj}UWVEQUEE}} EQME<I@EI@ƙ5I@EpI@}| FFFtmnEN}|ۉ5I@}=I@ƹtmn=nu f6@3 u4@+Fu4@;}f6@GI@5I@I@I@u}Ëƹtmn)EFƹtmn9E} Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H @u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h @YEt Eu = @t3txE @ @h @EPJuEP;jEP|>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}I@EI@E @s3UtE]I@E @E @E$!@r5E,!@r8!@E4!@AET!@s6EE]@)EE\!@r݋EE 9P܃}t؁I@J@vJ@Ed!@tI@r05}fEf fEmE]mE܉E@0Ee l!@];r&=5|+I@uI@1}tCF0N<9I@]Ћuԋ}ËEE0]@EEsEE 9P EEEEG Dt+G uEE Pj u tWTYEEWUWVS}%@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUWt!@ WY;=$@r}UWV}tlG t6G t3WVYG PY}d%@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG $@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G $@+G?}3W $@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G $@+G?}3W $@+W;}WY3UWV}G G u}}&uN@$R@GW $@*h!YGt@O G W$@GGVYtG uO @u}G ,V@WR$@UWV}G $@+G}G $@Wu};7}7𐐐3ÐUd%@EEPhTu } Ed%@3ø6ÐÐU WVSE9ET=x%@u<|%@ x%@x%@ |%@l%@|%@h%@x%@l%@t%@E@3؋=h%@E&;5l%@x%@E@E=w=t%@j Yl%@@;t?3Ee ƹ3tL3+‰EEE2l%@+t%@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5t%@l%@0E+E-l%@@;tl%@l%@l%@x%@~Љh%@;5h%@vh%@p%@h%@ 9=t%@u h%@t%@G(=h%@95t%@u=t%@7tލ;r;l%;UWV}5h%@%l%@9u5t%@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹp%@Nj]u}WV|$ t$L$Njʁ^_øÐT$%@Ru %@+D$øT$%@3øvÐ0MNL$0M:L$0+L$0L$0 L$0 Ãd%@ÐT$ @@(#)dostype RTS 5.3b of Jul 21, 1988C@type: Unknown flag %c Too many files Usage: %s [-r] device:path FAT duplicate inconsistent %s not found size/fat inconsistent Size/fat inconsistent N@Cannot open "%s". Cannot read "%s". return = %d Floppy is not in valid DOS format.*.**.???......Floppy is not in valid DOS format.Floppy is not in valid DOS format.seekreadwriteCannot remove root directory. "%.8s.%.3s" is a directory. "%.8s.%.3s" is not a directory. Directory "%.8s.%.3s" is not empty. ...%s does not exist%s is not a directoryRoot directory fullNo space for directory write failed on output Floppy is not in valid DOS format.Unknown error: @$@.@H@X@p@z@@@@@@@@@@2@>@J@\@k@{@@@@@@@@ @@-@<@H@_@p@@@@@@@ @&@A@P@t@@@@@@@@@@@5@J@S@\@p@@@@@@@@@!@=@L@U@^@q@z@@@@@@@@@C@c@@@@@@@@@@@@"@+@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@ @Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF,55*,5L55555I,,5,6,5y,,,,,,,,,,55555555555.5)355555555555555557.5555555555Q5,.0)3,,55,55!.555u55-557.-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@u}u@=.u3Et&=,@t,@h,@Y,@,@W8Y}t&=,@t,@h,@Y,@ ,@OUWV},=\uG$@tFGF׊ G?t = uŊu* Fh@GPt F F׊ G= tP'Y?hU,@UWVS=,@uu$Yء,@-,@=H}l;5,@~+=,@t,@h,@{Y,@},@,@׊ G?u]u}á,@,@׊ G?uU=,@t,@h,@ Y,@UPWVSu#YUJO;}r = tG}G= t+EE}~, '@}h'@j k&'@ '@Muԅ~Z '@}h'@j ;&'@ '@Ku. '@}h'@GP &'@'@׊ G?u '@}h'@j %]u}á'@'@ UWV3,@ FG;=,@|5,@u}UWju"Y@Puh@h'@ljZ-YWuNj}UWV}u G;tu u}3U W}jWh @ u 3ÍPEPW }t}u-h@uhB@h'@3uYu0h(@uhB@h'@x3ndUu uhB@h'@IUWVE @@}EEPWPWh`@PtEPPU jha@V tPPVEPPGU BtEPW0U BÅtEPV U BUWVSuj Y؋E 8uW/ CE 8Ƌ]u}UWVS}u ]~GF;t 3]u}KuUW}h@W!t }h@WUWVS}u _a|z~U3]u}ÃA|Z< u5 t0SYt#:u uH|=w |$@tuuuGFUWVEuu he@3u}Ëu F׊ Ghf@PuuGhi@Puu3멋UWuYA|Z }3U09E|99E3UWV}u F׊ G?uƋu}UWV} uG;u u}À?u3UW}a|zNj}ÐUW}|Nj}ËUWEE EPh$YtujW Nj}Uu&YÐUWVl@@9+@s +@<@uYtVuj( jhz@j ( WYYPWj' jh}@j' u}ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW!YG uG tO G Dt1'@"u}F @tVY;5*@rGGG tG *@+GPwG P | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}G tG t w$Yg E GuaO }8u|2@6@GW *@GGu}G :@WR*@G W*@V3!YtO @UWV}u ;u 3u}F;t N+GuUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  *@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl$@Dž\9PtP؉PNKPPoYh~PW =uh~Ph$@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}+@E+@E&@s3UtE]+@E'@E '@ET'@r5E\'@rh'@Ed'@AE'@s6EE]@)EE'@r݋EE 9P܃}t؁+@,@v,@E'@t+@r05}fEf fEmE]mE܉E@0Ee '@];r&=5|++@u+@1}tCF0N<9+@]Ћuԋ}ËEE0]@EEsEE 9P EEEEl'@MU]vEu}fEf fEm]mE܉EFUR0EMm]Et'@E5|'@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G *@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W *@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}+@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W*@UW'@;=*@r3}ÃG uUW'@ WY;=*@r}UWV}tlG t6G t3WVYG PY}+@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG *@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G *@+G?}3W *@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G *@+G?}3W *@+W;}WY3UWV}G G u}}&u|2@6@GW *@*h!YGt@O G W*@GGVYtG uO @u}G :@WR*@UWV}G *@+G}G *@Wu};7}7𐐐3ÐU+@EEPhTu } E裔+@3ø6FÐ2ÐU WVSE9ET=+@u<+@ +@+@ +@+@+@+@+@+@+@E@3؋=+@E&;5+@+@E@E=w=+@jY+@@;t?3Ee ƹ3tL3+‰EEE2+@++@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5+@+@0E+E-+@@;t+@+@+@+@~Љ+@;5+@v+@+@+@ 9=+@u +@+@G(=+@95+@u=+@7tލ;r;l%;UWV}5+@%+@9u5+@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ+@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$+@Ru +@+D$ø!T$+@3øÐ+@ÐT$T@@(#)fmt 5.3b of Jan 27, 1988@@@ToSubjectCcr.:!fmt: Ran out of memory  From No from or date fieldDate field not legal date"%s" not a header because %s tty Unknown error: @@@@@@@8@J@\@l@@@@@@@@@@@@.@?@S@g@x@@@@@@@@@@/@B@^@w@@@@@@@@2@;@D@M@e@|@@@@@@@@@@&@4@L@j@@@@@@@@@@@@'@:@C@L@g@@@@@ @E @l @u @~ @ @ @ @ @ @ @ @ @ @ @ @ @ @!@ !@!@!@(!@2!@Jli&2VIWqIAW-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@:@:@*@:@$<@3.1bS03.1bS03.1bS0usr/bin/strerr100700 3 3 42320 4203631514 10122 37777777777 L! \8 ,@.text\8 .data,@,@ ,9@.bss$@$@ .commentDÐET$@RU RPS P8jÐUE P) YEu,YE-EEp PBRhT@uA U E^@E @ +\@EQEP@9Eu}u:}t u.YEP@E p u]h{@u1,ËEP@EU0EE@ PF Yuj_EE@ PYE@PuEPYPE@ Pjh~@uux-Yj6YUDžE䉅4Dž,d(Dž$ jh@5E}E䉅 @ Pr Y  @ PYh@PYP@ Pjh@h@h@h @ j5YDžDž3DžPhSu0 }h%@h @ljv5Yttje5Yhj4E䉅 @ P^Y p @ PY@PPYP@ PjhI@+YDž8Dž8E䉅 P$jdP +Y @tyh@h@.ÐUWV} %t?F EF F F3҉V#@=at=rt=wt3u}ÀN jju) N G=+uf N ȸ*.L$Q3ÐUPWEEE@ uE@ t(EH uuu c E@ t }ËjP'-ËjP'u-UWEEEEEE2EEEPuu  ENj}ÐU5$@E Pu Ð;,,t3Ð T$tÐUW(E+\@EEPY=d@iGQiWkW<E=%@u=%@uWEPEP< %@E%@EE9E|)E9E}!E+`@EEPYG Nj}UWVEQUEE}} EQME<%@E%@ƙ5%@Ep%@}| FFFtmnEN}|ۉ5%@}=%@ƹtmn=nu fr@3 up@+Fup@;}fr@G%@5%@%@%@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}%@E%@E @s3UtE]%@E @E @E` @r5Eh @rt @Ep @AE @s6EE]@)EE @r݋EE 9P܃}t؁%@"&@v"&@E @t%@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+%@u%@1}tCF0N<9%@]Ћuԋ}ËEE0]@EEsEE 9P EEEEx @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G #@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W #@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}$@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W#@UW @;=#@r3}ÃG uUW @ WY;=#@r}UWV}tlG t6G t3WVYG PY}$@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG #@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G #@+G?}3W #@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G #@+G?}3W #@+W;}WY3UWV}G G u}}&u$&@,*@GW #@*h!YGt@O G W#@GGVYtG uO @u}G 4.@WR#@UWV}G #@+G}G #@Wu};7}7𐐐3ÐU$@EEPhTu } E裠$@3ø6ÐÐU WVSE9ET=$@u<$@ $@$@ $@$@$@$@$@$@$@E@3؋=$@E&;5$@$@E@E=w=$@jY$@@;t?3Ee ƹ3tL3+‰EEE2$@+$@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5$@$@0E+E-$@@;t$@$@$@$@~Љ$@;5$@v$@$@$@ 9=$@u $@$@G(=$@95$@u=$@7tލ;r;l%;UWV}5$@%$@9u5$@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ$@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$$@Ru $@+D$øT$$@3øvÐ08NL$08:L$0+L$0L$0 L$0 Ã$@ÐT$0@@(#)strerr 5.3b of Jan 27, 1988%02d-%02d/usr/adm/streams/error.xxxxxa+%06d %.8s %08x ... 0000 00 Error logging terminated %.10s %s/dev/log%06d %.8s %08x ... 0000 00 ERROR: unable to open %s /dev/logERROR: unable to open %s /dev/logERROR: error logger already exists %06d %.8s %08x ... 0000 00 Error logging started %.10s %smail %srootwStreams Error Logger message notification: %06d %s %08x %s%s%s F.N.T.%04d %02d %06d Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/bin/shsh-c@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFFFFFFFFnFzFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" FFFFFFFF>FF-+ 0x0X--+ --+ --+ (((((  H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@D.@D.@#@L.@/@3.1bS03.1bS0#@L.@usr/bin/strace100700 3 3 40244 4203631515 10066 37777777777 L! (5 p @.text(5 .data@@ 5@.bss @ @p .comment@ÐET @RU RP P4jÐU}uËE=9E=0| u*Yh,@uV u@U=$@t @3E @ @} h@Y@@E= tӸ 9Etɸ 9Et9Eu @$@3똋EEU @} h@{Y@@E= t 9Et 9Et 9Eu9Eu$@E @"U @(@= @tQP}YUfPkYUfBPXYUB=@= @E9(@h0@E (@4f(@@;E}dE (@(@4YUfE (@(@4YUfBE (@(@4YUB=@t3øUh2@h@UE艅 Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS} !@E !@E@s3UtE] !@E@E@E4@r5E<@rH@ED@AEd@s6EE]@)EEl@r݋EE 9P܃}t؁ !@Z!@vZ!@Et@t!@r05}fEf fEmE]mE܉E@0Ee |@];r&=5|+ !@u !@1}tCF0N<9 !@]Ћuԋ}ËEE0]@EEsEE 9P EEEEL@MU]vEu}fEf fEm]mE܉EFUR0EMm]ET@E5\@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}t @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u\!@d%@GW @*h YGt@O G W@GGVYtG uO @u}G l)@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUt @EEPhTu } Et @3ø6ÐU WVSE9ET= @u< @  @ @  @| @ @x @ @| @ @E@3؋=x @E&;5| @ @E@E=w= @jY| @@;t?3Ee ƹ3tL3+‰EEE2| @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @| @0E+E-| @@;t| @| @| @ @~Љx @;5x @vx @ @x @ 9= @u x @ @G(=x @95 @u= @7tލ;r;l%;UWV}5x @%| @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$ @Ru @+D$øT$ @3øvÐ05NL$05:L$0+L$0L$0 L$0 Ãt @ÐT$@@(#)strace 5.3b of Jan 27, 1988all-Trace logger terminated. /dev/logERROR: unable to open %s /dev/logERROR: tracer already exists Trace logger started. %06d %s %08x %2d %s%s%s %d %d F.N.E.Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF&2TQ>1?Y1)}?-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@|)@|)@@)@+@3.1bS03.1bS0@)@usr/bin/strclean100700 3 3 35364 4203631515 10427 37777777777 L! /@ @.text/ .data@@@ 0@.bss@@ .comment:ÐET@RU RP P/jÐUDž@@EECE=at=du/@t$@@t5@sYEEh@u u E=u}th@h@\j.Y9E}h @h@8j.Yj YiUQ+£h@EEEĉEEfEDEE؀uh0@u u$Y@Ejhd@Y-E|&jEPEPuu(YjY@h@=$hm@h@C jh@b U}uPh@&$YPh@u u0E h@9P}"u Y}uhu@h@ 3UXEPu}% 9@ujEPuU øE%=@tjEPuU ju',E}}% 9@ujEPuU 뢸jEPuU E}t&u*Y9E~ u}'YE]u"YE@P'YE}uuM'Y@ !uu"EtUJ=/t EUE/EEE,fEfh@EPh@EPEEEEEEEU EE9E} EuڋE9Ejju& EuS&Y|@EHPu u E}9EYju^*E}}u*)YjuuV& }u%Yu(YjEPu! E=u(Yu%Y|}t o3hUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UPWV9@ueE9@}#E @ =-u E Au u}h@E @4<u @΋E @ @=@:tWu=@tOLjEE E 0YPE 0j( h@yYPh@js( jEPjc( E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0YPE 0j' h@YPh@j' jEPj' @?GE @@ @@8E @ @@@u@@@Vz'ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËU}u3jYEh@ j}&EEE}t6E9Ev)EE&E+EEEEEMuj0&hl@YuubYljUYE}| uj%} }}}t EEP YEE2Ujhl@EøÐ&ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸ T$tÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐$3ÐUWVS}u ߋG8uOGF҈uË]u}ø ^$3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E,@s3UtE]@E4@E<@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h!YGt@O G W@GGVYtG uO @u}G #@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ0p0NL$0p0:L$0+L$0L$0 L$0 Ã@ÐT$è@@(#)strclean 5.3b of Jan 27, 1988/usr/adm/streamsd:a:Usage: strclean [-d ] [-a ] Strclean: must be at least 1 Strclean - removing log files more than %d days old/dev/log/error.Strclean: unable to unlink file %s...: option requires an argument -- : illegal option -- --  000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF~~~~~~~~~)))))))))~~~~~~~~~~~@~~~~~~~~~~~~~~~~~~~~~~~~~~~H@ZCH~~<~~~~~~v~~-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@#@#@@#@|%@3.1bS03.1bS0@usr/bin/factor100755 3 3 43424 4201127431 10073 37777777777 L! 89  @.text89 .data@@ :@.bss&@&@ .comment FÐET&@RU RP P8jÐU(WE9E~h@~Yj8Y9EGhP'@h*@E p EE5T'@5P'@h.@/ hP'@h4@{E9E|P'@@uj/8YP'@@rP'@,@vh8@YEP5T'@5P'@' ]E@th?@Yg5T'@5P'@@X'@5@5@Q5@5@=5@5@)5@5@@Eܡ@E34@E]BuuhP@ P'@uP'@5T'@5P'@)@X'@EPP'@u؃\$ EMP'@tG0lEX'@SP'@@v5T'@5P'@h[@. hf@!Y9EjG6Y}UBu uhh@ P'@uP'@5T'@5P'@B @X'@EPP'@u\$ EMP'@tU,WEt@wlEuE}EEؔ@E EEEܡ@E|@EEPYujh@j05 &@!E룍EPu uc ]Et MEE]EHPE@\$4 ]EuE @]OE.U3ÐUW}E@rEEU@r E GE=E@%@%@]wE@sE'}UPWE E#@u#@t* #@h"@uu #@ t }ËUPE EPuh"@d UPEEPu uI UW}EEEljEEWn*YEE2uu EP }ÐUWVS}u Dž&@&@ &@W=~*uDžF DžDžk -0F @u؃u DžÉ=lt h9uF؅[uPV @tDžl!@؃nt_=&@uVctQ[tL&@} W@ Y GG @u &@W =tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf&@fl9uEEP&@{EEP&@dEPWSt'=&@tu /$Fu  @td=&@u&@} W Y GG @u &@W =u&@y%uF؃%&@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE&@}WyY3]u}ËGG=+t=-t =0t8EM&@} W(Y GG؃0i9E }9Eo&@} WY GGE Ek E-0GE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅Ht@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H|@u+-hJhE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h"@YEt Eu ="@t3txE%"@"@h+"@EPbuEPSjEP |>h~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}'@E'@E<"@s3UtE]'@ED"@EL"@E"@r5E"@r"@E"@AE"@s6EE]@)EE"@r݋EE 9P܃}t؁'@N'@vN'@E"@t'@r05}fEf fEmE]mE܉E@0Ee "@];r&=5|+'@u'@1}tCF0N<9'@]Ћuԋ}ËEE0]@EEsEE 9P EEEE"@MU]vEu}fEf fEm]mE܉EFUR0EMm]E"@E5"@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G &@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W &@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}&@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW"@ WY;=&@r}UWV}tlG t6G t3WVYG PY}&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG &@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G &@+G?}3W &@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G &@+G?}3W &@+W;}WY3UWV}G G u}}&u`'@h+@GW &@*h YGt@O G W&@GGVYtG uO @u}G p/@WR&@UWV}G &@+G}G &@Wu};7}7𐐐3ÐU&@EEPhTu } E&@3ø62ÐU WVSE9ET=&@u<&@ &@&@ &@&@&@&@&@&@&@E@3؋=&@E&;5&@&@E@E=w=&@jY&@@;t?3Ee ƹ3tL3+‰EEE2&@+&@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5&@&@0E+E-&@@;t&@&@&@&@~Љ&@;5&@v&@&@&@ 9=&@u &@&@G(=&@95&@u=&@7tލ;r;l%;UWV}5&@%&@9u5&@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ&@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$&@Ru &@+D$ø!T$&@3øÐ&@ÐT$ @@(#)factor 5.3b of Jan 27, 1988ļB$@@@@@@@@@@@@@@@@@@@@ @@@@@@ @@@@@@@@@@@@@@@@@@@@$@@?@@@@????Usage: factor number %lf%.0f %lfOuch! Not an integer! %.0f %.0f %.0f ??sqrtsqrt: DOMAIN error 0C0C0C?~ { { { ~ ~ ??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFj"j"j"!j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j",j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"j"!4,F/4j"j"(j"j"j"j"j""j"bj"j"-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@/@/@&@/@1@3.1bS03.1bS03.1bS03.1bS0usr/bin/finger100755 3 3 71344 4214557614 10107 37777777777 L`2" da4@.textda .data4@4@4b@.bss@@.commentrÐET@RU RP PajÐUhE@E@u8VYEu,VYEEEh@h@0Eh)@E 061E@@@@@@~@o@`@Q@B@@)E=@u =@t h@3YE9E}tc@Ed*=t)E-h|@h}@h@ . js_Y=@4*^EEn9@u3EE5`@ZYEjE E 0u/ Ef@X@P4EEF5`@ZYUB8EP8UjE E 0u/ Ef@X@P4EEE;E~E\@P8EEE=@Q)EEEjE0uX8 tuE0p7 EX@9P4u%5d@YYUB4uEp4 Z5`@YYUB8EP8U‹\@P8uuR5d@YYUB4uEp4EEP8UE@E;E)(E;X@(4(=t ['h|@h@h@+ jG]Y=@t\=@t)}uM=@t h@!Y7h@Y*h@Y=@t h3@YhE@YEE=@}u& YEX@9P4=@(P4rQYE@PVXYEԋEP4ruQuu6hG@uQEhI@AYuY uYEP8U\@9E/j\YËE BUh@E0h@"E=@t0Ep JIY~Ep h@ h@YEfxt!fxt h@Yh@Y h@YE@ PHY~SE@ PEPHE=t<E=t-E=yEEh@;YE@PYPEP5HEfxt@P YEE h@YEEEEԍUŠEM܈Eܸ9E|݃=@t h!@YEPh0@Ep,GYE؃}tF}~@9Euh;@eY 9EuhI@KYExEp$tGY~ZEp$hX@Ep(QGY~Ep(hb@9EuvEp,hi@aEp( GY~Ep(hp@<9EuEp,h@ 9EuEp,h@qh@dYËEEԍUŠEM܈Eܸ9E|EE=duEfxtEEPh@EEԍUŠEM܈Eܸ9E|ݍEPh@;hS@YEܸ+E9E~Ep,hU@.UWEP4UX@9Eu%uh@uh@hYh@/E0h@NEfxt!fxt h@0Yh@#Y h@YEp PEY~Ep h@ Ep$-EYEp$h@ Ep(EY~gEp(h@ Ep,DY~Ep,h$@ Ep0DYqEp0h6@\ YEp,DY~Ep,h:@4 Ep0lDY"Ep0hL@  Ep(@DYEp(hR@ Ep,DY~?Ep,h]@ Ep0CYEp0hc@ Ep0CYEp0hh@k kEp,CY~8Ep,hn@F Ep0~CY~8Ep0hy@# #Ep0YCY~Ep0h|@ =@tAh@ YEph@ Ep CY~Ep h@ EfxtG@PYE@ PGPh@ E@P!YE}t:h@c Y-=@u$E@PYE@ PWh@6 h@) Y}Uu YUDEP4U@ @@$@@(@@,@@0@X@9EEPU̍EԉEЋE=*u[VEUȋEEЋUEȁ_EEЋUȊ EȈEȊuE=$t5EEЋŮ E̋E̊t/=,t%E=&uE̋E̊t =,uEEPZAY@PGYUB EPEp AEE=,EEԉE9EЋŮ Ë}t=0|E=93EEЋE̊t =,uEEP@YE@P2GYUB$EPEp$d@EE=,EԉEE9EЋŮ Ë}t=0|E=93EEЋE̊t =,uEEP@YEPEPUB(EE=,EԉEE9EЋŮ Ë}t=0|E=93EEЋE̊t =,uEEP?YEPEP UB,EfPfu uAYu YUjhh@zI@| @@UEP4UE =@u`jE@EP5@OE uEP5@> ;Eu EGh@h@E@ @ËE@ @EU E@ E9E|E@UPU=@u 5@JDYUHEP4UE@u!>YEučEP=EE@ EU EEUˆE@E=~֍EPEP"|Wh@YE9@} E@E@+UPE%=u Ef@ËEf@EPh @h@ j HYUPu YExExuG 9P|ph&@ËExu h.@YEph3@ӋE 9P|ph<@봋EpphC@p 뜋EphP@[UEuNYExEx 9P|phU@Exu) 9~0ha@EE9Pu59u0phm@ E0ph@ zE9u0ph@x WE0ph@^ =E 9P|ph@<E9Pu89Pupph@ Epph@ E9Pupph@ Epph@ E 9P|ph%@wE9Pu29Pupph.@n PEpph?@V 8E9PupphQ@4 Epphc@ EU$=@Luu E/u):Y%E=*uEEEE}tHEEU&uEE E UVE=,tEt3E2E E U„u!E=,thEu]EJE= u0EUEuEP[uIEEEUEM },EUEuEPt3UPEUA| E=Z~E=a|E=z E%_EE UA| E=Z~E=aE=zE%_EEE@EUA| E=Z~E=a|E=z E%_EE @E UA| E=Z~E=a|E=z E%_EEU;iEtE uW+E E =0| E =9~E u/&EE=0| E=9~Eu3UPub7Y@P=YEuu7UWVEEExAEt @}"h@EP9HLá@@UGE<%uE@=-u@G@=0u @G=*uCEEP@=@}#@أ@=@u3@G5@k@ G0£@=0| =9~=.u+G=*uEEPUGETE=Ht=Lt=ht=lu EMGGE=it<{=Ut=It=DEE@ E}~EEPU EEPUE=uEEE=ut }}3EtE؉E܍RPu}tN-=@u @]E =OEEo}EEPUE=ouEEEEEE}t3E䍅`E#E= } NE#E@0 NE#E@WME#EEuE=ou }t~N0x=@ue=@\ @}h@j06@0@ @}h@EPr6@@U-@ NEN0`E=ct>=XEE@RRu؊RtxEs=d[=uC=stE=oQ8EEpuv@}}EEb=xEuE؊EuV!kE G0‰E=0=9~EF8tE9E|Nu؋E+UWV} }u 0E mʚ;E}| EEEE-ʚ;E}E@0G OE R0ˆEE9EڋuOƹ R0ˆƙE @=0tO0E @;wONju}UWV}E +Nj;5@~5@=@~ 0E=-u>=@}5 @}h@GP3@@׊ GN @@+ƉE=@uc, @}h@EP3@@UM}. @}h@GPn3@@׊ GN}σ=@t3, @}h@EP23@@UM}ϋu}UWV}4VW<u}F-|=w |$@u3UWV}u jF PW jVGPx F Gu}ÐUu YPYUWVS@@GF҈uEk@@@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐU WV=@}uEPh@Qu$E$3t@3u؋}hhh@V8 @}jh@>8@}3j$h@5@- =$t 3@+jj5@*4 -$@@qGF$r@3VUWV}f@fG=$4 @G@[f5@ftftft =uI @W;u: @W ;u+@W ;u@W ;u @u}aM3UWV}@fFft6F=t F=u j F PG P> u Ƌu}u3U,WVE}Թ =@|+jj5@ E=tE%=t 3ű}ÍEPYuBEPpYuE Pj5@ &jj5@92 jj5@%2 j$EP5@56 =$t E@uԋ E@uj5@ E?UWV9@tjj5@1 3@GF$r@u}UWV9@t 5@0Y@@3@GF$ru}Uu*Y=O~3uh@i*Ujh@ÐU=h @uhl @hX @u*h @5h @DYU=h @t5h @,Yh @UW}G?t=:t = u= u ?tGNj}U=h @uhn @hX @)h @u35h @YUWuhh(@_ =*@WQY=.@WBY=:j EPW EW2)YPj:W( 9Eu`WY}| `9E~aE2@t4=:t*j EPW EW(YPj:Wd( 9Et3}WY}| `9E~aE6@=>@=B@W^Y=F@WOY=J@W@Y=.@G?t =,u?tG=:@*@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuwEtE+E؋E)F>}3V @+V;}VG-Y}u +gEEv>1ÐWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}WX)YjjG PX- GGg G tg }ÐUPWEEE@ uE@ t(EH uuu w E@ t }ËUWV}uWa+YG uG tO G Dt1@"u}F @tVb(Y;5@rGGG tG @+GPwG Py% | GG듸9tO O G tg aUWV}G tG t w}.Yg E GuaO }8u@@GW @GGu}G #@WR@G W@V*YtO @WVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐU WVS}uE} tE 8$E @u5GEE @uE=+t =-u EGEu309Et "G=xt G=XuE @tEE @t E-0#E @t E-WE-7E;| 3]u}Ãu;09Eu1G @tG=xt G=Xu EE @t E-0#E @t E-WE-7+EGE @tEE @t E-0#E @t E-WE-7E;|} tE 8}t T$tÐUW(E+p @EEPY=x @iGQiWkW<E=P@u=T@uWEPEP< P@ET@EE9E|)E9E}!E+t @EEPYG Nj}UWVEQUEE}} EQME<X@E\@ƙ5`@Epp@}| FFFtmnEN}|ۉ5l@}=t@ƹtmn=nu f @3 u @+Fu @;}f @Gd@5h@x@X@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph @B 3W# YkUjuuuu u#Ujuuuu uU$WVS}|@E|@E@s3UtE]|@E$@E,@Et@r5E|@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁|@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+|@u|@1}tCF0N<9|@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@@GW @*h!YGt@O G W@GGVYtG uO @u}G #@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裴@3ø6:Ð&ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@j Y@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}WV|$ t$L$Njʁ^_øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$8@@(#)finger 5.3b of Mar 7, 1988<$/usr/adm/lastlog/etc/utmpBBBBBBBBB BBBS'S''S'/.plan/.projectshfinger: Usage -- 'finger [-bfilpqsw] [login1 [login2 ...] ]' No one logged on finger: error opening %s finger: error opening %s Login Name TTY Idle When Office Login TTY Idle When Office Login TTY When Idle rProject: rNo Plan. Plan: %-8.8s %-8.8s %-16.16s*%-8.8s %-16.16s %-8.8s %-16.16s Not Logged In %-8.8s ??? %-8.8s %-20.20s ??? * %-4.4s %-9.9s <%-12.12s> %s %-11.11s %8.8s %8.8s %8.8s %8.8s %12.12s Login name: %-10s In real life: ??? Login name: %-10s (messages off) In real life: %-s Office: %-.11s, %s Home phone: %s %s Home phone: %s %s Phone: %s , %s, %s , %s Phone: %s%s %s Directory: %-25s Shell: %-s On since %15.15s on %-8.8s Idle Time Last login %16.16s on %.8s finger: lastlog read error /dev/finger: error STATing %s %2.2d %1.1d %3.3d:%1.1d:%02.2d%3dd%2d minutes%2d seconds%1d minute %1d second%1d minute %d seconds%1d minutes %1d second%1d minutes %d seconds%2d hours%1d hour %1d minute%1d hour %2d minutes%1d hours %1d minute%1d hours %2d minutes%2d days%1d day %1d hour%1d day %2d hours%1d days %1d hour%1d days %2d hours(null pointer)Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/utmp*********/etc/passwdrr @ @W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFB?IIN?IpHIIIIm?*?I6?Z?I??????????IIIIIIIIIIIAIMFIIIIIIIIIIIIIIII[AIIIIIIIIIIuH?ACMF??II?IIEAIIIHI@II[A-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@#@#@@$@%@3.1bS03.1bS0@$@usr/bin/fleece100755 3 3 40734 4231442723 10050 37777777777 Lܾ! h, 8 @.texth, .data8 @8 @8-@.bss!@!@ .commentAÐET!@RU RP P,jÐU W9E}E 0hl @h@8 j+Yh "@h@fE pP h@h @5\ @! 5\ @Yj+YsPPP YЋG=/t/GPWC PPu| PYPuYxj*YUWVS}3G=:u3؃}?uu F׊ G?t =:u]u}ÐUWEE=@1h@Y=uE9E3} @@=@Wj 5@uJEtE+EE)@@=@}3@@ @+@;} h@$Y}MMEEeUWV @@9!@s !@< @uYtVujW) jh @jF) WYPWj3) jh @j") u}ÐUWVS3@%=u-=@t$@9@u,=@u#@Duh@"Y 3@ @Uh@!Y=u@E+Å~VjuSEtE+Ë)@@=@}3@@ @+@;} h@;#Y}t=@@ @Dt"h@>!Y=u]u}ËE@UWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW!YG uG tO G Dt1@"u}F @tVY;5 @rGGG tG  @+GPwG P | GG듸9tO O G tg aUWV}G tG t w$Yg E GuaO }8u(&@ "@GW  @GGu}G 0*@WR @G W @V!YtO @맸%3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}!@E!@E@s3UtE]!@E@E$@El@r5Et@r@E|@AE@s6EE]@)EE@r݋EE 9P܃}t؁!@"@v"@E@t!@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+!@u!@1}tCF0N<9!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}!@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W @UW@;= @r3}ÃG uUW@ WY;= @r}UWV}tlG t6G t3WVYG PY}!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u(&@ "@GW  @*h!YGt@O G W @GGVYtG uO @u}G 0*@WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐU!@EEPhTu } E裬!@3ø6FÐ2ÐU WVSE9ET=!@u@L@d@@@@@@@@@@@-@6@?@R@[@d@@@@@@@]@@@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@@&@0@:@D@N@g@q@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF& 2 TQ   >   1? Y 1  ) } ? -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@*@@*@ @H*@+@3.1bS03.1bS0usr/bin/fsinfo100755 3 3 11254 4201127463 10102 37777777777 Lʿ!  @.text .data@@ @.bss@@.commentÐET@RU RP PqjÐUWV} 3j/7@t@~@uh@7(u f@Yh@7 u f@=h@7u f@!h@7u f@?t=-sf@fu!f@fuf@fu f@ft?ueǃ0Y}F?uVNYu}UWVSju}R=@2@" @9@}@T@?@PuCjhS |hPS =t3S3Yu ~9Eth@u늋E=t=f=@t+EǹPYf=@t#-Ћ¹@3P]Yf=@tEP>Yf=@t,EE=8&|th @u 3U@WV}ENN Nǹ 3!@3uV Yu}UW}WYPWj% }U=@2@á @9@}@T@?@Uh@{YPh@j 5@_YP5@j h@CYPh@j jYUWV}u 5@YP5@jc h@YPh@jH WYPWj5 h@YPh@j VYPVj h@YPh@j u}UWV}u ;u 3u}F;t N+GuUWVS}] 3;uG8uƋ]u}ÐvÐUWV}GGu+Ƌu}øB3Ð*ÐÐÐ@ÐT$UÐ@@(#)fsinfo 5.3b of Jan 27, 1988Usage: [ -f -i -s -l ] filesystem ... : -f-i-s-lNot a filesystemUnknown filesystem type0123456789abcdefNo error (?)Unknown error (!) @ @ @ @ @ @ @ @ @0 @@ @S @e @v @ @ @ @ @ @ @ @ @ @ @' @; @L @[ @j @ @ @ @ @ @ @ @ @ @2 @K @Z @h @ @ @ @ @ @ @ @ @! @9 @P @d @y @ @ @ @ @ @ @ @ @@ @>@T@e@{@@@@@@@@@@@@ @;@X@o@@@@@@@I@R@[@d@m@v@@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@@@@ @#@-@=@K@Z@k@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error3.1bS03.1bS0Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133usr/bin/fold100755 3 3 40124 4201127451 7535 37777777777 L! * @.text* .data @ @+@.bssD @D @ .commentD@ÐETD @RU RP Pq*jÐUWME PhD@}E =-ut @E !k @ @E -0 @E =0|E =9~E :th @*Yj)YME }~5h4@h @E 0 uE 0oYj{)YME  4@} h4@-Y8@8@t WY̓}j3)YUWV}-|>=w7|3$ @30 @@%= @t @H3 @@;5 @~1 D@}hD@j H@ H@ @ D@}hD@P H@H@׈-|H=wA|=$ @ @u}à @% @= @t @ @̐UWV @L@9$ @s $ @< @u!YtVuj' jh @j' WYPWj' jh @j' u}ÐUPWE EP@uP@t* P@hD@uuu P@ t }ËUWV}uWu!YG uG tO G Dt14@"u}F @tVvY;5T@rGGG tG X@+GPwG P | GG듸9tO O G tg aUWV}G tG t w$Yg E GuaO }8u @$@GW X@GGu}G (@WRX@G WX@V YtO @UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  X@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@@Dž\9PtP؉PNKPPoYh~PW =uh~Phd@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}H @EH @E@s3UtE]H @E@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁H @ @v @E$@tY @r05}fEf fEmE]mE܉E@0Ee ,@];r&=5|+H @uH @1}tCF0N<9H @]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G X@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W X@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}D @u'3]u}ËÃ0Wtۃ;uUWV}u  G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WX@UW4@;=T@r3}ÃG uUW4@ WY;=T@r}UWV}tlG t6G t3WVYG PY}$ @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG X@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G X@+G?}3W X@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G X@+G?}3W X@+W;}WY3UWV}G G u}}&u @$@GW X@*h!YGt@O G WX@GGVYtG uO @u}G (@WRX@UWV}G X@+G}G X@Wu};7}7𐐐3ÐU$ @EEPhTu } E$ @3ø6FÐ2ÐU WVSE9ET=8 @u<< @ 8 @8 @ < @, @< @( @8 @, @4 @E@3؋=( @E&;5, @8 @E@E=w=4 @jY, @@;t?3Ee ƹ3tL3+‰EEE2, @+4 @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή54 @, @0E+E-, @@;t, @, @, @8 @~Љ( @;5( @v( @0 @( @ 9=4 @u ( @4 @G(=( @954 @u=4 @7tލ;r;l%;UWV}5( @%, @9u54 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ0 @Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@ @Ru @ @+D$ø!T$@ @3øÐ$ @ÐT$Ð @@(#)fold 5.3b of Jan 27, 1988P~miiB/SSBad number for fold rUnknown error: P@X@b@|@@@@@@@@@!@2@D@P@f@r@~@@@@@@@@@@&@>@K@a@p@|@@@@@@@@$@=@Z@u@@@@@@@@ @ @5@F@S@i@~@@@@@@@@@!@7@G@U@q@@@@@@@@@@@@+@R@w@@@@@@@ @)@2@;@D@M@V@_@h@r@|@@@@@@@@@@@@@@@@@&@0@:@D@N@X@b@l@v@@@@@@@@@@@@@@'@?@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFz:::::::b:n:::::::::::: ::::::::::::::::: ::::::::::   ::::} ::::2 :: -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@(@(@T@(@D*@3.1bS03.1bS0T@(@usr/bin/from100755 3 3 34264 4231442724 7572 37777777777 L! .P $T@.text. .dataT@T@P T/@.bss@@$.comment8ÐET@RU RP P9.jÐUWhx@Y}j.Y&PYuh@h@j-Yh@h@7;# uVj-YL=Fu>=ru0=ou"=muPh@h@hP ujI-Yø "-3ÐUWV}t9~u=Ƌu}U=@uh@h@9"@5@YU=@t5@#Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@!@u35@YUWuhh@_ =@WQY=@WBY=:j EPW EW YPj:Wt 9Eu`WY}| `9E~aE@t4=:t*j EPW EW YPj:W 9Et3}WY}| `9E~aE@=@=@W^Y=@WOY=@W@Y=@G?t =,u?tG=@@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V %Y}u +gEEvÐUPWE E@u@t* @h@uu @ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W YjjG P$ GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW"YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aU WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}tUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@ED@r5EL@rX@ET@AEt@s6EE]@)EE|@r݋EE 9P܃}t؁@@v@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE\@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ed@E5l@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u @(!@GW @*h!YGt@O G W@GGVYtG uO @u}G 0%@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裄@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$X@@(#)from 5.3b of Jan 27, 1988/usr/spool/mailWho are you? r%s/etc/passwdrr 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFB N pm * 6 Z  M[u M  E [-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@%@@%@@H%@&@3.1bS03.1bS0@H%@usr/bin/help100755 3 3 12053 4201127534 7543 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" # Remove Temporary Files trap "rm -f ${session_log:=/tmp/log$$} ; exit" 0 1 2 3 15 # Export Variables export DESCRIPTIONS OPTIONS EXAMPLES GLOSSARY SCREENS FETCH LIST \ HELP_FILE ROOT RESPONSE_TABLE DISPLAY_TABLE KEYWORDS_TABLE HELP # Initialize Variables HELP="/usr/lib/help" DESCRIPTIONS="${HELP}/db/descriptions.a" OPTIONS="${HELP}/db/options.a" EXAMPLES="${HELP}/db/examples.a" GLOSSARY="${HELP}/db/glossary.a" SCREENS="${HELP}/db/screens.a" DISPLAY_TABLE="${HELP}/db/tables/display" RESPONSE_TABLE="${HELP}/db/tables/responses" KEYWORDS_TABLE="${HELP}/db/tables/keywords" SYSTEM_LOG="${HELP}/HELPLOG" FETCH="${HELP}/fetch" LIST="${HELP}/list" A=`expr //${0} : "\(.*\)\/$" \| ${0}` NAME=`expr //$A : '.*/\(.*\)'` if [ -z "$TERM" ] then TERM=450 export TERM fi # Create Session Log if System Log is Writable if [ -w "${SYSTEM_LOG}" ] then LOG_FILE="${session_log}" echo "\n\nlogin=${LOGNAME}\tuname=${UNAME:=`uname`}\tdate=`date`" >${LOG_FILE} fi # Set Up Variables for Call to Interaction Handler if [ "${NAME}" = 'help' -a ${#} -ne 0 ] then NAME=${1} ; shift fi case "${NAME}" in help) HELP_FILE='help_foot' ;; starter) ;; usage) RESPONSE='' if getopts d:e:o: i then case "${i}" in d) NAME=getdesc ; RESPONSE=${OPTARG} ; dflag=1 ;; e) NAME=getexample ; RESPONSE=${OPTARG} ; eflag=1 ;; o) NAME=getoption ; RESPONSE=${OPTARG} ; oflag=1 ;; \?) echo "\n\n ${1} is not a legal option." > /dev/tty echo "Legal options include -d , -e , or -o.\n" > /dev/tty if [ ! -t 1 ] then exit 1 else echo "Do you wish to enter the usage component of the help facility now (y/n)? \c" > /dev/tty fi read ANS if [ "${ANS}" != "y" -a "${ANS}" != "yes" ] then exit 0 fi NAME=usage ;; esac else NAME=getdesc; RESPONSE="${1}" fi if [ -n "${RESPONSE}" ] then case ${NAME} in getdesc) if [ -z "`${LIST} ${DESCRIPTIONS} ${RESPONSE} 2>/dev/null`" ] then error='1' fi ;; getexample) if [ -z "`${LIST} ${EXAMPLES} ${RESPONSE} 2>/dev/null`" ] then error='1' fi ;; getoption) if [ -z "`${LIST} ${OPTIONS} ${RESPONSE} 2>/dev/null`" ] then error='1' fi ;; *) error='1' ;; esac else # If help is not being redirected and an error occurs, then # an error message is printed to the screen. Otherwise, the # usage screen is piped or redirected to the file or command. if [ ! -t 1 ] then if [ "${dflag}" = 1 -o "${eflag}" = 1 -o "${oflag}" = 1 ] then echo "Missing command name argument\n" > /dev/tty exit 1 else NAME=usage fi else NAME=usage fi fi if [ -n "${error}" ] then echo "\n\n ${RESPONSE} is not an included command\n\n" > /dev/tty if [ ! -t 1 ] then exit 1 else echo "Do you wish to enter the usage component of the help facility now (y/n)? \c" > /dev/tty read ANS if [ "${ANS}" != "y" -a "${ANS}" != "yes" ] then exit 0 fi NAME=usage fi fi ;; locate) if [ -n "${1}" ] then NAME=keysrch RESPONSE="${*}" fi ;; glossary) if [ -n "${*}" ] then term=`grep "^${*}:glossary" ${RESPONSE_TABLE} | sed 's/.*://'` if [ -n "${term}" ] then NAME=define RESPONSE=${term} else echo "\n\n ${*} is not included in the glossary.\n\n" > /dev/tty if [ ! -t 1 ] then exit 1 else echo "Do you wish to enter the glossary component of the help facility now (y/n)? \c" > /dev/tty read ANS if [ "${ANS}" != "y" -a "${ANS}" != "yes" ] then exit 0 fi fi fi fi ;; *) # This if statement hooks into the sccs help command. If help gets # an option that it can't recognize, it assumes the option is valid # for the sccs help command. if [ -x /usr/lib/help/lib/help2 ] then /usr/lib/help/lib/help2 ${NAME} ${*} && exit 0 fi NAME=help echo "\n\n\nThis is the UNIX system help facility.\n\n\n"> /dev/tty echo "The facility is invoked at shell level by typing:\n\n"> /dev/tty echo "\n help or"> /dev/tty echo "\n [help] glossary [term] or"> /dev/tty echo "\n [help] locate [keyword1 keyword2 ...] or"> /dev/tty echo "\n [help] starter or"> /dev/tty echo "\n [help] usage [command_name]\n\n\n"> /dev/tty if [ ! -t 1 ] then exit 1 else echo "Do you wish to enter the help facility now (y/n)? \c" > /dev/tty fi read ANS if [ "${ANS}" != "y" -a "${ANS}" != "yes" ] then exit 0 fi NAME=help ;; esac # Execute the Interaction Handler if [ ${SCROLL:=yes} = 'yes' ] then ${HELP}/interact -s -d "${DISPLAY_TABLE}" -r "${RESPONSE_TABLE}" -l "${LOG_FILE}" ${NAME} "${RESPONSE}" else ${HELP}/interact -d "${DISPLAY_TABLE}" -r "${RESPONSE_TABLE}" -l "${LOG_FILE}" ${NAME} "${RESPONSE}" fi # Update System Log if it is Writable if [ -w "${SYSTEM_LOG}" -a -s "${LOG_FILE}" ] then echo "login=${LOGNAME}\tuname=${UNAME}\tdate=`date`" >>${LOG_FILE} cat ${LOG_FILE} >>${SYSTEM_LOG} fi exit 0 fi NAME=help ;; esac # Execute the Interaction Handler if [ ${SCROLL:=yes} = 'yes' ] then ${HELP}/interact -s -d "${DISPLAY_TABLE}" -r "${RESPONSE_TABLE}" -l "${LOG_FILE}" ${NAME} "${RESPONSE}" else ${HELP}/interact -d "${DISPLAY_TABLE}" -r "${RESPONSE_TABLE}" -l "${LOG_FILE}" ${NAME} "${RESPONSE}" fi # Update System Log if it is Writable if [ -w "${SYSTEM_LOG}" -a -s "${LOG_FILE}" ] then echo "login=${LOGNAME}\tuname=${UNAME}\tdate=`date`" >>${LOGusr/bin/ftp100755 3 3 46664 4201127467 7430 37777777777 L! @T P@.text@ .dataP@P@T PA@.bss @ @ .commentMÐET @RU RP P5@jÐU(E UEE=-EEtK=-t;=ft=su?E UBU4YhE UBU4Eԣ@YPx@Gt@>hF@h @@hR@h @.h|@h @jV?YEEU Ћ҉U1=x@tgE U<u =t@t>hF@h @hR@h @h|@h @j>YSjnYÀ=t@t^E U<t>hF@h @^hR@h @Lh|@h @:jt>YPjY뗋E U<t5EPE U4Eܩ@tQE U4j Yj Yu,E U4FYEE U<uUh@h @vj=YU@hhj=j<YUE@@@@=<~h@h @jP=YucYUjEP5@d3 E=<ujY@@hhjr<j<YE>jEP5@>< E=tPuh@h7@h @juuuuh @QhD@h @?jy<YU졌@@@=~h@h @ jE<Yh@h @hj;j(YU @hhj};j<YjE@@@@=<~uYY}jEP5@1 E=tPuh-@h7@h @Fuuuuh @-hD@h @jU;YE=>E Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl@Dž\?E2ETMDžl@Dž\EE C~u~E܉TMs؍gh݅H$@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H,@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}@@E@@E@s3UtE]@@E@E@ED @r5EL @rX @ET @AEt @s6EE]@)EE| @r݋EE 9P܃}t؁@@@v@E @tQ@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@@u@@1}tCF0N<9@@]Ћuԋ}ËEE0]@EEsEE 9P EEEE\ @MU]vEu}fEf fEm]mE܉EFUR0EMm]Ed @E5l @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;= @r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u@@GW  @*h YGt@O G W @GGVYtG uO @u}G @WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐU @EEPhTu } E裄 @3ø6ÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$ @Ru @+D$øT$ @3øvÐ0ANL$0A:L$0+L$0L$0 L$0 à @ÐT$T@@(#)ftp 5.3b of Jan 27, 1988 @ `  % /dev/tty06 Other side has stopped responding sync write returned %d No (more) files w sync write returned %ds sync read returned %dcannot open device %s Device %s is not a tty stty on device failed illegal speed %s ftp.stdinsending standard input cannot open %ssending file %s file name write %ddata write %dftp.stdininput lostread on file %s faileddata write %deof write %dsync read %d* ? retransmit write %dbad sync characteropen %sblock write %dlast block write %dseqno read failedseqno read failedlen read Sequence error: length error:short block: receiving file %s sync write* ? nack write %d ftp error: ftp usage: sending: ftp [-s speed][-f device] files receiving: ftp [-s speed][-f device][directory][--] 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF~>)>)>)(>)>)>)>)f>)r>)>)>)>)>)>)>)>)>)>)>)>)">)&>)>)>)>)>)>)>)>)>)>)>)>)>)>)>)>)!>)>)>)>)>)>)>)>)>)>)( "$&  >)>)>)>)!>)>)>)(>)6!>)>)!-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@ @@h@3.1bS03.1bS0usr/bin/glossary100755 3 3 12053 4201127534 12771 1usr/bin/help37777777777 usr/bin/locate100755 3 3 12053 4201127534 12375 1usr/bin/help37777777777 usr/bin/starter100755 3 3 12053 4201127534 12612 1usr/bin/help37777777777 usr/bin/usage100755 3 3 12053 4201127534 12232 1usr/bin/help37777777777 usr/bin/lp106755 6 3 76300 4231442725 7251 37777777777 L7" ft@.textf .datat@t@tg@.bssP@P@.commentpP|ÐETP@RU RP PYfjÐUpE 0NYu u h @Y=ujh @hT @EP*=u&hT @h# @h#@: jh#@}u*EPhT @hQ @h#@R:jh#@og5( @h@jT 5@h @h#@: 5( @h#@jC 5( @h@jO = @~> u uGEP=Yh @u,hw @Y@Ehw @ujj;djj/djj#djjdhT @hT @=hc @hs @~YPhT @h @h#@9hT @h#@jr0 jEdYUjjcjjcjjcjjc jdYUPhs @YPhT @Uh @hT @h @EPt8jEP~<th @EPXf= @t EP"Y5DU= @u5( @h'@jF f= @t5( @hc @jM f= @t5( @hc @jWv 5( @YYh, @h @=u&h, @h @h#@7 jh#@h @<YUu hT @h @h @h#@R7h @h#@pWEu$u h @h#@$7 jh#@Ah h#@%uujPbTE@ u uhjPEuXYU T @h @UYEtTEtKupVY=~)uh @h @h#@Y6jh#@vuhT @Uzh) @h! @VVEujh+ @<ujhT @ ujhO @uWYhT @UYS @E= uEhT @Yu&hT @hm @h#@5 jh#@UEeE U M}Lh @u5u'= @+5( @h'@jF h%@uT Eujh @*hs @AYP @ @Ph @hT@4T@Ef= @tih @uTEtuu&uVY$uh @h#@}4 jh#@5( @ujF FuhT @h @h @h#@:4h#@ub}5( @ujF EE9EUTh @u 44t>h @u h @EP3jEP7t$h @EPpSh @EP]Sf @h @EPSEjEP](@=ujh @wjj5(@ =ujh! @OuhA @u5" uhE @EPES EhG @EPSEujhI @jEP](@=ujho @jj5(@" =ujh @EhEP*EB'uE0h @u uTY5(@@XY5(@Yf @Uhs @KYP @ @Ph @hT@1T@UPhT @EPhs @u-hs @YPhT @h @h @h @1hs @YPhT @h @h @h, @]1jh @ =uCjh, @x =u-h @h @OQ( @th h @=( @)hs @:YPhT @h @h(@0UEwf @\u{ Yu$uh @h#@0 jh#@juhT @1 b @ f @EtuAY@@E=@u uOY uOY@@9@|jh@@thD@h@,4uh@4X @LjPuh@00 @1f @&EPhF@h#@e/ jh#@E U @E U Mh^@uj/u  @h%@uW3=uuh`@h#@. }%@%=@uuhw@h#@. S=%@uuh@h#@. 3jE U4 =uh@h#@h. jh#@E UEE9E|= @ @ËE U =-E IMEq@u&EPh @h#@- jh#@ EP1YEE U IME-c= $ @ @hw @Y%@Ehw @u= @= @ jh@S U= @uyh(@h@= @~+5 @h@d9 @~ h@JY= @~= @~ h@-Yh@"Yh@YUPhs @YP @ @Ph @hT@m,T@Ph'@Lh'@h@@h'@hT @h@h@h#@',h%@h#@i0=%@uPjh@) h#@1Y= @u!jh(@ hw @uJ @hw @ Y @%@‰EUjjNV=thj8Vjj,V=thjVjj V=thjUjjU=thjUj/YE@@Xh%@{YAPhc @Jh=@h{ @JÐUE=/t E=@uEËE u3uu hT@hd@|*d@ҐUh|@hl@?Eu Euhu  uu'YEuJYUJU= uEuY3Uh jTUTEh@u*t>h@uh@EP)jEP-t$h@EP>Ih@EP+IjEP=@u+Xj(Yh@EPZI@j(Y=@tXj(Yu EPh@5@uEj(Y}t5@KKY@ @=@t3U YE1h@GYEtu# YEt EU9Pt!uYEt EUE}tjuhd@( s@uh@hd@( d@ÐUP=@t5@IY@=@t5@IY@=@t"5 (@MY5 (@Y@UPu Yu uvE=tu u'u֋EUu Y(E@P Y;Euu up'u3u u=uøUP=@t=@t =@u u PYEH;45@_ Y@5@jjh@uh@EPK&jEPU*t$h@EPEh@EPEEPEPY*=uhEPjEP7P (@=ujh'@jj5 (@B =ujhD@@EPEP)=uhEP:=@uh\@EPE@t#=@u)h_@EP]E@ujha@AhEP5@Y5@Y5@z Y@Uj5@5@ 5@uujjh@uh@EP!jEP%t$h@EPNAh @EP;A=@u[jEPK$(@=ujh@qjj5$(@ =ujh5@I@=@uhR@EP)A@t#=@u)hU@EPA@ujhW@hEPu5@ Y5@ Y5@#Y@Uj5@5@M 5@uujjfu=U=@t=@t =@u u CYjj5@ 5@uujjfum=Uu jjfuS=ÐU=@t5@h@h`@7 uh@h`@" h`@ BY} t=@t@u JYUPE'ujju Yu3uYEE 9E~ѸUjjun UjjuZ U.JPh@EP EP#YUPh$u E}jEPuXI uDYuu }u #Yu #Y3Uju#ÐUu EPh@u U$u uh@h@EP EP !YUuc YUE@ tu@ YE E EEUu$ YE< uE3ȐUWVS}3 G }Ƌ]u}ÐUWVS}u Fˋ}]u}Ð H3ÐjH3Ð/ÐÐUPWVS}Eq@uJGq@u=+t =-u EGq@u 3]u}ø0+Ëk 0+Gq@uރ}t뾋븐UWt7u~uNj}ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwuE ÉE)G?}3W d@+W;}W^AY+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ PpA E}|EE}ø E3ÐUfE}} EE EEEE =$@fEEPju EfEEPju EqfEEPju EUfEEPju E9Et1E=u30@ 0@܃}}$0@=t=t=.u 0@-E뭐UWV}t9~u=Ƌu}U=@uh@h@u9@5@LYU=@t5@;Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@8@u35@YUWuhht@_ =v"@WQY=z"@WBY=:j EPW EW8YPj:W7 9Eu`WY}| `9E~aE~"@t4=:t*j EPW EW7YPj:WD7 9Et3}WY}| `9E~aE"@="@="@W^Y="@WOY="@W@Y=z"@G?t =,u?tG="@v"@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V d@+V;}VG<Y}u +gEEvÐbAÐUWVSEPfYE =ruEEE =ruEEE"@?t-"@P;Yd#@rڋE =ru3EV;Yu;YujS Sy;Yjuh(@h$@h@j Y9Eu 3]u}ËE"@S-;Yu VUWVE@ u6Yjj?Ejj?Ejj}?EEP4Y;4"@tu90@tكuEuj:?uj-?uj ?"@Eu}Ð>v?ÐUWV} 5t?F EF F F3҉Vd@=at=rt=wt3u}ÀN jjuJ: N G=+uf N ȸ*>L$Q3ÐUPWE E\@u\@t* \@hP@uu1 \@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}WP5YjjG PP9 GGg G tg }ÐUW}} WY}ËGGUPWEEE@ uE@ t(EH uuu + E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PQ8 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P7 ECG t8W3YG t g GGuu G P7 E9Eus3lUPE EPuh@@d UPEEPu uI UW}EEEljEEW0YEE2uu EP }ÐUWVS}u Džd#@h#@ d#@W=~*uDžF DžDžk -0Fq@u؃u DžÉ=lt h9uF؅[uPVq@tDžlr@؃nt_=h#@uVctQ[tLd#@} W@ Y GGq@u d#@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfd#@fl9uEEPd#@{EEPd#@dEPWSt'=h#@tu /$Fu q@td=h#@ud#@} W Y GGq@u d#@W=uh#@y%uF؃%d#@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$,@EE EEd#@}WyY3]u}ËGG=+t=-t =0t8EMd#@} W(Y GG؃0i9E }9Eod#@} WY GGEh~PW =uh~Php@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}#@E#@E@s3UtE]#@E@E@E@r5E@r@E@AE @s6EE]@)EE(@r݋EE 9P܃}t؁#@#@v#@E0@t#@r05}fEf fEmE]mE܉E@0Ee 8@];r&=5|+#@u#@1}tCF0N<9#@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G d@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W d@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}P@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð" L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wd@UW@@;=`@r3}ÃG uUW@@ WY;=`@r}UWV}tlG t6G t3WVYG PY}0@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG d@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G d@+G?}3W d@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G d@+G?}3W d@+W;}WY3UWV}G G u}}&u((@0,@GW d@*h!YGt@O G Wd@GGVYtG uO @u}G 80@WRd@UWV}G d@+G}G d@Wu};7}7𐐐3ÐU0@EEPhTu } E0@3ø6ÐÐU WVSE9ET=D@u/dev/nullr@(#)fifo.c 3.1request/%s/%sFIFOFIFOFIFOw%c %s @(#)getname.c 3.1LOGNAME%d@(#)outputq.c 3.2request/%s/%soutputqoutputqoutputqcan't open output queue filecan't lock output queuer+rcan't open output queue file@(#)isdest.c 3.1%s/%s/%s/usr/spool/lprequest@(#)eaccess.c 3.1@(#)qstatus.c 3.1request/%s/%sqstatusqstatusqstatuscan't open acceptance status filecan't lock acceptance statusr+rcan't open acceptance status file@(#)fatal.c 3.1%s: %s @(#)lock.c 3.1LTMP.%d@(#)request.c 3.1%c %s requestrm -f %s/%s/*-%drequest!!!!/etc/passwdrr/bin/shsh-c~/{/{/{//~////////////~////??GA>???/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFCMMCM MMMMM DCMCCM9DIDIDIDIDIDIDIDIDIDMMMMMMMMMMM`FMJMMMMMMMMMMMMMMMMEMMMMMMMMMMMhD`FzHJcDhDMM\DMMEMMM5MMEMME-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@H0@H0@`@P0@1@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0`@P0@usr/bin/hplp100755 3 3 7670 4201130313 7534 37777777777 L!  @.text .data@@ @.bss@@.commentÐET@RU RP PjÐUPE @9Eh@jvE jE 0RE=u;5@YP5@j? j h@j. E 05YE 0u,uYMu=@t 3PYøUW=@ucjh@j @FWPj ;t05@HYP5@j h,@YhPu u5@YP5@j3 jh:@j" u +YU=@tjh@j uYUWVL@@9@s @<`@uuYtVuj jhZ@j WIYPWj jh]@jz u}ÐbÐUWV}GGu+Ƌu}ø.3ÐÐÐ@Ð@@(#)hplp 5.3b of Jan 27, 1988E&l66p2e7.6c66F&k2GEstdin: can't open : write error: read error on Unknown error: @@@@@@@@*@<@L@_@q@@@@@@@@@@@@3@G@X@g@v@@@@@@@@ @" @> @W @f @t @ @ @ @ @ @ @ @$ @- @E @\ @p @ @ @ @ @ @ @ @ @ @ @, @J @` @q @ @ @ @ @ @ @ @ @ @ @ @# @, @G @d @{ @ @ @ @% @L @U @^ @g @p @y @ @ @ @ @ @ @ @ @ @ @ @ @ @ @@@@&@0@:@D@N@X@b@l@v@@@@@@@@@@@@@@@ @@/@9@I@W@f@w@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error3.1bS03.1bS0Error 100Error 101Error 102Error 103Error 104Error 105Error 106Erusr/bin/hplpR100755 3 3 41164 4201130313 7672 37777777777 L! |+L @.text|+ .dataL @L @L,@.bssd"@d"@.commentdBÐETd"@RU RP P0jÐUPE &@9E~*E ph @uME &@29E~(E ph @uME &@9E}tjjjR& t9`h @joOE jE 0)E=uh @E 0E 0u,u%YMu= @t 3PYøUWVEEEEEE&@h"@= uZE@E=BEEUB΁h"@щ&@9E~hh @!u}EJ= u@EEEUB΁h"@щ&@9E~hh @Fh"@;CEhhh"@u uhQ @u X}uEEU&@= @u[9&@ujh @j|( 19&@uj!h @j\( jhp @jI(  @EEEJ&@+&@EjEH4&@u# =uBhb @u Whh"@j' ;tjhs @\)E}t+9EsEPhh"@uM E9Eu}tjh @jl' uh @u "M}UWh @Yhh& =uBjh @WP& ;tjh @hPjd uh @h @VYjj;" =ujh @ _h@DGU5&@YP5&@j& } tu YPu j% u,YU= @tjh @j% uYÐUWV@l@9D"@s D"@<0@uYtVuj% jh*@jv% WeYPWjc% jh-@jR% u}ÐUPWE Ep@up@t* p@hd@uu p@ t }ËUWV}u ;u 3u}F;t N+Gu׸UWVS}3$u~Yƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!$Ð #3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  x!@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl`@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}h&@Eh&@E@s3UtE]h&@E@E@E@r5E @r@E@AE4@s6EE]@)EE<@r݋EE 9P܃}t؁h&@&@v&@ED@ty&@r05}fEf fEmE]mE܉E@0Ee L@];r&=5|+h&@uh&@1}tCF0N<9h&@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E$@E5,@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G x!@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W x!@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}d"@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3V ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWT@ WY;=t!@r}UWV}tlG t6G t3WVYG PY}D"@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG x!@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G x!@+G?}3W x!@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G x!@+G?}3W x!@+W;}WY3UWV}G G u}}&u*@.@GW x!@*h!YGt@O G Wx!@GGVYtG uO @u}G 2@WRx!@UWV}G x!@+G}G x!@Wu};7}7𐐐3ÐUD"@EEPhTu } ED"@3ø6VÐBÐU WVSE9ET=X"@u<\"@ X"@X"@ \"@L"@\"@H"@X"@L"@T"@E@3؋=H"@E&;5L"@X"@E@E=w=T"@jYL"@@;t?3Ee ƹ3tL3+‰EEE2L"@+T"@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5T"@L"@0E+E-L"@@;tL"@L"@L"@X"@~ЉH"@;5H"@vH"@P"@H"@ 9=T"@u H"@T"@G(=H"@95T"@u=T"@7tލ;r;l%;UWV}5H"@%L"@9u5T"@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹP"@Nj]u}UPWVS}u ]} G֊ FK}E]u}øfÐT$`"@Ru `"@+D$ø1T$`"@3øÐÐD"@ÐP @@(#)hplpR 5.3b of Jan 27, 1988E&l66p2e7.6c66F&k2GE&l1O(s17H&l5.55c3E&k2GE&l1O(s17H&l5.55c3E&k2G&k6HE-w-wwstdin: can't open can't reverse documents with more than %d pages can't reverse documents with more than %d pages : read error on : seek error on : write error : read error on /tmp/.hplpXXXXXX: can't create temp file for stdin: write errorstdin: read error on : can't seek to start of temporary filestdinUnknown error: p@x@@@@@@@@ @@/@A@R@d@p@@@@@@@@@@@(@7@F@^@k@@@@@@@@@'@6@D@]@z@@@@@@@@@,@@@U@f@s@@@@@@@@@@0@A@W@g@u@@@@@@@@@@@@4@K@r@@@@@%@.@7@@@I@R@[@d@m@v@@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@ @@'@6@G@_@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF    A Q Q Q Q Q Q Q Q Q h  p h k p d  =  -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@2@2@t!@2@l4@3.1bS03.1bS0t!@2@usr/bin/last100755 3 3 50624 4231442725 7571 37777777777 L ! 9@.text9 .data@@:@.bss1@1@.commentQÐET1@RU RP P}9jÐUPWVS}33GU‹EЋC=?uۅ}؋ƹd‹]u}UPWV}u WY$EpWu Eu}ËEPU}u3UPWVS}W!/Y؃|CPj= Eujh@u3 F׊ GC=?uE]u}UWVS}u VW/EtEU]u}j Yh|:j7j Z3Yujh@>jjk7ji YW YCEW_YESEUWV}u WYV7Yu}U0E@@EEE@h 2@Yh3@zYME hG j6gE B=ft=tu%EE9E E UM$E BPh@h-@ j6YE ME =-t}u=@uE3EEju5E}Iju:h@E 0lu @E jh3@E E 0 EMEjju^1 }jh@Vu YEjE+EPu+1 }"jju1 }jh@E)Eh@h-@} @5@D5@u YhZ@hI@h6@h0@h(@h@hb@Y-E$3EEkE$D5@E@=uF=@t=h@E@ Pu%E@ PMYPE@ Puh@KE@=ukE@ Ph@uubYW=@uE@ =ttE@ =c.Ep h 2@@ P$ E@=E=duE@=ztE=muRE@=xuDEjuu[/ EkE$؉EjE@Pu:/ h-@+Y=@u}}u8}th3@uu}tWh3@E@ Pt?Ex ~6@ PYPE@ Puh@uYh-@*YMjEEPu. |$E)EuhD5@uP) EE9kE$d5@~)kE$d5@P8YPh@@j2YEd9E|UWV}h 2@G Pt@9uh@RYu}VYPh@6w h@YUWVS}=@t.G PYPh+@h-@Y)Y]u}34 2@ vuCd|UWVS}u 3$F;t]u}ËG8tC|3UWVSE)E E <ڋE ƙǹEǙ}~,SVWuh@@EPEPY]܋u}SVWhN@EPUPfE6@5@x ~ @ PYYPhY@aj0Y@5@$fEE=|hl@6Yj0YUPh,YEÐUuYPYUWVS1@p@GF҈uEk@@1@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW1@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUWEE EP*YtujW Nj}Uu%-YÐUWV@@9d1@s d1@<@ua%YtVujW. jh@jF. W5%YPWj3. jh@j". u}ÐUPWE E-@u-@t* -@h-@uu -@ t }ËUWVS3-@%=u-=-@t$-@9-@u,=-@u#-@Duh-@?'Y 3-@0@Uh-@&Y=u-@E+Å~VjuSEtE+Ë)-@-@=-@}3-@-@0@+-@;} h-@'Y}t=-@@ -@Dt"h-@%Y=u]u}ËE@UWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUPWVS}] u}GN}E]u}ÐUWV}G tG t w*Yg E GuaO }8u@@GW 0@GGu}G @WR0@G W0@Vo&YtO @맸ÐUWEEEEEE2EEEPuu  ENj}ÐUjjuM& ø T$tÐUW(E+ (@EEPY=((@iGQiWkW<E=1@u=1@uWEPEP< 1@E1@EE9E|)E9E}!E+$(@EEPYG Nj}UWVEQUEE}} EQME<1@E1@ƙ51@Ep1@}| FFFtmnEN}|ۉ51@}=1@ƹtmn=nu f6(@3 u4(@+Fu4(@;}f6(@G1@51@1@1@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph*@ 3W YkUjuuuu u#Ujuuuu uU$WVS}1@E1@E,@s3UtE]1@E,@E,@E$-@r5E,-@r8-@E4-@AET-@s6EE]@)EE\-@r݋EE 9P܃}t؁1@2@v2@Ed-@t1@r05}fEf fEmE]mE܉E@0Ee l-@];r&=5|+1@u1@1}tCF0N<91@]Ћuԋ}ËEE0]@EEsEE 9P EEEE<-@MU]vEu}fEf fEm]mE܉EFUR0EMm]ED-@E5L-@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G 0@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 0@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}1@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWt-@ WY;=0@r}UWV}tlG t6G t3WVYG PY}d1@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 0@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 0@+G?}3W 0@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 0@+G?}3W 0@+W;}WY3UWV}G G u}}&u@@GW 0@*h!YGt@O G W0@GGVYtG uO @u}G @WR0@UWV}G 0@+G}G 0@Wu};7}7𐐐3ÐUd1@EEPhTu } Ed1@3ø6ÐÐU WVSE9ET=x1@u<|1@ x1@x1@ |1@l1@|1@h1@x1@l1@t1@E@3؋=h1@E&;5l1@x1@E@E=w=t1@jYl1@@;t?3Ee ƹ3tL3+‰EEE2l1@+t1@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5t1@l1@0E+E-l1@@;tl1@l1@l1@x1@~Љh1@;5h1@vh1@p1@h1@ 9=t1@u h1@t1@G(=h1@95t1@u=t1@7tލ;r;l%;UWV}5h1@%l1@9u5t1@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹp1@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$1@Ru 1@+D$øT$1@3øvÐ0d:NL$0d::L$0+L$0L$0 L$0 Ãd1@ÐT$Ü@@(#)last 5.3b of Jan 27, 1988strsaveinsert/usr/adm/wtmpno such option %c rebootseek1seek2%8.8s %8.8s %24.24s %20.20s %s Login Term Login Time Logout Time e-time ============================================================================== system boot%8.8s %12.12s %24.24s ~%8.8s %8.8s %24.24s Wtmp begins at %s system crash %20.20s still logged inSystem Crashed at %s(%d:%d:%d:%d)(%d:%d:%d) Interrupted at %s Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDecUnknown error: @$@.@H@X@p@z@@@@@@@@ @ @2 @> @J @\ @k @{ @ @ @ @ @ @ @ @ !@!@-!@&@H&@R&@\&@f&@p&@z&@&@&@&@&@&@&@&@&@&@&@&@&@&@'@'@'@$'@.'@8'@B'@L'@V'@`'@j'@t'@~'@'@'@'@'@'@'@'@'@ (@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error(@(@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFr"r"r"!r"r"r"r"r"r" r"r"r"r"r"r"r"r"r"r"r"4r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"r"!<4N7<r"r"0r"r"r"r"r" "r"jr"r"-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@0@ @@3.1bS03.1bS0usr/bin/leave100755 3 3 43004 4201130440 7675 37777777777 Li! 47  @.text47 .data@@ 8@.bss"@"@ .commentLBÐET"@RU RP P6jÐU9E}0h@vYh@-Yjdh#@j, ƀ#@E ph#@,#@= ujp6Y#@=+uh#@YEPLY#@=0|#@=9~E 0h @j6Y5Ph#@B,h#@qYEdE 9E~m 9EuEEdU}| 9E}| ;9E~E 0h2@Fj5YEPzYEPYEkE<EEE 9P~h Ek@Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u"@&@GW @*h!YGt@O G W@GGVYtG uO @u}G *@WR@UWV}G @+G}G @Wu};7}7𐐐*3ÐU@EEPhTu } E補@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@j Y@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}WV|$ t$L$Njʁ^_ÐT$@Ru @+D$øT$@3øÐ0NNL$0N:L$0+L$0L$0 L$05Ã%3ÐÐ@ÐcT$@(#)cancel.c 3.1usage: cancel id ... printer ... "%s" is not a request id or a printerprinter "%s" has disappeared!printer "%s" was not busy%s %drequest "%s-%d" cancelled your printer request %s-%d was cancelled by %s.request "%s-%d" non-existent%s %drequest "%s-%d" cancelled your printer request %s-%d was cancelled by %s.-/usr/spool/lpspool directory non-existent@(#)fifo.c 3.1request/%s/%sFIFOFIFOFIFOw%c %s @(#)getname.c 3.1LOGNAME%d@(#)isprinter.c 3.1%s/%s/%s/usr/spool/lpmember@(#)isrequest.c 3.1@(#)outputq.c 3.2request/%s/%soutputqoutputqoutputqcan't open output queue filecan't lock output queuer+rcan't open output queue file@(#)pstatus.c 3.1request/%s/%spstatuspstatuspstatuscan't open printer status filecan't lock printer statusr+rcan't open printer status file@(#)isdest.c 3.1%s/%s/%s/usr/spool/lprequest@(#)eaccess.c 3.1@(#)fatal.c 3.1%s: %s @(#)lock.c 3.1LTMP.%d@(#)request.c 3.1%c %s requestrm -f %s/%s/*-%drequest@(#)sendmail.c 3.1mail %sw%s /etc/passwdrr/bin/shsh-c/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF~+>5>5+>54>5>5>5>5+f+>5r++>5++++++++++>5>5>5>5>5>5>5>5>5>5>5.>52>5>5>5>5>5>5>5>5>5>5>5>5>5>5>5>5->5>5>5>5>5>5>5>5>5>54,.02,,>5>5+>5>5->5>5>54>56->5>5--+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@*@*@@*@<,@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@*@usr/bin/lpstat106755 6 3 100340 4213315475 10156 37777777777 L8" m|  @.textm .data @ @|m@.bss` @` @ .comment`ÐET` @RU RP PljÐU E 08Y9EuhRPu jlYE,hE@PM h E@P4 hE@P hE@P hb@ha@jn/ thc@hy@'Y!{hRE@P eh E@P Ouhd@hT%@: jhT%@C)-a|=w̅|$ @hu8 EE9E| j;kYËE U M=-uŋE@PUDYE@u&uhP@hT%@Z: jhT%@E[Uh j h j Uhb@ha@jn thc@hy@&YhjS hjD hj5 Ujhx@u]h@h@_EtBEPh@u( =uEPh@% h@%Yuw`Yh@%YU`E}tEEPYh@EP=uËE U MEPEPuJ t,uEPEP` =t EPPYEEuYtuYuh@hT%@r8 jhT%@EEE9E]VE+E U4EP8uEPYE EE9E|̓}tMuEP=uU@}u_ EPsYh@EP=uE(E U4EP8u EP-Y EE9E|h@EP`=uRUE@PYPuh@EP37E@6PYPYEPE@#PYPjE@PjEPjh@# E@;tE@'Ph0@m# `@}h`@j ^d@d@ UxE}tEEPYh8@EPY=uËE U MQNYusuh9@hT%@36 jhT%@EGE+E U4EP~6uEPKYE EE9E|̓}tMuEP=uEE9ELEUPE@PgYPpYEuhW@"Extuh[@"ËE@Puhx@! UE}tExP Yh@xP}=uËE U tQ YutYttc Ytth@hT%@4 jhT%@tME1E U4xP4uxPQYE EE9E|ǃ}tMtxP=uEE9EUPE@&PYPYEuh@ E@{t h@g YE@{tGE@{t'uE@"PoYPE@Ph@( uh@ E@*Puh@ U(}u1h;@h4@XEjh=@E|E U4 YtE U4YUE U4YtE U4h_@h*E U4hv@hT%@2 jhT%@EE9ExfEft+E=.t jEPEP=3 EEP&YujjEP=tuhYYUDžuh@h@EP2jEPhuRh@EPWWt7hPS tPuh@D $uh@hT%@1 jhT%@t XYU(}u1h@h@VEjh@EQE U4YtE U4Y*E U4h@hT%@0 jhT%@/E؋E9E|fEft+E=.t jEPEPx1 EEP&YujjEP=tuWYU,Euh#@h@EPG0jEPu"h)@EPUEt uh+@>uhE@hT%@/ jhT%@K}t uWYÍEPhA@mujEPP uUhb@ha@jnk thc@hy@'YUE}t EuPjU uTY@P$[Yujh@uDT< t=,tڄ@t= t=,ůthEPP=ujh@$}~PuU Dž*jjU 4{\YE9|Ujj]=thj]jj]=thj]jj]=thjz]jjn]=thjX]E,@0@ih@9Y=ujh@}Ujj]jj]jj\jj\( jb]YU ÐUPEU9}1}uE U =uQY@PYXYEuËE U UuuwQ3Uhj=\UTEh@u,t>h@uh@EP+jEP5t$h@EPQh@EPPjEP) =@u+XjI+Yh@EPP@j++Y=@tXj+Yu EPh @5@Ej*Y}t5@RY@ @=@t3U aE9h<@[OYEtu+YEt EU9Pt!uYEt EUE}tjuhd @f+ s @uhD@hd @p* d @ÐUEtuOY=~3uhs@he@h\@P*jP{=t3뺐UEtu6OY=~3uh@h@h@P)jP=t3뺐UPj-u)Et5E9Et-E+E= E@PYU~ E'9|3ËE+EPuu ) E U+Uu YѐUP=@t5@$PY@=@t5@PY@=@t"5%@TY5%@ Y@UPu Yu uvE=tu u(u֋EUu Y(E@P Y;Euu u(u3u u=uøUP=@t=@t =@u u PYEH;45@Y@5@jjh@uh@EPS'jEP1t$h@EPXLh@EPELEPEP 1=uhEPmjEPV%@=ujh@( jj5%@z =ujh,@ @EPEP0=uhEP=@uhD@EPK@t#=@u)hG@EPK@ujhI@yhEP| 5@>Y5@2Y5@* Y@Uj5@5@ 5@uujjh@uh@EP#jEP-t$h@EPHh@EPH=@u[jEPDS%@=ujh@jj5%@; =ujh@@=@uh@EPH@t#=|@u)h@EPH|@ujh@bhEPe5@'Y5|@Y5|@ Y@Uj5@5@ 5@uujj|urEU=@t=|@t =@u u CYjj5@< 5@uujj|uEUu jj|uDÐUPEP+Y@E@ EÐUEtu>GY=~3uhK@h=@h4@P!jP=t3뺐U(EPuz+=E%=@u E EE9Eu EE1U;uE%8EE%EE t Et$E t E܀tE tE@u3UP=|@t5|@GY|@=@t5@GY@=@t"5%@KY5%@oY@UPu Yu u$E=tu u u֋EUP=@t=|@t =@u u 9Y5|@Y@5|@jjfuJ=t3UPh@u t>h@uh@EP}jEP/)t$h@EPDh@EPoD=@u[jEPN%@=ujh@qjj5%@ =ujh@I@=@uh@EP=D@t#=|@u)h@EPD|@ujh@hEP5@ Y5|@ Y5|@Y@Uj5@5@ 5@uujjfu@U=@t=|@t =@u u CYjj5@ 5@uujjfu@Uu jjfu@ÐU=,@t5,@h4@hp@ uh9@hp@ hp@EY} t=0@t0@u MYUPE'ujju Yu3uYEE 9E~ѸUjju Ujju UBMPhP@EP EP#'YUPh$u  E}jEPulL uGYuu E}u &Yu &Y3Uju&ÐUWVS}3 G }Ƌ]u}Ð rL3ÐUu YPYUWVSt @X@GF҈uEk@r@t @GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRWt @]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐK3Ð/ÐÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWt7uuNj}ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WVY=uE H3u U+ЋO;7sSwu}H ÉE)G?}3W t@+W;}WCY+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P D E}|EE}ø H3ÐUfE}} EE EEEE =$@fEEPju: EfEEPju EqfEEPju EUfEEPju E9Et1E=u3@ @ @ @܃}}$@ @=t=t=.u @ @-E뭐UWV}t9~u=Ƌu}U=@uh@h@<@5@YU=@t5@=Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@v;@u35@YUWuhh @_ =$@WQY=$@WBY=:j EPW EW:YPj:W`: 9Eu`WY}| `9E~aE$@t4=:t*j EPW2 EWn:YPj:W: 9Et3}WY}| `9E~aE$@=$@=$@W^Y=$@WOY=$@W@Y=$@G?t =,u?tG=$@$@oUWVS} uEE~,F t!O>(VOY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V t@+V;}V>Y}u +gEEvÐCÐ>CÐUPWE El@ul@t* l@h`@uuq l@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}Wp:YjjG Pp> GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P= +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P,= ECG t8W8YG t g GGuu G P< E9Eus3lUPE EPuhP@d UPEEPu uI UW}EEEljEEW5YEE2uu EP }ÐUWVS}u Dž$@$@ $@WI=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_=$@uVctQ[tL$@} W@ Y GG@u $@W =tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf$@fl9uEEP$@{EEP$@dEPWSt'=$@tu /$Fu @td=$@u$@} W Y GG@u $@WT=u$@y%uF؃%$@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE$@}WyY3]u}ËGG=+t=-t =0t8EM$@} W(Y GG؃0i9E }9Eo$@} WY GGEh~PW =uh~Ph@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}%@E%@E@s3UtE]%@E@E@E@r5E@r@E@AE0@s6EE]@)EE8@r݋EE 9P܃}t؁%@R%@vR%@E@@t%@r05}fEf fEmE]mE܉E@0Ee H@];r&=5|+%@u%@1}tCF0N<9%@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5(@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G t@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W t@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}` @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ðb ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wt@UWP@;=p@r3}ÃG uUWP@ WY;=p@r}UWV}tlG t6G t3WVYG PY}@ @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG t@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G t@+G?}3W t@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G t@+G?}3W t@+W;}WY3UWV}G G u}}&u%@)@GW t@*h!YGt@O G Wt@GGVYtG uO @u}G -@WRt@UWV}G t@+G}G t@Wu};7}7𐐐3ÐU@ @EEPhTu } E@ @3ø6ÐÐU WVSE9ET=T @u???d@h@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFnJ.T.TzJ.TS.T.T.T.TJVJ.TbJJ.TJJJJJJJJJJ.T.T.T.T.T.T.T.T.T.T.TL.TyQ.T.T.T.T.T.T.T.T.T.T.T.T.T.T.T.TL.T.T.T.T.T.T.T.T.T.TSJL OyQJJ.T.TJ.T.TqL.T.T.TS.T&L.T.TL-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@-@-@p@-@l/@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0p@-@usr/bin/xtty100755 3 3 63170 4273204152 11510 1etc/modem37777777777 usr/bin/enable100755 3 3 63170 4273204152 11726 1etc/modem37777777777 usr/bin/disable100755 3 3 63170 4273204152 12103 1etc/modem37777777777 usr/bin/mail102755 3 6 236024 4201205771 7570 37777777777 L! ;@.text .data@@;@.bssZ@Z@.commentp:ÐETZ@RU RPa PjÐUh@OYuFYh@;Y5Le@q?Y5\e@e?Y5le@Y?Y5|e@M?Yj/YUW}G?u+EPujQ }U=e@t&9E|d@9Ed@UJf U EPu}3E%=@u3UW}?u+E}UWVu />YE @ ~iPWv=|UNVPWJ ttj:u t] e}~ u W<|Mu YuËE S@tS@C;r}WhYEPWV<MS@ujuWq EYC;tS@uu DYS7YЁ}u YU ЋAu YE~(EHU ЋN;u vS@uFEN;u vFS@uF=\t݋ FVS脩UWVj:uIt;}u 3u}O;}vS@uGu uVu ƈ뻋ƈ3UWj:ut;}u3}G?tS@uUWS}] P*YPY;u Nj]}ËG8u3UW}S@t W)Y}ËUWV}u Vǃ0ͺ?uu}UW 9@|h!@h@蝺}h&@ukuuZYա@@@d@Z@=d@d@3UWjuP|WYu_Y}U=@}#h(@h@d@5d@Y@ @Z@d@=@} d@3U(EPuu!jY@E؋EE܍EPuAUW}= t= t3}G?u߸UWVu=!uuGEGV轚YuًEu}UWVS}EWh.@tVYW8Y؍PS87@ƅjfVjhD@V }tƅEj!P@hPFP hI@P1F>t = uhPV PS)7~?jFPt(jh8@V tFjrVuP迤Yjh=@V uUWVS}u EHЋF>uG= t= t F׊ G?t= t= t;r]u}UWVS}u SV@t]u}Gu3琐UPWVS=h@} =(e@~3d@Hh@=(e@Etf=+t=-؋E@ES@t u訫Yh@kh@;d@|d@Hh@=h@} h@kh@@;5d@~ d@-}=(e@};5d@~5d@Fd@؉d@3jj5d@uK| d@8u 3]u}ád@EE0YEE8u=8e@t=(e@} -Ed@Hd@Љd@d@3u)G=}GVY=8e@t=(e@}d@(e@ءd@d@;s;d@suhl@衴Yd@3 UW}u@=+t=-tWh@T3}WYU4WVSEHd@ЋW4YPVi3Wh@E}uWh@E}tu}Y=~E@E tEMtE*=e@ttEHPEPP{> ww h@EP}EPY؍EÉE E EC=|EW&YPYEEPuuuEPh@}tuh@hV@j lU졠d@+d@@Ph@蟲3UWV} Hd@Ћ5d@VY?u3u}UW}=De@u+d@@Ph@3+d@@P@YjhV@We }jY}UWVSE= e@t*5 e@<YE9E| '9E~EE}SYCd@Ћ5d@}u h@uY=De@uSh@`VO1YEF E;E~;EE3Pu0~'P~YPYEEMuÃR3UW}(Jd@Љd@d@f f?u3}UWVS}EPh@tGE);Et}u= t = uCC;uҊu@WYE58e@j5d@SF5d@Hd@EP/YEEP UVPu/~FCPS]tuWS< uۅt 6AY M}>t3UWVS=8e@t(e@EE8t!d@+d@EEu=d@QEd@d@;s;=d@s-}~L @Q @Ph0 @3]u}u=d@t;=d@t+d@@EEEPY볃}~ E9~ E9|>u>uuރ;t;u]Hd@Ћt;uh @YHUWVSEPudE8tGEPhW @7t/EPu%jPNE}n]؋u܋}EE8t%uYEEES@uE8u}| d@9E~h[ @GY뗃}u>jLYd@uhx @Yhd@@E jj5d@uBE.WMYG;=d@~EPDYEEd@:3MYHd@EEEU JHJHJ H ;u5d@Rd@W u;;t6Gd@EFd@ЋE HJHJH J NO;}uRd@W u;;t6Gd@EFd@ЋE HJHJH J FG;}~3Fd@ЉU1GEEEU JHJHJ H Ef@;}|3UjuUjuUDWVSEPuEu$h @YÃ}u4jJYd@uh @ĪYd@@58e@j5d@u@|uv+YEu {uh @j +EPub| E @E @h @uEuj YE3E=d@7VYFd@Ћڃ} tS)YEEC EjuS]] E}u菦YuHYEECEf ?wuYE@ t u?YuYuuuh!@:34Pu|(M荅PY#jh @P? tHh @Pu0h @Puh @Pt Eh @Pu0h @P~uh @Pft E.}u= tPu;'EE9}-Pu\'M荅Pu'EE9EɃ}HPu'PAY!Pu&EEUWE uYHUЋO;}v= t= tGO;}v= t = u= t = uG E Nj}UuVYUuEY|1d@+d@@EPYEEPYh!@試Y3UPWVSEu)SYCd@Ћff']>u҃}tYEHd@Љd@jEYE}t"EHd@Љd@3]u}ád@d@3UWVu&6YHd@Ћ=d@f'>uՋu}UPWuh,!@萢Y}Åu 蜘jYh1!@肥YhV@YEP5Y;uEthA!@hO!@NY3말UuYuuh`!@5e@: hc!@Y3Ujj5e@ hV@j 3U WVSjj]jjO EE=tit jjt jj=P#YəPYjuu uuwu0YjlYhf!@YuܬYu軬YVjSj3]u}ÍEPY;uUWVh!@hk!@u8u}hV@WƘVѨYuVMY3UWTu)}G= tu=d@W\$Yu }W谖Y}W5Y3UWV=d@td@=/ud@=/h!@#Y=d@tCd@=/t45d@VI`=d@u 5d@Y=d@d@=/t}5d@V`tr5d@}Y=d@h!@5d@_tG5d@RY=d@h!@5d@_t5d@'Y=d@3u}h!@hV@OUWjuP'Yuh!@١Y3}WYUPWVEjEP5EUEPjEpuVjEEutUWVEx3WYutWk&Yt "@bE@ uK=He@tM=\tC=|t9j/Wu*WY}"@$"@Ep u/"@Ƌu}UWVSExth<"@8Y]؋u܋}ËEJd@Ћ=d@WYSYEjWhg"@P}tuV=hd@V菄PSYPYP?EEWhj"@EE}uWhr"@.EjWhw"@Pl}tuVhd@VEEEjEPSUPWVSuY؋FWYt =!t;u;}u 3]u}øz"@]+E@P?YESu&EUPWV}rwyYE t;wtVYuwGVYEu YUBRˈYGwu 踊PV變wYG?uEu}UWVS EtQEEtEu)juVu uGEÈGVY~Yt =!tE]u}UW}=d@t8h{"@xY}ËJd@Љd@d@f?u3UWV}d@VtVh"@ u3u}U=d@t 5d@h"@j/5d@s@Ph"@Л3UWV} 7VYtVh"@襛?u3u}UWV3u-Hd@ЉUd@u_YPY@>u΅u 3u܋}Eu6Hd@EPYPYPvYPu蠀E>uŋEJd@ЉURh"@Euuh"@xEEEEEjEPKPDUjuUjuUWVSuS@j9Yd@d@uh #@!Y]؋u܋}jVECd@Rh!#@EEEE}t3Eh)#@hLe@uhLe@肖Yth+#@hLe@hEuhLe@TYWY?hLe@Y} u Wj>Mu WCd@RL }%hLe@YWYuYWYuEPN} SY=De@uVSh-#@躘 3F>t = uuh"@萘YjF58e@j5d@uu.=#h"@QY+UWVS}?u 3]u}hZ#@hI#@脕uh\#@ Y˃=De@uh#@YjVHd@RpK }0h#@裔Y7h#@讗QV&Y_=De@u.C=|h#@xY7h#@f ?tVj Zc=De@uhV@j =V讕YU(h0$@hLe@Z@th2$@hLe@Z@u$hLe@迓Y=Z@t 5Z@lY3hLe@YEZ@Z@Z@=d@t =4e@t;:Pj=He@t ju@ EE=d@tExu=e@t eE=d@t0=d@t'ExtuhV@u_O hV@Y}t[juSTtJh$@h4$@ŕhV@Yju%TtZ@Z@jY΁E~=d@t d@EhZ@<YZ@P5Z@Rqh$@)YaE=et{L=Q|=?t0=.o=!PYhB%@h'%@EhD%@蝔Yh%@P5d@ Y=:r=Mr=Ai=PY=aE=^+=R,E$@E@Eu䍅PWEjuzPE0cyUEEEPpYE@hq$@PEa9EtE8tjP #|Ep$YPEpYPxPE0YPxPEp YPxP9YP>Y=_jP"=ct"5=bE$@E@ EE$@E@E=dh$@PEP5d@h$@PEuh$@IY|u(YEhuYtuh$@Fh$@uEuu֎Y!uh$@ۑ~EEN=t=qt#=m=ht3hv$@PZ@j YjYhz$@P=d@t =d@uh$@'YZjuOjuh#@YHE$@EE=d@uh%@ҐYh %@P)Em9Eu3P5Z@u; =phc%@P5Z@Y5Z@1Yhh%@JYEP9EuM@uhV@uI =st0=r E=huh$@uJh$@u0EP|YUB=wt6=vh%@P5e@Yh$@PEuh$@FYyu%YEe5Z@RY5Z@Yjjh%@5Z@u].=|uPYE9EthX$@ʎYP5Z@ h$@蝎YEP5Z@ E|EE썅Pu uYuuh$@C }|qhV@u7u@YE=uuY&hV@u 5Z@YE=uڃ=d@t=d@t h#@ȍYYzhPhV@ ~ZZ@=,e@tPhV$@t/;E=d@:=d@-=d@t}=e@t2juKt!h#@h%@jhZ@jut!h#@h%@jhZ@Жh%@ˌYp jj@5Z@XY5Z@~Y$yZ@UWV}u 4PpY;t!h#@h%@ejhZ@NFG>tS@uG= t= tNju}U WV}3?t EF t EFO  t EFO t EFO EEPtYti} tch%@蝋YB hV@j EPw t0=,e@tEPh%@tEPLY=yu3Ƌu؋}3UPWVS=He@t}tE8u 3]u}uhd@0uEwWYt =#u`u9=\tR=|tHVilYu=VUYu2j/V u#EEu h%@莊YVh&@肊?uEEuEBU,WVSEPhle@W|hle@h &@5jjEhhle@PYh&@hle@uhle@ΆY5Z@Y5Z@襎Y VW~5Z@юYuVԾYF V7YE}u<9Et jjjhle@uuzu3YjoY9Euh&@Yhle@e YEPܻY;Eu}t uh"&@hle@0 Yh7&@hle@uhle@讅Yhle@Yfh9&@hle@葻uhle@~YV9Yhle@Y/hle@Y5Z@Y5Z@ Y5Z@Z@uj]ȋű}UWVSh;&@hle@ uhle@Y]u}h=&@hle@ܺuhle@ɄYV脼Yhle@Yhle@Yjj<E5Z@ؼY5Z@wY؃uh?&@lYu|jKYZ@@ P?|Yj3YF P,|YE uYE29E|juhD&@5e@5e@95e@Yj+YEP轹Y;u}uuuhG&@hV@ WY5uhV&@hV@ VRYWKYuj5Z@-Y5Z@!Y=Z@5Z@ujJUW58e@j5d@uJ|)d@8u0j%Yd@uhn&@Y}ád@@h&@Y=d@H7 Y7h&@օuu Hd@R]9 } hLe@萂Y뗃?uh&@蓅YUju=Z@th:uÃ=Z@uKZ@hV@Yqh$@h&@3h:ujhZ@ 5Z@谹Y=@e@u[5Z@Y~K5Z@轉Yh&@քYj5Z@h&@5Z@5d@h5d@hy5Z@@Y=d@t jYUjuh&@軄YhV@聹Y%V@h;uÐU5d@uU5e@uUTWVSjjzEjjkEuHd@ЉU6h&@EPԍ jEPΗuEPh&@蕃whEPSPNYh&@EPOE.juu6 }"EP$YuݷYEPkY uLYE@ tEPEYu褷Yu薷YEPEP} EEԉE#؃uh'@YEPYuQ9Et jj9Et jjjEPu u 腏u >YjzYEP Y;uEPEP>}EP YE9EuEPMh'@EPEuEP~YEPYEPYjj5d@` Ef@5d@lYUBEE* uE5d@Wvd@@ uEu}YuƋEUPUP d@@ t h'@~Yu͵Y>=uj萾uj胾3]u}ÐUWu 舳Yuu vuj uE@ t }ÍGUWVE` ϋ} @tGֈ+E =|)u蕅Y t.uV踗h,'@WYulY tuE@ t V@9Etu;} u 3u}Ë+E @UW}5d@'Yjw5d@艅 thD'@|YhJ'@mYd@}U EPu踖}E%=tZ@u)YUW}V@GG}UhV@yYhV@nYU EPE@ P}3ËEU0WVShY'@u uEÍEP~Y}hd'@{Y3uhi'@PLj urumYjeYu`sYuSYjKYq'@ht'@5e@u}'@jPS5e@5e@ZjXYu$h'@{YuYuY3uҶY3(+PPuH E~ E|u蕶YEP{Y;uet! 9Eth'@hV@Ђ}h'@^zYuuh'@hV@螂 uuh'@hV@| z0V‹K= u ;wCj PWt:EPP}#Puh'@hV@3PiYUt=xY3}WueUWVSE8u3EExu0Y3]u}ËEUR;YuYuGjj ouh(@wYu6YGGZ@nt&t = uu]u}3UWVEuE 3u}Ëu F׊ G?t= t = uG= t= tu3뮋몐U=d@t*jjuhL[@d|YhTjd@V@E=d@uEE0Php.@_PɤYEt@MU=\u)9E| EEUE }thu.@qY=d@t*褷#jPNtjjhL[@g{Y}~#E5d@0YhX.@%YQ4}u0=d@u'E=d@t=d@t=d@t=d@u =d@t}t=d@u]hm.@pY]E3EEP5d@*}=d@l]U EP5d@蟇|.=-@t-@9E~E9E} h.@gpYE-@UWVS}o58e@E@ P5d@W:%u"E@ PYd@d@@d@8u5h`/@oY58e@E@ P5d@W5d@EPYE0PW E@ ;}E@ PE0hx/@io hE@ ;~E@ PE0h/@Bo A0PEPYE,EP҉Eh/@赯Y=w|$ -@}t=d@tҴEg9Pu9}u jL}u3= e@t)E@ td@u 5d@YE@>d@/=d@"'Eg9Pujj覫 EE@%G= t= tWEPYEG= t= t=!u1=d@th.@mY茳3GPJY3=#t`&&/;rh.@bmY3F׊ G?tPh.@wt=d@t&u3_&PYEE}uh/@lYE=d@tEg9Pu 踲3 E@t=$e@uh/@lYEn} tE@u=d@u%E@uE0h/@flE,=d@t#E@@tE0h;/@8lE}UW)@7utNj}Ã?u3UWV}u FtG;tOu u}3UWjj40X:Xd@|=d@u[eV@2V@t'V@tV@t;=d@t;=d@tWYY@rNhV@Yh/@)kYhTj蠨jhL[@u}UWVSh/@jYH)@XGu =$e@tA7uY@؋=H~7h/@j7h/@j?uhV@j _3]u}U=De@u5T>@h/@Sj39d@u+/@P5d@h/@+j h/@eYø/@U5T>@h/@i3ÐUWVS}t(e@؃}tESuu }]u}Ë} ~3d@Hd@' t+d@@d@d@;s;5d@s+E |UWVSd@+d@@E}t29E@h0@hY ø 9EuEEEEP2YE9Eu d[@E uY}uu^ YEE衘d@9E~h0@PhYe9E}h0@1hYFEHd@g}th0@hYEE;shh[@&UY׉&EE܅h1@gYu h[@Pd[@9d[@tt}th0@gYEE}t15d[@ju Vh u59uuud[@Eed[@Eju u3 t 5EPYEP<Y9EtGuYE5}th,1@fYEH|= w |$D0@EP:YE}u}tEcE붍;v6}u0!d@V%;E uV3YF;5d@~׍;3Qd@V t:EV7YtE?u}uVYF;5d@~Ed@V tE F;5d@~܃}hb1@e7h1@he?uh1@SeYhVYF;5d@~EEEEEPYEEEEMju V uVYN;u}E%;E uMt$Eءd@d@;s;d@sʡd@d@;s;d@sh0@idY~+d@@P5Yd@V%;E u VYEF;5d@~ԃ}uhI1@dY3UW}|;=d@~Wh1@c}ád@W%;E t.}t!} t1@1@PWh1@c 3UWVSE} uF= t= t덅E>tPh1@mtFE}u) CF>t/= t%= u CF>t;Eu>tF;t6E@E=2u h1@bYPOY>7+E UWVS=[@|Chh[@[@4[@O[@[@d[@ [@[@]u}ËE8h[@G؃ t tu OE83S@td[@El0@*E;uâh[@i[@E8E@끃EEuEtOSh1@kt=]G2;]t1}u t& u-h[@=}FӈG؅uʅuO}tuh1@hV@`f E8kd[@ -0d[@FӈGS@uOE8U[@@[@=| h1@KY[@U[@[@hh[@MY[@[@[@d[@[@U[@UWVS}=8e@t(e@؅t5d@%;t7d@d@;s;5d@sы5d@/%;u+d@@]u}Ë+d@d@;s;5d@s3UWVE Hd@ЋWYuV*MtuV'YPMu u}3UW}|;=d@~ h2@͟Yd@Wf$}UW}|;=d@~ h!2@蘟Yd@Wf  }UWVS}} tE =$t=.t*=^um5d@d@Hd@Ћd@+d@@ءd@%;E u Ë]u}ShT2@M^Who2@8^%;E t&d@d@;r+%;E u+d@@녃;5d@sh<2@]YeUWVS3E3EEEV@P莖Yd@V@P{Yd@he@hV@Red@3 E =-tE B=it2=dt4=bt2a=Rd@4e@$e@EH;|h2@hV@bjYGE Ue=c:EH;|h2@hV@aj踚YGE U)=ft=ed@d@EH;|d@3@GE d@=st>j=rEH;|h2@hV@Caj!YGE UEH;|h2@hV@ajYGE Ud=uu=EH;|h2@hV@`j趙YGhd@E 4I E 4h3@hV@` j耙YG;}u4}u}u }u}t?h'3@hV@b`j@Y#=d@thH3@hV@=`jYt2,uuuuU R5d@Yd@=d@tWd@u d@d@j5d@n5d@TWYj萘Ym5d@JYhd@ho3@d@j5d@Mn}\=9@u 9Z@u5d@h3@YjYthd@h3@Y h3@YYjY=d@u-j5d@m}d@5d@h3@Yh3@h|e@id@th3@h|e@Nd@uh|e@8VYjtYh|e@Yd@=d@u+thd@h3@Y h3@YYj&Y@jY]u}ÐU94@u5d@h44@ٝ*94@u5d@h44@距j辖YE=!uj詖YU WVS=d@t5d@u*5@(=d@u]ԋu؋}35d@\5@PWh5@X45d@MY=u5d@TY5d@h5@W3BtGd@d@;rޅu!EP5d@nu =d@h5@5d@otv4@35d@uGjSV |Gd@d@;rScYC uSʋY4@5d@SYtS蜋Yjh4@94@ujh(4@ 94@u5d@h44@YUWVS5d@h6@t15d@8Y=u5Z@5d@h6@QV 3ۋÉEE=d@Q%@tE%=t u ΀E%=uCfd@d@;r94@ud@9Eu }u3 uQS95d@9EuK6@L6@Puh26@lUtiu5d@uAh6@?9jh4@R94@u:94@u2jh(4@.ci6@PShN6@T3]u}ø94@u5d@h44@ 94@u5d@h44@əUWVSjjEjj E5d@hk6@{tV5d@y6Y=uC5Z@5d@h{6@?T uj趑uj詑]؋u܋}Ëd@7t h6@SYujkuj^d@+Å~Q=d@tH=d@t?u6@6@PVh6@S CPh6@EP] EPƜYUU$WVSE|Tjj5d@X t$h6@:SYh6@5d@Eu3juuX t#5d@h6@Ru}YE=e@tEE3ۋ5d@JYEPutPYtVfEfE܋EEu]uEPu(uJYEuYuu~E33ۍP5d@}h7@NYu虆YEC=U WEP5d@h=u79Z@u7@.7@P5d@h 7@Q }á\@9E~\@9EE\@}u5d@h<7@HQ5d@hh7@0Qn=d@tC=d@t:h7@ QYhV@2YhV@VY thV@VY= uyt!Yth7@PY\@31'UWVS} u 3]܋u}jj EjjEE d@EjE@PGjE@PGEt}u4uh7@,Puj裍uj薍j31d@EЋE HJHJH J G;=d@|ǡ\@E}4EUЋE HJHJH J EPUO;=d@}ă}t h7@Yd@ËFFFF E;rEDED =d@t5d@Y5d@Yãd@d@Ed@Ed@E\@uj\ujO3&UW} u \@j2:Yj(:YU JHJHJ H \@G=\@}UWVh8@5d@@u5d@,KYu}ø94@uVFY \@j5 \@VS 4@=d@tjVW |"d@d@;rF t5d@JYVTYaVCY4@3IUPWVSjjjjEh8@5d@;u5d@'JY]u}4@=d@tjVW |ed@d@;rVYF uP#Yu=d@t h9@IY9@j Whd@ZL }ÐUJ\@h\@hTV@Pz }h:@;>Y\@B\@\@F\@\@\@hj~"\@u jj~hjy~&\@u jjd~h*\@JYt wE tE0h":@;UE tEph':@UBE tEph1:@UBE tEp h6:@UB E tEph<:@UB=J\@t.B\@\@F\@\@h\@hTV@Py 5"\@j\}5&\@jL}3qUWPu u u 3Wu Jt W,YߋE UWVS} Wt%YPVuA u3ÅtSVIt WS!&΋UPWVS=J\@u*} t$J\@h\@hTV@Pw hV@u4} t)u XqY=~hP:@>YE ]u}Ã} uuhb:@, uu +hV@up4hV@|sYhV@+U+PV": ؅tupYHEEUuE j=J\@uNUF;=B\@u;]t9C=\tK+;=F\@u;]tC=\uLjC ]C׈uEu3EU5"\@jz5&\@jzB\@\@F\@\@=J\@th\@hTV@P_v hV@j 02jh*\@ GUW;@GtWY ?u}UWVSuYtGuGH ]u}Ë_3Gt6xYg} tJE tAju !oY@P3tO6u )uh=@E<WYvUPWVS}GtJ_8tu$E{t smYE}uC]u}ËEw8uVUWV};@W6AFu Ƌu}à >u߃=De@uWh=@;3UWVSu|Ytt=uwh=@E0Eth=@E0EuKh >@h=@ nE,h>@ ;Yÿ;@EEEdE0 C֊ F>t ==u==uFuh0>@:YEVPEE8uE_Gu =$e@tJGt&GE2t3t-V7h=@': G@9u7h=@ : ?u3hV@u.u?YE=uuwnY3UWVS}[7YtJFt7^Ft0uYfFtV9Y FH ?u3]u}ÐUWV}E `\@Ed\@P\@X\@T\@fG?jvV{ Džu=P\@tK}u55?@VY'P\@P\@jjvVn uT\@P\@uET\@uYu}UWVu5 Y=t(uh\A@hV@= T\@ u}5`\@!Y=P\@fgߋ?uWdY=P\@ G uwYtfO ?uUWVSX\@B@t2{)G=\t5?@s Yu?uӋ[u]u}3X\@^@tN{EG=\t6Fwu%E|&}wsCW*Y?u[ut k EuJ oUWV}s tG jjVWu}whrA@hV@ < T\@UWVS}_GEG EE3E=#u EeFEuF= t= tE=etu=r=x)EVu#t|VhYEShYUЍRR}!YEPVn#?FVS^#=VShA@hV@;T\@3uCVkYufO ]؋u܋}t=#=$S5P\@1P\@}tjjuW뢅uE=d\@u%=`\@tV5`\@"u ECu jcYfEfGV#YPS"ufO jVWJ t38u9E}fEfGj5`\@W UPWEfPfBfP%=|"u hA@hV@9 T\@3}u c"YWYu#EPuWu5P\@P\@Ejuu uu T\@3롸UX\@U$WVS=X\@@tuuX\@]Ћuԋ}\\@?@EPSJ=u?@3EA@SYt=u0W{Y'EA@ShA@hV@i8 \\@=X\@y@titct w Ytuww\\@uuhFB@hV@8juhV@ hV@j ' GuE\\@UPWVSEaEEtHjY>3ۋ=X\@0@t tCwVu WZYu̅t but 9E|t$9E|jhA@hV@#7 \\@]u}UWVSEx@@ @EEf@ 9E|Yh!B@WEp\\@uuhFB@hV@6juhV@ hV@j ^& ]܋u}Etu3Eu=#t =$uk=#uKeC=euCSWEp\\@uuhFB@hV@ 6juhV@ hV@j % PS>cYHPh?@:h4B@WEp\\@uuhFB@hV@5juhV@e hV@j >% ?uFE] ]@E,5]@hBC@EEP* E E]@Eu Y։?9}thEC@hV@u%3ECtfC9CEE@ uEE=\tƋUfCM}unUW}=$u^G=?uSG=Ht2=Rt=mt1=ru>= ]@u*3}Ã=]@u3=]@u 3=]@t33UWVS}u 3G%;uC?uË]u}ÐUWVSuYu?@]u}h>@Vw:)tՃtWv|WvE}uWvI;}} E E 0uEE }t WMYNjU B}t3UE]u}ÐUW} #G%;EuwhD@u ?uً}ÐUWuYuH'G=$uG=puWY<]@}t=#t=$t<]@D@UW}j*5<]@ uE(S@tP5<]@f uG?uӊut3}øUWVS} tE 8u ]u}5?@jY=t5?@hD@hV@ uY wVYVIY=#t =$t G D@=#ue Fu^F= t= t=et"=nt=ru2VYu'G -N#=#t u VYG L?E E uUPWVSE@%ؿ@]@|-@]@ ȸ?u7;r3jV uhD@hV@\jG:RYGw9_r)GGEGE]u}à ]@xhD@hV@jGQYUW3#k ]@k @]@ JHJHG rD@}UD@UWV=D@t]@@]@@]@(?t G-@]@ ȸG ]@rЋu}Ã?t'>u"F-@]@ ȸFNj֋ JHJH ]@rUWVS}Džu 3]u}ËF8u+PY؋FG҈uUWV}u  F׊ G?uƋu}ÐUPWV}u FGu 3u}S@t T@ES@t T@9Et+릐UPWVS}=0^@uI0^@u;Nj]u}E31j0^@4W5 uECWYuF0^@<uĊE룐UPWVS}u ]FGtOK|HS@t T@ES@t T@9Et} 3]u}+UWVS=D@t^@D@hE@hD@}CEu^@^@^@4^@`^@EuhP; G?tPhE@utH=#uE@uu@uud Y]u}u ?Y VWeu nYuF t u YCVAY밐UWCt?u3}ÃtG쐐UPjjoJEtuj[J@E@@@E@=uCAjJPJÐ J3ÐUuYPYUWVS^@DE@GF҈uEk@^E@^@GFGFGFGE@ktE@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW^@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐJI3Ð)2IÐU5Z@u u< ÐUW} }WEPm@}ËGGU/ÐÐ/ÐUPWVS}ES@uJGS@u=+t =-u EGS@u 3]u}ø0+Ëk 0+GS@uރ}t뾋븐UWVS} 3G %=utG9Gu!?uG DuW@Y 3G Y@UG u;u<YEPuG PF E]u}W @Y=u~GEU+Ѕҋ~Sjuu Et E+EH؋)G?}3W Y@+W;}WzAY}t*G @tW?Y=u ]VEgUWEE EPAYtujW* Nj}UuaDYÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwuD ÉE)G?}3W Y@+W;}WV@Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ Ph@ E}|EE}ø E3ÐU$WVC|YjhE@C|Djk$PV? j$EPV9 =$tVu?Y3uԋ}Vd?YE܄u3jEPh^@8 ^@^@ŐU=E@uhE@hE@)9E@5E@ YU=E@t5E@:YE@UW}G?t=:t = u= u ?tGNj}U=E@uhE@hE@8E@u35E@YUWuhh^@_ =b@WQY=b@WBY=:j EPW* EW7YPj:WD7 9Eu`WY}| `9E~aEb@t4=:t*j EPW EW^7YPj:W6 9Et3}WY}| `9E~aEb@=b@=c@W^Y=c@WOY= c@W@Y=b@G?t =,u?tG=b@b@oUWVS} uEE~,F t!O>(V Y=uE9Eu~3]u}N;>}Sj vuSEtE+E؋E)F>}3V Y@+V;}V;Y}u +gEEvÐ:AÐUWVE@H@9Z@s Z@Ejj>Ejj>EEP3Y;4c@tu9Z@tكuEujz>ujm>uj`>c@Eu}Ð>>ÐUWV} 4t?F EF F F3҉VY@=at=rt=wt3u}ÀN jju~9 N G=+uf N ȸ*.>L$Q3ÐUPWE EV@uV@t* V@hV@uuQ V@ t }ËUWVS3V@%=u-=V@t$V@9V@u,=V@u#V@DuhV@6Y 3V@Y@UhV@5Y=uV@E+Å~VjuSEtE+Ë)V@V@=V@}3V@V@Y@+V@;} hV@77Y}t=V@@ V@Dt"hV@:5Y=u]u}ËE@UWVS}u ]GF:u Nj]u}M}3U9Er=(Q@u>Ec@PH7Y(Q@Ec@Ec@E EURu+ËE9c@sˣc@P5(Q@9(Q@UWVSc@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuWc@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVuc@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u c@|?=(Q@t6SW5(Q@8 SVW8 S5(Q@V8 ]u}ÊEGFUKuUWVS}u ]c@E9E|R=(Q@tIuW5(Q@n8 uSWa8 uVST8 u5(Q@VB8 ]u}ÊEGCFUMuӐUW}WH0YjjG PH4 GGg G tg }ÐUW}} WY}ËGGUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PI3 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P2 ECG t8W.YG t g GGuu G P2 E9Eus3lUWV}uW 1YG uG tO G Dt1V@"u}F @tV .Y;5Y@rGGG tG Y@+GPwG P+ | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}G tG t w3Yg E GuaO }8ui@e@GW Y@GGu}G m@WRY@G WY@Vc0YtO @맸.v53Ð^53ÐU}u3jYEhj4EEE}t6E9Ev)EE&E+EEEEEMujH4hc@YuubYljUYE}| uj 4} }}}t EEP YEE2Ujhc@EøÐF4ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu ? ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$ES@u5GEES@uE=+t =-u EGEu309Et "G=xt G=XuES@tEES@t E-0#ES@t E-WE-7E;| 3]u}Ãu;09Eu1GS@tG=xt G=Xu EES@t E-0#ES@t E-WE-7+EGES@tEES@t E-0#ES@t E-WE-7E;|} tE 8}tU5Z@E Pu Ð;00t3Ð T$tÐUW(E+,Q@EEPY=4Q@iGQiWkW<E=c@u=d@uWEPEP< c@Ed@EE9E|)E9E}!E+0Q@EEPYG Nj}UWVEQUEE}} EQME<d@Ed@ƙ5 d@Epd@}| FFFtmnEN}|ۉ5d@}= d@ƹtmn=nu fBQ@3 u@Q@+Fu@Q@;}fBQ@Gd@5d@$d@d@u}Ëƹtmn)EFƹtmn9E} =$tu#YyUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUPWVu#Yt8EPu|%E%= ujhQ@'} 3u}þfEft EU;uuhQ@h(d@/EPh(d@EPh(d@|=EU;u1E%= u!t EU;uW,"Y(d@\jEPW =TjjWe" NuW!Y3 '3Ð'3ÐUWVS}u ߋG8uOGF҈uË]u}UW} 9EtFG tG9GwG9Gu+?u&GuWQ YGHGUE}ø Z&3ÐB&ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  Y@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlS@Dž\9PtP؉PNKPPoYh~PW =uh~PhS@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}Hd@EHd@EU@s3UtE]Hd@EU@EU@EDV@r5ELV@rXV@ETV@AEtV@s6EE]@)EE|V@r݋EE 9P܃}t؁Hd@d@vd@EV@tYd@r05}fEf fEmE]mE܉E@0Ee V@];r&=5|+Hd@uHd@1}tCF0N<9Hd@]Ћuԋ}ËEE0]@EEsEE 9P EEEE\V@MU]vEu}fEf fEm]mE܉EFUR0EMm]EdV@E5lV@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G Y@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W Y@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}Z@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}øF L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WY@UWV@;=Y@r3}ÃG uUWV@ WY;=Y@r}UWV}tlG t6G t3WVYG PY}Z@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG Y@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G Y@+G?}3W Y@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G Y@+G?}3W Y@+W;}WY3UWV}G G u}}&ui@e@GW Y@*h!YGt@O G WY@GGVYtG uO @u}G m@WRY@UWV}G Y@+G}G Y@Wu};7}7𐐐63ÐUZ@EEPhTu } E裄Z@3ø6ÐÐU WVSE9ET=Z@u.@]VF.@*L.@1 R.@gV.@ $PlRPDQPnext!=?aliasAliascdchdircoredeletedpdteditechoexitforwardForwardfilefromgroupheadershelpholdlprlistmailmboxmoveprintpreservequitreplyrespondrestartReplyRespondsavesetshellsizesourcestringtoptouchtypeundeleteunsetvisualversionwritewhoisxitz/usr/lib/mail/mailrc_ quitcommand buffer overflow New mail has arrived -- type `restart' to read. Can't "!" while sourcing 0123456789$^.-+*'"!command name too long What? What? May not execute "%s" while composing May not execute "%s" while sourcing No applicable messages %s requires at least %d arg(s) %s takes no more than %d arg(s) Unknown argtype Interrupt Commands are: %s, %s%d message%s: smail version 3.0 %s. Type ? for help. @(#)list.c 1.1 87/08/26 XhWZXXXXYYYhW$.^*-+ () No numbers mixed with * Non-numeric second argument Referencing beyond last message Referencing before 1 No valid message Non-numeric second argument too many names Can't mix "*" with anything No applicable messages. No applicable messages from {%s, %s} %d: Invalid message number %d: %s message not deleteddeleted message'"too many args '"Missing %c Too many regretsBad message number to unmarkBad message number to markNo applicable messages %d: Inappropriate message Unknown metachar (%c) @(#)main.c 1.1 87/08/26 usage: mail -u missing -b argument missing -c argument missing -r argument Subject req'd for -s Unknown flag: %s mail: delivery address required Cannot give -f and people to send to. /usr/spool/mail"%s": permission denied No mail for %s No mail. Warning: "%s" not writable. wrNo messages for %s No messages. @(#)quit.c 1.2 87/08/26 D4@4@4@4@25@d5@5@`quit' aborted, can't save results of mail session; contact the systems administrator immediately. Your mailbox has NOT been modified. You may still use `exit' to leave mail without updating your mailbox and to prevent loss of mail. Your mailbox, `%s', is in an inconsistent state. Use `quit' to repair your mailbox, or `exit!' to leave your mailbox in an unknown state and probably lose some mail. wHeld %d message%s in %s s%s: removed /usr/spool/mailFile %s: locked (errno=%u) Held %d message%s in %s sSaved %d message%s in %s s/usr/spool/mailFile %s: locked (errno=%u) error while attempting to read in new mail %d new message%s: s%d - $temp file seek error r%s: seek error /tmpWarning: %s%s has been removed: cannot stat(Warning: mail file %s has been emptied.) *** original mail file %s was modified. Overwrite changed file (y/n)? Combining both sets of messages Insufficient memory for %d messages bad NULL msglink pointeraw@(#)send.c 1.2 87/08/26 Not sent; no message or subject Null message body No recipients specified amailer queue: Letter saved in awrFrom %s %sTo:Subject: %s Cc:Bcc:Return-receipt-to:Date: %s "%s" %s (%s)@(#)temp.c 1.1 87/08/26 /tmp/Rm%05d/tmp/Rq%05d/tmp/Re%05d/tmp/Rx%05dmail: `%s' invalid user name MAILHOME./mbox.mailrcdead.letterMyname=%s, Homedir=%s Deadletter=%s, Mailrc=%s, Mbox=%s no memory Cannot find uid in passwd file! noname@(#)tty.c 1.2 87/10/09 ioctlTo: Subject: Cc: Bcc: Return-receipt-to: too long to edit @(#)vars.c 1.1 87/08/26 EDITORVISUALSHELLd@e@e@<@ e@d@:@<@e@:@<@e@:@=@e@e@ e@$e@,e@0e@4e@@August 10, 1984?@@@@@ @@#@@&@@)@@?@@&A@@K@@N@@Q@@T@@W@@Z@@p@@&r@@|@@@@@@@@@@@@@@ @@!?:%#_-.h>@@@@@$@@@@@@@@@@@@@@@@@@A@)A@@A@/usr/lib/mail/mail.local!..mail.local-r$f$u/usr/lib/mail/mail.mn:..mail.mn-h$H$f$h$u/usr/lib/mail/mail.un%..mail.un-h$H$h$f$umachine aliases only?/usr/lib/mail/execmail..execmail$?m-m$?H-h$?H$H-f$f$u/usr/lib/mail/aliases/usr/lib/mail/aliases.hash/usr/lib/mail/faliases/usr/lib/mail/maliases/usr/lib/mail/maliases.hashalias file error: %s missing forward alias: %s%s: %s "%s" involved in alias loop no path in machine alias filepath unresolvedalias file error: %s Can't resolve machine aliases in %d passes machine alias loopbad machine aliasCan't send to users on %s: (%s) Don't know how to send to `%s' # rr :,Can't send to:From %s%s (wait) "%s"forkCan't send to: ERROR Can't send to: OK buildargv: no names to build arglist %dbuildargv: `$u' error in mailer template C@C@C@C@D@D@caller error can't creat lock temp file %s: %d link error: %s: %d stat error: %s: %d unlinked stale lock file %s too many retries: %s /tmp/%u.mlk/tmp/%.10s.mlkmailock: %s%c"%s"%s (%s) ,( ,( %salias file error: %s salloc: no memory (fatal error) salloc: string table overflow (fatal error) /etc/systemidr E@/bin/shNo local user named "%s" fork-caDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/utmp/etc/passwdrrUnknown error: H@H@&H@@H@PH@hH@rH@H@H@H@H@H@H@H@I@I@*I@6I@BI@TI@cI@sI@I@I@I@I@I@I@I@J@J@%J@4J@@J@WJ@hJ@J@J@J@J@J@J@K@K@9K@HK@lK@K@K@K@K@K@K@K@K@ L@L@-L@BL@KL@TL@hL@zL@L@L@L@L@L@L@ M@M@5M@DM@MM@VM@iM@rM@{M@M@M@M@M@M@M@N@;N@[N@N@N@N@N@N@N@N@N@N@O@O@O@#O@,O@6O@@O@JO@TO@^O@hO@rO@|O@O@O@O@O@O@O@O@O@O@O@O@O@O@P@P@P@&P@0P@:P@DP@NP@XP@bP@lP@vP@P@P@P@P@P@P@P@P@Q@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-cQ@Q@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFAQQQQQQQQQhphkpd=-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@m@m@Y@m@4o@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS04o@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1busr/bin/remote100755 3 3 51104 4231442730 10107 37777777777 L! D T@.textD .dataT@T@ TE@.bss@@.comment(RÐET@RU RP P9DjÐUWVSEEE @F=/u5@>u5@h2@u $@9E~0hd@E puE p Y @mE @m@-9E}5@h@j@8 E PUX@ EEt@@e Euhg@jH}uEESuEPjh@h@hPshPt Y}hPh@jA 5 @Y @h@5 @7@uh@jIdSh@5@ 5 @h@5@ jY@h@ YPh@5@o uh@5@Y uh@5@C @P@Ph@5@ uh@5@  =$@u)h@5@uh@5@ Džd@E苕d4=.u5@j. Vh@5@ dE苕d<uh@5@j=@t;5@WD  @} h @Y@@uǡ@@ th@jJ5@7Yh@ Y@uh%@jAt P@p5 @ h5 @m hG@h>@h@ h@}Yh@5 @ 5 @vY=$@t u MEuEUE U,@]u}ËEE=|3;G`Vh'@ tIUW#t?u3}ÃtG쐐UWVS=,@t@,@h>@h0@.Eu@@@@@EuhP G?tPh@@utH=#u@WBY=:j EPW EWR)YPj:W( 9Eu`WY}| `9E~aEB@t4=:t*j EPWB EW(YPj:Wx( 9Et3}WY}| `9E~aEF@=N@=R@W^Y=V@WOY=Z@W@Y=>@G?t =,u?tG=J@:@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vusEtE+E؋E)F>}3V 0@+V;}Vo-Y}u +gEEvÐUWVS}u ]GF:u Nj]u}M}3UW}W)YjjG P- GGg G tg }ÐUPWEEE@ uE@ t(EH uuu E@ t }ËUWV}uW+YG uG tO G Dt1 @"u}F @tV(Y;5,@rGGG tG 0@+GPwG P% | GG듸9tO O G tg aUWEEEEEE2EEEPuu [ ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E= @u5GEE= @uE=+t =-u EGEu309Et "G=xt G=XuE= @tEE= @t E-0#E= @t E-WE-7E;| 3]u}Ãu;09Eu1G= @tG=xt G=Xu EE= @t E-0#E= @t E-WE-7+EGE= @tEE= @t E-0#E= @t E-WE-7E;|} tE 8}t T$tÐUW(E+@EEPY=@iGQiWkW<E=`@u=d@uWEPEP< `@Ed@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<h@El@ƙ5p@Ep@}| FFFtmnEN}|ۉ5|@}=@ƹtmn=nu f@3 u@+Fu@;}f@Gt@5x@@h@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph< @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@Ed @s3UtE]@El @Et @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁@@v@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 0@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 0@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W0@UW @;=,@r3}ÃG uUW @ WY;=,@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 0@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 0@+G?}3W 0@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 0@+G?}3W 0@+W;}WY3UWV}G G u}}&u@@GW 0@*h!YGt@O G W0@GGVYtG uO @u}G  @WR0@UWV}G 0@+G}G 0@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6VÐBÐU WVSE9ET=@u<@ @@ @@@@@@ @E@3؋=@E&;5@@E@E=w= @jY@@;t?3Ee ƹ3tL3+‰EEE2@+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @@0E+E-@@;t@@@@~Љ@;5@v@@@ 9= @u @ @G(=@95 @u= @7tލ;r;l%;UWV}5@%@9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øfÐT$@Ru @+D$ø1T$@3øÐÐ@ÐT$ @(#)mail.mn.c 1.3 87/08/26 execmailusage: %s [-m] [-] [-f file] machine command [arglist]usage: %s srcuser tgtmach tgtuser .../usr/lib/mail/top/usr/lib/mail/top.next--(@tmpXXXXXXremotercan't open %scan't determine user name-hcan't determine local machine name%s/%.*s/usr/spool/micnet/remotecan't chdir to %swcan't open temp file%s %d %s%s %s %c%c %s -h $H -f %s %s . bad write to temp filenetworkno micnet password entry%sXXXXXXmnLOG%s: possible micnet daemon trouble remote machine is local machine: %sunrecognized machine name: %srcan't open %s%s: line %d, bad formatrcan't open %s%s: too many fields%s: line %d, bad format%s: , \, /etc/systemidr Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/passwdrr @$ @W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF2"++>"+`+++++]""+&"J"+""""""""""+++++++++++$+=)++++++++++++++++K$++++++++++e+"$&=)""++"++5$+++++#++K$-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ @ @,@ @!@3.1bS03.1bS03.1bS03.1bS03.1bS0,@ @usr/bin/rmail102751 3 6 36630 4201130571 7722 37777777777 L ! h28 8@.texth2 .data8@8@8 83@.bssp@p@.comment(p=ÐETp@RU RP P2jÐU(WVSE9Eth@h@k j1YE XT @h`@hhT@w uEjh@hT@ tjh@hT@ uTj hT@< EhuhT"@ EU@jrE@P EE@hT"@hT @ T @uh@hT @v%EP"Y}h@h@bj0Y 5P@h@h@2 j0YTj h@u 6E huhT$@ =T @uhT$@(YhT$@hT @ h@hT @ Wu*Yh$@uE؃}u+uhT@ch`@hhT@ uuk&Yjj;/Ejj,/Ejj/EEPR$Y;tuuEuj.uj.uj.uG/Yu*Yj *Yjuu)Yp@@E@h&@E0u ET @h)@E0uEEE8up@@Pp@05P@p@0h,@h@j.Y]̋uЋ}UWVS}u ]F= t G֊ F>tPhP@uK]u}ÐUW=T@uT@t@=t@t-=t@ ju7 u }Ã?u3UPWVS}u ]FGtOK|H@t @E@t @9Et} 3]u}+UWVS=X@t@X@ht@h\@!Eu@@@x@@EuhP G?tPhv@jutH=#u(VY=uE9Eu~3]u}N;>}Sj vu#EtE+E؋E)F>}3V @+V;}V'$Y}u +gEEv>N)ÐUWV} t?F EF F F3҉V@=at=rt=wt3u}ÀN jju&$ N G=+uf N ȸ*(L$Q3ÐUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW!YG uG tO G Dt1`@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸;&&t3ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžll@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E@r5E@r$@E @AE@@s6EE]@)EEH@r݋EE 9P܃}t؁@R@vR@EP@t@r05}fEf fEmE]mE܉E@0Ee X@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE(@MU]vEu}fEf fEm]mE܉EFUR0EMm]E0@E58@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}p@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW`@;=@r3}ÃG uUW`@ WY;=@r}UWV}tlG t6G t3WVYG PY}P@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uT&@\*@GW @*h!YGt@O G W@GGVYtG uO @u}G d.@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUP@EEPhTu } EP@3ø6ÐÐU WVSE9ET=d@uFrom somewhereremote from !anonymousrmail: pipe to mailer failed rmail: fork failed (errno=%d) w$f$urmail: can't execute %s (errno=%d) /usr/lib/mail/uucplocalr 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFRRRRRRRzRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR.RRRRRRRRJRR-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@t.@t.@@|.@/@3.1bS03.1bS03.1bS03.1bS03.1bS0usr/bin/prep100755 3 3 41170 4201131066 7556 37777777777 L'! 5 hX@.text5 .dataX@X@ X6@.bssX"@X"@h.comment XBÐETX"@RU RP P=5jÐU$&@9E~,E P=-uu YEE E)E E9Eus8@H@Bhf@E U4 *8@u#E U4hh@hh@ j4YX'@E U4,Y58@x+YE@E;E|& 5$&@A4YUPT'@+9T'@|$&@&@ T'@\'@t)u5X'@5\'@hw@hh@ j3Y=T'@u#.9\'@'9\'@u='@t'@h'@҅u+d'@@\'@Et E|@ҡ8@}58@ Y8@P@T'@BT'@(&@\'@=ø9\'@t8@}58@{ Y8@P@\'@= uX'@T'@`UP='@ty'@'@'@@@'@@'@>'@'@h@5@'Euh@hh@w jE2YuYUEEPU='@'@`'@EUBU @'@'@'@ v&@j-d|= w |$$@EPh@hh@ j1Y='@u''@`'@EUBU @E@EuEËEyU4E׉EtE= u*Ejh'@E؋U+REPE׉E=E= u EzE؋U+Ѓ'~h@hh@ j0YE} u, Y EP@UBUԈE=Tø 9Et7kE UЃ0‰E̋E} u Y EP@E=uuh'@E؋U+REP(E׉E]Ud'@k &@ T'@(&@"@U09d'@t d'@'@=&@ud'@T'@ƀ(&@k &@ T'@(&@k &@ +"@"@k &@ "@JUEىE E=A|E=ZE E@EUBU҈uʃ='@tbjh'@k &@ "@EPEԃ}u3EЃ=`'@u39EtT'@\'@(&@ &@ &@k '@"@T'@\'@(&@UWV=&@t5X'@h@hh@ 9d'@uq &@E &@='@t1k &@ "@Uh'@ju jh'@ k &@ "@k &@ "@JF=A| =Z Ouk &@ "@ON='u =&@tWk &@ "@jh!@ &@@ &@;E+ &@T'@@X'@@&@d'@u}UE E EU EMuE E}tuE HE Pu E M E R0‹UM  E @E U졈'@@'@h'@ U 9\'@tx '@ T'@T'@9d'@uq=&@tBk &@ T'@(&@"@k &@ ǀ"@ &@ &@k ǀ"@3Ã-T'@'@h'@Z &@U=&@t/\'@@u T'@ 9\'@u@&@ 9\'@u T'@ڡd'@@\'@<tT'@ƀ(&@ @ '@3U9d'@uP'@ 9h'@t"\"@@'@h'@ á\"@ \"@t '@d'@U9d'@ud'@U졈'@@'@h'@ U '@"9\'@uáT'@HT'@\'@(&@3U9d'@u[=&@tBk &@ T'@(&@"@k &@ ǀ"@ &@ &@k ǀ"@UE@9`"@t8EP`"@d"@Pt"@Pl"@P p"@Ph"@EU EE EEEEEEEMu9Eu E}}EE=d"@‰E}uIEDE @EEEEEUE;u MuEEd"@9E|)E`"@U t"@ M; t"@w}h"@@h"@;d"@|h#@hh@j(Y`"@U p"@ E p"@E ;l"@|A5l"@hJ@hh@ j`(YEEEt"@ p"@p"@E M uסt"@p"@p"@M Ep"@P h"@P3UM<@E -EE)E <@?@EE@EUBU M }<@=<@<@8@@5<@h@@j`' ;<@t<@3ƋEE <@?@EE <@E@EUBU M }3U=<@<@@@5<@h@@j& ;<@t<@3ƐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1H@"u}F @tVY;5h!@rGGG tG l!@+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  l!@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}ClT@Dž\9PtP؉PNKPPoYh~PW =uh~Phx@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}x"@Ex"@E@s3UtE]x"@E@E@E@r5E@r @E@AE(@s6EE]@)EE0@r݋EE 9P܃}t؁x"@"@v"@E8@t"@r05}fEf fEmE]mE܉E@0Ee @@];r&=5|+x"@ux"@1}tCF0N<9x"@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G l!@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu  )G?}3W l!@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}X"@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wl!@UWH@;=h!@r3}ÃG uUWH@ WY;=h!@r}UWV}tlG t6G t3WVYG PY}8"@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l!@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l!@+G?}3W l!@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l!@+G?}3W l!@+W;}WY3UWV}G G u}}&uD@L@GW l!@*h!YGt@O G Wl!@GGVYtG uO @u}G T@WRl!@UWV}G l!@+G}G l!@Wu};7}7𐐐3ÐU8"@EEPhTu } E8"@3ø6FÐ2ÐU WVSE9ET=L"@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@d@d@h!@l@@3.1bS03.1bS03.1bS03.1bS0h!@l@usr/bin/mkstr100755 3 3 44220 4231442743 7761 37777777777 Lq! 2l@.text2 .data@@3@.bss(@(@l.commentHÐET(@RU RP P2jÐUPEME E (@9E~E =-u EME 9E} 5(@h@h$@ j62YEt@@PE 0o'(@=(@uE 0Yj1Yh@E 0<'(@=(@uE 0Yj1YME E 0h(@&h(@&Y(@D)@ME E 05D)@&h$@h@h(@& uh(@iYjE1Yhp$@h @E 0& uE 0;Yj1YME }{j0YUWVh$@P(s$@$@ֈbh"@YtSh)@IY p$@} hp$@^ Yt$@t$@"t $@|$@$@ֈ p$@} hp$@ Yt$@t$@tek $@N4u}UWVE@- p$@} hp$@Yt$@t$@;uIG?uθu} $@}h$@EEP'$@$@U E9}rhp$@V 3UWVS p$@} hp$@Yt$@t$@t)="tX=\ p$@}Khp$@YLjjPG Ph0@C¡t$@t$@= T=0t`=\Q=bt&=ft==nt,=rt=tu9 $   3W=0|=73Y0 p$@} hp$@Yt$@t$@V=0|=73Yto-0 p$@} hp$@qYt$@t$@V=0|=73Yt-0C׈UE=0|E=73UDž5(@ Y-jP9 P "Y@5(@hPz uUWVDž} t 5(@9$YuEF‰>u⋅U}}EE t`Eh~PW =uh~Ph!@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}(@E(@E#@s3UtE](@E#@E#@E $@r5E($@r4$@E0$@AEP$@s6EE]@)EEX$@r݋EE 9P܃}t؁(@(@v(@E`$@t(@r05}fEf fEmE]mE܉E@0Ee h$@];r&=5|+(@u(@1}tCF0N<9(@]Ћuԋ}ËEE0]@EEsEE 9P EEEE8$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@$@E5H$@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G '@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W '@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}(@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W'@UWp$@;='@r3}ÃG uUWp$@ WY;='@r}UWV}tlG t6G t3WVYG PY}`(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG '@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G '@+G?}3W '@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G '@+G?}3W '@+W;}WY3UWV}G G u}}&uD1@L5@GW '@*h!YGt@O G W'@GGVYtG uO @u}G T9@WR'@UWV}G '@+G}G '@Wu};7}7𐐐3ÐU`(@EEPhTu } E`(@3ø6FÐ2ÐU WVSE9ET=t(@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@d9@d9@'@l9@:@3.1bS03.1bS0'@l9@usr/bin/more100755 3 3 130220 4273205353 7577 37777777777 L" h(%@.text .data@@h(@.bss(0@(0@%.commenth(ÐET(0@RU RP P襆jÐUlWVSEEEEED6@E @6@(h8@8zYVY@6@@6@U-u@6@BRYcE=+ud@6@0F=/uEFEFEE#I)@tkE -0EFuM D6@e=86@t7;@tp;@t ;@u 86@ 06@=6@u#=06@t@+Љ6@6@E9D6@~E=5@uI=D6@u@h8,@h=@Uh8,@E 0Uh8,@hE@Uj˄Y,@=5@u#h4 j.h j+0=5@=5@th,@ Y5@} W]YY GGE= tm 5@WEP]=06@t)E=t=86@tx zUWV}, (,@}h(,@PAp,,@,,@ֈ} WMY GGuu}UPWVS}EE E (,@}h(,@Po ,,@,,@G%uG=%t/=0t]=dt=suG6YE:6IYE-E (,@}h(,@j%^o,,@%,,@?uE]u}UE EtuY@EE (,@}#h(,@E R0PnE R0‹,,@,,@EUE ,0@u Y,0@UPE Et uYE R0‹,0@,0@UW}G8u+EH}UWV} uYE N=/t;usFu u}FG;t3U=86@th j5p;@N7 L= 6@~CjY=p;@t =,6@t (,@}h(,@j m,,@,,@ =(6@ 6@=t;@t=x;@th j5t;@6 =86@th j5p;@6 h@Y}tuh @ 6@+=5@u"k5@d=5@Ph @ 6@=6@th @NY 6@=t;@t=x;@th j5x;@6 =86@th j5;@5 h(,@ lY6@jh(@j(t U=t;@t=x;@th j5t;@5 hE @Y 6@=6@thQ @Y 6@=t;@t=x;@th j5x;@P5 =86@th j5;@25 h(,@MkYjYh(,@5kYUWVS}l:@E5@} WHY GG=00@t$ u6@WHY GGk;@u:l:@vE Ӂl:@E]u}ËE Ӂl:@ u%l:@vC= uEEK6@WCֈ uu=46@t[ 6@9E}Q=(6@uH=p;@t9=,6@u0E @Eh j5p;@3  6@KGE @Eu =@u =@u}~M u=@uEEEn u=@tC^LCE6@LuE Ӂl:@E } =@tC^Cց@E |tE@9E| =@u5@. @9E|=@~ =@u C@9Eu=@t300@E Ӂl:@E CEEtk;@r 6@9E[ 6@LUW}= 6@t%=(6@t4 (,@}h(,@j h}á,,@,,@ u' (,@}h(,@j ph,,@ ,,@=,6@u =p;@th j5p;@1 7 6@+Nj( (,@}h(,@j h,,@ ,,@O 6@NUjY=p;@t =,6@t (,@}h(,@j gá,,@,,@ Uh j5p;@ 1 Uh j5;@0 UWS}( (,@}h(,@PTg ,,@,,@Guϋ+EH]}UPWVS}u 3+=@u6 (,@}h(,@GPf,,@,,@׊ G|(=_uG=uGU6|)G=uG=_uGUGU3;,@t h jt|;@;@P/ ,@ (,@}h(,@EP0f,,@,,@Ut+;@8t!5;@Yh j5;@g/ Nt*;@uh j5;@=/:=QG=?==jY=p;@t =,6@t (,@}h(,@j Wb,,@,,@ 56@Y 6@h(,@aY=dt5@@Ez=sG=ntc*=h@h @h @_Eu h @Y=06@tu8YudYuY<0@uFjY=p;@t =,6@t (,@}h(,@j Ja,,@,,@ h @Y 6@h(,@`Y=<0@tjh @jh VWj'j/jNEP jh @jh VWEP 6@HE2=qK=z*=v=5@jY=p;@t =,6@t (,@}h(,@j O`,,@,,@ E+EP56@E,0@uY,0@h @YEPY (,@}8h(,@j _5u56@E=zu56@E7,,@ ,,@@6@5@4&Yj@6@5@4EPh @h @u=uFE=fu 6@ (,@}h(,@j ,_,,@ ,,@j=Yhk @Y=86@th j5p;@c( Vhm @~h @h @PY=86@th j5p;@ ( h @'Yjh(@jZf } (,@}h(,@j f^,,@ ,,@6@ @Ë]u}E=u3E5@} Ww;Y GGE= u6@N̋6@E^U} uL E P6@P6@@0@P6@=!~=Qt(=ft+=n=p=qb$XjY=p;@t =,6@t (,@}h(,@j E],,@,,@ =5@u#56@@6@5@4h @ 56@h @ 6@h(,@\YÃ}uD6@H95@|mE (,@}h(,@j \,,@ ,,@jYu0Y3릃=5@u^ (,@}h(,@j e\,,@ ,,@jvY}uEEPY3RuY?jh(@jc $UW35@P6@)k P6@-0P6@5@;u*38 P6@P6@=0|P6@=9믋EP6@Nj}UPjY=p;@t =,6@t (,@}h(,@j W[,,@,,@ h @Yh(,@ZY 6@=<0@t`h;@Yh(,@ZYjh @jb  6@L6@jh;@h @5H6@5H6@u2j!jNEPi EPh;@- tjY=p;@t =,6@t (,@}h(,@j fZ,,@,,@ h;@h @: 6@'UWVS}5@E]ÉE6@E;@E;@EuYEu Y]ދ55@u TYEhl:@oYE=O9E9E~==5@t4h @Y=86@th j5p;@" h @Y=5@u|9E|E)6@E5@juu ]5 =06@#=86@t/h j5;@k" h j5p;@V" %jY=p;@t =,6@t (,@}h(,@j X,,@,,@ =06@t:=86@t,h j5;@! h j5p;@! hl:@Y (,@}h(,@j 'X7,,@ ,,@'9Eu h @ YE @ E @ tF=5@u"E6@E5@juu 3 h* @4YNh> @ Y]܋u}UPh(,@WYh5@hT5;@[ j6Y8E|}uA=5@tjZYj/YEPu C8j hP @j^ jp_Yjj^jj^j TYh j^h4 j^ h] @GYuYUWVS}u D=u ]u}5@} V3Y FF= uO6@UW}t&~'5@NjD6@J;~$D6@+5@H}Ã=$6@t5@5@} 5@hw @Yh @uY=86@th j5p;@E h @LY~ @ @P5Y@6@5@4!Yh @Y=86@th j5p;@ h @Y 5@/U hl6@h(,@3jh @\;@9;@uD= @tjh @\;@9;@uh @h8,@0j=]Yh5@hTj_X 5@h5@hT5;@BX 5@h @PYPP.,6@@h @Y@|h @{Yt(6@@h @@6@0u=(6@uh @;Yt06@h @jY@} @Ph @Y@h @Y6@DžD0@Ph @jp;@Ph @Ql;@Ph @8t;@Ph @x;@h @zYuh @kYt @Ph @;@u ;@ @Ph @|;@u1;@8u'Ph @|;@u |;@ @Ph @i;@u1;@8u'Ph @B;@u ;@ @Ph @tX<@Ph @;@uGPh" @;@t*jj5;@7 Ph;@N;@;@Ph% @;@h( @MYH6@u H6@. @h6 @ Y46@UPjEP5;@bN #90@t5@YY5@EEU WVS} EuEoE9 6@~ 6@E؀\uE5@;};uvV 6@jh0@jX N= } = u= 6@jh0@j^X =p;@uE 6@jhT6@05@;}=(6@tbPY (,@}h(,@j P,,@ ,,@ (,@}h(,@EPO,,@,,@Un (,@}h(,@j O,,@ ,,@ (,@}h(,@EPO,,@,,@U=p;@tjY 6@uh(,@NY}t.5@;t5@;ujh0@jV N\tEF } tuu*u@jh4@jV  6@] t(t#jEPjV  6@+E;N=p;@uE 6@+EW;| h9 @Y]u}UWVSDž4} 8=!ty=%t/=\=%t=!F׊ G}=5@u5@6@5@4VJ@6@5@4yY4?F:=L6@u hG @Yh;@VJh;@=Y4FG8F8PupJ4(,0UPS] } tuu*u@jh4@jT  6@]jEPjT  6@]U=86@th j5p;@F CjY=p;@t =,6@t (,@}h(,@j L,,@,,@ u"Y 6@=t;@t^=x;@tUh j5t;@ uYh j5x;@ h(,@KY 6@jhT6@|,uYUh5@hT5;@O h5@hT5;@pO f%5@5@5@=46@t f%5@h5@hT5;@/O Uh5@hT5;@O UWVS}l:@ƈF5@} W(Y GG؀ tt-l:@=|= u6@]u}UWVS}0@EEEEtuu @]؋u܋}3=^u 2@G2@2@Gu+E9Et0@E @ CC3땃*t]=$=*t[=.tK=[=\pG( 9E0@E @'CH}(E=E= uE CCCEG^u GCu0@E @-CG]-CEEEUCCUEo)u7E9Ew0@E& @  CCUJU 31|:}CCփ1CCֈC@CE2@sC;|CֈE2@r0@Ep @G]EUPUPWVS}0@32@2@C |=2@tVWb]u}=u/F;uVW6EtEȋG8u3VWEuދG8uU WVS}u FH=$t @FG;FɋG88뻊,미]u}jjGPV yF<2@iF<2@YFE<2@t?WuEЋ2@+2@FE<2@u UߋEЋ2@+2@ElߋG8u>G;tF.F=u3PGPV uOVWEu3;w3EWu0uVWQEtEE+;s@UWVS}u 2@;2@r]u}CF;t3UWVS}] u 3]u}GG;uENu}u3ɐUPEPju 5 |EUPWVS}u ]uu-3]u}=$u G=<tKF׊ Gt?u׋Eǀ?tG=>uUWV}W=nc=bstT=ns=pttsEjuh@h4 @WE@@E9E3u܋}jEP<@p` t=uFtz3jEP<@@ t= uFtF3jEP<@p0 t&= uFu3_<@,u G3@EU1U W}E juh@hl @WED@E9Eu}ËEUPUWV}u EjuhP@h @WEH@E9Eu 3u}ËEU Mt>tu6?ueY@EŐUPu uu EÐUWVSDžl}2@Dž`E \EX<@} 4@%:uGDž ӈGht%=t = `t<@@TDžh|<@@lT`t6Tt-<@@H9h}<@xtthPtTTt&<@@P9EuTh4@+#hFhlpll TQYplAlb\XQG-1=wo$T@plBl\ plBlX plBlM plBlM plBlM jplBlM OplBlM$ 4plBlM( plBlM, 1u3` =a|1=z'pll EGa =A=ZpllfGafJ=a|2=z(EGa plBl K=A==Z/GaPplAlplBlG G='DžhDžd=-uDždG=+Gpllpll hplBlhˉ @pllpll hplBlh+ˉ pllpll hplBlhˉ pllpll hplAlIpllpll hplAlpllpll hplBlh#ˉ pllpll hplBlh ˉ Spllpll hplBlh3ˉ pllpll h9hpllpll h9h{pllpll h9h|Apllpll hhtA3plAlpllpll hh뜍pl<u3pl}plЍpl[pll<uCjeW4j;W%- \=^QI$x@Gu'h4@Vp62@Ã%t Fӈpl hG|- |=w |$@Džt u΋=Xt =dt=ot=st =xӈsuhPV hPV F>ulkh -0hG؃0|9~܃}t3plBldh UWVS}35%u0GU ;t;uu Nj]u}À?uF;uNGu3ܐUWVS}3EE<@@,9X5@t<@9X5@uEI)@t!k G-0I)@uk =.u:GI)@t -0GI)@uEG=/u E=*tۃ}tu =>u#Gt<@xt"}uNj]u}ËCPUYuVZUW}t>=X5@1=$uG=<uuu W GPUY?u3}ÐUPWVS}@@xu}<@%E}~ 9Er]u}ËEE@<@t 3ۋǙSU YO3먐U<@rt&<@nPhT<@lP8 3UWVS}G%%؁u tu]u}ËЋU<WVS}uhp@=1YE}t Eu8@EDž}t Ehu@0Y>V:Y@u(YЁ~fP@VP[1PYЋ/FFU /FuV$1jP;} 90@}Vh~@P0PhYЋEVuV0jP;}c 90@tjh@tfP@#fP@fP@}t Euhh<@-0hP/ >6YfP@B9ufP@'<@WTY9uW7YW'YWYWYWYDž=L@h5Y<@tyj5Y@@t\j5YD@t?h5YH@\G@9H@t 5H@68Y5D@*8Y5@@8Y5<@8YfP@}u P@P9Y_L@<@B@@@$G@D@@G@H@\G@x9s Dž=@u4Y}t Eju<@P <@ƀ@@D@H@<@ǂ3҉9E uu 3YuE <@fU fl5<@ǀǀ3ffffhjPG Y<@<@3f@ы <@Bƀ<@ǁj4jP <@nPhT<@lP3 3<@<@n JHJHJ H fJfHWVy6 @@@5@@G;sFӁu;s+PjV tGD@D@@:W6Y;s"} fffu;s#+ùEPjSr Phju 1 =t0t&tD@ffPffDžDžh@*Yh@)Yt&Y~D@ffPt%Y~D@ffH@H@?WY;s'} Ëu;s#+ùPjS W3 <@%=uK<@f<@t&<@PhT<@lP/ 3 <@xtH@H@3҉<@@+<@P5@@5<@O3 <@@(<@R+P5D@<@@P$3 <@l<@R(+P5H@<@@(P2 <@LH@DžST@ ɉ t<@@ p 9|<@4D@@=u<@xu fPf| D@f@DžT`@<t04 u<@@ 9r<@ǀDžd@ ɉ tM~04u t39u@4<@B u<@@!9G<@<@J\tJhxJx|3UEǀǀ3ffffhjPK U<@t&<@PhT<@lP], 3U<@nPhT<@lP0, 3ÐUWV3EHmƹE}uEU MJ4uuEU MJ4u E}}EH }~E@;~u}ËE UPUh@h8,@hh<@P@4@h8,@ h@h8,@Ð)/ÐUPWVS}EI)@uJGI)@u=+t =-u EGI)@u 3]u}ø0+Ëk 0+GI)@uރ}t뾋븐UWVS} 3G %=utG9Gu!?uG DuWb(Y 3G )@Dž\sEDDž8~t 98|0 8CUEEu}~ E.E<9E}E<9E ME+E܉T E@u E }uEE E -ݝHN%=9L%uUHuLO%=u Dž G9Eu'@'@؍CEDž, O%=uDžl@)@Dž\L% H ‰PDž(Dž0Dž4G9E8Dž$'@Dž<|'@~؉]P[E@ETMl@PDP9E}EPLHJ ݅H'@u DžDE艅ES苣Y9xEE E @ss؍CEoE E XE@uSYЉUHtM}鋅HE- |=Xw |$'@O,to t DžlB)@Dž\Dž h~PW =uh~PhH)@J 3W+ YkUjuuuu u#Ujuuuu uU$WVS}t5@Et5@Ep+@s3UtE]t5@Ex+@E+@E+@r5E+@r+@E+@AE+@s6EE]@)EE,@r݋EE 9P܃}t؁t5@5@v5@E,@t5@r05}fEf fEmE]mE܉E@0Ee ,@];r&=5|+t5@ut5@1}tCF0N<9t5@]Ћuԋ}ËEE0]@EEsEE 9P EEEE+@MU]vEu}fEf fEm]mE܉EFUR0EMm]E+@E5+@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G G Dt+G uEE Pj u tWYEEWUWVS}(0@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_ÐZ ÐW֋|$ 3ыt$ |$ȁD$_Ð L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WY}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G QRU@V87=XLOSY:WZ[]^_`abcd\' fe!"ghwstxvuz{|~}y+#(,$- @@@@@@ @ @@@@@@@"@%@(@+@.@1@4@7@:@=@@@C@F@I@L@O@R@U@X@[@^@a@d@g@j@m@p@s@v@y@|@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ @@@@@@@!@$@'@*@-@0@3@6@9@<@?@B@E@H@K@N@Q@T@W@Z@]@`@c@f@i@l@o@r@u@x@{@~@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@ @#@&@)@,@/@2@5@8@;@>@A@D@G@J@M@P@S@V@Y@\@_@b@e@h@k@n@q@t@w@z@}@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ @@@@@@@"@%@(@+@.@1@4@7@:@=@@@C@F@I@L@O@R@U@X@[@^@a@d@g@j@m@p@s@v@y@|@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@bwamxbxsxneognhckmhsindadbmimsosesxthzulxonx5iHCNRNPNDcoitlilmsgpbvtwsNllhlwmaMWbtblcrcsctclcecdchCCcmdohovileCMvendllupvsdcdldshdasmbmdtidmmhimmkmpmrsousecaemeteedeiseuevbfffsi1isi3ificalipkbkakCktkDkLkdkMkEkSk0k1k;k2k3k4k5k6k7k8k9khkIkAklkHkNkPkrkFkRkTkukeksl0l1lal2l3l4l5l6l7l8l9mommnwpcDCDLDOICSFALLERISRUPpkplpxpspfporpr1r2r3rfrccvscsfsrsastwitatsuchuiPK1K3K2K4K5pOrPacpnkBSXRXSARAXNXFeALOLF@1@2@3@4@5@6@7@8@9@0%1%2%3%4%5%6%7%8%9%0&1&2&3&4&5&6&7&8&9&0*1*2*3*4*5*6*7*8*9*0#1#2#3#4%a%b%c%d%e%f%g%h%i%j!1!2!3RFF1F2F3F4F5F6F7F8F9FAFBFCFDFEFFFGFHFIFJFKFLFMFNFOFPFQFRFSFTFUFVFWFXFYFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfSCDKRCCWWGHUDIQDTOPUfhPAWAu0u1u2u3u4u5u6u7u8u94=5F5F4=5F5F5F5F5F5F5F4=5F4=4=5F4=4=4=4=4=4=4=4=4=4=>>>>?.?I?d??=EF=FEB@FFA(AF{A="B===========E;DCDEFuDFFFFFFFFFFFFFD?FFFFFFF=FFFFFhCFFFFO==EF4@FY>FF>rBF=j>FF=`EFFF=FF@CF>E5MS7)  @h@B@$G@@G@\G@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS@@@*@C@[@@@/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . Unknown error: 4@<@F@`@p@@@@@@@@@@(@4@J@V@b@t@@@@@@@@@ @" @/ @E @T @` @w @ @ @ @ @ @ @!@!!@>!@Y!@h!@!@!@!@!@!@!@!@"@"@*"@7"@M"@b"@k"@t"@"@"@"@"@"@"@#@#@+#@9#@U#@d#@m#@v#@#@#@#@#@#@#@#@#@$@6$@[$@{$@$@$@$@$@$@%@ %@%@%@(%@1%@:%@C%@L%@V%@`%@j%@t%@~%@%@%@%@%@%@%@%@%@%@%@%@%@&@ &@&@&@(&@2&@<&@F&@P&@Z&@d&@n&@x&@&@&@&@&@&@&@&@&@&@&@ '@#'@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFRdnn^dnmnnnn}d:dnFdjdnddddddddddnnnnnnnnnnnfn]knnnnnnnnnnnnnnnnkfnnnnnnnnnnmdfh]kddnndnnUfnnnmn fnnkf-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$T@$T@8/@,T@U@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS08/@,T@usr/bin/num100755 3 3 36750 4201131044 7413 37777777777 L! (t d @.text( .datad @d @td)@.bss@@ .comment=ÐET@RU RP PI(jÐUWVME }~5h@h @E 0 uE 0Yj'YME  $h@P@@׈ @} h@<Y@@t* u,@@,@Ph @ @}눃}h~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E(@E0@Ex@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁@*@v*@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u0@8"@GW @*h!YGt@O G W@GGVYtG uO @u}G @&@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裸@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$h @@(#)num 5.3b of Jan 27, 1988r%6d Unknown error: @ @ @ @ @8 @B @\ @n @ @ @ @ @ @ @ @ @ @ @$ @3 @C @R @c @w @ @ @ @ @ @ @ @@@'@8@S@f@@@@@@@ @@<@V@_@h@q@@@@@@@@@@$@8@J@X@p@@@@@@@@@@&@9@B@K@^@g@p@@@@@ @+@i@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@s@}@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFR^}:Fj] k ] U k-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@P&@P&@@X&@'@3.1bS03.1bS0usr/bin/pack100755 3 3 36164 4201131046 7533 37777777777 L! 0 @4@.text0 .data@@ 0@.bssd@d@@4.commentd<ÐETd@RU RP P/jÐUW3 @G|Od!@%@hhd!@5\!@& ޅu }h8@? Y3UWVSd)@e)@ @EEEUd)@}M9E}ݾj)@Fh1@EFUl1@Eh1@9E|Fh1@l1@E0EE9@;EuFUE9E|Eh1@9E~Ƌ-d)@!@jj5\!@* !@E}AhEd!@d!@P5\!@$ E}}hE@Y3]u}M}EE%Eˋ:@>@@u  E9@+ F|d1@rKhhd)@5`!@L- =thR@LY3Rd1@d)@!@9E}F-d)@EPhd)@5`!@, ;EuE!@U WE>@U>@U>@1EEU^@u5p@5p@4YEǻE9E6kEbU ЍRRjE kUbDPE kUbPEUU=pf@tu jE4f@ juc5p@}fY5p@Yju >5p@fY5p@tYu =pf@uPE4f@ øUh@&SYE@@5p@eY5p@Y9gjh@z5p@eYLe/j5p@B{j5p@{j5p@&j5p@heEPhTjY fefeEPhTjY \f@ËE@,U-E=t%u5|(@uE0 EÃ} uEjj]jj]EPRYEE9Et 9Euh5jh]h5jY]U<5o@jjj貸Ejh@rQYPE:P( E:uh@:PQh@E@PQEƀ9Eu9E@2@3@ƀƀgƀ~5o@IPQ9Eojh%@E0P3 NE3Ph)@EP& EPEPq5E%= EPE0PQEP/QY=t=t=t-EPh4@ EPh:@E@ P`& EPh?@hC@E@PPEƀ9EuE@2@3@ƀg9Et9EDE45o@EIP2PE3Ɉ~XjhG@WOYPE:Pr& E:uhL@:POhT@E@POEƀƀ9Eu2E@2@3@ƀgƀ~5o@IPxO9ETjh\@E0P1 3E3Ph`@EP$ EPEPV3E%= EPE0PNEPOY=t=t=t!EPhk@EPhq@EPhv@E@.ƀ~xH|u=wn|j$@E4o@E@P$t E9E|E=f@t E~hujh1@jEE9Eu=f@u jjxEËEH4o@E@PMELE4o@h^@#t E9E|EU58p@jjjtEjh @XE}~=hf@ujhhf@u4M =hf@t }=f@tjh^@E:P# ËE:Ph^@L5o@jjjEPPjjh^@E:P8# jj+럡hf@H0EEjjuOS EPEEjiE`@Pu%S h`Pu6L E9E}0kE0hf@+Ћ‰EEEx|^@; Dž|^@MIkbT ;| Exji|`@PuvR EqE-|=w |$@}t@jh^@E:PeK uQY=f@P jPjjj>P$=f@t ttPj#==f@=f@th^@EP>EXPEPv>h@jEP5Lp@eEEcEPEXP?>=f@Yjj蝲HE= tE= t Eu EEE= t E= u}UPEYEE)kUb@PEIPt EE9E|ϋE9EuE=f@t E,^@5o@jjuEPPj >Eh^@EIP2tph^@EIP<ƅ,Eƀu,PFEtj,Pu j,Pu =f@u9pf@u u軲YjjUh@h @<Eu3Džpaj:zPtzPkpbUЍRR<t@PppkbUЍRR;j#uzP upnUpEE~PEP;5o@5p@EP =f@tjh^@EP Eh@jEPEPMEu9Eujj谤=f@tÍEPE~P ;_EPY=EPtYqEP;Y=\EPMYu Ewh@EPuh@E~P:EPh@E~P ^@E%E9Et~PE荀~P[t EEuϸ9pf@uE}t&E荀0Pj肣=f@rh#@EPuE.df@h%@EPu df@=f@w9pf@uu迯Y\jjKjj=f@-EU=0tEEEP`9Y9E|ڃ}pUdEPEP9uEPdjEPu h(@jcEP5p@ХjEPu 9pf@u uݮYjj UE th*@Pu[E ~_E ~N~Ph-@EP  hE@EPEÍ:Ej:u EE@Ej:u EE@Ej:u EE@Ej:u EE@Ej up EE ~Pu uNE XPut u5E IPu[ uuu)7uYuh:P uYh @E IPhG@EPs hT@EPbEtPuh:P4 t5hV@:P@ EhX@j. EPuk6uYUU E@PEPD6hZ@j EP5p@3EPE@P6jj胪UE E!kEbJ2@PE@P t EE9E|׋E9EuE=f@t E*^@5 p@jjuEPhH2@j E9EuSEkEbJ2@Ph^@u t EE9E|ًE9Eujj跞=f@ih^@E@P5=f@ujjqUhc@hE@.P5p@ޡjjAULPYEDžEvjj5h^@)E9th^@XP| tuŃtW0Pj"諝^@5p@jjuEPPj =`f@u EËE@.%kUb@PE@.P3jjjPPkUb@Pc=df@he@P h @hh@VP ht@VPtzhP tPjjjPPPkUb@PPu DžqY=f@uh^@EXP2kUb@Ph^@t EE9E|ԋE9ExDž^@>= t= t u Dž&= t= uM:Uhv@h @'2Eu3Eiv= t[jjjkEbUЍRRjvPIj vPLjPvPEEkbUЍRR uhvP xEeUpP[YEE&kUb@PE@Pt EE9E|ҋE9EuE=f@t EH}uE@Ph^@0^@5,p@jjuEPPj sE}u ^@uyjj ș=f@tø9EuXE$kUb@Ph^@(t EE9E|ԋE9Eujjj=f@ h^@E@P/=f@{uYmU\hx@hT @/Eu3Ebhz@EPEPkEbUЍRRQ/h|@jEP5o@h~@EEkbUЍRRj#uEP迪 uEvUP|BE@ PE0Pu%E@=ujuu - Eu3Uh@E@Pu!j h@E@.P u3Uh@h0 @.uh0 @j謗Ã=f@u'pf@ž5p@oY5p@OYDž=#= tu j|sA j 8jQ I0/Y=f@5hp@jjjTDžDžT4jj4jj2<u=f@u!^@h@j h^@5$p@E^@ Dž&4h^@ru<uȍ<u79pf@u f@ jj:=f@A|DžMf@0Rh^@t5f@R Rh^@ttxf@9|xf@9}jj詔=f@jeYtIh^@@ P*J44h^@0Gh^@0P*B44h^@@ P,0Ph@h^@ Ph^@X}h^@j蒓ff.@2@3@h@0Pu5o@@P)h@@ Pu5o@@P)h@@.Pn)h@PT)ƀ5^@Stf@tf@f@9ttf@xf@9tf@|ٸ9xf@~(xf@-9tf@}tf@ xf@-|f@0PY=f@jYrUE|E xx=?tpx=*x=[u6xEPx|PEPu3Ë|x;u|x|8tx8Z|8ux8u3UE EE @E3E=-u E@EEEUEM EEE=]uEUEËEUEM EE9E|UEEEEEEEE=[t E E U EE8uۋE ËEE=]uEEE=[uEE=]uE E U EUE&ukE tb@Pu E@EEkE tb@uEkE tb@uMkE tb@PkE tb@P &kE ƀtb@UE}u"pf@裖5o@]Y=tbjjFtf@f@Uh@E@ Pu1Eh@E@P%E@2@3@h@E@ PEh@$YPE:P6%E:uh@E:P%h@E@P$E@2@3@TPt YE%= uE ugYEEHS=H@$@uY}u uYuYuY}u@YuYu%YuYEPEP'$uEPEou3PEPu h@E@ Pt u$YuYeEƀEH4o@E@P#uYuYuYuaYuYuaYujY^@U=f@pf@jj,5p@z5Y5p@bYxf@9tf@| tf@tf@+|f@@Pjtf@4f@ xf@9EuJjj5p@5Y5p@Yjj|f@H|f@4f@蝔 tf@Njjw5p@4Y5p@譐YjjE4f@[ =f@u^@Ã=f@uDtf@+|f@@Pjtf@4f@ hA=jjh1@j=th@tf@f@0Rujj1=f@vo5o@tf@f@RRt"5o@tf@f@RRzu5o@E@P^t5o@E@PEu1Et%E~PEnPh@uPEE\u Y3LUh@Yh@h@}h@h@5(o@ h@Y}h@5,o@h@h@ Euh@50o@m뢡^@E=5o@E@P/u$E0PE:Ph@uGEEuu Y3?U ht @Yht @hd @}ht @hd @5(o@ hd @Y}hd @5,o@h@hd @ Euhd @50o@hE=df@}uYE^@EE.;df@u E~u EEuՃ}h@EgPuh@EgPEgt!Egth@gPEPEgPEIPEXPE~Ph@uEƀ~^@EE~h@gP uh@EgPEgt!Egth@gPEPEgPEIPEXPE~Ph@uEE@=df@| uYEu^ YEUh@h @{Eu3ÍzPh@uM uhzPf uuYUFQjuE@P& u9E@=u$j E@Pj E@P@շEuUDžhjYf@^@EEuE0Ph@tP jtPsp}tP54o@hjjYlPhtp:  jYEt l ljYlPhtp  jYEh@@P5uHjWYjhtp  j:Y=f@u~E0P5`p@djYjhtp\  jYE0P5dp@%jYjhtp  jYE@ PYjYp YjYjj,EEhUhjjhTj  U4Eo9Eu3Ee9Eu3Et/h @u uu j)mj &Y}uu PlEE=f@u 5lp@Y}t7hP迼 u EPYE}t*P蝳Yu EPYE9Et1}u==#qDžDž/-EEÍPYEj P\uUE UU=f@uPuh7@^ UE@E-a=$@P3Ytf@jPj E=f@t}QEG^@;jiYPPj E=f@}tf@4f@dEPxYtf@&jPj E=f@t}^@jiYPPj E=f@t }tB^@ Y2tf@h@E@ PuPEPt.EPjduYtE@/Pj dtf@4f@uR }t=f@t3u^ YEs5o@h^@5o@h^@5o@h^@5o@tf@f@RRutf@f@RRh^@e5o@tf@f@RRgt"5o@tf@f@RREultf@f@RRh^@tf@f@UR蔧YEh@E@ PuC9Et9jj,BcEtf@f@0Rj+cEE=td=Gu YEM.Eƀf@EE=tE:Pj.bE䣐f@uw YE^@u }txuEYuF YE^@u }t8Gjh@h^@5 u3UuYu YEN^@u }tu詶YE:PE0P5o@h@h^@h^@YE=Eƀu` YE^@u }t8ajh@h^@O uh^@h^@uYu YEh^@u }tu跹YuYE7^@u }tu-YuYE^@t;jh^@u ^@u }tjEE^@L}hEPh@ujj/K`#EE؉EԊE@M܈E܋E؊uuYEt]^@u}tjj-_Ecu\YuYEt!^@Rh^@E@.P4E!UEEEpf@PEP8PEPHPu f@E܄ujj1L_3Ã}tĒujj4/_3}"pf@tf@EPtf@f@XR5o@tf@f@RR^tY5o@tf@f@RR<t"5o@tf@f@RRutf@f@t Etf@xf@9tf@>}uAh @EPh@P>P_Yt E pf@}Ht"E܄t8tĒt ujj-]3lpf@EPh^@9f@u389f@uU}tCh @EPh@PmPYEPj23]3f@Epf@}ttf@f@U j[YE}t}uuu}}u{h@h @EIvPPPPPXPEPPtujUXPZ =u5o@h^@uMYu YEu}t }3^@u+}}uNPE~PN3jh@h^@ uh^@h^@"uaYunYEu}t }3-^@ u軱Yu1YEu}t }3^@u+}}u$PEIP u谳YuYEu}t}uc3}u0^@u}ugPE@P* u YEƀujYEu}t}t *3#^@u;}tjj-RZE}u-vPEPjh^@u葁 }tE}uZh @h @EPh@PPYh @h @h@PPYEPh@EgP#u@ EgPE@PEIPEXPE~Ph@u Y jh @*| 9df@|.h @u h@PP>Yh @u h+@PPYh @h @h8@PPYh @h @hE@PPYdf@uWY3 UWV}t} uu}ËEU UP}t Eujj- X3hN@uEu3Euh^@OE@ǐUj,Y3ÐUj>-YÐUj2YÐUju uh* ÐUju uS ÐUE@uYÐUjuXÐUjju[ uUYÐUjuXÐUjuTÐUhuTÐUPWV}fG8f~ u}ÃtGfWfPwY@uGkG@E EfH8P@U}u=p@t waYwDXYwOYWHY3놋GD48Y=p@t G4#YN말U=p@tp@%=u3Up@%=uá@tj7JYp@%th(j@I jp@@HPp@@Pp@PRp@fxth(j@1I @=th(j@phI p@x,t7@fPf})xu#h(p@p,jK p@@,p@@%t+h(j@H p@PPp@d@p@@(h(j@DH p@p(tY3hU@BUƀB E@UBEÐUEUE@ÐUp@wp@j@u!ux4tHu ,t6@u!ux4tu 0t3E p@E% ЉE@(EE EME% Љ3UWVSp@%t E@;E |p@@]܋u}áp@@(@9(@<=(@t(@8t0Y=(@t 5(@Y=(@t 5(@Y(@@؍PY(@t;ÍPY(@t(@PY(@uD=(@t(@8t0Y=(@t 5(@Y(@(@(@(@&(@W (@ʍ ʉ G;|3(@ 3ɉ G;|p@UUPUUUP UUPDUp@P (@p@UUPUUUP UUPDUp@P(@} E=t E=>u(@vE=u(@[(@и9uCEp@-PE0 (@(@<uEf(@и9u;EUPEUPC (@GEEEEEE;} (@(@Љ(@(@E(@и9u EE 9E|ڋu(@и9tF;u |}(@<u(@<uG;|F(@<u(@<uK;}CPWXFEE 9Et(@9(@v,(@R;} (@(@@(@U$WVSE +EE~EEEEEE]Ћuԋ}á(@S4R(@U MEEEu(@U9Et39]~E++EU+Ћ‰EFEGE܋E9E~E9E~EEE9E~EE܉EEE9E~CE;]FEE؋E HEE(@ЋEЋ9G|GMM}6C(@ЋEС(@ E9|KMƅ~&}~ ;]t-(@(@fUffUfPKMMMu}GfUWVSp@(@p@(@(@EE}~(@E(@(@-E(@-EE}~EUR;}}*EUR;}EEEEEEMEUM+U;u6E@UM+QU;uEEE9EuE)E}~yEUR;}EE@EUR;~EEE@@EUR+…}؋ظ9EuC>EUR;}EE@EUR;E@3PSVW j+PW5p@}pp@fP$VfP&f}~P5p@uLp@f@$(@JfP&EEEE9E}um9E=(@tEh(5(@(@HPj@p4>2 PF> 5(@5(@jj) p@f(@ff(@fP3]u}UPWVS3ރ} (@9E }r@x4h(E +EPE HPu@p41 P= jujjE(@(@(@Z=(@tLh(5(@(@HPj@p4<1 PD= 5(@5(@jj'(@}tW@x x@t @xu(@9E E +Ep@}@‰Er@x x@t @xu }3p@}@‹UU‰EZE;p@}GjEP5(@5(@>Eǣ(@(@h(j@p@< GE;}|t6@,t9Eju5(@5(@E(@(@@9E@h((@+(@Pu@C/PK; jE HP5(@5(@&E H(@(@@tJ9E@,u2h((@+(@Pu@.P: 533%h((@+(@P@: G;}|օ(@9E Hp@}@‰EE;p@| Om;} };} jE +EP5(@5(@E +E(@(@@t 9E@3%h((@+(@P@9 G;}|֋]u}ËE;p@}>jW5(@5(@x=(@(@h(j@p@V9 GE;} |(@9E jE +EP5(@5(@E +E(@(@@tJ9E@u2h((@+(@Pu@,P8 .3%h((@+(@P@8 G;}|ju5(@5(@`E(@(@t*@u0ttm9E~c@9E@h((@+(@Pu@+P7 @tM9E@0u5h((@+(@Pu@d+Pl7 33%h((@+(@P@87 G;}|h((@+(@P@, 7 G;}|sh((@+(@P@06 G;}|"UPE"E 9tEEUEEE 9Ev֋E=t u{ø|E򐐐UP=h@t=p@t5p@lYp@hl$@h|$@jjjjY u'@=tv)kj0Yh@jjwEuhuj\jjPEuhuj5p@ÐUE@(E} t3EME% Љ} tFp@fxu:h(j@=5 p@p(mYp@f@3UEU P3UPWVSE9Eu E9E bp@%@xu9p@x,t.p@x4u#h(p@p,j6 p@@,@x u=p@@%t+h(j@^4 p@PP}}5@xPh(juupP( P4 fEf(@p@@bE9Ep@@=` @xTt]E@9EuTE 9Et}uF@x0t;E 9Eth(j@p03 h(j@pTw3 E9EuE -9E| E @9E~E 9E}juu  juu  ;]E 9E}juu  Tjuu  =}|"p@@9E}} |p@@9E |juuu uء@xXtjjuu@xptjjuu9E|(| ||]u}9]29}-9u(h(juu@pP% P1 A;;juuu u!j;Puup@fUfPfUf3bUWVS9Eu@xXp@@@3@xpp@@Bءp@@Hu]u}Ã}uju ujV0Ћh(jW0 ju ujVUWVuuu$ uuu o Ƌu}UWVSE 9EB9E}+Ep@@HƋءp@@^E+E p@@JƋءp@@\Ep@@dE}u)9]}E9E}E]u}9]}E9]}3E9E}+h(ju @$#P/ 9]}TE 9E}&h(jV@#P/ Wh(jV@#P/ 1E 9E} @xT@xth(jW[/ N3UWVSE 9Ep@@dE 9E}ju u ju u p@@L=}ju j p@RLЋ؃}u!;};} Ƌ]u};};});}%h(ju @pHy"P. V;}(h(j@p0d. ju j6 *E 9E}ju u ju u 3_UWVS@xluu]u}áp@PD(@<@fPf|p@P4(@3@xlth@t E =p@EE=p@U+Ћ3؅~E=p@p@EEp@@NЉUEEE}u$p@@`;E}p@@`!Ep@@`;E}/h(jE +EP@ P, p@@%tHh(j@, p@PPh(j@@, KEE@xuuE%p@;B,t7@xu,tVaY@uOYЁ~f@VPPYЋ/FFU /FuV踺jP;} 9\(@}Vh@PjP菺YЋEVuV?jP}c 9\(@tjh@胛tf@#f@f@}t Euh$q@hP莹 Yf@B9uf@'Dq@WTY9uW7YW'YWYWYWYDž=@h蘿Y@tyj臿Y@t\jvY@t?hbY@|@9@t 5@Y5@Y5@Y5@Yf@}u @PY_@@ulkh -0hG؃0|9~܃}t3plBldh UWVS}35%u0GU ;t;uu Nj]u}À?uF;uNGu3ܐUWVS}3EE@@,9 +@t@9 +@uE!@t!k G-0!@uk =.u:G!@t -0G!@uEG=/u E=*tۃ}tu =>u#Gt@xt"}uNj]u}ËCPUYuV6UW}t>= +@1=$uG=<uuu W GPUY?u3}ÐUju'p@@,諵9EuJj裭YU졄@}Ã}}E@U9tL}~} uAYu@UuuY@U3둃}}UPjj@] E}}!euj@] ÁMU졄@f}~Eƀc9E~E@cd@@ƀ5á@ƀƀƀݐUWV@|WYuuYt jV @Nju}ÐU WVS}u ]@4@@E@;u@9uEࡄ@׉UuEU‹@#Et#EU‹U!EU EE|^E}~EE2EU‹U#\@tE\@ EMt E 9E|čEUM EMC}u;tz@4twSj%P%P%@P% P%P%P%P%P%P@4(P E]ԋu؋}á@xu fPf|3#DžE#3ƅEEu@U#9UtSj@ 3LE.EU#\@tSj@U4i E9E|ȋ#%3#DžEtYEFEU#\@t4Sj@LU4 E\@ЋU#Ѕ҉Ut E 9E|@fPf~Sjp` @UWVS}u uVPZ ؃uÍPWڐU WVS}u GE%E%EEGEE== tu= t}E= |E=GE3GGE= uZE EÙ=p@p@+‹ЉUG;GEWJYK}3ۋfGO gE ^PW =tE5@ EPW=uEGEEGEG uG0% G, EGDU ;4t^GP;} Gf PG UP;~ G f PGDU 4=p@tG % ց fYCG;u=G&9Eu-jW/(=uEG;uKEE3EfEffGtW(Y9EuVWp@]ԋu؋}ÀO 9Eu WYދEuW=C;]|U$WVS}u GHEEGEGDEGEGEE3GG}E E9EGUP9E} GfMf PG UP9E~ G fMf P uG0% G,؋EU E=p@t*GE M܋% Ӂ ‹U܋MfJE/fEfGSWY=u E%EGEFtEM fEfGO EGtW&YEGtW:Y]Ћuԋ}ËEUEU P,ÐUEЋM J0сP,UWVS}EGE;=p@tGG3GGG$9E| G&9EGHffG W]Yf;EfEfGWCY;=p@u 3]u}ËÈGtW%YO ƈGt W8Y3ɐUWVS}GGE+Pw0WDЍR3 =p@tSVE+PjWp@;=p@p@Pr;|p@PfEfrp@P r;|'p@Pr;~Cp@J fqu3p@Jp@x4P4Ep@Ep@t3EEù@EZGp;~ GfpG UJfpO tWU$YGtWY]u}3EUEE9E|ùEÙ҉UuEEM E9E|3뙐UPWV}Ep@%t@u%Ew4YG tG uWY@f@fu1@\t#h(j\ p@p(YG(%tG(%@3P1Yp@%t!}|G u VW6 up@%u }t 1Ƌu}ÐU8WVS}=p@tp@Ep@EW$;|W&;G&@GE} }2+EE;E ~EE E+E EE+EEE6U+ЉU;U }EE EHE+E EHU+ЉUEfG8f @u3E܋GEЋG EGE}toGDU MU U UM ;=p@uhp@x4t]P4E Mp@P4E p@P4E p@P4EM "EPGDU4U4Ý ;=p@u@EЋUf PUf PE̋Uf PUf Pp@PE p@PE EЋUfPE̋MIf PMEEE}} } E+EE HU+ЉU}~]GEGE3GGGfGfEfWYMEE}fGfE؈GEԈGO }tEȣp@jSuE+PWp@tW Y;=p@t}tWnY]u}3UWVS}u ]||G;}G;|]u}ËfGfO Gt W Y3ҐU$WVSp@9Eu3E}t)p@xt}t p@@3]Ћuԋ}Ã}up@9Et u~2Y!@<t}u p@xt p@@p@ff$+@fPf&+@p@P4,+@p@fPf(+@fPf*+@p@X0 q@%6p@%=p@fxth(j@ tp@p@%th(j@ @=t*h(j@t@4l h(j@R h(j@l8 @th(jh(hj9 p@d@p@xh((+@P@p< p@p@3f fHf &+@f $+@xu5p@]Y)*+@E*+@t3U+ЉU(+@HEp@xp p@PUEEt;tH=up@p@@@:Ep@@<@Ep@UUPUUP *+@;}u-@=up@fUfP:}}4uuxEp@@(%tuup@EE9EuuuE9Eu:p@f$+@ff&+@fPp@p@ff$+@fPf&+@*+@;} uYf>fEE9EtH=u ;up@p@Ep@@E$+@9Eu &+@9Et2uu&+@P$+@PCfEf$+@fEf&+@p@@p@P(P(P(@ƀp@f(+@fP:f@Ep@R:ЉUE>E9Ep@%p@@%tIp@@%h(j@ p@PPWp@@%t+h(j@Y p@PPh(j@. @t&h(juP B36p@@%7E %= "EE;E}EEEEPuuuu iE3Uи 9t3C;]|p@@E E,+@U EEE ʸU#u"E ׉E E*+@9E |}UPW*+@H$+@(+@J;7p@@%t`p@PD$+@ GUGP$+@P&+@P$+@PN@xtE%=~u `}ËEPгYGP$+@PW$+@Pp@%tCp@@%u1h(j@ p@PP@th(j D@t6p@%u%h(jj@API E%p@;B,t/h(p@p,E%PO p@UP,@xtE%=~u`EP色Y=,+@tDEu Et2h(E%PE%P p@UP,f&+@p@PD$+@ E8@xtE%=~u`EPYp@PD$+@ E@xtxtj 軱Yj 賱Yf&+@f$+@U WVSE@;E |E ]u}ËE Hءp@]PU]P Up@]PU{E=taE*+@;|E*+@;|=p@PD<*+@Ћ 9u;r;uEfKmmm;]}C4UWVp@UUPp@UUP&*+@;| =tf>EE 9E|ҋE@;E }p@U UPu}*+@;|E (+@9E |}u?h((+@P@pt<EEEEE;E~ EfUfE;E} EfUfEEEE9E|}܋NjP@U܃}A]Ћuԋ}UWV}W<fGW:fFw@u݋u}ÐUWVSE@E9E |]u}Ã} }E E E;E~ E+E EEU UPU UP }tH 3@HE;>EE` &9Et =t ffEfEMи9EuExt uY9EuExtuhY3U졄@=t;@ffƀƀƀǀ3ÐUP@tsB= te@|WBFjEP@Bo ~0@@BBfMf P3U,WVS}u E +E@EFDEGDEG0E܋E$+E@E;=p@uFE}(t ~,u 9F0t3EEu E؍EEEEE}tREUЋEEEUЋEE]ظ9ETuEUЋEREUЋERVx FUP9E} FfMf PF UP9E$~ F fM$f PEEEM=p@t uuE$+E@PE +E@PVp@N ~tVBYFtVY]ȋű}3EU9t 9uF0E% F,UEEK#E 9uF0E% F,UEEKUh@h$@/hq@T@40@h$@. h@h$@.ÐUPWVS}@xu}@%E}~ 9Er]u}ËEE@@t 3ۋǙSU YO3먐UEx$t p$YExt pn~YExt p\~YExt pJ~YEx0tP0:t21~YEp0tYEx4tP4:t2tYEp4tYExt ptYutYÐUW}u }WY| `qYuމ=p@=p@tUhpY@DEU3E  fXC|ًEp@3)UWVSp@@85@3ۡ@@E@@j}u$0@hw4uup 0@ڃEj@}u$0@hw4uu, 0@ڃE3f@j}u$0@hw4uu 0@ڃEj@}u$0@hw4uu 0@ڃE3f jCE@4}u$0@hw4uu& 0@ڃjj CE@4P}u$0@hw4uu 0@ڃf|jj j@pP虸 P}u$0@hw4uu 0@ڃfjj@$GP}u$0@hw4uu- 0@ڃ׃f@UP]u}U0@U}u0@hw4u u 0@ڐU(WVS}u jHmYtlPlYCDtP=p@tPjrCt%}EPlYCu/sToYsDKoYSDoYfT@3]̋uЋ}Í}CC 3fCffCfCfEfCfEfC p@@EEu$p@@p@;|;5p@|3CC(EC(EC(EC(E3CCEME% ЉEEME% ЉEEME% ЉEEME% ЉECC(% C(3fC$fC8GfC&C0 fCS}u=t;E}EE}u=t;E~EEE9E=t E=u Ef8EUU;~ EUUfEUU;} EUUfEEԋp@R:;}p@UUfP:EEԋp@R<;~p@UUfPfEUUEU‹U؍‰EE+E@Puue EEEEEEEE9Epp@H g 3]u}ÐU(WVS}GtZE+EE}EE+EE;E~EE܋E9E$}|;E~fEf;E}fEfEEEE9E|O E@<EE@:EE؋P@U؃}]̋uЋ}ÐUPWVEEE7F@9uVScYEMEt$.cYEt cYu褩Yu}U} tE@p@AËE@U WVS}EGUGЋGHW ‹؋E %EE %Ep@@ uhG u]uWp@xuLp@@ uG fPp@;u p@@;t'SVp@@Pp@P覀p@fp@SfPp@P 9E tbÐ Nb3ÐUu1YPYUWVS<+@8@GF҈uEk@R@<+@GFGFGFGE@kh@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW<+@]u}UW}G 9E |E R0ˆG GE R0‹GNj}Ð`3ÐUE PuUWVS3h@_TYEuE@j/u*t@E|PuW u |PG/\(@=td=t$= tV= t8=u2FwBV(YDž|@|DžxTCwt \(@ hlpø9x|\(@xxt|xBM t ɉ u|Ph@T.xUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U} u\(@3Ã} }uu ZYEu\(@ 3\(@h@5@ Eu3\(@uu ul u\(@ 3xuzYju(E@= t\(@"3CE@E4ÐUPWVS}E!@uJG!@u=+t =-u EG!@u 3]u}ø0+Ëk 0+G!@uރ}t뾋븐UPWV9@ueE9@}#E @ =-u E Au u}h@E @4'u @΋E @ @=@:tWu '=@tOLjEE E 0,QYPE 0j[ h@QYPh@j[ jEPj[ E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0IPYPE 0jZ h@.PYPh@jZ jEPjZ @?GE @@ @@8E @ @@@u@@@UWEE=l$@1hl$@4 Y=uE9E3} p$@l$@=l$@Wj 5p$@u EtE+EE)l$@p$@=l$@}3l$@y$@'@+p$@;} hl$@TY}MMEEeU WV= @}uEPh@2u$E$3t\(@3u؋}hhh@X @}jh@X @}3j$h\+@5 @M =$t 3\+@+jj5 @T -$X+@\+@qGF$rX+@3VUWV}fv+@fG=$`@Gv+@[f5v+@ftftft =uId+@W;u:e+@W ;u+f+@W ;ug+@W ;u \+@u}aM3UWV}\+@fFft6F=t F=u j F PG P&/ u Ƌu}u3U,WVE}Թ = @|+jj5 @ E=tE%=t 3ű}ÍEPYuBEPpYuE Pj5 @m &jj5 @R jj5 @R j$EP5 @V =$t E\+@uԋ E\+@uj5 @ E?UWV9 @tjj5 @R 3\+@GF$rX+@u}UWV9 @t 5 @gQY @X+@3\+@GF$ru}UuKY=O~3uh@JUjh@,ÐUWEE EPTQYtujW Nj}UuSYÐUWVS}}~EE ;ur;u s 3]u}Ã?'W Y=uE H3u U+ЋO;7sSwuMT ÉE)G?}3W '@+W;}WOY+Å{Eh U3ÐU$WV+|Yjh@S|Djk$PV P j$EPV%I =$tVOY3uԋ}VtOYE܄u3jEPh+@t +@+@ŐUWV}t9~u=Ƌu}U=@uh@h@ I@5@ YU=@t5@JY@UW}G?t=:t = u= u ?tGNj}U=@uh@h@rH@u35@YUWuhh+@_ =/@WQY=/@WBY=:j EPW& EWGYPj:W(V/Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V '@+V;}VKY}u +gEEvÐQ3ÐPÐUWVSEPfYE =ruEEE =ruEEE/@?t-/@PBKY|0@rڋE =ru3EVKYuKYujS SJYjuh@h@h@j)Y9Eu 3]u}ËE/@SJYu VUWVE@ uWFYjjOEjj OEjjNEEP>DY;4/@tu9\(@tكuEujNujNujN/@Eu}Ð>OÐUWV} GEt?F EF F F3҉V'@=at=rt=wt3u}ÀN jjuI N G=+uf N ȸ*nNL$Q3ÐUPWE E$@u$@t* $@h|$@uu( $@ t }ËUPWuY@=@t)P5|(@KE}u@}@PHYE}tٍP5|(@uTL E|(@׃M |(@W |(@U3UWV}3 W|(@4$t Ƌu}F|(@<uFUWV}u ==u u}GF;t3WV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_U9Er=@u>E0@PGY@E0@E|0@E EURu+ËE90@sˣ0@P5@?J@UWVS|0@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW0@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu0@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u |0@|?=@t6SW5@TI SVWII S5@V9I ]u}ÊEGFUKuUWVS}u ]|0@E9E|R=@tIuW5@H uSWH uVSH u5@VH ]u}ÊEGCFUMuӐUW}W@YjjG PD GGg G tg }ÐUW}} WY}ËGGUPWEEE@ uE@ t(EH uuu # E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PC +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G PHC ECG t8W?YG t g GGuu G PB E9Eus3lUPE EPuhl$@d UPEEPu uI UW}EEEljEEW;YEE2uu EP }ÐUWVS}u Dž0@0@ 0@W =~*uDžF DžDžk -0F!@u؃u DžÉ=lt h9uF؅[uPV!@tDžl"@؃nt_=0@uVctQ[tL0@} W@ Y GG!@u 0@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf0@fl9uEEP0@{EEP0@dEPWSt'=0@tu /$Fu !@td=0@u0@} W Y GG!@u 0@W$=u0@y%uF؃%0@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE0@}WyY3]u}ËGG=+t=-t =0t8EM0@} W(Y GG؃0i9E }9Eo0@} WY GGEYuj0Yt,j/WuFjhx@(E}]̋uЋ}3ME=t!E=tE=t E=u j EPVA u u$YCj$EPu =$tu#YyWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_UPWVut#Yt8EPu|%E%= ujh@`'} 3u}þfEft EU;uuh@h0@EPh0@EPh0@|=EU;u1E%= u!t EU;uW"Y0@\jEPW =TjjW" NuWE"Y3 f'3ÐN'3ÐV|$3O|$ ыt$ D$^ø<'Ðjjt$ 9rã\(@ÐUW} 9EtFG tG9GwG9Gu+?u&GuWi YGHGUE}ø f&3ÐUWEEEEEE2EPuu ENj}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  '@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlx!@Dž\9PtP؉PNKPPoYh~PW =uh~Ph!@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}0@E0@E#@s3UtE]0@E#@E#@E$@r5E$$@r0$@E,$@AEL$@s6EE]@)EET$@r݋EE 9P܃}t؁0@F1@vF1@E\$@t 1@r05}fEf fEmE]mE܉E@0Ee d$@];r&=5|+0@u0@1}tCF0N<90@]uԋ}ËEE0]@EEsEE 9P EEEE4$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E<$@E5D$@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G '@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W '@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}|(@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W'@UWl$@;='@r3}ÃG uUWl$@ WY;='@r}UWV}tlG t6G t3WVYG PY}\(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG '@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G '@+G?}3W '@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G '@+G?}3W '@+W;}WY3UWV}G G u}}&u@Ȅ@GW '@*h!YGt@O G W'@GGVYtG uO @u}G Ј@WR'@UWV}G '@+G}G '@Wu};7}7𐐐*3ÐU\(@EEPhTu } E\(@3ø6ÐÐU WVSE9ET=p(@u&1@@@@@@@@@@110-1501300512003240064800796002192008BADBAUD0bootbootwaitinitdefaultoffonceondemandpowerfailpowerwaitrespawnrestartrMessages file not available headerr#B ### rtt[rheaderw:%s/dev/%s:::badMODEMTERM= -t -r 9600/etc/getty 9600/dev/plpplprparalleloffr%s %s/etc/rc2.d/S02.printersr/etc/rc2.d/S02.printers/usr/lib/xpd%s %s %stty%st%stt%soffgrep '' /etc/printersrlpls /dev/tty*r%s %splpr----plprplprrespawn/etc/gettydefs/etc/net/hosts/etc/printers/etc/oprinters/tmp/rprinters.pcf/tmp/rptemp.pcf/tmp/pcf.baudrates/tmp/pcf.termtypes/usr/lib/uucp/uugetty/etc/inittab/etc/oinittab/tmp/inittab.pcf/usr/lib/PCF/lock/usr/lib/PCF/printerflags/usr/lib/PCF/valid.ports/usr/lib/PCF/PCFLANGPconfig.introhfiu:d:a:c:r:p:m:e:o Port Configuration Utility. Version 2.00 Copyright (C) 1986, Altos Computer Systems .msgError in message initialization cat %s; echo %s.hlpTERM Not a valid terminal type. Valid terminals are: ls -RC /usr/lib/terminfo/? | more -15 -dTERM=%s Someone else /etc/telinit qmore ls -RF /usr/lib/terminfor%s/bin/shconsSHELLHWJJiLNaONNTERMunknownrespawntty/dev/tty%stt0%stt%st%soffTERMunknownrespawntty/dev/tty%stt0%stt%st%s/usr/lib/terminfols -t r%s%s/%sls -RF /usr/lib/terminfor%sbadMODEM%s %s %s %srespawnrespawnoff%s -q /dev/%s /dev/lp %s*grep ':%s:' %srr0-90lplp%s0lp* grep '%s' /etc/printersrgrep '%s' %sr: 0-6abcsS*lpgrep lp: %srrr: %s: %soff#Reservedr*/dev/%sparallelcons mvvAwwplproffconsTERMunknownrespawnplprconsolegrep -v ':%s:' %s > %s; mv %s %s%s:%s:%s:%s:%s %s----echo %s >> %secho %s > %scat %s >> %s; mv %s %sr/etc/ttys/etc/ottys/etc/ttytype/etc/ottytype/tmp/pcf.scratch@ @@$@5@=@xpd name with full path ******************************/dev/ttyXXXXX/dev/lpXXXterminal name /bin/sh/usr/lib/PCF/xpdkill wr%sparallel/dev/plp/dev/%soff%s:%s:%s:%s %s:%s:%s:env - TERM=%s /etc/getty %s %s %s:%s:%s:env - TERM=%s %s -t %d -r %s %s /dev/%s/dev/lp%srm -rf /usr/spool/lpd%s/usr/bin/lpr%sfgrep -v '/usr/lib/xpd /usr/bin/setmode' /etc/rc2.d/S02.printers > %smv %s /etc/rc2.d/S02.printerswmkdir /usr/spool/lpd%s/usr/bin/lpr%s/usr/bin/lpr/usr/bin/lpr/dev/%sparallel/dev/plp/dev/plp/usr/lib/xpd /dev/%s /dev/%s %s /dev/%s/dev/%s%s/dev/%scat %s >> /etc/rc2.d/S02.printersrm %s/etc/rc2.d/S02.printers/etc/telinit qwplpr%c%c%s offplpr0%c%s w%s %s w---- %s:%s:%s::%s%s ---- %s:%s:%s::%s%s r%s/dev/%srespawnA%;ٙrInvalid option - %s %c=%s%s: %s grep ':%s:' %s > /dev/nullgrep -v ':%s:' %s > %smv %s %sconsconsMODEM%s -q /dev/%s /dev/lp %slp0123456sSgrep ':%s:' %s > /dev/nullgrep ':%s:' %srlpgrep -v ':%s:' %s > %smv %s %s%s:%s:%s:%s:%s %s----echo %s >> %secho %s > %scat %s >> %smv %s %s: \@SVR32Kn,X` %K-VMUJHLON     KI[RSPQT\]^_`abcdefghWijklmnopqrZstuvwxyz{|}~  @@.v-^h#i#0#4   liorkpDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/bin/shPATH:/bin:/usr/binsh@pwd 2>/dev/nullr: option requires an argument -- : illegal option -- --/etc/utmpNMMMMMMMM/etc/utmp/etc/passwdrr/bin/shsh-cVcScScSccVcccccc_ccccccVccchc??GA>???/bin/shsh-cl@p@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF֌֌"֌D֌֌֌֌A֌ .֌q֌֌֌֌֌֌֌֌֌֌֌֌!֌֌֌֌֌֌֌֌֌֌֌֌֌֌֌֌/֌֌֌֌֌֌֌֌֌֌I!֌֌֌֌֌֌֌m֌΄֌֌/-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@'@@h@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1busr/bin/printenv100755 3 3 27560 4201131071 10460 37777777777 Lt ==u==uFVhl@k?u}uP$Yu}3UEE E8tE 8tEU ;tڋEu3UPWE El @ul @t* l @h` @uu l @ t }ËUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  t@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl\@Dž\9PtP؉PNKPPoY Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlb@Dž\?E2ETMDžle@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h @YEt Eu = @t3txE @ @h @EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}d@Ed@E @s3UtE]d@E @E @E @r5E @r @E @AE0 @s6EE]@)EE8 @r݋EE 9P܃}t؁d@@v@E@ @tu@r05}fEf fEmE]mE܉E@0Ee H @];r&=5|+d@ud@1}tCF0N<9d@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5( @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G t@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W t@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}`@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWP @ WY;=p@r}UWV}tlG t6G t3WVYG PY}@@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG t@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G t@+G?}3W t@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G t@+G?}3W t@+W;}WY3UWV}G G u}}&u@@GW t@*h YGt@O G Wt@GGVYtG uO @u}G @WRt@UWV}G t@+G}G t@Wu};7}7𐐐3ÐU@@EEPhTu } E@@3ø62ÐU WVSE9ET=T@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@p@@\@3.1bS03.1bS0usr/bin/pscreen100755 3 3 76274 4231442746 10301 37777777777 L!  T'@.text T .data@@'T@.bss|<@|<@.comment@||ÐET|<@RU RP PSjÐU0EډEԋE A@EE U =-t8E 4hP@h8@ 5A@h9@h8@ jWSYE U A=dt(=etC=kt0=tuAE B D@ENE UB H@E8EE5A@h9@h8@  jRYE9EEu2h@h8@5A@h9@h8@ jRY=D@'=H@uh@FYD@ j/5H@*L@u H@L@L@h@h@zGE=uWh@h8@:5A@h9@h8@" jQY#5L@h A@'u D@pA@!h A@hpA@h@uX=u=D@u85H@h%@h8@ 5A@h9@h8@ j]QYunHYEڄ5D@h<@E9Eu+hO@RY5A@h9@h8@< jPY}u85D@hi@h8@ 5A@h9@h8@ jPYEPh@/u2h@h8@5A@h9@h8@ jyPY=H@u j(YH@H@=/tH@=@u5H@h@DE5H@h@*j/j(YP_(Pj/h@O(P%t#th@h8@ jOYjh@LOE=u*h@h@h@@W% h@@FYjOYEPhtuK =u+5A@h@h@@% h@@YjDOYEPhtuJ =u+5A@h&@h@@$ h@@YjNYu=JYEE U =-E9EE 4CY=uE U E=E U 5@tE 4AYEE U4YE}~ 9E|;E U4hd@h8@w 5A@h9@h8@_ j!NYEUM E 9E 9Eu2h@h8@5A@h9@h8@ jMYEUEE U =-E9EE 4BY=uE U E=E U 5@tE 4YEE U4YE}~ 9E|;E U4h@h8@= 5A@h9@h8@% jLYEڋUM E 9E 9Eu2h@h8@5A@h9@h8@ jLYEڋUU W}E =0u"G=xt G=Xu E=0uE 9Eu2WXAYH=dtWEAYH=Du W2AYHE|E5@t(79E~ 9Et;EEE-0EB9EuE5@tE6@ E+EUUЃWUGE5@ltEE}U uEP@@h7@EP%EPL@Y=|E$EPE@P tEE9@uˋE@U5A@h9@h8@ jJYÐUPEPju  |~EUPWVS}u ]uu-3]u}=$u G=<tKF׊ Gt?u׋Eǀ?tG=>uUWV}W=nc=bstT=ns=pttsEjuh@h@WEh%@E9E3u܋}jEPd%@p` t=uFtz3jEPd%@@ t= uFtF3jEPd%@p0 t&= uFu3_d%@,u G3@EU1U W}E juhh@h@W El%@E9Eu}ËEUPUWV}u Ejuh@h@Wh Ep%@E9Eu 3u}ËEU Mt>tu6'=uD=Y@EŐUd%@rt&d%@nPhTd%@lPcC 3UWVS}G%%؁u tu]u}ËЋU<WVS}uh%@;YE}t Eu`%@EDž}t Eh%@W;Y>V1<Y@u<YЁ~fx%@VP;P;YЋ/FFU /FuV;jPE} 9\<@}Vh%@PF;P_;YЋEVuV;jPE}c 9\<@tjh%@tfx%@#fx%@fx%@}t EuhA@:hPj: @Yfx%@B9ufx%@'B@WTY9uW7YW'YWYWYWYDž=t%@hP@Yd%@tyj?@Yh%@t\j.@Yl%@t?h@Yp%@L@9p%@t 5p%@BY5l%@BY5h%@BY5d%@vBYfx%@}u x%@PCY_t%@d%@G@h%@L@l%@L@p%@L@x9s DžB@u4?Y}t Ejud%@Pt d%@ƀh%@l%@p%@d%@ǂ3҉9E uu 3>YuE d%@fU fl5d%@ǀǀ3ffffhjP Yd%@d%@3f@ы d%@Bƀd%@ǁj4jPz d%@nPhTd%@lPd= 3d%@d%@n JHJHJ H fJfHWV@ h%@@5h%@G;sFӁu;s+PjV tGl%@l%@@:W6Y;s"} fffu;s#+ùEPjS Phju < =t0t&tl%@ffPffDžDžh%@_4Yh%@N4Yt&Y~l%@ffPt%Y~l%@ffp%@p%@?WY;s'} Ëu;s#+ùPjS W]> d%@%=uKd%@fd%@t&d%@PhTd%@lP>: 3 d%@xtp%@p%@3҉d%@@+d%@P5h%@5d%@= d%@@(d%@R+P5l%@d%@@P= d%@ld%@R(+P5p%@d%@@(PZ= d%@Lp%@DžS|%@ ɉ td%@<%@ p 9|d%@4l%@@=ud%@xu fPf| l%@f@DžT%@<t04ud%@<%@ 9rd%@ǀDž%@ ɉ tM~04Mt39u@4d%@ud%@<%@!9Gd%@d%@J\tJhxJx|3UEǀǀ3ffffhjP Ud%@t&d%@PhTd%@lP6 3Ud%@nPhTd%@lP6 3ÐUWV3EHmƹE}uEU MJ4uuEU MJ4u E}}EH }~E@;~u}ËE UPUh&@h8@vhA@x%@4%@h8@V h'@h8@DÐÐUPWVS}E5@uJG5@u=+t =-u EG5@u 3]u}ø0+Ëk 0+G5@uރ}t뾋븐UWV'@X)@9\<@s \<@<'@uY.YtVuj8 jh'@j8 W-.YPWj8 jh'@j8 u}ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuhl8@d UPEEPu uI UW}EEEljEEWJ-YEE2uu EP }ÐUWVS}u Dž<@<@ <@W=~*uDžF DžDžk -0F5@u؃u DžÉ=lt h9uF؅[uPV5@tDžl6@؃nt_=<@uVctQ[tL<@} W@ Y GG5@u <@Wz=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf<@fl9uEEP<@{EEP<@dEPWSt'=<@tu /$Fu 5@td=<@u<@} W Y GG5@u <@W=u<@y%uF؃%<@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$`2@EE EE<@}WyY3]u}ËGG=+t=-t =0t8EM<@} W(Y GG؃0i9E }9Eo<@} WY GGEh~PW =uh~Ph5@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}<@E<@E7@s3UtE]<@E7@E7@E8@r5E$8@r08@E,8@AEL8@s6EE]@)EET8@r݋EE 9P܃}t؁<@<@v<@E\8@t<@r05}fEf fEmE]mE܉E@0Ee d8@];r&=5|+<@u<@1}tCF0N<9<@]Ћuԋ}ËEE0]@EEsEE 9P EEEE48@MU]vEu}fEf fEm]mE܉EFUR0EMm]E<8@E5D8@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G ;@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W ;@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}|<@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈u]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W;@UWl8@;=;@r3}ÃG uUWl8@ WY;=;@r}UWV}tlG t6G t3WVYG PY}\<@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG ;@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G ;@+G?}3W ;@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G ;@+G?}3W ;@+W;}WY3UWV}G G u}}&uQ@U@GW ;@*h!YGt@O G W;@GGVYtG uO @u}G Y@WR;@UWV}G ;@+G}G ;@Wu};7}7𐐐3ÐU\<@EEPhTu } E\<@3ø6FÐ2ÐU WVSE9ET=p<@uQRU@V87=XLOSY:WZ[]^_`abcd\' fe!"ghwstxvuz{|~}y+#(,$- H!@K!@N!@Q!@T!@W!@Z!@]!@`!@c!@f!@i!@l!@o!@r!@u!@x!@{!@~!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@!@"@"@"@ "@"@"@"@"@"@"@ "@#"@&"@)"@,"@/"@2"@5"@8"@;"@>"@A"@D"@G"@J"@M"@P"@S"@V"@Y"@\"@_"@b"@e"@h"@k"@n"@q"@t"@w"@z"@}"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@"@#@#@#@ #@ #@#@#@#@#@#@#@"#@%#@(#@+#@.#@1#@4#@7#@:#@=#@@#@C#@F#@I#@L#@O#@R#@U#@X#@[#@^#@a#@d#@g#@j#@m#@p#@s#@v#@y#@|#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@#@$@$@$@ $@ $@$@$@$@$@$@$@!$@$$@'$@*$@-$@0$@3$@6$@9$@<$@?$@B$@E$@H$@K$@N$@Q$@T$@W$@Z$@]$@`$@c$@f$@i$@l$@o$@r$@u$@x$@{$@~$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@$@%@%@%@ %@%@%@%@%@%@%@ %@#%@&%@)%@,%@/%@2%@5%@8%@bwamxbxsxneognhckmhsindadbmimsosesxthzulxonx5iHCNRNPNDcoitlilmsgpbvtwsNllhlwmaMWbtblcrcsctclcecdchCCcmdohovileCMvendllupvsdcdldshdasmbmdtidmmhimmkmpmrsousecaemeteedeiseuevbfffsi1isi3ificalipkbkakCktkDkLkdkMkEkSk0k1k;k2k3k4k5k6k7k8k9khkIkAklkHkNkPkrkFkRkTkukeksl0l1lal2l3l4l5l6l7l8l9mommnwpcDCDLDOICSFALLERISRUPpkplpxpspfporpr1r2r3rfrccvscsfsrsastwitatsuchuiPK1K3K2K4K5pOrPacpnkBSXRXSARAXNXFeALOLF@1@2@3@4@5@6@7@8@9@0%1%2%3%4%5%6%7%8%9%0&1&2&3&4&5&6&7&8&9&0*1*2*3*4*5*6*7*8*9*0#1#2#3#4%a%b%c%d%e%f%g%h%i%j!1!2!3RFF1F2F3F4F5F6F7F8F9FAFBFCFDFEFFFGFHFIFJFKFLFMFNFOFPFQFRFSFTFUFVFWFXFYFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfSCDKRCCWWGHUDIQDTOPUfhPAWAu0u1u2u3u4u5u6u7u8u9 @%@G@L@L@L@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS&@&@#&@R&@k&@&@&@&@/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . Unknown error: \)@d)@n)@)@)@)@)@)@)@)@*@*@-*@>*@P*@\*@r*@~*@*@*@*@*@*@*@*@+@+@#+@2+@J+@W+@m+@|+@+@+@+@+@+@+@,@",@0,@I,@f,@,@,@,@,@,@,@,@-@-@,-@A-@R-@_-@u-@-@-@-@-@-@-@-@.@.@-.@C.@S.@a.@}.@.@.@.@.@.@.@.@.@.@/@ /@7/@^/@/@/@/@0@0@0@#0@,0@50@>0@G0@P0@Y0@b0@k0@t0@~0@0@0@0@0@0@0@0@0@0@0@0@0@1@ 1@1@1@(1@21@<1@F1@P1@Z1@d1@n1@x1@1@1@1@1@1@1@1@1@1@1@1@2@2@"2@32@K2@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error ! !!!!! !!!!! !! ??GA>???/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF1;;1; ;;;;; 21;11;92I2I2I2I2I2I2I2I2I2;;;;;;;;;;;`4;8;;;;;;;;;;;;;;;;3;;;;;;;;;;;h2`4z68c2h2;;\2;;3;;;5;;3;;3-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@Y@Y@;@Y@([@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0;@Y@usr/bin/random100755 3 3 30514 4201131103 10060 37777777777 L! 'l @.text' .data@@l '@.bss<@<@ .comment<1ÐET<@RU RP P&jÐUWV3}E E =-u5h@E 0Ith@hL @jQ&Y8G5E 0}Y@|~h@hL @j&YMzEPYPEYLEƹuVhA@V%Yu}ÐUPWVS}E] @uJG] @u=+t =-u EG] @u 3]u}ø0+Ëk 0+G] @uރ}t뾋븐UPWE EH @uH @t* H @h< @uu H @ t }ËUEH@UiH@mNA90H@%ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}u ;u 3u}F;t N+Gu׸+#ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  P@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl8 @Dž\9PtP؉PNKPPoY Ek E-0GE] @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl> @Dž\?E2ETMDžlA @Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE] @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hd @YEt Eu =` @t3txEm @` @hs @EPbuEPSjEP |>h~PW =uh~Ph\ @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@@E@@E @s3UtE]@@E @E @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁@@@v@E @tQ@r05}fEf fEmE]mE܉E@0Ee $ @];r&=5|+@@u@@1}tCF0N<9@@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G P@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W P@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}<@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW, @ WY;=L@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG P@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G P@+G?}3W P@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G P@+G?}3W P@+W;}WY3UWV}G G u}}&u@@GW P@*h YGt@O G WP@GGVYtG uO @u}G @WRP@UWV}G P@+G}G P@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø62ÐU WVSE9ET=0@u<4@ 0@0@ 4@$@4@ @0@$@,@E@3؋= @E&;5$@0@E@E=w=,@jY$@@;t?3Ee ƹ3tL3+‰EEE2$@+,@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5,@$@0E+E-$@@;t$@$@$@0@~Љ @;5 @v @(@ @ 9=,@u @,@G(= @95,@u=,@7tލ;r;l%;UWV}5 @%$@9u5,@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ(@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$8@Ru 8@+D$ø!T$8@3øÐ@ÐT$@@(#)random 5.3b of Jan 27, 1988-susage: random [-s] [scale(1 - 255)] usage: random [-s] [scale(1 - 255)] %d  000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFr22~22222Z2f2222222222222} 22222222222222222222222222 } 2222u2222*22-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@L@@8@3.1bS03.1bS0usr/bin/tsort100755 3 3 61414 4201131161 7762 37777777777 L! I0 d @.textI .datad @d @0dJ@.bss"@"@ .commentxbÐET"@RU RP PIIjÐUWVSE@h @CYE 0HYh @YE=tC=u1h @E pt%h @E pj E h @Y0PEPh @uE9Ets9EtjOh @h @jEPY0PY;tSVujjCw{eEx @9F uEVnYt6>u݃}t>u vYF 3$(,UWE xE9Gu }Ë?u3UWExG9P u }Ë?u3UWVS}x @vW+t]6>uC;uC+Pjjj^F @@ CG҈uƋ]u}UWVx @ 9G t??uhh @h @jWQYu!hh @h @jx @9F uF 6>uNju}UWVS} tQ9G u Nj]u}G _*sYtwh @h@N u3뷐UE @ÐUE @ÐUE @E @ÐUEEEPUh@h @ = @t+= @t"h@5 @f h@j ' uuh@ h@j  h YjdYÐUP @EE @EÐUPWuu 9unE@=+u E @h @u= @ @ @ @ @ @ @ @h @;u= @ @ @ @ @ @ @ @h @u= @ @ @ @ @ @ @ @Bh @u  @h @pu  @h @Mu  @h @*u  @h @u  @h @u  @ph @u  @Mh& @u  @*h. @{u  @h5 @Xu  @h> @5u  @hH @u  @hO @u  @~hX @u  @^h_ @u  @>hh @u  @ho @ou @h| @jVCUE=dt=t=,5 @+<YUE=w|$ @ød,𐐐UE=w |$ @ÐUWVS}u"@Etu WЋu 3]u}u V.u "@ C"@ɐUPjj:Etuj:$ @@$ @=u1j ;P:ÐUW} }WEPi2}ËGGUUWVS} 3G %=utG9Gu!?uG DuW3Y 3G !@UG u;u/YEPuG P9 E]u}W2Y=u~GEU+Ѕҋ~SjuuPEt E+EH؋)G?}3W !@+W;}WR4Y}t*G @tWe2Y=u ]VEgUWV( @x@9t"@s t"@<< @u.YtVuj8 jh6 @j8 W-YPWj8 jh9 @jv8 u}ÐUWVS3@%=u-=@t$@9@u,=@u#@Duh@1Y 3@!@Uh@91Y=u@E+Å~VjuSEtE+Ë)@@=@}3@@!@+@;} h@2Y}t=@@ @Dt"h@0Y=u]u}ËE@UWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh@d UPEEPu uI UW}EEEljEEW~+YEE2uu EP }ÐUWVS}u Dž"@"@ "@W=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_="@uVctQ[tL"@} W@ Y GG@u "@WV=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf"@fl9uEEP"@{EEP"@dEPWSt'="@tu /$Fu @td="@u"@} W Y GG@u "@W =u"@y%uF؃%"@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE"@}WyY3]u}ËGG=+t=-t =0t8EM"@} W(Y GG؃0i9E }9Eo"@} WY GGEh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}"@E"@E@s3UtE]"@E@E@E4@r5E<@rH@ED@AEd@s6EE]@)EEl@r݋EE 9P܃}t؁"@"@v"@Et@t"@r05}fEf fEmE]mE܉E@0Ee |@];r&=5|+"@u"@1}tCF0N<9"@]Ћuԋ}ËEE0]@EEsEE 9P EEEEL@MU]vEu}fEf fEm]mE܉EFUR0EMm]ET@E5\@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G !@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W !@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}"@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W!@UW@;=!@r3}ÃG uUW@ WY;=!@r}UWV}tlG t6G t3WVYG PY}t"@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG !@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G !@+G?}3W !@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G !@+G?}3W !@+W;}WY3UWV}G G u}}&u"@&@GW !@*h!YGt@O G W!@GGVYtG uO @u}G +@WR!@UWV}G !@+G}G !@Wu};7}7𐐐63ÐUt"@EEPhTu } Et"@3ø6ÐÐU WVSE9ET="@u<"@ "@"@ "@|"@"@x"@"@|"@"@E@3؋=x"@E&;5|"@"@E@E=w="@jY|"@@;t?3Ee ƹ3tL3+‰EEE2|"@+"@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5"@|"@0E+E-|"@@;t|"@|"@|"@"@~Љx"@;5x"@vx"@"@x"@ 9="@u x"@"@G(=x"@95"@u="@7tލ;r;l%;UWV}5x"@%|"@9u5"@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ"@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$"@Ru "@+D$øT$"@3øÐ0JNL$0J:L$0+L$0L$0 L$05Ã%3ÐÐt"@ÐWT$@(#)tsort 5.3 b UXnotag,notofix-r[ file ]%99s%99stsort.codd datatsort.ccycle in datatsort.cprogram error %s Usage: updatingreadingwritingappendingUXzfopen1Cannot open file "%s" for %s.UXzmalloc1Cannot allocate a block of %d bytes., ERRVERBERRSOURCE%s: %s: HELP FACILITY KEY: , line %d UXerrno%dTo Fix: %s nochangesilentverboseexpertbellnobelltagnotagtextnotexttofixnotofixsyserrnosyserrdefsyserrsourcenosourcesevmsgnosevmsgprefixnoprefixRefer to help error database or manual. @ @ @ @ @x @INFORM: WARNING: ERROR: HALT: FF?8hhhhUnknown error: |@@@@@@@@@@(@;@M@^@p@|@@@@@@@@@@#@4@C@R@j@w@@@@@@@@@3@B@P@i@@@@@@@@ @!@8@L@a@r@@@@@@@@@@&@<@M@c@s@@@@@@@@@@@@#@@@W@~@@@@(@1@:@C@L@U@^@g@p@y@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@ @@%@3@B@S@k@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device errorzwwwzz??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF&v0v0&v0/v0v0v0v0&&v0&&v0'!'!'!'!'!'!'!'!'!'v0v0v0v0v0v0v0v0v0v0v08)v0-v0v0v0v0v0v0v0v0v0v0v0v0v0v0v0v0(v0v0v0v0v0v0v0v0v0v0/@'8)R+-;'@'v0v04'v0v0(v0v0v0 0v0n(v0v0(-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@+@+@!@+@,@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0!@+@usr/bin/reset100755 3 3 3754 4220303516 7722 37777777777 L{5" X@.text .data@@X@.bss@@.commentÐET@RU RP PejÐUEPhTj EPhtj fM& fMfMfefefMfMfMfMEEjEPEt%=uEUjEPEt%=uEUjEPEt%=uEUjEPEt%=uEUjEPEt%=uEUEPhTjy EPhtjf jh@h@h@h@4jYUEt%=uEU ÐUE PuUWVS3h@_YEuE@j/ut@E|PuW u |P@=td=t$= tV= t8=u2FwBV(YDž|@|DžxTCwt @ hlpø9x|@xxt|xBM t ɉ u|Ph@xUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U}u3jYEhj-EEE}t6E9Ev)EE&E+EEEEEMujh@YujYufYjYjVYE}| uj} }}}t EEP!YEE'Ujh@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bVt$T$ :t#t:tt:tt :tu3^ËH^Ð5@t$ t$  Ð;UWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}36vÐ0LNL$0L:L$0+L$0L$0 L$0 Ã@ÐT$Ð@@(#)reset 5.3b of Mar 9, 1988tsettset-Q-I/bin/shPATH:/bin:/usr/binsh3.1bS03.1bS0T$ :t#t:tusr/bin/script100755 3 3 42150 4231442747 10131 37777777777 Lu! 8 @.text8 .data@@ 8@.bssX$@X$@ .commentXDÐETX$@RU RP P7jÐUjZY%@h@,Y%@E PB=St4=atJ=nt=qt4=su=%@'@D%@@8E P%@ME #H&@L&@E ph/@q ME 9E~E P=-^9E~pE P<&@=L&@uehP&@5<&@|N5<&@hF@ 5@5%@h5<&@|jj6Y <&@_@=L&@%j5<&@C5$%@=$%@jj5$%@C1 =$%@}K5<&@hj@k5<&@AYu h{@NY5<&@&Yjj5j5<&@hP&@jT&@%@h5%@=H&@5<&@h@jh@5$%@4 P}}"j#hp@j4 jj 5NYh0%@0Yjh0%@YP5$%@V4 P}}"j#hp@j>4 jj4Yh(%@Yh%@Y@&@=@&@}(h@ Y5<&@Yjjh4=@&@u i@&@=@&@}(h@Y5<&@Yjj4b=@&@u!?j5<&@R$%@Ujjf3hjW35(%@.Y5%@.Y5 %@.Y\54&@h4%@5$%@3 P}}"j#hp@j2 jjh3Y54&@h4%@5,%@2 hh4%@jI) 4&@u5,%@-Y5$%@-Yh8&@w)Yh8&@l)Y5@5%@h5<&@j2YUhjG2jj;2j-Y5(%@y-Y5,%@m-Y5 %@a-Ya=4&@~X54&@h4%@j1 54&@h4%@5$%@1 P}}"j#hp@j1 jj&2iYhh4%@5%@( 4&@z=H&@5<&@h@gjh'@5$%@>1 P}}"j#hp@j&1 jj1Yh0%@Yjh0%@ZYP5$%@0 P}}"j#hp@j0 jjQ1Y5$%@,YjY1YUj,Y5(%@`Yj+Y5 %@LYj+Y5 %@8Y5(%@+Y5,%@+Y5%@+Y5 %@+Yjh;@h8@5%@jhI@hF@h>@jhX@hU@hL@fh[@Y5<&@ YjjW0UhP&@jN T&@%@h5%@FUhj/U5<&@c Yjj/5@5%@h5<&@j/YU5@5%@h5<&@j/YU}}Lj#hp@j. jj^/5@5%@vh5<&@cjQ/YÐUumYPYUWVS\$@@GF҈uEk@@\$@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW\$@]u}UW}G 9E |E R0ˆG GE R0‹GNj}Ð-3Ð)-Ð-Ð*-L$Q3ÐUPWE Ed @ud @t* d @hX @uum d @ t }ËU5X$@E Pu Ð;,,t3Ð T$tÐUW(E+@EEPY=@iGQiWkW<E=x$@u=|$@uWEPEP< x$@E|$@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<$@E$@ƙ5$@Ep$@}| FFFtmnEN}|ۉ5$@}=$@ƹtmn=nu f@3 u@+Fu@;}f@G$@5$@$@$@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Phx@ 3W YkUjuuuu u#Ujuuuu uU$WVS}$@E$@E@s3UtE]$@E@E@E@r5E @r @E @AE( @s6EE]@)EE0 @r݋EE 9P܃}t؁$@%@v%@E8 @t$@r05}fEf fEmE]mE܉E@0Ee @ @];r&=5|+$@u$@1}tCF0N<9$@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G l#@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W l#@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}X$@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUWH @ WY;=h#@r}UWV}tlG t6G t3WVYG PY}8$@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l#@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l#@+G?}3W l#@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l#@+G?}3W l#@+W;}WY3UWV}G G u}}&up&@x*@GW l#@*h!YGt@O G Wl#@GGVYtG uO @u}G .@WRl#@UWV}G l#@+G}G l#@Wu};7}7𐐐&3ÐU8$@EEPhTu } E8$@3ø6ÐÐU WVSE9ET=L$@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@.@.@h#@.@0@3.1bS03.1bS0h#@.@usr/bin/see100755 3 3 17610 4201131134 7362 37777777777 L@!  @.text .data@@@.bssx@x@ .commentxÐETx@RU RP PjÐUWPhx@ ME }~E =-u |@ME }~5hh@h @E 0 uE 0JYjBYME  h@} hh@Yl@l@t$uF x@}+hx@j^(}mj Yá|@^|@?u$ }6= t- x@}hx@j^|@^|@@ u0=|@u' x@}hx@j$Y|@$|@ x@}hx@P.|@|@׈ hx@YUWV@`@9X@s X@<$@u YtVuj jh@j WYPWj jh!@jn u}ÐUWV}uWYG uG tO G Dt1h@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUWV}G tG t w Yg E GuaO }8u@#@GW @GGu}G '@WR@G W@VGYtO @맸 ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UWh@;=@r3}ÃG uUWh@ WY;=@r}UWV}tlG t6G t3WVYG PY}X@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@#@GW @*h!YGt@O G W@GGVYtG uO @u}G '@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUX@EEPhTu } EX@3ø6FÐ2ÐU WVSE9ET=l@uutGNj]u}3U5<"@u u| ÐUWV @D@9"@s "@<@uMYtVuj/& jh@j& W!YPWj & jh@j% u}Ð>z&ÐUPWE EH@uH@t* H@h<@uu H@ t }ËU}u3jYEhhje%EEE}t6E9Ev)EE&E+EEEEEMuj%h@"@YuubYljUYE}| uj$} }}}t EEP YEE2Ujh@"@EøÐ%ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWS}] ;u Nj]}ËG8u3쐸;$f$t3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  P!@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl8@Dž\9PtP؉PNKPPoY Ek E-0GE]@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl>@Dž\?E2ETMDžlA@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE]@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hd@YEt Eu =`@t3txEm@`@hs@EPbuEPSjEP |>h~PW =uh~Ph\@ 3W YkUjuuuu u#Ujuuuu uU$WVS}X"@EX"@E@s3UtE]X"@E@E@E@r5E@r@E@AE @s6EE]@)EE@r݋EE 9P܃}t؁X"@"@v"@E@ti"@r05}fEf fEmE]mE܉E@0Ee $@];r&=5|+X"@uX"@1}tCF0N<9X"@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G P!@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W P!@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}<"@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW,@ WY;=L!@r}UWV}tlG t6G t3WVYG PY}"@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG P!@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G P!@+G?}3W P!@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G P!@+G?}3W P!@+W;}WY3UWV}G G u}}&u"@&@GW P!@*h YGt@O G WP!@GGVYtG uO @u}G *@WRP!@UWV}G P!@+G}G P!@Wu};7}7𐐐3ÐU"@EEPhTu } E"@3ø6ÐU WVSE9ET=0"@u<4"@ 0"@0"@ 4"@$"@4"@ "@0"@$"@,"@E@3؋= "@E&;5$"@0"@E@E=w=,"@jY$"@@;t?3Ee ƹ3tL3+‰EEE2$"@+,"@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5,"@$"@0E+E-$"@@;t$"@$"@$"@0"@~Љ "@;5 "@v "@("@ "@ 9=,"@u "@,"@G(= "@95,"@u=,"@7tލ;r;l%;UWV}5 "@%$"@9u5,"@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ("@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$8"@Ru 8"@+D$øT$8"@3øÐ0,NL$0,:L$0+L$0L$0 L$0%Ã%3Ð"@Ð{T$ @@(#)setmode 5.3b of Jan 27, 1988usage: setmode dev_name modes setmode: Cannot open %s setmode: Cannot get ioctl from %s setmode: Can't forksetmode: Cannot set ioctl for %s setmode: Can't forkdup2 errorsttystty/bin/sttysetmode: Can't exec stty./bin/shPATH:/bin:/usr/binshUnknown error: H@P@Z@t@@@@@@@@@@*@<@H@^@j@v@@@@@@@@@@@6@C@Y@h@t@@@@@@@@@5@R@m@|@@@@@@@@@-@>@K@a@v@@@@@@@@@@/@?@M@i@x@@@@@@@@@@ @#@J@o@@@@@@@@!@*@3@<@E@N@W@`@j@t@~@@@@@@@@@@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@@@@@@@7@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF     = M M M M M M M M M d  l d ~g l `  9  -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@*@*@L!@*@d,@3.1bS03.1bS0L!@*@usr/bin/spline100755 3 3 40550 4201131164 10102 37777777777 Ly! 5 I@.text5 .data@@ 6@.bssX!@X!@I.commentXAÐETX!@RU RP P5jÐU`@H9Eu3EEE!@UJ!@"E\A@UJ\A@"]E@!@U!@"E@\A@U\A@"e @U9`@=`@t@@@@@E@E`@@=`@t3pۅp]EE!@UJ!@"]ء`@H9Eu!@%!@%E@!@U!@"]EM@w3ø9Eu@ EMum]9Eu@EH`@E um]EH`@E uݝpuYܥpE`@EMu]EE @]9Eu@ME]`@-9Eu@ME]9EuE EMumUE`@=`@u3`@+ЋE@E;; @U]=`@u3`@+ЉU`@H9Eu3E}t!@%!@%E@!@U!@"]ЋEĉEEE}E!@UJ!@"]؃}t(@ME@]EMEME`@EEME`@]}t EĉEEE9E~uEE 0@]9Eu@ME]`@-9Eu@ME]EH`@]EMu] EEċEE=`@u-}u @M]`@-9Eu @M]}E8@v@@ٽtftf fv٭v۝l٭tlx!@%!@@@ڍxMٽlflf fn٭n۝d٭ldxx DžxEڵx]ȋx|x+|pۅpMu]ۅ|Mu]EMMmMEMMmM]E@\A@MEMM5H@E\A@M]E!@ۅ|M\$hx@O uuh|@< ||}u |M[U`@q=`@t(`@!@`@ @!@`@!@P7Yt0`@\A@PYt`@9`@|U$W H@} hH@YL@L@u E3}ËLjE= t= t= tEu H@} hH@iYL@L@u EUIEU܋ψ 0|9~'=+t=-t=.t=Et =et Eܸ9E|EU EP=YE3UPErE8u/ЍR8M @vE@UR8MExu/ЍR8M @ sE@ UR8ME`@9E|UP(A@3$A@!@!@T@!@P@!@\@!@X@!@d@@A@`@ Ek E-0GEy@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlZ@Dž\?E2ETMDžl]@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhEy@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =|@t3txE@|@h@EPbuEPSjEP |>h~PW =uh~Phx@ 3W YkUjuuuu u#Ujuuuu uU$WVS}\!@E\!@E@s3UtE]\!@E@E@E@r5E@r @E@AE(@s6EE]@)EE0@r݋EE 9P܃}t؁\!@!@v!@E8@tm!@r05}fEf fEmE]mE܉E@0Ee @@];r&=5|+\!@u\!@1}tCF0N<9\!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G l @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W l @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}X!@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWH@ WY;=h @r}UWV}tlG t6G t3WVYG PY}8!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l @+G?}3W l @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l @+G?}3W l @+W;}WY3UWV}G G u}}&u`@d@GW l @*h YGt@O G Wl @GGVYtG uO @u}G h@WRl @UWV}G l @+G}G l @Wu};7}7𐐐3ÐU8!@EEPhTu } E8!@3ø62ÐU WVSE9ET=L!@u??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF^jFRviwiaw-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@h@h@h @h@Xj@3.1bS03.1bS0usr/bin/sysconf100755 3 3 40754 4231442750 10313 37777777777 L*" +, @.text+ .data @ @,,@.bss!@!@ .commentAÐET!@RU RP P+jÐkDžTX\`dhlpEPmY=uE 0Yj#+Yt@Tplhh`dX`PpHX@\8=?t=at=ct=ft=nt=pt=rt=vth @u u t=\\tE 0h @h@ jR*Y9E}3DžTXp`dhlTtVDžPDžx xU#tPx 9xrPh @ltEPh @}htuh @ddtuh @K`tAE'h @0Y/h @#Y"h$ @Y=w=|$ @pDžxExt~`xh( @h, @YUxh/ @h3 @Y5xh6 @th: @gY=t=t=tx9xVXt EP&Y @}h@j R @@ j(YUUPWV9| @ueE9 @}#E  @ =-u E Au u}h @E  @4xu  @΋E  @ | @= @:tWu= @tOLjEE E 08YPE 0j ' hd @YPhd @j& jEPj& E  @ | @@| @u @| @?F=:| @@U @t| @@U  @ @ @@ @;E|l= @tOLjEE E 0UYPE 0j'& h@ @:YPh@ @j & jEPj% | @?GE  @ @ @| @8E  @ | @@| @u| @ @ @UWV @@9!@s !@< @uuYtVujC% jh @j2% WIYPWj% jh @j% u}ÐUPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu w E@ t }ËVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø& #ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSqYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}!@E!@E$@s3UtE]!@E,@E4@E|@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁!@."@v."@E@t!@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+!@u!@1}tCF0N<9!@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}!@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð* ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW@ WY;= @r}UWV}tlG t6G t3WVYG PY}!@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG P7 =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u0"@8&@GW  @*h YGt@O G W @GGVYtG uO @u}G @*@WR @UWV}G  @+G}G  @Wu};7}7𐐐z3ÐU!@EEPhTu } E裼!@3ø6&ÐU WVSE9ET=!@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@P*@P*@ @X*@+@3.1bS03.1bS0usr/bin/ssp100755 3 3 17420 4201131201 7405 37777777777 L!  p@.text .datap@p@p@.bss@@ .commentÐET@RU RP PUjÐUPWME @ME }~E =-tE@}h@E 0KEuE 0Yj YME h@P@@׈=@t' @}h@j @ @E} uY EP@ t} @}h@P)@@׈@E} u:Y EP@ =@ @E} uY EP@ tۀ=@u0=@t' @}h@j y@ @}*jK Y}ÐUWV@@9@s @<@uQYtVuj jh@j W%YPWj jh@j u}ÐUWV}uWYG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG PI | GG듸9tO O G tg a ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u#@'@GW @*h!YGt@O G W@GGVYtG uO @u}G +@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$t@@(#)ssp 5.3b of Jan 27, 1988rUnknown error: @@@@(@@@J@d@v@@@@@@@@@@@,@;@K@Z@k@@@@@@@@@ @@/@@@[@n@@@@@@@@ @D@^@g@p@y@@@@@@@@@#@,@@@R@`@x@@@@@@@ @@%@.@A@J@S@f@o@x@@@@@@3@q@@@@@@@@@@@@@@@@"@,@6@@@J@T@^@h@r@|@@@@@@@@@@@@@@@@@&@0@:@D@N@X@b@{@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error(+@(+@@0+@,@3.1bS03.1bS0usr/bin/tapeutil100755 3 3 41064 4266522725 10462 37777777777 L(" +T @.text+ .data @ @T+@.bss$"@$"@ .comment$BÐET$"@RU RP P*jÐU W9EWE E%E=-th @h4@EB=et =rEMEh, @EMEh7 @Yhj)hjz)hjk)uh @(})h^ @0Yj)Y^h> @h4@6JjuW$ }hn @YWz$Yj~)YWk$Y}h @Yj`)YEE8h @)Yj9)Yh @Yh @ YEPYE=1t#=2t1=3uj(Yh @YEMEh @EMEh @Yhj0(hj!(hj(uh @'}h4 @Y,juW# }hD @YW5#YW)#Y}hU @Yh` @YUhg @h4@j'YUPh @Yh$@%Y= @t< @jh @&("@}h @h4@%j'Yj h,"@5("@ ,"@= uÐUWEE=@1h@4Y=uE9E3} @@=@Wj 5@uVEtE+EE)@@=@}3@!@8!@+@;} h@n!Y}MMEEeUWV @,@9"@s "@< @uYtVuj% jh @j% WYPWj% jh @j% u}ÐUPWE E0@u0@t* 0@h$@uuY 0@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uWYG uG tO G Dt1@"u}F @tVY;54!@rGGG tG 8!@+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSqYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  8!@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY@Dž\Dž h~PW =uh~PhD@ 3W YkUjuuuu u#Ujuuuu uU$WVS}8"@E8"@El@s3UtE]8"@Et@E|@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁8"@"@v"@E@tI"@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+8"@u8"@1}tCF0N<98"@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 8!@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 8!@+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}$"@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW@ WY;=4!@r}UWV}tlG t6G t3WVYG PY}"@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 8!@9GGGU= uQWY=E}G %=u7EEjEPG P7 =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 8!@+G?}3W 8!@+W;}W{Y~'SVG P ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 8!@+G?}3W 8!@+W;}WY3UWV}G G u}}&u"@&@GW 8!@*h YGt@O G W8!@GGVYtG uO @u}G *@WR8!@UWV}G 8!@+G}G 8!@Wu};7}7𐐐3ÐU"@EEPhTu } E"@3ø6ÐU WVSE9ET="@u<"@ "@"@ "@ "@"@"@"@ "@"@E@3؋="@E&;5 "@"@E@E=w="@j Y "@@;t?3Ee ƹ3tL3+‰EEE2 "@+"@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5"@ "@0E+E- "@@;t "@ "@ "@"@~Љ"@;5"@v"@"@"@ 9="@u "@"@G(="@95"@u="@7tލ;r;l%;UWV}5"@% "@9u5"@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ"@Nj]u}WV|$ t$L$Njʁ^_øÐT$ "@Ru "@+D$øT$ "@3øvÐ0+NL$0+:L$0+L$0L$0 L$0 Ã"@ÐT$ @@(#)tapeutil RTS 5.3b of Jul 12, 1988/dev/rscttapeutil: bad option - ignored Retension Erase tapeutil: bad option - ignored tape open errortape ioctl errortape errordone. UNIX STREAMING TAPE UTILITY PROGRAM: rev 1.5 Choose: 1 - Retension 2 - Erase 3 - Quit Command: Retensioning tape Erasing tape Please answer 1 - 3. tape open errortape ioctl errortape errordone. Streaming tape operation aborted. Insert tape cartridge, press RETURN /dev/ttytapeutil: can't open /dev/tty Unknown error: 0@8@B@\@l@@@@@@@@@@$@0@F@R@^@p@@@@@@@@@@@+@A@P@\@s@@@@@@@@@:@U@d@@@@@@@@@@&@3@I@^@g@p@@@@@@@@@'@5@Q@`@i@r@@@@@@@@@ @2@W@w@@@@@@@ @@@$@-@6@?@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF * LI   6 y   )7 Q )  ! u 7 -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@*@*@4!@*@0,@3.1bS03.1bS04!@*@usr/bin/ua100700 0 3 254710 4243134350 7233 37777777777 L" p070"@@.textp .data@@@@07@ @.bssp7@p7@0".commentXpWÐETp7@RU RP# P%jÐUE@=~huhd@fE E U4EPhx@ fEE;E| p3@}hp3@j t3@ t3@fEE U M@=~E U4EPh@z E=-7"E=?t=Bth=ht =qh4@h@,h|@h@h@h@h@Y `3@}Oh`3@YPf@ExEUJ;E fUfBfUҋ IMd3@d3@E= t E= uIjYE U4h@WEE@E8ufE@E8fEE;Ep}tjY@k U-0f@E@E0@uMU@=~uh@GE=!u3UP@=~uh@qGEUfE EU @;uEfEEH@;|ѸUEu uf@f~m@Ph@fE E U4EPh @ fEE;E| p3@}hp3@j t3@ t3@f@f~ h@Y p3@}hp3@j t3@ t3@@=~kh5@KYfE"p7@U4EPh@@' fEp7@U<u p3@}hp3@j Ft3@ t3@f@f~jYhI@Y@uHhN@YjY@PUf@f~uh@}E\9EtDF9Et:Hh@bYh@WYqHf=@ujDYj{Yh@8YhdjKjYh@kYPYEVf@f~@Ph@D@=~5@h@Df@f~ @=@t2=@tj&Y=`@@=t`@@@E@@EPuh+@ @P@- 4@Jjjj E5@=ujjh4@ Ejjj Ef@f~uh=@C@=~u YPhL@jC`@u YE=uha@YPRYuYfEf|EP0YEqu@=~uh@BE=!u3YtuY`@uwEYhi@YPYE}j>YUEt7@f@f~ hx@gYf@f~5\(@h@KfEhEPafEE=|jjFjj:jj.h@q Yt6h@b YPh<@ <@u&h@h<@ h@h<@ Eh@ Y8@=8@Ev58@h@b `3@} h`3@Yd3@d3@E=Nt%=Yt=nt=yuEEEE}t}gDžph@Yh`3@ YuP Yh@uPAujYh@ YEh@EP }tuEP j/uPj/EPh@EPuPEPh@EP lu.uPh @h=@YDžhl@ YDžppuPhb@h?@ h?@hj@hv@Yh?@Y}hx@Y8@h}@YEh@YE}th@uu33@f@f~u5@58@h@h@EP"}tuEP j/8@Pj/EPh@EP58@EPih@EP4u58@h@}j Yu?Ah@h@Uh@HYhZ@=Yt@jn Yj Yt @IEFEAh@Yj* Yh@58@nu3@@=~5@58@h@ =@t @@=~jvY=@th@^Yf@f~jOYfEj2G YU"@fEE=|4"@fEj  YU@fEE=|h@h @Ruj~ Yh@hp@4uj` Y?@-@EL@L@0Yf@'E0YfE@;~ fEf@EE8u@=~@Ph@2@?@+Bf@@=~@Ph@E@@0GYf@'E04YfE@;~ fEf@EE8u@=~@Ph$@@?@+Bf@@=~@Ph>@FuhTj  =t7@@7@@@=~@P@PhJ@ ÍEhhP9h|Ujhh@x =u3øUh@YU @=~uhd@\:@=~u hv@>:h@uEuJ=uh@:3h@u EuN=u h@93uujP;Et<u h@93uhjPEuYuY]UhE@f@f~h @h@C9f@f~EPh@&9f@f~EPh@ 9h@uEu<uh@8jYfESE U4'YUM ʋJU EME= uE U9EsfEE U<ufE`@pEPfEfEU;t}@pYt7@pYt%h@EP@pEP@p ppp pEP@0h@u$E=@p Yt;@pYt)h@E p@@pE p*EPh@E p EPh @E p  E pppuup0h#@u!$ E=U@E=uUEPh9@E p EPh<@E p E pppuup0h?@u${uYh @uujYuYUPE@=~UjhU@,6DE = t1}tuj,賽EE 0hh@u E E 8th^@0ruuj iUEk@f@f~hp@hv@5f@f~EPh@u5f@f~EPh@X5蟽h@uEu]8uh@%5jYfExE U4vYUM ʋJU EME= uE U9Es@=~E U4h@4fEh@E U4)i@=~E U4h@Y4fE@=~@0h@,4fEfEU;t2@pp0h@u@p uWE=uCEPh@E p uE 0h@uE @PuJ E=轼@0E=u^f@f~E 0h@V3EPh @E p uE 0h @uBE @Pu菻urYhp@uwujYu?YUhdj <>:F;:f@f~uh@25f@@j h@Uf@f~uh&@S2jYU@=~uh5@(2@=~5@hA@2=@t>j?@HP5?@| 5?@xY5?@D|Y@;uYUf@f~uhV@1=@t h_@Y9t@t h@Yhd@Yu8YÐU}5?@`9Yhp@Y?@+ЋPj5?@.{ 5?@|9Yhp@5?@95?@E9Yh@NY?@+BPj5?@z =th@5?@8=@t,jj5?@z =th@5?@85?@zY@UP@@HfE%jEP5?@Dz 5?@>wYfEE@R;~U}uu 5?@z 5?@vY5?@BzY5?@68Yuu 5?@y =tu5?@75?@7Yh@5?@75?@#;Y@5?@;Y@5?@yYuu 5?@My UP5?@xYE= t E= uU@E@E uu5?@x 5?@uYuuu E7@7@9Eu 9E 9EuE0@ D@9E4@9E$u5?@Op5?@xYEUE=7@} E0@u0E0@uE0@u?9E@E5?@~9Y@5?@x9Y@f@f~h7@h@-@=~L5@h@q-5@h@^-5@h@K-5@h @8-7@ø9Et @9EuI7@9Ev?M9Euuuu h@5?@45?@LwY;9E9Et @9Eu8uu5?@v 5?@sY7@7@7@C9E5?@8YE5?@8YEjjjj9KE}uh@h3@:jYu5?@35?@4Y5?@cvY5?@u3u4Yuu5?@u 5?@)vYf@f~uh5@+5?@tYE= t 9Ef@f~h7@hB@V+f@f~uhP@;+7@9EuA}tE= t'= tf@f~ h]@+Y@@EHE0@uE@f@fh7@hs@*sU@=~L5@h@*5@h@t*5@h@a*5@h@N*@=tBE =}7@=~@Ph@*@@@@5@5@5?@s 5?@pY@HP5@5?@s =tu5?@1j 5?@k5?@sY5?@65Y@5?@05Y@ÐU$Ef@f~.EEU4h @-)EEU<uUEf@f~uh @(f@f~E0h @5p7@uE0 E+uh @(Eh @YjoY@f@f~uh> @q(jjEPYhdjf@f~uhO @1(f@f~uh` @(9Eu/+jhm @'3UPf@f~uh @'@u,Y= P8@@P8@@E@@5?@/Y5?@qY8H7/"/I5P8@YEV////j?@HPh @- j?@HP5?@/q 5?@)nY5?@qqYf@f~uh @&UEf@f~EPh @&@=~5@h @&@=~5@h @s&Ef@fUff~EPE4@E=$ @@@@f@@@@@tf@@@@@EZ2&@@f@@@@@fEf@f@fE4@h @ %@- |3=w,|($@j Y_@=t:@=t,'jh" @$'jhP @t$@@f@@@@@@- |*=w#|$@!"j_Yf@@@@@~@=t@= &EPh @r#f@@@@@E]&EUuYt| @áx @UP}t5EEU0@u3EEU uԸUPE@=~jh @"G^ߪj5@5?@l h @h @h @h @h @h @E@E@;@~Wjh @#j5@5?@2l hM @hC @h= @h3 @h/ @h @XDEj@EP5?@k @p 謩Y@t@@ @@@p p5@0phS @Cر@^UP@=~jhp @?!jjj E=t4u2Y@u$ulYt$uhz @ @p 趨Y@t@@ @@@0h @j@@P_8@ph @j@@P?85@h @j@@P!8@p h @j@@P8@pYPh @j@@P7@ph @j@@P7@ph @j@@ P7@p h @j@@ Pz7虯U E@=~jh @n谧j5@5?@gi hJ @h? @h; @h) @ACfE@P UfEEE8uE@U;@|@EE@E@;@~MjhR @^j5@5?@h h @h @h~ @hl @@Ej@EP5?@h @0ph @@ @P UfEJfEfEf=~&fEjE@E@R5?@!h EE0h @W@E8u@PUfEE=uE4"@sYEE"@U}t6uE48"@E@aPh @j@@UP(5,uE48"@h @j@@UP4fEE<8"@S}th @j@@U@P4 5?@UgYU}t5uh @j@@P4 h @j@@Pp4 5@h @j@@PR45@h @j@@P44h@j@@P4 E@fEfEcE= tPfEf@fEf=~.fEj%@@fUfBfUP5?@f E0h)@<>Eh@E0bu}tch/@j@@U@Pg3 hF@j@@U@PF3 h\@j@@U@P%3 5?@eYUE@=~jh@֪W}tgjjj E=tJuPYu =@u6uY@u$u(Ytuh@á@0 P@=~ Ph@d P2!YfE@=~@0h@1@p Y@t@@ @@@0h@5"@= @ph@5"@" 5@h@5"@ @p h@5 "@ @ph@5$"@ @ph@5("@ @ph@5,"@ @p h@50"@ hjui j juR j(ju> uthju# j(ju  DuYujmYPh@$"@j ju 0}tLE=guA}t;u5,"@h^@EPEPY}hg@!YjY}t+E=et uh@E-a4"@E E=c`uY@t @ph@5 "@ .uh@h@裟Y@@ph@5 "@ jh@Wh@h@5"@蚿 f@@@@@jjE-a48"@ E=hju# jju  EPh@uv uh@E-a4"@ھ E=duPY@t@0h@5"@蟾 h@h@5"@肾 f@@@@@Ejf@@@@@r=t@=ba3=eth*=dK=htR =gtI =qDEPh@O=ft=ct=at{f@@@@@jjE-a48"@ Ef@f~uh@}u @EE=tgE-a=$ @jY}u0jYR՜jh"@EP f@@@@@jjh@ EPbYnEEUHE@=~jh$@kjjj E=tLhju t6j ju uzY@touh.@7uEPe@=~EPhR@h]@!Y@hf@5"@ho@5"@hr@5"@hx@5 "@hz@5$"@h{@5("@h@5,"@h@50"@jh"@j @p Y@t@0h@ h@h@5"@_ @p h@5 "@D h@5$"@@p5,"@@p 50"@iE@U9P~`9P}PU١@uՋE@Ph@5"@费 EP5"@EP5("@t5,"@P_EPPh@5,"@]jh"@j EP Y@uEPh@jxYEPh@jdYEPh@5"@g EPh@5 "@P 5,"@P@=~uh@F@=~uh@(@=~Ph@@=~5,"@h@5,"@Y=tQ=;5,"@h@EEPqYfEjh"@EP 5,"@h@P起 f@@@@@jjP E=umYE=y5,"@4Y@=~jhp@,"@ @h @BYE@=~uh@}Cuu5,"@h@tuu5,"@ k5"@h<@05"@YfE@=~EPhY@jh"@EP U<@=~jh@ 耝jjj E=t4u軚Y@u$uYtuh@k u(P@pP@=~(Ph@ (PYfEh@(P蜵th@(P脵u(Ph@ Yh6@(PSth:@(P;u(PhA@ h[@(P th_@(Pu(Phd@7 h~@(Pth@(P詴u(Ph@ ~P(Ph@EP%f@@@@@jjEP EPYtZE=yuMPh@Z  @h @YE@=~&uh@# Ph@ jh"@EP (Ph @ uU@=~jh@ jjj E=t4u角Y@u$uYt uh%@g @0hA@j@@P"@phR@j@@P!hc@j@@P! @P UEfENfEf@fEf=~(fEj%@@UBUP5?@S EE0hq@,E8u(UE@=~jhw@b 詑}@=~5@h@0 jjj E=tJu}Yu =@u6u Y@u$uUYt uh@á@0EP@=~EPh@EPYfE@=~@0h@g@05@@ph@5@蒰 fE@P U#EE0fEfE4@@E8uh@E4@ @=~,EE4@h@EE9E~Jhju $j ju u5@f@@@@@jjh@ E=hjuR jju; EPh@u襝 uh @5@ f@@@@@jjh@n E=uYhju j ju E@1E0u谮u, E0h%@Eh@E0}uhI@E0g$uEE0hS@E0f@@@@@jjh]@L E=uYE@"E0u跭u E Ehr@E0蓭uh|@E0}:uh@ f@@@@@Ef@@@@@hEPh@.=t=at.=b=cR=di=q7f@@@@@jjh@ E=9jY}u+-jYjh@EP f@@@@@jjh@ EPYsEEUl@=~jh@jjj E=tLhju t6j ju u薊Y@tuh@cuEP@=~EPh@3zE@U9P~`9P}PU5@uՋE@Ph@5@= u5@h@5@jh@j EP踉Y@uEPh @j4YEPh,@kjYUl@=~jhB@;肉jjj# E=t4u%Y@u$uoYtuhM@uEP@=~EPhi@EPYfEEP5@ht@5@jh@EP EPh~@]sUuh@E E Ph@?E 8u p3@}hp3@j iát3@t3@ U=@u7u u p3@}hp3@j &át3@t3@ j?@-P5?@I 5?@FYu uj?@-PQ5?@IYjwYj?@-P5?@jI 5?@dFY5?@IY`U=@uu u#j?@-P5?@I 5?@FYu uj?@-P5?@=IYj?@-P5?@H 5?@EY5?@IYsU=@u3 p3@}hp3@j t3@ t3@EL@fEEL@2E0h@@PfEfE@REE8u5?@iHYjh@fEE@2E0h@@PfEfE@RvEE8u5?@HYËE0h@肐EE8uh@iYE@E0h@PEE8uUjh@3@PD uh@ j?@-P5?@ G 5?@DY5?@OGYUjh@3@P UPET8@@=~uh@uu<t!@=~jh@d3@=~CX8@Ph @=X8@@tjh@ jh.@X8@@tU@=~@uhD@u hN@uhX@uhc@hn@u((u)jh@3@P uhp@Luh@:uEPjh@EPEPYUЉUu ,P5h@,P豨,PFY,ЉUfEF(jj@=~Ph@fEE=|f@=~Ph@<PuiPuWj,Pbt,PEPpuu,Pn (jj2O(Y^UPuYE;E~5jh@3@P EUuh@d3ËE 9E}+jh@3@Ph uh@13˸UPfEq@=@t>@=~@0h@@0usu EøfEUPfEׁ@=@t>@=~@0h$@u@0uu EøfEUjYÐUj*YÐUjYÐUj YÐUju u@ ÐUju ux< ÐUE@uYÐUjjuA u>YÐUju=ÐUhu=ÐU`(@=t;`(@ffƀƀƀǀ&3ÐUPWV}fG8f~ u}ÃtGfWfPwY@uGkG@E EfH8P@U}u=,@@t weYwD\YwSYWLY3놋GD4<Y=,@@t G4'YN말U=(@@t(@@%=u3U(@@%=uá`(@tj2Y(@@%thHlj`(@;2 j?@@HP?@@P?@PJ(@@fxthHlj`(@1 `(@=thHlj`(@ph1 ?@x,t7`(@fPf})xu#hHl?@p,j3 ?@@,(@@@%t+hHlj`(@U1 (@@PP(@@ (@?@@BhHlj`(@1 (@@p(xY3hU`(@BUƀB eE`(@UBEÐUEUE@ÐUP=(@t=(@@t5(@@cY(@@h`3@hp3@jjjj) u'ut(@=t#bjY(@jjEuhujjjEuhuj?@ÐUPWVSE9Eu E9E b(@@%`(@xu9?@x,t.(@@x4u#hHl?@p,j1 ?@@,`(@x u=(@@@%t+hHlj`(@"/ (@@PP}}5`(@xPhHljuupP" P. fEft8@(@@@bE9E(@@@=` `(@xTt]E@9EuTE 9Et}uF`(@x0t;E 9EthHlj`(@p0R. hHlj`(@pT;. E9EuE -9E| E @9E~E 9E}juu  juu  ;]E 9E}juu  Tjuu  =}|"?@@9E}} |?@@9E |juuu uء`(@xXtjjuu`(@xptjjuu9E|(| ||]u}9]29}-9u(hHljuu`(@pP P, A;;juuu u!j;Puu?@fUfPfUf3bUWVS9Eu`(@xX(@@@@3`(@xp(@@@Bء?@@Hu]u}Ã}uju ujV0ЋhHljW+ ju ujVUWVuuu$ uuu o Ƌu}UWVSE 9EB9E}+E(@@@HƋء(@@@^E+E (@@@JƋء(@@@\E(@@@dE}u)9]}E9E}E]u}9]}E9]}3E9E}+hHlju `(@$P* 9]}TE 9E}&hHljV`(@kPs* WhHljV`(@EPM* 1E 9E} `(@xT`(@xthHljW* N3UWVSE 9E(@@@dE 9E}ju u ju u (@@@L=}ju j (@@RLЋ؃}u!;};} Ƌ]u};};});}%hHlju `(@pH=PE) V;}(hHlj`(@p0() ju j6 *E 9E}ju u ju u 3_UWVS`(@xluu]u}á?@PDt8@<`(@fPf|(@@P4t8@3`(@xlth@t E =@@EE=@@U+Ћ3؅~E=@@@@EE(@@@NЉUEEE}u$(@@@`;E}(@@@`!E(@@@`;E}/hHljE +EP`(@P' (@@@%tHhHlj`(@t' (@@PPhHlj`(@@G' KEE`(@xuuE%?@;B,t7`(@xu,tV荥Y@u{YЁ~ft(@VPP@YЋ/FFU /FuVjPg} 9P7@}Vh(@P薤P軤YЋEVuVkjP}c 9P7@tjh(@Ktft(@#ft(@ft(@}t Euh\@@hP躣 Yft(@B9uft(@'|@@WTY9uW7YW'YWYWYWYDž=p(@hĩY`(@tyj賩Yd(@t\j袩Yh(@t?h莩Yl(@PK@9l(@t 5l(@Y5h(@Y5d(@Y5`(@Yft(@}u t(@PY_p(@`(@tF@d(@K@h(@4K@l(@PK@x9s Dž@@u訨Y}t Eju`(@PX `(@ƀd(@h(@l(@`(@ǂ3҉9E uu 觧YuE `(@fU fl5`(@ǀǀ3ffffhjP} Y`(@`(@3f@ы `(@Bƀ`(@ǁj4jP"} `(@nPhT`(@lPئ 3`(@`(@n JHJHJ H fJfHWVQ d(@@5d(@G;sFӁu;s+PjVR| tGh(@h(@@:W6Y;s"} fffu;s#+ùEPjS{ Phju 胥 =t0t&th(@ffPffDžDžh(@ǝYh(@趝Yt&aY~h(@ffPt%\aY~h(@ffl(@l(@?WY;s'} Ëu;s#+ùPjSJz Wѧ `(@%=uK`(@f`(@t&`(@PhT`(@lP貣 3 `(@xtl(@l(@3҉`(@@+`(@P5d(@5`(@' `(@@(`(@R+P5h(@`(@@P `(@l`(@R(+P5l(@`(@@(PΦ `(@Ll(@DžSx(@ ɉ t`(@8(@ p 9|`(@4h(@@=u`(@xu fPf| h(@f@DžT(@<t04zu`(@8(@ 9r`(@ǀDž(@ ɉ tM~04zt39u@4`(@yu`(@8(@!9G`(@`(@J\tJhxJx|3UEǀǀ3ffffhjPv U`(@t&`(@PhT`(@lP5 3U`(@nPhT`(@lP 3ÐUh)@h3@eh\@@t(@4(@h3@d h*@h3@dÐU`(@UǀÐUWVSDžl}x8@Dž`E \EX`(@} x:@%:uGDž ӈGht%=t = `t`(@@TDžh|`(@@lT`t6Tt-`(@@H9h}`(@xtthPtTTt&`(@@P9EuThx:@|hFhlpll TQYplAlb\XQG-1=wo$l*@plBl\ plBlX plBlM plBlM plBlM jplBlM OplBlM$ 4plBlM( plBlM, 1u3` =a|1=z'pll EGa =A=ZpllfGafJ=a|2=z(EGa plBl K=A==Z/GaPplAlplBlG G='DžhDžd=-uDždG=+Gpllpll hplBlhˉ @pllpll hplBlh+ˉ pllpll hplBlhˉ pllpll hplAlIpllpll hplAlpllpll hplBlh#ˉ pllpll hplBlh ˉ Spllpll hplBlh3ˉ pllpll h9hpllpll h9h{pllpll h9h|Apllpll hhtA3plAlpllpll hh뜍pl<u3pl}plЍpl[pll<uCjeW4j;W%- \=^QI$*@Gu'hx:@V踏x8@Ã%t Fӈpl hG|- |=w |$*@Džt u΋=Xt =dt=ot=st =xӈsuhPVm hPVm F>ulkh -0hG؃0|9~܃}t3plBldh UWVS}35%u0GU ;t;uu Nj]u}À?uF;uNGu3ܐUWVS}3EE`(@@,9:@t`(@9:@uE0@t!k G-00@uk =.u:G0@t -0G0@uEG=/u E=*tۃ}tu =>u#Gt`(@xt"}uNj]u}ËCPUYuV2UW}t>=:@1=$uG=<uuu W GPUY?u3}ÐUjuo?@@,9EuTJjYU`(@}Ã}}E`(@U9tL}~} uAYu`(@UuuY`(@U3둃}}UPjj`(@WU E}}!euj`(@/U ÁMU`(@f}~Eƀc9E~E@cd`(@`(@ƀQá`(@ƀƀƀݐUWV`(@|W2YumYt jVR`(@Nju}ÐU WVS}u ]`(@4h(@@E`(@;u`(@9uE`(@׉UuEU‹`(@#Et#EU‹U!EU EE|^E}~EE2EU‹U#8(@tE8(@ EMt E 9E|čEUM EMC}u;tz`(@4twSj%P%P%@P% P%P%P%P%P%P`(@4(P E]ԋu؋}á`(@xu fPf|3#DžE#3ƅEEu`(@U#9UtSj`(@ 3LE.EU#8(@tSj`(@U4i E9E|ȋ#%3#DžEtYEFEU#8(@t4Sj`(@LU4 E8(@ЋU#Ѕ҉Ut E 9E|`(@fPf~Sjp` `(@UWVS}u uVPl ؃uÍPW ڐU WVS}u GE%E%EEGEE== tu= t}E= |E=GE3GGE= uZE EÙ=@@@@+‹ЉUG;GEWJYK}3ۋfGO gE ^PW =tE5@ EPW=uEGEEGEG uG0% G, EGDU ;4t^GP;} Gf PG UP;~ G f PGDU 4=,@@tG % ց fYCG;u=G&9Eu-jWS%=uEG;uKEE3EfEffGtW%Y9EuVW@@]ԋu؋}ÀO 9Eu W YދEuW=C;]|U$WVS}u GHEEGEGDEGEGEE3GG}E E9EGUP9E} GfMf PG UP9E~ G fMf P uG0% G,؋EU E=,@@t*GE M܋% Ӂ ‹U܋MfJE/fEfGSWY=u E%EGEFtEM fEfGO EGtW#YEGtW^Y]Ћuԋ}ËEUEU P,ÐUEЋM J0сP,UWVS}EGE;=?@tGG3GGG$9E| G&9EGHffG W]Yf;EfEfGWCY;=?@u 3]u}ËÈGtW"YO ƈGt W\Y3ɐUWVS}GGE+Pw0WDЍR[0 =,@@tSVE+PjW,@@;=?@?@Pr;|?@PfEfr?@P r;|'?@Pr;~C?@J fqu3(@@J(@@x4P4E?@E?@t3EEù@EZGp;~ GfpG UJfpO tWy!YGtWY]u}3EUEE9E|ùEÙ҉UuEEM E9E|3뙐UPWV}E(@@%t`(@ueEw4YG tG uW%Y`(@f@fu1l(@\t#hHlj\ (@@p(`YG(%tG(%@3P/.Y(@@%t!}|G u VW2 u(@@%u }tƋu}ÐUWVS}u ]||G;}G;|]u}ËfGfO Gt W Y3ҐU$WVS?@9Eu3E}t)?@xt}t ?@@3]Ћuԋ}Ã}u@@9Et u4YfEE9EtH=u ;u@@@@E@@@E:@9Eu :@9Et2uu:@P:@P[fEf:@fEf:@?@@@@P(P(P(`(@ƀ@@f:@fP:f@Y:@=:@t :@3:@=:@u@@PD]u}E:@@@PD4@E@@EEE%;Et}%= uF% R}~$C%= u% C(E9E|9}uE% E%EE:@9EZ:@:@Ѓڃ}uu:@H;uCCt:}t %:@H;u}t C%C;}u#:@9E| :@HE@@fB:@hUHWVS@@PEB=u3Eϡ?@P EBEԡ?@PEBEЀ}u"@@P EB=u :@9E}`(@fPf@@PDE]u}uIY?@PDE4}u`(@fPf|E:@A@@PEBE@@P EB=u :@@@P EB@E}ENj؋EЉUËUE9u EE9E|E9E ЃڋEЃUÃUm9u ME9E`(@x@teE9E}]@@P EB=u EHEHENj 9uME9E}(@@@RU;U| :@E=:@:@9E} E@Er:@E܍ЃuM܃E9EE܉E:@9E|Mܡ`(@fPf~:@H9Eu:@H9EuM܀}(@@@%u(@@@%@@@(%E9EE9E|:@+E==:@u E:@HEЋLuLEE:@U EEEʸU#uME9E}:@-9E| :@EE9E}9E| :@E:@9Et(@@@%u E$:@9Eu :@E E@U+ЉU؋EE3EΈE}u%9uEE9E|E9E}=:@l(@4E9E9EE 9uEE9E|MEτt3EЋU+С(@@@T;uu:@P:@PhHljl(@4 fEf:@fEf:@E+EEPWV{ EEEEE:@;Eu :@;Etuu:@P:@P@fEf:@fEf:@fEȋEĀ}u E9EV=:@t?@UāP,E9EhHlj`(@p@ ?@fUfPfUf5?@,Y=:@}FhHlF%Pjr ?@@,juu E9E~EEPu؋E+EPVWEt&E)E؋EEEO(@@@%t+hHlj`(@ (@@PPE%?@;B,T=:@}EEܹE:@U EEEܹʸU#uuuu??@PDE E܋%Eġ?@P,UhHlEPu ?@UĉP,juuR uuuuӱ?@UP,hHl?@p,E%P ?@UȁP,=:@t4Vuu `(@fPf~hHljpl* :@H9EuumY`(@xt3xt-E%=_uj {YuuE@Pu`(@xtE%=~u`EP:YƋUȉEf:@E9EE9E}2E?@PDE4 9uE:@9E|?@PEfMf B:@9Eu?@P EfBW:@HE?@U@D‹U 9u M}}?@P EfMf B?@PEB:@;}3(@@JU@UWVS(@@@%E%= tEPEPuu uE~7`(@t (@@@X (@@@>E(@@R:ЉUE>E9E(@@%(@@@%tI(@@@%hHlj`(@z (@@PPW(@@@%t+hHlj`(@5 (@@PPhHlj`(@ `(@t&hHljuP B36(@@@%7E %= "EE;E}EEEEPuuuu iE3Uи 9t3C;]|(@@@E E:@U EEE ʸU#u"E ׉E E:@9E |}UPW:@H:@:@J;7(@@@%t`?@PD:@ GUGP:@P:@P:@Pf`(@xtE%=~u `}ËEP蘼YGP:@PW:@P(@@%tC(@@@%u1hHlj`(@ (@@PP`(@thHljk D`(@t6(@@%u%hHljj`(@P% E%?@;B,t/hHl?@p,E%P+ ?@UP,`(@xtE%=~u`EPQY=:@tDEu Et2hHlE%PE%P ?@UP,f:@?@PD:@ E8`(@xtE%=~u`EP贺Y?@PD:@ E`(@xtxtj 胺Yj {Yf:@f:@U WVSE@;E |E ]u}ËE Hء@@]PU]P U?@]PU{E=taE:@;|E:@;|=@@PD<:@Ћ 9u;r;uEfKmmm;]}C4UWV@@UUP?@UUP&:@;| =tf>EE 9E|ҋE@;E }?@U UPu}:@;|E :@9E |}u?hHl:@P`(@p<% f:@f:@5?@؟`(@xDu{x qju:@P:@PfEf:@f:@hHl:@+EP`(@xDt@D:@+EP`(@bPj ?@fUf5?@KYj:@Pu5@@UWVS}G(%t G t]u}GEGE3GGGG$;|G&; fG$ffE PWfGfEGtW YEGt WYs3lU$WVS}G@EGt<EEEEE;E~ EfUfE;E} EfUfEEEE9E|}NjP@U܃}A]Ћuԋ}UWV}W<fGW:fFw@u݋u}ÐUWVSE@E9E |]u}Ã} }E E E;E~ E+E EEU UPU UP }tH 3@HE;>EE` &9Et =t ffEfEMи9EuExt uY9EuExtuhY3UP`(@tsB= te`(@|WBFjEP`(@\ ~0`(@`(@BBfMf P3U,WVS}u E +E@EFDEGDEG0E܋E$+E@E;=?@uFE}(t ~,u 9F0t3EEu E؍EEEEE}tREUЋEEEUЋEE]ظ9ETuEUЋEREUЋERe FUP9E} FfMf PF UP9E$~ F fM$f PEEEM=,@@t uuE$+E@PE +E@PV,@@N ~tVYFtVY]ȋű}3EU9t 9uF0E% F,UEEK#E 9uF0E% F,UEEKUh,@h3@&h8@@'@4 ,@h3@% h,@h3@%ÐUPWVS}d(@xu}`(@%E}~ 9Er]u}ËEE,@`(@t 3ۋǙSU YO3먐UEx$t p$YExt pYExt pԘYExt p˜YEx0tP0:t2詘YEp0ubYEx4tP4:t2\bYEp4PbYExt p>bYu5bYÐUW}u }WY| ^YtF@u"p(@@@9tEaY7aYaYaYaYWaY3wU5@@>YÐU WVSh^Y`(@Huft(@]u}hj+W/ ],@],@Kl(@Ht$FEFEEU>uމ=0@@=,@@tUh^Y`(@DEU3E  fXC|ًE4@@3)UWVS(@@@85l(@3ۡ`(@@E`(@@j}u$ -@hwuu -@ڃEj`(@}u$ -@hwuu` -@ڃE3f`(@j}u$ -@hwuu -@ڃEj`(@}u$ -@hwuu -@ڃE3f jCE,@4}u$ -@hwuuZ -@ڃjj CE,@4#P}u$ -@hwuu -@ڃf|jj j`(@pPͻ P}u$ -@hwuu -@ڃfjj`(@${P}u$ -@hwuua -@ڃ׃f`(@UP]u}U -@U}u -@hwu u -@ڐU(WVS}u jHZYtlPvZYCDtP=,@@tPjnCt%}EP8ZYCu/s\YsD\YS\Yf'@3]̋uЋ}Í}CC 3fCffCfCfEfCfEfC (@@@EEu$(@@@?@;|;5?@|3CC(EC(EC(EC(E3CCEME% ЉEEME% ЉEEME% ЉEEME% ЉECC(% C(3fC$fC8GfC&C0 fCS}u=t;E}EE}u=t;E~EEE9E=t E=u Ef8EUU;~ EUUfEUU;} EUUfEEԋ@@R:;}@@UUfP:EEԋ@@R<;~@@UUfPfEUUEU‹U؍‰EE+E@PuuP EEEEEEEE9Ep@@H g 3]u}ÐU(WVS}GtZE+EE}EE+EE;E~EE܋E9E$}|;E~fEf;E}fEfEEEE9E|O E@<EE@:EE؋P@U؃}]̋uЋ}ÐUPWVEEE7F@9uV7NYEMEt$NYEt MYu\Yu}U} tE@@@@ËE@U WVS}EGUGЋGHW ‹؋E %EE %E?@@ uhG u]uW?@xuL@@@ u<(@@@?@J;&?@H;(@@x0t'P0H=uO WY]u}X@@GUfP>G fP?@;u ?@@;t'SV?@@P?@P~?@f?@SfP(@@P 9E t-@h(-@.98-@u358-@YUWuhh;@_ =?@WQY=?@WBY=:j EPW6 EWf8YPj:W7 9Eu`WY}| `9E~aE"?@t4=:t*j EPW EW8YPj:W7 9Et3}WY}| `9E~aE&?@=.?@=2?@W^Y=6?@WOY=:?@W@Y=?@G?t =,u?tG=*?@?@oUWVS} uEE~,F t!O>(VgY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V 6@+V;}V<Y}u +gEEvÐ>AÐUPWE E|3@u|3@t* |3@hp3@uu |3@ t }ËUPWuY@=@-@t)P5p7@L?E}u@}@-@PH<YE}tٍP5p7@u? Ep7@׃M p7@W p7@U3UWV}3 Wp7@4$t Ƌu}Fp7@<uFUWV}u ==u u}GF;t3WV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W7YjjG P; GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P5: +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P9 ECG t8W5YG t g GGuu G P9 E9Eus3lUPE EPuh`3@d UPEEPu uI UW}EEEljEEWz2YEE2uu EP }ÐUWVS}u Dž@?@D?@ @?@W=~*uDžF DžDžk -0F0@u؃u DžÉ=lt h9uF؅[uPV0@tDžl1@؃nt_=D?@uVctQ[tL@?@} W@ Y GG0@u @?@W^=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf@?@fl9uEEP@?@{EEP@?@dEPWSt'=D?@tu /$Fu 0@td=D?@u@?@} W Y GG0@u @?@W=uD?@y%uF؃%@?@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$D-@EE EE@?@}WyY3]u}ËGG=+t=-t =0t8EM@?@} W(Y GG؃0i9E }9Eo@?@} WY GGEh~PW =uh~Ph0@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}?@E?@E2@s3UtE]?@E2@E2@E3@r5E3@r$3@E 3@AE@3@s6EE]@)EEH3@r݋EE 9P܃}t؁?@?@v?@EP3@t?@r05}fEf fEmE]mE܉E@0Ee X3@];r&=5|+?@u?@1}tCF0N<9?@]Ћuԋ}ËEE0]@EEsEE 9P EEEE(3@MU]vEu}fEf fEm]mE܉EFUR0EMm]E03@E583@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 6@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 6@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}p7@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W6@UW`3@;=6@r3}ÃG uUW`3@ WY;=6@r}UWV}tlG t6G t3WVYG PY}P7@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 6@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 6@+G?}3W 6@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 6@+G?}3W 6@+W;}WY3UWV}G G u}}&uO@T@GW 6@*h!YGt@O G W6@GGVYtG uO @u}G X@WR6@UWV}G 6@+G}G 6@Wu};7}7𐐐*3ÐUP7@EEPhTu } EP7@3ø6ÐÐU WVSE9ET=d7@ustrlen(command) = %d RESET RESET init Def_term from curses/terminfo is %s HOMEHOME//TERMYour terminal type is %s - Correct? (y/n) Enter terminal type: qTERMINFO/usr/lib/terminfo%s%c%c%cr Unknown terminal type: %s. Enter terminal type, or q to quit : TERM=%sSetting %s TERMTERMINFOBSHactiveTERM: termtype=%s underbsh=%d q=%s /usr/lib/terminfo%s%c%c%crUnknown terminal type: %s Sorry, can't create %s, the "ua" lock file. Either you don't have write access to this directory or someone else is currently using "ua". Sorry, this program must be run from a terminal wysetermtype = <%s> iswyse = %d A21/etc/opasswd/etc/ogroupmaximum help length = %d Hind1 = %d maximum help length = %d Hind2 = %d ERASE = %d KILL = %d copy from file %s to file %srCan't open %swCan't create %sWrite error on file %s/tmp/passwdpwupdate (%s)uindex = %dtodo = %dwCan't create %s,%s:%s:%d:%d:%s:%s:%s ,%d%d%s:%s:%d:%d:%s:%s:%s %d%d%s:%s:%d:%d:%s:%s:%s Outmembs (end) %s/tmp/groupgrupdate (%s)gindex = %dtodo = %dwCan't create %s (end) grupdate: %sgrupdate: %sUpdating %s%s:%s:%d:%d%s::%d:adding new group: %s%d%s::%dinterrupt (%d) ...catch (%d) ...scrdie (%d)scrdie. screenup=%ddie (%d)A20sync;sync User Administration Commands: show, add, delete, change, user, Users, group, Groups, help, !, quit!0 mygetstr (%s)Cury = %dCurx = %dLasty = %dLastx = %d Can't clear the screen! char is <%d>mygetstr (%s) C = %dmygetstr returns NULLmygetstr (%s)Lasty = %dLastx = %dCury = %dCurx = %dxeq; posted != IGL ==> %d @ @ @_&&s&i&A'Y'O'H'%''''''''''s%% & & & &'''''''''?&&!'' @ @~@"22"222P2h2P2@@@dofork: %supper pid is %d dofork (%s) before execve INTERNAL ERROR: exec returned: %decho INTERNAL ERROR >INTERNALERRORlower pid is %d status is %x hexnoexec is %dSorry, that program is not available/bin/sh/bin/sh-cxequnix (%s)[Type RETURN to continue]xequnix at end. forkval = %dXEQ (%d) ...XEQ grp = %x (hex)XEQ pw = %x (hex)%sSorry, you must deal with users one at a timeSorry, you must deal with groups one at a timexeq (%d) -- internal errorSUSERS ...%5s %-10s %-10s %-24s %-24sUIDUSER NAMEGROUPDIRECTORYSHELL[Type RETURN to continue]%5s %-10s %-10s %-24s %-24sUIDUSER NAMEGROUPDIRECTORYSHELL%5d %-10s %-10s %-24s %-24sSUSER ...Sorry, user '%s' not foundUser: %-sUser Id: %-dGroup: %-sGroup Id: %-dPassword: %-sFull Name: %-sDirectory: %-sShell: %-sSGROUPS ...%5s %-10s %-10sGIDGROUP NAMEMEMBERS[Type RETURN to continue]%5s %-10s %-10sGIDGROUP NAMEMEMBERS%5d %-10s %-10s%c. %-13s%-25s%-13s%-25sq. (quit -- return to top level)a.b.Group: %-10sGroup Id: %-10sMembers: (end) %-10sc. (add a new member)d. (delete a member)q. (quit -- return to top level)CUSER ...Sorry, user '%s' not foundUname = %safter search, pw_name = %s%-13s%-13d%-13s%-13d%-13s%-13s%-13s%-13sWhich field?acts. cmd=|%s|The only valid value for passwd is -- giving it a value of %smv %s %sInternal error trying to mv login directory%-13s%-13dnonexistent group %s other%-13duser added to group other%sother%d%-13d%-13s%-13sSorry, %c is not a valid choice/bin/mkdirAUSER ...Sorry, user '%s' is already presentUname = %sstandardstandard10other1the standard user/usr/%-13s%-13s%d%d%s%sInternal error adding user %sUpdate new user: %s%d%downer = %dgroup = %dDir = %sPW [6]= %sFile %s already exists. Remove it? (y/n)Sorry, unable to add user %suindex for delete = %dUnlinked. Now normal NOFILE addauser. forkval = %dDirectory %s already exists, user not added/bin/rm-rfDUSER ...Sorry, user '%s' not foundUname = %sstandardrootIllegal to delete user %ssysdaemonIllegal to delete user %sbinuucpIllegal to delete user %slpadmIllegal to delete user %sDelete %s's home directory (%s) (y/n)Removing directory %sduser. forkval = %dDirectory %s not removedUser %s deletedSGROUP ...Sorry, group '%s' not foundGroup: %-sGroup Id: %-dMembers: %-10sCGROUP ...grp (hex) = %xSorry, group '%s' not foundGname = %safter search, gr_name = %s%-d (end) GR: %sWhich field?Group:Group Id:%d%-9dNew member: (end) Sorry, member %s is already present (end) (end) Delete which member: (end) (end) Sorry, member %s isn't presentSorry, %c is not a valid choiceAGROUP ...Sorry, group '%s' is already presentGname = %s%d (end) Internal error adding group %sUpdate new group: %sDGROUP ...Sorry, group '%s' not foundGname = %s (end) Group %s deleted%s -- %d%s %s %s[Type RETURN to continue]%sSorry, '%s' is not a valid commandfiletype (%s)filetype = NOFILEst_mode = %4xfiletype = DIRECTORYfiletype = NORMALFILEsdir = %sddir = %sowner = %dgroup = %drSorry, can't open file %sInstalling files from %s//file name: %sFILE NAME: %sSorry, your input has been truncated to "%s"Sorry, your input "%s" is too shortlooking at %slooking at %sAltos Computers User Administration - Version 1.2 - Jan 24, 1983Copyright (c) 1982 by Altos Computer Systems, Inc. This program may only be run by "super user"/tmp/ua.lock/etc/passwd/etc/group/etc/newuser #@\"@d"@ i"@ n"@ p"@ t"@y"@"@"@"@"@"@ "@"@"@#@"#@h#@#@#@#@!$@>$@?$@s$@$@$@$@ %@d%@%@%@%@&@&@P&@&@&@&@'@'@U'@V'@'@(unknown)'@'@'@'@'@'@'@'@ RESET quithelp?addshowchangedeleteuserUsersgroupGroups COMMANDSadd user - add a new user/group to the system group -delete user - delete an old user/group from the system group -show user - display a user's/group's attributes group -change user - change a user's/group's attributes group - show Users - show all current usersshow Groups - show all current groups! [ ] - escape to Unix Shell; execute commandshelp - generate this displayquit - return to calling system or Unix Shell ADDITIONAL INFORMATIONOnly the initial letter of any command/modifier may be typed.The name of an user or group must be terminated with a return.The ESCape key backspaces over an entire username or groupname.The CANcel key (CNTRL-x on many terminals) cancels the current operation.DC2 (CNTRL-r on many terminals) will refresh the screen.Interrupt (RUBOUT or DEL) will return to command level.The sequence "!string ..." is passed to a sub-shell for execution./etc/{passwd,group} are copied to /etc/{opasswd,ogroup} during program initialization.User:User Id:Group:Group Id:Password:Full Name:Directory:Shell:(@SVR32Kn,X` %K @(@tF@K@4K@PK@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS(@(@)@N)@g)@)@)@)@/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . ,|--,|-------,|-,|,|-,|,|,|,|,|,|,|,|,|,|}}}} ~&~A~\~w~{ {ƀ s{{{{{{{{{{{{3m˃~{`G|{,Q}}j{b}{X{ 6,@I,@,@I don't know how to deal with your "%s" terminalI need to know a more specific terminal type than "%s"malloc returned NULLSorry, . 5MS7) `*a:f'g#o-q-s_x|~o,<+>.v-^h#i#0#4   liorkp/etc/grouprr/etc/passwdrrNKKKzNzzzzzWzzzzzNzz`??GA>???/bin/shsh-c/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFRRRRRRRzRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR.RRRRRRRRJRR-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@X@X@6@ X@Y@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0usr/bin/tra100755 3 3 37434 4231442764 7423 37777777777 L! p)@ @ @.textp) .data@ @@ @@*@.bss @ @@ .comment ?ÐET @RU RP P%)jÐUE E !@MyME l @f9E~*E =+uE BRYh @ME 29E~VE =-uGE BRUYd @E M9E~E =-uE BqY9Et5!@hp @ j2(Y=d @h @Yj(Yj"YjE 0'}E 0@Yj'Y=l @uhx@jV@!@hx@j=!@9@~Nj5!@j"!@!@5!@h@j& hh@j !@5d @Yd @)h @yUW3EPE=0| E=9~h @Yj'YYk UE-0E8uNj}UE=0| E=9~h @Yj&YÐUWV @ @9@s @< @uYtVuj% jh @j% WYPWj% jh @j% u}ÐUPWE E@u@t* @h @uu= @ t }ËU}u3jYEh0j)%EEE}t6E9Ev)EE&E+EEEEEMuj$h@YuubYljUYE}| uj$} }}}t EEP YEE2Ujh@EøÐ$ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@b^$3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E   @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph,@ 3W YkUjuuuu u#Ujuuuu uU$WVS}(@E(@ET@s3UtE](@E\@Ed@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁(@v@vv@E@t9@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+(@u(@1}tCF0N<9(@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS} @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u!@%@GW  @*h!YGt@O G W @GGVYtG uO @u}G )@WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$@Ru @+D$øT$@3øvÐ0 *NL$0 *:L$0+L$0L$0 L$0 Ã@ÐT$D @@(#)tra 5.3b of Jan 27, 1988}Usage: %s [ - ] [ -interval ] file Unreasonable interval Bad number for interval Unknown error:  @ @* @D @T @l @v @ @ @ @ @ @ @ @ @@.@:@F@X@g@w@@@@@@@@@@)@8@D@[@l@@@@@@@@"@=@L@p@@@@@@@@@@@1@F@O@X@l@~@@@@@@@@@9@H@Q@Z@m@v@@@@@@@@@?@_@@@@@@@@@@ @@@'@0@:@D@N@X@b@l@v@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFZfBNr es  e]  s -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@)@)@@)@L+@3.1bS03.1bS0usr/bin/tset100755 3 3 73350 4253775201 7610 37777777777 L_" [ @.text[ .data@@[@.bss6@6@ .commentPvÐET6@RU RP PZjÐU WVDžh<@hTjU }h@.YjmZYjh(<@h<@  <@%f:<@E 9Eu)E P=-uE PBu 8@7@M0E E 8=-uG 7@=7@M}˃=7@t-t@@@7@P 7@7@=7@u"u=7@uh@cMY7@h@SMY7@=7@u 7@@=8@u(=@u=7@t =7@u j1Y@=7@u5@dY7@=7@u 7@@t:<@P57@7@7@=?u! 8@7@7@u 7@@= 8@h@PlYuY57@PAYuYh @PYuY=<<@~5<<@h@<@j]W <<@hPjaL |4V= uN0t 7@=<@u057@h8@o=<@8@=8@=7@th7@Yu7@Ph:@ tGtPh=@&G-h @P YuY=<<@~5<<@h@<@jU <<@jsVYh'@PS YuY57@P( YuYh-@P YuY=<<@~5<<@h@<@jDU <<@jUYYh@@/Yt ƅƅ7@u=hC@Yu.<@=u hF@Yu t7@7@}t 7@<@u<@7@t<@ <@u <@7@t <@h<@5@h@hI@P h<@5@h@hL@3 h<@5@h@hO@ h<@5@h@hR@ hU@Yu=Tu f <@hX@Yt f%<@f <@f <@f <@f <@jh(<@h<@ uh<@hTj(O Ph[@t @=@=7@Ph^@thjPG =<<@~5<<@h@<@jR <<@Pha@Dt P Yjg)YDž=7@hd@FYtVGY|C-Ћhj@W t=8@tj hn@jR ujh{@jQ =7@u=7@u =8@z=7@td=8@tj h@jQ 57@FYP57@jQ jh@jpQ =8@tRjh@jVQ ?jh@jCQ 57@FYP57@j&Q jh@jQ =7@t7=7@u.57@aFYP57@jP jh@jP =8@h@P:YuY57@PYuYh@PYuY=<<@~5<<@h@<@j+P <<@=7@t/=8@tjh@jO $jh@jO j h@jO 57@)EYP57@jO t@=8@t$jh@jO jh@jzO $jh@jgO jh@jTO =8@tjOYj3<@P<@Ph@j4<@P <@Ph@jOYG=hts=Qtq=Etm=A 8@7@u 7@=^uGt G%7@G7@7@=I7@=dt"/=Sp7@8@o7@@=eV<=rt0=mtV=ku7@8@=^uGt G%7@uE E PEMP /@t @8@@DžDž=puk7@@@7@@uE E PEMPr @x@ @)=su7@8@OWh@v ?]G/@u<tn=!=:tw=<===>tf=@t}=BuG/@u =eu}W Y@BE E PEMPz SGG@HG8@HG)@HGЉGt@@RҁPuE E PEMP @x@@ G/@u=.tqUPWS=7@uQ]E EU;u EU;t1uEEPaYEuYU;uh@ ]}h@EEP&YEuYE= }2h@EEPYEuYE% @E@EWEEPYEuY=<<@~5<<@h@<@j J <<@FUWVu? Y}3EU!u 9>|EV u}Ã>}U1EEP<<@<<@U@<@9<<@rZYEuU<<@<<@U@<@9<<@r(=<<@~5<<@h@<@j0I <<@U=<<@~5<<@h@<@jI <<@UWVjuHh@PGYuYuPYuYh(@PYuY=<<@~5<<@h@<@j;H <<@jHY=<<@~5<<@h@<@j H <<@VPjG hPW< W=CYUWVS]}u F׊ GK]u}UWVS]}u GF;uK;u|]u}3UWV}u GF?t>t ;t;u u}3UWVS}u*@]u}h?@h2@c<E}uA@Ӌ]E8E=/u⿜6@}EE8t/@uEEEE8t/@tuEE8t/@uESVt>hI@WtL@hS@WtV@u<=Yuj2h6@ &u=Y`@UE=|E@Dž>u = t= u38t=|t=:ut EU EE8t=:2aE= tc="='=:t-=\t =^U EE@Dž]hh@ 8uًEhm@ 8uًE^hr@ 8uًEU EE8+RPjJC Ãt'= t= u38t =:uuE@PYMEUUW3&E}D=@;uE@}E=@;t8G;=4@|ҡ4@U ED=@J EE=@4@E@=@u }3UEEU E E 8uEUEEEEEME9E}!E/@uˋE=.tEUE)EPE4@qt E@EE<@uʸUP@\7@EE @R;~idE @R;}NE @R;t:E @R;~&E @R;|E @R;u3E=w |$8@}tA@@á@tju@0$ tE@@맃@ @8uEU}E 0hw@3E E =-uE 0h@ E UuEEPYEuYu EEPYEuYj <<@<<@U@<@9<<@rYh@EEPHYEuY=<<@~5<<@h@<@j? <<@j@YÐUPEPju A |EUPWVS}u ]uu-3]u}=$u G=<tKF׊ Gt?u׋Eǀ?tG=>uUWV}W=nc=bstT=ns=pttsEjuhp"@h@WE,@E9E3u܋}jEP+@p` t=uFtz3jEP+@@ t= uFtF3jEP+@p0 t&= uFu3_+@,u G3@EU1U W}E juh"@h4 @WE,@E9Eu}ËEUPUWV}u Ejuh#@hL @WE,@E9Eu 3u}ËEU Mt>tu6+2uT2Y@EŐUWVS}3EE+@@,96@t+@96@uE/@t!k G-0/@uk =.u:G/@t -0G/@uEG=/u E=*tۃ}tu =>u#Gt+@xt"}uNj]u}ËCPUYuVZUW}t>=6@1=$uG=<uuu W GPUY?u3}ÐUPWVS},@xu}+@%E}~ 9Er]u}ËEE+@+@t 3ۋǙSU YO3먐U+@rt&+@nPhT+@lPG6 3UWVS}G%%؁u tu]u}ËЋU<WVS}uh0,@.YE}t Eu+@EDž}t Eh5,@O.Y>V/Y@u /YЁ~f,@VP.P.YЋ/FFU /FuVt.jP8} 9x6@}Vh>,@P&.PK.YЋEVuV-jP^8}c 9x6@tjhS,@Gtf,@#f,@f,@}t EuhL>@}-hPJ- 3Yf,@B9uf,@'l>@WTY9uW7YW'YWYWYWYDž= ,@h43Y+@tyj#3Y,@t\j3Y,@t?h2Y,@@I@9,@t 5,@~5Y5,@r5Y5,@f5Y5+@Z5Yf,@}u ,@P27Y_ ,@+@dD@,@I@,@$I@,@@I@x9s Dž>@u2Y}t Eju+@Px +@ƀ,@,@,@+@ǂ3҉9E uu 1YuE +@fU fl5+@ǀǀ3ffffhjP Y+@+@3f@ы +@Bƀ+@ǁj4jPN +@nPhT+@lPH0 3+@+@n JHJHJ H fJfHWV3 ,@@5,@G;sFӁu;s+PjV~ tG,@,@@:W6Y;s"} fffu;s#+ùEPjS Phju . =t0t&t,@ffPffDžDžhg,@W'Yhm,@F'Yt&Y~,@ffPt%Y~,@ff,@,@?WY;s'} Ëu;s#+ùPjSv WA1 +@%=uK+@f+@t&+@PhT+@lP"- 3 +@xt,@,@3҉+@@++@P5,@5+@0 +@@(+@R+P5,@+@@Pl0 +@l+@R(+P5,@+@@(P>0 +@L,@DžS,@ ɉ t+@+@ p 9|+@4,@@=u+@xu fPf| ,@f@DžT ,@<t04u+@+@ 9r+@ǀDž$,@ ɉ tM~041t39u@4+@u+@+@!9G+@+@J\tJhxJx|3UEǀǀ3ffffhjP U+@t&+@PhT+@lP) 3U+@nPhT+@lPx) 3ÐUWV3EHmƹE}uEU MJ4uuEU MJ4u E}}EH }~E@;~u}ËE UPUh-@h2@ZhL>@,@4x,@h2@: h-@h2@(ÐUPWVS}E/@uJG/@u=+t =-u EG/@u 3]u}ø0+Ëk 0+G/@uރ}t뾋븐UWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V 5@+V;}V&Y}u +gEEvUPWE E2@u2@t* 2@h2@uua 2@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW$YG uG tO G Dt12@"u}F @tV!Y;55@rGGG tG 5@+GPwG P | GG듸9tO O G tg aW|$D$ L$~% ‹ʁD$_ÐU}u3jYEh2j)EEE}t6E9Ev)EE&E+EEEEEMuj(h6@Yuj(YufYj(YjVYE}| uj(} }}}t EEP!YEE'Ujh6@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_Ð!'ÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐUPWVu\"Yt8EPu|%E%= ujh-@H&} 3u}þfEft EU;uuh-@h6@EPh6@EPh6@|=EU;u1E%= u!t EU;uWl!Y6@\jEPW =TjjW! NuW-!Y3 &&3Ð&3ÐV|$3O|$ ыt$ D$^UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  5@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl/@Dž\9PtP؉PNKPPoYh~PW =uh~Ph/@B 3W# YkUjuuuu u#Ujuuuu uU$WVS} 7@E 7@E1@s3UtE] 7@E1@E1@E82@r5E@2@rL2@EH2@AEh2@s6EE]@)EEp2@r݋EE 9P܃}t؁ 7@Z7@vZ7@Ex2@t7@r05}fEf fEmE]mE܉E@0Ee 2@];r&=5|+ 7@u 7@1}tCF0N<9 7@]Ћuԋ}ËEE0]@EEsEE 9P EEEEP2@MU]vEu}fEf fEm]mE܉EFUR0EMm]EX2@E5`2@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 5@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 5@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}6@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_ÐR ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W5@UW2@;=5@r3}ÃG uUW2@ WY;=5@r}UWV}tlG t6G t3WVYG PY}x6@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 5@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 5@+G?}3W 5@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 5@+G?}3W 5@+W;}WY3UWV}G G u}}&uM@Q@GW 5@*h!YGt@O G W5@GGVYtG uO @u}G U@WR5@UWV}G 5@+G}G 5@Wu};7}7𐐐3ÐUx6@EEPhTu } Ex6@3ø6ÐÐU WVSE9ET=6@u<6@ 6@6@ 6@6@6@|6@6@6@6@E@3؋=|6@E&;56@6@E@E=w=6@j Y6@@;t?3Ee ƹ3tL3+‰EEE26@+6@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή56@6@0E+E-6@@;t6@6@6@6@~Љ|6@;5|6@v|6@6@|6@ 9=6@u |6@6@G(=|6@956@u=6@7tލ;r;l%;UWV}5|6@%6@9u56@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ6@Nj]u}WV|$ t$L$Njʁ^_øÐT$6@Ru 6@+D$øT$6@3øvÐ0[NL$0[:L$0+L$0L$0 L$0 Ãx6@ÐT$@@(#)tset RTS 5.3b of Jun 9, 1988\7@X@Z@]@`@d@h@n@r@v@z@~@ @ @ @ @ @@PB  @ 05075110134134.515020030060012001800240048009600extaextbNot a terminal dialupplugboardBad flag -TERMTERMINFO/usr/lib/terminfounknownunknownTERM = () Cannot open termcap file Type unknown bskbbcbsosbsdCdNdBdFUCLCpcisifSHELLcshset noglob; export TERMCAP TERM; setenv TERM ; TERM=; Terminal type is setenv TERMINFO TERMINFO=; unset noglob; ; EraseKill is set to control-x Cannot open unknown/etc/ttytyperunknownsddialupspplugboardunknown\040\042\047Too few args: Unexpected arg: usage: tset [ - ] [ -hrsIQS ] [ -e[C] ] [ -E[C] ] [ -k[C] ] [-m [ident][test speed]:type] [type]       n ijk    lopmqr&5   %)*./ 024361ABDEFGHIJKCN9;?TPM<>QRU@V87=XLOSY:WZ[]^_`abcd\' fe!"ghwstxvuz{|~}y+#(,$- '@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@'@(@(@(@ (@(@(@(@(@(@(@ (@#(@&(@)(@,(@/(@2(@5(@8(@;(@>(@A(@D(@G(@J(@M(@P(@S(@V(@Y(@\(@_(@b(@e(@h(@k(@n(@q(@t(@w(@z(@}(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@)@)@)@ )@ )@)@)@)@)@)@)@")@%)@()@+)@.)@1)@4)@7)@:)@=)@@)@C)@F)@I)@L)@O)@R)@U)@X)@[)@^)@a)@d)@g)@j)@m)@p)@s)@v)@y)@|)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@)@*@*@*@ *@ *@*@*@*@*@*@*@!*@$*@'*@**@-*@0*@3*@6*@9*@<*@?*@B*@E*@H*@K*@N*@Q*@T*@W*@Z*@]*@`*@c*@f*@i*@l*@o*@r*@u*@x*@{*@~*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@*@+@+@+@ +@+@+@+@+@+@+@ +@#+@&+@)+@,+@/+@2+@5+@8+@;+@>+@A+@D+@G+@J+@M+@P+@S+@V+@Y+@\+@_+@b+@e+@h+@k+@n+@q+@t+@w+@z+@}+@+@+@+@+@+@+@+@+@+@+@+@+@+@+@+@+@+@bwamxbxsxneognhckmhsindadbmimsosesxthzulxonx5iHCNRNPNDcoitlilmsgpbvtwsNllhlwmaMWbtblcrcsctclcecdchCCcmdohovileCMvendllupvsdcdldshdasmbmdtidmmhimmkmpmrsousecaemeteedeiseuevbfffsi1isi3ificalipkbkakCktkDkLkdkMkEkSk0k1k;k2k3k4k5k6k7k8k9khkIkAklkHkNkPkrkFkRkTkukeksl0l1lal2l3l4l5l6l7l8l9mommnwpcDCDLDOICSFALLERISRUPpkplpxpspfporpr1r2r3rfrccvscsfsrsastwitatsuchuiPK1K3K2K4K5pOrPacpnkBSXRXSARAXNXFeALOLF@1@2@3@4@5@6@7@8@9@0%1%2%3%4%5%6%7%8%9%0&1&2&3&4&5&6&7&8&9&0*1*2*3*4*5*6*7*8*9*0#1#2#3#4%a%b%c%d%e%f%g%h%i%j!1!2!3RFF1F2F3F4F5F6F7F8F9FAFBFCFDFEFFFGFHFIFJFKFLFMFNFOFPFQFRFSFTFUFVFWFXFYFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfSCDKRCCWWGHUDIQDTOPUfhPAWAu0u1u2u3u4u5u6u7u8u95MS7)  @(,@dD@I@$I@@I@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS,@,@,@,@-@-@O-@d-@/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . /dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFr82B2B~82BA2B2B2B2B8Z82Bf882B88888888882B2B2B2B2B2B2B2B2B2B2B:2B}?2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B:2B2B2B2B2B2B2B2B2B2BA8:=}?882B2B82B2Bu:2B2B2BA2B*:2B2B:-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@V@V@5@V@W@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS05@V@usr/bin/pcat100755 3 3 37100 4201131300 7524 37777777777 L ! @3 D$@.text@3 .data@@ 4@.bss0@0@D$.comment0>ÐET0@RU RP4 P2jÐUWVS(@'@.@hh(@@P( f@f}Th8@f=@u'f@5@5@h@h@@) uh@@ Y3]u}(@=)@=uh@> Yt3h )@=N @*@('@3%('@ @ @£('@F|֡ @ @%f,'@,'@= @ @%fu0'@F,'@;~پ9(@d'@u0'@(@(@ @  @OcF,'@;~(@(@ @  @,'@fE0'@ @-(@f)@f@f|!3,'@(@9(@lhG@f=@u'f@5@5@h@h@@6 uh@@& Y3u0'@ùfu0'@N}U WVS$@(#@E3f@fh @(@(@P@P$& f@f}Th`@f=@u'f@5@5@h@h@@[ uh@@K Y3]u}f@fHf@f}Kho@f=@u'f@5@5@h@h@@ uh@@ Y3뗡 @ @8ƀtCEE0'@+Ѕ҉UEd'@EE(@9E$@-(#@Vh(#@@P. ;tNh@f=@u'f@5@5@h@h@@$ uh@@ Y3)('@$@$@U ('@9$@u:h$@(#@(#@P@Ph- =K-('@E3EOUWVSEEjj*-=th/ j-jj-=th/ j,jj,=th/ j,E C8u =/tKE ;sE S@=puEf@EE@E @3EE=/u}GM}E@׊҈uԋE@=zu"E@=.u@׃NlEM} +E= ~Lh@f=@u'f@5@5@h@h@@uh@@YE.EEzEEjh@+f@=uLh@f=@u'f@5@5@h@h@@nuh@@^YK}tf@h@5@=tLh@f=@u'f@5@5@h@h@@uh@@Yh@@Pi@=tGh@f=@u'f@5@5@h@h@@uh@@uY@%P5@f@=uLh@f=@u'f@5@5@h@h@@uh@@Y4@@P5@9t@Ph@d@P@P5@ t~M}h@5@e4@h @f=@u'f@5@5@h@h@@=uh@@-Yh@Y}u 5@Yf=@th@h@@@P$Y}u@P$YF;uu)Y]u}Uf=@u'f@5@5@h@h@@}uh@@mUWV$@(#@ @*@f-@('@('@E(@zE1E=uaUEEEUEMu3-fEfEf}3Ћ(@feN<(@uG4(@7Y3 ('@u$@-(#@Ph(#@@P' u}Uf@fh @(@(@P@P f@f}Vh @f=@u'f@5@5@h@h@@uh@@Yjh@>f @ @ @%UWSB;% Nj]}U94@u 5@.Yj&YUW$@$@U('@9$@h$@(#@(#@P@P% }Vh/@f=@u'f@5@5@h@h@@uh@@Yjh@(}ø%3Ð%3Ð%ÐUPWE E<@u<@t* <@h0@uu <@ t }ËUPWEEE@ uE@ t(EH uuu o E@ t }ËD$Xpxh Z`P+␋T$D$;j tZrzj bu@b$3Ðv$3Ð ^$3ÐF$ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  D@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl,@Dž\9PtP؉PNKPPoY@Dž\sEtC0UE}u Et E.EE艅@ E@uEE E -ݝHN%=L%uBHu9O%=u Dž Dž,@CEO%=uDžl@@Dž\L% H ‰PDž(Dž0Dž4Dž<@Dž$@@PDP<9E}E<PLHQ ؃@t-E9D~ =0tDžlB@Dž\ Ek E-0GEQ@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl2@Dž\?E2ETMDžl5@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhEQ@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;hX@YEt Eu =T@t3txEa@T@hg@EPbuEPSjEP |>h~PW =uh~PhP@ 3W YkUjuuuu u#Ujuuuu uU$WVS}4@E4@Ex@s3UtE]4@E@E@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁4@@v@E@tE@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+4@u4@1}tCF0N<94@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G D@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W D@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}0@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;=@@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG D@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G D@+G?}3W D@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G D@+G?}3W D@+W;}WY3UWV}G G u}}&u8@<@GW D@*h YGt@O G WD@GGVYtG uO @u}G @@WRD@UWV}G D@+G}G D@Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐU WVSE9ET=$@u<(@ $@$@ (@@(@@$@@ @E@3؋=@E&;5@$@E@E=w= @jY@@;t?3Ee ƹ3tL3+‰EEE2@+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @@0E+E-@@;t@@@$@~Љ@;5@v@@@ 9= @u @ @G(=@95 @u= @7tލ;r;l%;UWV}5@%@9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$,@Ru ,@+D$øT$,@3øvÐ03NL$03:L$0+L$0L$0 L$0 Ã@ÐT$@@(#)unpack 5.3b of Jan 27, 1988.z: read error.z: not in packed format.z: read error.z: unpacking error: write error: file name too long.z: cannot open: already exists.z: Warning: file has links: cannot createcan't change mode to %o : unpacked %s: %s.z: read error: write error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF>Jli&2VIWqIAW-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@@@@@@@tB@3.1bS03.1bS0@@@@usr/bin/units100755 3 3 37140 4201206036 7754 37777777777 L! (2X Z@.text(2 .data@@X 2@.bssP@P@Z.commentP>ÐETP@RU RP P1jÐU0WV9E~E P=-u ME n@5@9E~E ph@V`&n@uh@ Yj^1Yht j0'=n@th@ YEPQYu3E8U:;uXG |Eu]Ѓ=n@ujE@t\uuh@ @uЃ\$h@h 5=n@u!h@P YEPAYEP7Y h@/ Yn@h@ YEPYUWVS}w7h@ 33VSGP C |tI P@}hP@j/'T@/T@33VSGP= C | P@}hP@j >']u}áT@T@ U}Et' P@}hP@j-&T@-T@E <@t4@h@ E @aPh@9E~4 P@}hP@E@0P&T@T@UR0Ã}}3UWVS}3G0F |1@u@G@EEE"=3t{E=-tr!= ti = t`= tT=1tH =/t?}=2t6t=7t-=5t$ =4tY=6tP=9t G=8u@E;tCEVuWS1 E/uE EE]؋u܋}ËCֈ+UWVS} @E @Ek @E]EHE{Ck (@EuEE:EEEEuMEUE;t܋EuEE8uE@9EvTEHE=suCEuY~t%M}t M?3BM3J3Iuh@]]u}ÍGÍV(C |GÍVC |29E|99Ev3UWV}u Fu u}G;t3UWVS$W@EI}*GGURa*GGuY؋EC@C@CUE 9E|h3@Y؍GC @C@`5E 9EJ}u? 9E1}WGUE} 9Eu3GuHY~uxEFCFE0 9Et 9EuGuY؃{u1SYECEE$@E[uhL@QgCUE9EP}~}tB}u9EuE<@u%@EE 9E|}~EHU@E}u(=n@t{-$W@Puh4@ @T/9E}_CU F E 9E|E떃~tvhI@hVZY$W@r5n@: Yn@@@]u}U$WVS0@E,@E3 t t5}EE <@%4@]tC .uC0|9뿅tK+t-u@E-uE3 k -00|9~}t؋+ءH@ED@E}؋ E L@]Nu}EMEu]|u}]Ћuԋ}É=n@EUWn@tn@Nj}án@}5n@7Yn@P@u$@@9n@uh]@Yj'Y3뫋UWVS3ۋuk9F-0؀>u}؋؋ùY3k@twu<t Nj]u}Ã$W@rп@Uht j&n@ÐUPWE E\@u\@t* \@hP@uu \@ t }ËUWV}uW YG uG tO G Dt1@@"u}F @tVY;5`@rGGG tG d@+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  d@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlL@Dž\9PtP؉PNKPPoYh~PW =uh~Php@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}T@ET@E@s3UtE]T@E@E@E@r5E@r@E@AE @s6EE]@)EE(@r݋EE 9P܃}t؁T@@v@E0@te@r05}fEf fEmE]mE܉E@0Ee 8@];r&=5|+T@uT@1}tCF0N<9T@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G d@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W d@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}P@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3Z ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wd@UW@@;=`@r3}ÃG uUW@@ WY;=`@r}UWV}tlG t6G t3WVYG PY}0@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG d@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G d@+G?}3W d@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G d@+G?}3W d@+W;}WY3UWV}G G u}}&un@r@GW d@*h!YGt@O G Wd@GGVYtG uO @u}G v@WRd@UWV}G d@+G}G d@Wu};7}7𐐐3ÐU0@EEPhTu } E0@3ø6ÐÐU WVSE9ET=D@uu@ư>z@MbP?@{Gz?@?@$@@Y@@Y@@@@@.A@.A@eA@mB@??????H@$@?$@/usr/lib/unittabattofemtopiconanomicromillicentidecidekahectahectokilomegameggigaterarno table you have: you want: * %e / %e conformability underflow or overflow %e %s*%c*cannot recognize %s %d units; %d bytes %sredefinition %s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFr22~22222Z2f2222222222222}22222222222222222222222222}2222u2222*22-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@v@v@`@v@Xx@3.1bS03.1bS0`@v@usr/bin/unpack100755 3 3 37100 4201131300 12370 1usr/bin/pcat37777777777 usr/bin/lpr100755 3 3 62104 4232437072 7417 37777777777 L=j" GT@.textG .dataT@T@TH@.bss4$@4$@.comment4dÐET4$@RU RPk P9GjÐUE{8$@EøE-|"=w|$ @E UE8$@?8$@=:u38$@U ME-|= w |$4 @8$@ 9E9EEE8$@= t%= t'= t=-t"=:u$E`EWENEE8$@Y@t E&8$@Y@t EEE @U M}u 9EtE9Euhu{ 8$@u3mE8$@=#E UAUE=nta=St%{=@tK[=#| @,*@x@t @5t @h@*@y9,*@@p @=NT @=mt2=bX @,*@P@P @vt @,*@xt @x @[h @68Yx @I=rt&=pu@,*@Pt-@d @#\ @=su,*@xt@h @3UD=p @tVh @h @8Et=ujEP tj EP"EPjN)u8:Y=T @u jjE =t @tt @th@*@jP9$*@h @h)@7=p @u p @ @EPj5p @h( @>=S" I(*@(*@,*@j5,*@0}5,*@Y j)5,*@h)@ )@h @5,*@p7Eu"5,*@h @h @hH @EPE@ P=u5,*@h$ @h @hH @g{E%=t*Eةt5,*@hM @h( @hH @-AEPj5,*@u Euo8Y9Et=p @u ,*@p @ $*@UPEh @=z|3ËEh @=A~ } uE ju6YPuuhQ @j3AY3h\ @uYP5Eu&uYPh^ @Pj@Y3chu%EKU(u3EjEPh@ Eu!u h @h @hH @jEPh @ Eu*u h @h @hH @u6YE 9Eu @ 9Et @=Cu  @ @E}uEPh7EP@E=u-E@ tu h @h @hH @EE} uY EP@E=<= @~= @u  @h)@5 @h @uju5Y @<*@ @3 @ @ @u5Yu h@C W=\ @t u Yh@jF>h@jU/5<*@h @EP EPjT 3U0*@}50*@EP50*@P@E} tB00*@}50*@EP50*@P@EE E Eu0*@}50*@j p50*@P@ E9Euh@h @hH @ U EPun YP5}!uh-@h@hH @Ã}uu hH@h1@hH @|3ڋE @ @ @ @ @UP| YEuha@hL@hH @  ËEP 8*@P4*@EE=x @E<$@x @he@EP v5P @hj@EP ]5P @hq@EP D5P @hw@EP +5P @h|@EP =w |$ @EP @5P @jB=l @t5l @jCl3EEU<$@EEEEuۋEƀ<$@h<$@jL'=t @t5x @jM=P @=X @u=P @XP @<$@5P @0YE=~P @@*EUh @h @ @=Xu h @h@Yh @YhH @Yh @Yh @Yh @Yjj-:=th]j:jj :=th]j9jj9=th]j9jj9=th]j9U=p @t p @u h @h @.h @YP|P.h @YP|P@ UWjj>9jj29jj&9jj9=h @h@sYPY@@=@}h @3YhH @@YPOYH @H @=@}h @YP)Yh @YPY @ @=@}h @YPY @ @=@}j8Y}U$E$*@E (*@G,*@@PdYu&,*@@5,*@h@h@hH @  $*@(*@9$*@~(*@@,*@=-tu unEPhx@ YP=u+hx@YPh@h@hH @5 j7Y1tj_Y= @tIh @ @h @h @x}(h @YPh@h@hH @ h @YYPhYh8 @.Y=d @t d @u3d @E܃=p @t p @u5juh@h@h%@h@hH @A &juh@5p @h@h@XU =h @uh)@*Yh @=l @uh/@*Yl @=p @uh5@p*Yp @=t @uh:@W*Yt @hA@G*YuH@ hV@1*Y` @jrE 0EEE=0|E=9Ed @=d @uh]@)Yd @=d @t=p @t =t @=h @t=d @uE=h @t=d @tE=h @u=t @u=p @uEu1YtO=l @u )@l @=p @u )@p @=t @uy9 *@|lt @@*@EEËE4)@5t @t @ *@H9Ethe@5t @t @E *@9E|t @@*@=d @u9Et)@d @d @UDEEEE=Yu=d @t d @u E@Pu?EuEP(5d @EPE@PEPEPu(Uhx@nYh@cYh @XYhH @MYh @BYh @7Yh @,Y=d @t d @u h @UW=| @t 0*@8 @Bjjh @ 0*@u(h @]YPh}@hg@hH @=P @uh@.'YP @=P @t5P @'Y~P @@}Ë=$ @h@h$@sf5P @h@h$@Y L5P @h@h$@? 25P @h@h$@% 5P @h@h$@  P @$@VUEPrY=| @t50*@(YU h@5` @'Eu3Ã=d @t5d @hx @ z @Eh*@h)@u *@=t\tu)@=#Et%=td=us5)@hx @ju\5)@5h @REC5` @h@h@hH @u'Y3(5)@hx @ E}6u'YUPE$@}u3Ã=p @tFp @t;E@EE5p @u Euu E$@믋E몐03Ð 03ÐUWV}t9~u=Ƌu}U=@uh@h@!%@5@ YU=@t5@&Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@$@u35@YUWuhh(%@_ =*)@WQY=.)@WBY=:j EPW~ EW#YPj:Wp# 9Eu`WY}| `9E~aE2)@t4=:t*j EPW EW~#YPj:W# 9Et3}WY}| `9E~aE6)@=>)@=B)@W^Y=F)@WOY=J)@W@Y=.)@G?t =,u?tG=:)@*)@oUWVS} uEE~,F t!O>(VsY=uE9Eu~3]u}N;>}Sj vuSEtE+E؋E)F>}3V L#@+V;}V'Y}u +gEEvÐUWV@@@9)@s )@<@u!YtVujK, jh@j:, W!YPWj', jh@j, u}ÐUPWE ED @uD @t* D @h8 @uu) D @ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W(#YjjG P(' GGg G tg }ÐUPWEEE@ uE@ t(EH uuu G E@ t }ËUWV}uW1%YG uG tO G Dt1( @"u}F @tV2"Y;5H#@rGGG tG L#@+GPwG PI | GG듸9tO O G tg aUWEEEEEE2EEEPuu  ENj}ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐU WVS}uE} tE 8$EY@u5GEEY@uE=+t =-u EGEu309Et "G=xt G=XuEY@tEEY@t E-0#EY@t E-WE-7E;| 3]u}Ãu;09Eu1GY@tG=xt G=Xu EEY@t E-0#EY@t E-WE-7+EGEY@tEEY@t E-0#EY@t E-WE-7E;|} tE 8}tD$Pt$Ð54$@t$ t$  Ð;?'UWVS}3'uYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!&ÐW|$3OъD$ u@_3_øN&3Ð6&3ÐV|$3O|$ ыt$ D$^ø %3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  L#@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl4@Dž\9PtP؉PNKPPoYh~PW =uh~PhX@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}P)@EP)@E@s3UtE]P)@E@E@E@r5E@r@E@AE @s6EE]@)EE @r݋EE 9P܃}t؁P)@)@v)@E @ta)@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+P)@uP)@1}tCF0N<9P)@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G L#@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W L#@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}4$@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ðb ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WL#@UW( @;=H#@r3}ÃG uUW( @ WY;=H#@r}UWV}tlG t6G t3WVYG PY})@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG L#@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G L#@+G?}3W L#@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G L#@+G?}3W L#@+W;}WY3UWV}G G u}}&u@+@H/@GW L#@*h!YGt@O G WL#@GGVYtG uO @u}G P3@WRL#@UWV}G L#@+G}G L#@Wu};7}7𐐐3ÐU)@EEPhTu } E)@3ø6ÐÐU WVSE9ET=($@u<,$@ ($@($@ ,$@$@,$@$@($@$@$$@E@3؋=$@E&;5$@($@E@E=w=$$@j Y$@@;t?3Ee ƹ3tL3+‰EEE2$@+$$@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5$$@$@0E+E-$@@;t$@$@$@($@~Љ$@;5$@v$@ $@$@ 9=$$@u $@$$@G(=$@95$$@u=$$@7tލ;r;l%;UWV}5$@%$@9u5$$@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ $@Nj]u}WV|$ t$L$Njʁ^_øÐT$0$@Ru 0$@+D$øT$0$@3øÐ0HNL$0H:L$0+L$0L$0 L$0ÃÐ)@Ð{T$X@@(#)lpr 5.3b of Apr 18, 1988/dev/lpY/usr/lib/lpd/usr/spool/lpdY/cf@XXXXXX/usr/spool/lpdY/df@XXXXXX/usr/spool/lpdY/lf@XXXXXX/usr/spool/lpdY/tf@XXXXXX/usr/spool/lpdY/zf@XXXXXX/usr/spool/lpdY/pf@XXXXXXnetlprlp    RbRbRbR/6l6l6l6l6l6"] 6Jd~LOGNAME/etc/systemidrpipe.endr%s: Cannot open %s lpr%s: cannot stat %s lpr%s: File %s is Special or Directory lpr%s exists w%s cannot be opened for writing %s: Too many copy files; %s not copied lpr%s: Cannot create %s lpr%s: Write error on copy of %s. lpr%d %s %ld%s: Error writing control file. lpr%s: Cannot open %s lpr%s: File %s is empty. lpr%s: Invalid user id lpr %1s %2s %3s%4s%s: Unrecognized option: %s lpr%s: Cannot open %s lpr%s: Cannot rename %s lprlpd/usr/bin/run/usr/bin/run%s: Can't find daemon. Files left in spooling dir. lprPCONFPTYPEPNETPMODESPCFILE/etc/printersPCFILEPRINTER %s: Can't create %s. lprBANNER %1s %2s %3s%4sr%s: Error in printer configuration file %s. lpr/etc/passwdrrUnknown error:  D@L@V@p@@@@@@@@@@&@8@D@Z@f@r@@@@@@@@@ @@2@?@U@d@p@@@@@@@ @@1@N@i@x@@@@@@@@@)@:@G@]@r@{@@@@@@@@@+@;@I@e@t@}@@@@@@@@@@@F@k@@@@@@ @@@&@/@8@A@J@S@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@ @@3@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF$..$. ..... %$.$$.9%I%I%I%I%I%I%I%I%I%...........`'.+................&...........h%`'z)+c%h%..\%..&...5..&..&-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@`3@`3@H#@h3@4@3.1bS03.1bS0H#@h3@usr/bin/uulog100755 5 5 3044 4235413513 7734 37777777777 : # work with both csh and sh #ident "@(#)uulog 1.4 88/04/26 " # # usage: # uulog # or uulog foo # or uulog -sfoo # or uulog -s foo # or uulog -ffoo # or uulog -f foo # # -x means check the execute file # -nnn where 'nnn' is a number will do tail -nnn # LOGDIR=/usr/spool/uucp/.Log type=uucico n="" cd $LOGDIR while [ $# -gt 0 ] do case $1 in -x) type=uuxqt shift ;; -[0-9]*)n=`echo $1|sed s/.//` shift ;; -f) fflag=1 shift if [ $# -eq 0 ] then echo "uulog: system name must follow -f flag" 1>&2 exit 1 else case "$1" in -*) echo "uulog: system name must follow -f flag" 1>&2 exit 1 ;; esac fi ;; -f*) x=`echo $1|sed s/..//` shift set - $x $* fflag=1 ;; -s) shift if [ $# -eq 0 ] then echo "uulog: system name must follow -s flag" 1>&2 exit 1 else case "$1" in -*) echo "uulog: system name must follow -s flag" 1>&2 exit 1 ;; esac fi ;; -s*) x=`echo $1|sed s/..//` shift set - $x $* ;; -*) echo "Invalid flag $1" 1>&2 exit 1 ;; *) sys="$sys $1" shift ;; esac done set - $sys if [ x$fflag = x ]; then if [ $# = 0 ]; then set - `ls $type` fi for i do if [ -f $type/$i ] then if [ x$n = x ]; then cat $type/$i else tail -$n $type/$i fi else echo "uulog: no log file available for system $i" fi done else if [ $# != 1 ]; then echo "uulog: only one system allowed with -f" 1>&2 exit 2 fi if [ -f $type/$1 ] then exec tail -${n}f $type/$1 else echo "uulog: no log file available for system $1" fi fi ys $1" shift ;; esac done set - $sys if [ x$fflag = x ]; then if [ $# = 0 ]; then set - `ls $type` fi for i do if [ -f $type/$i ] then if [ x$n = x ]; then cat $type/$i else tail -$n $type/$i fi else echo "uulog: no log file available for system $i" fi done else if [ $# != 1 ]; then echo "uulog: only one system allowed with -f" 1>&2 exit 2 fi if [ -f $type/$1 ] then exec tail -${n}f $type/$1 else echo "uulog: no log fusr/bin/uuto100755 5 5 3000 4235413514 7566 37777777777 : # work with both csh and sh #ident "@(#)uuto 1.2 88/04/26 " a="" f="" d="" sub="" export UUP mysys=`uuname -l` mesg="Usage: $0 [-m -p] files remote!user" if test $# -lt 1 then echo $mesg exit fi trap "trap '' 0; exit" 0 1 2 13 15 copy=0 # get options while true do case $1 in -m) a="$a $1" sub="$sub -m" ;; -p) copy=1 sub="$sub -p" ;; -*) echo $mesg; exit;; *) break ;; esac shift done # be sure have both files and destination if test $# -eq 1 then echo $mesg exit 2 fi # get file names while test $# -gt 1 do if test -d "$1" -a {"$1" = "." -o "$1" = ".."} then shift; continue elif test -r "$1" -a -f "$1" then f="$f $1" elif test -r "$1" -a -d "$1" then d="$d $1" elif test "$UUP" = "" then echo "$1: file/directory not found"; exit fi shift done # the recipient arg: remote!user # remote may be omitted (default is this machine) # must have at least !user remote=`expr $1 : '\(.*\)!'` user=`expr $1 : '.*!\(.*\)'` if test -z "$user" then echo "$0: incomplete destination -- must specify user" echo "$mesg" exit 2 fi if test 1 -eq "$copy" then a="$a -C" fi a="$a -d -n$user" error=1 if test -n "$d" -a -n "$user" then for i in $d do ( cd $i; UUP="$UUP/$i" for j in `ls -a` do if test "$j" = "." -o "$j" = ".."; then continue; else FILES="$FILES $j" fi done if test "$FILES"; then uuto $sub $FILES $1;fi) error=0 done fi if test -n "$f" -a -n "$user" then uucp $a $f $remote!~/receive/$user/$mysys$UUP/ error=0 fi if test $error = 1 then echo $mesg exit 2 fi usr/bin/uupick100755 5 5 7150 4235413514 10104 37777777777 : # work with both csh and sh #ident "@(#)uupick 1.3 88/04/26 " # sys: system; user: login name; cdir: current directory; # tdir: temporary directory; pu: PUBDIR/receive/user; cdir=`pwd` dir="" abs="" sys="" var="" varto="" varfrom="" trap "exit 1" 1 2 13 15 # get options if test $# -gt 2 then echo "Usage: $0 [-s sysname]"; exit 1 fi while test $# -ge 1 do case $1 in -s*) if [ $# -eq 1 ] then sys=`expr $1 : '-s\(.*\)'` else sys=$2 shift fi if [ -z "$sys" ] then echo "Usage: $0 [-s sysname]"; exit 1 fi ;; *) echo "Usage: $0 [-s sysname]"; exit 1 esac shift done user=`id | sed -n "/^uid=[0-9]*(\([^)]*\)).*/s//\1/p"` if test -z "$user" then echo "User id required!"; exit 1 fi pu=/usr/spool/uucppublic/receive/$user if test -d $pu -a -s $pu then for i in `ls $pu` do if test $sys then if test $sys != $i; then continue; fi fi if test -d $pu/$i -a -s $pu/$i then cd $pu/$i for j in `ls -a` do if test $j = "." -o $j = ".."; then continue; fi if test -d $j then echo "from system $i: directory $j \c" else echo "from system $i: file $j \c" fi while true do echo '? \c' if read cmd dir then trap ": ;;" 1 case $cmd in d) rm -fr $j ; break ;; "") break ;; #options m, a: if dir path #begins with a slash, use full #path for destination;otherwise, #use path relative to current dir; #default destination is current dir m) eval dir="$dir" if test $dir then abs=`expr "$dir" : '/.*'` if test $abs != 0 then tdir=$dir else tdir=$cdir/$dir fi else tdir=$cdir fi if [ ! -d $tdir -o ! -w $tdir ]; then echo "directory '$tdir' doesn't exist or isn't writable" continue fi find $j -depth -print >/tmp/$$uupick cpio -pdmu $tdir /dev/null fi done rm -f /tmp/$$uupick break;; #As files are transferred, #put their names in /tmp/$$uupick. #Only remove those named files #from...receive/..dir if cmp #verifies transfer took place. #then find & remove directories #(separate find is necessary because #cpio -v doesn't print dir names) a) eval dir="$dir" if test $dir then abs=`expr "$dir" : '/.*'` if test $abs != 0 then tdir=$dir else tdir=$cdir/$dir fi else tdir=$cdir fi if [ ! -d $tdir -o ! -w $tdir ]; then echo "directory '$tdir' doesn't exist or isn't writable" continue fi find . -depth -print | \ grep -v '^\.$' >/tmp/$$uupick cpio -pdmu $tdir /dev/null fi done rm -f /tmp/$$uupick break 2 ;; p) if test -d $j then find $j -print elif test -s $j then cat $j fi ;; q) break 3 ;; !*) ex=`expr "$cmd $dir" : '!\(.*\)'` tdir=`pwd` cd $cdir sh -c "$ex" cd $tdir echo '!' ;; *) echo "usage: [d][m dir][a dir][p][q]\c" echo "[cntl-d][!cmd][*][new-line]" ;; esac trap "exit 1" 1 else break 3 fi done done fi done fi rmdir $varfrom 2>/dev/null fi done rm -f /tmp/$$uupick break 2 ;; p) if test -d $j then find $j -print elif test -s $j then cat $j fi ;; q) break 3 ;; !*) ex=`expr "$cmd $dir" : '!\(.*\)'` tdir=`pwd` cd $cdir sh -c "$ex" cd $tdir echo '!' ;; *) echo "usage: [d][m dir][a dir][p][q]\c" echo "[cntl-d][!usr/bin/whereis100755 3 3 35244 4231442766 10302 37777777777 L! @/ @.text@/ .data@@ 0@.bss@@ .comment:ÐET@RU RP P.jÐUWME }uh`@h@j.YE =-u E BsE E 0YMj.Y}G=Bto=M=St>=b=f=m=sts=uY@h@h@E PEPh@h@E PEPh@h@E PEP=@t#=@t=@t3@@@@f=@t#=@t=@t3@@@@2=@t#=@t=@t3@@@@?E UE EU E EE E~E =-u݋EE (U=@t#=@t=@t3@@@UWV}F>u=.uN;w=/uFF>u=@t@@ @=@tWh@=@tUW=@uuhp@u5@5@W Y=@t=@u 9@u@=@tYW=@uuh8@,u5@5@ Y=@t=@u9@@=@tYW=@uuhL@u5@5@ Y=@t=@u9@=@t h@Yu}U=@u+uhp@uEE0^E8uu5@5@uEE0,M} U=@u+uh8@uEE0E8uu5@5@uEE0M} U=@u+uhL@uEE0E8uu5@5@uEE0XM} UuEE01M } Uu EE0 E8uUWh@uuD}fEft6EPu Kt#@=@tEPuh@ WjjEP=tWYUWVS}u =su/F=.u$FPWt]u}GFK?t>t ;tu tF@uuF=.uK&3KF=.uF=CuFt3넅w>umUWVS}}~EE ;ur;u s 3]u}Ã?'WBY=uE H3u U+ЋO;7sSwu& ÉE)G?}3W @+W;}WZ"Y+Å{EhUPWE E@u@t* @h@uu @ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW YG uG tO G Dt1@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E4@r5E<@rH@ED@AEd@s6EE]@)EEl@r݋EE 9P܃}t؁@@v@Et@t@r05}fEf fEmE]mE܉E@0Ee |@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEL@MU]vEu}fEf fEm]mE܉EFUR0EMm]ET@E5\@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}t@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u @@GW @*h!YGt@O G W@GGVYtG uO @u}G #@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUt@EEPhTu } Et@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @|@@x@@|@@E@3؋=x@E&;5|@@E@E=w=@jY|@@;t?3Ee ƹ3tL3+‰EEE2|@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@|@0E+E-|@@;t|@|@|@@~Љx@;5x@vx@@x@ 9=@u x@@G(=x@95@u=@7tލ;r;l%;UWV}5x@%|@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐt@ÐT$@@(#)whereis 5.3b of Jan 27, 1988@@@@@@@@@@@@@+@:@L@/etc/bin/usr/bin/usr/games/usr/man/man1/usr/man/man2/usr/man/man3/usr/man/man4/usr/man/man5/usr/man/man6/usr/man/man7/usr/man/man8/usr/src/cmd/usr/src/games/usr/src/libc/gen/usr/src/libc/stdiowhereis [ -sbmu ] [ -SBM dir ... -f ] name... %s: r %s/%.14s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF  ,)   Y i i i i i i i i i  1   | U-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@,#@,#@@4#@$@3.1bS03.1bS0@4#@usr/bin/whoami100755 3 3 33620 4201131374 10077 37777777777 L! l-D $<@.textl- .data<@<@D <.@.bss@@$.comment7ÐET@RU RP P!-jÐUWP9Yuh`@Yj,Y7hq@oj,Y}ÐUWV}t9~u=Ƌu}U=@uh@hx@!@5@YU=@t5@l#Y@UW}G?t=:t = u= u ?tGNj}U=@uh@hx@>!@u35@YUWuhh@_ =@WQY=@WBY=:j EPW EW YPj:W 9Eu`WY}| `9E~aE@t4=:t*j EPWV EW. YPj:W 9Et3}WY}| `9E~aE@=@=@W^Y=@WOY=@W@Y=@G?t =,u?tG=@@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V$Y}u +gEEvÐUPWE E@u@t* @h@uuM @ t }ËUWVS}u ]GF:u Nj]u}M}3UW}Wl YjjG Pl$ GGg G tg }ÐUWV}uW"YG uG tO G Dt1p@"u}F @tVY;5@rGGG tG @+GPwG P | GG듸9tO O G tg aU WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}tUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl|@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E @r5E(@r4@E0@AEP@s6EE]@)EEX@r݋EE 9P܃}t؁@@v@E`@t@r05}fEf fEmE]mE܉E@0Ee h@];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE8@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@@E5H@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UWp@;=@r3}ÃG uUWp@ WY;=@r}UWV}tlG t6G t3WVYG PY}`@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@ @GW @*h!YGt@O G W@GGVYtG uO @u}G  $@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU`@EEPhTu } E`@3ø6FÐ2ÐU WVSE9ET=t@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$@$@@$$@%@3.1bS03.1bS0usr/bin/whom100755 3 3 42020 4243134332 7562 37777777777 L" |8 L@.text|8 .dataL@L@ L9@.bss$@$@ .commentDÐET$@RU RP P18jÐU8WVS3h @h6@ jjw7E =-uMt.h|@E pO u p@ h@Y6@6@h$@Y=6@}h@Yjp7YP^Y| 6@ 6@@h6@ Yt*jZ Yh6@5YP56@Wh@Jh6@YPWh@. hj$Wh$@h6@hh t#h@Yh @-YPYj6YU @}h @j .á @ @ UWVSkE$$@Vh@s @}h @P-  @ @=p@t6@+F PSYF PYG$ Wh @ } u F Ph'@ F Ph1@]u}UWVS$$@EE¹<#$@Kǹ R0‹KǙ@0K~ƹK?K:ƹ R0‹Kƙ@0$$@Ë]u}UWVS}Ejh5@3E|hWu+ E]܋u}ËE$3k$ЉUu~/YF=tE$;urE볃$;]s C=u;]r;s;]sЋƋӋ JHJHJ H JHJHJHJHJ H $$EC=tUWVS}u>t@FF9~@FEM9t@FEM9tt@Fx@?]u}ËF9}Ft@=x@x@=t@tx@E32t@;|3PS׃t@;| EEU t@9E~uUju u Ð& 2ÐUuYPYUWVS($@@@GF҈uEk@Z@($@GFGFGFGE@kp@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW($@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUWEE=@1h@HY=uE9E3} @@=@Wj 5@uEtE+EE)@@=@}3@@#@+@;} h@+Y}MMEEeUPWE E @u @t* @h @uu  @ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_U9Er=@u>EL$@P\+Y@EH$@ED$@E EURu+ËE9L$@sˣL$@P5@-@UWVSD$@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuWH$@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVuH$@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u D$@|?=@t6SW5@- SVW, S5@V, ]u}ÊEGFUKuUWVS}u ]D$@E9E|R=@tIuW5@, uSWu, uVSh, u5@VV, ]u}ÊEGCFUMuӐUWV}uW'YG uG tO G Dt1@"u}F @tV$Y;5#@rGGG tG #@+GPwG P" | GG듸9tO O G tg aUWV}G tG t w%*Yg E GuaO }8u:@>@GW #@GGu}G B@WR#@G W#@V&YtO @맸ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_ø T$tÐUW(E+@EEPY=@iGQiWkW<E=P$@u=T$@uWEPEP< P$@ET$@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<X$@E\$@ƙ5`$@Epp$@}| FFFtmnEN}|ۉ5l$@}=t$@ƹtmn=nu f@3 u@+Fu@;}f@Gd$@5h$@x$@X$@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}|$@E|$@EH@s3UtE]|$@EP@EX@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁|$@$@v$@E@t$@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+|$@u|$@1}tCF0N<9|$@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G #@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W #@+W;}WgY+Åu>G Dt+G uEE Pj u tWTYEEWUWVS}$@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUW@ WY;=#@r}UWV}tlG t6G t3WVYG PY}#@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG #@9GGGU= uQWY=E}G %=u7EEjEPG P7 =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G #@+G?}3W #@+W;}W{Y~'SVG P ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G #@+G?}3W #@+W;}WY3UWV}G G u}}&u:@>@GW #@*h YGt@O G W#@GGVYtG uO @u}G B@WR#@UWV}G #@+G}G #@Wu};7}7𐐐3ÐU#@EEPhTu } E#@3ø6ÐU WVSE9ET=#@u<#@ #@#@ #@#@#@#@#@#@#@E@3؋=#@E&;5#@#@E@E=w=#@j Y#@@;t?3Ee ƹ3tL3+‰EEE2#@+#@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5#@#@0E+E-#@@;t#@#@#@#@~Љ#@;5#@v#@#@#@ 9=#@u #@#@G(=#@95#@u=#@7tލ;r;l%;UWV}5#@%#@9u5#@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ#@Nj]u}WV|$ t$L$Njʁ^_øÐT$#@Ru #@+D$øT$#@3øvÐ09NL$09:L$0+L$0L$0 L$0 Ã#@ÐT$P@@(#)whom 5.3b of May 12, 1988-l-l flag gives duration of logins Sorry, cannot read file of users on system. %d users on %s @ %s %d users @ %s Type carriage return when finished: %-8.8s %5.5s %-8.8s %s/etc/utmpDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec@@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFZ!Z!Z! Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z!Z! $6$Z!Z!Z!Z!Z!Z!Z! Z!RZ!Z!-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@C@C@#@C@D@3.1bS03.1bS0#@C@D@usr/bin/uuname104111 5 5 142675 4235413517 10143 37777777777 Lt"x3 VH!'l@.textV .datal@l@H!lW@.bss8@8@'.comment8xÐET8@RU RP PQVjÐU EE5E=ct =lu EEh@h4@jUYh@u u E=u}t:}th@h4@PgYPYjUY}th@h@zYjYE 0h@h4@1 jOUY=#= = tz= tlPh @Pa t$tPP+(t#PYPPIhP 8jzTYUuu h @h4@7UUuJTYÐUPW}E@Eh0@h"@IEtHujEP u#KYEEt3j EP'EtEEEEP-YE͉EjuWo' G}ÐUPW:EtuYtE9Gt'uYujYu }7u cH3UWuYuE}wu.HE W3ᐐUuYUu uyUEH=$ @j8@4@)j8@4@)j8@4@})j8@4@ j8@4@ j8@4@ uh @hS@$ h @hS@UU@3@@h @h @1GEtP8h @P%Euuh @p t EPu=@uMh @ Y@=@u*hh(!@5@h!@h!@jY@=@uMh3!@* Y@=@u*hhi!@5@hX!@hI!@ej}Y@=@uMht!@ Y@=@u*hh!@5@h!@h!@j'Y@U8@38@@3@h!@h!@EEtyah!@P$Euuh!@ t3h!@j#Eu uh!@ t ,Pu UE EQuDYUЉUE9EtWE@= uIEHEE 9EtEE@=\u&E@ uE +EPu uE+E UPujDYPu u' uuNDYE E u#3ËEuu D"t-E@E j:u !Euuu "u3UP9@8@*9@9@U9@-8@=}h!@jS"Eu9@UE8@+j=E0R!E} E@Eh!@E0W!uuh@h!@E0,!uuh@h!@E0!uuh@yh"@E0 uuh@mQh"@E0 uuh@E)E0h "@hS@ h "@hS@EE-8@=} E8UE tEEÃEE8uh3"@u ƅE=/th;"@h7"@Pg uPE&jPuDPmYUE8u&hShf"@0hX"@hI"@jYEh5"@j E}L,UE tEEÃEE8uhq"@u GuYUE8u&hjh"@0h"@hu"@j5YEhs"@jqE}uU=8@t 58@zBY8@8@=8@t 58@QBY8@8@YU=8@t 58@BY8@8@=8@t 58@AY8@8@U=8@t 58@AY8@8@U=@uh"@uvYY=8@t 58@AY8@8@=8@u 'u358@u u t۸U=8@t 58@AY8@8@#=8@t58@@Y8@;8@/h"@8@4@?8@t8@8@<@u3U=@uh"@u\YY=8@u 'u358@u u t۸U=8@t58@/@Y8@;8@/h"@8@4@B>8@t8@8@<@u3U=@uh"@uYY=8@u 'u358@u u t۸U=8@t58@q?Y8@;8@/h"@8@4@=8@t8@8@<@u3UP=@t8@<@u3á8@4@=YHE8@@=(uM8@@E=)u3EME 9EEE P8@8@@BREu 8@8@4@u RU=@t8@<@u3u 8@8@4@u אUWV}W<Y@PBYt WV;Ƌu}U W} EPuU =uuY}ÁtDE#;t8FU;u E#;t:U;uE#;u38@ 또/ÐÐUPWV9"@ueE9(#@}#E (#@ =-u E Au u}h"@E (#@4u (#@΋E (#@ "@=,#@:tWu=$#@tOLjEE E 0x:YPE 0jD h"@]:YPh"@jD jEPjD E (#@ "@@"@u(#@"@?F=:"@@U (#@t"@@U (#@0#@(#@@(#@;E|l=$#@tOLjEE E 09YPE 0jD h"@z9YPh"@jD jEPjC "@?GE (#@(#@ 0#@"@8E (#@ "@@"@u"@(#@0#@UWt7uuNj}ÐU$WVk|Yjh#@B|Djk$PV> j$EPV!8 =$tVa>Y3uԋ}VP>YE܄u3jEPh9@ $9@9@ŐUWV}t9~u=Ƌu}U=#@uh #@h #@7#@5#@YU=#@t5#@|9Y#@UW}G?t=:t = u= u ?tGNj}U=#@uh"#@h #@N7#@u35#@YUWuhh(9@_ =*=@WQY=.=@WBY=:j EPWN EW6YPj:W86 9Eu`WY}| `9E~aE2=@t4=:t*j EPW EWF6YPj:W5 9Et3}WY}| `9E~aE6=@=>=@=B=@W^Y=F=@WOY=J=@W@Y=.=@G?t =,u?tG=:=@*=@oUWVS} uEE~,F t!O>(VgY=uE9Eu~3]u}N;>}Sj vu7EtE+E؋E)F>}3V 7@+V;}V:Y}u +gEEvUWV4#@%@98@s 8@ jhE#@j> u}ÐUWVS34@%=u-=4@t$4@94@u,=4@u#4@Duh4@w8Y 34@7@Uh4@7Y=u4@E+Å~VjuSEtE+Ë)4@4@=4@}34@4@7@+4@;} h4@9Y}t=4@@ 4@Dt"h4@7Y=u]u}ËE@WV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W 5YjjG P 9 GGg G tg }ÐUPWEEE@ uE@ t(EH uuu + E@ t }ËUPE EPuh4@d UPEEPu uI UW}EEEljEEW1YEE2uu EP }ÐUWVS}u DžP=@T=@ P=@W5=~*uDžF DžDžk -0F1@u؃u DžÉ=lt h9uF؅[uPV1@tDžl2@؃nt_=T=@uVctQ[tLP=@} W@ Y GG1@u P=@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfP=@fl9uEEPP=@{EEPP=@dEPWSt'=T=@tu /$Fu 1@td=T=@uP=@} W Y GG1@u P=@W@=uT=@y%uF؃%P=@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$.@EE EEP=@}WyY3]u}ËGG=+t=-t =0t8EMP=@} W(Y GG؃0i9E }9EoP=@} WY GGEYuj0Yt,j/WuFjh/@(E}]̋uЋ}3ME=t!E=tE=t E=u j EPVA u u#YCj$EPu =$tu\#YyWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_UPWVu"Yt8EPu|%E%= ujh/@&} 3u}þfEft EU;uuh/@h\=@EPh\=@EPh\=@|=EU;u1E%= u!t EU;uW!Y\=@\jEPW =TjjW1" NuW!Y3 >&3Ð&&3ÐV|$3O|$ ыt$ D$^jjt$ 9rã8@ÐUW} 9EtFG tG9GwG9Gu+?u&GuWYGHGUE}øUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  7@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl1@Dž\9PtP؉PNKPPoYh~PW =uh~Ph1@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}|=@E|=@E3@s3UtE]|=@E4@E 4@ET4@r5E\4@rh4@Ed4@AE4@s6EE]@)EE4@r݋EE 9P܃}t؁|=@=@v=@E4@t=@r05}fEf fEmE]mE܉E@0Ee 4@];r&=5|+|=@u|=@1}tCF0N<9|=@]Ћuԋ}ËEE0]@EEsEE 9P EEEEl4@MU]vEu}fEf fEm]mE܉EFUR0EMm]Et4@E5|4@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 7@UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 7@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}8@u'3]u}ËÃ0Wtۃ;uUWV}u  G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W7@UW4@;=7@r3}ÃG uUW4@ WY;=7@r}UWV}tlG t6G t3WVYG PY}8@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 7@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 7@+G?}3W 7@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 7@+G?}3W 7@+W;}WY3UWV}G G u}}&uW@ [@GW 7@*h!YGt@O G W7@GGVYtG uO @u}G _@WR7@UWV}G 7@+G}G 7@Wu};7}7𐐐3ÐU8@EEPhTu } E裔8@3ø6:Ð&ÐU WVSE9ET=8@u<8@ 8@8@ 8@8@8@8@8@8@8@E@3؋=8@E&;58@8@E@E=w=8@j Y8@@;t?3Ee ƹ3tL3+‰EEE28@+8@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή58@8@0E+E-8@@;t8@8@8@8@~Љ8@;58@v8@8@8@ 9=8@u 8@8@G(=8@958@u=8@7tލ;r;l%;UWV}58@%8@9u58@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ8@Nj]u}WV|$ t$L$Njʁ^_øVÐT$8@Ru 8@+D$ø!T$8@3øÐ8@ÐT$p@@(#)uuname 5.3b of Apr 26, 1988lcusage: uuname [-l] [-c] uuname: -l overrides -c ... -c option ignored cuuucicouuname: cannot access Systems files %suuname: %s %s altos/etc/systemidr@@@!@-@8@E@T@_@j@v@@@@@@@@@@@ @ @(@<@O@\@h@@@@@@@@@ @8@R@q@@/usr/spool/uucp/usr/spool/uucppublicCAN'T OPENCAN'T WRITECAN'T READCAN'T CREATECAN'T ALLOCATECAN'T LOCKCAN'T STATCAN'T CHOWNCAN'T CHMODCAN'T LINKCAN'T CHDIRCAN'T UNLINKWRONG ROLECAN'T MOVE TO CORRUPTDIRCAN'T CLOSECAN'T FORKFILE EXISTSSUCCESSFULNO DEVICES AVAILABLEWRONG TIME TO CALLTALKINGCONVERSATION FAILEDBAD SEQUENCE CHECKLOGIN FAILEDDIAL FAILEDBAD LOGIN/MACHINE COMBINATIONDEVICE LOCKEDASSERT ERRORSYSTEM NOT IN Systems FILECAN'T ACCESS DEVICEDEVICE FAILEDWRONG MACHINE NAMECALLBACK REQUIREDREMOTE HAS A LCK FILE FOR MEREMOTE DOES NOT KNOW MEREMOTE REJECT AFTER LOGINREMOTE REJECT, UNKNOWN MESSAGESTARTUP FAILEDCALLER SCRIPT FAILED bad access type %dsysaccess/usr/lib/uucp/Sysfilesr service=/usr/lib/uucp/SystemsCAN'T ALLOCATEscansys: Systemssysfiles.c/usr/lib/uucp/DevicesCAN'T ALLOCATEscansys: Devicessysfiles.c/usr/lib/uucp/DialersCAN'T ALLOCATEscansys: Dialerssysfiles.c/usr/lib/uucp/Devconfigr service= device= systemsdevicesdialerspoppushunrecognized label %sSysfiles|Devconfig::%s//usr/lib/uucpCAN'T ALLOCATEsetfile: tptrsysfiles.c::CAN'T ALLOCATEsetioctl: tptrsysfiles.cuucicoruucicoruucicor: option requires an argument -- : illegal option -- --/etc/utmp/etc/passwdrrUnknown error: %@%@%@%@%@%@%@&@&@$&@4&@G&@Y&@j&@|&@&@&@&@&@&@&@&@&@'@'@/'@@'@O'@^'@v'@'@'@'@'@'@'@'@ (@&(@?(@N(@\(@u(@(@(@(@(@(@)@ )@)@-)@D)@X)@m)@~)@)@)@)@)@)@)@)@)@*@2*@H*@Y*@o*@*@*@*@*@*@*@*@*@*@+@ +@+@/+@L+@c+@+@+@+@ ,@4,@=,@F,@O,@X,@a,@j,@s,@|,@,@,@,@,@,@,@,@,@,@,@,@,@,@-@-@-@"-@,-@6-@@-@J-@T-@^-@h-@r-@|-@-@-@-@-@-@-@-@-@-@-@-@-@-@.@!.@1.@?.@N.@_.@w.@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error"""""""""""""??GA>???/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFz4:>:>4:>=:>:>:>:>4b4:>n44:>4444444444:>:>:>:>:>:>:>:>:>:>:>6:>;:>:>:>:>:>:>:>:>:>:>:>:>:>:>:>:>6:>:>:>:>:>:>:>:>:>:>=569;45:>:>4:>:>}6:>:>:>=:>26:>:>6-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$_@$_@7@,_@`@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0.file gcrt1.s.text<.datal@.bss8@.comment8@.init_istart.filegvers.c.text.datal@$.bss8@.comment.file)guuname.cmain$assert logent cleanup !.text$.data@.bss8@.comment.file5guucpname.cuucpname  -.text  .data@.bss8@.comment.file?guucpdefs.c.text.data4@d).bss8@.comment.fileMggetpwinfo.cguinfo$`Cgninfo $=E.text.data@.bss8@.comment .filegsysfiles.cL QZ Sm$UscansysU Wscancfg Ygetline$[#&$]tokenize ]_-  basetfilen  csetioctl\  esysreset  \gdevresetA  Wi7  .kA $~mLD $oX $Pqc0$nso$Pu{$nwgetpop\$ygetpush($F{.textL$ +.data@$.bss8@d.comment(Systems@Devices@Dialers@Pops@Pushes@nsystems8@ndevices8@ndialers8@npops8@npushes8@fsystems8@fdevices8@fdialers8@tokens8@tokptr9@.filegstrsave.cstrsavepb1eaccess$.textp.data"@.bss9@.comment0.fileggetegid.s.text8.data"@.bss9@.comment9@ .fileggeteuid.s.textH.data"@.bss9@.comment9@ .fileggetopt.cgetoptX$b.textXd8.data"@D.bss9@.comment9@error1"@error2"@.fileggetpwnam.cgetpwnamh1.text4.data#@.bss9@.comment9@.fileggetlogin.cgetloginb.text .data#@ .bss9@ .comment(9@#@.fileggetpwuid.cgetpwuidh,.text,.data #@.bss(9@.comment(9@.fileggetpwent.csetpwent 3endpwent $pwskipbDgetpwentKh9hw.textL0.data #@.bss(9@(.commentP=@PASSWD #@EMPTY#@pwf#@line(9@passwd*=@.file gfgets.cfgetsb.text.data$#@.bssP=@.commentP=@.filegopt_data.c.text.data$#@.bssP=@.commentP=@.file"gperror.cperror }.text .data4#@.bssP=@.commentP=@.file,gerrlst.c.textP.dataH#@D .bssP=@.commentP=@.file8gputs.cputsP$T0.textPT.data.@.bssP=@.commentP=@.fileBgmemccpy.s.text@.data.@.bssP=@.commentP=@ .fileNgrew.crewind CF.textD.data.@.bssP=@.commentP=@.fileZgfprintf.cfprintf($]R.text(`.data.@.bssP=@.commentP=@.filejgscanf.cscanf$^fscanf$`sscanf$Ab.text|.data.@.bssP=@.commentP=@.file~gdoscan.c_doscan$nnumber$fpstring#$rsetup$lt.text p.data.@T.bssP=@.commentX=@chcountP=@flag_eofT=@.filegatof.catof$'.text$.data.@h.bssX=@.commentX=@pow1_25.@.filegfilbuf.c_filbuf'$.text'.dataH/@.bssX=@.commentX=@.filegldexp.cldexp('.text( .dataH/@8.bssX=@.commentX=@.filegfrexp.cfrexpl)'.textl).data/@0.bssX=@.commentX=@.filegmemset.s.text)8.data/@.bssX=@.commentX=@ .filegsprintf.csprintf4*$F.text4*H.data/@.bssX=@.commentX=@.filegstrchr.s.text|*8.data/@.bssX=@.commentX=@ .filegstrcmp.s.text*X.data/@.bssX=@.commentX=@ .filegstrncpy.s.text +<.data/@.bssX=@.commentX=@ .filegstrtok.cstrtokH+bm.textH+p.data/@.bssX=@.comment\=@.filegstrpbrk.cstrpbrk+b@.text+@.data/@.bss\=@.comment\=@.filegstrspn.cstrspn+$@.text+@.data/@.bss\=@.comment\=@.filegstrtol.cstrtol8,$ .text8,.data/@.bss\=@.comment\=@.filegaccess.s.textT..data/@.bss\=@.comment\=@ .file*gttyslot.cttysloth.$!.texth. .data/@ .bss\=@.comment\=@/@.file4gstrncmp.s.textT/L.data/@.bss\=@.comment\=@ .file>gstrrchr.s.text/$.data/@.bss\=@.comment\=@ .fileLgttyname.cttyname/b/B.text/0.data/@.bss\=@ .comment|=@rbuf\=@dev/@.fileVgfstat.s.text0.data/@.bss|=@.comment|=@ .file`gstat.s.text 1.data/@.bss|=@.comment|=@.filejgstrcat.s.text$10.data/@.bss|=@.comment|=@ .filetguname.s.textT1,.data/@.bss|=@.comment|=@ .filegungetc.cungetc1$^x.text1`.data/@.bss|=@.comment|=@.filegdoprnt.c1$D_dowrite$2$k_doprnt2$'.text1.data/@Y.bss|=@.comment|=@_blanks/@_zeroes/@uc_digs/@lc_digs0@lc_nan0@uc_nan$0@lc_inf,0@uc_inf00@.filegctype.cF$.textF.data1@(.bss|=@.comment|=@3@.filegecvt.cecvtGbfcvtGbcvtGbT.textG .data3@.bss|=@P.comment=@buf|=@.filegfwrite.cfwriteJ$.textJ .data4@.bss=@.comment=@.fileggetenv.cgetenvKbAnvmatchKb@.textK.data4@.bss=@.comment=@.filegmemchr.s.text8L.data4@.bss=@.comment=@ .filegread.s.textTL.data4@.bss=@.comment=@.filegstrcpy.s.texthL4.data4@.bss=@.comment=@ .filegstrlen.s.textL.data4@.bss=@.comment=@ .filegfopen.cfopenLhfreopenLh"_endopenLh9.textLt .data4@.bss=@.comment=@.filegfindiop.c_findiop(Nh, .text(N,.data4@.bss=@.comment=@.file.gflsbuf.c_cleanupTN "fclosevN$fflushN$`_flsbuf]O$7_xflsbufP$ _wrtchkQ$"_findbufQ$$_bufsyncgR$:&.textTNP%.data4@.bss=@.comment=@.file8gclose.s.textR.data4@.bss=@.comment=@ .fileBgdata.c.textR.data4@.bss=@.comment=@.fileNgisatty.cisattyR$9F.textR<.data8@.bss=@.comment=@.fileXgi386_data.s.textR.data8@.bss=@.comment=@$.filebgioctl.s.textR.data8@.bss=@.comment=@ .filelglseek.s.text S.data8@.bss=@.comment=@ .filegmalloc.cmalloc SbpfreeU 3rreallocUbt.text S9.data8@.bss=@.comment=@allocp8@alloct8@allocx8@allocend8@.filegmall_data.s.textV.data8@.bss=@.comment=@$.filegmemcpy.s.textV$.data8@.bss=@.comment=@ .filegopen.s.textV.data8@.bss=@.comment=@.filegsbrk.s.textV@.data8@.bss=@.comment=@nd8@.filegwrite.s.text0W.data8@.bss=@.comment=@ .filegcerror.s.textDW .data8@.bss=@.comment=@ .filegcuexit.s.textPW.data8@.bss=@.comment=@ .filegcrtn.s.textlW.data8@.bss=@.init_start_mcountenviron8@exitPW_S_I_l@_iob4@strcmp*strcpyhLstrchr|*unameT1strncpy +Ifn=@Ofn=@Debug4@Uid=@Euid=@Ulimit=@Dev_mode=@Progname=@Pchar=@Rmtname=@RemSpoolA@UserE@UucpI@J@MynameJ@Wrkdir$J@Logfile$N@Spool8@Pubdir<@Env$R@@@Nstat(R@DcR@SeqnR@RoleR@BnptrR@JobidD@UerrorR@__s_R@Ct_OPENT@Ct_WRITEX@Ct_READ\@`@d@Ct_LOCKh@Ct_STATl@Ct_CHOWNp@Ct_CHMODt@Ct_LINKx@Ct_CHDIR|@@Wr_ROLE@@Ct_CLOSE@Ct_FORK@@@S@accessT.strlenLstrncmpT/strcat$1stat 1getegid8geteuidHerrno8@optind(#@optopt,#@opterr$#@write0Woptarg0#@openVlseek SreadTLcloseRmemchr8Lmemccpy$7@sys_nerr%@/H#@_ctype1@memset)_lastbuf7@_cerrorDWstrrchr/fstat0memcpyV_sibufW@_sobuf [@_smbuf_@ioctlR_allocs8@sbrkVbrkWend`@etextlWedata8@;setservicesetdevcfgsysaccessnamematchnameparsedialresetgetsyslinenextsystemsgetdevlinenextdevicesgetdiallinenextdialersutmp_filefgetpwentutmp_file_lowdigitsetchrclassfirst_callLoginuserRetrytimeCt_CREATECt_ALLOCATECt_UNLINKCt_CORRUPTFl_EXISTSUerrorTexterrformat_bufendtabsys_errlistemcpyV_sibufW@_sobuf [@_smbuf_@usr/bin/uucp104111 5 5 274557 4235413520 7624 37777777777 Lt" |4TFt@.text .datat@t@|4t@.bssM@M@TF.commentÐETM@RU RP PYjÐU|EfDžji@`i@=i@uj跀Yh@hhy@WEh}@Eh0@h(i@67i@Ut~@hXu@'Yh~@-i~@dj~@c3t@H~@k~@h8q@5i@@E=ntQ=ft8=c=CT@j~@C]i~@fQ@hG@hh~@Џ57@hI@hH~@ hH~@hN@ht~@mYt~@P =d=jt+=g7@@fDž=m @hE@hh~@$=st/=ruU@T@h7@EhW@hh~@L=xu&57@^Y@=@+@h(i@h!@hJ@l jEYh5@u u`_ E=39@|hf@hZ@hJ@Rl hhu@Y}t>E=/tuhhu@hl@ht@juhr@ht@S hu@V]YE}th@h@hJ@k j~YH~@uh8q@hH~@Qh8q@hHu@?9@|5i@h@hJ@~k 9@|h8q@h@hJ@Zk E+7@=}h(i@h!@hJ@3k jYPPPE UJ4 t4P$Yt7Ph@hJ@j jvYhXu@PNjPh8i@~ Fi@ 9@|Ph@hJ@oj 9@|Ph@hJ@Ij 9@|Ph@hJ@#j E+7@=h@PPPPE 7@4 t2P#Yt!Ph@hJ@i j?Yt&E 7@4h#@hJ@ii j蟲Yj*P|u*j?P|uj[P|tSP>5Y=uj6YPPPPPP t5PPh7@PPP] {Xu@t"tPhXu@|tjt`t!Xu@thXu@P{t5PPh8@PPP uhXu@P]jPh8i@{ Fi@9@|Ph9@hJ@|g 9@|PhE@hJ@Vg 9@|h8i@hR@hJ@2g PPPP.tE7@EH97@"j@=-tM9}5hh`@Pyh@P?C h8i@hAYfth@h@JeuYUW}j<Yt $}.Ph@hJ@ f PSYWLY}Å~W5@h@hJ@eW#YUl Eu P]uPK}tXu@thXu@u`ytE}tXu@thXu@u6ytEE=.=Pd1YO=~t=hu@t @th @hhu@xtP1Y9@|uh @hJ@d EPP Ph @hJ@d ø9@|uh@hJ@[d P0YtčPm0Yt묍EPP= t#Ph@hJ@c rEPP E}uBEU;u6EU;u*PPh@hJ@cjdhh~@wPPP th9@hJ@WcjYE%=@u#PhL@hJ@&c EuiE;i@u EuRUU;u E u:EPPhi@hJ@bh@hJ@b)}u3Eu(EPPh@hJ@yb9@|Ph@hJ@Ib 9@|Ph@hJ@#b PPp'=u)5M@Ph@hJ@a^E% PP7S= @tNuh8q@PuPuh@Pt h1 @h0 @Ph8q@T =@tAh8q@uPh2 @PthJ @hI @PhH~@ 39@|uhK @hJ@` =~tP-Yt MP,Yt 2uEPyEhH~@ht@tt@v @Phh~@h8q@PPh^ @uW`$uYPhXu@Ph8i@h| @Prsh @P<E%=@u#Ph @hJ@_ WEuWE;i@u Eu@QU;u E u(EPPh!@hJ@~_=@u&h(~@PCu,~@u`EP@PujD,EPP|$t hEPrPuEPEP h.!@EPpuEPEht@hH~@E%PEPhh~@h8q@PPh2!@u^(uAYPh8i@PhXu@hN!@Pqh^!@P:@3UPu u=u@Pu jCs+ju}u)h[he!@5M@u5@jkYhl!@huhYP[Eu uhn!@u脛Ejj.u} ~@t ~@@EPh@pq @}u)hchp!@5M@u5@jYEUWVSE U3Ɉ U ]j!SpuSur]u}øXu@t)t%+PShXu@| u+ÊXu@tbj!S}FPu+PSu p E +;t+HPGPupp E+JaG:Ut~@t$ht~@u5@hw!@PIou5@h!@P*oE t#} t]Xu@tThXu@u ou@u'YtjפYuu h!@POYRno}t} tu u$ot+uu h!@PYRwn&uh!@PޘYROn EteEt1uuuh!@P蠘YRnuuh!@PrYRmjEt#}t2Xu@t)hXu@u9nuu&Ytj莣Yuuh!@PYRwm9@|Ph!@hJ@Z h!@P6PNqYUh(i@h!@hJ@Y jjYÐUEh"@hx"@Pl 5i@mkYh"@PUE5i@JkY}uuhuT uuVYuYHE= uu͖YHEuRVY3UW5i@jYu uz5i@jYNj}UP9@|uh#@hJ@X 9@|u h#@hJ@cX u YE}uDj u u[ E}t@9@|h#@h#@hJ@X jh#@u E9@|(S@t#@#@Ph#@hJ@W 9@|(S@t#@#@Ph#@hJ@W 9@|(S@t $@$@Ph#@hJ@YW 9@|hT@h$@hJ@5W EUWV9@|uh'$@hJ@W jh<$@u ujhC$@h=$@ S@9@|(S@tT$@Y$@PhD$@hJ@V 9@|(S@tn$@s$@Ph_$@hJ@eV 9@|(S@t$@$@Phy$@hJ@0V 9@|hT@h$@hJ@ V 3'9@|4xO@h$@hJ@U Gu3nUW}G?t= t= tE 8G?t ==u?tGE xG?t= t= t = u܀?tGNj}UWV}PKYHЋN;r= t= t= t=#t== t/t+PW讋PӋYG=\u#O5#@hPH K+EUWVX@} F׊ G=:t ?tX@rF=:uGE X@Nju}US@U=T@thT@uuYUS@US@U9@|uh&@hJ@M u uJUWVS}u 3+4詊YPW4m u]u}C<u3UWV}E3h,PU1]d0U9 X@|'jh&@5 X@h&@h&@jrYj/u7e ~@t ~@@EPk X@$X@P(u k X@3X@P X@UW38jk3X@Pu d uk$X@Puρ3}G;= X@|Uh3X@h$X@h$X@ = X@U 9@|u h&@hJ@C u|Yj/u4d ~@t ~@@Ej/u d ~@t ~@@E Ph8m@h&@PV9@|Ph&@hJ@3C jPVbu&j]h&@jP5@jYPut*j^h&@5M@P5@jfYEtukE$X@tgkE$X@PLVuJ X@k X@$X@PkE$X@Pk X@3X@PkE3X@PE X@9EqUW3k$X@PdYG;= X@| X@}UPuuh&@h&@h8m@Ujh8m@ Y9@|h8m@h&@hJ@A h8m@2YE}t(jh&@5M@h8m@5@*jYh8m@hhu@~Uuh&@h&@h8m@yTjh8m@8 ÐUWVh'@uUt uh$'@h'@PThG'@P =u hI'@W@ Etoh(~@uqbu[=8~@tRhM'@up~t,W$~Yh(i@u u9Eu(@(@Phb(@PvQ9Eu5@Pj h8i@|UPWEPbVYEPpVY7www G@Ph(@h[@Q[@}ÐUWVSjuʅYu P{h(~@u Y_uj,~@%=@uWh(@PF_j/u] ~@t ~@@EPP_Pu z9@|Ph(@hJ@< hhP u W言YhP-hPWy ~SPV݄ E;tWAYV:Yu 9Eu3{U$WVS}u EPV]uE%=u3tV^YVW3E} VWE}uW^YE]Ћuԋ}Uj/u \ ~@t ~@@EPh(@h(@PNPu3u)^Yt&jjh(@5M@u5@jYUWVS}u VSjP@vWhjP1G u F t3Uu P!xh(~@u a\uX,~@%=@uEh(@PN\j/uZ ~@t ~@@EPP\hP5P}YhPb+5i@KYPuE5i@KYEÐUWVS}WP4w=/=~uEDPhhu@h(@WLhu@uiËCFt =/uEtWEPEP t5@WvVWZWEYth(@Whvy3rUWV}WP9vP^vYD=/th(@PbZj/VKu39@|Ph(@hJ@ 8 jP=u몋/FU4WV}u h(~@WYu,~@%=@WP7uP\uYJU EME=/u 9Ewj/PWEtE Dž)@PY9@|h)@hJ@6 9@5M@h#)@hJ@6 9@|h-)@hJ@6 9@5M@hN)@hJ@k6 %=th'uNE=t9ujjgXYjzYjzYjWhc)@hX)@ NjBNY9Eu+hho)@5M@hi)@5@jmYEPsYE;Eu}t/hhy)@uW5@q%=tj%P&tKhh)@5M@5@9@|\h)@hJ@4 B=i@5i@FYt/9@|5i@h)@hJ@4 )5%PW&t)hh)@5M@W5@\&PjW% tz9@|Wh)@hJ@74 9@|5M@h)@hJ@4 hh)@5M@W5@5i@EYW5i@EY3DUuYu3uh)@hJ@3 UWVS}ߋ=/Fӊ CCjh)@SS tt*@th*@S Gtjh*@S[S ttC*@t:h *@SFu(F;u =/tS;w']u}Êu#;u.F3N;v#F=/uF҈t C=/u=/%UP 9@|EPh*@hJ@_2 9@|u h *@hJ@=2 9@|EPh%*@hJ@2 E u)E Xu@ 9@|u h**@hJ@1 u YEE=Ct E=Xu1kE[@%PEPu jEPh:*@uDAkE[@B[@%PkE[@%Pu EPhH*@uD9@|uhX*@hJ@11 UWV9*@r&jZht*@hhs*@hc*@jYEP]IYuh0Yuh*@h}*@PDj/P1Q ~@t ~@@@j PtjtBYF|݃|&jgh*@jP5@jYuh*@h*@PuCh*@PnEPh*@W1 =t /Eg Wh*@Pm u*jqh*@5M@P5@mjKYhP!`h*@P{mu*jvh*@5M@P5@jYhP .EEeuh*@W / G t*j~h*@5M@P5@jYWnYG t-hh*@5M@P5@hjFYPY9@|uh*@hJ@i. 9@|uh+@hJ@G. uk*@[@Pkk*@U[@-%k*@[@*@*@UPE$jukE[@PM uEE*@9E|u|YU*@ÐUPWZ%Etu$YtE9Gt'u%Yuj%Yu }7u j3UWu#YuE}wujE W3ᐐUW}+@u7vPj h+@h+@@uPh(+@h+@h^@@Wh^@h+@ =uhh^@qOYWbYt;/h^@YOY9@|hU+@h9+@hJ@O, }Wh^@h+@" uWY3UWV}EjW6tE9@|WhV+@hJ@+ 9Eu?9M@t9@+5M@hf+@hJ@+ j EPui utoY t-9@h+@h+@hJ@Q+ EPpYEju>tt 9M@u19@|h+@h+@hJ@* u}ø9@|uh+@hJ@* 9@|Vh+@hJ@* 9@|Wh,@hJ@* WkMYt-9@uh>,@h#,@hJ@Y* Y3WUPW3 gEt@}UWV}3V=l}@u Jll}@=4.@tWjj/h^@C ~@t ~@@ u}ø^@Ph8i@C t54.@bY4.@=4.@ubh8i@hhy@h<.@h^@5hB.@h^@`4.@hh^@=4.@pj54.@3jj54.@" h@h8i@h8q@hD.@54.@%"5~@5l}@PhN.@54.@"WVhZ.@54.@!UW}Wh}@5~@jP7i@PP=~@u.@.@Ph8q@h8i@hc.@P4,PF_YE=8.@}]M@jh.@i8.@9M@u)hh.@8.@hh.@=8.@|*jj58.@]e uP58.@ii U=8.@|58.@dY8.@=4.@t54.@n`Y4.@U=b@uEP?Yb@E,EP?YE+b@i2EEb@EÐUWV} EujjV=t 3u}fftF=.tjFPW4 GU@W} Wuu3}Wuh.@EP29@|EPh.@hJ@ h(~@EPcAu,~@%=@u딐UWV} DžƅP7YEuh/@h/@PX2h/@P\tjVjdP t@j|PP0 =u!YEPY}EVL^Y=wC|?$.@9E~wtxEEYEpCEIE}u/,9|,EpC9E~EpC,9E}E,h/@P[u*jbh/@5M@P5@jYYhPuuuuWh/@Vv V7]YUxWVuh/@h/@P0h/@P7[WjdP u$W\YP?Y3W\YPM5YEPPEPEPh/@Plu-|_=wX|T$P/@+;E} t۸U=c@t5c@RYb@;b@/hR7@b@4<1@Pc@tb@b@<<1@u3U=<2@uhT7@uYY= c@u 'u35 c@u u t۸U= c@t5 c@IQYb@;b@/h[7@b@4<2@\O c@tb@b@<<2@u3UP=<3@tb@<<3@u3áb@4<3@NYHEb@<3@=(uMb@<3@E=)u3EME 9EEE Pb@b@<3@BREu b@b@4<3@u$ RU=<4@tc@<<4@u3u c@c@4<4@uH$ אUWV}WMY@PrTYt WVMƋu}U W} EPu1=uu Y}ÁtDE#;t8U;u E#;tU;uE#;u3M@ 또UPWVS}EG@uJGG@u=+t =-u EGG@u 3]u}ø0+Ëk 0+GG@uރ}t뾋븐 W3ÐW3ÐW3ÐT$8upT$ Rt$ s& ÐUW} }WEPN}ËGGU/ÐÐ/ÐUPWVS}EG@uJGG@u=+t =-u EGG@u 3]u}ø0+Ëk 0+GG@uރ}t뾋븐UPWV97@ueE97@}#E 7@ =-u E Au u}h7@E 7@4 u 7@΋E 7@ 7@=7@:tWu =7@tOLjEE E 0(JYPE 0jT h7@ JYPh7@jT jEPjT E 7@ 7@@7@u7@7@?F=:7@@U 7@t7@@U 7@7@7@@7@;E|l=7@tOLjEE E 0EIYPE 0jS h`7@*IYPh`7@jS jEPjS 7@?GE 7@7@ 7@7@8E 7@ 7@@7@u7@7@7@UWVS} 3G %=utG9Gu!?uG DuWLY 3G M@UG u;uHYEPuG PR E]u}WLY=u~GEU+Ѕҋ~Sjuu@ Et E+EH؋)G?}3W M@+W;}WrMY}t*G @tWKY=u ]VEgUWt7u*uNj}ÐUWEE EPMYtujW Nj}Uu%PYÐUWVS}}~EE ;ur;u s 3]u}Ã?'W^Y=uE H3u U+ЋO;7sSwuP ÉE)G?}3W M@+W;}WLY+Å{Eh jQ3ÐU$WVk'|Yjh7@AP|Djk$PV\L j$EPVuE =$tVKY3uԋ}VKYE܄u3jEPhTc@ \c@Tc@ŐUWV}t9~u=Ƌu}U=7@uh7@h7@]E7@57@YU=7@t57@FY7@UW}G?t=:t = u= u ?tGNj}U=7@uh7@h7@D7@u357@YUWuhh`c@_ =bg@WQY=fg@WBY=:j EPW EWCYPj:WC 9Eu`WY}| `9E~aEjg@t4=:t*j EPW* EWCYPj:W,C 9Et3}WY}| `9E~aEng@=vg@=zg@W^Y=~g@WOY=g@W@Y=fg@G?t =,u?tG=rg@bg@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V M@+V;}V/HY}u +gEEvÐbMÐUWV7@(:@9M@s M@<7@uAYtVujsL jh7@jbL WAYPWjOL jh7@j>L u}ÐUWVSEPfYE =ruEEE =ruEEEg@?t-g@P*GYPh@rڋE =ru3EVFYuFYujS SFYjuhJÐUWV} /At?F EF F F3҉VM@=at=rt=wt3u}ÀN jjuE N G=+uf N ȸ*VJL$Q3ÐUPWE EI@uI@t* I@hI@uu$ I@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UE@C@Ui@C@mNA90@C@%ÐUW}W@YjjG PD GGg G tg }ÐUPWEEE@ uE@ t(EH uuu # E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PC +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G PDC ECG t8W?YG t g GGuu G PB E9Eus3lUPE EPuhI@d UPEEPu uI UW}EEEljEEW;YEE2uu EP }ÐUWVS}u DžPh@Th@ Ph@WA =~*uDžF DžDžk -0FG@u؃u DžÉ=lt h9uF؅[uPVG@tDžlH@؃nt_=Th@uVctQ[tLPh@} W@ Y GGG@u Ph@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfPh@fl9uEEPPh@{EEPPh@dEPWSt'=Th@tu /$Fu G@td=Th@uPh@} W Y GGG@u Ph@WL=uTh@y%uF؃%Ph@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$DC@EE EEPh@}WyY3]u}ËGG=+t=-t =0t8EMPh@} W(Y GG؃0i9E }9EoPh@} WY GGEYuj0Yt,j/WuFjhD@(E}]̋uЋ}3ME=t!E=tE=t E=u j EPVA u u#YCj$EPur =$tu#YyWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_UPWVu\#Yt8EPu|%E%= ujhD@H'} 3u}þfEft EU;uuhD@hh@kEPhh@EPhh@|=EU;u1E%= u!t EU;uWl"Yh@\jEPW =TjjW" NuW-"Y3 N'3Ð6'3ÐV|$3O|$ ыt$ D$^ø?&Ð<&Ðjjt$ 9rãM@ÐUW} 9EtFG tG9GwG9Gu+?u&GuW= YGHGUE}ø :&3Ð"&ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  M@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlF@Dž\9PtP؉PNKPPoYh~PW =uh~PhG@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}h@Eh@E8I@s3UtE]h@E@I@EHI@EI@r5EI@rI@EI@AEI@s6EE]@)EEI@r݋EE 9P܃}t؁h@i@vi@EI@th@r05}fEf fEmE]mE܉E@0Ee I@];r&=5|+h@uh@1}tCF0N<9h@]Ћuԋ}ËEE0]@EEsEE 9P EEEEI@MU]vEu}fEf fEm]mE܉EFUR0EMm]EI@E5I@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G M@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W M@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}M@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WM@UWI@;=M@r3}ÃG uUWI@ WY;=M@r}UWV}tlG t6G t3WVYG PY}M@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG M@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G M@+G?}3W M@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G M@+G?}3W M@+W;}WY3UWV}G G u}}&u@@GW M@*h!YGt@O G WM@GGVYtG uO @u}G @WRM@UWV}G M@+G}G M@Wu};7}7𐐐*3ÐUM@EEPhTu } EM@3ø6ÐÐU WVSE9ET=M@u %s!%s (%s) (SYSTEM %s) copy succeeded %s from %s!%s arrived receive file - %d R %s %s %s %s %s %o %s dummy%s!%s --> %s!%sQUEUED/usr/spool/uucp/.Xqtdir/usr/spool/uucp/.Xqtdirsend file - %d can't get status for file %s directory name illegal - %s uucp can't read (%s) mode (%o) D.0S %s %s %s %s %s %o %s %s %s!%s --> %s!%sQUEUEDuucp.cwauucp.cuux -C %s %s!uucp -C \(%s\) uux -C %s %s!uucp -C %s!%s \(%s!%s\) \(%s\) \(%s!%s!%s\) \(%s!%s\) \(%s!%s\) cmd: %s QUEUEDUsage: %s [-c|-C] [-d|-f] [-gGRADE] [-j] [-m] [-nUSER]\ [-r] [-sFILE] [-xDEBUG_LEVEL] source-files destination-file %s pwd 2>&-PATH=/bin:/usr/bin:/usr/local/bin r#@$#@,#@5#@=#@G#@L#@R#@Y#@a#@ h#@ q#@ z#@ LOGNAMEMACHINECALLBACKREQUESTSENDFILESREADWRITENOREADNOWRITEMYNAMECOMMANDSVALIDATEPUBDIRlogFind called (name: %s, rmtname: %s) machine/login match failed_Request (%s), TRUEFALSE_Switch (%s), TRUEFALSE_CallBack (%s), TRUEFALSE_MyName (%s), mchFind called (%s) OTHER_Request (%s), TRUEFALSE_Switch (%s), TRUEFALSE_CallBack (%s), TRUEFALSE_MyName (%s), _Commands %s yesyesyesyesyesyespermission.c/usr/spool/uucppubliclist (%s) num = %d /usr/spool/uucppublicrmail/usr/lib/uucp/Permissionsrcan't open %s /usr/lib/uucp/Permissionsname (%s) not found; return FAIL //usr/lib/uucp/Permissionsrcan't open %s /usr/lib/uucp/PermissionsvalidateFind (%s) FAIL PERMISSIONS file: BAD OPTION--permission.ccmdOK(%s, ) ALLALLbname=%s NuLLNot a directory (%s) and nomake = TRUE. mkdirs(%s) failed altos/etc/systemidr TOO MANY SAVED C FILESgtcfile.ccommit %s %s/%sto %s gtcfile.cgtcfile.cchdir(%s) chremdir.c%s/%s/usr/spool/uucp;&|<>^`\('"{} %s mail '%s'PATH=/bin:/usr/bin:/usr/local/bin w%s r ===== stderr was ===== ===== well, i tried ===== r ===== stdin was ===== ===== well, i tried ===== LOGNAMELOGNAMELOGNAME=%s/usr/spool/uucp/.Admin/errorsa/usr/spool/uucp/.Admin/errors%sERROR (%.9s) pid: %d (%s) %s %s (%d) [FILE: %s, LINE: %d] ASSERT %sERROR %.100s %.100s (%.9s)ASSERT %d/%d-%d:%2.2d:%2.2d/full %s %s/%s/usr/spool/uucp/.Corruptcpmv.c/%s/%s/usr/spool/uucp/.Corrupt/mkdir - %s .CAN'T STAT PARENT DIRECTORY %s errno %d CAN'T CHMOD PARENT DIRECTORY %s errno %d /bin/mkdirmkdirmkdirexpfile.cexpfile.cexpfile.cCAN'T CHMOD PARENT %s CAN'T SETUID %d expfile.cCHOWN FAILED %s errno %d expfile.cIllegal filename (%s). ./..../....gename(%c, %s, %c) null sys -> %s %c.%.*s%c%.4x%c.%.5s%.4x%.3xfile - %s SYSLST OVERFLOWgename.c%s%s/usr/spool/locks/LCK.SQ.gename.c%s/%s/usr/spool/uucp/.Sequencer%4xwgename.cwgename.c%.4x gename.cgename.c%s seq now %x %*d %s/LTMP.%d/usr/spool/locksulockf failed in onelock() ulockf file %s Lock File--can't read (errno %d) --remove it! Lock File--bad format--remove it! Lock File--process still active--not removed kill pid (%d), returned %d--ok to remove lock file (%s) ulockf failed in unlink() TOO MANY LOCKSulockf.cCAN NOT ALLOCATE FORulockf.c%s.%s/usr/spool/locks/LCK.%s.%s/usr/spool/locks/LCK.%s %s %dULOCKC%s: link(%s, %s) ULK err %s %dULOCKLNK%s %dULOCKFfilelock: F_SETLK returns %d, errno is %d filelockF_SETLK failed - lock existsfilelockF_SETLK failed -- ENOLCKfilelockF_SETLK failed -- EFAULTfilelockF_SETLK failedfilelock: ok /dev/null/dev/null/dev/null-s%s/usr/lib/uucp/uucicoUUCICO-r1-s%s/dev/null/dev/null/dev/null/usr/lib/uucp/uuxqtUUXQT%s/%sa%s %s %s (%s,%d,%d) %s (%s) %s!%s %s (%s) (%c,%d,%d) [%s] %s SM/usr/spool/uucp/.Admin/xferstats/usr/spool/uucp/.Admin/xferstats/usr/spool/uucp/.Admin/xferstats%s/%sstat %s QQQQQQQQQQQQQQQQQQQQQSSSSSSSSSSSSSSSSS%s/%s/usr/spool/uucp/.Statusrwsystat.c%d %d %ld %ld %s %s %s/%s/usr/spool/uucp/.Statusr%d%d%ld%ldRETRY TIME NOT REACHEDNO CALLRETRY TIME (%ld) NOT REACHED (T@TXTpTTTbad access type %dsysaccess/usr/lib/uucp/Sysfilesr service=/usr/lib/uucp/SystemsCAN'T ALLOCATEscansys: Systemssysfiles.c/usr/lib/uucp/DevicesCAN'T ALLOCATEscansys: Devicessysfiles.c/usr/lib/uucp/DialersCAN'T ALLOCATEscansys: Dialerssysfiles.c/usr/lib/uucp/Devconfigr service= device= systemsdevicesdialerspoppushunrecognized label %sSysfiles|Devconfig::%s//usr/lib/uucpCAN'T ALLOCATEsetfile: tptrsysfiles.c::CAN'T ALLOCATEsetioctl: tptrsysfiles.cuucicoruucicoruucicor: option requires an argument -- : illegal option -- --/etc/utmp/etc/passwdrrUnknown error: ,:@4:@>:@X:@h:@:@:@:@:@:@:@:@:@;@ ;@,;@B;@N;@Z;@l;@{;@;@;@;@;@;@;@;@<@<@'<@=<@L<@X<@o<@<@<@<@<@<@<@=@=@6=@Q=@`=@=@=@=@=@=@=@=@=@>@">@/>@E>@Z>@c>@l>@>@>@>@>@>@>@>@?@#?@1?@M?@\?@e?@n?@?@?@?@?@?@?@?@?@@@.@@S@@s@@@@@@@@@@@@@@A@A@A@ A@)A@2A@;A@DA@NA@XA@bA@lA@vA@A@A@A@A@A@A@A@A@A@A@A@A@A@B@ B@B@ B@*B@4B@>B@HB@RB@\B@fB@pB@zB@B@B@B@B@B@B@B@B@B@C@C@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c vvvv6v v6v6v6v6v6vv6v6v6v6v6v v6v6vv??GA>???/bin/shsh-cD@D@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFƕҕޕ!111111111HќߗPHbќKPDɗ~ߗ-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@M@Ē@D@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0.file gcrt1.s.text<.datat@.bssM@.commentM@.init_istart.filegvers.c.text.datat@$.bssM@.comment.file!guucpdefs.c.text.data@d).bssM@.comment.file:guucp.cmain$%cleanup $p'copy8 $)syscfileh+split -ruux$O/usage=$$1.textT.data@|.bssM@.comment@.fileHggwd.cgwdd$>uidstat=$3@.textd .datax"@4.bssM@.comment.filegpermission.clogFindp$~LmchFind$`NN$OPfillFlds RfillList-$TuserFind2$LV~$X%; $Z2 b\getuline~!$^nextargY"bR`="$ bmyName" )dcallBack"$ fG"$ hcmdOK"$5jR'#$ElcmdMatchl#$!nchkpth$$pchkperm%$r.textp^.data"@ .bssM@, .comment _FldsM@_Kwords"@_RPaths(N@_WPaths|N@\N@f$O@pxO@zO@_RequestS@_SwitchS@S@_MyNameT@_Pubdir#@Fp#@.fileggetargs.cgetargs'$bsfix( X.text'.datap&@.bss X@.comment(.fileguucpname.cuucpnamet) .textt) .datap&@.bss X@.comment0.filegversys.cversys*$ .text* .data&@.bss X@.comment8.fileggtcfile.csvcfile +$gtcfile+$O+$'wfcommit&,$wfabort.$0.text +K.data&@P.bss X@.comment@ncsave X@csave$X@.filegchremdir.cchremdir0. mkremdir. ..text0..data&@,.bss[@.commentH.filegmailst.cmailst/$~setuucp0$\.text/,.data'@.bss[@ .commentPun[@.filegutility.cassert0 errent0 logError1  2bG.text0 .data'@.bss[@.commentX.filegcpmv.cxcph2$xmv3$y4 xfappend5$wuidxcp{5$.texth2?.data(@4.bss[@.comment`.filegexpfile.cexpfiled6$ mkdirs`7$ mkdirs268$ckexpfQ<$0canPath<$.textd60.data(@<.bss[@.commenth.file/ggename.cgename=$Xgetseq>$A!sysseq-B$F#initSeqsB %.text=q.data*@.bss[@.commentpsyslst[@nsys*@.file=ggetpwinfo.cguinfoB$`3gninfoB$=5.textB.data+@.bss^@.commentx.fileYgulockf.culockf$C$AC$CstlockE ErmlockF rGdelockF$QImlockKG$zKultouchG CMonelockH$OfilelockI$IQ.text$C .data+@.bss^@@.comment.fileigxqt.cxuucicoK #]euucico+K$_xuuxqtK a.textK1.data-@.bss^@.comment.file}glogent.clogentL emsyslog5N  ocloselog>O CqO$Xs.textL \.data4.@.bss^@.comment_Lf4.@_Sf8.@.fileggnamef.cgnamefO$^gdirf:P$.textO .data.@.bssb@.comment.filegsystat.csystatP callokR$,.textP/.data.@@&.bssb@.comment.filegsysfiles.cS S T$scansysT scancfguV getline4W$W$tokenizeCX ]X bsetfileZ setioctlZ sysresety[ \devreset[ W,\ .Z\$~ \$t]$P#]$n/2^$P;^$ngetpop^$getpush_$F.textS$ +.data<0@$.bssb@d.commentSystems<0@Devices<1@Dialers<2@Pops<3@Pushes<4@nsystemsb@ndevicesb@ndialersb@npopsb@npushesc@fsystemsc@fdevicesc@fdialers c@tokensc@tokptrPc@.filegstrsave.cstrsave`b1eaccess5`$.text`.data`7@.bssTc@.comment.filegatol.catol`$.text`.data`7@.bssTc@.commentTc@.filegchdir.s.textxa.data`7@.bssTc@.commentTc@ .file gchmod.s.texta.data`7@.bssTc@.commentTc@ .filegchown.s.texta.data`7@.bssTc@.commentTc@ .file gexecle.s.texta(.data`7@.bssTc@.commentTc@ .file,gfputc.cfputca$0$.texta0.data`7@.bssTc@.commentTc@.file6ggetegid.s.textb.data`7@.bssTc@.commentTc@ .file@ggeteuid.s.text(b.data`7@.bssTc@.commentTc@ .fileJggetgid.s.text8b.data`7@.bssTc@.commentTc@ .fileVgatoi.catoiHb$N.textHb.data`7@.bssTc@.commentTc@.filedggetopt.cgetoptb$bZ.textbd8.data`7@D.bssTc@.commentTc@error1`7@error27@.filepgfputs.cfputsXe$Fh.textXeH.data7@.bssTc@.commentTc@.file|ggetpwnam.cgetpwnamfh1t.textf4.data7@.bssTc@.commentTc@.filegcalloc.ccallocfb0cfreeg .textf@.data7@.bssTc@.commentTc@.filegfread.cfreadg$.textg.data7@.bssTc@.commentTc@.fileglink.s.textg.data7@.bssTc@.commentTc@.fileggetlogin.cgetlogingb.textg .data7@ .bssTc@ .comment`c@G7@.fileggetpwuid.cgetpwuid|hh,.text|h,.data7@.bss`c@.comment`c@.fileggetpwent.csetpwenth 3endpwenth $pwskiphbDgetpwentCih9Q|ihw.texthL0.data7@.bss`c@(.commentg@PASSWD7@EMPTY7@pwf7@line`c@passwdbg@.filegfgets.cfgetsjb.textj.data7@.bssg@.commentg@.fileggetuid.s.textk.data7@.bssg@.commentg@ .filegcreat.s.textk.data7@.bssg@.commentg@ .filegopt_data.c.textk.data7@.bssg@.commentg@.filegperror.cperrork }.textk .data7@.bssg@.commentg@.filegerrlst.c.textll.data7@D .bssg@.commentg@.file$gpopen.cpopenllhpclosem$.textll.data0C@.bssg@.commentPh@[g@e0C@shell8C@shflgAj6vvhCTj6v됐jhGvjhKP}6vhT6v[6vh6vh6vh6vh6vh6vhX6hW?QPvh7ovv#QP6㐐jjvPPh9@vjvᐐ6h(6h&vh'vh%x6vv6jjyjj}vvhDjv>,P PvjhFv, tjv;P뾐vvjʐ5@6h3N jvv PPvhLjvOPvvvOPvjv+PXPjvNvp tOPvjvvPkOPvvjvvjv+PPjvv tvvjvPvvvjƐvvvhPjvv됐vvNPh  jF6h[q3$j6gNj6[NPv/O@D@j63N6h66hS5@vh3$@d X 8@ht|$X @ $X $ 4 @ P X ` X l l l |  , 0 D X P \ d x      $ 0 L X d p X $ @ H d x @  H \ h U @-0@H @T@=@th@j}LPhi@ }( 3`o@=@t h@hLPhi@ `o@=@th@hRLPhi@=@th@j;/LPhi@r ;|`o@=@t h@hKPhi@3 ==@t h@hKPhi@  =<@t hi@a==@t h@hArKPhj@ A=<@u hj@==@t h@hK&KPh(j@i Ks=@t h@h+JPh8j@3 +==@t h@h*JPhHj@ * =@t h@hVJPhXj@ V@3=@t h@h3JJPhhj@ 3@ =@t h@h4 JPhxj@M 4W@ =@th@h4IPhj@뾐@2=@t h@h2IPhj@ 2@1=@t h@h1ZIPhj@ 1@.=@t h@h.IPhj@] .g@/=@t h@h/HPhj@ /'@0=@t h@h0HPhj@ 0@-=@t h@h-ZHPhj@ -@Z=@t h@hZHPhj@] Zg@Y=@t h@hYGPhk@ Y'@=@t h@h)GPhk@ )@=@th@h)ZGPh(k@뾐@=@th@h)*GPh8k@뎐@=@|h@h)FPhHk@W@ =@Hh@h)FPhXk@#@!=@h@h)FPhhk@@!=@h@h)ZFPhxk@@=@h@h)&FPhk@=@t h@hXFPhk@C XM=@th@hXEPhk@ʐh@PI7@=@t h@h@EPhk@ @=@t h@h[XEPhk@ [h@j @$hk@h@1@=@t h@hSDPhk@< SFh@j h@'$hk@h@ʈ@=@t h@hHDPhk@ H =@t h@hT\DPhk@ T =@t h@h?(DPhl@k ?u =@t h@h=CPhl@7 =A =@t h@hCCPh(l@ C =@t h@h"CPh8l@ " =@t h@hGXCPhHl@ G =@t h@h>$CPhXl@g >q =@t h@h8BPhhl@3 8= =@t h@h;BPhxl@ ; @I=@t h@hI~BPhl@ I @J=@t h@hJ>BPhl@ J @M=@t h@hMAPhl@A MK @L=@t h@hLAPhl@ L =@t h@hPAPhl@ P @O=@t h@hOJAPhl@ O @B=@t h@hB APhl@M BW =@t h@hD@Phl@ D! =@t h@hF@Phm@ F =@t h@h5l@Phm@ 5 =@t h@h,8@Ph(m@{ , =@t h@h:@Ph8m@G :Q =@t h@h<?PhHm@ < @=@t h@h7?PhXm@ 7@=@th@h7R?Phhm@뾐@=@th@h7"?Phxm@뎐@=@|h@h7>Phm@W@=@Hh@h7>Phm@#@ =@h@h7>Phm@@ =@h@h7R>Phm@@ =@h@h7>Phm@@=@xh@h7=Phm@S@=@Dh@h7=Phm@@=@h@h7=Phm@EP}(tU=<@tLh@<E |8@=@t h@h6#=Phn@f 6ph@j @$hn@h@@}(u3=@t h@h9<Phn@ 9 =@t h@hR<Ph(n@ R@l@@. do@y h8n@.@@=@ h@j;<Ph@n@ ho@y hPn@-=@th@j];PhXn@% ]Ð lo@y hhn@-=@th@j);Phpn@ )Ð=@{u do@&=@[u ho@=@(ulo@=@t(h@@@P-;Phn@p @@Ð@@ƀ@\@@ @@h@hn@w@T@@ƀ@h@t@j/=@t h@hQ:Phn@ QÐ@@ @@=@|h@hn@ ,@T@E f].$%@T@@ƀ@h@謄@@ƀ@ @@ƀ@h@j  @$5@h@}@=@t h@hNz9Phn@ NÐh@hn@%+`o@@@ƀ@"@@ƀ@ @@ƀ@ @@ƀ@ @@ƀ@ @@ƀ@@@ƀ@\pEPho@h@葇 @@M@@ @@=@h@ho@uh@o@5\o@ # 4p# @ @t$d$d$d,` pl<p @@t(\,l4h 8 l p!!!"\""##x##$$$$$%%0%H%"t%rÐU@@@ÐUV=@l@v @@0I=Xo@u@@-Xo@y5Xo@XXo@H@ u @ u3=po@@r po@@po@po@Έ^ÐUE4@ u @@@ 4@ po@=po@@s po@@ÐU WVE=h@u E@h@@@Ep@5@5@=@ u E=w@}FE ǃ=p@EM?@@ 8=@@@Pp2zp@nEMP뽐E8w@YEMEEEE=w@~]EEE@9EEk 0@;Ek@ 0@=0@MEP}w@w@+Eňw@EEEE@9EwEk 0@;t,E@EE@9Ew@Ek 0@;u1Ek@ 0@=0@]Ek@ 0@w v 8E=w@(E@=@E-@@@ƀ@@@^_À=@u@l@3^_ÐC@@ >\o@y5\o@@P@ \o@QAU}u3ÐE8tEM 9uÐUÐU\o@y5\o@EPWÐE \o@QAÐUu%ÐUujjjh. Ph. PhU. Ejjh . PuhU. E@PTk@ |PjE u h@yE @IhuusuExPj{M u h$@jjUM u h<@Eu uM`EǀlEUWVEǀdEƀREx8EtEǀPjM u hT@A3EMx F;~EMh9Hu EƀR3EƄ0F|hju= Md} t_EO3EM F;|EȊRPEdtdMEd^_ÐUE@ =t\= =E @H@@M 8@ÐEpE@MHËEpEp{E@MHE@=|=~=UtEp hp@h! ÐUE@ =t<R= |`=Y}tkuEÐEpԋEpEp=|=~=UtӋEp h@h&! ÐU WVuu3{}-uN ~J7@tA>t<7@E%| h@GEfM8@9ErF!| h@rGM8@FFE {Gƀ8@=@tjh8@uhؒ@Q}tuEh8@w^_Uuh@h ÐUWVu F == =kF EN pkF ENt38@GE9h}@V@PjE u h@;kF EMxE @EhO |i<8@uEE8搐vu^_Ðvuvܐ=|=~=Utv h0@h ^_ÐUWVuF == =F<8@t8@@~ uF8u3^_Ð^_Ðv ېvpϐv` uvvLv? t =|=~=t=Utv hL@h ^_ÐUEx t`@E@ =t)=t=t=t =UtuuËEM9Hup tUVu 8Eu ^Ð>u3^ÐUWVu} lt jV`EPt ^_iEE uPuV EPuGu3^_ÐUSWVu} ltjV `E=H@L@}EPt E+ǣL@EiME uEPuV[ Eu=L@|>=H@^_[ÐEE8uEPt E+ǣL@=L@}ElEEEd9E~EPj u hh@0EEЋEE9E~޸d`PREEƄE}|G3^_[ÐUSWVu} ltjV `EL@l}EPt E+ǣL@EiME uEPuV Eu=L@~;=H@^_[ËEE8uEPt E+ǣL@=L@ElEEOEd9E~EPj u h@pEEЋEE9E~޸d`PREEƄE}|G?3^_[U=@tuh@E@@D@38@ uh@h/E=8@t5@@5D@h@hÐUPPÐU8@= tvl$(^+5<@jh" Es8@uÐ[8@jjh! Pא;8@jjh ސ5<@Pjh5<@Pjhr8@hjh8@j鐐8@)u%8@h@nPjhLE=8@) 5@@5D@h@h(5@@5D@h@h Ð====뱐U8@$t(t= |=~EÐPuhU] PÐU=8@u58@PPuh PÐEÐU8@=t=tN=t/EÐS8@juh PÐ+8@juh֐8@juh뾐UV@@@@+t-$tJl t0F^ø^ø^ø^ø ^ @@3}@@@@tu nu fu ru bu \u \m@FЉX@@m@t\X @@@@ 0X@@m@t#X @@@@ 0XX5<@iE@@8^uE@@E@@@@tuEEƄ\ cnuEEƄ\ KfuEEƄ\ 3ruEEƄ\ buEEƄ\\uEEƄ\\m@FЉT@@m@t\T @@@@ 0T@@m@t#T @@@@ 0TEETI u5D@hL@ u5D@hp@h EEΈ\@@@@\\]uEƄ\\Pi<@}j_()*.?[\^|J^ÐUWV3 8@FE9h}@E ME0E<8@u@E8@GE98}FE90k EpE= t=uEk EM9t} u}t }u~}u}uo}uEk Etuv uG}aEk EtuJ >}4}'Ek ExE@8@Eh<8@t G48@N }G9}|>E 8@9 tFE9d|;E8@EM;uۿiE EEΈ^_ÐEd|<ǀdEǀlF}E搐Ed3EidE0F|@PjLE u h@EdMUiE EEMd3E 8@ F95@}Eh<8@tEdEƀPEdEƀPEd^_UV3E߽FE9d}3Ek x跽FE9h}P袽^ÐUWVEkEܔ@@E}e|^_ÐU@@\@@ @ÐU=@t@0@0h@螽 `@d@E|@@w=@@=@t5@5@h@; =@5@C@8u @느5@ t5@Ԑ\@ @=@t5@h @迼@8-uxu@@7h2@5@@ u5@h4@hw `@$5p@_ @5@h u E u E8@9EuEh@@uxtprh@@h@ @Hh@@l@@ h@$5l@c^ @p@@ h@$5p@:^ @Ð=@@t5@蠺@93U WV@ uE EyuEH@ uuуt uWwEE$EH@;t&t!EEψEyu萹א@;tuAE E;EsuhD@h E=@tduIE9EuA3BEy u% EH@ ttEE QPuhh@ uE9Eu 3^_Ð^_ÐUuh@EP 5x@j`@$h@EPgZE@%uE@ u_E=@tjPuh@^EÐUEEEE8=uEh@j`@$uuYEuP\Ep  tEpEX EH=@tjuuh@躸U WV=`@h@@u#@%u5h@^h@ph@E@0賸~@0V%E@E< E> t > t> uF>E}ekE@u-kE@t kE@4kEǀ@kE@kEǀ@F> t> t > t>u2b>t E}e|R}e|5@hȠ@hP 5@ucE@`@E@kE@u-kE@t kE@^kEǀ@kE@kEǀ@F > t>t 8Eu2F~,0Ek@ܔ@;Er;Ep  tًEpj]EVWx u॥_^H벐@$5t@X @=@t@Eܔ@&Ep-ܔ@Ph@ Ek@ܔ@;Es^_ÐUWVkE ܔ@kEܔ@5Fu~tvFFF@F;w^_ÐU}e|5@h@h^ u5@qE@E$5t@W @ÐU Eh@EE8u3Ð=@t15@u 8 tG5@K5@7ju Po@u \@=@tu uh$@w @`EEE}e,kE@u-kE@t kE@蝳kEǀ@kEǀ@FkEM@=@tuhL@u5@ tq@ǀ`=@t5L@5H@h\@蜳 H@+EPuu H@+E@EE@L@H@E=@tuht@Cuu蔳@M`EÐU WV=d@OĽ@EJkEܔ@PYFG uET@s@8FG uEET@w#kE@%ukE@뙐=@t j5h@@Ph@Th@@h@Ľ@ @H=@t j5h@@Ph@ @ ;s5@hġ@h =@tjj5@h@Ʊd@^_U}|}e|uh@h Eܔ@ÐUD@D@5X@h@h@趰 u$u uuuuu uh@葰$5`o@h@h@y =@@t5@@h,@h@X h<@h@F@@UhH@hU}tuE@uj}j{5do@) j]j[5ho@ j)j(5lo@ÐU}uu hd@h@觯 Ã}~u uht@%}u uh@̓}}uEPh@h@`ÐUWV5X@h@h@@ u(u$u uuuuu h@$h@h@ =@tv@`@vcP@h@h@ͮhĢ@\@0讯 t\@0hȢ@h@蜮 hҢ@h@芮=@t@phԢ@=`o@t5`o@h@h@P "}t=@tVjf^_U = @$@$@ po@HE=@v8 uM}@vE8 t 8uEE8 th@h@购po@HEME9ErOE8 tG8 tB8 u; @yh@EEPEE @@E9Erh@h@58 @yh@EEP蟬ېEE @@po@9Erh@h@߬po@8tUF}tK}tE @yh@EP8E @@uGWE u @yh@j  @@po@@UE(t=)t@[t#]t&{t }t Ðdo@& do@ho@ ho@lo@ lo@U=L@!uL@uh(@=L@"u&L@uhD@jR h@]EU=@tjjuh\@ÐUEE8tm@uE8=ÐUWVu3EE> t > t> uF>u3^_Ð>+t>-uFm@u>.um@tGFm@u&}>.uEFm@tEFm@u u}r}h>et>EuiF>+t>-uFm@=uFm@u+E+Eu M!I=6> t > t> uF>^_ÐUEEEEE X@}uPhp@hF Xo@}?E @8-0E @x E @@SRFtSEME h@E p*Xo@ uE ph@h E @EME cE @xt4E @xtuE @xu E@ǐE @E붐ME E @8tuE @xu E@덐E @@uh@h ]dtӃf I=Xo@u1=@tE ph@èE @@EME }~E p E X@E@E @=@t05@h@Y 5@5@C}tuO @\@ @I}u%hdPj4%=@tjj5@@h @ݧ=@@u0 @5@E pU5@@_ÐUVEPO uh$@hjF`o@F^ÐUEEÐUVjEF ^ÐUVjvEF E F^UVjREF E FEF^ÐUVj&EF E FEFEF^UVjEF E FEFEFEF^ÐUVuuu u^ÐUVuu u/ ^ÐUVu u^UVu u^UVuuu u^ÐUVuuuu u^ÐUVuu uw ^ÐUVuuuu u^ÐUVEEM Huj} u ^Ð^Uj5h@ÐUE8u?@E@u0xtpE@CMAE@EÐUV5@uu uh@^UV=@@tE^Ð}uE ^Ã} tuv~uE FϐUE@ EMHEE EE@E uEEX =@tuEph@@解 ÐUD@EE E@EE}tuE@p u֋EÐÐU}| }\~uh@h@p @ÐE@UE8u  u 08ÐU WV}u @^_ÐEGt=d@u^_ÐEx ~x \}@ tQ8u@ 6u @^_Ð?uh@hPu W1~u~t55@W ~#F8u@vuhAV tyuW롐~XF8u@ vctuh(@h WcU,WVE8u E@ E0NE@EE@ uuhD@h EEEE؋@E uE@ GE=@t$d@-@Puuuhd@赟jE;EEP辞EjE;EEP襞EEEuEE܋MU=@t@Ep@t @ E@PEp puh@E@ tphЫ@h E@uPM܋U E܋MUExu PE܋E؋@E tA=@td@-@Puh@{ E؃8@E܋E9E}=M܋UE܋M@@E܋M@E܋M@븃d@=d@ Aruh@h d@MHd@MHd@M  d@A =@td@-@Puh@蟝 E@8u E@@EpE=@td@-@Puh0@P ESE܋MMԋIHE܋M`E܋MMԋIHE@EԀxu PE܋E9E} E@ d@;~@pE@Ph@hE d@IUVE =8=;=>t=G=KtxE8tZ8u E@E0F%uF V?OB@@~u VY jhARPE8 8u E@E0:F%uhF%uF V"@Pd@p =F%uF V?d@@ X d@@ HFt/F%uF V?Pd@p a=BFt9F%uF V>$d@p ; @~u V ̪@^Ð@^áL@^ál@^u h@h ^U WVh@! ExD@8u E@@EpEx|u@1G%uG W>PEp+Eu WE }u E uh P E } E8t$PE8E@h@@uxtpBh@@P5@h@ @Hh@@d@`@YE8u5@E >PE PE8>E0?P ;E $V9 @^_UVu=`@u3^ÐU WVu8u@ 6ƅF}uE@%u E@ u<EPP躖Ext@0P蛖Exu P4E@E t8w@zGuJ=@twhȬ@GutwUGgO4Gwjh@$h@Pf6EE@u W~E^_U E8u E@E0fƅE{uDE@%u E@ u4;EPPFExt@0P'Exu PE@E t8w@zP4xu Pu @ÐUxWVE@8u E@@EpYGuwh@h- EEmu F%uF V:EPEP+~u VExt@0EPE@E t 8u@됐wEP5Eu Wr}u ,@^_á @^_ÐU WVE4E} FuE4EE@8u E@@Ep!F%uF V9EE8upUE~u V} FH@+E@E=L@}EE$5 A05 @L@$5A5 @FE^ ^_ÐE@8u E@@Ep-G%uG W"8E=@u/uPP蝼@u=9@s5@u t[=@t5@ @u8@5@uuAP@u5@UEcW"U} u}t} u}u @^_Ð,@^_ÐU WVE8u E@ E0~ E~u VE =*t=+tt=V}t @^_ÐE@8u E@@Epe Eu W+}u,@^_Ð}tE@8u E@@Ep  Eu W}tO}Du h@h ^_ÐUWVE8u E@ E0E@8uE@@EpiEGtB@t9G ` ]Eh@s dEh@ME@%uE@ u 5PG%uG W4Pu WExu PE =.tQ=/tR=0tS=1t,=2t =3t&D } @^_Ð,@^_Ð ␐ tڐ uҐ |ʐ ~u h@h ^_ÐUVuFu~tv`FF,AF5,A^ÐUWV=,Audjjdƌ,A uh<@hEkE,AkM ,AHE}d|kE,A@5,AF,AVЪ@^^_ÐU WVE8u E@ E0F%uF V24 uBF%uF V2EP uuhX@h ~u V~WF^_ÐUWVE8u E@ E0ZE@%u E@uH2EPuF1Exu P.Ehl@P/E^_ÐE@8u E@@EpE@%u E@ u0e3   ;~Exu P[Extc@8u E@@EpME@%u E@ uH02EExuPFE}} E+9E~+ljE=@tuuWhp@诊EEED8EEED8EDPuf.EEML8Exu PWE^_ÐU,WVh@]䛋E8u E@E06F%uF V*0E܋E@8u E@@EpG%uG W/EEE܉EWEEE8t EM 8tE8u2E+E@EE]䛀~u V]u$WNEE8tԉEEE뜐VWu_^u+ @E^_ÐU WVEE EuE 8%tE FE x%u%FE E E tE m@tߋE 8ltE;wuh@hw E cwn.$PyEEE xlGldGE xluE~EsEgE[8yxxxxDyDyDyDyDyDyDyyDyDyDy,yDyyDyDyy}u&Ph@V跇 V̇+}uuh@hP E8u@ uDE@E}t2@%u @ !,]EttItDt[t:!VWu_^PVxuWPLEe.PPV轆 ΐ@%u @ΐq,V蟆E E 8>E^_U WVExE8u E@E0WF%uF V+PP ~u VP -FF^_ÐU WVExE8u E@E0fWF%uF VZ+PP ~u V Exuh@Pb @^_ÐEppEPP3u  @^_U$WVE8u E@ E0F%uF V)]~u VO} WtWE@8u E@@Ep=G%uG W>)]蛀u W+EE =tV =t =t:1EE]VWu_^uU& @E^_ÐEmEMEh@uhЭ@hnE}뙐Eh@uh@hBEPEu$i+ @EM|E@h@VWu_^VWu_^p=$9 =-=N=Wt=Xtu h@h UWVE8u E@ E0jF%uF Vj']} &t } %u E} &t } (u"EE$V$ @^_VWu_^Wj$ @EE$VN$ @~u V^_U WVE8u E@ E0nE@8uE@@EpE} G%uNG%uG W"'PV$G%uG W&^ NpGt+G%uG W&PV$>Gt2G%uG W%$V# @u WA^_ËF%uF VZ%]G%uG W:%]웋E =tA=tz=t{=t|= =!PhT@h EE]u WVWu_^V4" @0EmEMEh@uh @hNE}덐Eh@uh8@h"EPEu$I' @EM|hP@VWu_^VWu_^\9$% UWVE8u E@ E0E@8uE@@EpmF%u Vb$G%u  WB$vp~Ewb~EEE@P}EvP;~wEEP)~u WEMHE@~u VE^_ÐUVE8u@8uPE@@SE8u E@ E0^~ u*~u V+E@8tEp.^UWVEx uR{=@t15@u%{ tG5@85@$zju腱P\@u!@V5@蜯  @`E𡨮@ǀ`Euh@EP{z H@EۡH@V= tEpjVyEpjh@$VEPH@Mۈ5L@5H@L@H@xt>uREuh@EPy Epjh@$h@EP<@M`V5@| Euh@EPxy VL t-EpjVx$VEPoEpjh@ԃ E> t > t> uF>/EuF> t> t > t>uEuh@EPx u tEpjumwEpjh@$uEPEۈ Wa>Eu> t >tF;uEuh@EP,x u tEpjuvEpjh@$uEPcEۈF~mExu PuExu PcExtEЀxu PHE@EEX E^_ÐUVE8u E@E0~ u3~u VE@8uE@@^ÐEp*~u VE@8u E@ːEp^ÐUVE8u E@E0~~ u/~u VKE@8u E@@DEp2Ext3~u VE@8u E@ƐEp ^ÐUVE8u E@E0~ t^Ð~u VE@8uE@@Ep~u 5 @볐~t~t~t~kVB]UVE8u E@E0.~u 5 @^À~t~t~t~u VE@8u E@@Ep~ u~sVeUVE8u EE0~u V]Ext@@8u E@@EpM~ t^Ð~u VE@ 8uE@ @Ep ~u 5 @봐~t~t~t~u VE@8uE@@3EpUWVE8u E@ E0E@8uE@@Ep]E@uph@h0 E@EExu PĮ@EEp~u"u W5 @ Į@^_Ð~t ~t~uuWА~u VEE t3pWbE@EE@8gE@@gE}2} EM Į@ @^_ÐUWVEEE@8u E@@Ep E .$F%uF VPrMhȮ@F%uF V$K.EPF%uF V$ @Uḫ@F%uF VZ$3.hЮ@F%uF V*$2$L rF%uF V$K/*F%uF V$02E@@8uE@@@E@pZG%uG WZ$F%uF V6$k)]Wh@oF%uF VP%EE5p@6EE5x@#FtjoPEE]hF%uF Vruhخ@h* -X `dĐ~u VVWu_^Vs @^_U WVExu E@EppEE0jVuG%uG W~Pmu W6~u u@ u@0mv t >uF뒐Ext uAm @^_ÐÐU E 8u@ u E@%u E@ uEPu9E uuh@h} Exu P[EÐU WVE 8uh@hA3F}Vk @tk @u dm uk M9@t-uk @0uk @^_3F} k @u|u h,@h诼 }0uhJ@u kEr}-uhL@u kE0K}|uhN@u 뻐}1uhP@}2uhR@hT@h}t)u xk @k M@k @E^_UVE8u E@E0F%u VE`kE @jkE @t kE @jkE ǀ@kE ǀ@kE ǀ@E}}\kE @tkE @v\k ukE @|tkE @1UkE @P^ÐUEkE @iE}}=kE @tkE @|tkE @1ukE @F빐ÐU WVE@ 8uE@ @Ep 9@%u @!EE8u/@Euu> uE@8u E@@EpEj@%uE@ uPOP&EExjPA\95H@wE@8u E@@Ep)E@%u E@ u>\~&F>uExu P5L@5H@=L@u H@8u=L@t ~t uPZ xu PU @^_Ð>&sFH@EL@H@;EXEEᐐxu P,@^_ÐU0 WVEEE@ 8u E@ @Ep F%uF V EE8u\@Euu E싀`EEǀ`EE@8E@@E@8u E@@Ep)jG%uG W PѝP訑EFW8EpG%uG W EE=L@}u3EE#E܀8\uLx&uFE܋EEME܊ E܀8u׋E8OEEME EE܀8&uEܡH@L@H@;vEE ՐEEEEME܊ H@9ErEEjE܀8\u x&uEEE܀8&uu^_ÐU WVuEVEM <} tFwV] u}t'=Į@uEOHEM GEM <^_Ð3^_ÐUWVuFtvh@h2 Fu+vVv ^vvVhȰ@h F@tvd@-ܔ@EET@v-ܔ@P:=@tKVu ^-ܔ@Ph@v\Ft`@d@fN=@t#vVu ^vVh @#\E V ^_UWVuFtvh(@h Fu+vVv ^vvVhH@hƫ F@tjd@-ܔ@EET@v-ܔ@P=@t?u -ܔ@Pht@J[ Ft`@d@fNFu~tvZFf=@tvu vVh@Zu JF^_UWVuFtvh@h豪 Fu+vVv ^vvVẖ@h} F@t=`@u裡Ft=d@u!Fu+v8Y^ vA t FuN=@t#vVv ^vVh@YF ^_ÐUhWVuFtvh@h躩 Fu+vVv ^vvVh4@h膩 F@t=`@u 謠Ft=d@u)FFu~tvXFF EE^ uVv ^h`@Vv ^<A0EPYEP5FfN=@tvvvVhh@XF^_UWVuVX@PFX uVh@h` VWX^_Ð}fEf fEmmU]E]ÐUPjj*XEtujX@@@=uVjyYPWÐUW}E̲@rEEUIJ@r E GE=EԲ@%ܲ@%@]wE@sE'}UWVSEPRYE =ruEEE =ruEE E(@?t-(@PUY@rڋE =ru3EVUYuUYujSU SUYjuh@h@h@ jQ Y9Eu 3]u}ËE(@SUUYu VUWVE@ uh~PWGH =uh~Phl@G 3W;GYkFL$tÐFT$FUW3E@s E]E@v@u]+E@vE@E%@]EĹ@rE@vnEM]@M@M@M @M@M@̹@MԹ@Mܹ@M@M@M]t$@e]t E,@]t E}EU(W3E EEEEugEu[EEt@EEEE8@E4@EEP Yujhz@jF L@!E}E<@s E]GED@sEEm]utT@L@Eu\$]E\@vE낅tE%d@pEl@bU L@!E룍EPu u = ]Et MEE]EHPEȼ@\$= ]EuE м@]OE.ULWE EEEE,@sE]E4@s<@E}Eܴ@ED@w,EL@uT@E`@E\@8Ed@rMEl@ut@E@E|@EEP.Yu L@"E_E @@}fEf fEm]mԋE̋}E]}fEf fEmE]m̋EĉEE]Ee]E @m]EE]E @m]E@sE]؋EM]@M@M@M]GP @M@M@M$@e}@\$; KU3Ð@@(#)nawk 5.3b of Feb 4, 1988yacc stack overflowsyntax errorbailing outillegal statement,679@ABDFHLMNOPRS(+-/VYZ[{;./012345|=./012345|>./012345|?./012345|@./012345|A./012345|B./012345|D4540)E)*|ghi*qp*npcconlmSoccc)+yz{)+5)+s4Rhihi*j2 /A3ccUs)+ eH>8 :V 2OPccccccc=c6'~c} cxcwBrcG1cc0ccccccc7ccc=Q<:cccccccccccccc `ftuv.cccccc c!cccccccc`qfq'ccccc3C$`G)1TRF``YC`PQIK``````````````````[`C```JC````J`````2```` J-*789HD;E-F!"?#LM@$%&,()+KN *789HD;EC-F!"?#LM@$%&,()+KNJ4dJ 5*789HD;E-F!"?#LM@$%&,()+KN *789HD;E-F!"?#LM@$%&,()+KNCJ C *789HD;E-F!"?#LM@$%&,()+KNCab *-!"#$%&,(C)+NJd J*789HD;E-F!"?#LM@$%&,()+KN _*789HD;EC-F!"?#LM@$%&,(J)+KNJ *789HD;EC-F!"?#LM@$%&,()+K N*789HD;E-F!"?#LM@$%&,()+KNb WXYZ[\]^*C-!"#$%&,()+JNdCT *789HD;E-F!"?#LM@$%&,(J)+KN_d@T *789HD;E-F!"?#LM@$%&,()+KNJd>_T *789HD;E-F!"?#LM@$%&,()+KN_ab WXYZ[\]^*d-!"#$%&,()+TNdab WXYZ[\]^*T_-!"# $%&,()+*NdX-!"#$%&,()+TN_ab WXYZ[\]^*dW-!"#$%&,()+TN_dVT_ab WXYZ[\]^*-!"#$%&,()+_NdUab WXYZ[\]^*T-!"#$%&,()+Nab WXYZ[\]^*_-!"#$%&,()+Nab WXYZ[\]^*d-!"#$%&,(E)+TNab WXYZ[\]^*-!"#$%&,()+NdD_Tab WXYZ[\]^*d;-!"#$%&,(T)+_Nd9T_dab TWXYZ[\]^*_-!"#$%&,()+Nd_Tab WXYZ[\]^*-!"#0$%&,()+N_ab WXYZ[\]^*d-!"#$%&,()+TNab WXYZ[\]^*d-!"#$%&,()+TNab _WXYZ[\]^*-!"#$%&,()+Nd_ab TWXYZ[\]^*-!"#$%&,()+N d*_-!"#$%&,()+Ndab WXYZ[\]^*-!_"#$%&,()+Nab WXYZ[\]^*-_!"#$%&,()+N/ab WXYZ[\]^*d-!"#$%&,()+Nab WXYZ[\]^*-!"#$%&,()+N WXYZ[\]^*d-!"#$%&,()+N .d *-!"#$%&,()+ab d *-!"#$%&,()+ N*-!"#$%&,()+Jab *-!"#$%&,()+ N*H-!"#LM$%&,()+b N*-!"#$%&,()+N *-!"#$%&,()+N *-!"#$%&,()+ N*-!"#$%&,()+N *-!"#$%&,()+ N*-!"#$%&,()+N *-!"#$%&,()+N *-!"#$%&,()+N *d-!"#$%&,()+ N*-!"#$%&,()+ N*-!"#$%&,()+N *-!"#$%&,()+ N*-!"# $%&,()+*N-!"#$%&,()+ Id*-k!"#$%&,()+Nd6k *-!"#$%&,()+N#%&(*+,./*k-!"#$%&,()+ NL*MNO -!"# $%&,()+*N-!"# $%&,()+*N-!"#$%&,()+NSZ\"<?ABO  ukfd[YSR x:  :ML A?Z2 pi  6:1116 /& 4    *% on" " " i/" " =O5d _g% gP   \  N 4&  , & "44V  :wJp> 83g    8 e 8IdPG0D^]LKAVFW'C;D  ""###$$%%& '' ))!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! (                      ;AV{(/@[-+79YZ,DFHLMNPR6SOB;,8:;>GK;=?C<TIJVR9?./012345|*+()YZ+-*/%X[((2((((((};(((((,),)Q))2}T"}|-0?45)[}}R:5/])))(;5)()};5:]R))))))));)))))}TU+" JZyzVWwm OcdRSI!,$&xgei loqstuvaPM8;<CEH9{|}~-#fhk pXr7'(GLK[ nY\^_`NQ1235/):F.%]b60j* lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] illegal nested functionlex %s [%s] return not in functionlex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] lex %s [%s] extra }lex %s [%s] extra ]lex %s [%s] extra )lex %s [%s] lex %s [%s] newline in regular expression %.10s...lex %s [%s] string/reg expr %.10s... too longlex %s [%s] newline in string %.10s...%ostring/reg expr %.10s... too longbad switch yylook %d@@@LL LHLL#LLLKLLLLLL%LLLLLGLGLGLGLLJL!LGLGLGLGLGLGLGLGLGLGLGLGLGLGLGLLILL\RQ\\PNOPP #" %%%GGG$GGGGGG(GGGGGGG)G8GGGGGGGGGGGGGGG [S[Z[Y[X[V[T[W[U[M%GGGGGGBGGGG?G'GGGGG>GG=GGGGGGAGGGGG4GGGZGGGGGG*G,GGG5GGGG+GGEGGGG@GGGGGZGCG-G:GGGGG6GG7G/GG2GGFGGG&GG;GGG<G0G GG3GDGGG9G1G.GG E:B%]E:;BI<EJ<LNE :!"H @#KOMQ >EUC$V:"Z > ? W X#[$\'^%&'FF()*+,-.1o/J=012=3 A452pZFF6 @ >(_)`7893qF >DPPPPPPPPPP F*a+c"*b-g#6z A7{[-h+d.i,e$GGGGGGGGGG,f.j4r%&'4s/k()*+,-./l/0m_012`3a450nPTb6cegb789RhSSSSSSSSSS!Y!Y!Y!Y!Y!Y!Y!Y!Y!YPTTijmno!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!YTpqr!Ys!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y!Y5tt=|vwAx5u5v5w=|=5xAAl5yGGGGGGGGGGGGGGGGGGGGfyzlf=}RRRRRRRRRRRRRRRRRRRRu=~AuRTT=|TATTTTTTTTTTRT======~~~~~~~~~~w@w@w@t@T@w@v@l@w@w@8u@v@@w@w@w@xo@w@o@w@o@x@o@w@o@0w@o@x{@o@w@o@w@o@w@o@w@o@w@o@w@o@z@o@w@p@}@p@w@p@x@ p@ x@,p@Hx@8p@X}@Dp@w@@Pp@w@@\p@x@@hp@w@tp@w@|p@hx@p@w@@p@w@@p@ y@@p@`y@@p@y@@p@(y@@p@y@@p@Pz@@p@z@@p@w@@q@x@@ q@(x@@q@Pz@@$q@}@@0q@py@@ empty regular expressionsyntax error in regular expression %s at %ssyntax error in regular expression %s at %sillegal primary in regular expression %s at %snewline in character class %s...nonterminated character class %sout of space in cgoto$0@h@@F@h@-RS=<%s>, FS=<%s> argno=%d, file=|%s| opening file %s rcan't open %sinput record `%.20s...' too longreadrec saw <%s>, returns %d %dgetargv(%d) returns |%s| command line set %s to |%s| record `%.20s...' has too many fieldsfield %d: |%s| @creating too many fieldsinto refldbld, rec = <%s>, pat = <%s> refldbld: i=%d match %s (%d chars) no match %s in recbld FS=%o, recloc=%o in recbld FS=%o, recloc=%o built giant record `%.20s...'recbld = |%s| trying to access field %d%s: at source line %d in function %s floating point exception 1 extra %c %d extra %c's 1 extra %c %d extra %c's %s: input record number %g-, file %s source line number %d source line number %d context is >>> <<< %s argument out of domain%s result out of range%s ?Usage: %s [-f source | 'cmds'] [files]rcan't open file %s -R and -S options are no longer availableprogram = |%s| svargc=%d, svargv[0]=%s errorflag=%d out of space in nodeallocdefining func %s (%d args) FIRSTTOKENFATALPROGRAMPASTATPASTAT2XBEGINXENDNLARRAYMATCHNOTMATCHFINALDOTALLCCLNCCLCHARORSTARQUESTPLUSADDMINUSMULTDIVIDEMODASSIGNADDEQSUBEQMULTEQDIVEQMODEQPOWEQELSEINTESTCONDEXPRPOSTINCRPREINCRPOSTDECRPREDECRASGNOPBORANDGETLINEAPPENDEQGEGTLELTNEMATCHOPINARGBLTINBREAKCALLCLOSECONTINUEDELETEDOEXITFORFIELDFUNCGSUBIFINDEXLSUBSTRMATCHFCNNEXTNUMBERPRINTPRINTFRETURNSPLITSPRINTFSTRINGSUBSUBSTRREGEXPRVARVARNFWHILECATNOTUMINUSPOWERDECRINCRINDIRECTLASTTOKENtoken %d\@h@p@x@@@@@@@@@@Ĥ@Ȥ@̤@Ԥ@ܤ@@@@@@@ @@@ @(@0@8@@@H@P@X@`@l@x@@@@@@@@@@@@ĥ@ȥ@̥@ԥ@إ@ܥ@@@@@@@@@ @(@0@8@<@D@L@X@`@h@p@x@@@@@@@@@@@Ħ@Ȧ@Ц@ئ@@@@PP_$PPPPjmmPPPPPPPPPP|||||Pl~~~~PHpHpLhPqqqqqqPe4f`X4fk4fPP8vPm4fP{4f{PtPP4jHHp||PP tP ?@ @0@P@p@@@illegal statementunexpected break, continue or nextunexpected break or nextcalling undefined function %scalling %s, %d args (%d in defn), fp=%d evaluate args[%d], fp=%d: (array)args[%d]: %s %f <%s>, t=%o can't use function %s as argumentfunction %s nested too deeplystart exec of %s, fp=%d finished exec of %s, fp=%d %s returns %g |%s| %o @arg(%d), fp->nargs=%d argument #%d of function %s was not suppliedillegal jump type %dmaking %s into an array %s is not an arrayunknown boolean operator %dunknown relational operator %dno space for temporariesillegal field $(%s)substr: m=%d, n=%d, s=%s format item %.20s... too long%snot enough args in printf(%s)division by zerodivision by zero in modpowillegal arithmetic operator %ddivision by zero in /=division by zero in %=powillegal assignment operator %dsplit: s=|%s|, a=%s, sep=|%s| %d%d%d%d%d%s is not an arraylogexpsqrtillegal function type %dcan't open file %snull file name in print or getline%s makes too many open fileswawrrillegal redirectionp@@00$zero&null FS RS OFS ORS%.6gOFMTFILENAMENFNRFNRSUBSEPRSTARTRLENGTHARGCARGV%dout of space in makesymtabsetsymtab found %o: n=%s s="%s" f=%g t=%o symbol table overflow at %ssetsymtab set %o: n=%s s="%s" f=%g t=%o illegal reference to array %sfunny variable %o: n=%s s="%s" f=%g t=%osetting field %d to %g setfval %o: %s = %g, t=%o illegal reference to array %sfunny variable %o: n=%s s="%s" f=%g t=%osetting field %d to %s setsval %o: %s = "%s", t=%o illegal reference to array %sfunny variable %o: n=%s s="%s" f=%g t=%ogetfval %o: %s = %g, t=%o illegal reference to array %sfunny variable %o: n=%s s="%s" f=%g t=%o%.20ggetsval %o: %s = "%s", t=%o out of space in tostring on %s0C0C0C?/bin/shsh-c"N"NNNNN+NNNNN"NN4/bin/shsh-c ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/` A` A@h A?3OP@?2y???;fF>;fF.? U'0@*p@T@Ajћ@vI@?Ȁv~zM@8k|€@J^" @@Ł>@vI@-DT!?-DT!?-DT!?-DT!-DT! @-DT! @atan2atan2: DOMAIN error ?A???9B.@GqmDCpowpow: DOMAIN error (VD Jb0@P?gKA~&s@w ?;f?? a\+0?&{?loglog10: DOMAIN error : SING error -DT!?-DT!?-DT!IC?m0_?A?" @K-DT! @??;fF>ߓi>*?TUUUUUſ???cossin: TLOSS error ??sqrtsqrt: DOMAIN error *D?*K??V c3>(\ D?Q(??;fF>?qmDCqmDC9B.@9B.@GG?+eG?0? a\+?exp3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0/shlib/libc_sK-DT! @??;fF>ߓi>*?TUUUUUſ???cossin: TLOSS error ??sqrtsqrt: DOMAIN error *D?*K??V c3>(\ D?Q(??;fF>?qmDCqmDC9B.@9B.@GG?+eG?0? a\+?exp3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0usr/bin/what100755 3 3 31430 4134723511 7560 37777777777 LIs! ( @.text( .data @ @)@.bss@@ .comment1ÐET@RU RP P(jÐUWVu }}h @Mh @4E u4h @h @ 4h @?uDG9}~#h @4 u @ڐ= @P'^_UWVuy V FF@tL @;uh @VD t = @u& @;uh! @V t= @tV^_ÐUWVu} AFFE;t-? @ @y*h @j r)G?tyV봐 @ @y V FFE@t9}t3h( @u~ u @yh @EP}E띐 @yh @j  @ @= @t^_Ð}t Vu53^_USWVu >FE8F ^_[ÐUVE E @u @t* @h @uu  @ t ^Ð^ÐUVEEE@ uE@ t(EH uuu ^ E@ t ^Ð^ÐUWVu~u VF uF N F Dt- @9=@vG @tWߐFFF tF @+FPvF P xFF^_Ð>tN N F tf ^_ÐUWVu} ;u3^_ÐF~tG8GtO+^_UVu }u ^ÐF tF9FwF9Fuڃ>uF~u VaNFME^ÐUE%EE%EMEE0ÐUWVu} Ex 2t@M +J)EM Hu}uWjVVEMI^_WVE04" NjM^_ÐULWVu}EDž$EEG G2u @ E tz%tuuFE t%u+E܉E; vPWu%uH! }+G )G; v 2t WG Dt/G uuj +EP t WG t ^_ËE^_Ð3EEEEEFFFE X .$,MܐMԐM̐MĐM@E뵐E@uE E @E }؉Eu덐E E @E u뵐EDuM E0k E0FE @uE@tEEMEE E @Eȍ3E܉E؃}}&E@ @E}E؉E,Et EB @EtED @EEȉ  uWE@u_L ff f Š*Ȁ0M܋E܈ M܋E܊0E@: EM+M+ ! EEM EE E @Eȍ3E܉EE"EPNM܋M܈ EEEEEE E @Eȃ}Xu @ @Eԍ3E܉E؋Eȉ uE@uDEEM3M܋E܋#MMԊ %M uE@tEM+M+ ~ EEME}EXt;ot xtEEH @EEL @ꐐE@uEE E VW}p_^E%=Eu=E%=uEDž$}Eu @ @E܃rE%=uEP @EE EEEE}EE @EԬ @8EPEP}}E@PVWu_^, E܃}t ER @'Et ET @EtEV @E(E؋E܀8tE܊0ME؈}u Et EE.E!E܀8tEE؋ME܊ ك~EEM(E܍EEE @thEH } ~ 0MEME䊍0 ME0E9Ew}E @u+-MME @tEeMM+EEEME@uEE E VW}p_^E%=Eu1E%=uEDž$E @EFE%=uEX @EE EEEEEԬ @E @EPEPE<|<PVWu_^ E܃}tE;E}E܀80t EZ @%Et E\ @EtE^ @E(E؋EE~E܀8t}|0 EEE܊ME؈Eu}~ EE.E<|<9E~EME+EE0E}~E܀8t}|0 EEE܊ME؈yɍ(EE@u E}uEE E VW}p_^E%=EuDE%=uE}Gu @ @E܃EDž$E%=uE` @EE EEEE}GE @EԘ @uF Du V3 t3^_F @EEE 9}w9} wًF9FrqF ur^WuF P E;tN E 3EE+u ^_V@uE H+u ȋE+^_ÐEEENM+E ~;rljEPuu E)EFF @+F 3;} V+}uF Dt-F uEE Pj u t VE^_ÐUWVu@E u 3^_ÐE8tE0V t^_ÐUWVu} G8Gu F~=u^_À>u=t3^_ÐUWVu}FE 8FuN^_Oy3^_ÐN ÐUWVu} uGF uE^_ÐUWVuGF~u+^_ÐU<Pu u(ÐUVuVVu u ^ÐU WVu t}tE8u3^_ÐE x+E at>rtQwu tEhPu E }-뤐 tf ɐ t뽐3EF tE 8ruF E 8au ujju 1F 3ɉNN @^_ÐUV @F t95@w3^Ð^ÐUV @95@w^ÐV95@w^ÐUWVu u^_ÐF t<F t3 VVF P }p@F tvFF FF낐UVuF u,BF t"~tF9FvVQF tF t^3^ÐUVu F %RBu<F N9 @FM V@F %u2EEjEPF P N F %u~tF9Fu>uF Du V3 uDF D)VAyVEP ENFF t ^ÐE^ÐUWVuF~+ljE~F Dt3F @+FF @+F 3;} Vp}~#uWF P ;Et N ^_3^_ÐUVuF %tF u^ÊF $ F ~u VNF9Fu>F Du3F @+FF @+F 3;} V3^UWVu~ F uV}) u @@FN @BhF tN F NF @N @FFWt tF uN @^_ÐUWVuF @+F }F @F^_Ð9>~>^_Ð&3ÐUp@EEPhTu }Ep@3ÐÐ6ÐÐUWVE}v3^_Ð=@u6@ @@ @x@@t@@x@@EE5t@Eu>5t@9=@u5@>tދE;wE;R$;w9=x@B@6E}v5@jlx@;t?EEe ǹ t@Ǚ+ډUNjE'E x@+ @+EEe E;EE=vh@|mu@u+EPT=@x@8E+EDx@;tx@ȋ x@@bEt@;s|@t@t@ 95@u t@@F^_ÐUWVu=t@$x@9u=@^_ÐUWV}Gt WG+Eu L t9uu^_ËE EE9EsEEEPuV6 E;sƋEE;rEE+M|@띐UWVu} uGFMyE^_ÐZÐT$@R @+D$ø!T$@3øÐp@Ð_T$@(#)./what 5.3a x1 of Oct 14, 1987-srcan't open %s (26) %s: @(#)what.c 1.1 87/09/10 @(#)what.c 6.7@(#)~|^`"\> @(#)any.c 6.1-+ 0x0X--+ --+ --+ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFCHRCLASSascii/lib/chrclass/ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~nF 7yACחA@Y@$@@C$@?@@@@0@)#(@cbil83i-sc:6rc/us.1t1.1 )#(@cbil83i-ys:6er/ss.da1.1 )#(@cbil83i-ys:6lc/s.eso.1 s s)#(@cbil83i-eg:63i/nd_68.ata.1 s s)#(@cbil83i-ys:6oi/s.ltc.1 s s)#(@cbil83i-ys:6sl/s.kee.1 s s)#(@cbil83i-eg:6am/nd_ll.ata.1 s s)#(@cbil83i-ys:6po/ss.ne1.1 )#(@cbil83i-ys:6bs/ss.kr1.1 )#(@cbil83i-ys:6rw/s.eti.1 s s)#(@cbil83i-rc:6ec/trorr1 s.1..)#(@cbil83i-eg:6uc/ntixe1 s.1..0@)#(@cbil83i-sc:6rc/us.1t1.1 )#(@cbil83i-ys:6er/ss.da1.1 )#(@cbil83i-ys:6lc/s.eso.1 s s)#(@cbil83i-eg:6usr/bin/ct104111 0 2 215060 4220303031 7213 37777777777 LA" l:6<@.textl .data<@<@:<@.bss0Y@0Y@6.comment0ÐET0Y@RU RP$ P!jÐUUUWVSEEEEEh j#Eh jEh jEh jh@hl@h@TYjTYth@h@U@~je Y^@@ ^@@^@@^@@^@@^@@ ^@R=?!=h=s=v=w=x5DC@݆Yl(@=l(@| 9l(@h/@hl@h @h@U@蠔5DC@h\@h@U@舔 je YE(@5DC@VYE9E}nh@hl@h@h@U@+5DC@h@h@U@ je_ Y0DC@^@$h@hl@hw@h@U@je- Yh@u u芆 E9#@uL}tuuhI#@u0uhR#@u uuhY#@uu`Y]u}U EPu褢=u9Y@u3øUWV}u GNuu}ÐUEQR@uuu 訽/EU EEQR@u֋EU EEuዅƅHh#@h#@舽E}t~XHP Ph#@ Ps=|/ tEtEP P輔t"ƅHuh P~ uuYHPu 胼EPu UWVS}u ]E0^@T=\u1G=Dt!=TuuV_uSu7EE EE8uGG?uE0^@]u}EEUE҈uUpWVS}u Ed#@;~v3聓9l(@|vh#@h@U@' ~uFF#@h#@wv FVWCЃE}E336Yt=9l(@|3h#@h@U@ l@ h#@5Y룃 ; 9EvY=u69l(@|vh#@h@U@; l@ >9l(@|vh$@h@U@ F=/tvh$@P葑 vPjh $@PCYhk@YtN(Y9l(@|jh"$@h@U@u~ hE$@h8$@4l@ h@jyj 蛐Y=l@t%9l(@|jhM$@h@U@~ jjPEjQY}}x9l(@|Phh$@h@U@} 9l(@|5Y@hs$@h@U@} h$@h$@al@  Y=l@9l(@|jh$@h@U@G} jju| %Pju{ }=9l(@|5Y@h$@h@U@| u腾Yl@ "uYt>u`Y9l(@|Ph$@h@U@| l@ jhTuo jv 2YPwnYPu 9l(@|hl@h$@h@U@E| 9l(@|wh%@h@U@#| whl@ ;EPEPj1@ l9l(@|jh%@h@U@{ l@ j20Pv =}C9l(@|vh/%@h@U@{ hc%@hM%@Dl@ 9~uFFj%@4wv PxP4Pu8P-PH t=l@}| uEYpYhm%@0Y~ph l@褵E{UWVS}u ;uGC;u?tuً]u}UPWVS}u ]9l(@Whr%@h@U@y ^@=#tr^@= td^@= tV^@= tHSVh^@ Et2>t-t)W6蹌u@V\ YE]u}hh^@Bf}@3UpEE pY=u69l(@|E ph%@h@U@y l@ ËE ph%@EP苋 h%@E ph%@EPoE ph%@EPX 9l(@|EPh%@h@U@x 9l(@|EPh%@h@U@bx 9l(@|EPh%@h@U@?x =(@~EPh%@h@U@ x =(@~EPh%@h@U@x =(@~EPh%@h@U@w E p .YPiYEPEPEPEPE}|Bjuu E ph l@ò=(@~?jh&@h@U@nw )E pY=(@~jh&@h@U@Cw EGUEEjh&@EP蠸Yhk@qYtP9l(@|h'&@h&@h@U@v udYu[YuRYl@h@jԼuYkE9EsEPوYju :E}Z9l(@|9u h/&@h@U@Ev "9l(@|uhd&@h@U@!v l@ \9l(@|u h>&@h@U@u uYt5ugY9l(@|u hJ&@h@U@u l@ juhENukYt5u Y9l(@|uhs&@h@U@Yu l@ 9l(@|uh&@h@U@-u juu] u~YEPuu1@ EE9EtSjLY9l(@|5Y@h&@h@U@t uRYuIYl@9l(@|jh&@h@U@t u Yjh&@6EPYjuEj覆YuѵY}}A9l(@|h&@h&@h@U@t l@u蔵YGjjur %Pjur EUpWVDžDžDžE P=/tE ph&@P+ E pP蜮>@3Y@PjPK }0h&@.l@YtCMY9l(@|Ph&@h@U@r l@ >@3Y@jj>C t8jj"C tjjC ufh'@-t HYt HYt HYl@>@3Y@j7F }h '@M-9l(@|ph'@h@U@vq 9l(@|-hB'@E pP#= Ph*'@h@U@@3Y@3_D tF 9>@TY=jPj/YG|j!Yt lEYt WEYt BEYh'@*l@DIY>j螀Yh'@)t DYt DYt DYl@HY>@3Y@UPWVS}u ]E^G= t= t= ut8EGGt= t= t = uE9]|E]u}UPWVSE8=\GG=7t?K=3t6=1t- =0t$u=2tl=5t =4t Z=6uSE=st/=nt=bu,F: F4 F.=ru F!=tu F\FFFG?,EE8 ]u}=0|%=7e-0EC+=|у}u \FNFFUC느UWE9l(@|uh(@h@U@k 9l(@|u h(@h@U@qk EPhTu1@ u} ~'@}fe3fEfEfEfe}t3 f EEEEPhTu1@ }jbhO(@5Y@hN(@h4(@jY|E 9uGE?u}}$jNh%(@uh$(@h(@WjYfEfE9UEPhTu1@ u&EufMEPhTu1@ UW}W˫YtjhTW1@ }US]h`@hT5l@1@ ui9l(@|Ph^(@h@U@i =RtA=St=Xu.`@=t `@h`@hT5l@1@ ]`@=@t`@@h`@hT5l@1@ UPh`@hTj1@ t `@3`@`@% f`@f `@f `@ 3U9`@uh`@hTj1@ 3UW}+@u7_Pj h+@h+@={EPh+@h+@h`@ {Wh`@h+@ =uhh`@͈YWbYt;/h`@赈Y9l(@|h!,@h,@h@U@h }Wh`@h+@" uWY3UWV}EjW蒭E9l(@|Wh",@h@U@g 9Eu?9Y@t9l(@+5Y@h2,@h@U@_g j EPum uШY t-9l(@h,@ha,@h@U@g EPYYEju蚭t 9Y@u19l(@|h,@h,@h@U@f u}ø9l(@|uh,@h@U@f 9l(@|Vh,@h@U@lf 9l(@|Wh,@h@U@Lf WdžYt-9l(@uh -@h,@h@U@f Y3WUPW3 <@t G;=+@| |%hh-@Wh-@h -@jY;=+@| +@+@juY@P `E}u$hhA-@juh,-@DjYuu蚠E@}UWV}3V<@tKt"tC<@t94@WKxu%4@茅Y4@賩Y@F;5+@|u}U@uhX-@hR-@EPrwj/EP`@t`@@@EPEYÍEU@j/uuwt3uht-@hn-@EP wj/EP誂`@t`@@E@hEPq}3UWEP/{YE3<@tEP4@}G;=+@|ڋ}UdWh$u a 5Y@uu h-@EPEvEPh-@U9Y@t9Y@u ߃Y9l(@|Y@4\C@h-@h@U@-c 9l(@|u h-@h@U@ c 9l(@|uh-@h@U@b u bY}+5Y@u h-@EPruEPh-@}j uW蹨 h$u =Tjju FT WYuu ]u ւY}+5Y@u h-@EPtEPh-@3rUWV3fEfEEE9l(@|Wh-@h@U@a 9l(@|5Y@h-@h@U@a Y@= t2==.h-.@h$.@MNju}ËF=}KjrYEPju` P9l(@|h.@h.@h@U@!a 3h.@h-@hO.@hF.@thq.@hh.@[UE9l(@|uh.@h@U@` l@B,PYE9l(@|uh.@h@U@c` }| &Ej2,Puk E&9l(@|l@4(@h.@h@U@` UWVDž,Dž(9l(@|Eph/@h@U@_ l@j20P0PEpu&(t|,@,=|f:&N0Puu80Pu}1l@= t= t = t(9(V%u4=l@u+9l(@|jh/@h@U@^ l@Ƌ $UEx tW9/@tNh=/@Ep qu7E x t.A/@t%hE/@E p quE @ I/@3ËE x t0N/@t'hR/@E p YquE UJ H 3ŋEx t V/@thZ/@Ep qt'Ex t%E x tp Ep pu3ndUE= E= E= }Ep=#uauu u 9}(hhg/@uh^/@j_Yjhv/@E p{ uE PRRpj,E poEt$h|/@uou l@E=t@t/=t@E xp5t@outu DYE 0P腗j,P4oEtEt/}t)uP=ouE 0Yhub$8UP}t Eupl@ ËEa@;uNa@=#t@uu ha@ Eu XY}tE 8tj0uhy t3hha@"u=l@u l@ ll@EZUWj,umtQ.@uGPh.@GPh.@z9l(@|h.@h/@h@U@Z }U점.@u3ø.@U=e@uTh@hTuO u @%9l(@|5Y@h/@h@U@2Z e@EE U MEj-ulE}t EEuuE}tm}u*l@h/@l@4(@vj-ulE}t EEuuuu4}]jjYE UB<tuuuUB4EE9E3UWVEe@E9l(@|jh/@h@U@X 3O })9l(@|< @Ph/@h@U@X 9l(@|Wh/@h@U@X FE0u9l(@|jh/@h@U@iX }tH/@t?h/@uzku+9l(@|jh/@h@U@%X 3u}hk@~jYth@j*j-LjY0Y@jEPu 1@ IjjY9l(@|5Y@h/@h@U@W h/@h/@Y[E%9l(@|$ }/@0@Ph/@h@U@BW 9l(@|# } @Ph0@h@U@W EUtEDf@9Er39l(@|jh0@h@U@V j'iYEhe@u jhY9l(@cjh0@h@U@tV JU9l(@|jh0@h@U@KV jhk@hUWVSEEh.0@YPuh(0@t u>9l(@|jh40@h@U@U u YÃ}t];0@tTh?0@uhu@9l(@|jhC0@h@U@~U hM0@ݐYPhH0@u 1@ 뉃}tBR0@t9hU0@uphu%9l(@|jhX0@h@U@U Eظ9l(@|jh\0@h@U@T }?=\3G=ct[=d =Mm=E:=DuS踏SYGu-9l(@|jhg0@h@U@JT E9l(@jho0@h@U@T l+~(u+RPu xظ9l(@|jh0@h@U@S E+~(u+RPu Dظ9l(@|jh0@h@U@NS jdY+~(u+RPu ؃=@u*9l(@Cjh0@h@U@R *9l(@|jh0@h@U@R f @h@hTu { 9l(@5Y@h0@h@U@bR =K+~(u+RPu ظ9l(@|jh0@h@U@Q u Y?=Tt.=N C"uSS!Y=\C=p=m=e+~(u+RPu ظ9l(@|jh0@h@U@Q E[+~(u+RPu gظ9l(@|jh0@h@U@P j NY+~(u+RPu 2؃=@u*9l(@jh0@h@U@/P 9l(@|jh 1@h@U@ P f%@h@hTu ӑ }?9l(@|25Y@h1@h@U@O =su C \CCG?}t C+~ u+RPu -9l(@jh41@h@U@CO hUE U}tuu u ø9l(@|Oj Yu Eh71@P9l(@|jPh@U@N uu u1@ ;Et3뀋E U = }'^U M @EE9E|ZU WV}u j Yu3Ehk@d`Yh@jEEU}ts9l(@|*E= }C1@E1@Ph@1@h@U@M 9l(@|PE= } E @EPhF1@h@U@SM !9l(@|jhI1@h@U@0M jEPW1@ =tj-m_YjEPW1@ =t u}jA_Ye}ts9l(@|*E= }N1@P1@PhK1@h@U@L 9l(@|PE= } E @EPhQ1@h@U@hL !9l(@|jhT1@h@U@EL EU;EE9EM3&U#uuYPu u j u3E E uԸU EPbYEP cYEk@dUBEj;ujEE@QR@hx(@hk1@E@P+M =} x(@kx(@@3Y@E 0-Y=tE0-Y=uhZ2@E 0D3Uu 0Yu i!Y3U}DE E9l(@|jhj2@h@U@0F 3ø9l(@|$EP}t2@2@Ph@U@E EPhSE 0͇ =uc9l(@.E 0h2@h@U@E }9l(@EPh2@h@U@E EPEPXujhSE 0; =u-9l(@E 0h2@h@U@$E EPjEP n9l(@|EPh3@h@U@D EPhSE 0貆 =u.9l(@|E 0h03@h@U@D gjEPKu9l(@Bhr3@hP3@h@U@[D &U=>@>@9>@u hs3@PV 9l(@| >@4>@Ph@U@C >@4>@u 襭9>@u-9l(@|h}3@AYPh|3@h@U@C ø 9>@uuY5>@h3@PV Pu (5>@u h3@PU9l(@|jPh@U@C 9l(@iu CAYPh3@h@U@B HUPWV>@3Y@u#YH|C=w<|8$1@3@,3@%3@3@3@3@ 3@3tQ9l(@|Vh3@h@U@WB u(Y=t5f=t%?t+=u| 4@zu}þ 4@k4@d84@]=uQ4@O=tA=u:(4@8/4@1=@t= uN4@V4@=uE4@^4@9l(@|Vhl4@h@U@A ]jju, ECuuc#=u)9l(@|Ep h{4@h@U@*A uYUuYUu uyUEH=$9@jhf@44@^jlf@45@y^jpf@46@a^jhf@44@ jlf@45@ jpf@46@ uh9@hā@R h9@hā@UU6@35@4@h9@h9@{EtP8h9@PSEuuh9@p t EPu=4@uMh9@ Y4@=4@u*hh$:@54@h:@h:@j蒵Y4@=5@uMh7:@* Y5@=5@u*hhm:@55@h\:@hM:@輨jbG8rG2fG,vG&\u}tSudFu\GGӈF5E]u}ÐUPE}u3EE8tQR@u}tڋE8t҃} u-j tYE tEE @@E=\ueEE=Ot8=Xt=ot*=xijhą@E@EPw U Bjhą@E@EPX U BE xu}u vY E 0phą@pgU BE U EEEEEE8tG}u-QR@t0E=9t#E=8uEQR@uEt!9EtEQR@u$E8th;@h@U@^1E 3ME UEQR@t E-0.EQR@tERS@E-7MU U}ue9E~6E-0+UUʺJ#‹U MIM E@҉Uu4E UJU$}t3EuE UJUM}~ E9E}uh<@h@U@*03}uE+EPE EPu EEU EEMu +EUEEU E EMuU}t$}tE9Esh1<@h@U@/3Ã}u&uqYEuhT<@h@U@e/3uu ut EUDuYu3jjhuEEEdTEEEȉEEPhSup }uju>@3uju(9EtY@>@3hE H~=sk$l<@jj(EE uuPj(j(EEtuuEtuE@ PEuuEPE@P_bjj(EKE6uu} #jj'E Euu>j$j'EEtuuEtuE@ PEtzűE@P}djjj'EtWEtuu|@Y@ 3Y@>@3UE =t =tu6E@Jhj.&UBt"E&u j &UBuËEU 3UWVS} uuYEu]u}jjqEEX]EEu3GUBE@u3G UB Ext'@PwuEpSEЋ@BEjhfTuSuuujp@ujpE@4H0=@P0tE9Pv>@ t&EpPRvo EPVP V 3UWuqYu ujju( E}>@}EtG0>@G0>@ uu }: 9>@u G0>@ 9>@u G0=@G0눋G0=@G03tUPE H=$<@EExtvEpmYhEExt EpmYExt pmYEx t5p {mY*EExt EpamYExt pOmYuFmY3Y@>@㐐U0W} uYu }jjnEEEPhdTjEPuhuujMnuj9n(9EtY@>@끋EEGE܉GEG EGEGEG3QUWuYu }ËG0H|= w| $<@G0>@͐U8WV}u u mE}>@u}h<@h Suh E}uh<@hSuh jjmEEEPhdTjEPuu ujlu%hYaujl(9Et'>@Y@ugY#t)EEGEԉGE؉G E܉GEGEG=x=@uIjjF=@k=@8Pj^ x=@u>@uhgYkE8x=@Ћ(MЉL$MԉL$M؉L$M܉L$ ML$ML$ML$ML$ML$ ML$$Vu60|jhSu-g }u*Y>@F0=@F0EUPWu[Yu }jj%kEt wiYt wziYwqiYwhiYWYu4fYujj3뛐U$WVS} EuYu>@ 9C(u>@]Ћuԋ}Ã{,trEPhSuf E#}oC 9u=^9Efu- V= KC$<@C EECEEEE}EEPEPEPu*E}% 9Y@>@9EuE}>}utEf#}t Et`E}uQf#JE}tf 9ErG{,uA~u}t E~t }tf C0@>@C0EG{,t>@Y@G#uuuuSC EEECEC+EEECCEEEPEPEPuE}>@9EuE}t%>@Y@GC,]EC>@ CUWVS} kE8x=@Ћڸ9C(u>@]܋u}jjygESu^ CEGFFGF FEt!FPwuwu FFEt!FPwuwuY FF EC EEEEEjtG3PEPu}!>@ujfjSu uujpfujYf3U WVS} EkE8x=@Ћڸ9C(u>@]ԋu؋}Ã{,t>@ ދC EECECEECEEPEPEPu)E}- 9Y@u >@ >@m9EuE}t>@Y@89Eu= t4= uuuuS >@ 9EF F9EtG9E9FwG 9F v>@ vEFPw d FGv EFPwc F Guuw c EGG$3C>@Y@G%U(WEu>Yu }ø9G(u>@jjcE؃,t/G 9u#G EEGEGEEGEu2YE}ujcu9Et!ujwc>@JG EEGEGEEGEEPEPEPuE}!ujc>@9EuE}t+ujb>@Y@ujbG,EEܸ 9Er Eܺ 9t>@Y@GUf'4G0[>@G0&9G4u G0d>@ G0m>@G0O4} tME 9E~>@ E U܋JH uupUa E UPU܋JH3U,WV} EuYu>@ 9F(u>@ű}ËFEEt E EEEFEEE؉}E؉E;F$vE@F$EEt E@ E@E܉EEEԉEuEPEPu}-E9Eu8 9Y@ >@!E)EEԃ}[F07>@F0E+EU(WuYu }EEGEEEEEEPhSu[ E} 멃,u}9EEE܃,t/GE= t(}t"Eܺ 9uUG,E܋U؋E- |p= wi|e$ =@"@}t} }t$}~>@Y@G3U@u}ÍEPhdTjEPuZu3}uj2^uj^(9EtY@>@u YkE8x=@Ћ(uW|$ _WuT0}WdY>@( 9Eu G0X9EuGEPhSuY E}>@}u G0G0G0E= w]|Y$@=@EG(EG(~tj`V>@BUWuYu }jj\EWulu'GEjhgTjuu[uuj@\uj,\jhSuW }>@jf'G0=@G03QU}|(=@H9E=x=@tx=@kU8u>@3kE8x=@ЋUEURMщu uURZ UE 9E~EËE Uuu EpZ uuEpZ EUPUP @,UEPhSuV E}>@Ã}u E x,t>@ 3U(WV} jju' Ejju %Pju EGEG EGEEGEE9Y@EPEPEPuE|у}t>@Y@3uЋ}ø9Eujub u=t,=9EE9F뢸9EE9Fux9FuJEPhSuU E}>@3V}t >@ )>@F>@9>@uF Y@3>@Y@G3UEEEEEE EEPhSunT E}>@3Ã}t.E%>@9>@uE%Y@3ʃ}tEUU(W} uE=t=u  3EYEu E=t=u  3EYEPuE9E~EEE}t\uj Eu$}tu=VYu4VY}uj Euu VYEEu$E=t=u  3EYEu(E=t=u  3EYEE@,E@EPjD E7uj, Eu+}tu`UYuWUYuNUYEGEGEG EGE؉GE܉GG GG,fE,G$E0G(G0G43UE=t=u 3EUEf@@@ @@@@@ @$@(@,@0@4Uu&YPYUWVSf@ B@GF҈uEk@&B@f@GFGFGFGE@kAY=O~3uhB@@UjhB@o#ÐUWEE EPGYtujWf Nj}UuJYÐ L3ÐUWV}t9~u=Ƌu}U=0C@uh4C@h C@@0C@50C@YU=0C@t50C@,BY0C@UW}G?t=:t = u= u ?tGNj}U=0C@uh6C@h C@?0C@u350C@YUWuhhg@_ =k@WQY=k@WBY=:j EPW EW6?YPj:W> 9Eu`WY}| `9E~aEk@t4=:t*j EPW* EW>YPj:Wh> 9Et3}WY}| `9E~aEk@=&k@=*k@W^Y=.k@WOY=2k@W@Y=k@G?t =,u?tG="k@k@oUWVS} uEE~,F t!O>(V#Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V DX@+V;}VkCY}u +gEEvÐHÐ( HÐUWVHC@E@9Y@s Y@<\C@u<YtVujG jhVC@jG W<YPWjwG jhYC@jfG u}Ð>GÐUWV} />t?F EF F F3҉VDX@=at=rt=wt3u}ÀN jjuB N G=+uf N ȸVVGÐWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W$>YjjG P$B GGg G tg }ÐUPWEEE@ uE@ t(EH uuu #! E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PIA +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P@ ECG t8W<YG t g GGuu G P@ E9Eus3lUPE EPuh U@d UPEEPu uI UW}EEEljEEW9YEE2uu EP }ÐUWVS}u Dž8k@R@Dž\sEtC0UE}u Et E.EE艅@ E@uEE E -ݝHN%=L%uBHu9O%=u Dž Dž,P@CEO%=uDžl@R@Dž\L% H ‰PDž(Dž0Dž4Džh~PW =uh~PhPR@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}k@Ek@ExT@s3UtE]k@ET@ET@ET@r5ET@rT@ET@AEU@s6EE]@)EEU@r݋EE 9P܃}t؁k@k@vk@EU@tk@r05}fEf fEmE]mE܉E@0Ee U@];r&=5|+k@uk@1}tCF0N<9k@]Ћuԋ}ËEE0]@EEsEE 9P EEEET@MU]vEu}fEf fEm]mE܉EFUR0EMm]ET@E5T@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G DX@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W DX@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}0Y@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WDX@UW U@;=@X@r3}ÃG uUW U@ WY;=@X@r}UWV}tlG t6G t3WVYG PY}Y@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG DX@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G DX@+G?}3W DX@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G DX@+G?}3W DX@+W;}WY3UWV}G G u}}&uD@L@GW DX@*h!YGt@O G WDX@GGVYtG uO @u}G T@WRDX@UWV}G DX@+G}G DX@Wu};7}7𐐐*3ÐUY@EEPhTu } EY@3ø6ÐÐU WVSE9ET=$Y@u<(Y@ $Y@$Y@ (Y@Y@(Y@Y@$Y@Y@ Y@E@3؋=Y@E&;5Y@$Y@E@E=w= Y@j YY@@;t?3Ee ƹ3tL3+‰EEE2Y@+ Y@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5 Y@Y@0E+E-Y@@;tY@Y@Y@$Y@~ЉY@;5Y@vY@Y@Y@ 9= Y@u Y@ Y@G(=Y@95 Y@u= Y@7tލ;r;l%;UWV}5Y@%Y@9u5 Y@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹY@Nj]u}WV|$ t$L$Njʁ^_øÐT$,Y@Ru ,Y@+D$øT$,Y@3øÐ0NL$0:L$0+L$0L$0 L$05Ã%3ÐÐY@ÐcT$@@@(#)ct 5.3b of Mar 18, 1988/dev/ctcuct: can't access Devices file dummyAnyACU1200hvw:s:x: usage: %s %s [-h] [-v] [-w n] [-x n] [-s speed] telno ...(-w %s) Wait time must be > 0 usage: %s %s [-h] [-v] [-w n] [-x n] [-s speed] telno ...(-x %s) value must be 0-9 usage: %s %s [-h] [-v] [-w n] [-x n] [-s speed] telno ... usage: %s %s [-h] [-v] [-w n] [-x n] [-s speed] telno ...No phone numbers specified! ct: phone number too long -- %s 0123456789-*#=ct: bad phone number -- %s Allocated dialer at %s baud No %s dialers on this system %s busyDialer isDialers are (%d minute(s)) The (%d) %s dialer%s busy iss areWaiting for %d minute%s sDo you want to wait for dialer? (y for yes): Time, in minutes? %dWaiting for dialer *** TIMEOUT *** Confirm hang-up? (y/n): r+%s%s/dev/Connected Hit carriage return there is a uugetty; exit start getty -h -t60 %s %s ct: can't fork for getty /etc/gettygetty-h-t60ct: can't exec getty Reconnect? Disconnect(%d) Disconnected cleanup(%d) chmod/chown %s Can't chown/chmod on %s to %d ACULOGINLOGINut_line %s, ut_user %s, ut_id %.4s, ut_pid %d process still active getty/etc/wtmpr+/etc/wtmpr+/usr/adm/ctlog/usr/adm/ctlogaTZ%-8s (%4s) %s %2d:%.2d %2d:%.2d %s #@#@#@y##@y#801212TLITLIS/usr/lib/uucp/Dialcodesr%s%sInternal caller type %s \Tinterface(%s) failedUNIXmlock %s failed mlock %s succeeded /dev/%s/generic open timeout generic openTIMEOUTopening with O_NDELAY set device %s generic open failed, errno = %d generic openFAILEDclear O_NDELAY clear O_NDELAY failed, errno %d failed to lock device %s processdev: calling setdevcfg(%s, %s) MASTER Setup failed%s not found in Dialers file generic call to gdialFAILED\DUNIXgdial(%s) called mlock %s failed /dev/%s%s%s</dev/%sUse Port %s, acu - %s, Phone Number %s Trying modem - %s, acu - %s, calling %s: SUCCEEDED FAILED /DN write %s timeoutcan't open %s %s is open failed to lock device %s can't open %s failed to lock device %s dcf is %d ACU write error %d ACU write ok%s /Line open %s failed/dev/%st_opentlicall: failed to lock device %s t_alloct_bindtlicall: bound to %s t_connect to addr "%s" \tlicall: stoa failed tlicallstring-to-address failedtimeout tlicall tlicallTIMEOUTt_connectt_connect,X `  % KKfixline(%d, %d) BAD SPEED../uucp/line.cRETURN FROM fixline ioctl../uucp/line.csetline - %c ,)@<)@R)@])@i)@t)@)@)@)@)@)@)@)@)@)@)@*@*@*@)*@4*@I*@\*@d*@x*@*@*@*@*@*@*@*@ +@+@-+@?+@\+@t+@+@+@+@/usr/spool/uucp/usr/spool/uucppublicCAN'T OPENCAN'T WRITECAN'T READCAN'T CREATECAN'T ALLOCATECAN'T LOCKCAN'T STATCAN'T CHOWNCAN'T CHMODCAN'T LINKCAN'T CHDIRCAN'T UNLINKWRONG ROLECAN'T MOVE TO CORRUPTDIRCAN'T CLOSECAN'T FORKFILE EXISTSSUCCESSFULNO DEVICES AVAILABLEWRONG TIME TO CALLTALKINGCONVERSATION FAILEDBAD SEQUENCE CHECKLOGIN FAILEDDIAL FAILEDBAD LOGIN/MACHINE COMBINATIONDEVICE LOCKEDASSERT ERRORSYSTEM NOT IN Systems FILECAN'T ACCESS DEVICEDEVICE FAILEDWRONG MACHINE NAMECALLBACK REQUIREDREMOTE HAS A LCK FILE FOR MEREMOTE DOES NOT KNOW MEREMOTE REJECT AFTER LOGINREMOTE REJECT, UNKNOWN MESSAGESTARTUP FAILEDCALLER SCRIPT FAILED%*d %s/LTMP.%d/usr/spool/locksulockf failed in onelock() ulockf file %s Lock File--can't read (errno %d) --remove it! Lock File--bad format--remove it! Lock File--process still active--not removed kill pid (%d), returned %d--ok to remove lock file (%s) ulockf failed in unlink() TOO MANY LOCKS../uucp/ulockf.cCAN NOT ALLOCATE FOR../uucp/ulockf.c%s.%s/usr/spool/locks/LCK.%s.%s/usr/spool/locks/LCK.%s %s %dULOCKC%s: link(%s, %s) ULK err %s %dULOCKLNK%s %dULOCKFfilelock: F_SETLK returns %d, errno is %d filelockF_SETLK failed - lock existsfilelockF_SETLK failed -- ENOLCKfilelockF_SETLK failed -- EFAULTfilelockF_SETLK failedfilelock: ok V1@Y1@\1@_1@b1@e1@h1@conn(%s) getto ret %d Call Failed: %s Device Type %s wanted Requested Device Type Not Found AnyAnyAnyAny9600AnyAnyAnyAnyBAD LINE../uucp/conn.c/dev/,MProtoStr = %s chat: TCGETA failed, errno %d FAILEDexpect: (^%c%c) """"got it lost line errno - %d LOGINLOST LINE%s^%cenough already got it timed out BREAKBREAKBREAK EOTEOTEOT     """""" sendthem ( ECHO CHECK ON ECHO CHECK OFF DELAY PAUSE BREAK ) set CLOCAL ignored ) CLOCAL set TCSETAW failed, errno %d ) clear CLOCAL ignored ) CLOCAL clear TCSETAW failed, errno %d ) ????????%s^%c?%s^%c?SuMoTuWeThFrSa%dAnyAnyWkWk%d-%dhd,[NzN2@hd,[NzN2@NO=PDPP2@hd=PPzNTTTTTTTUNIXTLITLISset interface %s ret restline - %d twrite: t_getinfo tsetup: t_sync tssetup: SLAVE mode: leaving ok tssetup: optionally POPing %s tssetup: POPing %s tssetup: I_LOOK on fd %d failedtssetup: I_POP: %s not there tssetup: I_POP on fd %d failedtssetup: PUSHing %s tssetup: I_PUSH on fd %d failedtssetup: MASTER mode: leaving ok %s: %%s tlicall: system errorunknown tli error %d%s: unknown tli error %dT_UNBINDT_IDLET_OUTCONT_INCONT_DATAXFERT_OUTRELT_INRELstate is %sNO ERRORT_LISTENT_CONNECTT_DATAT_EXDATAT_DISCONNECTT_ORDRELT_ERRORT_UDERRUNKNOWN ERROR reason is %s disconnect reason #%d tVVVVVVbad access type %dsysaccess/usr/lib/uucp/Sysfilesr service=/usr/lib/uucp/SystemsCAN'T ALLOCATEscansys: Systems../uucp/sysfiles.c/usr/lib/uucp/DevicesCAN'T ALLOCATEscansys: Devices../uucp/sysfiles.c/usr/lib/uucp/DialersCAN'T ALLOCATEscansys: Dialers../uucp/sysfiles.c/usr/lib/uucp/Devconfigr service= device= systemsdevicesdialerspoppushunrecognized label %sSysfiles|Devconfig::%s//usr/lib/uucpCAN'T ALLOCATEsetfile: tptr../uucp/sysfiles.c::CAN'T ALLOCATEsetioctl: tptr../uucp/sysfiles.cuucicoruucicoruucicor%.3odobase: Illegal trailer on address string stoa: dobase: number to long xfer: destination not long enough xfer: malloc failed hi iijjj,n,nFn,nFnnnooooooooooootimodtimodtutattttttttt}~~C~~Y~Y~Y~Y~C~#~Y~-~m}timod?@?@?@?@ @@$@@>@@h@@@@@@@@@@@@A@%A@BA@cA@}A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@A@B@B@B@B@B@B@B@B@B@ B@ B@No ErrorIncorrect address formatIncorrect options formatIllegal permmissionsIllegal file descriptorCouldn't allocate addressRoutine will place interface out of stateIllegal called/calling sequence numberSystem errorAn event requires attentionIllegal amount of dataBuffer not large enoughCan't send message - (blocked)No message currently availableDisconnect message not foundUnitdata error message not foundIncorrect flags specifiedOrderly release message not foundPrimitive not supported by providerState is in process of changingDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec: option requires an argument -- : illegal option -- --/etc/utmp[ՎՎՎՎ/etc/passwdrrUnknown error: E@E@E@E@E@E@E@F@&F@8F@HF@[F@mF@~F@F@F@F@F@F@F@F@F@ G@G@/G@CG@TG@cG@rG@G@G@G@G@G@G@G@ H@H@:H@SH@bH@pH@H@H@H@H@H@I@I@ I@)I@AI@XI@lI@I@I@I@I@I@I@I@I@J@J@(J@FJ@\J@mJ@J@J@J@J@J@J@J@J@J@K@K@K@(K@CK@`K@wK@K@K@K@!L@HL@QL@ZL@cL@lL@uL@~L@L@L@L@L@L@L@L@L@L@L@L@L@L@M@M@M@"M@,M@6M@@M@JM@TM@^M@hM@rM@|M@M@M@M@M@M@M@M@M@M@M@M@M@M@N@N@+N@5N@EN@SN@bN@sN@N@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error6333b6bbbbb?bbbbb6bbH??GA>???,P@0P@W`/Lw/K:/JMFw/GMT TZ/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFNNNNNNNvNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN*NN NNNNNNFNN-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@d@d@@X@l@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@X@l@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0usr/bin/fcopy100755 3 3 4474 4231443004 7717 37777777777 : # UNIX floppy diskette copy program: @(#)fcopy.sh 1.8 87/11/19 TMPFILE=/tmp/junk.DD$$ AGAIN=y NULL=/dev/null COMMAND=1 trap "rm -f $TMPFILE ; echo copy aborted ; trap 0; exit" 1 2 3 15 first=0 while :; do if test "$COMMAND" -eq 3 then exit 0 fi echo "\n\nUNIX FLOPPY DISK COPY\n\n" if test $first -ne 1 then echo -n "Choose: 1 - Copy low density floppy diskette 2 - Copy high density floppy diskette 3 - Quit\n\nCommand: " read COMMAND; else first=0 fi case $COMMAND in 1) echo -n "\n Insert low density diskette, press RETURN "; AGAIN=y; read LINE; dd if=/dev/rfd0 of=$TMPFILE bs=9b count=160 2>/dev/null | grep -v '+0 records '; while expr $AGAIN : y > $NULL; do echo -n " Insert blank low density diskette, press RETURN "; read LINE; dd if=$TMPFILE of=/dev/rfd0 bs=9b count=160 2>/dev/null | grep -v '+0 records '; YESORNO=false; while test $YESORNO = false do echo -n " Do you want to make another copy of this diskette? (y/n) " read ANSWER case $ANSWER in yes | YES | Yes | [yY]) YESORNO=true; AGAIN=y;; no | NO | No | [nN]) YESORNO=true; AGAIN=n;; *) YESORNO=false; echo "Please answer \"yes\" or \"no\"";; esac done done;; 2) echo -n "\n Insert high density diskette, press RETURN "; AGAIN=y; read LINE; dd if=/dev/rfd0 of=$TMPFILE bs=15b count=160 2>/dev/null | grep -v '+0 records '; while expr $AGAIN : y > $NULL; do echo -n " Insert blank high density diskette, press RETURN "; read LINE; dd if=$TMPFILE of=/dev/rfd0 bs=15b count=160 2>/dev/null | grep -v '+0 records '; YESORNO=false; while test $YESORNO = false do echo -n " Do you want to make another copy of this diskette? (y/n) " read ANSWER case $ANSWER in yes | YES | Yes | [yY]) YESORNO=true; AGAIN=y;; no | NO | No | [nN]) YESORNO=true; AGAIN=n;; *) YESORNO=false; echo "Please answer \"yes\" or \"no\"";; esac done done;; 3) echo "\nexiting floppy diskette copy program " rm -r $TMPFILE >/dev/null 2>&1 exit;; esac; done exit e do echo -n " Do you want to make another copy of this diskette? (y/n) " read ANSWER case $ANSWER in yes | YES | Yes | [yY]) YESORNO=true; AGAusr/bin/format100755 3 3 2443 4141416574 10075 37777777777 : # # @(#) format.sh 1.4 87/10/28 # MODE=Altos PARAMS="-f -y -e mfm -v lo -t 96 -s 9 -b 512 -c 80 -h 2" SCREEN="\\\ UNIX FLOPPY DISK FORMAT\\\trev 1.7 \\\n Choose one :\\\n \\\n \\\t1 - Altos format\\\t\\\t\\\t/dev/fd096ds9\\\n \\\t2 - IBM-AT \(slow\) format\\\tXENIX\\\t/dev/fd048ds9\\\n \\\t3 - IBM-AT \(fast\) format\\\tXENIX\\\t/dev/fd096ds15\\\n \\\t4 - Quit\\\n \\\n Command: [default \$MODE] \\\c" # trap 'echo format aborted;exit 1' 1 2 3 15 # while eval echo \\\\n$SCREEN read answer case "$answer" in 1) MODE=Altos PARAMS="-f -y -e mfm -v lo -t 96 -s 9 -b 512 -c 80 -h 2" ;; # 2) MODE=PC # PARAMS="-f -y -e mfm -v lo -t 48 -s 8 -b 512 -c 40 -h 2" # ;; 2) MODE='AT (slow)' PARAMS="-f -y -e mfm -v lo -t 48 -s 9 -b 512 -c 40 -h 2" ;; 3) MODE='AT (fast)' PARAMS="-f -y -e mfm -v hi -t 96 -s 15 -b 512 -c 80 -h 2" ;; # 5) echo "\nSorry, other formats are not yet supported.\n" # continue # ;; 4) echo break ;; "") ;; # default mode *) echo "Please answer 1 - 4." continue ;; esac do echo "Insert blank diskette, press RETURN \c" read line echo "\nFormatting an $MODE floppy......\c" if { /usr/lib/ffmt ${PARAMS} >/dev/null 2>/dev/null; } then echo "Done" else echo "Warning! abnormal termination" fi done PARAMS="-f -y -e mfm -v hi -t 96 -s 15 -b 512 -c 80 -h 2" ;; # 5) echo "\nSorry, other formats are not yet supported.\n" # continue # ;; 4) echo break ;; "") ;; # default mode *) ecusr/bin/diff100755 3 3 46464 4201127367 7544 37777777777 L! B8 l @.textB .data@@8 B@.bss$ @$ @l .comment$MÐET$ @RU RP' PAjÐU5 @Y5@AYUWu<Yu5@h=@Nj}UWuM?Y5 @A?Yj<Y @u u[?u5@h=@_Nj}U5@h=@uuh&@h4 @y5 @Y5@@YUWVS}3 uH;u ~ù؅u ]u}ËE +ÉEljEuEEE9EreEUR9PWUR9Pu U9~AEPUUJHEUPEUU EU)E9}wF;unhjA>hj 2>hj#>hT@Y @Uh5 @g}a5 @ha@h&@h4 @5 @Y5@;>YP|= hPj2 8YÀ;t=/t C=/uGC҈uUWVShp@u t2Ux @u;u hr@uuh&@h4 @5 @5Y5@U=YjY3FFPW\u E4x @2uʋE4 @< @4x @3Y]u}UWV @ @ @9 @}7 @9 @}* @@ @С @ @AD9Bt @ @ @+ @9 @}G @+ @9 @}4 @+ @ @С @ @+ @D9Bt3O @ @Љ @ @+ @+ @ @3  @5@h@uuh&@h4 @/5 @nY5@9Yj4Y @E @PE @PE @PE @PE pjE pjH5 @5 @I5 @5 @5 @ @5 @5 @5 @5 @5 @ @@P5 @K @ @ @5 @5 @5 @ @@P5 @ @ @@PY @j Y @5 @5 @5 @5 @5 @6Y5 @5Y @@PSY @ @4Y5 @5Y5 @5Y @@PY @ @@PY @u Yu Y@@5 @AY5@a7Y}ËE :OU WVS}u]Ejjj EEU}E؉EEE @kU D9E~puuS EE@9Et EHUE9EEk  @ЋE9B~,EUuuum UEEEEE@EЋ҉U_EE 9E&E]ԋu؋}uuu UEUW@@@k P5 @ @k@  @Ѓ EE GEG@H}UWVS}E k  @ЋE9B}E @]u}3E @+ @Uk LME9E~] E9E}uùE;‹E@맋EUWV37;= @! @+ @;~ @+ @3 @G;= @~kE  @ @N @ kF  @Ћ~uӋu}U WVSh@Epq)x @h@EpY)| @E @ @3҉E3E @<u;j YUЉU @jYUЉU @ME @9E|աx @}5x @ Yx @P@| @}5| @ Y| @P@EE= @E@E@ t=t8Ex @}5x @Z Yx @P@E@u t=t8E| @}5| @ Y| @P@E@u;t8 @ tt jYE t tjYE t  @U @UM EC; @1jDYUЉU @ME @9E~5x @(Y5| @(Y]u}UPW 9EtB9Et8GEx @ }4x @ YEx @BBEuNj}U WVSh@Ep&x @h@Eps&| @ @E @UB @A 9 @t 3}O|0GE @U I @9 u @<uʡ @W IMGN~ @V<t @V AىuSWVFt}u5 @jjj]u}G;}%GE @U A @9 tա @W AMGF;u} @V<t @V IىSuVWF;}~XUE 9E~E9EJ@9 @h@u u $ @}8h$ @E 9E~ aËE9E~dcP#'1E 9E~aE9E~dc( @( @9 @h@uu[ $ @}6h$ @E 9E~aE9E~dcP&1E 9E~aE9E~dc( @( @h@u u $ @}h$ @j .&( @ ( @= @uAh@5x @u u5 @E 9EE9Eh$ @h@= @u@@P5| @uu5 @n= @RE9EFh$ @h@/UE 9E~EPh@E 9E}u uh@ UPW} jEW4u} h$ @uB 9Et]9EtS $ @}h$ @EP$( @( @UE} u;Y EP@Eu $ @}h$ @j $( @ ( @G;}@}UPWVSE3= @u33E} uY EP@=t= t= tP= u"Fu h@h4 @ 't3ǹ3ϋE{E%U‰E%U‹]u}Ãutu h@h4 @x 3ыǹ3ϋEE} uY EP@؃ uhUu uh&@h4 @ÐU5$ @u ud ÐUWVS} 3G %=utG9Gu!?uG DuWf$Y 3G 8 @UG u;uYEPuG P<* E]u}W}#Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W 8 @+W;}W$Y}t*G @tW"Y=u ]VEg*ÐUPWE E0 @u0 @t* 0 @h$ @uum 0 @ t }ËUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P# +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P# ECG t8W^YG t g GGuu G PA# E9Eus3lUWV}uW!YG uG tO G Dt1 @"u}F @tVY;54 @rGGG tG 8 @+GPwG P | GG듸9tO O G tg a;&UWVS}3&uYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!:&Ð&&3Ð &3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  8 @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoY@Dž\Dž h~PW =uh~PhD@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}( @E( @El@s3UtE]( @Et@E|@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁( @v @vv @E @t9 @r05}fEf fEmE]mE܉E@0Ee @];r&=5|+( @u( @1}tCF0N<9( @]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 8 @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 8 @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}$ @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3j ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W8 @UW @;=4 @r3}ÃG uUW @ WY;=4 @r}UWV}tlG t6G t3WVYG PY} @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 8 @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 8 @+G?}3W 8 @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 8 @+G?}3W 8 @+W;}WY3UWV}G G u}}&u @@GW 8 @*h!YGt@O G W8 @GGVYtG uO @u}G @WR8 @UWV}G 8 @+G}G 8 @Wu};7}7𐐐3ÐU @EEPhTu } E @3ø6ÐÐU WVSE9ET= @u< @  @ @  @ @ @ @ @ @ @E@3؋= @E&;5 @ @E@E=w= @jY @@;t?3Ee ƹ3tL3+‰EEE2 @+ @+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 @ @0E+E- @@;t @ @ @ @~Љ @;5 @v @ @ @ 9= @u  @ @G(= @95 @u= @7tލ;r;l%;UWV}5 @% @9u5 @u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ @Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$ @Ru @+D$øT$ @3øÐ0BNL$0B:L$0+L$0L$0 L$0ÃÐ @ÐoT$@@(#)diff 5.3b of Jan 27, 1988<@v[jfiles too big, try -h /tmp/dXXXXXXcannot create rcannot open /usr/lib/diffhcannot find diffharg countrrrr,, < --- > . %d%s%dWarning: missing newline at end of file %s Warning: missing newline at end of file %s diff: %s%s 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFV))b)())))>)Jn))))))))))))!)a&))))))))))))))))o!))))))))))(!#a&))))Y!)))()!))o!-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@4 @@@3.1bS03.1bS0usr/bin/shl104755 0 2 66770 4201202102 7401 37777777777 Lz! SD@.textS .data@@S@.bss-@-@D.commentXmÐET-@RU RP PRjÐUU3UP9E >E+u E4<@u+ u Ed@E 9E|˸eU33@@5x1@h1@zE=etEjh1@hx/@* /@h1@hx/@G뗸 @@|er@@1@1@ 91@u @$@$@1@uh9@58@k& 'E E-|= wɅ|$@UWVSE=|1@|1@x1@1@EP2@=@=1@ 9(@u t@u&}u GE}Et@9x5@9$@v$@H$@%4@}54@%Y4@P@1@= u @1@=u31@EUEE]t@~E[t@t@+ùEt@E؋EE;@wk x@;t0E@EUЋ;@w=k x@;u-Ck x@=x@t0Ck x@>Gtt@+EHECEM>t2@@6@t$@6@8~5t5@ @~SE1@ 91@u @$@$@1@ƃ=P2@w1@u$@x5@3]u}øx5@9$@v$@H$@%4@}54@#Y4@P@1@= u @1@=u31@1@(@=(@~48@}58@(@PE8@P@(@E1@EM1@ 91@u @$@$@1@@6@PpK=tP2@wE(@5p5@E-1@@x1@ƀ1@@6@@6@U}u3ËEEU 9uE8uUx5@9$@v$@H$@%4@}54@k"Y4@P@1@= u @1@=u3á1@U8@}58@EP$Dá8@P@EUE1@ 91@u @$@$@1@U WVS@H5@@D@@@@@@5@@@E@rhN@Y]u}ËEx0@WV@^_E@E==@}?@} @E@E|iZ9E|]ED@E@9@uA@x0@x/@VW@_^EE=@ @E@E==@}@} @E,@hb@Y@=@@ho@4Ytht@h)@]@h@YCh@Y3h@ Y#-PY9 -P| Yt/@jsYjfYp/@p/@ 3]t/@d}t/@n5p/@WUZWt/@YM-B=7/$@EE9uU9PuEE8| E@9uE@E}3 }u@=w |$|@E@D@UE}E+Ћx0@VW@_^E+ЋڋE@E@@EZ9E}ED@EU9@9E@D@E }E+Ћx0@VW@_^E+ЋڋE@E@@EZ9E}ED@EU9@tE@D@EE@@5@@@U}|4Z9E}*ED@9@uED@U*H@s%U -@[h/@El/@H/@@L/@=ujFYjh-@ED/@=u 5-@h@h)@ jFY9D/@})jj5D/@ E5D/@AYED/@h-@hT5D/@IA T/@-@ JHJHJ H fJfHd/@ud/@hT/@hT5D/@@ t E/EuEYuq@Y5L/@YE9E|hT/@hT5L/@@ =u%5-@h@h)@k 6jXEYjY-@h@YE\UP5L/@?YE u?YE9E|=-@t'h-@P/@@ P:5P/@:Yh-@hT5D/@? UjtYEjh@E@P uh@h)@ojaDYEPjYEPjK/EPj5EU; EU;uh-@9j/u@Ph-@9h-@h@9h@YP/@uy,tP/@@=udh @h-@9P/@@ Ph-@|Ph-@u$EU;uP/@@ Ph-@B9P/@zh@h)@j CYh/@h)@j BY붐UWVS79-@uK@5@YYPhT@H/@@ P h5H/@At35-@hY@h)@ ]u}á@PYPh@H/@@ PJ 5l/@5h/@5H/@X =th5H/@&F|5-@5H/@h@h)@W<YcUjhb5L/@< =ur-@=t"= t/=u: =thT/@hT5L/@: jY5-@hN @h)@ UPE</@u Eu}tQE4/@hj @Nuhb5L/@9 =u 5-@hw @h)@t u/Yjhb5L/@`9 =thT/@hT5L/@A9 jYU Ejjv=E.E</@tj/@B P=EE @9E~h1 j&=}tjNYEP3YUjhb5L/@8 =thT/@hT5L/@}8 UPuEYEt5uhb5L/@Q8 =u5-@h @h)@& UPuYEt5uhb5L/@8 =u5-@h @h)@ ÐUEERE</@t64/@uu,uYPh @h)@ 3Ã}uEEE @9E~}u)9 @u5 @h @h)@: 3붃}~E뫡 @@ @Uu52Y=u4E=0~'E=8}uh !@EP EEE+E</@t4/@u uEE @9E~uYPh!@h)@z 3UE4/@=9YE/@ @9Eu @Uh u1Eu uhK"@uU@EU E @E@E=SEU<u}u(u uhM"@uU@E@@-@@U @EPYPhO"@EP EPP/@@ P,5P/@W YUhW"@ Yhn"@v Yh}"@k Yh"@` Yh"@U Yh"@J Yh"@? Yh"@4 Yh"@) YÐUPX.@Y.@hX.@hb5L/@i1 EE</@tuu6E @9E~UPuYEtu uU4E/@r 4/@h"@ X.@M#t h"@] Y-Y.@M#t h #@; Y h#@. Yh)@,Y} t3E/@r h=#@EPa EPYh@#@ YÐUPjj4jj4E'E</@tj/@B P4E @9E~j4YUEP+YEPYUPEE</@t/@R 9Ut E @9E~ס @9E~ [TuY9EuAjhb5L/@a/ =u5-@h#@h)@6 j#4Yhj~3UPE"E4D#@uZ3U@E9E|@UPEE4@u3E9E|Ujjj5D/@ h#@h)@vj h3YÐU jj2y Eu4juh $@h$@h$@h#@ j> Y uTYEPU)YE9EtE9EuhjO2ÐUh.@\.@Uh.@\.@@h.@Uh.@\.@9Et#h.@@h.@h.@U\.@UEEEUkE EUh.@@Uƒ<\.@t0E\.@Uh.@ \.@ \.@h.@U\.@Ð13Ð13Ð)1ÐUE PuUWVS3h$@&YEuE$@j/u t,$@E|PuW u |P_-@=td=t$= tV= t8=u2FwBVYDž|-$@|DžxTCwt -@ hlpø9x|-@xxt|xBM t ɉ u|Ph$@lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U5-@u u Ð/ÐU WV=0$@}uEPh4$@ u$E$3t-@3u؋}hhh4$@>. 0$@}jh4$@&.0$@}3j$hp.@50$@$ =$t 3p.@+jj50$@* -$l.@p.@qGF$rl.@3VUWV}f.@fG=$$@G.@[f5.@ftftft =uIx.@W;u:y.@W ;u+z.@W ;u{.@W ;u p.@u}aM3UWV}p.@fFft6F=t F=u j F PG P u Ƌu}u3U,WVE}Թ =0$@|+jj50$@ E=tE%=t 3ű}ÍEPYuBEPpYuE Pj50$@u &jj50$@( jj50$@( j$EP50$@, =$t Ep.@uԋ Ep.@uj50$@ E?UWV90$@tjj50$@' 3p.@GF$rl.@u}UWV90$@t 50$@&Y0$@l.@3p.@GF$ru}Uu "Y=O~3uh4$@!Ujh4$@ÐÐ>r+Ð*^+L$Q3ÐUPWE E)@u)@t* )@h)@uu1 )@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uWQ$YG uG tO G Dt1)@"u}F @tVR!Y;5,@rGGG tG ,@+GPwG P | GG듸9tO O G tg a.)3ÐjP'w)ËjP'])øJ)3ÐU}u3jYEhX+j(EEE}t6E9Ev)EE&E+EEEEEMujD(h.@YuubYljUYE}| uj (} }}}t EEP YEE2Ujh.@EøÐ2(ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU5-@E Pu Ð;&&t3Ð!&ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUPWVu Yt8EPu|%E%= ujh$@$} 3u}þfEft EU;uuh$@h.@EPh.@EPh.@|=EU;u1E%= u!t EU;uW Y.@\jEPW =TjjW9 NuWY3 $3Ð$3ÐUWVS}u ߋG8uOGF҈uË]u}UE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  ,@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tVKYF Dt*F uuj E+EP` tVCYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl&@Dž\9PtP؉PNKPPoYh~PW =uh~Ph&@ 3W YkUjuuuu u#Ujuuuu uU$WVS}.@E.@E(@s3UtE].@E(@E(@E@)@r5EH)@rT)@EP)@AEp)@s6EE]@)EEx)@r݋EE 9P܃}t؁.@/@v/@E)@t.@r05}fEf fEmE]mE܉E@0Ee )@];r&=5|+.@u.@1}tCF0N<9.@]Ћuԋ}ËEE0]@EEsEE 9P EEEEX)@MU]vEu}fEf fEm]mE܉EFUR0EMm]E`)@E5h)@]UWVS}}~bG %=utG9Gu?uG Du WNYu)3u!G ,@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W:Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W ,@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}-@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø L$tÐUW)@ WY;=,@r}UWV}tlG t6G t3WVYG PY}-@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG ,@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G ,@+G?}3W ,@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G ,@+G?}3W ,@+W;}WY3UWV}G G u}}&u<@D@GW ,@*h!YGt@O G W,@GGVYtG uO @u}G L@WR,@UWV}G ,@+G}G ,@Wu};7}7𐐐&3ÐU-@EEPhTu } E裀-@3ø6ÐÐU WVSE9ET=-@u<-@ -@-@ -@-@-@-@-@-@-@E@3؋=-@E&;5-@-@E@E=w=-@jY-@@;t?3Ee ƹ3tL3+‰EEE2-@+-@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5-@-@0E+E--@@;t-@-@-@-@~Љ-@;5-@v-@-@-@ 9=-@u -@-@G(=-@95-@u=-@7tލ;r;l%;UWV}5-@%-@9u5-@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ-@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$-@Ru -@+D$øT$-@3øÐ0SNL$0S:L$0+L$0L$0 L$0%Ã%3Ð-@ÐgT$@@(#)shl 5.3b of Jan 28, 1988/dev/sxt/000/dev/vsxt/000)@)@@@@ @@@@$@*@2@     hzh                 r@t@@n@r@@p@@l@@t@@Z@@@@t@@f@@@N@@@F@@ @B@@ @>@@4@t@@<@@@D@@@L@@@X@@@d@r@@  ()1111111???????????????????????????x5@    &*! )"'#$%(,-.1034+5/+2//2     (1.,'%$            !        2 B Y s     * 9  H H \ \ ?createresumedeletelayershelpquitblockunblocktogglebad switch yylook %dyacc stack overflowsyntax error>>> syntax error >>> >>> real tty open failed (errno = %d) virtual tty ioctl failed (errno = %d) >>> xtshl: Cannot invoke shl from within layers /dev/can't find your utmp entry can't determine your login terminal %03dno control channels available (errno=%d) %03dchown on %s failed (errno = %d) sxt driver not configured no memory for kernel configuration not using a tty device multiplex failed (errno = %d) (%d)switch failed (errno = %d) resuming %s switch failed (errno = %d)nresuming %s switch failed (errno = %d)nswitch failed (errno = %d)nswitch failed (errno = %d)n @/bin/shlayer %s already exists only %d layers allowed (%s)layer %s not found can't open pipe for synchronization (errno = %d) can't set group or user id %03dvirtual tty open failed (errno = %d) error on virtual tty open xsynchronization problem (errno = %d) SHELLvirtual tty ioctl failed (errno = %d) PS1-icannot exec %s (errno = %d) cannot fork (errno = %d) = sxt%03dblock name [name ...] create [name] delete name [name ...] help or ? layers [-l] [name ...] quit toggle resume [name] unblock name [name ...] %s (%d) blocked on input blocked on output executing or awaiting input %d switch to channel 0 failed (errno = %d) warning: there may still be shl layers running /bin/psps-f-g/bin/shPATH:/bin:/usr/binsh/etc/utmp%Q%Q%Q%Q%^%^%^%^%/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF1;;1;:;;;;11;11;%2525252525252525252;;;;;;;;;;;L4;8;;;;;;;;;;;;;;;;3;;;;;;;;;;:T2L4f68O2T2;;H2;;3;;;!;;3;;3-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@\@\@,@d@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0usr/bin/sar100755 3 3 146630 4243134313 7430 37777777777 LD" .@.text .data@@.@.bssM@M@.commentÐETM@RU RP P蝝jÐU|Eh\Y@mxYZ@=u#h;)@uhI6@hI@9^ jGYY9Z@h@hZ)@Zjh`)@PZ@}#hj)@uhI6@hI@] jYY=@tj5@5PZ@ #h)@uhI6@hI@] j襜YYjhY@5PZ@艒 =u#h)@uhI6@hI@X] jfYYY@fEY@cfY@UZ@E=?=D=e=fy=i=n=ott=shY@hY@hY@h)@57@B]=Y@Y@ P @Y@ X @Y@DZ@8 @Y@57@h)@EPm kh8Y@hY Z@@Z@|O@+4R@u#@$|O@+4R@EExO@+0R@EE\$]@Z@|O@+4R@EE #@ #@#@v#@%@Z@|O@+4R@EE #@ #@\$O@+Z@9Z@ U?Z@P57@h6@hI@2 j@HYUhE6@Yj(HYUuhI6@hI@ jHYU츀9Z@uhM6@hI@h{6@h6@hI@h6@hI@ø)GÐUE PuUWVS3hD7@<YEuEI7@j/utX7@E|PuW u |PspM@=td=t$= tV= t8=u2FwBVYDž|Y7@|DžxTCwt pM@ hlpø9x|pM@xxt|xBM t ɉ u|Ph<7@xUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3UPWVS}EF@uJGF@u=+t =-u EGF@u 3]u}ø0+Ëk 0+GF@uރ}t뾋븐UPWV97@ueE97@}#E 7@ =-u E Au u}h7@E 7@4pu 7@E 7@ 7@=7@:tWu=7@tOLjEE E 0:YPE 0jC h7@m:YPh7@jsC jEPjcC E 7@ 7@@7@u7@7@?F=:7@@U 7@t7@@U 7@7@7@@7@;E|l=7@tOLjEE E 09YPE 0jB h\7@9YPh\7@jB jEPjB 7@?GE 7@7@ 7@7@8E 7@ 7@@7@u7@7@7@BÐUXWVEE} j7V u6tG =DFGfFfG fF fGFG #?8 >u}jju5= EjkEURu= =trjEPu7 =uZu=YEtJE-PE@Pu7 U;u%EUJ ujuu< =ujuu< 9FrE9F|!u <Y}u?Y7EFP}u"u;Y}t u>Y3u}jEPu6 F@)EFtjEPu6 } fG GfGG ?t8uju?E} {uEPuX6 E=Ltu;YKEEjuu\; E؋EEUWV7@:@9pM@s pM@<7@u-6YtVuj/? jh7@j? W6YPWj ? jh7@j> u}Ð*z?L$Q3ÐUPWE EI@uI@t* I@hI@uum I@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuhI@d UPEEPu uI UW}EEEljEEW4YEE2uu EP }ÐUWVS}u DžM@M@ M@W=~*uDžF DžDžk -0FF@u؃u DžÉ=lt h9uF؅[uPVF@tDžlG@؃nt_=M@uVctQ[tLM@} W@ Y GGF@u M@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfM@fl9uEEPM@{EEPM@dEPWSt'=M@tu /$Fu F@td=M@uM@} W Y GGF@u M@W$=uM@y%uF؃%M@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$C@EE EEM@}WyY3]u}ËGG=+t=-t =0t8EMM@} W(Y GG؃0i9E }9EoM@} WY GGEh~PW =uh~PhF@ 3W YkUjuuuu u#Ujuuuu uU$WVS}M@EM@EH@s3UtE]M@EH@EH@E0I@r5E8I@rDI@E@I@AE`I@s6EE]@)EEhI@r݋EE 9P܃}t؁M@.N@v.N@EpI@tM@r05}fEf fEmE]mE܉E@0Ee xI@];r&=5|+M@uM@1}tCF0N<9M@]Ћuԋ}ËEE0]@EEsEE 9P EEEEHI@MU]vEu}fEf fEm]mE܉EFUR0EMm]EPI@E5XI@]UWVS}}~bG %=utG9Gu?uG Du W:Yu)3u!G L@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u W&Y=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W L@+W;}WY+Åu>G Dt+G uEE Pj u tWtYEEWUWVS}M@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð L$tÐUWI@ WY;=L@r}UWV}tlG t6G t3WVYG PY}pM@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG L@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G L@+G?}3W L@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G L@+G?}3W L@+W;}WY3UWV}G G u}}&uZ@^@GW L@*h!YGt@O G WL@GGVYtG uO @u}G b@WRL@UWV}G L@+G}G L@Wu};7}7𐐐3ÐUpM@EEPhTu } EpM@3ø6ÐÐU WVSE9ET=M@u@>@2>@;>@D>@X>@j>@x>@>@>@>@>@>@>@ ?@%?@4?@=?@F?@Y?@b?@k?@~?@?@?@?@?@?@@@+@@K@@@@@@@@@@@@@@@@@@@@@@A@ A@A@A@&A@0A@:A@DA@NA@XA@bA@lA@vA@A@A@A@A@A@A@A@A@A@A@A@A@A@B@ B@B@ B@*B@4B@>B@HB@RB@\B@fB@pB@zB@B@B@B@B@B@B@B@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device errorRdOdOdOd~dRd~d~d~d~d~d[d~d~d~d~d~dRd~d~ddd??GA>???D@D@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF|zz|zzzzz||z||z}%}%}%}%}%}%}%}%}%}zzzzzzzzzzz<zŃzzzzzzzzzzzzzzzz~zzzzzzzzzzD}<VŃ?}D}zz8}zz~zzzzr~zz~-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@b@b@L@b@`d@3.1bS0usr/bin/timex100755 3 3 71730 4201204767 7754 37777777777 L " HZ@.textHZ .data@@[@.bss3@3@.commentsÐET3@RU RP PYjÐUpWDžhDždDž`DžDžDž<E=pt]=ktt=ftN~=? hR@h@h/@ h9@2YjAYYYhh:@GPB2hB@GP)2=hh>@GP2w=otn=mughF@GP1Q`I=st%=ru9hJ@GP1#d=tuhN@GP1h0@u u! E=E9@|1hy@h@h/@ h9@1Yj XYYdt>WPh@h9@v# h9@h@nP]# nP'Yh`t EPYEPP/YE(u1h@h@h/@ h9@1YjaWYYud Pp!Y@U RE @43@4@E @4h@h/@jVYjj^VjjRVEPKY;uEth@h/@UjjVjjVEPE.YEЋh`t EPYdt nPt&Yh@h/@E+EPh@SE+EPh@?E+EPh@+h@h/@`hjPYt j-Y@Ph@4PT! GP4P.P Y0EPEPh@nP!h@nP@htPh'@h/@ `PPyPmPaPUPIP=P1P%PP PPPPPPPPPh+@PX@=DžfhT@k P[ u@hZ@k P+ u@9|9~8k PYk PYPPh@@="@/ Y`t?9~ ha@h/@h@h/@dt1h9@h@nP nP#Yh9@,YEPRYUW3.@EE }U:@EE }E G |uh/@>EE8t E8@0}t0 $@8Et, /@}h/@EPI/@/@UE8 Et(@,@8Et, /@}h/@EPxI/@/@UOLEkd2@0Ph@h/@Y h@h/@G }Uj"YEEPYEjE@ Pu Uuh@h/@ h9@+YjEQYÐUPWVS}E,@uJG,@u=+t =-u EG,@u 3]u}ø0+Ëk 0+G,@uރ}t뾋븐Uu!YPYUWVS3@@GF҈uEk@@3@GFGFGFGE@k(@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW3@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUE PuUWVS3hX@BYEuE]@j/utl@E|PuW u |P_3@=td=t$= tV= t8=u2FwBVYDž|m@|DžxTCwt 3@ hlpø9x|3@xxt|xBM t ɉ u|PhP@lxUWVS}u ] C׊ G?t =:u9]t/C C֊ F>utGNj]u}3U53@u u Ð/ÐUPWV9@ueE9@}#E @ =-u E  Au u}h@E @4u @΋E @ @=@:tWue=@tOLjEE E 0@YPE 0jK h@@YPh@jK jEPjK E @ @@@u@@?F=:@@U @t@@U @@@@@;E|l=@tOLjEE E 0@YPE 0jJ hp@?YPhp@jJ jEPjJ @?GE @@ @@8E @ @@@u@@@UWV}t9~u=Ƌu}U=@uh@h@]?@5@YU=@t5@@Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@>@u35@YUWuhh3@_ =7@WQY=7@WBY=:j EPW^ EW=YPj:Wx= 9Eu`WY}| `9E~aE7@t4=:t*j EPW EW=YPj:W= 9Et3}WY}| `9E~aE7@=8@= 8@W^Y=8@WOY=8@W@Y=7@G?t =,u?tG=8@7@oUWVS} uEE~,F t!O>(V/Y=uE9Eu~3]u}N;>}Sj vu EtE+E؋E)F>}3V 2@+V;}V/BY}u +gEEvÐUWVSEPfYE =ruEEE =ruEEE8@?t-8@PAY8@rڋE =ru3EVAYuAYujS SuAYjuh,)@h()@h )@GjmY9Eu 3]u}ËE8@S)AYu VUWVE@ u<YjjEEjjEEjjEEEP:Y;48@tu93@tكuEujBEuj5Euj(E8@Eu}Ð>~EÐUWV} ;t?F EF F F3҉V2@=at=rt=wt3u}ÀN jjuF@ N G=+uf N *DL$Q3ÐUWVS}u ]GF:u Nj]u}M}3UW}W;YjjG P? GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh/@d UPEEPu uI UW}EEEljEEW>8YEE2uu EP }ÐUWVS}u Dž8@8@ 8@W=~*uDžF DžDžk -0F,@u؃u DžÉ=lt h9uF؅[uPV,@tDžl-@؃nt_=8@uVctQ[tL8@} W@ Y GG,@u 8@WV=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf8@fl9uEEP8@{EEP8@dEPWSt'=8@tu /$Fu ,@td=8@u8@} W Y GG,@u 8@W=u8@y%uF؃%8@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$0)@EE EE8@}WyY3]u}ËGG=+t=-t =0t8EM8@} W(Y GG؃0i9E }9Eo8@} WY GGE YE5p*@uEjhd*@u) Ed*@-h*@9@39@l*@5t*@uhEtCl*@Et0=;t(jhh*@u Et E=;th9@h9@E@P UPEE,@u3ËE E U M~E@E,@uEE,@u E E M}EUW3EE}t-E=-u3Eu E=+uEEPuEt^iEE=:uHEPE@PXEt0kE<E=:uEPE@P-EtE}t E ډE 8E}UE,@u3ËE E k U0E@E,@uՋEUE3EEPuEtyME=/ujEPE@P EtOE=,uFEPE@P?Et*ME=/ujEPE@P9 Eu3ËE iUQUEiUQU d*@+ h*@+щUPEEEkU *@9P|EkU *@E kU *@E0uEUE 0u0U EiQ E iQUWV}u :|"Gtmn-m+GG+‹u}ø+2(ÐUPWVu#Yt8EPu|%E%= ujh*@'} 3u}þfEft EU;uuh*@h,9@EPh,9@EPh,9@|=EU;u1E%= u!t EU;uW"Y,9@\jEPW =TjjWQ" NuW!Y3 &3Ð&3ÐUWVS}u ߋG8uOGF҈uË]u}UW} 9EtFG tG9GwG9Gu+?u&GuW= YGHGUE}ø .&3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  2@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl,@Dž\9PtP؉PNKPPoYh~PW =uh~Ph,@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}L9@EL9@E/@s3UtE]L9@E /@E(/@Ep/@r5Ex/@r/@E/@AE/@s6EE]@)EE/@r݋EE 9P܃}t؁L9@9@v9@E/@t]9@r05}fEf fEmE]mE܉E@0Ee /@];r&=5|+L9@uL9@1}tCF0N<9L9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE/@MU]vEu}fEf fEm]mE܉EFUR0EMm]E/@E5/@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 2@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 2@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}3@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W2@UW/@;=2@r3}ÃG uUW/@ WY;=2@r}UWV}tlG t6G t3WVYG PY}3@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 2@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 2@+G?}3W 2@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 2@+G?}3W 2@+W;}WY3UWV}G G u}}&u9@=@GW 2@*h!YGt@O G W2@GGVYtG uO @u}G A@WR2@UWV}G 2@+G}G 2@Wu};7}7𐐐3ÐU3@EEPhTu } E裰3@3ø6ÐÐU WVSE9ET=3@u<3@ 3@3@ 3@3@3@3@3@3@3@E@3؋=3@E&;53@3@E@E=w=3@jY3@@;t?3Ee ƹ3tL3+‰EEE23@+3@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή53@3@0E+E-3@@;t3@3@3@3@~Љ3@;53@v3@3@3@ 9=3@u 3@3@G(=3@953@u=3@7tލ;r;l%;UWV}53@%3@9u53@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ3@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$3@Ru 3@+D$øT$3@3øÐ0ZNL$0Z:L$0+L$0L$0 L$0ÃÐ3@ÐoT$   @@@sopfhkmrt-f -h -k -m -r -t Usage: timex [-s][-o][-p[-fhkmrt]] cmdMissing command/tmp/tmx%d/usr/lib/sa/sadc 1 1 %sTry again. %s: %s Command terminated abnormally. realusersys -l %sacctcom -S %s -E %s -u %s %s -i %sr%[^ ]%1c%s %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%sCHARSBLOCKS CHARS TRNSFD = %ld BLOCKS READ = %ld No process records found! /usr/bin/sar -ubdycwaqvmprCDS -f %s 1>&2000 .::. %c %s Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/bin/shPATH:/bin:/usr/binsh: option requires an argument -- : illegal option -- --/etc/passwdrr @$ @. @H @X @p @z @ @ @ @ @ @ @ @!@!@2!@>!@J!@\!@k!@{!@!@!@!@!@!@!@!@ "@"@-"@<"@H"@_"@p"@"@"@"@"@"@"@ #@&#@A#@P#@t#@#@#@#@#@#@#@#@$@$@$@5$@J$@S$@\$@p$@$@$@$@$@$@$@%@%@!%@=%@L%@U%@^%@q%@z%@%@%@%@%@%@%@%@&@C&@c&@&@&@&@&@&@&@&@&@'@'@'@"'@+'@4'@>'@H'@R'@\'@f'@p'@z'@'@'@'@'@'@'@'@'@'@'@'@'@'@(@(@(@$(@.(@8(@B(@L(@V(@`(@j(@t(@~(@(@(@(@(@(@(@(@(@ )@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-cfcccfofx??GA>???/bin/shsh-c*@*@W`/Lw/K:/JMFw/GMT TZ/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFb7"A"An7"A@"A"A"A"A7J7"AV7z7"A7777777777"A"A"A"A"A"A"A"A"A"A"A9"Am>"A"A"A"A"A"A"A"A"A"A"A"A"A"A"A"A{9"A"A"A"A"A"A"A"A"A"A@79;m>77"A"A7"A"Ae9"A"A"A@"A9"A"A{9-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@A@A@2@A@XC@3.1bS0usr/bin/uustat104111 5 5 234233 4235413524 10164 37777777777 Lͯt"pN  ,.@.text .data@@,.ܖ@.bssE@E@.commenthÐETE@RU RP PjÐU8BB @3fBfBfBfBfBfBfBfBh@hC證!JC@ChC5CB%hC-1Yj5 /@h @`  @fB}fBfBgfBYj5 /@h @g`  @fB/fBfBj5 /@hB'` BhB1Yth@hA@MjEYfBj5 /@hB_ BPPhBz$ th@hA@TMjYfBf5 /@?Y @= @L @@h@hCh@hA@Lh5@hCh#@hA@LjqYh@u u? =/@9Et@hX@hChI@hA@Lh@hCh@hA@uLjY 9 @|hCh@hA@IL 9 @|hBh@hA@%L 9 @|hCh@hA@L 9 @|h @h@hA@K 9 @|hBh@hA@K BBBBBB B =~6h@hCh@G hG@hCh5@oG jՑYBB B B B B uhChBfBf=BtGf=Bzh[@<Yuh@hs@E(je3Y-al=aY$@h@@h@Pͅ PJYEP?YjPPC) =Z<YUBH<YUB;YUB$;YUB hE@,P[ j E@,P}gE@EPYEPu=uwYf=Bh@P)j/PgP:Yuh@P\E?jeY2@%jPh@Sf t'@tjh@P"f t'@tjh@Pe t#@tjh@Pe tjt#@tjh@Pe t=t#@tjh@Pfe tPY@Pu8=h@t9Yuh@h@ԂEpjeYc@t(tjPh @d 2=Bt9BjPhBd f=Bu f=BtI @h @ՁY-Ph @P5d thCPewC%=@`h@P襁EAP8YE=.=CE@f=Bu f=BtPPCBB tPPPPUR(;~YEffP(I=Xu;E@PPjUR*;~EffP*Pu=uYPu=f=Bu f=Bt2fBft0@7@Ph @h@@ j,YDBf=Bth@EJ@ @EEuhAh5@hJ@AEJ@u YEEuj諊YU<)WfDž 9 @|uhC@hA@C 9 @|u hR@hA@C @t3 @t"E @tE @Ph @|Utu uhX@PTEPPbtK9 @|Ph^@hA@)C 9 @|5D@ht@hA@C h@PP~uT9 @|Ph@hA@B 9 @"5D@h@hA@B EPXY}B7www G@PE @Ph@n>PPPPPPh@PB =}/9 @'Ph@hA@A  9 @|Ph@hA@A 9 @|Ph@hA@A 9 @|Ph@hA@[A 9 @|Ph*@hA@5A 9 @|Ph5@hA@A Bt7B5'PhBR ftwww G@PE @Ph?@www G@Ph@h`@<fDžuPh@< =Ru PPh@h< w=Xt:PPPu PPh@ </=S=X Puh@P!Qh@Pzuy9 @|Ph@hA@h? 9 @|5D@h@hA@C? PuPh@M;h@@;Y<3s=Ct2=RtC=UuWPPh@PY?3PPyPh@P$? hP9 kt t t!CthCPOtPh@:Ph@: t zYhPF8 azY U@WfDž 9 @|uh@hA@\= 9 @|u h@hA@:= @E @E @Ph @Nu uh@PYNEPP.\t?fBft6@;@P5D@Ph @hA@<j)YhF@Pwu?fBftq@v@P5D@PhH@hA@9<jǂYjRYPPPPPPh@Pr< =}?fBft@@P5D@Ph@hA@;j*Y 9 @|Ph@hA@n; 9 @|Ph@hA@H; 9 @|Ph@hA@"; 9 @|Ph@hA@: 9 @|Ph@hA@: f=ChCuYPPhC;X t]PuYPhCPX t7h @fBft#@(@Ph@hA@B:jЀYfDžPuh3@PK9 @|Ph9@hA@9 f=BtPZYPPZfftL9D@t?5D@PfBftm@r@PhD@hA@n9jYhP3 ,9 @|Ph}@hA@9 f=BtPEYYPPGYfft?5D@PfBft@@Ph@hA@8j:YuYfBft@@Ph @h@4 j~YU u uh@PIEPPWtEPumWuEøayUUUU 9 @|uh@hA@7 urYEEJ@H}t;}t5juu=U u!urY9E~uuqrEÁEEu 9 @|#E-J@Ph@hA@87 E-J@=|NE-J@=u5h@h@hh@h @,h&@hA@6EDBuuqEЋMA3ɉJыMQ҉Q$fQ*fP(@,UWExuxuPuf=Btxt+uhT@}2ExtphZ@d2}h_@P2YEfx(t@(Phd@62 hi@'2YExtphm@2 hr@2YEfx*t@*Phx@1 h~@1YEx$t'@$PKYwww G@Ph@1Ext h@1YEP,@,Ph@w1E@-|{=wt|p$d@EPKYEЋM+J$@ +E}~)E@;<EREPh@ 1 E9P~ph@0 A@}hA@j rq A@ A@ ^U W 9 @|h@h@hA@j4 3XGd|h@DP3oj/DPR 9 @|DPh@hA@4 DP%Yu"h@DP@o@je`zY 9 @|JPh@hA@3 @JjJPh @Q u~jJPxEJPh@j/j EPun EEP%YEuftY9Etuh@&/3h@/YJP@o=hA@hpYƅX3EXº9t2X4h@XPmYXRC Gd|~ jXPh-@h*@h"@GjxY<ÍX‹U92Xº9uXU Gd|Uu uCU =@u h@GYu uh2@PCPPP=t@+=@3UWV} EujjV(=t 3u}fftF=.tjFPW`C GU@W} Wuu3}Wuh8@EPGB9 @|EPh>@hA@0 hCEPOuC%=@u딐UWVS}WPXk=/=~uEDPh ChH@WA CuiËCFt =/uEtWEPEP t5 @WjVW!OWEYthN@Wjy3rUWV}WP]jPjYD=/thg@PNj/V@u39 @|Phi@hA@. jP=u몋/FU4WV}u hCWMuC%=@WP[iPiYJU EME=/u 9Ewj/PLEtE Džu@P8M9 @|hw@hA@- 9 @5D@h@hA@- 9 @|h@hA@`- 9 @5D@h@hA@7- %=thuBE=t9ujjLYj3nYj+nYjWh@h@XBjBY9Eu+hh@5D@h@5 @ jYEPgYE;Eu}t/hh@uW5 @ %=tj%PtKhh@5D@5 @, 9 @|\h @hA@+ B=C5C;Yt/9 @|5Ch @hA@+ )5%PWit)hh) @5D@W5 @ PjWC tz9 @|Wh3 @hA@+ 9 @|5D@hE @hA@* hhO @5D@W5 @ 5C:YW5C:Y3DUuYu3uhY @hA@m* UWVS}ߋ=/Fӊ CCjhq @SG ttt @thv @S;tjhx @SG ttC| @t:h @S;u(F;u =/tS;w']u}Êu#;u.F3N;v#F=/uF҈t C=/u=/%UPW EtuYtE9Gt'uD!Yuj6!Yu }7u c3UWuXYuE}wucE W3ᐐUW}#@u7oPj h#@h#@9nPh$@h#@h E@9Wh E@h#@ =uhh E@HYWbYt;/h E@mHY9 @|h5$@h$@hA@ ( }Wh E@h#@" uWY3UWV}EjWJmE9 @|Wh6$@hA@' 9Eu?9D@t9 @+5D@hF$@hA@[' j EPu%b uhY t-9 @h$@hu$@hA@ ' EP`YEjuRmt 9D@u19 @|h$@h$@hA@& u}ø9 @|uh$@hA@& 9 @|Vh$@hA@h& 9 @|Wh$@hA@H& WFYt-9 @uh%@h%@hA@& Y3WUPW3 <Ct G;=#@| |%hh/%@Wh.%@h%@jY;=#@| #@#@ju`Y@PE}u$hhM%@juh8%@jhYuuR`EC}UWV}3V<CtKt"tC<Ct94CW7u%4CDEY4CkiYCF;5#@|u}U@uh\%@hV%@EP.6j/EPBCtC@@EPEYÍEU@j/u16t3uhx%@hr%@EP5j/EP6BCtC@E@hEPq}3UWEP9YE3<CtEP4C5DG;=#@|ڋ}UdWh$u 8 5D@uu h%@EP5EPh%@9D@t9D@u CY9 @|D@4$/@h%@hA@)# 9 @|u h%@hA@# 9 @|uh%@hA@" u CY}+5D@u h%@EP.4EPh%@}j uWqh h$u jju  WcYuu u BY}+5D@u h%@EP3EPh%@$3rUWV3fEfEEE9 @|Wh%@hA@! 9 @|5D@h%@hA@! D@= t2==.h1&@h(&@{Nju}ËF=}Kj~1YEPju_ P9 @|h&@h&@hA@! 3h &@h&@ hS&@hJ&@thu&@hl&@[UPWVS}u ]E^G= t= t= ut8EGGt= t= t = uE9]|E]u}UPWVSE8=\GG=7t?K=3t6=1t- =0t$u=2tl=5t =4t Z=6uSE=st/=nt=bu,F: F4 F.=ru F!=tu F\FFFG?,EE8 ]u}=0|%=7e-0EC+=|у}u \FNFFUC느Uuujuu u#Uuujuu uUW= @tA@&h&@h&@Yhh&@kt/9Eu5 @Pj hB|UPWEP3YEP3Y7www G@PhB'@hLE@.LE@}ÐUPW}EX'@Ehl'@h^'@XEtHujEP u3ZYEEt3j EP.EtEEEEP<YE͉EjuW/ G}ÐU,W}t Eu Ã}ChCu^.3=#ty= tk= t]= tOhp'@P /t5}t,t"Pu-u 3>h,P] ]lUWV}WVY@Pb]Yt WV|VƋu}U W} EPu:=uuY}ÁtDE#;t8^ U;u E#;tR U;uE#;u3D@ 또UuYUu uyUEH=$t,@j`E@4t'@)7jdE@4t(@7jhE@4t)@6j`E@4t'@jdE@4t(@jhE@4t)@uh,@hCj+ h,@hCUUt)@3t(@t'@h,@h,@ UEtP8h,@P,Euuh,@p t EPu=t'@uMh,@Yt'@=t'@u*hh-@5t'@h,@h,@2jYx'@=t(@uMh-@>Yt(@=t(@u*hhE-@5t(@h4-@h%-@jYx(@=t)@uMhP-@Yt)@=t)@u*hh-@5t)@hu-@hf-@jZYx)@UpE@3lE@t+@3t*@h-@h-@uSEtyah-@P|*Euuh-@ t3h-@jS*Eu uh-@ t ,Pu UE EQuRYUЉUE9EtWE@= uIEHEE 9EtEE@=\u&E@ uE +EPu uE+E UPu&RYPu u4 uu RYE E u#3ËEuu (t-E@E j:u `(Euuu (u3UPE@E@*E@E@UE@-E@=}h-@j(EuE@UEE@+j=E0'E} E@Eh-@E0'uuht'@h-@E0'uuht(@h-@E0m'uuht)@yh-@E0E'uuht*@mQh-@E0'uuht+@E)E0h-@hCp& h-@hCEE-E@=} E8UE tEEÃEE8uh.@u ƅE=/th.@h.@P% uP3jPuDPYUE8u&hShB.@0h4.@h%.@$jYEh.@jm&E}L,UE tEEÃEE8uhM.@u GuYUE8u&hjho.@0h`.@hQ.@jhYEhO.@j%E}uU=tE@t 5tE@VPYtE@`E@=xE@t 5xE@-PYxE@dE@YU=xE@t 5xE@OYxE@dE@=|E@t 5|E@OY|E@hE@U=|E@t 5|E@OY|E@hE@U=t'@uhz.@uvYY=xE@t 5xE@]OYxE@dE@=tE@u 'u35tE@u u t۸U=xE@t 5xE@NYxE@dE@#=tE@t5tE@NY`E@;`E@/h.@`E@4t'@LtE@t`E@`E@@uJG)>@u=+t =-u EG)>@u 3]u}ø0+Ëk 0+G)>@uރ}t뾋븐 T3ÐvT3Ð^T3Ð/ÐÐ/ÐUPWVS}E)>@uJG)>@u=+t =-u EG)>@u 3]u}ø0+Ëk 0+G)>@uރ}t뾋븐UPWV9.@ueE9/@}#E /@ =-u E Au u}h.@E /@4|u /@΋E /@ .@=/@:tWu=/@tOLjEE E 0LGYPE 0jQ h.@1GYPh.@jQ jEPjQ E /@ .@@.@u/@.@?F=:.@@U /@t.@@U /@ /@/@@/@;E|l=/@tOLjEE E 0iFYPE 0jQ h.@NFYPh.@jP jEPjP .@?GE /@/@ /@.@8E /@ .@@.@u.@/@ /@UWit7u^uNj}ÐUWEE=@@1h@@Y=uE9E3} @@@@=@@Wj 5@@uEtE+EE)@@@@=@@}3@@A@D@+@@;} h@@JY}MMEEeUWEE EP(VY=uE9Eu~3]u}N;>}Sj vu{EtE+E؋E)F>}3V D@+V;}VEY}u +gEEvÐJÐUWV/@`1@9D@s D@<$/@ui?YtVuj J jh/@jI W=?YPWjI jh!/@jI u}Ð>fJÐUPWE EA@uA@t* A@hA@uu$ A@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_U9Er=h:@u>EJ@PDYh:@EI@EI@E EURu+ËE9J@sˣJ@P5h:@oGh:@UWVSI@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuWI@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVuI@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u I@|?=h:@t6SW5h:@F SVWyF S5h:@ViF ]u}ÊEGFUKuUWVS}u ]I@E9E|R=h:@tIuW5h:@F uSWE uVSE u5h:@VE ]u}ÊEGCFUMuӐUW}W=YjjG PA GGg G tg }ÐUPWEEE@ uE@ t(EH uuu E@ t }ËUPE EPuh@@d UPEEPu uI UW}EEEljEEWn:YEE2uu EP }ÐUWVS}u DžJ@J@ J@W=~*uDžF DžDžk -0F)>@u؃u DžÉ=lt h9uF؅[uPV)>@tDžl*?@؃nt_=J@uVctQ[tLJ@} W@ Y GG)>@u J@W~=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfJ@fl9uEEPJ@{EEPJ@dEPWSt'=J@tu /$Fu )>@td=J@uJ@} W Y GG)>@u J@W=uJ@y%uF؃%J@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$l:@EE EEJ@}WyY3]u}ËGG=+t=-t =0t8EMJ@} W(Y GG؃0i9E }9EoJ@} WY GGE@t@u9Eun)>@t`)>@t0)>@t7W+ЉUE9E}t}u EEEE}.u EEtmet E}EEuyFӈJ@} WY GG)>@u+t-t)>@t.FӈJ@} WY GGM}}}tPEPY]}tE]l9EuEBETEBE@}t9EtE؉El9EtGh9Eu=EBfUf J@WS6=u J@E6EBUU WVS}u ]tEB3EEcu!utEUEK~UJ@E} u.Y EP@E=t'suE)>@u[uEU<t9EuJ@ J@)~% J@uu-=u J@E9Eu 3]u}Åt ctEU WVS}u E=^uEGh}u3PV E=]t -9EudEUGX}u 3]u}ø-9Eu2E=]t%G;]}E+@PuP4 G EUGE=]u랐U(WVS}EEG)>@u=+t =-uEG3EEEE.}tE0u7EzM }k  9E}kE EkE EEM}M }k ؋-0' 9E}kE EkE E-0EEG)>@U.uEEBu;@]̋uЋ}É]E]9E~ EME]Eteur3E= t=+t =-uEG)>@t:} k -0G)>@u؃}t)EE}:@EEEE;@u(;@C;@  [;@r:@E}؋$;@E ;@E|tE ]tkEP}}EuE\$ ]}t EEUWV}uW2YG uG tO G Dt1@@"u}F @tV/Y;5D@rGGG tG D@+GPwG P, | GG듸9tO O G tg aU W}tE(;@uE}ÍEPu u ؅~8E=D@"E@;@s8;@0;@뫋E=}!D@"P;@E X;@]r؋ȸEE}^E H;@]wϸEEM3UW}E`;@uE}Eh;@vEE]Ex;@rE p;@EE]E;@rE;@vEE뒐W|$D$ L$~% ‹ʁD$_Ðn63ÐU}u3jYEh3aj5EEE}t6E9Ev)EE&E+EEEEEMujd5h J@Yuj5YufYj]5YjVYE}| uj5} }}}t EEP!YEE'Ujh J@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu w ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐUWVS}u$J@Etu WЋu 3]u}u V&u $J@ C$J@ɐUWVS}u Ct ;ut Nj]u}ËG8u3UWVS} ]Ft ;utCuދ+E]u}U WVS}uE} tE 8$E)>@u5GEE)>@uE=+t =-u EGEu309Et "G=xt G=XuE)>@tEE)>@t E-0#E)>@t E-WE-7E;| 3]u}Ãu;09Eu1G)>@tG=xt G=Xu EE)>@t E-0#E)>@t E-WE-7+EGE)>@tEE)>@t E-0#E)>@t E-WE-7E;|} tE 8}tD$Pt$Ð5E@t$ t$  Ð;00t3Ð T$tÐUW(E+;@EEPY=;@iGQiWkW<E=(J@u=,J@uWEPEP< (J@E,J@EE9E|)E9E}!E+;@EEPYG Nj}UWVEQUEE}} EQME<0J@E4J@ƙ58J@EpHJ@}| FFFtmnEN}|ۉ5DJ@}=LJ@ƹtmn=nu f;@3 u;@+Fu;@;}f;@G@u3ËE E U M~E@E)>@uEE)>@u E E M}EUW3EE}t-E=-u3Eu E=+uEEPuEt^iEE=:uHEPE@PXEt0kE<E=:uEPE@P-EtE}t E ډE 8E}UE)>@u3ËE E k U0E@E)>@uՋEUE3EEPuEtyME=/ujEPE@P EtOE=,uFEPE@P?Et*ME=/ujEPE@P9 Eu3ËE iUQUEiUQU ;@+ ;@+щUPEEEkU ;@9P|EkU ;@E kU ;@E0uEUE 0u0U EiQ E iQUWV}u :|"Gtmn-m+GG+‹u}ø!)ÐU(WVSjLYuj>Yuj0Yt,j/WuFjh<@(E}]̋uЋ}3ME=t!E=tE=t E=u j EPVA u u#YCj$EPu^ =$tu#YyWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_UPWVuH#Yt8EPu|%E%= ujh<@4'} 3u}þfEft EU;uuh<@hTJ@WEPhTJ@EPhTJ@|=EU;u1E%= u!t EU;uWX"YTJ@\jEPW =TjjW" NuW"Y3 :'3Ð"'3ÐV|$3O|$ ыt$ D$^ø<&Ðjjt$ 9rãD@ÐUW} 9EtFG tG9GwG9Gu+?u&GuW= YGHGUE}ø :&3Ð"&ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  D@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl>@Dž\9PtP؉PNKPPoY@Dž\EtDžl>@Dž\P 9u E@u K@0E@FE+ËU+Љ)ETMEE E PP~؉]PJKPPkY5Dž0Dž4Dž0Dž4EE E PPX9EuH<@\<@<Dž$x<@Dž@Dž\L% H ‰PDž(Dž0Dž4E9EDž$p<@Dž<\<@@PDPE@=}E@PLH* HE能@tDžl>@Dž\@Dž\EtDžl>@Dž\sEtC0UE}u Et E.EE艅@ E@uEE E -ݝHN%=L%uBHu9O%=u Dž Dž,<@CEO%=uDžl>@Dž\L% H ‰PDž(Dž0Dž4Dž<\<@Dž$p<@@PDP<9E}E<PLHQ ؃@t-E9D~ =0tDžl>@Dž\@Dž\EtDžl>@Dž\sEDDž8~t 98|0 8CUEEu}~ E.E<9E}E<9E ME+E܉T E@u E }uEE E -ݝHN%=9L%uUHuLO%=u Dž G9Eu<@<@؍CEDž, O%=uDžl >@Dž\L% H ‰PDž(Dž0Dž4G9E8Dž$p<@Dž<\<@~؉]P[E@ETMl@PDP9E}EPLHJ ݅H<@u DžDE艅ESY9xEE E @ss؍CEoE E XE@uSYЉUHtM}鋅HE- |=Xw |$<@O,to t Džl">@Dž\Dž @Dž\EtDžl&>@Dž\Dž,E+É\T(89E8EEEE t5EuM+8E E+8EE쉅8EE+8EPVjh<@9؋E;EvEPVh<@h<@u E\tOE\;EvEPV\l, \lu E(tNE@;EvEPVj$j$uz EDž(EEEPVjh0<@9؋E;EvEPVh0<@Gh0<@u E~EE;EvEPVSSu EE؄EE܉EPVjh0<@9؋E;EvEPVh0<@_h0<@u EE؀tOEX;EvEPVXh Xhu EE89EE+8EPVjh<@9؋E;EvEPVh<@e6h<@u Ek E-0GE)>@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl >@Dž\?E2ETMDžl >@Dž\EE C~u~E܉TMs؍gh݅H<@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hwD݅H<@u+-hJhE)>@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h0@@YEt Eu =,@@t3txE9@@,@@h?@@EPJuEP;jEP|>h~PW =uh~Ph(>@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}tJ@EtJ@EP@@s3UtE]tJ@EX@@E`@@E@@r5E@@r@@E@@AE@@s6EE]@)EE@@r݋EE 9P܃}t؁tJ@J@vJ@E@@tJ@r05}fEf fEmE]mE܉E@0Ee @@];r&=5|+tJ@utJ@1}tCF0N<9tJ@]Ћuԋ}ËEE0]@EEsEE 9P EEEE@@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@@E5@@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G D@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W D@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}E@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WD@UW@@;=D@r3}ÃG uUW@@ WY;=D@r}UWV}tlG t6G t3WVYG PY}D@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG D@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G D@+G?}3W D@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G D@+G?}3W D@+W;}WY3UWV}G G u}}&uCCGW D@*h!YGt@O G WD@GGVYtG uO @u}G $CWRD@UWV}G D@+G}G D@Wu};7}7𐐐*3ÐUD@EEPhTu } ED@3ø6ÐÐU WVSE9ET=D@u<E@ D@D@ E@D@E@D@D@D@D@E@3؋=D@E&;5D@D@E@E=w=D@j YD@@;t?3Ee ƹ3tL3+‰EEE2D@+D@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5D@D@0E+E-D@@;tD@D@D@D@~ЉD@;5D@vD@D@D@ 9=D@u D@D@G(=D@95D@u=D@7tލ;r;l%;UWV}5D@%D@9u5D@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹD@Nj]u}WV|$ t$L$Njʁ^_øÐT$E@Ru E@+D$øT$E@3øÐ0NL$0:L$0+L$0L$0 L$05Ã%3ÐÐD@ÐcT$@@(#)uustat 5.3b of Apr 26, 1988|!7dddQuustatak:mpr:qs:u:x:Invalid system Invalid user usage: %s %s [-a] [-q] or [-m] or [-kJOB] or [-rJOB] or [-p]or usage: %s %s [-sSYSTEM] [-uUSER] usage: %s %s [-a] [-q] or [-m] or [-kJOB] or [-rJOB] or [-p]or usage: %s %s [-sSYSTEM] [-uUSER]Progname (%s): STARTED User=%s, Loginuser=%s, Jobid=%s, Rmtname=%s usage: %s %s [-a] [-q] or [-m] or [-kJOB] or [-rJOB] or [-p]or usage: %s %s [-sSYSTEM] [-uUSER]/usr/spool/uucp/.Status/usr/spool/uucp/.Statusrr/usr/spool/locks/LCK.rLCK..LCK..culculttyttydtswdtswvadicvadicmicommicom/usr/spool/uucp/usr/spool/uucprLCK..LCK..rCan't find Job %s; Not %s killedrejuvenateduprocessC(%s, %s); %s/%sCan't stat file (%s), errno (%d) -- skip it! rCan't open file (%s), errno=%d -- skip it! %-12s %2.2d/%2.2d-%2.2d:%2.2d:%2.2d (POLL) %s%s%s%s%s%sshort line (%s) type (%s), file1 (%s)file2 (%s)file3 (%s)user (%s)%-12s %2.2d/%2.2d-%2.2d:%2.2d %-12s %2.2d/%2.2d-%2.2d:%2.2d %s %s %s %s %s %ld %s %s/%srCan't read %s, errno=%d -- skip it! %s %s %s ???? %s%s%s%s!%s %skprocessC(%s, %s); %s/%sCan't stat:%s, errno (%d)--can't %s it! killrejuvenaterCan't read:%s, errno (%d)--can't %s it! killrejuvenate%s%s%s%s%s%sBad format:%s, errno (%d)--can't %s it! killrejuvenatetype (%s), file1 (%s)file2 (%s)file3 (%s)user (%s)Not owner or root - can't %s job %s killrejuvenate%s/%sRemove %s Error: Can't %s, File ( %s), errno (%d) killrejuvenateRemove %s Error: Can't %s, File ( %s), errno (%d) killrejuvenateJob: %s successfully %s killedrejuvenated%s/%smachine(%s), m-M=%d MACHINE TABLE FULLuustat.cWARNING: Table Overflow--output not complete %-10s%3dC (%d) %4dX (%d) %2.2d/%2.2d-%2.2d:%2.2d Locked %sRetry: %d:%2.2d Count: %dlckpid() - entered /usr/spool/locks/LCK.lockdir (%s) rf (%s) LCK.LCK.%s: %d ???? %d /bin/psps-flp%s/%s%s/%sstat %s %s/%s/usr/spool/uucp/.Corrupt/mkdir - %s .CAN'T STAT PARENT DIRECTORY %s errno %d CAN'T CHMOD PARENT DIRECTORY %s errno %d /bin/mkdirmkdirmkdirexpfile.cexpfile.cexpfile.cCAN'T CHMOD PARENT %s CAN'T SETUID %d expfile.cCHOWN FAILED %s errno %d expfile.cIllegal filename (%s). ./..../....@!@P!@f!@q!@}!@!@!@!@!@!@!@!@!@!@!@"@"@&"@1"@="@H"@]"@p"@x"@"@"@"@"@"@"@"@ #@ #@.#@A#@S#@p#@#@#@#@#@/usr/spool/uucp/usr/spool/uucppublicCAN'T OPENCAN'T WRITECAN'T READCAN'T CREATECAN'T ALLOCATECAN'T LOCKCAN'T STATCAN'T CHOWNCAN'T CHMODCAN'T LINKCAN'T CHDIRCAN'T UNLINKWRONG ROLECAN'T MOVE TO CORRUPTDIRCAN'T CLOSECAN'T FORKFILE EXISTSSUCCESSFULNO DEVICES AVAILABLEWRONG TIME TO CALLTALKINGCONVERSATION FAILEDBAD SEQUENCE CHECKLOGIN FAILEDDIAL FAILEDBAD LOGIN/MACHINE COMBINATIONDEVICE LOCKEDASSERT ERRORSYSTEM NOT IN Systems FILECAN'T ACCESS DEVICEDEVICE FAILEDWRONG MACHINE NAMECALLBACK REQUIREDREMOTE HAS A LCK FILE FOR MEREMOTE DOES NOT KNOW MEREMOTE REJECT AFTER LOGINREMOTE REJECT, UNKNOWN MESSAGESTARTUP FAILEDCALLER SCRIPT FAILED%*d %s/LTMP.%d/usr/spool/locksulockf failed in onelock() ulockf file %s Lock File--can't read (errno %d) --remove it! Lock File--bad format--remove it! Lock File--process still active--not removed kill pid (%d), returned %d--ok to remove lock file (%s) ulockf failed in unlink() TOO MANY LOCKSulockf.cCAN NOT ALLOCATE FORulockf.c%s.%s/usr/spool/locks/LCK.%s.%s/usr/spool/locks/LCK.%s %s %dULOCKC%s: link(%s, %s) ULK err %s %dULOCKLNK%s %dULOCKFfilelock: F_SETLK returns %d, errno is %d filelockF_SETLK failed - lock existsfilelockF_SETLK failed -- ENOLCKfilelockF_SETLK failed -- EFAULTfilelockF_SETLK failedfilelock: ok /usr/spool/uucp/.Admin/errorsa/usr/spool/uucp/.Admin/errors%sERROR (%.9s) pid: %d (%s) %s %s (%d) [FILE: %s, LINE: %d] ASSERT %sERROR %.100s %.100s (%.9s)ASSERT %d/%d-%d:%2.2d:%2.2daltos/etc/systemidr 555556bad access type %dsysaccess/usr/lib/uucp/Sysfilesr service=/usr/lib/uucp/SystemsCAN'T ALLOCATEscansys: Systemssysfiles.c/usr/lib/uucp/DevicesCAN'T ALLOCATEscansys: Devicessysfiles.c/usr/lib/uucp/DialersCAN'T ALLOCATEscansys: Dialerssysfiles.c/usr/lib/uucp/Devconfigr service= device= systemsdevicesdialerspoppushunrecognized label %sSysfiles|Devconfig::%s//usr/lib/uucpCAN'T ALLOCATEsetfile: tptrsysfiles.c::CAN'T ALLOCATEsetioctl: tptrsysfiles.cuucicoruucicoruucicor: option requires an argument -- : illegal option -- --/etc/utmp/etc/passwdrrUnknown error: d1@l1@v1@1@1@1@1@1@1@2@2@#2@52@F2@X2@d2@z2@2@2@2@2@2@2@2@2@ 3@3@+3@:3@R3@_3@u3@3@3@3@3@3@3@4@4@*4@84@Q4@n4@4@4@4@4@4@4@4@ 5@ 5@45@I5@Z5@g5@}5@5@5@5@5@5@5@5@6@$6@56@K6@[6@i6@6@6@6@6@6@6@6@6@6@6@ 7@(7@?7@f7@7@7@7@8@8@"8@+8@48@=8@F8@O8@X8@a8@j8@s8@|8@8@8@8@8@8@8@8@8@8@8@8@8@8@9@9@9@&9@09@:9@D9@N9@X9@b9@l9@v9@9@9@9@9@9@9@9@9@9@9@9@9@ :@:@*:@;:@S:@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device errorTTTT"UT"U"U"U"U"UT"U"U"U"U"UT"U"UU??GA>???;@;@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF.s||:s|\|||||Yss|"sFs|ssssssssss|||||||||||u|9z||||||||||||||||Gu||||||||||a|suw9zss||s||1u|||||t||Gu-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@4C4CD@<CC3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0.file gcrt1.s.text<.data@.bssE@.comment E@.init_istart.filegvers.c.text.data@$.bss E@.comment.file:guustat.cmain$  $$3fsize$Y!cleanup&$#logent+ %systat0 'machine5hd)printit$+lckpid$-machcmpA$/_ageT$l1.text .data@8).bss E@.comment@.fileHggnamef.cgnamef$^>gdirf$@.text .data8@.bss E@.comment.file\gexpfile.cexpfile$Lmkdirs $Nmkdirs2z!$Pckexpf%$0RcanPath%$T.text0.dataH@<.bss E@.comment.filefguucpdefs.c.text&.data @d).bss E@.comment .filetggetpwinfo.cguinfo&$`jgninfo8'$=l.text&.data#@.bss E@.comment(.filegulockf.culockfx'$x%L($zstlock"* |rmlock* r~delockN+$Qmlock+$zultouch, Conelock\,$filelock.$I.textx' .data#@.bss E@@.comment0.fileggetargs.cgetargs\/$bsfix/ X.text\/.data&@.bssLE@.comment8.filegutility.cassertH1 errentf1 logError1 /2bG.textH1 .data&@.bssLE@.comment@.fileguucpname.cuucpname2 .text2 .dataX'@.bss`E@.commentH.filegversys.cversysp3$ .textp3 .datap'@.bss`E@.commentP.filegstrsave.cstrsave|4b1eaccess4$.text|4.datat'@.bss`E@.commentX.filegsysfiles.c9D5 DR5 Ne5$scansysM6 scancfg7 getline8$X9$tokenize9 ]b: bsetfilef; setioctlT< sysreset< \devreset9= Wl= .v=$~<>$>$P(?$n?$P?$ngetpopT@$getpush A$F.textD5$ +.datat'@$.bss`E@d.comment`Systemst'@Devicest(@Dialerst)@Popst*@Pushest+@nsystems`E@ndevicesdE@ndialershE@npopslE@npushespE@fsystemstE@fdevicesxE@fdialers|E@tokensE@tokptrE@.file'gatol.catolhA$.texthA.data.@.bssE@.commentE@.file1gchdir.s.textB.data.@.bssE@.commentE@ .file;gchmod.s.text,B.data.@.bssE@.commentE@ .fileEgchown.s.textDB.data.@.bssE@.commentE@ .fileOggetegid.s.text\B.data.@.bssE@.commentE@ .fileYggeteuid.s.textlB.data.@.bssE@.commentE@ .filecggetgid.s.text|B.data.@.bssE@.commentE@ .fileogatoi.catoiB$g.textB.data.@.bssE@.commentE@.file}ggetopt.cgetopt8C$bs.text8Cd8.data.@D.bssE@.commentE@error1.@error2.@.fileggetpwnam.cgetpwnamEh1.textE4.data.@.bssE@.commentE@.fileggets.cgetsEb.textE.data.@.bssE@.commentE@.filegcalloc.ccallocFb0cfreeF .textF@.data.@.bssE@.commentE@.filegfread.cfreadF$.textF.data.@.bssE@.commentE@.fileglink.s.textG.data.@.bssE@.commentE@.fileggetlogin.cgetloginGb.textG .data.@ .bssE@ .commentE@.@.fileggetpwuid.cgetpwuidLHh,.textLH,.data.@.bssE@.commentE@.fileggetpwent.csetpwentxH 3endpwentH $pwskipHbDgetpwentIh9LIhw.textxHL0.data.@.bssE@(.commentI@PASSWD.@EMPTY.@pwf.@lineE@passwdI@.filegfgets.cfgetsJb.textJ.data/@.bssI@.commentI@.fileggetuid.s.textK.data/@.bssI@.commentI@ .file gcreat.s.textK.data/@.bssI@.commentI@ .filegopt_data.c.textK.data/@.bssI@.commentI@.file!gperror.cperrorK }.textK .data/@.bssI@.commentI@.file+gerrlst.c.text.textc@.data;@.bss(J@.comment(J@.fileRgstrspn.cstrspn\c$@J.text\c@.data;@.bss(J@.comment(J@.file^gstrtol.cstrtolc$V.textc.data;@.bss(J@.comment(J@.filehgexecl.s.texte.data;@.bss(J@.comment(J@ .filergexecv.s.texte.data;@.bss(J@.comment(J@ .file|gexecve.s.texte.data;@.bss(J@.comment(J@ .filegexit.s.texte .data;@.bss(J@.comment(J@.filegfork.s.textf.data;@.bss(J@.comment(J@.filegtime.s.text f.data;@.bss(J@.comment(J@.filegtime_comm.c8fhgmtimefhytzsetlh getzname_ib{gettimeibgetdigitjbTgetdst k$getusak sundaytl$T.text8fE .data;@t.bss(J@,.commentTJ@(J@end_dst,J@;@.filegaccess.s.textl.data<@.bssTJ@.commentTJ@ .filegttyslot.cttyslotl$.textl .data<@ .bssTJ@.commentTJ@<@.filegstrncmp.s.textmL.data<@.bssTJ@.commentTJ@ .filegstrrchr.s.textn$.data<@.bssTJ@.commentTJ@ .filegttyname.cttyname8nb/.text8n0.data<@.bssTJ@ .commenttJ@rbufTJ@dev<@.filegfstat.s.textho.data<@.bsstJ@.commenttJ@ .filegstat.s.texto.data<@.bsstJ@.commenttJ@.filegstrcat.s.texto0.data<@.bsstJ@.commenttJ@ .filegumask.s.texto.data<@.bsstJ@.commenttJ@ .file$guname.s.texto,.data<@.bsstJ@.commenttJ@ .file0gungetc.cungetcp$^(.textp`.data<@.bsstJ@.commenttJ@.file:gunlink.s.texthp.data<@.bsstJ@.commenttJ@ .fileDgutime.s.textp.data<@.bsstJ@.commenttJ@ .file\gdoprnt.cp$DH_dowritep$kJ_doprntCq$'L.textp.data<@Y.bsstJ@.commenttJ@_blanks<@_zeroes0<@uc_digsH<@lc_digs\<@lc_nanp<@uc_nanx<@lc_inf<@uc_inf<@.fileigctype.cl$`.textl.data(>@(.bsstJ@.commenttJ@,@@.filezgecvt.cecvt@bmfcvt^bocvt|bTq.text@ .dataP@@.bsstJ@P.commentJ@buftJ@.filegfwrite.cfwriteЈ$~.textЈ .data@@.bssJ@.commentJ@.fileggetenv.cgetenvhbAnvmatchb@.texth.data@@.bssJ@.commentJ@.filegmemchr.s.text.data@@.bssJ@.commentJ@ .filegread.s.text.data@@.bssJ@.commentJ@.filegstrcpy.s.text4.data@@.bssJ@.commentJ@ .filegstrlen.s.textP.data@@.bssJ@.commentJ@ .filegwait.s.texth .data@@.bssJ@.commentJ@.filegfopen.cfopenhfreopenh"_endopenËh9.textt .data@@.bssJ@.commentJ@.filegfindiop.c_findioph,.text,.data@@.bssJ@.commentJ@.filegflsbuf.c_cleanup( "fcloseJ$fflushэ$`_flsbuf1$7_xflsbufh$_wrtchk$_findbuf$_bufsync;$:.text(P%.data@@.bssJ@.commentJ@.filegclose.s.textx.data@@.bssJ@.commentJ@ .filegdata.c.text.data@@.bssJ@.commentJ@.filegisatty.cisatty$9.text<.dataD@.bssJ@.commentJ@.file&gi386_data.s.text̑.dataD@.bssJ@.commentJ@$.file0gioctl.s.text̑.dataD@.bssJ@.commentJ@ .file:glseek.s.text.dataD@.bssJ@.commentJ@ .fileNgmalloc.cmallocb>free 3@reallocϔbB.text9.dataD@.bssJ@.commentJ@allocpD@alloctD@allocxD@allocendD@.fileXgmall_data.s.text.dataD@.bssJ@.commentJ@$.filebgmemcpy.s.text$.dataE@.bssJ@.commentJ@ .filelgopen.s.text.dataE@.bssJ@.commentJ@.filewgsbrk.s.textĕ@.dataE@.bssJ@.commentJ@ndE@.filegwrite.s.text.dataE@.bssJ@.commentJ@ .filegsignal.s.textt.dataE@.bssJ@.commentJ@ .filegkill.s.text.dataE@.bssJ@.commentJ@.fileggetpid.s.text.dataE@.bssJ@.commentJ@ .filegcerror.s.text .dataE@.bssJ@.commentJ@ .filegcuexit.s.text.dataE@.bssJ@.commentJ@ .filegcrtn.s.textܖ.dataE@.bssJ@.init_start_mcountenvironE@exit_S_I_@MJ@sortcnt@KillB%BUoptBSysoptBSummaryBQueueBMachinesBPsoptBUserBRmtnameBJobid @PrognameCstrcpygetuidKUidCgeteuidlBEuidC0CMynameCoptarg /@strncpypb_iob@@Debug @optind/@chdirBstrrchrnstrncmpmstrlenP__s_CstatostrcmpberrnoD@time funlinkhputimepopenreadclosexexecleWrkdir CPubdir @strcatostrchrachmod,Bforkfumasko_exiteCt_FORK @waith: @Ct_CHMOD @setuid4`getgid|BchownDBCt_CHOWN @Ifn COfnCUlimitCDev_modeCPcharCRemSpoolCUucp CLogfile, CSpool @Env,CD @Nstat0CDcCSeqnCRoleCBnptrCUerrorCCt_OPEN @Ct_WRITE @Ct_READ @N @Ct_LOCK @Ct_STAT @Ct_LINK @Ct_CHDIR @Z @Wr_ROLE @d @Ct_CLOSE @o @y @getpidkillLockfileCNlocks#@creatK$/@writelinkGfcntl@_cerroroptopt/@opterr/@memccpyLD@memset_memcpylseekmemchrsys_nerr`1@_lastbufD@alarmHasigset$setjmpXasigholdesigpauseGlongjmptaexecveexecveetimezone;@altzone;@daylight;@tzname;@fstatho_sibufC_sobufC_smbuf$Cioctl̑_allocsD@sbrkĕbrkendCsignalsigrelseV8etextܖedataE@uprocessCkprocessC_sec_per_daycheckLocktimeStampsetservicesetdevcfgsysaccessnamematchnameparsedialresetgetsyslinenextsystemsgetdevlinenextdevicesgetdiallinenextdialersutmp_filefgetpwentlocaltimestart_dstmonth_sizeutmp_file_lowdigitsetchrclassfirst_call_sigreturnRejuvenateLoginuserCt_CREATERetrytimeCt_ALLOCATECt_UNLINKCt_CORRUPTFl_EXISTSUerrorTextsys_errlisterrformat_bufendtabsigignoresigrelseV8etextܖedataE@uprocessCkprocessC_sec_per_daycheckLocktimeStampsetservicesetdevcfgsysaccessnamematchnameparsedialresetgetsyslinenextsystemsgetdevlinenextdevicesgetdiallinenextdialersutmp_filefgetpwentlocaltimestart_dstmonth_sizeutmp_file_lowdigitsetchrclassfirstusr/bin/sdb100755 3 3 450164 4235412761 7422 37777777777 L5n" 0_@.text0 .data@@@.bss@@_.commentOÐET@RU RPƓ PjÐ9L@u h @2Yx9L@ukh'@2Yh.@3Yuh2@x3h7@2Yu h9@x2h>@2YuhD@mx2E P6Yv]WhI@h@{ 9L@u2,9L@uha@&2Yjhh@xH2uuE;E xtEE9E xtEE u3=t=t=t9L@u]1+9L@uhm@u1YVht@Vw1u}UPWV@9L@u hy@0Yx9L@ukh@0Yh@T1Yuh@vW1h@41Yu h@v71h@1Yuh@v0E PqYv]Wh@h@0z 9L@uI0,9L@uh@a0Yjh@Av0EP@=!uBuoYt5uYu(E=G@u=T@tX@@uumEEE"fEfEEE=t=tuuu 9L@uX/,9L@uh@p/Yjh@Pu/}UW9L@u h@.YX9L@uKh@.Yh@M/Yuh@tP/h@-/Yu h@t.9Esu E4\@ u ju)P 9L@uK.+9L@uh@c.YWh @Dt.}UW9L@u h@-Yx9L@ukh@-Yh @G.Yuh$@sJ.h)@'.Yu h+@s*.h0@.Yuh6@s-u u =T@|@jh5T@jsE9Et =|@th;@h@vE%EEģEuu5T@j[su%=|@tE4h[@h@v EU\@Et|@̶@@9L@ut,9L@uhy@,Y,u}UPWV;9L@u h@,YX9L@uKh@,Yh@},Yuh@r,h@],Yu h@q,E%=T@tu^ju ujE9L@u+-9L@u h@+Yuh@q+EE%ju SjEju CPjE3EG EF r9L@u*-9L@u h@+Yuh@p/+E]u}UWVSls9L@u h@j*Yx9L@ukh@*Yh@*Yuh@xp*h@*Yu h@Xp*h@*Yuh@8pf*E%=T@tuuu ujyE%ju SjEju CPjEEE3EF EG ruu Sjauu CPjM9L@u[)9L@uh@s)Y)]u}U WVS6E E}u 9L@uh@(Y9L@h@(Yh@A)Yuh@nD)h@!)Yu h@n$)h@)Yuh@n)h@(Yuh @un(}u|@X@=T@=Etttuu 5T@WYnE=|@9Etqju 5T@j"n=tUuu 5T@Wnuuu 5T@jmEEt7@7@X@Et7@7@X@b9L@u'-9L@u h@,'Yuh@ mM'EP@=!u9EuujE Ptc=@}'u 9Eu;@@@Ph@l =@} E!@@9H@uhE@nlYEEt@ k@@؋EE uE P=u*~Et7@7@i@X@"E}X@@u=G@uX@@rEEtLju SӦ =t+tjEPS jEPS̪ =sEDJ@9E t.ju i@@P =u EBt!jEPi@@PB jEPSM =sE}uu DJ@ E @DJ@}tuEt7@7@PEt@ @P@Pt@@Ph@h@2nuEth@h@nu9L@u'$-9L@u h@?$Yuh @j`$E]u}U WVS=}u 9L@u h@#YU9L@uHh@#Yh@$Y7h#@i$h(@#YVh.@i#Ectж@ kE@؋9rC9r(C 9rC9sC+C E&EC+E Ep@9E~9L@u".9L@u!h3@"Y7jh:@h #E]u}UWVS9L@u hM@K"YX9L@uKhT@b"Yh[@"Yuh]@Yh"hb@"Yu hh@9hg"u u:9L@u!+9L@uhm@"YWht@g'"}UW(9L@u hy@n!YX9L@uKh@!Yh@!Yuh@|g!h@!Yu h@\g!E P%YAE xt EE4E xt fE fE}=t=t9L@u +9L@uh@ YWh@f }UWLE0kEU9@wkE@9EsE@Ep@9E~ƸUPnERE9ж@w Զ@9Er3E9ܶ@w @9ErkEU9@wkE@9EsEp@9E~UP댐Y9L@u h@{Y 9L@u}uExhEUR PRE 赙 UBEEx}+9L@u" 9L@uExu+9L@u 9L@uE+qE E UJBEHEN2E؉EuE8E YEP;|HjEPPE 艟 hE@ PE 蔘 UAjjE P E@+}3WE@ PE Q UE8uE+pEUR MPE@E -E UJJE@EN9L@ux 9L@uEu}UWV.EE@uu E g UEUBUjju0 U_E@Et@E@@ï@@ @-@P@t@|@x@EPEP iE@@kU‰EE09P uuEP{kE,9P u=|@u|@BE+9P u=x@ux@E9P u Et@LE[@9PuREPEPL 9Ev"h@h@ov@@iE@[@kU‰EEEx;EEPEPEP 9E9E 9Eu&9Eu9EukE\@E 9Eu69Eu,9Ev"h@h@u@@- 9Eu39Eu)9ErE-i|@kU‰EF9EuE-iw@kU‰EE-ir@kU‰EEkU@‰EExt"h@h@t@@nE$9P tvE39P tiuEP.yExt"=x@t@@PEPyEPEP?Y=}@@Ph@Lt E@ }uEPEPEP =x@tEV@U EW@UċE%Ex@juuuuh@h@h@h@s@P}uEPEPEPF jjuu+j 9Eu=x@tP=x@tEV@U EW@Uuhï@h@h@h @h@ s@E%E}uEPEPEP juuuo=x@tEV@U MEW@U Muh@h@h@h@mr@E%E}uEPEPEP juuu=x@tEV@U MEW@U Mh@uh@h @h@q@dEPEPEP` jjuuE=x@tEV@U EW@Ujjhï@uh@h@h(@h@Jq@EPEPEP jjuu=x@tEV@U EW@Uh@uh@h3@h@p@kE%EjuuuTj9Eu=x@tPhï@h@h@h;@h@\p@E%E}uEPEPEP juuuj}t=x@tP]hï@h@h@hC@h@o@aE%EE%Ej}t=x@tP=x@tEV@U MEW@U Muh@h@hK@h@ o@ E%EEPj=|@tP? =x@tV@W@U Muh@h@hS@h@n@? E%EEPj=|@tP =|@tV@W@U Mh@uh@h[@h@4n@ }uEPEPEP jjuu E4X@h@h@hc@h@m@m }uEPEPEPc jjuuH h@E4X@h@hk@h@|m@ E%EE%Ejuuu }ts@x@Eh@uh@hy@h@m@ E%EE%Ejuuu jjB}t@@Eh@uhï@h@h@h@l@. jjuu# jjh@hï@h@h@h@Pl@ E%Ejuuu h@h@h@h@ l@ }uEPEPEP jjuu| h@h@h@h@k@O EPEPEPK EEBEEX@UAEEX@U+EEY@U=w=|$@E4W@h@Š}tuh@謊EW@Uh@uh@h@h@j@u E%E=x@tEV@U EW@Uuh@h@h@j@! E%E=x@tE@EV@UE@EW@Uuuh@h@h@'j@@%EE4X@h@h@h@i@@%EE4X@h@h@h@i@B}uEPEPEP8 jjuu =x@tEV@U EW@Uuh@h@h@h@3i@Et=x@tEEE@'E@E@=t=t=tju/ uh@h@h@h@h@5E%Ejuuu=x@tV@W@U Muh@h@h@h@;h@j'Y=|@t @ @P=|@t @ @Ph@h@h@h@g@vE%EjY=x@tV@W@U Mă=|@t @ @Ph@uh@h @h@qg@E%EjRY=|@tV@W@U Muă=|@t, @- @Ph@h@h @h@g@EPj=x@tP+ hï@u4}u7 @ï@Ph@h@h/ @h@f@)jjuuh@h@h8 @h@\f@EPj=|@tP EPjjv hï@h@h@h> @h@e@EPjj; hï@u4}uN @ï@Ph@h@hF @h@e@9j=x@tPh@h@hO @h@^e@jjh@h@hT @h@,e@jjjjzhï@h@h@hY @h@d@~jjCh@h@ha @h@d@LjYjj h@h@hf @h@}d@jiYh@h@hk @h@Od@jEPj2 EPh@hv @h@d@5.@2Y@=x@th| @h@ghh @h@Sh@`=x@th @h@.hh @h@h@'@h @h@lc25.@V2Y@=uFh @h@;c2h @mNY5.@2Yf@fE5.@2Y!f@fE5.@1Yh @(NYh @h@b2^2h @NY5.@1Yf@fE5.@1Y@=uE=uh @h@ub@ uh@h @h@Qb@Etuh@h @h@ buh@h!@h@b@h!@h@a@@zhL!@h-!@ MhM!@MYjЌY=5w=|$@ 9@|15.@5@h!@ht!@Lh!@LYj{YUpJ5.@/YE@E @E@UQ=t@t<5t@h!@kE#@P` 5t@h!@kE# @P` t@UDuEPu* u YEPkE #@Ph!@kE #@Pg`UuMY9E u09Et&=|@uEEPEPEP E=|@tE TW@UEE tW@UE}t}u9EuE}tEPuu }tJEX@U܋#@EYU hA#@EYUuhC#@EU hJ#@}EYU EE9L@u hL#@ Y89L@u+hS#@ YhZ#@Yuh\#@EEE=#uCh@hP@hP@P@Pha#@D5̶@5P@5T@h#@DX@\@`@d@h@T@P@P@@P@P@l@@h#@EPk E=/up@d@EE= t E;uJ9L@u,9L@uh#@Yjh#@Ct@ GUE E;t E= u9L@u\,9L@uh#@tYjh#@TC}E=!}G= ujjmEE@PZYEujOE@P@ 9L@u,9L@uh#@Yjh#@BE= uQP@ 9L@uR,9L@uh#@jYjh#@JBsE=:u`@}E=0E=99P@tb5P@h#@h@E 9L@u,9L@uh#@Yjh#@AEP@YP@E=:u \@E>E=0E=9=T@tb5T@h#@h@D 9L@u,9L@uh$@Yjh$@@" EPYT@E=:u \@EE=,uEE=A|E=ZE=a| E=z~wE=_tjE=.t]E=-tPE=>tCE=*t6E=?t)E=]th$@EPP@tuh@E}G=A| =Z~=a| =z~=_t=.t=-t=>t=*t=?t=]t=0|=9yh=$@P<`=[ukGG=0| =9~=A| =F~=a| =f~=q*t=Xthe$@Pu=!u4uhP@EP@!E@Ph@OEH=(P@tahP@hi$@h@A 9L@u,9L@uh$@Yjh$@=A(h@uhP@Euh@E=:u`@uhP@Es=$uuhP@EQ=,u uhP@o@EE'=#uuhP@EEP@#+E=u9h$@EPt!P@tWh$@EPu?=T@u}th$@EPuh$@EPtlE=-uE@=>tQEEP@h$@P@Pnt%EE= tuh@EP@tahP@h%@h@? 9L@u,9L@uh+%@Yjh2%@;uhP@EE=%u X@Eh7%@hP@=tQ@P@?UE= u P@/?P@uEtE/P@Euh@EEE= 9L@u,9L@uh:%@YjhA%@:]}UWSA9L@u h%@SYX9L@uKh%@jYh%@Yuh%@a:h%@Yu h%@A:ojh%@u u5E9L@u-9L@u h&@ Yuh&@9*EUP%9L@u h &@sYx9L@ukh&@Yh&@Yuh"&@9h'&@Yu h+&@a9h0&@Yuh4&@A9ojuu u7E9L@u-9L@u h9&@ YuhA&@8,EUP9L@u hF&@uYX9L@uKhN&@YhV&@Yuh[&@8h`&@Yu hd&@c8jhi&@u uWE9L@u-9L@u hj&@+Yuhr&@ 8LEUP%6EE@EEEE9L@uhw&@jY9L@h&@zYh&@Yuh&@q7h&@Yu h&@Q7h&@Yuh&@17h&@}Yuh&@7?=X@t]uuu t E9L@u-9L@u h&@Yuh&@6EE uUh&@0Y9L@u_,9L@uh&@wYjh&@W6uj*Mu3uj?<u"u j*^uu j?tMEuE=`@tE U=T@t'h&@E PtET@E$E =.uu hN%@iE H%@}h&@E Py}t =`@l17u|tq GHPYt;=@uEMt =T@uCujh@jjj5T@uuu WAh,E9EtEE}u05;=@k=`@uEu 9Eu]}uh&@utCu5 J@h@jjj5T@uuu jg,E9Et EEE}u_uh&@h@7 9L@u,9L@uh '@Yjh'@39EE =.uE }t =`@tu h'@h@?7 =H%@9E uE @Ph('@h@7 u uh6'@h@79L@u,9L@uhG'@1YjhO'@3SF9L@u-9L@u hT'@Yuh\'@2 E}UW9L@u h'@NY:9L@u-h'@eYh'@YEPh'@Z23ۋE%%@USE%0=uG$E%0= uFE%0=0uCE%U fEE0u=uSE=cuF9L@u(9L@uh'@Yh'@1Y'@uu '@tC9L@u3(9L@uh'@KYh'@-1Yq'@F9L@u-9L@u h'@Yuh'@0)E]u}UPWVS*9L@u h'@fYZ9L@uMh'@}Yh'@YEPh'@r0h'@Yu h(@R0E%U fEE%0= tE%0=0tE%0=uE%%@u} 9L@u+9L@uh(@YWh(@/}UW9L@u h(@.Y9L@uh(@EY3=@tuF77YPh&(@o GEE= t>h'(@/YEEPh,(@.E= uh/(@.Y h2(@.Ywu h4(@.Y9L@uz9L@uhH(@Yu}UPWV 9L@u hO(@ Y9L@uhV(@ Y`3ۋ=@ztn77YPh](@N 3C @} h@?Y@@EE=yt E=duFE= utGuu ha(@-Y9L@uc9L@uhu(@{Y]u}UPWVS9L@u h|(@Y9L@uh(@YE=@ Gu9L@u9L@uh(@Y}UWq49L@u h(@ZYx9L@ukh(@qYh(@Yuh(@h,h(@Yu h(@H,h(@Yuh(@(,Vu uw@9Eu @9E uuh(@+uu @9Eu @9E u h(@+Yuh(@+9L@u9L@uh(@YUr9L@u h(@Y9L@uh(@3Ysj32Y9L@u9L@uh(@YNU9L@u h(@Y9L@uh(@Y5@@4H8@h)@* 9L@ur9L@uh )@YUo9L@u h)@ Y;9L@u.h )@!Yh*)@Yu uh/)@* C}~uh;)@)9E ~u h>)@)9L@u9L@uhB)@YU@9L@u h(+@CY9L@uh2+@ZY@@X@=h@tMjY@9L@u9L@uh<+@Y? =d@tE薋@9L@u9L@uhF+@YP@=T@tJP@tAhP+@Y9L@uH9L@uhd+@`Y[=T@tQ5T@ Y@9L@u9L@uhn+@Y7P@tHhx+@h@+9L@u9L@uh+@YP@W@Eh+@h@<\@u!h@h+@h@+ E䣜@@9Et u]Y@@= @t=T@u  @ T@@ @=@u@T@L@+ =@t h@YX5@@!k@@Ph+@脀@p@9@~҉5@hж@h+@Y/赁%=T@th+@h@-=P@th+@h@ݱh+@菲Y jY@j,Y@5T@,Y@@u$CUh@uh+@t% Tj Wh:EEE= t}uWYYH=/}u54@EPvYEEE8@h+@h@?>Wh@1>h@pYYƀ@ EEG = tuEE/EE4@uY54@h8@4@-8@Ph+@y$@OWj.qt,h@~Yh@h+@>$@h@YEEppY=@~Ep詻YPYEEt*E8@9P tEp YE@PYh@h+@h@^' ZE=p@t$h,@u蚺h@h,@w#h@E0h,@^# @4=T@t 5T@Y@ Jl0=T@t 5T@Y5<@j\Yj YVY@ h8@h@h,@h@s& e =T@t 5T@{Yj Y@n =T@tT@PY @> =T@tT@PYj @ @jYfD@ft D@jF@P$H@5H@h;,@!jF@PL@=tL@=u L@PhP@5H@dMD@̶@j诂YjjjhP@5̶@e=*=1=t j[Yuq.@6jYhC,@!Yj Y@/hE,@ Y38D@̶@j YjjjhP@5̶@He=uF |hG,@ Y3fD@ft D@jF@PH@5H@hI,@K jF@PL@=tL@=u L@PhP@5H@Qc=u F f0hP,@Y#==/= @u@h@h\@U=T@t T@@=@u/@=T@t T@@jrY@Eo@P@u =T@tY̶@9̶@uh/-@輧YjdYhG-@蚧Y@T@h@YEu0P@t'hP@h_-@ @PYE @E`-@juS EuuS 9uSs|-@-@Phb-@C P@tR= @}@ ;whP@0h-@ hP@h-@VVuuh-@'9E =@tS5@h-@ jgY@x@t@-@P@ujnY̶@jh-@hP@hP@Y̶@=X@t5X@ϥYjdzYjjjW5̶@]@P@=.usQ@uj=T@u H@T@jF@PL@=u L@P@t@P@P5T@[T@H@w=T@u =\@tNP@uEjjjh@5T@[T@H@h@hP@L@F@h@hP@hP@8 @@t@-@P@uB=P@t!jY؃uh-@TYT@jjjWSZCP@=.u Q@ujjjW5̶@\jWhP@hP@b4P@=.u1Q@u(=T@u H@T@T@H@E7=T@u =\@tP@uT@H@EE}h@ZY5@h-@Sw }fEf fEm@]mEPh-@SB O@}fEf fEm]mEPh-@S =v=t=t!h@豨Y|hP@hP@3@h@j\u h@YeE@E@/@vYVhA/@ {hF/@XYuhI/@ ] CG ?t=:t =-u9]tC/ CF >utGE9L@uZ-9L@u hN/@rYuhU/@Q E]u}UPWVS.9L@u hZ/@Y9L@uh`/@Y'=T@t69L@u9L@uhf/@YED@jEPhD@辦 !E jjhD@ <@ 9EsEG9Eu GEE= u<@@@9L@u9L@uhl/@YI}UWy9L@u hr/@Y9L@uhx/@Y=T@t69L@uy9L@uh~/@Y3jEPhD@脥 Y=X@tjjhD@Χ =jjhD@軧 jEPhD@@ E= uX@E= uGwjEPhD@ -<@=<@} X@H<@@@y9L@uv9L@uh/@Y}UPW}49L@u h/@ Y9L@uh/@ Y`=T@tAh/@跖Y9L@u9L@uh/@Y/<@L$HL$_h/@ YED@EE=}: @}h@GP@@@G= u9L@u39L@uh/@KY|}UPWx}9L@u h/@Y69L@u)h/@Yh/@=YWh/@=T@t69L@u9L@uh/@Y<@;=<@~!5<@D9<@unF;|;=<@}^F;|;=X@~X@#t39L@u9L@uh/@Y@Ch/@芔YSY9L@u9L@uh/@Y]u}UWVS}Y9L@u h/@>Y89L@u+h0@UYh 0@Yuh 0@Lz=T@tJ9L@u ,9L@uh0@#Yjh0@EE[9<@uF9L@u-9L@u h0@Yuh!0@EVEE9E|9L@uU-9L@u h&0@mYuh,0@LEUP9L@u h10@׿Y89L@u+h:0@YhC0@QYuhE0@=T@tG9L@u褿,9L@uhJ0@輿YjhS0@޿vER9<@u EQEE9E|ٸ9L@u--9L@u hX0@EYuha0@$fEUP&9L@u hf0@课Y89L@u+hn0@ƾYhv0@)Yuhx0@=T@tRh}0@BY9L@uq,9L@uh0@艾Yjh0@i諾wE9<@u EE9E|:9L@u,9L@uh0@Yjh0@2EUP9L@u h0@{Y9L@uh0@蒽Yҽ=T@u&= @| =@t@@Bp@@p@@|@@l@@= @}@ -9@r)= @}@ 9@v@@5@fY@@@@9@v W~Y@j5@(tjW5@5 9L@u>+9L@uh1@VYWh1@7y}UWJ}9L@uh1@Y.=@9@v)@@9@s5x@Y@+@=uI FHP4Y~t;5@uF x0u!j@-P@,= @u G9@ux@@u}UPWV 9L@uh 1@Y7FmEjuP3YtvjE@PcE= @}@ 9EvYuL@@j5@e@j@@ PM@j5@8@Ux19L@u h11@)Y9L@uh;1@@Y耹=@t @=@t@@@@E@9@vc=@u@@j@-Pv@=@tj@-PL@Rj@@P2@=@ti*j5@ @j5@@@9@v@@9@s uY@HP貲Y;=@t7hE1@踋t@=@uK=@t @@9@s WY@7hL1@]t @9L@uh+9L@uhQ1@耷YWh[1@a裷}UPW=]9L@u h`1@YY9L@uLhi1@Yhr1@`YPhx1@bh}1@?Yu h1@[u YEiE EaE EY@E EL@E E?PPh1@h@+E-|=w=|$0@9L@u-9L@u h1@7Yuh1@XE]UPS9L@u h1@蝵Y89L@u+h1@贵Yh1@Yuh1@ٵEE;=@ujW+E}u =@@Ejh1@EEPI EP9Eu'mjh1@EEP E9Euejh1@EEP =tIjh1@EEPɁ )Ejh1@EEP諁 Em9Eucjh1@EEP聁 =tjh1@EEPZ )Ejh1@EEP< EfES9Eum9EuEEBV9Eum9EuEE"W9Eum9EuEE1jh1@EEP豀 EfEE=m ;=@;=@u5@h1@h@ E9L@u*-9L@u h2@BYuh2@!cE}UW:EE`@Et@9L@u h2@葲Y89L@u+h2@訲Yh 2@ Yuh$2@ͲE:E @7E @$ @E=t=tkE=@tl=T@u#= @| =@tX@)2@+@9L@u۱9L@uhF2@Y$ @@@E܃= @}@ 9@v @Tj5@u@9L@uC9L@uhL2@[Y茱 @dE0VhR2@ׄt@9L@u9L@uh[2@Y5 @ @9Eu5@ha2@+=p@tht2@u賍Vhv2@3EPUE@@u=YE=uGE@%0= t׋EXIu YE=uGGEXE@%0= thz2@Ep贃tG= t =uj@@PrP YEtDjuREظ 9E}} h~2@Yuh2@EE@=tE@= u8Eph2@Ljjjh2@u;E@EE@= u E@EjE@P8EԋEph2@9Es%jE@Pjh2@E܍@+EP:jE@Pjh2@u|:9EvEE܋EԹ3H)EEtku8YE=u GENEXE@%0= th2@Epفt GE= t =uMt h2@Y}&=@t h2@Yh2@YE8@9P tEp h2@=J@t+u衐@+EPE~uh2@uE8@9P t h2@ZYh2@OY=@t h2@;Y.EEE@@}u =@? @9L@uЬ9L@uh2@Y]ȋű}U,WVSU j|2YUVE=T@t=jE+EP5T@j\@=uh2@h@\@UP E@EE E9L@u h2@̫Yx9L@ukh 3@Yh3@FYuh"3@Ih'3@&Yu h-3@)h23@Yuh;3@ȫ@9E uE R@9EwU= @}@ -9Er*= @}@ 9E=0@tuh@3@h@ =0@thd3@h@9L@u踪-9L@u h3@ЪYu h3@E q0@Pu >jh3@utw Eu迉YuYE;@=0@t h3@.Y=0@tuuuu=0@t h3@Y=0@tjuu@@Pjut/}u)=0@t h3@YE@EE E=0@t h3@YE@9E9L@uD-9L@u h3@\Yu h3@;}E UE`@Et@9L@uh3@趨Y9L@h3@ƨYh3@)Yuh4@,h4@ Yu h 4@ h4@Yuh4@}h4@ɨYuh%4@]苨j5@{uE0Vh*4@{t@9Euu h34@ VhF4@3EPUuYE=uGE@%0= t׋EX2uYE=uG0EXE@%0= uG= t =uju{PJYEErt$juzPhJ4@0EE@=tE@= u7EphM4@jjjjhR4@u2E@E`E@= u E@EjE@PEEphT4@jjE@PjhX4@uV29EvEEE3H)EEt[Eu YE=u GE7EXE@%0= u GE= t =uMt hY4@Y}h[4@YE8@9P tEp h]4@=J@t)uE +EPE~uhd4@uE8@9P t hh4@ZY9L@u)9L@uhj4@AYr]܋u}UWVS9L@u ht4@貤Y89L@u+h~4@ɤYh4@,Yuh4@t\@9Eu =jh4@uq E9Eu0Ejh4@unq @Ejh4@uXq E:9Eu0Ejh4@u4q @Ejh4@uq E9E Ejh4@up E9EtJ9L@u貣,9L@uh4@ʣYjh4@:9L@uh`9L@uSEEh4@zYh4@oYjh4@EEPGp 3Ph4@,njh4@EEPp 3E%=XuG9L@u輢,9L@uh4@ԢYjh4@G9L@uu,9L@uh4@荢Yjh4@m询UGEPUjh4@u8o E9L@u h4@֡YX9L@uKh5@Yh*5@PYuh05@Sh55@0Yu h@5@9Eu0EjhE5@un @EjhG5@un E:9Eu0EjhJ5@ujn @EjhL5@uRn EU9Etg} tE0hO5@h@ 9L@u,9L@uhw5@ Yjh5@+wjh5@EEPm E9Etr} tE0h5@h@I 9L@ub79L@u*h5@zYh5@oYjh5@O葠jh5@EEP)m E9Eto} tE0h5@h@ 9L@uȟ79L@u*h6@Yh*6@՟Yjh46@F9L@uv-9L@u h96@莟YuhP6@m诟EUu} jh@jh@EN@wL@iEdG@XL@P@HPuhX6@h@j$Y%=Wt=dt=st=wt=xtC;uN~=-u P\~ P@ P@m6@~G@4@8@5@wh@ h@lYtfhs6@h@Et3u5@h@q h@pYƀ@uZYh@hu6@rj#Y=@t1h6@Y@ P>=YC;uh6@~YN5@@P@=-u @4P@h6@h@ EEP@4P@T=u&@4P@h6@h@ j"YE죬@EP5@ =t/E9@~$5@@4P@h6@h@_G]@4@YE7E@EUJ@P@]E4@\YEp@9E~@dzh@hTj. jjj @jj[!@=t@֘h֘j6!jj*!@u Yh@3YL=@tS@@h6@Y5@jYPY=uh6@h@豷붋]u}UhWVSZh֘u @=T@tSh7@Yh@ Yjh@jh@wUh7@imYjh@TUR9L@u h 7@UY89L@u+h'7@lYh.7@ϚYuh07@c葚EPu{=uJ9L@u,9L@uh57@-Yjh<7@ OE%=uG9L@u軙,9L@uhA7@әYjhH7@G9L@ut,9L@uhM7@茙YjhT7@l讙U 9L@u h :@YZ9L@uMh):@ Yh2:@mYEPh6:@nh;:@KYu h@:@ EPu 5̶@{ EE+̶@fD@E=iu>9L@uj9L@uhE:@肘Y賘U9L@u hN:@Y9L@uhV:@YVh^:@YE@G= t= tuG= t=,t= tEEE}EME܋E܉EjEPu[ EE+E؉E9EuEt Me9Eu fEE}u EEE=(tEPha:@uT =uIEPY@E܃}} EEE=,uj)u+E@EЋE܉EzEPhk:@W fG= t= tuEPhv:@W E}uE%E-$|= w=|$9@}t9E#E4(EPitEEEE<(uЃ}~(EE~ h|:@Yjiuu E9Eu9EuPh~:@G= t=,t= tu}tXLE=,u(GG= t=,t= tuۋEEPh:@/EMЅu?2h:@Y9L@uޔ9L@uh:@Y'}U0Wu-9L@u h:@jYz9L@umh:@联Yh:@Yuh:@xh:@ĔYu h:@Xǔh:@褔YEPh:@6dE=i09E uF}~5@蛎YPu迬"}u5̶@wYPu蛬89E t9E t 9E u5̶@=YPu ͯ9E tN}J9L@uY,9L@uh:@qYjh:@Q蓓tch@h:@+WY9L@u,9L@uh:@ Yjh:@+8A9Esnu\YE;@tXuun9L@u{,9L@uh:@蓒Yjh:@s赒pu]Yt`h@h:@@WY9L@u,9L@uh:@Yjh:@@PuymY9L@u趑,9L@uh:@ΑYjh:@}UPW9L@u h;@3Y89L@u+h ;@JYh;@譑Yuh;@Ao}th;@)YulY9L@u9L@uh;@Y8UYĥȥ̥ѥإܥߥ $*06<? C G KOSW[_ch o syǦͦӦצަ#(.27;@DIMRVZ^bfjnrvzŧʧϧԧ٧ާ eaxecxedxebxespebpesiedieipflagtrapnoerraxcxdxbxspbpsidialcldlblahchdhbhst(0)st(1)st(2)st(3)st(4)st(5)st(6)st(7)steaxecxedxebxespebpesiedieipflagtrapnoerrst(0)st(0)st(1)st(1)st(2)st(2)st(3)st(3)st(4)st(4)st(5)st(5)st(6)st(6)st(7)st(7)0.50.56250.6250.68750.750.81250.8750.93751.01.1251.251.3751.51.6251.751.8752.02.252.52.753.03.253.53.754.04.55.05.56.06.57.07.58.09.010.011.012.013.014.015.016.018.020.022.024.026.028.030.032.036.040.044.048.052.056.060.064.072.080.088.096.0104.0112.0120.0%r%RD9L@u h$;@蓋Y89L@u+h+;@誋Yh2;@ Yuh8;@ϋE@AE5̶@6CYtQF9L@u7,9L@uh=;@OYjhD;@/qnhl7@]Y9L@u,9L@uhI;@YjhP;@jj5̶@m =@~hU;@h@R5̶@QBYtF5@~u uu0h^Yu h7@\Y@5@̶@@FF F~FEP@=btP@=BtP@=au$IUEOtA= u EE EtJ9L@u,9L@uh;@藉Yjh;@w蹉h7@[Y9L@u*,9L@uh;@BYjh;@"da=T@t"5T@h;@;6h7@{[Y9L@u誈,9L@uh;@ˆYjh;@:m;Eq=T@tE 5@7YE ;; A@=T@uUh7@ZY9L@u,9L@uh;@Yjh;@?<E5@]7YEh\7@fZY=b[=D('=B =E=C8=R =KW=S=r-=d=c^=kN=s>9uu6>9L@uƆ,9L@uh;@ކYjh;@u}U WVUHWV9L@uh<<@3Y9L@hC<@CYhJ<@覆YuhP<@:詆hU<@膆Yu hY<@艆h^<@fYuhb<@i7hg<@=[E@E=} E([E(E }EP B0}0uSfE f@9L@9L@u h<@;Yuh<@\Eu}ø9E0E =t E = u*E@E=} E(.E(E <@MAE =2uEtrujsUt_E %0=0uOE A;t}tEP 9B0uE@E=} E([E(ME <@}tD9E0t:}t"Eth@E0h<@ h@h<@j5AE PEPuuu0u 9L@u 蓂9L@h<@褂Yuh<@łdE}E= tE=E %U  %0=0ush<@TY9L@tQ9L@h=@Yjh=@(h=@oTY9L@蚁E PuEPW uu$E Py EċE =*t E =]u~E %0=tMu$EPEPz }uEEȋE =*u|E w9L@uhA=@ YjhH=@BE PVYE̋E =;u!E E PVYEȋE9EtMẺEȋẺEE1E@E=}E(E(U E EE=tE=h=@RY9L@=9L@_h=@3Yjh=@U;ho=@RY9L@9L@h=@Yjh=@E}}tGu=@3@+R @$@D@E@@=@3̶@+RyYE@@ @EE A $@Ep@9E~E8@9P t P 9B,u D@EP B,D@E EE(EEE#E@E=}E(E(U EEh=@EPPu EuE(5$AEP3 @EAPEPΓsE=t&E= tE=tE=tB$A @E}t@o@4Ah/>@V5AhF>@C5(Av$F PVv(VhX>@!4>uދ=,AMGPw ww7h>@t h>@Yt h>@мYh>@żY8uu}UW9L@uh>@VvY9L@h>@fvYh>@vYuh>@]vh>@vYu h>@=vh>@vYuh>@vh>@ivYEPh>@jvh>@GvYuh>@ۻ vjEPuu uh?@读Y9L@u~u+9L@uh?@uYWh ?@wuNj}UW9L@uh?@ uY9L@h?@uYh?@uYuh!?@uh&?@_uYu h+?@buh0?@?uYuh6?@ӺBuh;?@uYEPh@?@豺 uhE?@tYuhJ?@葺tjEPuu uVhO?@eY9L@u4t+9L@uhQ?@LtYWhW?@-otNj}U4E9L@uh\?@sY9L@hb?@sYhh?@,tYuhm?@/thr?@ tYu hw?@蠹th|?@sYuh?@耹sssh?@sYEPh?@Tsh?@sYuh?@4bsE=tEPlYEE?@E E=0|E=9 EPHYEu hP@EEF@EL@EH@fD@E=btf=ht+=l}tE?@EElE}t%E@=du E?@E?@EEhE^}t%E@=du E?@E?@EEbE*EdE=tjEP)EEE=iO=c=I-E=uExEEPքYEh?@EP~CtEЀxtPUEdEЊUE;@E=stE=suE@@X@E=guE@@E=9Eh @@h@艺9L@9L@h&@@pYjh,@@虶pv=aE?@9EEPh?@h@ 9L@39L@uh?@ApYjh?@!cp=ft =dtBM=gx@=ut,#=pb =ot!=sL=xu EEpEPh?@h@Q 9L@w9L@_h?@oYjh@@ao;}th1@@h@E9Et 9EuBha@@h@Ƹ9Esh}@@h@誸h@@h@薸EEh@@EP@EPh@@h@_ 9L@9L@mh@@nYjh@@onI9E$A 3E$A+ЉŨ}th@@h@ԷEh A@EP@E=cuA@EEPhA@h@y 9L@9L@h:A@mYjh@A@艳mcE9Et 9Eu]}t$E=sthEA@h@EE=suhsA@u=EJuu=E7E=suEPuuVB Euuu9 EE=suWk@@9Ev$EuA@uuu9 EE!EExE;@EEE8hA@SY+hA@FYhA@9YE̶@jkYEE=bt1=ht =lu@>Ext fEE)fEEExt EE EEE=oo=d^E=aU=I=c9EvEE_=gtD=fnEEEԃ\$h|A@3 fEfD@EE;EEظ9Et 9Eu:9EshA@E@P;E3hA@E@P;EuhA@E@P7 EuuhA@蜰 fEfD@EE=iD@EЃ}uEEE̶@uEP=X@tn5X@hA@h@ X@9L@u i9L@hA@jYjhA@"jD@EfEfD@=u`S=stW=pudYE;@uhA@h@!EЋUfEfD@EEk}tfEfD@EEEЀ}fD@E9L@9L@hA@hYjhA@֮i9L@W9L@yhA@hYjhA@萮hUu*YM~uhA@E@EPd5 E*=xuoE=xu 9E}} hwA@)Y&E=ou9E}} hzA@Yuh;@fEfD@EEM~Nuuu4 EE=itE=IeE@EA/E=it E=IuE̶@9L@u>g,9L@uhA@VgYjhA@6xgEEPYhA@ YE̋E9E|U49L@uhA@fY(9L@hA@fYhA@gYuhA@袬ghA@fYu hA@肬fhB@fYuhB@bfh B@fYuhB@BffehB@fYuhB@fh!B@dfYEPh&B@efh+B@BfYu h0B@֫Efh5B@"fYu$h;B@趫e} t-9E EPxYE=gu ËE=fu3E9Et9EkE@= $;@5@uu6 @}fEf fEm]mEPuu6 }fEf fEm@]mEPuu6 @\$uu_6`@\$uu?6@@\$uu6 @t =t$=u&@E@E@] @]uh@B@u5 9EsuhBB@E@P5 uhDB@E@P5 9EE$A 3EEE$A+ЉU +E+AEȋE +AME@t4=t7=uT}fEf fEm@]mԋẺE.@E$@}fEf fEm]mԋẺEu$hFB@u/ U#‹MU#U ‰EPhHB@u\1 jkE@=UM$;@5@uu1 -@}fEf fEm]mԋEPuu0 }fEf fEm@]mԋEPuu0 @\$uu0@\$uuu0@]uuuV0 g@t =t$=u&@E@E@] @]uhJB@u0 uhLB@E@P/ 9L@9L@hNB@aY9ao}t"9E u hVB@ЦY hYB@æY9E u u$EPjjuuu~h\B@菦Y9L@u ^`9L@h^B@o`Y`UE%= }E@@PhfB@,E%=u hjB@ YEPhmB@UP9L@u hpB@_YX9L@uKhyB@_YhB@`YuhB@訥`hB@_Yu hB@舥_E PU}}B@ @9Eu@ @P@PuhB@? E 0hB@-E phB@E phB@E p hB@E phB@E phB@ΤhB@Y9L@u^ø9L@uhB@^Y^UW9L@u hB@.^Y9L@uhB@E^Y^=T@u!= @| =@tX@C@C1EE<@4h%C@E<@4\@9YE<@4h-C@ɣE<@4\@9YE<@4h7C@蔣E<@4\@o9YE<@4hAC@_E<@4\@:9YhKC@;YE 9E=DALA %EhjWE5LAheC@5HAhxC@֢5TAhC@â5\AhC@谢E EE3UȡPA%E4,<@E$<@4hC@X E"kE dAUPPhC@0M}}؃}uKhA萶Yu/@UUB4UU4hC@ "hC@֡Y9Eu hC@迡Y @}h@j @ @E9Euj69L@u D[}ø9L@uhC@Y[Y[U9L@u hC@ZY9L@uhC@ZY:[=T@u!= @| =@tX@C@-|@̶@j YjjiohD@負Y9L@uZø9L@uhD@ZYZUW9L@u hD@"ZYx9L@ukhD@9ZYh&D@ZYuh+D@0Zh0D@|ZYu h6D@Zh;D@\ZYuh?D@Z7u-jj9E u3PjEtDD@P-Pu j 9L@uQY:9L@u-hFD@iYY-PhMD@;}Y-}Ã2hRD@+Y9L@uX,9L@uhlD@XYjhsD@͞YUWV9L@u hxD@aXY89L@u+hD@xXYhD@XYuhD@oX5̶@hD@W5̶@RY;=@t>hD@4Y5̶@WZ49E~ hD@YthD@Yg5̶@nY|3fAf~(h@hD@ԝ~hD@ÝYVN3Y9E~ hD@觝Y hD@蚝Y9L@u iWu}ø9L@uhD@{WYWUjhA=T@ttA=<@ht@lY=p@tD@F= uNhD@Yt9=<@uhE@q)Y bu}UWVoA]EEEEE=^uACAr'C*tuF F}tE=t E= u}EtgF F=ArFEC^u EC]uv-u8;]v3=]t)CЋ%D@G;|CЋ%D@C]u}t E E4E9E|&C(u1E= |EEU߈FFUE߈)u(E9EwF FUU Ev1|91;}|gFF׈SFF׈D=.=$i=*.=.=[^=\!jhE@]Ћuԋ}U$WVSp}A=AtVWztTK=u)F;tVWOt)G8uVW5tG8u]u}UWVSn}u FlFG;usnG8t\WuGB8G%EEUD@#tF<AF<AAU<Au FA+EEuWu t E{vAU<Au RFA+EEEuWuC uVWwt  E+;s߸G8uIG;tF5ߋG%EEUD@#u҃O;u=u6FEU;tVWtcO;w׸UVWt@O;w2jh#E@|-|=w=|$D@h]u}U WVSI5}EEU E ;tOuܸ}UW u'#YUEU9L@u hDE@PYX9L@uKhKE@(PYhRE@PYuhZE@Ph_E@kPYu hgE@-P=@t ̶@@|@ 9Eu9u 5@5T@j w "E 5@HYtJ=@t @t8=@uP@=rt!P@=Rtu WE u 5@5T@uz +"E A =@uBjhlE@@HP =u% @5@hoE@j @̶@=@uq5@^Yt_̶@G= tKGPYE}t8u WE =@u5@ YtA@E } tA A59L@uM9L@uhrE@MY-N}UPWk9L@u hyE@wMY9L@uhE@MYM=T@t-|@jj5T@jԓT@ 0E@9L@u(M9L@uhE@@MYqM}UWJk9L@u hE@LY9L@uhE@LYM@@4@zY@@脫T@u?jjjj5@j5@jj?Y~9T@uh$8@Yh@ڦYY u j@4P@@@=X@t#@4P@hE@h@袕 0E@9L@uK9L@uhE@KYKU9L@u hE@DKYX9L@uKhE@[KYhE@KYuhE@RKhE@KYu hE@2`Ku E05T@j pE@49L@uJ9L@uhE@JY KUd9L@u hE@\JY9L@uhE@sJYJEƃ@ P@ d hE@PUuhE@P@) hE@Pu䉽xG hE@PtߋG=<u>jwYjx} xhF@h@I jcY?j9YhxȎ} xhF@h@ j"Y="t ='uWwƃ8/ $=\u P4!Y؋G w;u؋G8= t.ƃ8Gh(F@PtߋG= 95@EP@4P@* h.F@эYhlpUWVS*=@t E9u u}UW9L@u hBF@GY9L@uhHF@GYH=0E@t)=@tWNYu0E@9L@uoG9L@uhNF@GYG}UWX9L@u hTF@GY9L@uhZF@GYZG90E@t)=@tWTYu0E@9L@uF9L@uh`F@FYG}UWT99L@u hfF@RFY89L@u+hmF@iFYhtF@FYuhzF@`F|@E8jW5T@j虌=|@tt>Ep% VW5T@jcjW5T@jNE=|@t5u0E0E0-EYPE0V@Y0hF@h@a9L@uzE9L@uhF@EYEu}UPWV&9L@u hF@ EY89L@u+hF@ EYhF@EYuhF@EEE8|@jW5T@jP=|@tt+%UR ‹VW5T@j=|@t5u0E0E0CYPE0 ?Y0hF@h@+9L@uDD9L@uhF@\DYDu}UWVb9L@u hF@CY9L@uhF@CY+DjjDEP膾Y;=T@tu5@juT@X@8@E%=t[E%@t~^Et&hG@Y5 @Y@G@ T@X@7@6E@9@u @9@t^9L@uB9L@uhG@BYC}UPW9L@u hG@cBY9L@uh%G@zBYB|@jh5T@jƈE=|@th.G@Y 3b9ģtSjģUR5T@jm\@=|@tWhPG@h@螋 G|E{(A4E@ Aju5T@j U%DA=|@thqG@Y4=DAE@EHA3IjEEP5T@j藇UE=|@thG@h@NJGr3*}@Rk dAP(G|Rh7@aY9L@u@,9L@uhG@@YjhG@舆@@|@@̶@9L@u:@9L@uhG@R@Y@u}U WVi.l@l@AAuA AU%l@l@u ]US h0ANYUJhJjEh0A YuE(E  E Y9L@uhG@?YO?j@4P@ @@k@@ @@|@jk@HAP@4@ =4k@HA=Lk@XA=k@XAPhA@4@蔸 k@XA;AH@9H@t+ 9H@t9H@t#9H@SAH@AAL@H@L@X@ $AEhG@@kU(APΘu@U(A_hG@@kU(AP虘u@UHA*hG@@kU(APduEEE$A9E[@(AU@HAU}t/=@u&AkU(L p@AkU(tYH@@AUkE(EEUL k@@k@k@@X@@@AUkE(EEULk@@k@@kM(AыR P@@k@X@@k@k@@@@AUkE(EEUL k@@k@k@@H@@@AUkE(EEULk@@k@@kM(AыR P@@k@P@L@@@AUkE(EEULk@@,=5== =#A\@@k@PA hA(H@@4P@hG@h@+ k@HA=Lk@HAH@o$AEkhH@@kU(APOu@U(A3hH@@kU(APu@UHAE$A9E|@(AU@HAU@AkE(L H@@AkE(L L@H@L@X@k@ǀ@k@H@@@AUkE(EEULk@@k@@kM(AыRP@@k@H@L@@@AUkE(EEULk@@\@@k@PA hA=H@uk@ǀ@9L@u,89L@uhH@D8Yu8Uju5@) ;Euh|P5@2  p@b|EDžx@EtE@Px@PtExp@9x|UL@(AU@HAU9L@u h"H@6Y9L@uh)H@7YA7j5@ @@= @}@\@|@9L@u69L@uh0H@6Y6h h@5 @۰ = @%@@@\@@ D@ H@H@ L@L@ T@@kU(A‹@ ж@P@9H@u L@H@L@ж@ЉԶ@ض@ = @}@ +T@ܶ@= @}@ @9H@u L@H@L@ @@E@9Er P@9Evh7H@h@~E.E9ģtEU ģE\@E9E|g@DA=DAtXHA,@E0EE@RkE dAPE9E|h\@|@@Զ@ض@ж@@ܶ@5@hVH@h@} @9L@u39L@uhvH@4Y14u}UWVr9L@u h}H@u3Y89L@u+hH@3YhH@3YuhH@y3huxE|uY5G@u=EE9L@u3-9L@u hH@&3YuhH@yG3EUP 9L@u hH@2YX9L@uKhH@2YhH@ 3YuhH@x 3hH@2Yu hH@~x2uhH@u=5G@uD}$E 9@~}uhH@h@{ 9L@u1+9L@uhH@2YWhH@w+2}UW9L@u hH@r1Y9L@uhH@1Y1k@JAk(W~Y@AW@4A@4@薫 ;thH@h@z9L@u199L@u,hI@1Yk@JAPh I@v21k@JA}UW`@E} uӇY EP@؃uJ@9Et.uY@@@h@YcE` ϋG 9=u G "@;u`@uG ÈG= G`@]u}UWVS%EEU E E =A| E =Z~֋E =a| E =z~E =_tE =.tE =-tE =>tE =*wE =?fE =0|E =9HE =[EEU E EEU E E =0| E =9~֋E =A| E =F~E =a| E =f~E =q*tE =XthpI@E PlE =]thtI@YEE]EEU E SEE U>,EEU E E = uEE U,EU E ;uE u߸UT@E =[uE E =]t E uEU E ;uE uUE8tuhI@h@v U}u GFuu}UWV'}u ǙƋ;t؋]u}UWVS=X@u =@t/5X@`YX@@jh@7=|@t:5|@hI@EP; EPqY|@jh@UPo"u u{uURE'3?81*#-a|=w=|$$I@}UWu u UEE U=?u(Eu E @PE@P=*uKEPu E PE@PtaE 8uPGhI@PuuEu&U;tE @PE@P]}UPWS "u utUKE%0=0uE 59Et 9Eu E \@uhI@u L UE=-uEEEE=0ujEE=xtE=Xu&Eh hd juZUЋBh h ju9UЋ!hP h# j uUЋUP7 7\0=\t=bt=ft=nt=rt=ttEUE=0| =9~hI@PN=-uEE@E8E=0| E=9~@EPY@EE=.t E=euE=.t E=eu@u{Y@@='u E@@@X@Euj%`X@`@Euj:F`@=`@tuEP/@EuEPEPEPD1u"5l@hI@h@o A=X@t\@@@@P8Y @=t @=u^=guChI@W1@shI@GPhI@GP@VW@N=gu5hI@W@hI@GP@@VW@=gu=fu@EX@E`@@]u}UhWVS [}}9EtE؉EhI@JjY 9E9EtuhI@(juhI@jU89E| 9EuhI@iuhI@iU@9EuEUE=_uuhJ@iE-h J@uuu EP MHM9EuEU +PU0h J@E +@E}th J@iYuYU'EUE=.u`E@=buRE@=tuDE@PEfYEE@%UJk‰Eu uY0hJ@zh u uhJ@eh UkijuEE=$tEGjE@PEEE+UJ EU E9ErۋEU C} FHPfY~t;5@u8@9F t F x0uu}UWV붐UWj4荦Y8@(Aȵ@jvY@,Aĵ@@hĵ@hȵ@@p@9@~ۋ=,At8@G ;=ĵ@rhB9jĵ@+,AP5,Ag@ĵ@ 8@J H HJ@HJ@8@ȵ@3Ɉ @@4AhIJ@=4=uKAhRJ@2YAh[J@2YA@j#Y@}á$AUTWVSE`@Et@EEEE 8E0Ai@k@@@i@@PY@hAUи9L@u hdJ@[Y9L@uhkJ@rYuI>YE=t]EEfPfUf@fE‹Ef@fEE=g%;58@h!Y؍E=@u @UЉPE0E 8=J@uNk@TAu @4P@hK@h@nh @4P@h-K@h@Nh 9L@ug]u}ø9L@uhQK@vYKEHE;,Aw8@,A,A@@F$F EЉF(F,F0@k@MkIPA AEGCUUȊ.u29E}(CUBUȋMʊ fu F0F0Eȸ9E|uh|J@ut EhJ@utE4@ CU EE8uEE4EfP f@UR Jk(AUE=t E=uAfEfu8hJ@ult$EPB=.uEP=MtEă}E=hJ@u9EuEP@E@(9Eu@UJ @U @EO=p@tFE=u;}t5hJ@EptExu@ =u 4EE%0= t };=@uh0葠Y@0EPPW9FuGFEЉG}t8@-4G fGGEĈGf@fGfGE=}}u hJ@YljEhJ@EpJ@EE=@h8@PYEtEPuy=uh8@hJ@h@?d +@9E~!@4P@uhJ@h@d}tuh8@褔EfPfu,UfJfHP ẺB,@@3<@E@hK@Ept1EfPfu%URMIJfPURPE=ugEfP f~[@UR Jk(A‰EhK@u9uh K@u%tEA9Ps PAẺEUWV9L@u hXK@Y9L@uh`K@YB<@L$HL$hhK@[) uQ9L@u09L@u#hiK@Y5@hqK@^@u}W#Y9L@uY+9L@uhvK@qYVh~K@R^UWV9L@u hK@Y89L@u+hK@YhK@cYuhK@]%EuK9L@tR9L@uwhK@YWhK@]WtW5@=,AL9L@u]+9L@uhK@uYWhK@V]Nju}Ã8u9L@u A7uetk9L@uhK@ YVhK@\/UWVj/uu9L@u hK@uY89L@u+hK@YhK@YuhK@\tFu=(AuWqtE4?u9L@tV9L@u{hK@BYWhL@#\e[4 u;=(As hK@Y9L@u+9L@uhK@YWhK@[Nju}U$WVSEEE$J@E`@Et@9L@u h L@0Yx9L@ukhL@GYhL@Yuh"L@>[h'L@Yu h/L@[h4L@jYuh:L@Z,ExE@;} 9L@9L@h?L@YVhIL@Z9L@>9L@_hRL@vYVh\L@WZ<euhNL@EpudhaL@Ept\EEE@E9L@9L@heL@YVhoL@YhtL@EpVEME@E19L@29L@ShxL@jYVhL@KY0̵@9EE9EEpu]EP:AP @P$AE@Eph@Ef@fA=u6fAEP.g$@hAUW11YE=g9L@u+9L@uhL@5YVhL@XX]Ћuԋ}ËEEu0YE=t@UkRhA‰E9}~W0YEEkUЉ J@h@GY$A=uG9L@9L@uhL@YjhL@dWF}UE`@Et@pAEP @P$Aph@dEf@fAf=u(fAEP@hAUNEEu/YE=yËEEur/YE=t@UkRhAUE9EvuA/YEEkUЉ J@h@Y$A=u댋EUPWV} E`@9L@uhL@Y9L@hL@YhL@?YuhL@UBhL@YWhL@UE@g@;<Au`Epu:EP:+" fPfAfAfuZhL@@UR Jk(APu/hL@@UR Jk(AP|fAfu*=@u!P@==tEphL@TEf@ fAf~PhL@@UR Jk(APu%Ƣ @EP$Aph@臈W,YluJ9L@{9L@uhL@ YjhL@Su} 9L@u +9L@uhM@ YWh M@S UW} E`@Et@9L@u hM@ YV9L@uIhM@$ Yh"M@ Yuh&M@S h+M@g YWh2M@R+ W+Y9L@9L@h7M@ YjhAM@R 9L@R9L@thFM@ YjhPM@dR PE@ =uW+YtEphUM@tF9L@9L@hZM@ YjhdM@Q- EputkEP:t`fPfAP$AfP fAP @ph@ @=uE@AAW-*YuJ9L@u ,9L@uhiM@/ YjhsM@QQ }C9L@u +9L@uhxM@ YWhM@P UWE`@Et@9L@u hM@H Y9L@uhM@_ Y EPhN@YVhN@mIXD$UWVS} EEAEt@9L@u hN@YV9L@uIhN@YhN@`YuhN@HchN@@YWhN@HEAEE;=@ut WYfGfuF9L@tѸ9L@hN@tYuuhN@PH EG@wV!Y=uJ9L@g9L@JhN@ YuuhO@G ("Epu W%YV#YtEfPf9L@9L@hO@YuuhO@kG E;]wKfPftB@;EuEEE@E@;]u AVl"Yu=J@~GHE9L@<9L@u#h%O@Yuuh.O@F EMMH]u}U9L@u h:O@@YX9L@uKhFO@WYhRO@YuhWO@NFh\O@Yu hbO@.F\u uEPMHM9L@u-9L@u hgO@YuhsO@EEUWVSE`@E$J@9L@u hxO@TYX9L@uKhO@kYhO@YuhO@bEhO@Yu hO@BEpE xt u GYE ̵@EE XSY؃u]9L@tF9L@$hO@YjhO@D9L@E@EpdhO@V/tUEU9PExuj YYUBEPBBEPU‹UBU̵@hO@VEU9PwE@E4 ̵@^9L@uhO@YjhO@C]u}ÃeuhO@VMt EU9Ps]v9L@uO-9L@u hO@gYuhO@FCEUW9L@u hP@Y89L@u+hP@YhP@TYuhP@B=T@u-= @}hP@h@sF#=@|@̶@=@3̶@+R Y;=@=@t8@9G tWuY;=@8@9G w X0YW=@3̶@+REPMHMu8YE@@}t7=@3E}u 9At5Ah+P@AI79L@ur}h@P@DY8@9G uhGP@-Y8@9G u=,Aw /YGP*8YG̶@9L@u=b9L@uh4P@,Yjh;P@ AN}ø9L@uhLP@YjhSP@@3UP9L@u hXP@nYX9L@uKh_P@YhfP@YuhhP@|@hmP@Yu hoP@\@EU R9PuxtEE xu2EEU R9PsE9L@u6E9L@u htP@Yuh|P@?EUPWVS}9L@u hP@aY69L@u)hP@xYhP@YWhP@q?u]u}Wj.]t[W]YtF(E9L@t]9L@u hP@YuhP@>8EWY؋tCE9L@uɸ9L@uhP@YuhP@>UWVS}9L@u hP@'Y69L@u)hP@>YhP@YWhP@7>eWj.9t WY^ 9L@u+9L@uhP@YShP@=Ë]u}UWVS5@fE9L@u hP@WY[9L@uNhP@nYh Q@Yu uhQ@b= hQ@Yuh#Q@B=pfEffu5@u?YEu5@,A@f;v,AU9P u5,Ad=,AYUEEE8uȸ9L@u5뉸9L@xhT@IYzcUPWVS9L@u hT@Y 9L@`@t@}~uZ9F|@@9F~.DJ@-PhT@&9L@`@`@Frk@U+PAU¹EjV@kU @PE; @@kE DF@kU @‰FDJ@FjWFPvh U@h@(^jÃPi@@PG =}6DJ@9L@X9L@]u}ËOFkDJ@9L@u 9L@DJ@U9L@u h4U@JY89L@u+h=U@aYhFU@YuhMU@X$}9L@9L@hRU@-Yjh[U@ $O9L@9L@h`U@YjhiU@# k@PA9E}DJ@9Et&jui@@P EDJ@jhAi@@P能 =}QDJ@9L@u,9L@uhnU@/YjhwU@#QÃDJ@9L@u09L@u#h|U@Y5DJ@hU@"DJ@U WVAE@(AU9L@u hU@3Y89L@u+hU@JYhU@YuhU@A"ofH@f=LtJ9L@9L@uhU@YjhU@!:u}ËE+,AE@AkE(|ffFfu]EE;EuR9L@uu29L@u%hU@Y-PhU@g!-hWYu9L@u >9L@-hU@&YjhU@!H UP9L@u hU@Y89L@u+hU@YhU@YuhU@ jju[ Ek@PAu09L@+9L@uhU@lYjk@PAuZ[ =u@juuC[ 9L@9L@uhV@ Y@=YE PhA@}EjlY=@3̶@+R$YW=@3̶@+REPMHM= @G E;@t 8@9EtE@PhF@(;=@t/;=@t'=@9 @u@0hO@9 @~!9Au7hW@Z 9 @~h[@YevE PY=u69L@9L@uh`@|Yu܋}á|@̶@=@3̶@+RYV=@3̶@+REPMHM=@u0;uE9Eu E9E9E~}t=@u M}T9L@u ?9L@.hw@YU 9L@u h@Y:9L@u-h@5Yh@YEPh@*X|@̶@j5̶@諣%=u6jsDYj5l@臣E|@̶@5̶@cYE\jsCY9L@9L@h@Yjh@EPJRYExt @9EuE=suo@9Et EfPfuExtPEP z0uD9L@u,9L@uh@ Yjh@+3ËE̶@jbBYjcBYE̶@jdBY|@̶@9E=@+h̗@Y9L@uU,9L@uhܗ@mYjh@M\UWVS9L@u h@Y9L@uh@Y.hP@Y9uYhP@h@h@z 9L@9L@uh@Yø9Au;h@ Y9L@O9L@uh:@TY3Eءl@@l@ t=(tڋË3l@'uËl@Rl@="ËAR@։l@l@l@\ul@l@P蟤YF ="uVjuBhB@ÞY9L@9L@kh_@ Y:VChg@uY9L@9L@h@Y=0|=9~=-uhl@-Y=a|=z~.=A|=Z~=_5l@hP@hP@h@B9u79L@9L@%h@Y@%0=0uËy@=t@= t@= uA@3@PY=su Dž@ @=t @==gubh@袚9sh@@P{h@@PZy?a=gu6jh@J jh@0 j l@l@=A|l@=Z~ܡl@=a|l@=z~l@=_tl@=.tl@=-tl@=>tl@=*ol@=?\l@=]Il@=0|tl@=9'_=)tQPh@h@ 9L@9L@Mh@Y8l@l@ t=)Z=@u|@=T@t|@@p@@@AA@@5@Y@t@@@t @@@@=T@t =@tjr;YA|@̶@9̶@uBh@jY9L@9L@h@YE+Ћ¹-EġADž)E4j肛 E+Ћ¹9rA@@Dž,4j# F39rl@l@AX@jc%Y=@u h@ Yh@ Y9L@tl9L@h@mYl@l@= tl@=,tG,h@跗Y9L@u j9L@Yh@Y(Djh@ˑ UWVSE@E@9L@u h"@4Y9L@uh*@KY3=T@u =@~)d7h2@u ;=@uޅt*;=@t"=X@uj@@P蓗uh\@h@衖j@@ PcKjƃPMEEju1EEEU u?E9EuE"EE"EE EEEKjƃPޖEGEU= tE= uEEEU EEE9EmEEh@@4P@h7@ X@9L@u]܋u}ø9L@uh>@YU9L@u hF@"Y:9L@u-hL@9YhR@YEPhT@.\E=rtE=RtaEP6Y=uG9L@u,9L@uhY@Yjh_@Hhd@EP谓A9@A=/u%jjjl@tk@Pj J hm@EY9@t @|@̶@@@p@A@̶@@=@t@@P@jh@r9L@u,9L@uh@Yjh@UWVDž9L@u h@ Y89L@u+h@7Yh@Yuh@.\jYu= tGF= u=;u = =kh@FP軑9L@tu9L@h@艿Yjh@i諿h™@h@ PhЙ@h@ F= u߸9L@uHmG&V蕿Y=t\G9L@uC踾h9L@uhә@оYjhܙ@3ø9L@uh@蔾Yjh@t趾UP9L@u h@ Y9L@uh@ Y`jjj  AhAhTj? h@hTj> 5@jj 9L@u譽ø9L@uh@ŽYU9L@u h@OY9L@uh @fY覽hAhTjk> 5Ajj9 9L@uø9L@uh@2YcߐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWEE EP<YtujW Nj}Uu]?YÐUWVS} uEE~,F t!O>(VkY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}VG;Y}u +gEEvb@ÐUWV@l@9|@s |@<0@u4YtVuj? jh*@j? W4YPWjw? jh-@jf? u}Ð>?ÐUPWE E@u@t* @h@uuE @ t }Ë|@P?ÐWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_U9Er=t@u>E@PP:Yt@E@E@E EURu+ËE9@sˣ@P5t@<t@UWVS@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u @|?=t@t6SW5t@; SVW; S5t@V; ]u}ÊEGFUKuUWVS}u ]@E9E|R=t@tIuW5t@v; uSWi; uVS\; u5t@VJ; ]u}ÊEGCFUMuӐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh@d UPEEPu uI UW}EEEljEEW"0YEE2uu EP }ÐUWVS}u Dž@@ @W=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_=@uVctQ[tL@} W@ Y GG@u @W^=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf@fl9uEEP@{EEP@dEPWSt'=@tu /$Fu @td=@u@} W Y GG@u @W=u@y%uF؃%@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$x@EE EE@}WyY3]u}ËGG=+t=-t =0t8EM@} W(Y GG؃0i9E }9Eo@} WY GGEh~PW =uh~Ph@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E<@r5ED@rP@EL@AEl@s6EE]@)EEt@r݋EE 9P܃}t؁@F@vF@E|@t @r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEET@MU]vEu}fEf fEm]mE܉EFUR0EMm]E\@E5d@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u  G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ðr ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}|@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&uA AGW @*h!YGt@O G W@GGVYtG uO @u}G  AWR@UWV}G @+G}G @Wu};7}7𐐐3ÐU|@EEPhTu } E|@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@j Y𡄯@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}WV|$ t$L$Njʁ^_øÐT$@Ru @+D$øT$@3øvÐ0̹NL$0̹:L$0+L$0L$0 L$0 Ã|@ÐT$@(#)Run-time System 5.3.1bS0getvalgetvalloc0x%xd'%s'space0x%xError: getval(): ln=%d getval0x%xgetval0x%xputvalputvalloc0x%xd0x%xvalue0x%xError: putval(): ln=%d putval0x%xCannot write I space.putval0x%xgetreggetregreg0x%xd0x%xgetreg0x%xputregputregreg0x%xd0x%xvalue0x%xputreg(): could not read u_ar0 putreg(): could not write %s putreggetgetadr0x%xspace0x%xget0x%xget0x%xputputadr0x%xspace0x%xvalue0x%xputaccessaccessmode0x%xadr0x%xspace0x%xvalue0x%xaccess0x%xNo core: space = %s, adr = %x datatextReally core file: set space to ISP No process and/or no fileNo process and/or no file.Need -w flag to write a file.Cannot %s file '%s` [%s]. readwriteMust be stopped at a breakpoint. access0x%xchkmapchkmap*adr0x%xspace0x%xchkmap0x%x (*adr == %#x)chkgetchkgetn0x%xspace0x%xchkget0x%xgetpartgetpartvalue0x%xd0x%xgetpart0x%xbreadB#X#;#Q#n##g#,,y + Y!""#I$$(%%5&&&d''A(y((1)*X**,C+,M+*!)hw)`,,,,$<"#,* +)***** Error - bad opcode ***** Error - bad opcode ***** Error - bad opcode wl%-7s%-7s %s%s,%s%s%s,%s,%s%s%s,%s%s%s,%s%s%s,%s,%s%s%s,%s%s%s,%s%s%s,%s%s%s,%s%s%s,%s%s%s,%s%s%s,%s%s%s,%s%cl,%s%s%s%cl,%s%s,%s%s%s%s,%s%s%s%s%s%s%s,%s%s%se%s%s,%%%sax%s%s%s%s%s%s,%s%al%ax%eax%s%s,%s%s%s,%s%s%s(%%%ssi),(%%%sdi)ee%s%s,%s(%%%sdi)e%s%s(%%%ssi),%se%s+%s%s%s*%s%s%s,%s%s+%s%s%s%s%s%s%s%s,%s%s%s%s%s%s%s(%%dx)%s$%scbtwcwtlcwtdcltd***JUMP TABLE BEGINNING***FILL BYTE FOR ALIGNMENT ***JUMP TABLE END***%s%%st(%1.1d)%s%%st,%%st(%1.1d)%s%%st(%1.1d),%%st***** Error - bad opcode %sdis bug: notify implementor: case from instruction table not found%sdis: %s: %s: section probably not text section disassembly terminated %s%s%s%s%s%s,%s%s(%s)%s%s%s%s(%s)0x%.2lx0x%.4lx0x%.8lxdebug: print symbol table entry: n_name= %s; n_value= %#lx; n_scnum= %d; n_type= %#x; n_sclass=%d; n_numaux=%d; proc auxent for %s: x_tagndx= 0x%8.8lx x_fsize= 0x%8.8lx x_lnnoptr=0x%8.8lx x_endndx= 0x%8.8lx debug process stack: SDBREG(PC) = %#o %s = 0x%8.8lx %s %s(%s() returns ) %s == ,decodedecodep"%s"cmd=%c proc=%s var=%s args=%s integ=%d integ2=%d dot=%d /?decode0x%xdecode0x%xdecode0x%xdecode0x%xToo many numbers (%d) decode0x%xToo many numbers (%d) decode0x%x"+-=!.[->.[%s not an active procedure findvar0x%x%s not found %s not found %s:%s not found findvar0x%xfindvar0x%xddchdlfgddddbuhuuludtypetodesctypetodesctype0x%xtypetodesc"s"sptypetodesc"lx"lxtypetodesc"%s"typetosizetypetosizetype0x%xstsize0x%xtypetosize0x%xprbkptprbkpt <%c> No breakpoints set prbkptidbkptidbkpt ? No breakpoints set idbkptdabkptdabkptdabkptprintbkptprintbkpts0x%xprocp0x%xdot0x%x%#lx ()%sprintbkptprframeprframeprframesigprintsigprint%s (sig %d) sigprintprintstmtprintstmtstmt{0x%x,0x%x}%d,%dprintstmtXdddddWddddddddddddddddddddddbdddddddddWdWdaddddddddddddRbd|`dd]Z_dddd[dddRSddd4WdZ\?TdHSdSSdddddddS]Z^qTd\d[dD](T_ddVVVZ\VTdRVSdZWdocommanddocommanddocommanddocommandInvalid command (1)docommanddocommandUnexpected null command docommandrCannot open file %s ? map/ mapl T Bad arguments%s() in "%s" :"[%.*s]%s" "%s" Cannot find %s () in "%s" %s() in "%s" curfile='%s' filework='%s' 0x%lx/ %#lx/ Cannot set temporary breakpointBreakpoint at Not stopped at breakpointBad addressBreakpoint at Procedure killed Cannot Set Breakpoint Cannot Set Breakpoint on any part of an inline expanded function. b Non existent breakpointAll breakpoints deleteddPrev stmt changed %s %#x regloc[%s:%s][%s] from %d(%#x) to %d(%#x). Stopped after %d steps; loc %#x unchanged. idxUnknown addressdddBad command for %s Bad sdb command: '%c'=\%#x docommandfpargsfpargsfpargssetdotsetdotskipflag%dBad line numberinline expanded functionADDW2setdot0x%x@finitfinitname"%s"finit%s: No lines in file finitfinitfindflfindflname"%s":findfl0x%xfindfl0x%xexecatexecats1"%s"s2"%s"si"%s"execat0x%xfnextfnextfnextfnextfprevfprevfprevfprevfprintfprintNo lines in filefprint: fprintffindffindnum0x%xffindffindNot that many lines in fileffindfbackfbackn0x%xfback0x%xfback0x%xfback0x%xfforwardfforwardn0x%xfforward0x%xfforward0x%xfprintnfprintnn0x%xNo lines in filefprintn0x%xfprintn0x%xq}T}T}F}~}~}~}\}d}~}\}~}~}~}~}\}F}\}initframeinitframeinitframe0x%xfixframefixdprntfixsavrnextframenextframe_startsavrnextframe0x%xformaddrformaddrclass0x%xaddr0x%xBad class in formaddr: %d(%#x) formaddr0x%xstackregstackregreg0x%xbubububbubulbubuStackreg() error: frame=%#x stackreg0x%xprfrxprfrxtop0x%xNo process and no core file.prfrxprfrx__dbsubcprfrxpc: 0x%lx; args: ((%s(.ef0x%x&%s=x%s=.ef,...) [%s:%d] Broken stack frame prfrxCan't get signal address for process from kernel check_for_asm_proccheck_for_asm_procsp0x%xprocp0x%xsubsproc0x%xDon't understand how %%esp got %x! Warning: One or more subroutine frames missing: check_for_asm_proc0x%xlu Maybe from <-- My guess check_for_asm_proc0x%xprintargsprintargsargp0x%xcallpc0x%xprocp0x%xsubsproc0x%x__dbsubcpc: 0x%lx; args: (%s(%d&%s=x%s=,) [%s:%d]printargsnargstacknargstackcallpc0x%xbubbulbubunargstack0x%xnargstackcheck_for_asm_proc0x%xbubunargstack0x%xnargstack0x%xbuhas_subroutine_linkagehas_subroutine_linkageprocp0x%xnoisy_mode0x%xbbulbu%s() has no subroutine linkage (pushl) has_subroutine_linkage0x%xbu%s() has no subroutine linkage (movl) has_subroutine_linkagenargstack0x%xbu%s() has no subroutine linkage (wrong regs) has_subroutine_linkagenargstack0x%xhas_subroutine_linkage0x%x%s: unknown flag %c a.outrCan't open pathfile: %s Source path: Warning: `%s' does not exist `%s' does not exist Warning: `%s' newer than `%s' *Error; Try again Illegal floating constantisfileisfiles"%s"isfile0x%xisfile0x%xisfile0x%xBad modifierNo breakpoint setNo processText address not foundData address not foundToo many breakpointsProcess terminatedBkpt: Command too longWait error: Process disappeared!Try againBad core magic number8@8@8@8@8@8@8@9@9@&9@19@@9@R9@g9@x9@9@9@9@9@9@UNKNOWN SIGNAL (0)Hangup (1)Interrupt (2)Quit (3)Illegal Instruction (4)Trace/BPT (5)IOT (6)EMT (7)Floating Exception (8)Killed (9)Bus Error (10)Memory Fault (11)Bad System Call (12)Broken Pipe (13)Alarm Call (14)Terminated (15)User Signal 1 (16)User Signal 2 (17)Death of a Child (18)Power-Fail Restart (19)jYmmmprintinsprintinsfmt0x%xidsp0x%xprintinsprassymprassym [(%%%[^),]%%%[^), ] <%x>,%c%c]prassympsymoffpsymoffval0x%xregno0x%xfmt0x%xpsymoff0x%x%spsymoff0x%xpsymoff0x%x%spsymoff0x%xpsymoff0x%xprdiffprdiffdiff0x%x+prdiffsubpcssubpcsmodif0x%xsubpcs0x%xsubpcs0x%xWarning: Breakpoint at illegal instruction. subpcs0x%xsubpcs0x%x%d: Killedsubpcs0x%xsubpcs0x%xsubpcs0x%x%lx6k(Hh MC@SC@YC@_C@outvaroutvarprocp0x%xvar"%s"fmt"%s"metaflag0x%xaddr0x%xclass0x%xtype0x%xsubflag0x%xprnamep"%s"stroff0x%xprvar0x%xoutvar0x%x**%s:%s%soutvar0x%xCannot access multidimensional argumentsoutvar0x%xPointer must have range specifiedoutvar0x%x%doutvar0x%x->%s outvar0x%x-> must point to somethingoutvar0x%xNot with a register variableoutvar0x%x->.[outvar0x%xoutvar0x%xoutvar0x%xwtflag=%d; badproc=%#x; badfile=%#x; filework=%s; magic=%#o dot=%ld; extstart[libn] = %ld; firstdata = %ld; %.14s offs %#lo @ %#x flag %d addr %#lx %s addr %#lx; offs %#lo; sfptr %#x; line %d entrypoint notstab dispfdispfaddr0x%xdesc"%s"class0x%xtype0x%xsize0x%x dispx0x%xdispfdispfaddr0x%xdesc"%s"class0x%xtype0x%xsize0x%x dispx0x%xdispxdispxaddr0x%xdesc"%s"class0x%xtype0x%xspace0x%xdlhhubbub%d format not allowed with bit fields dispx0x%xlhbIllegal descriptor: %c dispx0x%xddBit fields have no address. dispx0x%xRepeat count ignored when displaying address Registers have no address. (register number) (address of variable on stack) xduoc%c format not allowed with address. dispx0x%xRepeat count ignored for bit fields xudo%c format not allowed with bit fields. dispx0x%xRepeat count ignored with register variables dc0x0%gddd%.13gnot a text address dispx0x%xdispx0x%xb%s dispx0x%x dispx0x%xprintitprintitmetaflag0x%xprvar0x%xaddr0x%xdesc"%s"class0x%xtype0x%xsize0x%xspace0x%xdddddddprintit/ = printit^%c^?%cprintmapprintmaps"%s"amap0x%x%s `%s' -b1 = %#-16lxe1 = %#-16lxf1 = %#-lx b2 = %#-16lxe2 = %#-16lxf2 = %#-lx printmapprintregsprintregsNo process and no core file.%4.4s/ %4.4s/ %4.4s/ %4.4s/ VALIDZERO INVALEMPTYfpst/ 0x%08.8x fpcw/ 0x%08.8x fppc/ 0x%.8x fpdt/ 0x%.8x %.5s/ [ %s ] 0x%.4x == %.14g ???? == 0printregsprintpcprintpcNo process and no core file. printpcregoutregoutname"%s"prvar0x%xfmt"%s"dregout0x%xUnknown register variableregout0x%xprisplocprisplocmode0x%x%#lx (): ) %s+: prisploc @-=/Q?QNo matchRE error RE botch ?runpcsrunpcsrunmode0x%xexecsig0x%xculurunpcsendpcsendpcsendpcssetupsetup%s: cannot execute setupexecbkptexecbkptbkptr0x%xexecsig0x%xexecbkptdoexecdoexec <> <> %s: cannot open %s: cannot create <> Returned from exectdelbpdelbpdelbpsetbpsetbpsetbpsetbp1setbp1bkptr0x%xCannot set breakpoint: %s:%d @ 0x%x setbp1delbp1delbp1bkptr0x%xCannot delete breakpoint: %s:%d @ 0x%x delbp1bpwaitbpwait - core dumpedcorebpwaitreadregsreadregsreadregs(): could not read u_ar0 readregs(): could not read r%d; readregs(): could not read u_fpvalid readregs(): could not read fpstate; readregs0x%xreadregssetsymsetsym.text.data.libWarn: No magic for %s; .text.datasetsymsetcorsetcorsetcorWarning: Registers not valid. Warning: `%s' not a core file. setcorcreatecreatef"%s"create0x%xgetfilegetfilefilnam"%s"cnt0x%x-cannot open `%s' getfile0x%xrdschdrsrdschdrsWarn: section header read error rdschdrs%d ,;*unmatched '['; ']' provided%s sdb chkerr() [errno=%d].[->dhex conversion error.-Unknown variable: %s ddddd-%ld%#lx%-12ld0x%-10lx%s:+%s%s%s%s  __dbargs__dbsubc__dbsubninitfpinitfpsdb(sbrk)doprnt.sbranchtab.text.text.textsdb(sbrk)Proc Aux entry missing; .bfWarning: `%s' not found Warning: `%s' newer than `%s' .ef.data.bssWarning: `%s' has no symbols Warning: `%s' not compiled with -g initfpcurproccurproccurproc0x%xcurproc0x%xfindprocfindprocs"%s"findproc0x%xfindproc0x%xfindproc0x%xfindfilefindfiles0x%xBad file arrayfindfile0x%xfindfile0x%xslooknextslooknextpat"%s"poffset0x%xprocp0x%xslooknext0x%x.efslooknext0x%x.bbslooknext0x%x.ebslooknext0x%xslooknext0x%xslooknext0x%xsglookupsglookuppat"%s"offset0x%x.data.bssAssuming %s is int. .textsglookup0x%xsglookup0x%xstrlookupstrlookuppat"%s"offset0x%xstrlookup0x%xstrlookup0x%x.eosstrlookup0x%xstrlookup0x%xstrlookup0x%xarysrtdataarysrtdataarystrdataarystrdatardcomrdcomname"%s"rdcom0x%xrdcom0x%xscaleindxscaleindxrunmode0x%xsubflag0x%xfiletyp0x%xscaleindx0x%xgetbndgetbndlbnd0x%xubnd0x%xsubflag0x%xgetbndadrtoprocpadrtoprocpaddr0x%xadrtoprocp0x%xadrtoprocp0x%xadrtoprocp0x%xadrtoprocp0x%xadtostmtadtostmtaddr0x%xprocp0x%xadtostmt{0x%x,0x%x}adtostmt{0x%x,0x%x}adtostmt{0x%x,0x%x}adtostmt{0x%x,0x%x}adrtolinenoadrtolinenoaddr0x%xprocp0x%xadrtolineno0x%xadrtostoffsetadrtostoffsetaddr0x%xprocp0x%xadrtostoffset0x%x.bbadrtostoffset0x%x.ebadrtostoffset0x%x.efadrtostoffset0x%xsetcursetcurverbose0x%xNo core image %#lx in setcur0x%xMAIN__mainsetcur0x%xcomparcompara0x%xb0x%xcoompar0x%xnametooffsetnametooffsets0x%xnametooffset0x%xnametooffset0x%xnametofilenametofiles"%s"nametofile"%s"stmttoprocstmttoprocstmt{0x%x,0x%x}filename"%s"stmttoproc0x%xstmttoaddrstmttoaddrstmt{0x%x,0x%x}offset0x%xfile"%s"stmttoaddr0x%xstmttoaddr0x%xstmttoaddr0x%xstmttoaddr0x%xstmttoaddr0x%xstmttoaddr0x%xsttmttoaddr: Bad lineno for %s; stmttoaddr0x%xstmttoaddr0x%xstmttoaddr0x%xstmttoaddr0x%xstmttoaddr0x%xlntoaddrlntoaddrlineno0x%xoffset0x%xfile"%s"lntoaddr0x%xgetaddrgetaddrpnam0x%xstmt{0x%x,0x%x}getaddr0x%xgetaddr0x%xextaddrextaddrname0x%xextaddr0x%xextaddr0x%xextaddr0x%xextlookupextlookuppat"%s"filestart0x%x.data.bssextlookup0x%xextlookup0x%xvarclassvarclassclass0x%xtype0x%xvarclass0x%xvarclass0x%xvarclass0x%xadrtoextadrtoextaddr0x%xadrtoext0x%xadrtoext0x%xadrtolocaladrtolocaladdr0x%xprocp"%s"adrtolocal0x%xadrtolocal0x%xadrtoparamadrtoparamaddr0x%xprocp"%s"adrtoparam0x%xadrtolocal0x%xadrtoparam0x%xadrtoparam0x%xsetmapsetmaps"%s"Map `?' or `/' must be specifiedsetmapsetmaprdsymBad string table offset @ 0x%lx Warn: [%.8s](%d): n_numaux(=%d) > %d; rldentryrldentryoffset0x%xrldentry0x%xrldentry0x%xrldentry0x%xrldentry0x%xgetlnnoptrgetlnnoptrprocp0x%xgetlnnoptr0x%xgetlnnoptr0x%xgetlnnoptr0x%xreadstrtblreadstrtblfd0x%xreadstrtblreadstrtblCannot allocate space for internal symbol table; Goodbye readstrtblreadstrtblreadstrtblCannot allocate space for string table; Goodbye Cannot read string table; Goodbye readstrtblreadstrtbl@@@@ @@@@@ @$@(@,@0@4@8@<@@@E@I@N@R@W@[@`@d@i@m@r@v@{@@@@@@@@@@@@@ɔ@є@Ք@ٔ@ݔ@@@@@@@ @ @@@@@!@%@)@-@1@6@;@@@E@J@K@P@U@Z@_@d@i@n@s@x@}@@@@@@@@@@@@@@Õ@ȕ@͕@ϕ@ѕ@ӕ@Օ@ە@@@@@@@@@@ @@@@@"@'@,@1@6@;@@@E@J@O@T@Z@`@f@l@r@x@~@@@@@sldt str lldt ltr verr verw sgdt sidt lgdt lidt smsw lmsw bt.bts.btr.btc.%04x0x%x%02x%smonexmonexloc0x%xd"%s"cnt0x%x at monex0x%xsingstepsingstepcount0x%xcm0x%x[%.14s] [%s()] %s: singstepsingstep0x%xsingstepsingsubsingsubcm0x%xsingsub0x%xsingsub0x%xsingsub0x%xsingsub0x%xBreakpoint at singsub0x%xsingsub0x%xdoscalldoscallCannot find %s doscallProgram not loaded with -lgdoscallUnterminated string constantdoscallToo many string constantsdoscalldoscalldxdddddUnexpected character %c doscallInternal error - cannot find __dbsubcdoscallBreakpoint at doscallToo many argumentsdoscallgetargsgetargsmain%s %s getargsdopcsdopcsc0x%xdopcs0x%xcCiIsSdProcedure returned normally dopcs0x%xacommandacommandcmds"%s"; acommand0x%xBad command: %cacommand0x%xacommand0x%xsdbttysdbttysdbttyusrttyusrttyusrttyUnknown error: p@x@@@@Ĝ@Μ@@@ @@/@A@R@d@p@@@@@@ϝ@ޝ@@@@(@7@F@^@k@@@@@Ğ@ߞ@@@'@6@D@]@z@@@ȟ@@@@@@,@@@U@f@s@@@@@Ġ@֠@@@@0@A@W@g@u@@@@@š@Ρ@ס@@@@@4@K@r@@@@@%@.@7@@@I@R@[@d@m@v@@@@@@@@ģ@Σ@أ@@@@@ @@@(@2@<@F@P@Z@d@n@x@@@@@@@@Ȥ@Ҥ@ܤ@@@ @@'@6@G@_@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error??GA>???/bin/shsh-c 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFz:::::::b:n:Ֆ::::::::::::::::::::::::::::::::::::::::::}:::џ:2::-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ A A@ AxA3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@ AxA3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1busr/bin/uux104111 5 5 173000 4300345116 7444 37777777777 L#  l3 B@.text .data@@l3@.bssH5@H5@ B.commentHÐETH5@RU RP PjÐUEEEEEEEEEEEfEEEEDž,Dž(PsTT@RjXT@=TT@ujmYEh@hl@hd@Qh@hdT@?sT@Xhj%hjhjhjhjhj ھhj ˾hj 輾jj谾h`@2YPT@LT@L5@EE=ptK=ct2_=at?=CE<@(EE=bE=jt(=g<@h@fE=nuoE=xt.R=stU=ruNEd<@,L9@Q5<@hY@=@7@+=zuEhdT@hS @hX1@u j艽Yh@u uth E=9@|h@h@hX1@t E94@|hdT@hS @hX1@t jYƅw`9@|E 4@4h@hX1@\t h@wP謕E 4@4wP葕4@E94@|9@|wPh@hX1@s h`@%Y,tG,=/t,h`@h@hL5@,h@hL5@ h@eYth@h@hX1@us j Ywpƅ0=p=>tp=<WpPjpm, ppPjpP, pu0uh`@0Pįj0PhtT@ T@9@|0Ph,@hX1@r 0Pj/Yt?0Ph5@hX1@or }t utY}t ueYj Yht\@5TT@Eht\@h`@ 9@|ht\@hJ@hX1@r (u Dž(t\@ƅwEPh@P0PjCM@ 9@|EPhS@hX1@q jEP,u*h*h_@5(5@EP5d@B3jYhe@hEPmEPoE}|}u*h,hg@5(5@EP5$@2jyYju2jj.EPҐ\i@t*\i@@%PP0PpP+ EPh@ք "@EPjX0PjD? 9@|EPhm@hX1@mp jEPu*h<hz@5(5@EP5d@ 2jYh@hEPkEPOnE}|}u*h>h@5(5@EP5(@1j@YjuE` h`@ht\@jUh@uo}t$j#h@uo jnh@u|o }tj#h@udo jNh@j#h@uIo jZh@u7o }t$j#h@uo jBh@u o =L9@thL5@jMh!@un(t*j#h(@un (jRhV@un}EEPjBh`@jD=jEP!u*hlh]@5(5@EP5d@70jYhc@hEP jEP}lE}| }hnhe@5(5@EP5$@/jjYdh81@hjwPCdEuujwPe;Et*hvhk@5(5@EP5(@r/jYD1@tE@ t*hxhq@5(5@EP5(@,/jYu_Y`@t$0tj0Ph`@趌 tphL5@ht\@EP=L9@t@@Pht\@EPEPhw@ul$}+hh@5(5@h@5(@.jYEPjFh@ulEPjIh@ul0PEPEP]+ wpy9@|pPh@hX1@4l p=>tp=<upE)p=|t*p=^tp=&tp=;u=wt*pPwPh@wPEPPPPpP% Eȸ9@|PPh@hX1@Ok 9@|PPh@hX1@)k 9@|uh@hX1@k }t:EÄu3PPwPHh@wP4E PuP=~tPPF7YtjeYPPPPjOh@ui hh@5(5@EP5(@+jY PP6YtjYE=<PPjIh@uci}uiEÄubPPpP }tPPi6YtjYPPwPlh@wPX 0tW`@tNjh`@0PZ u40t*Pt jPP0P* P`@jh`@PP PP5Ytj Y9@|PPh(@hX1@h PPPt!PPh1@hX1@g jE Y u\;TT@u u?tZ;u u!PPhK@hX1@yg j YEPjA0PjD5}u 8EPPP-t!PPha@hX1@g jt YhEPMYhL5@ht\@EP=L9@tj@hPPwP)h @wP} hh"@5(5@EP5(@U(j Y @Pht\@EPPPhp@uRf$}+h)h@5(5@h@5(@'j Y0PEPEP$ thL5@ht\@h@=L9@t@@Pht\@EPPPh@ue$}+h,h@5(5@h@5(@n'j YE=<u1EPjIh@uueEPjFh@u_euj/PP)\i@t\i@@PPwP膆h@wPrj/PP݄\i@t\i@@PPEPjFh@ud`@00Ph`@kxPP1Ytj YPPEP"t~EPjRPPjC2jEP҂u*hah@5(5@EP5d@%jz YPPEP!hEP_P'Yh@EP(E}u*hfh@5(5@EP5$@y%j YjutEPjRPPjD2ht\@L5@tL5@ @Pht\@EPPPh@uBc}+hkh  @5(5@h @5(@$j}YE@ t*hlh @5(5@EP5(@$jEYuYEP=~tPP/YtjYE=<u>EPPP5@jFh @uzbEPjIh% @udbzj/PP.\i@t\i@@PPEPPP5@jFh, @ubj/PP\i@t\i@@PPwP?h< @wP+Pt(0t0PPPhu4PPEPt~EPjRPPjC/jEPu*hh> @5(5@EP5d@"jYPPEPhEP\P=YhD @EP>E}u*hhF @5(5@EP5$@"j!YjuqEPjRPPjD/ht\@L5@tL5@e @Pht\@EPPPhL @uX`}+hhl @5(5@hk @5(@"jYE@ t*hhr @5(5@EP5(@!j[YuYwPh@Ph`@jXN.jwPM~u-hhx @5(5@wP5d@`!jYhwP4[P询Yh~ @wP譜E}u-hh @5(5@wP5$@ jYjuFpj/PP~\i@t\i@@PPEPPP5@jFh @u^EP0Pj/PP~\i@t\i@@PPjCh @u^E@ t-hh @5(5@wP5(@! jYuTYh`@wPwP E=<u1EPjFh @u^EPjIh @u]j/PP}\i@t\i@@PPEPjFh @u]j/PPy}\i@t\i@@PPwP~h @wP~wP=~tPP*YtjYE=<uPPjIh @u]*PPwP]~h @wPI~EpPjp pbwPjCh @u\E@ t*hh @5(5@EP5(@CjYuvYh @wP9h@h @EPo 0tR`@tIh`@0Pou10PEPEP }h`@8Y0PEPEP hL5@ht\@EP=L9@t @ @Pht\@EPEPh @u[$}+hh @5(5@h @5(@-jYufRYt3EE@ t*hh @5(5@EP5(@jnYuY}t,0PEPEP }t0P6Y EP|Yf}th@h @YjYUW}j1YtHWh @hX1@lZ 9@|Wh2 @hX1@LZ }PWĢY}U W}jWWh@ @EP^m hK @EP7P\Y}UhdT@hS @hX1@Y jUYÐUEh @h @Pl 5TT@}kYh @PUE5XT@ZkY}uuhu,T uuVYuMYHE= uu)YHEubVY3UW5TT@jYu uz5XT@jYNj}UP9@|uh @hX1@X 9@|u h @hX1@sX u YE}uDj u u[ E}t@9@|h @h @hX1@$X jh @u E9@|(P?@t @$ @Ph @hX1@W 9@|(T?@t9 @> @Ph* @hX1@W 9@|(X?@tU @Z @PhD @hX1@iW 9@|h\?@h` @hX1@EW EUWV9@|uho @hX1@W jh @u ujh @h @ T?@9@|(P?@t @ @Ph @hX1@V 9@|(T?@t @ @Ph @hX1@uV 9@|(X?@t @ @Ph @hX1@@V 9@|h\?@h @hX1@V 3'9@|4:@h @hX1@U G<:@uϋƋu}UP} u;ÍEPu E }t}tuupiu3ʋE 8uU=\9@t, @t#h @5\9@6iu P?@ P?@=`9@t, @t#h @5`9@hu T?@ T?@=X9@t, @t#h @5X9@hu X?@ X?@=t9@tj5t9@h\?@h j?@\?@=9@=\ @t 5\ @Y59@茑Y@P(Y\ @=\ @u(hh @j59@54@ jY59@5\ @\ @9@9@ @ @ @UPWVEEu3nUW}G?t= t= tE 8G?t ==u?tGE xG?t= t= t = u܀?tGNj}UWV}P觋YHЋN;r= t= t= t=#t== t/t+PW P/YG=\u#O5` @hPH K+EUWVlC@} F׊ G=:t ?t{C@rF=:uGE lC@Nju}UP?@U=\?@th\?@uBu YUX?@UT?@U9@|uhX@hX1@M u uJUWVS}u 3+4YPW4rl u]u}C<u3UWV}E3<:@t-e@t$hi@4:@O`u E=/t"j/4:@4l\i@t\i@@:@E9@|uhm@hX1@L }t3t/Wu_u4:@u ӈu}F<:@)9EuWu 衈hw@u 芈3UWuY=} u,h9@uoth,:@u[9E u(h9@u9th:@u%tkhtX@1YPuhtX@j uRhtX@YUЋG=/u5=Dt =Xu!G=.uj/WS^u3}øU WVu 诇YU J=/u6F/j/uPj\i@t\i@@EPFP7'hdi@u kuhi@%=@thdi@u bkuhi@DEPu =ku4<9@+Ph|@hX1@I u P菆j/Pvi;uGhdi@Pjuhi@%=@tF}aPY=u(9@||Ph@hX1@I atX@t"tPhtX@\t&hdi@Pjuhi@t3ø됐UPWVS}u ]E^G= t= t= ut8EGGt= t= t = uE9]|E]u}UPWVSE8=\GG=7t?K=3t6=1t- =0t$u=2tl=5t =4t Z=6uSE=st/=nt=bu,F: F4 F.=ru F!=tu F\FFFG?,EE8 ]u}=0|%=7e-0EC+=|у}u \FNFFUC느UWVS}u ]t# F׊ GP!Y=tGP Y=tu 3]u}PY=uCG PY=u_=(uE)EEPWKE+@PWSZ E+@}U;uGmC׊ GPQY= tHUWVS}E =(u7j)WG+PWuY E+3]u}Ëj!SXuSu#3;t+F=\u FSuVupf3t`@th`@SXt#Su FVu赁^FaUPW}fEGU,U ;ufEfHfEfuU;ufEG?uϋNj}UE=(t{C= t= tux3= um=&tX ="tAT='t8K=\t==<t4 =;t+0=>t"'=`t =^t=|u늸 냐UPW}E@Eh@h@EtHujEP`> u菂YEEt3j EPVEtEEEEPdYE͉EjuWWW G}ÐU,W}t Eu Ã}`@h`@uV3=#ty= tk= t]= tOh@PRWt5}t,t"Pu#Vu .3>h,PM/]\.U9|C@|'jh@5|C@h@h@jJYj/ua\i@t\i@@EPk|C@C@P~u k|C@C@Pw~|C@UW38jkC@Pu ` ukC@Pu7~3}G;=|C@|UhC@hC@hC@ =|C@U 9@|u h@hX1@@ u|Yj/u`\i@t\i@@Ej/u `\i@t\i@@E PhtX@h@PS9@|Ph@hX1@O@ jP^u&j]h@jP5d@j~YPut*j^h@5(5@P5H@j>YEtukEC@tgkEC@PhSuJ |C@k|C@C@PkEC@PU|k|C@C@PkEC@P4|E|C@9EqUW3kC@PQaYG;=|C@||C@}UPuuh@@h:@htX@6RjhtX@Y9@|htX@h$@hX1@> htX@0YE}t(jh/@5(5@htX@5L@NjYhtX@h`@L{Uuh@@h:@htX@QjhtX@\ÐUuujuu u#Uuujuu uUW=@tX1@&hn@hP@{hhp@ 0t<uuuu uPhdT@9Eu@ ø@Ph@W[=,Wh|YhdT@u u9Eu@@Ph@PnP9Eu5@Pj htT@|UPWEPTYEPTY7www G@Ph@hG@PG@}ÐUWVSjuYu P]yhdi@u ]ujhi@%=@uWh@P]j/u \\i@t\i@@EPPm]Pu x9@|Ph@hX1@; hhP4 u W~YhP-hPW@5(5@u5P@j{YUWVS}u VSjPtWhjP10G u F t3Uu Pevhdi@u ZuXhi@%=@uEhE@PZj/uY\i@t\i@@EPPuZhP4P8|YhP6+5TT@JYPuE5XT@JYEÐUWVS}WPxu=/=~uEDPh`@hH@WK`@uiËCFt =/uEtWEPEP t5 @WtVWAYWEYthN@Wty3rUWV}WP}tPtYD=/thg@PXj/VJu39@|Phi@hX1@7 jP=u몋/FU4WV}u hdi@W Xuhi@%=@WP{sPsYJU EME=/u 9Ewj/P&VEtE Džu@PXW9@|hw@hX1@5 9@5(5@h@hX1@5 9@|h@hX1@5 9@5(5@h@hX1@c5 %=th'uLE=t9ujjVYjSxYjKxYjWh@h@dLjLY9Eu+hh@5(5@h@5`@j!YEPqYE;Eu}t/hh@uW50@q%=tj%P&tKhh@5(5@5D@9@|\h@hX1@3 B=TT@5TT@EYt/9@|5TT@h@hX1@3 )5%PW%t)hh)@5(5@W5D@\(&PjW% tz9@|Wh3@hX1@/3 9@|5(5@hE@hX1@ 3 hhO@5(5@W5@@5XT@DYW5XT@DY3DUuYu3uhY@hX1@2 UWVS}ߋ=/Fӊ CCjhq@SQ ttt@thv@SFtjhx@SQ ttC|@t:h@SEu(F;u =/tS;w']u}Êu#;u.F3N;v#F=/uF҈t C=/u=/%UP 9@|EPh@hX1@W1 9@|u h@hX1@51 9@|EPh@hX1@1 E u)E `@ 9@|u h@hX1@0 u YEE=Ct E=Xu1kE(G@%PEPu jEPh@uCAkE,G@B,G@%PkE(G@%Pu EPh@uC9@|uh@hX1@)0 UWV9@r&jZh@hh@h@jSYEPGYu`/Yuh@h@P Cj/PO\i@t\i@@@j PtjlAYF|݃|&jgh@jP58@jYuh@h@PmBh8@P]lEPh:@W0 =t w.Eg Wh>@P2l u*jqh@@5(5@P5$@mjYhP `hI@Pku*jvhK@5(5@P50@jYhP{ -EEeuhT@W. G t*j~hZ@5(5@P5(@j9YWlYG t-hhc@5(5@P5\@hjYPY9@|uhl@hX1@a- 9@|uht@hX1@?- uk@G@Pjk@U(G@,%k@,G@@@UPE$jukEG@PUL uEE@9E|u|YU@ÐUPWR$Etu_"YtE9Gt'u$Yuj$Yu }7u i3UWu "YuE}wuhE W3ᐐUW}|@u7GtPj h@h|@?-tPh@h@hI@>WhI@h|@ =uhhI@MYWbYt;/hI@MY9@|h@h@hX1@G+ }WhI@h|@" uWY3UWV}EjWzrE9@|Wh@hX1@* 9Eu?9(5@t9@+5(5@h@hX1@* j EPuUg umY t-9@h,@h @hX1@I* EPYEjurt 9(5@u19@|h[@h-@hX1@) u}ø9@|uh\@hX1@) 9@|Vhl@hX1@) 9@|Whx@hX1@) WKYt-9@uh@h@hX1@Q) Y3WUPW3 fYjhd@ijjhn@Zjjhx@KjjjjjjjjjjZP4Y5h@jEPh@h@jd":YÐUWV}u tT@t>=h@u jh@=@tWjj/h(J@B\i@t\i@@ u}ø(J@PhtT@A t5@aY@=@ubhtT@hd@h@h(J@5h@h(J@_@hh(J@=@pj5@2jj5@! h@htT@ht\@h@5@I!5Ti@5h@EPh@5@$!WVh@5@!UW}Wh i@5Ti@YiPsT@PP=Xi@u@@Pht\@htT@h@P3,P]YE=@}](5@jh@g@9(5@u)hh@@hh3@=@|*jj5@c uP5@g U=@|5@+cY@=@t5@^Y@U=(N@uEP#>Y(N@E,EP >YE+(N@i2EE(N@EÐUWV} EujjV=t 3u}fftF=.tjFPW83 GU@W} Wuu3}WuhT@EP29@|EPhZ@hX1@ hdi@EP?uhi@%=@u딐UWV} DžƅP%6YEuh@h@P|1h@Pl[tjVjdP t@j|PPD =u!YEPY}EV\Y=wC|?$d@9E~wtxEEYEpCEIE}u/,9|,EpC9E~EpC,9E}E,h@PSZu*jbh@5(5@P5$@j9YhPuuuuWh'@V V[YUxWVuhB@h<@P/hZ@PYWjdP u$W@[YPQ>Y3W[YP3YEPPEPEPh\@Pu-|_=wX|T$@+;E}(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V \4@+V;}V{GY}u +gEEvÐLÐUWV@@!@9(5@s (5@BJÐUWV} {@t?F EF F F3҉V\4@=at=rt=wt3u}ÀN jjuD N G=+uf N *IL$Q3ÐUPWE ET1@uT1@t* T1@hH1@uu# T1@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UE*@Ui*@mNA90*@%ÐUW}W?YjjG PC GGg G tg }ÐUPWEEE@ uE@ t(EH uuu " E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PB +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G PB ECG t8Wb>YG t g GGuu G PEB E9Eus3lUPE EPuh81@d UPEEPu uI UW}EEEljEEW>;YEE2uu EP }ÐUWVS}u DžS@S@ S@W=~*uDžF DžDžk -0Fi.@u؃u DžÉ=lt h9uF؅[uPVi.@tDžlj/@؃nt_=S@uVctQ[tLS@} W@ Y GGi.@u S@WN=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfS@fl9uEEPS@{EEPS@dEPWSt'=S@tu /$Fu i.@td=S@uS@} W Y GGi.@u S@W=uS@y%uF؃%S@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$*@EE EES@}WyY3]u}ËGG=+t=-t =0t8EMS@} W(Y GG؃0i9E }9EoS@} WY GGEYuj0Yt,j/WuFjhD,@(E}]̋uЋ}3ME=t!E=tE=t E=u j EPVA u u#YCj$EPu^ =$tu#YyWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_ÐW|$3OъD$ u@_3_UPWVuH#Yt8EPu|%E%= ujhP,@4'} 3u}þfEft EU;uuhP,@hS@WEPhS@EPhS@|=EU;u1E%= u!t EU;uWX"YS@\jEPW =TjjW" NuW"Y3 :'3Ð"'3ÐV|$3O|$ ыt$ D$^ø<&Ðjjt$ 9rã(5@ÐUW} 9EtFG tG9GwG9Gu+?u&GuW= YGHGUE}ø :&3Ð"&ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  \4@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlD.@Dž\9PtP؉PNKPPoYh~PW =uh~Phh.@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}S@ES@E0@s3UtE]S@E0@E0@E0@r5E0@r0@E0@AE1@s6EE]@)EE 1@r݋EE 9P܃}t؁S@JT@vJT@E(1@t T@r05}fEf fEmE]mE܉E@0Ee 01@];r&=5|+S@uS@1}tCF0N<9S@]Ћuԋ}ËEE0]@EEsEE 9P EEEE1@MU]vEu}fEf fEm]mE܉EFUR0EMm]E1@E51@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G \4@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W \4@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}H5@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð: L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W\4@UW81@;=X4@r3}ÃG uUW81@ WY;=X4@r}UWV}tlG t6G t3WVYG PY}(5@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG \4@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G \4@+G?}3W \4@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G \4@+G?}3W \4@+W;}WY3UWV}G G u}}&um@q@GW \4@*h!YGt@O G W\4@GGVYtG uO @u}G u@WR\4@UWV}G \4@+G}G \4@Wu};7}7𐐐*3ÐU(5@EEPhTu } E(5@3ø6ÐÐU WVSE9ET=<5@u<@5@ <5@<5@ @5@05@@5@,5@<5@05@85@E@3؋=,5@E&;505@<5@E@E=w=85@j Y05@@;t?3Ee ƹ3tL3+‰EEE205@+85@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή585@05@0E+E-05@@;t05@05@05@<5@~Љ,5@;5,5@v,5@45@,5@ 9=85@u ,5@85@G(=,5@9585@u=85@7tލ;r;l%;UWV}5,5@%05@9u585@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ45@Nj]u}WV|$ t$L$Njʁ^_øÐT$D5@Ru D5@+D$øT$D5@3øÐ0NL$0:L$0+L$0L$0 L$05Ã%3ÐÐ(5@ÐcT$@@(#)uux RTS 5.3c of Aug 11, 1988@@@@@@@$@/@:@F@R@]@i@v@@@@@@@@@@ @@,@8@V@d@q@@@@@@@@"@A@P@/usr/spool/uucp/usr/spool/uucppublicCAN'T OPENCAN'T WRITECAN'T READCAN'T CREATECAN'T ALLOCATECAN'T LOCKCAN'T STATCAN'T CHOWNCAN'T CHMODCAN'T LINKCAN'T CHDIRCAN'T UNLINKWRONG ROLECAN'T MOVE TO CORRUPTDIRCAN'T CLOSECAN'T FORKFILE EXISTSSUCCESSFULNO DEVICES AVAILABLEWRONG TIME TO CALLTALKINGCONVERSATION FAILEDBAD SEQUENCE CHECKLOGIN FAILEDDIAL FAILEDBAD LOGIN/MACHINE COMBINATIONDEVICE LOCKEDASSERT ERRORSYSTEM NOT IN Systems FILECAN'T ACCESS DEVICEDEVICE FAILEDWRONG MACHINE NAMECALLBACK REQUIREDREMOTE HAS A LCK FILE FOR MEREMOTE DOES NOT KNOW MEREMOTE REJECT AFTER LOGINREMOTE REJECT, UNKNOWN MESSAGESTARTUP FAILEDCALLER SCRIPT FAILEDN/usr/spool/uucp/.Log/uuxuux---pa:bcCjg:nprs:x:z ** %s ** STARTarg - %s: arg - %s %s/%s%s/usr/spool/uucp/.WorkspaceNo spool directory - %s - get help /usr/spool/uucp/.Workspacexsys %s bad system name: %s User %s cfile = %s uux.cwuux.crxfile = %s uux.cwuux.c%c %s %s %c return status on success %c %c don't return status on failure %c %c return status on failure %c %c return input on abnormal exit %c %c %s %c return address for status or input return %c %s uux.cwuux.cuux.cuux.cS %s %s %s -%s %s 0666 %s %s ouux.c%c %s %c %s prm - %s syspart -> %s, rest -> %s, ret -> %d syspart -> %s bad system name: %s %c %s %s uux.c %c %s uux.crest %s can't get file status %s permission denied %s can't copy %s S %s %s %s -%s %s 0666 %s %s ouux.cS %s %s %s -%s %s 0666 %s %s oD.0uux.c%c %s %c %s %c %s %s uux.cauux.cR %s %s %s - %s 0666 %s dummyuux.cuux.c%c %s/%s/%s %c %s %c %s/%s/%s %s uux.cauux.cR %s %s %s - %s 0666 %s dummyuux.cuux.cuux.cwuux.c%c %s/%s/%s %s %c uucp -C %s %s!%s uux.c%c %s %c %s %c %s %s %c %s %c %s uux.cQUEUEDX.%sS %s %s %s -%s %s 0666 %s %s ouux.cuux.c%s uux failed ( %d ) exit code %d XSIGNAL %dXCAUGHTUsage: %s [-aNAME] [-b] [-c] [-C] [-j] [-gGRADE] [-n] [-p] \ [-r] [-sFILE] [-xNUM] [-z] command-string %s pwd 2>&-PATH=/bin:/usr/bin:/usr/local/bin rd @l @t @} @ @ @ @ @ @ @ @ @ @ LOGNAMEMACHINECALLBACKREQUESTSENDFILESREADWRITENOREADNOWRITEMYNAMECOMMANDSVALIDATEPUBDIRlogFind called (name: %s, rmtname: %s) machine/login match failed_Request (%s), TRUEFALSE_Switch (%s), TRUEFALSE_CallBack (%s), TRUEFALSE_MyName (%s), mchFind called (%s) OTHER_Request (%s), TRUEFALSE_Switch (%s), TRUEFALSE_CallBack (%s), TRUEFALSE_MyName (%s), _Commands %s yesyesyesyesyesyespermission.c/usr/spool/uucppubliclist (%s) num = %d /usr/spool/uucppublicrmail/usr/lib/uucp/Permissionsrcan't open %s /usr/lib/uucp/Permissionsname (%s) not found; return FAIL //usr/lib/uucp/Permissionsrcan't open %s /usr/lib/uucp/PermissionsvalidateFind (%s) FAIL PERMISSIONS file: BAD OPTION--permission.ccmdOK(%s, ) ALLALLbname=%s NuLLNot a directory (%s) and nomake = TRUE. mkdirs(%s) failed altos/etc/systemidr TOO MANY SAVED C FILESgtcfile.ccommit %s %s/%sto %s gtcfile.cgtcfile.cchdir(%s) chremdir.c%s/%s/usr/spool/uucp/usr/spool/uucp/.Admin/errorsa/usr/spool/uucp/.Admin/errors%sERROR (%.9s) pid: %d (%s) %s %s (%d) [FILE: %s, LINE: %d] ASSERT %sERROR %.100s %.100s (%.9s)ASSERT %d/%d-%d:%2.2d:%2.2d/full %s %s/%s/usr/spool/uucp/.Corruptcpmv.c/%s/%s/usr/spool/uucp/.Corrupt/mkdir - %s .CAN'T STAT PARENT DIRECTORY %s errno %d CAN'T CHMOD PARENT DIRECTORY %s errno %d /bin/mkdirmkdirmkdirexpfile.cexpfile.cexpfile.cCAN'T CHMOD PARENT %s CAN'T SETUID %d expfile.cCHOWN FAILED %s errno %d expfile.cIllegal filename (%s). ./..../....gename(%c, %s, %c) null sys -> %s %c.%.*s%c%.4x%c.%.5s%.4x%.3xfile - %s SYSLST OVERFLOWgename.c%s%s/usr/spool/locks/LCK.SQ.gename.c%s/%s/usr/spool/uucp/.Sequencer%4xwgename.cwgename.c%.4x gename.cgename.c%s seq now %x %*d %s/LTMP.%d/usr/spool/locksulockf failed in onelock() ulockf file %s Lock File--can't read (errno %d) --remove it! Lock File--bad format--remove it! Lock File--process still active--not removed kill pid (%d), returned %d--ok to remove lock file (%s) ulockf failed in unlink() TOO MANY LOCKSulockf.cCAN NOT ALLOCATE FORulockf.c%s.%s/usr/spool/locks/LCK.%s.%s/usr/spool/locks/LCK.%s %s %dULOCKC%s: link(%s, %s) ULK err %s %dULOCKLNK%s %dULOCKFfilelock: F_SETLK returns %d filelockF_SETLK failed - lock existsfilelockF_SETLK failed -- ENOLCKfilelockF_SETLK failed -- EFAULTfilelockF_SETLK failedfilelock: ok /dev/null/dev/null/dev/null-s%s/usr/lib/uucp/uucicoUUCICO-r1-s%s/dev/null/dev/null/dev/null/usr/lib/uucp/uuxqtUUXQT%s/%sa%s %s %s (%s,%d,%d) %s (%s) %s!%s %s (%s) (%c,%d,%d) [%s] %s SM/usr/spool/uucp/.Admin/xferstats/usr/spool/uucp/.Admin/xferstats/usr/spool/uucp/.Admin/xferstats%s/%sstat %s [[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]%s/%s/usr/spool/uucp/.Statusrwsystat.c%d %d %ld %ld %s %s %s/%s/usr/spool/uucp/.Statusr%d%d%ld%ldRETRY TIME NOT REACHEDNO CALLRETRY TIME (%ld) NOT REACHED  ^8^P^h^^^bad access type %dsysaccess/usr/lib/uucp/Sysfilesr service=/usr/lib/uucp/SystemsCAN'T ALLOCATEscansys: Systemssysfiles.c/usr/lib/uucp/DevicesCAN'T ALLOCATEscansys: Devicessysfiles.c/usr/lib/uucp/DialersCAN'T ALLOCATEscansys: Dialerssysfiles.c/usr/lib/uucp/Devconfigr service= device= systemsdevicesdialerspoppushunrecognized label %sSysfiles|Devconfig::%s//usr/lib/uucpCAN'T ALLOCATEsetfile: tptrsysfiles.c::CAN'T ALLOCATEsetioctl: tptrsysfiles.cuucicoruucicoruucicor: option requires an argument -- : illegal option -- --/etc/utmp/etc/passwdrrUnknown error: !@!@!@!@!@!@!@ "@"@0"@@"@S"@e"@v"@"@"@"@"@"@"@"@"@#@#@'#@;#@L#@[#@j#@#@#@#@#@#@#@#@$@$@2$@K$@Z$@h$@$@$@$@$@$@%@%@%@!%@9%@P%@d%@y%@%@%@%@%@%@%@%@%@&@ &@>&@T&@e&@{&@&@&@&@&@&@&@&@&@&@'@'@ '@;'@X'@o'@'@'@'@(@@(@I(@R(@[(@d(@m(@v(@(@(@(@(@(@(@(@(@(@(@(@(@(@(@)@)@)@$)@.)@8)@B)@L)@V)@`)@j)@t)@~)@)@)@)@)@)@)@)@)@)@)@)@)@*@ *@#*@-*@=*@K*@Z*@k*@*@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error/bin/shsh-c&###R&RRRRR/RRRRR&RR8??GA>???8,@<,@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF.:\Y"F9Gaʢ91G-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@u@u@X4@u@Tw@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0usr/bin/pg100755 0 2 124274 4266522662 7262 37777777777 L" <@". @.text< .data @ @@" @.bssL(@L(@..commentpLÐETL(@RU RP PjÐUPWVSEfEf0@E ,@,@,@-u!,@B,@B7=+,@8G=/uh@d@G,@9d@h@k,@ -0,@Gm!@u؊th@h\$@WjYf0@fHf0@fh6j:h6j+j~Y,@=,@t#0h6jh6j=H@u8@@HH@5p@xYf0@9H@ H@=,@ ,@0@=~Ef0@f',@, @f0@h. @,@,@4Zu,@,@/ @,@,@4Y,@u ,@=,@t,@,@4Y,@^}t?hL$@h1 @ShL$@,@,@4RhL$@hA @RhL$@5,@,@hL$@7yY=,@t+,@9,@t 5,@xY0@9,@2]u}m!@t[H@kH@ -0H@Gm!@u؊h@h\$@9Uj[Yh=cuf`@=eufL@=fufX@=nuf\@=sufP@=pumGtWYp@0@=~(,@,@0Yp@f 0@hG@h\$@JTjlYyh@h\$@+TjMYGO0@s F׊ Gh@h\$@SjYt =/u UWVS}33_FGb(@…t<=%uE=duuC=%t Fƀb(@%FGb(@ub(@]u}Á|hR @h\$@ESjgYU EfEf|@t@x@4@t@ JHJHf=T@uuYE|fT@=d@t"d@,@4@H@H4@H=h@t+h@jh,@"u"ueYE4@H@4@}tEf}t4@94@fEH@94@}4@4@@Pj\$=t f4@ f4@4@H4@+H@@4@94@} 4@f=`@tJ8@x<t p<0Y L$@}hL$@j HuP$@P$@ 4@Ex@94@u 4@@E#x@94@14@9t@}$x@@Et@9E}jhg @+n4@Eۡx@@9E~Yjh} @+Huj6#hL$@h0@Mf=,@tjj#4@f4@ E4@9E~f,@hL$@sYf=4@tLf=L@t 94@u fEh @+ju+jb*Yf,@Yt@4@ JHJHj YEUWS8@4@] 8@8@= t8@= tܡ8@8@=h=?e=!+= .uGf,@fu f,@GH@J‹,@=tnt(=x@ǣ4@H@H4@G4@H@4@94@4@94@H4@~t@+ǣ4@+H@@4@a8@xu$hL$@h4@vKhL$@h @dKRE},h @)ju#)jw(Yf,@Y}uTh<$@qYY$@PKJYj58@h @50@50@Rh @h\$@MjzYjjyjjvyjnY;Eu 9,(@;,(@hL$@h @JhL$@pYh6j"yh6jy= =.=$;=/t3=d=^t=QAf,@f}(8@x,pp,O+YhL$@0pYWuG 8@58@mYH8@ЉU8@@9Ev08@UR;uEtt mtbu l@ME98@s8@U;uE8@=/t؋W8@@8@P=f=q6-=n=l=p.=wt=sw=zl,@=8@x,tp,)YhL$@nYjhTjr h0@NYtw(f,@f,@f=,@t f,@Ej&Y8@x@u L$@}hL$@j nP$@P$@ u%YhL$@8nYR8@8@= t8@= tܡ8@8u_{ 8@8@= t8@= tܡ8@8u't@4@x@4@f,@3]}á8@x,p,(YhL$@vmY8@8@= t8@= tܡ8@8uu=H@ ~=H@x@4@H@H4@f,@3e8@8@= t8@= tܡ8@8;f,@fu f,@,@H@x@Љ4@4@+H@@4@f,@38@8@= t8@= tܡ8@8h0@KYt(8@x,p,6'YhL$@lYh @58@iEu,h @$juP#j"Yf,@Yj,$Y8@x@u L$@}hL$@j lP$@P$@ jh @"j58@"hL$@fkYuYh @{#ju"j "Yf,@YujYT8@8@= t8@= tܡ8@8]f,@$8@8@= t8@= tܡ8@8f,@fuf,@uGH@HЋ,@=u x@t@+ǣ4@H@H4@f,@38@8@= t8@= tܡ8@8uGf,@fu f,@,@=t;t!=uHx@ǣ4@+H@@4@.=4@H@H4@t@+ǣ4@H@H4@f,@38@8@= t8@= tܡ8@8f,@fu f,@uG,@PYE8@x,Kp,*$YhL$@ iY28@8@= t8@= tܡ8@8;f,@fu f,@uG,@PYEu(8@x,p,#YhL$@~hYf,@E8@8@= t8@= tܡ8@8f,@h'j=u4@H4@4@+H@4@f,@3KUWV3f,@58@F= t= t=+u Ff,@&=-uFf,@k F-0m!@u߉58@Nju}UPWVS3E1/jj EPz 4@ = u!;ujuf4@v=f ,@hL$@h @v@O= }f ,@hL$@h @R@WPEP hL$@fYzm!;uLuH8@xt( L$@}hL$@Pf P$@P$@!]u}Åt3hL$@h @?Of ,@N8@s,@@8@R;|(8@x,p,!YhL$@eY\uFWPEP u%8@x,p, YhL$@eYxG= s1@ L$@}hL$@j^eP$@^P$@f,@ L$@}hL$@Pe P$@P$@f,@hL$@*eY 9EjyY8@x@u L$@}hL$@j QeP$@P$@ hL$@dY 3oUWVS}u ]?u>b)@f)@j)@n)@]u}Ã\u=n)@u n)@;=n)@H=$@;j)@v> 3j)@=f)@t;f)@vZf)@=b)@t;b)@v/b)@n)@H=$@ f=\@u t~+t-ub)@m!@tf)@m!@u,Vh @Bt$j)@f=\@HVh @Btj)@ 3UPjEPY$@P_ EUf=`@t=8@x<t p @:hL$@hO @:hL$@h @:hL$@h @w:hL$@h @e:hL$@h @S:hL$@h @A:hL$@h @/:hL$@h@ @:UW},@}6,@؋uwhy @jujYf,@YN,@0@J;~;0@H+,@u'h @?juyjYf,@YNj}U$WV},@h @W?u$=,@u<$@(5,@;Y5,@h @WS]tEPF PA=uhL$@q_YW:Y3uԋ}E@tWh @h\$@; 3Et<$@Vc;Y<$@th @h\$@;3h8@?Yhh8@Q:E}h @h\$@t;3Xu^bYh@h8@^\,@uh@h\$@7;3h'@h8@*\,@uh)@h\$@;3,@jYUWVS}u }VPw^ FFӈ} W-<Y GG؃uċ]u}U4WVS} uEEEEEF;]t u2 u N)@u=9@uj)? Y]uċ}ÍEE9@3E9@^u9@N;}rj2 YF؃*t\u ={t};]uGE9Etj* Y눋= =$*=*=.=[*=\F= M=(*=)\=n4={0}PEEUEEЅtj, YF=\3GG=9@u(NG)@E9Ej*Yj$Y}E=E=Ey;Et= GXG;Erj2TY GEEn 99@|j+(YEE9@GG9@9@E9Ewj*YGGUJU ENFE0|9kE -0EjYF؃\t,uθ9E~j YGUԈ,IF=}tj-`Y}u GUԈAG%W;&j.*Yj$Y *1|%9 1;]|jY$GGӈ}GGӈEEԸ9E|EF؃^u EFEt uj1YÀt>}t8EG ;Erj2cYGE EEԸ 9E|-}F؃]u @GÀt]}tWEG ;Erj2YGE EEԸ 9E|EЋE%@E9]|މ]؋Ћ%@F؃]}t EE }t 9Eu EG(E7E4EE9E|'UWVS}u =9@t=9@VWd]u}=u4F;uVW8t =9@ËG8u3VWuًG8uUWVS}u EF-|=)w|$@FG;͋G8뿊볉= 9@]u}GEU@# oEGEEu%EU@#t3U3X FEuWu5 tVWt 1E+;s3!NJGO)@ )@u;UW}G%)@=u N)@}%+)@UPEEU9X@tEEf,@h@cjujYf,@Y5,@LYh<$@ Y=uUWV}} W+Y GGt.,@}5,@PM,@P@ƈƋu}U=4@u#f,@,@PPY4@4@,@,@@9Eu-4@-,@f4@f4@4@á,@,@f4@f4@4@UPWV},@+4@@,@;4@Ef,@54@wRY,@P54@R4@u'E4@,@ph@h\$@( '4@+E,@ƣ,@,@ƣ,@,@ƣ,@,@=,@uW5,@KY5,@%Y,@,@JAHu}U졄,@ph@h\$@z' UhL$@h@h@{H uh@h\$@@'jbSYhP(@hTY$@PnN f@EPY$@Pj* EPhTY$@P6N feEEEPhTY$@PN J8@fPf~xt8@@f@8@fPff@Pf=`@t8@x<u f`@h@?FY0@u 0@@UjY8@x@u L$@}hL$@j IP$@P$@ juj Yf,@U}t%jh@juzjh @YH@H4@-@=?B~ Dž?B5p@PC( jPhL$@HYUf} tuFYf,@f=P@tF8@t8t/aYhL$@u!8@@YhL$@u!U8@x<t p<Y L$@}hL$@j LHáP$@P$@ Uj5Y8@x@u L$@}hL$@j HáP$@P$@ UW}f,@ft'8@xt4 L$@}hL$@j G}áP$@P$@ u' L$@}hL$@j GP$@ P$@8@x@t2p@Y L$@}hL$@j TGIP$@P$@ 9,@+Nj( L$@}hL$@j GP$@ P$@Of,@9Uh6uNf=,@u*8@x,tp,|YhL$@]FYf,@f,@jh0@%U=,@tejY8@x@u L$@}hL$@j dFP$@P$@ -f=@thP(@hTY$@PI =,@t 5,@+EY=,@t 5,@EY=,@u =,@t h8@+(YjONYU8@PhT8@lPJI 3ÐU8@yÐU8@zÐU L$@}hL$@EPcEáP$@P$@UUh7ju Uh7uÐU8@rt&8@nPhT8@lPH 3UWVS}G%%؁u tu]u}ËЋU<WVS}uhl@@YE}t Eu4@EDž}t Ehq@g@Y>V5AY@u#AYЁ~fL@VP@P@YЋ/FFU /FuV@jPK} 9,(@}Vhz@P>@Pc@YЋEVuV@jPJ}c 9,(@tjh@/$tfL@#fL@fL@}t Euh=@?hPb? EYfL@B9ufL@'8=@WTY9uW7YW'YWYWYWYDž=H@hlEY8@tyj[EY<@t\jJEY@@t?h6EYD@ H@9D@t 5D@GY5@@GY5<@GY58@GYfL@}u L@PzIY_H@8@0C@<@G@@@G@D@ H@x9s Dž=@uPDY}t Eju8@P` 8@ƀ<@@@D@8@ǂ3҉9E uu OCYuE 8@fU fl58@ǀǀ3ffffhjP3 Y8@8@3f@ы 8@Bƀ8@ǁj4jP 8@nPhT8@lPB 38@8@n JHJHJ H fJfHWVE <@@5<@G;sFӁu;s+PjV tG@@@@@:W6Y;s"} fffu;s#+ùEPjS^ Phju +A =t0t&t@@ffPffDžDžh@o9Yh@^9Yt&Y~@@ffPt%\Y~@@ffD@D@?WY;s'} Ëu;s#+ùPjS WyC 8@%=uK8@f8@t&8@PhT8@lPZ? 3 8@xtD@D@3҉8@@+8@P5<@58@B 8@@(8@R+P5@@8@@PB 8@l8@R(+P5D@8@@(PvB 8@LD@DžSP@ ɉ t8@@ p 9|8@4@@@=u8@xu fPf| @@f@DžT\@<t04u8@@ 9r8@ǀDž`@ ɉ tM~04t39u@48@u8@@!9G8@8@J\tJhxJx|3UEǀǀ3ffffhjP7 U8@t&8@PhT8@lP; 3U8@nPhT8@lP; 3ÐUh@h\$@Fh=@L@4@h\$@& h@h\$@ÐUWVS}3EE8@@,9)@t8@9)@uEm!@t!k G-0m!@uk =.u:Gm!@t -0Gm!@uEG=/u E=*tۃ}tu =>u#Gt8@xt"}uNj]u}ËCPUYuVUW}t>=)@1=$uG=<uuu W GPUY?u3}ÐUu 8@u 3U WVS}u ]8@4@@@E8@;u8@9uE8@׉UuEU‹8@#Et#EU‹U!EU EE|^E}~EE2EU‹U#@tE@ EMt E 9E|čEUM EMC}u;tz8@4twSj%P%P%@P% P%P%P%P%P%P8@4(P E]ԋu؋}á8@xu fPf|3#DžE#3ƅEEu8@U#9UtSj8@e 3LE.EU#@tSj8@U4- E9E|ȋ#%3#DžEtYEFEU#@t4Sj8@LU4 E@ЋU#Ѕ҉Ut E 9E|8@fPf~Sjp` 8@UPWVS}<@xu}8@%E}~ 9Er]u}ËEE@8@t 3ۋǙSU YO3먐UWVSDžl})@Dž`E \EX8@} +@%:uGDž ӈGht%=t = `t8@@TDžh|8@@lT`t6Tt-8@@H9h}8@xtthPtTTt&8@@P9EuTh+@hFhlpll TQ-YplAlb\XQG-1=wo$d@plBl\ plBlX plBlM plBlM plBlM jplBlM OplBlM$ 4plBlM( plBlM, 1u3` =a|1=z'pll EGa =A=ZpllfGafJ=a|2=z(EGa plBl K=A==Z/GaPplAlplBlG G='DžhDžd=-uDždG=+Gpllpll hplBlhˉ @pllpll hplBlh+ˉ pllpll hplBlhˉ pllpll hplAlIpllpll hplAlpllpll hplBlh#ˉ pllpll hplBlh ˉ Spllpll hplBlh3ˉ pllpll h9hpllpll h9h{pllpll h9h|Apllpll hhtA3plAlpllpll hh뜍pl<u3pl}plЍpl[pll<uCjeW4j;W%- \=^QI$@Gu'h+@V,&)@Ã%t Fӈpl hG|- |=w |$@Džt u΋=Xt =dt=ot=st =xӈsuhPV hPV F>ulkh -0hG؃0|9~܃}t3plBldh UWVS}35%u0GU ;t;uu Nj]u}À?uF;uNGu3ܐ)/ÐUPWVS}Em!@uJGm!@u=+t =-u EGm!@u 3]u}ø0+Ëk 0+Gm!@uރ}t뾋븐UWVS} 3G %=utG9Gu!?uG DuWR(Y 3G `'@UG u;uz#YEPuG P. E]u}Wi'Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W `'@+W;}W(Y}t*G @tW&Y=u ]VEgUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P( E}|EE}øJ-ÐUWV@T@9,(@s ,(@<@u!YtVujs, jh@jb, W!YPWjO, jh@j>, u}ÐWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W#YjjG P' GGg G tg }ÐUW}} WY}ËGGUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P& +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G PH& ECG t8W"YG t g GGuu G P% E9Eus3lUWV}uWq$YG uG tO G Dt1<$@"u}F @tVr!Y;5\'@rGGG tG `'@+GPwG Pi | GG듸9tO O G tg aW|$D$ L$~% ‹ʁD$_ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐD$Pt$Ð5L(@t$ t$  Ð;''t3ÐUWVS}3'ufYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!'ÐWVt$ |$;t1L$AIt)u*t!ItutItut Itu u3^_ß^_Ð&3ÐV|$3O|$ ыt$ D$^UW} 9EtFG tG9GwG9Gu+?u&GuW) YGHGUE}ø &3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  `'@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlH!@Dž\9PtP؉PNKPPoYh~PW =uh~Phl!@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}0,@E0,@E#@s3UtE]0,@E#@E#@E#@r5E#@r$@E#@AE$@s6EE]@)EE$$@r݋EE 9P܃}t؁0,@~,@v~,@E,$@tA,@r05}fEf fEmE]mE܉E@0Ee 4$@];r&=5|+0,@u0,@1}tCF0N<90,@]Ћuԋ}ËEE0]@EEsEE 9P EEEE$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E $@E5$@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G `'@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W `'@+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}L(@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð" L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W`'@UW<$@;=\'@r3}ÃG uUW<$@ WY;=\'@r}UWV}tlG t6G t3WVYG PY},(@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG `'@9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G `'@+G?}3W `'@+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G `'@+G?}3W `'@+W;}WY3UWV}G G u}}&uL@P@GW `'@*h!YGt@O G W`'@GGVYtG uO @u}G T@WR`'@UWV}G `'@+G}G `'@Wu};7}7𐐐3ÐU,(@EEPhTu } E,(@3ø6ÐÐU WVSE9ET=@(@u or \n next page l next line d or ^D display half a page more . or ^L redisplay current page f skip the next page forward n next file p previous file $ last page w or z set window size and display next page s savefile save current file in savefile /pattern/ search forward for pattern ?pattern? or ^pattern^ search backward for pattern !command execute command Most commands can be preceeded by a number, as in: +1\n (next page,stdout); -1\n (previous page); 1\n (page 1). See the manual page for more detail. ------------------------------------------------------- No previous fileNo next file-rpg: %s is a directory pg: special files only handled as standard input pg: Can't create temp file wpg: Can't get temp file for writing rpg: Can't get temp file for reading Pattern not foundRange endpoint too largeBad number`\digit' out of rangeIllegal or missing delimeterNo remembered search string\( \) imbalanceToo many \(More than two numbers given in \{ \}} expected after \First number exceeds second in \{ \}[] imbalanceRegular expression overflowBad regular expressionPiped input only partially savedpg: no more memory - line %d /dev/ttyr+pg: cannot reopen stdout SHELL/bin/sh(Next file: ) @d@0C@G@G@ H@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS@@@&@?@W@@@/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . 5MS7) KTTKTTTTTTTKTKKTKKKKKKKKKKLM?M]M{MMMMMmKzSeUmKeUYT*Q OeUeU6POeUOmKPmKmKmKmKmKmKmKmKmKmKmK#TR#RiR#TeUReUeUeUeUeUeUeUeUeUeUeUeUeU;SNeUeUeUeUeUeUeUmKeUeUeUeUeUQeUeUeUeUKmKSeUNeULeUeULPeUmKLeUeUmKSeUeUeUmKeUeUNO}QeUSUnknown error: X@`@j@@@@@@@@@@)@:@L@X@n@z@@@@@@@@@@@.@F@S@i@x@@@@@@@@@,@E@b@}@@@@@@@@@(@=@N@[@q@@@@@@@@@@)@?@O@]@y@@@@@@@@@@@@3@Z@@@@@ @@@(@1@:@C@L@U@^@g@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@`@j@t@~@@@@@@@@@@@@@@/@G@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFvb6l6lb6lk6l6l6l6lb^b6ljbb6lbbbbbbbbbb6l6l6l6l6l6l6l6l6l6l6ld6li6l6l6l6l6l6l6l6l6l6l6l6l6l6l6l6ld6l6l6l6l6l6l6l6l6l6lkcdgibc6l6lb6l6lyd6l6l6lk6l.d6l6ld-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@T@T@\'@T@\V@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0\'@T@usr/lib/cron/remove.this100644 0 2 0 4201127067 11674 37777777777 usr/lib/cron/queuedefs100644 0 2 0 4201127070 11411 37777777777 usr/lib/cron/at.deny100644 0 2 0 4201127067 10773 37777777777 usr/lib/cron/cron.deny100644 0 2 0 4201127070 11322 37777777777 usr/lib/cron/.proto100644 0 2 34 4201127071 10674 37777777777 cd $d ulimit $l umask $m $< ares 0 4 ٗ]@dJ@\\dJ@dJ@ *@]@]@y*@ *@R@pZLR@E@U17262185S@S@m*@LpZLusr/lib/lpmove106755 6 3 55470 4213315517 10141 37777777777 Lk8" K4 @.textK .data @ @4L@.bss@@.commentXZÐET@RU RP PKjÐU(E 0 Y9E}E 00h @ jJKYt&h @ P !tjh @hC @hB @jn tjhD @E pY9EtE 00h @` jJYE pnYu'E pho @h@ jh@jE pEP EjE pEP EEPEP! ujh @2EPEPEPEP5 @h @jIYËE UJ4Yt(jE UJ4EP EEE 00h @I 뤍EPEPE U4 u,E U4h @h@ jh@d'EPEP.tEPuEP4 EEH9E|EP5 @h @ U\jjiH=th jSHjjGH=th j1Hjj%H=th jHjjH=th jGu uDu EP<EPh Y @uEP =uuh@h @Pxu h#@h@PDh+@P<EyPh-@h@ jh@jh @z=fEf0E=.!hM@EP$hR@EP hZ@EPhb@EPhj@EPjEP @jEP @PPf=tP4 Y=u7Phr@h@ jh@G jh @8 ujjEP=u<YUtu uEP =u)u uh@h@,jh@ jj#E=th j EjjE=th jDjjD=th jDjjD=th jDuEP9EP2 Yuh@h@P^EEuh@h@P0EEu uh@h@Ph@Po9Ph@h@ jh@Y jh @J =F=/P8Pk8PP=tPY=u6u uh@h@ jh@ jh @ PP7 =$9Yu h@ PP =tPY=u6u uh@h@Zjh@ jh @  @jj>B=th} j(BjjB=th} jBjjA=th} jAjjA=th} jA= @) j1BYmUuu hq@hh@h2@h@eh@Yuhx@h@}Yh@8YUjj7A=th} j!AjjA=th} j@jj@=th} j@jj@=th} j@EP@T@ h@ Y=ujh@Ujjw@jjk@jj_@jjS@j@YUUjj!@jj@jj @jj? @ÐUh j?UTEh@u*t>h@uh@EPjEPt$h @EP4h@EPo4jEP=@u+XjYh@EP4@jY=@tXjYu EPh@5@)EjY}t5@6Y@ @=@t3U Ei h4@2YEtu[ YEt EU9Pt!u YEt EUE}tjuh@ @uh<@h@  @ÐUPj-u*Et5E9Et-E+E= E@PYU~ E'9|3ËE+EPuu e E U+Uu YѐUP=h@t5h@4Yh@=l@t5l@}4Yl@=t@t"5@8Y5@kYt@UPu Yu uvE=tu uOu֋EUu Y(E@PqY;Euu uu3u u=uøUP=l@t=h@t =t@u u PYEH;45h@Yp@5h@jjh@uhy@EPjEPt$h@EP0h@EP0EPEP=uhEPu jEP:@=ujh@jj5@* =ujh@t@EPEP>=uhEP =l@uh@EPD0l@t#=h@u)h@EP!0h@ujh@)hEP5l@F Y5h@: Y5h@2Yp@Uj5p@5l@ 5l@uujj Ujju* U 8Pht@EPs EPYUPh$u kE}jEPu47 u2Yuu }u rYu bY3UjuhÐUu EPh@u U$u uh@h@EP EPYUuYUE@ tuYE E EEUupYE< uE3ȐUWVS}3 G }Ƌ]u}Ð 63Ðv63Ð/ÐÐUPWVS}E@uJG@u=+t =-u EG@u 3]u}ø0+Ëk 0+G@uރ}t뾋븐UWt7un uNj}ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WjY=uE H3u U+ЋO;7sSwu3 ÉE)G?}3W @+W;}Wj/Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P|/ E}|EE}ø 43ÐUfE}} EE EEEE =$@fEEPju: EfEEPju EqfEEPju EUfEEPju E9Et1E=u3@ @܃}}$@=t=t=.u @-E뭐UWV}t9~u=Ƌu}U=@uh@h@'@5@YU=@t5@)Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@&@u35@YUWuhh@_ =@WQY=@WBY=:j EPW EW&YPj:W% 9Eu`WY}| `9E~aE@t4=:t*j EPW EW%YPj:WP% 9Et3}WY}| `9E~aE@= @=@W^Y=@WOY=@W@Y=@G?t =,u?tG=@@oUWVS} uEE~,F t!O>(VcY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}VS*Y}u +gEEvÐn/Ð>Z/ÐUPWE E@u@t* @h@uu @ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W%YjjG P) GGg G tg }ÐUW}} WY}ËGGUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P( +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G Px( ECG t8WJ$YG t g GGuu G P-( E9Eus3lUWV}uW&YG uG tO G Dt1@"u}F @tV#Y;5@rGGG tG @+GPwG P | GG듸9tO O G tg aU}u3jYEh!jE+EEE}t6E9Ev)EE&E+EEEEEMuj*h@Yuj +YufYj*YjVYE}| uj*} }}}t EEP!YEE'Ujh@2ÐÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐVt$T$ :t#t:tt:tt :tu3^ËH^ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐU WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}tUEu$juh@h@h@ujYjj&Ejj&EEPYE;Et 9Euujj&uj]&9EuEËED$Pt$Ð5@t$ t$  Ð;&j&t3Ð!N&Ð:&3Ð "&3Ð &ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS1 YSVjWES]u}VWE0U$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuj# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@b 3WC YkUjuuuu u#Ujuuuu uU$WVS}4@E4@E(@s3UtE]4@E0@E8@E@r5E@r@E@AE@s6EE]@)EE@r݋EE 9P܃}t؁4@@v@E@tE@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+4@u4@1}tCF0N<94@]uԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@E5@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W'Y+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_Ð ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_Ð" L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@#@GW @*h!YGt@O G W@GGVYtG uO @u}G '@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6ÐÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@j Y@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hfY=u 3]u}ÁmuBY=u+EPPY3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}WV|$ t$L$Njʁ^_øÐT$@Ru @+D$øT$@3øÐ0hLNL$0hL:L$0+L$0L$0 L$0ÃÐ@Ð{T$@(#)lpmove.c 3.1usage: %s dest1 dest2 -or- %s request ... dest LP system corruptedlpthis command for use only by LP Administratorsscheduler is still running - can't proceeddestination "%s" non-existentdestinations are identicaltotal of %d requests moved from %s to %s "%s" is not a request idtotal of %d requests moved to %s %s/%s/request%s/%s/requestrcan't open request directory %sFIFOoutputqpstatusqstatusseqfilecan't move request %srequestrequest "%s-%d" non-existent%s/%s/request%s/%s/request%s/%s/r-%drequestrcan't open request file %scan't move request %s-%dr-%dcan't move request %s-%d%s/%s -r'all requests moved to %s' %s >/dev/null 2>&1/usr/librejectdestination %s is not accepting requests move in progress ... /usr/spool/lpspool directory non-existent@(#)fifo.c 3.1request/%s/%sFIFOFIFOFIFOw%c %s @(#)getname.c 3.1LOGNAME%d@(#)isrequest.c 3.1@(#)outputq.c 3.2request/%s/%soutputqoutputqoutputqcan't open output queue filecan't lock output queuer+rcan't open output queue file@(#)isdest.c 3.1%s/%s/%s/usr/spool/lprequest@(#)eaccess.c 3.1@(#)fatal.c 3.1%s: %s @(#)lock.c 3.1LTMP.%d@(#)request.c 3.1%c %s requestrm -f %s/%s/*-%drequest!/etc/passwdrr/bin/shsh-c  000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF)22")2D22222A)(2 ).)2q))))))))))22222222222+2!02222222222222222/+2222222222I2)+-!0))22)22+222m22*22/+-+ 0x0X--+ --+ --+  ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ (@ (@@(@)@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0@(@usr/lib/mail/maliases100644 3 3 56 4201130547 11244 37777777777 # empty alias to enable local uucp link uucp: ٗ]@dJ@\\dJ@dJ@ *@]@]@y*@ *@R@pZLR@E@a.10141146S@S@m*@LpZLusr/lib/mail/faliases100644 3 3 0 4201130547 11202 37777777777 usr/lib/mail/aliashash100755 3 3 104224 4201130546 11507 37777777777 L]!N/ @ T@.text@ .dataT@T@ TA@.bssh@h@ .comment0hNÐETh@RU RP P9@jÐUE 0!Yl@@ME E B=ot=vuU@iEM=} 5l@h@hx @ j?YE E 0h@!4 5l@h@hx @ jq?Y9E~E P=-OE=t=uE Pp@,p@@ 5l@h@hx @ j?Y@uY5p@YP3Y= ~5p@YPh@&5p@h@F3h@h@Lh@hl@"3r>Ph@EPG EPhl@zYP25@T>YU$WVSEP5p@}5p@h@{5p@dYt$} @@P5p@h@E 3GEuu5p@h'@ǹǹ@P{Y@E@E@PY|@@@Љ@)h6@hl@.2x@uhl@h8@S5x@x@}5x@j 4x@P @hQ@5p@1t@uC5p@hS@1.x@}5x@P64x@P@ƈt@}5t@Yt@P@ux@@ ut@@ t ho@Y5x@2Yhhl@'h@Yh@hl@z|hl@Y} h@OY@j1Y}h@.Y SuEu5t@E2Y=@t89@u@@P5@5l@h@hx @x=@tu5@Wh@]Ћuԋ}UWVS@#t5@h@n@P@6Yu h@HY3 D F;5@|jY}h&@YW @PS uNj]u}UWVSj5@uZ u YG;=@u3;u h7@YE|u܋ӈDU T]u}UWV}@9>| u}Ã>uWh[@RUWV}3FuƋu}UhWVSu{.YEj5@u uY؋E |u uh@hx @ ]u}ËE ;uijE TJR5t@ } h@Y5t@jE@PEP: =t h@sYuEPu~ t#G;=@u3;Oh@?Y?E TDK@@uh@hx @ uh@hx @ UWVS}ht@3-Y@@S5@j|@@Pht@h@WY 3CFtF;@t  PE t5|@Ph@W F;5@|]u}UWV} F=/u>uNju}U5l@h@hx @ j7YU5l@h@hx @ u uuuuu uhx @u =@t<@=@Ph@h$@hx @H =l@t hl@Yj"7YÐU9@ul@u3UW3.l@}G!u3-|=w |$P@tڡ@U WsuY} }5H@jEP tEPhd@t%@5H@,YH@[@@3@@3@5H@jEPz EG= tWsY@j Wt`G= tWIY@j Wt6G= tWY@j Wt WY@5H@!Y@@=@@9@|a 9@T9@|G 9@:9@|-@@@@9@u j&Y}3EL@@!UW=@t @9E}Eju5D@ u'@5D@Q Y t tu }É=@5@jWz @3U=D@t5D@*YD@=H@t5H@*YH@L@U@W3hm@u(D@t|ho@u(H@tWfEfEEPD@@ P EPH@@ P EU;u3}5H@)Y5D@)YG|H@3D@j Y@UWVS=@@@5D@YH@3۾l@u"uu3Q tu3Whq@ t!l@u F׈36=@t-:u(-l@=c}F׈5D@\Yu5D@DYt t t=@9@t59@u u#=@t!9@t 9@u3@5@5@W$ @9@t ]u}3U9Et 9Et 9E tZE=t?= t1="t=#t1=,t=:u4ø9E uу}tĸU@UWV3$@t @ǍuЋEEu͋%} E‹u}UWV3@t @EEu֋%_R ‹u}U(WVS5@5@u? uYt;u*j@@R5H@ 5H@j5@EP=EPYEtxE;u]E@PY|\9@ul@ u3Et2uuu 3]̋uЋ}G;=@u3; ېUWVS}G= t= t3$-0 ~ ~ƋG@uˋË]u}ÐUPWV}u FGu 3u}@t @E@t @9Et+릐UPWVS}u ]FGtOK|H@t @E@t @9Et} 3]u}+-3ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WFY=uE H3u U+ЋO;7sSwuY, ÉE)G?}3W | @+W;}W'Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P' E}|EE}ø ~,3ÐUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V | @+V;}V[&Y}u +gEEvUPWE Et @ut @t* t @hh @uu  t @ t }ËUWVS}u ]GF:u Nj]u}M}3UW}} WY}ËGGUPWEEE@ uE@ t(EH uuu W E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG Pq% +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P% ECG t8W YG t g GGuu G P$ E9Eus3lUWV}uW1#YG uG tO G Dt1X @"u}F @tV2 Y;5x @rGGG tG | @+GPwG PM | GG듸9tO O G tg aU}u3jYEhj'EEE}t6E9Ev)EE&E+EEEEEMuj'h@YuubYljUYE}| ujM'} }}}t EEP YEE2Ujh@EøÐn'ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+Gu׸n&3ÐV&3ÐUWVS}u ߋG8uOGF҈uË]u}ø &3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS% YSVjWES]u}VWE0I$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  | @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu^# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžld@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E @s3UtE]@E @E @E @r5E @r @E @AE8 @s6EE]@)EE@ @r݋EE 9P܃}t؁@j@vj@EH @t-@r05}fEf fEmE]mE܉E@0Ee P @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E( @E50 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G | @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W | @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}h@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3j ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W| @UWX @;=x @r3}ÃG uUWX @ WY;=x @r}UWV}tlG t6G t3WVYG PY}H@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG | @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G | @+G?}3W | @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G | @+G?}3W | @+W;}WY3UWV}G G u}}&u@@GW | @*h!YGt@O G W| @GGVYtG uO @u}G @WR| @UWV}G | @+G}G | @Wu};7}7𐐐3ÐUH@EEPhTu } EH@3ø6ÐÐU WVSE9ET=\@u<`@ \@\@ `@P@`@L@\@P@X@E@3؋=L@E&;5P@\@E@E=w=X@jYP@@;t?3Ee ƹ3tL3+‰EEE2P@+X@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5X@P@0E+E-P@@;tP@P@P@\@~ЉL@;5L@vL@T@L@ 9=X@u L@X@G(=L@95X@u=X@7tލ;r;l%;UWV}5L@%P@9u5X@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹT@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$d@Ru d@+D$øT$d@3øÐ0ANL$0A:L$0+L$0L$0 L$0ÃÐH@ÐoT$ @(#)aliashash.c 1.2 87/08/26 # /Ia %KgKkUO ? ] i9oECIs"%i)a-915:@GgNU^Ehku}/usr/lib/mail/aliaseslast component of file name too long: %s .hashtmphash%dcan't stat %s%s: %scan't openalready hashed%s: no aliaseswcan't open temp file: %srcan't reopen alias file: %sread/write errorlink erroralias seek error%s: %d duplicate entr%s, (warning only) yieshash table entries: %ld/%ld, %ld bytes of data can't hold %ld entries in memoryno memoryalias seek errorinternal error, hash table overflowprime table too small for %ld entries key not found: `%s'seek errorread errorhash table overflowDuplicate entries - %s %s%x %x %8lx %8lx %c%*lx%cusage: %s [-v] [-o outfile] [aliasfile] %s: %s has %sbeen updated NOT J J x T W # rr :, 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF~'~'~'&~'~'~'~'~'~')))))))))~'~'~'~'~'~'~'~'~'~'~'@ ~'$~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'~'&H@ Z"$CH~'~'<~'~'~'~'~''~'v~'~'-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@x @@4@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0.file gcrt1.s.text<.dataT@.bssh@.commentl@.init_istart.filegvers.c.text.dataT@.bssl@.comment.file9galiashash.cmain$$hinsert$j!$5#ptrsizeD$%alookup`$F'#$)tailD b(+usagel $%-fatal $/.text .dataT@.bssl@.comment_sccsidT@primes@.filekgascan.c0 b&=:B bF?setalias $Aaseek $Cendalias $MEDT $Greadtok$XItoktypeu$Kafpos $ Mshash$UONj$OQslookup$S.text  .dataD@4.bssl@.commentabufl@afpD@hfpH@afnL@apos@atok@nexttok@lastc@cont@ishashed@ptrsize@nbpslot@nslots@hashsize@hashpos@datapos@.filewgatolx.catolx$fo.texth.datax@.bss@.comment.filegstrccmp.cstrccmp8$r{.text8t.datax@.bss@.comment .filegstrnccmp.cstrnccmp$.text.datax@.bss@.comment(.filegchmod.s.text,.datax@.bss@.comment@ .filegfread.cfreadD$.textD.datax@.bss@.comment@.filegftell.cftell$.text.datax@.bss@.comment@.fileglink.s.text.datax@.bss@.comment@.filegfgets.cfgetsb.text.datax@.bss@.comment@.filegprintf.cprintf$_.text`.datax@.bss@.comment@.filegmemccpy.cmemccpyb3.text4.datax@.bss@.comment@.filegfgetc.cfgetc$".text$.datax@.bss@.comment@.filegfprintf.cfprintf@$].text@`.datax@.bss@.comment@.filegfseek.cfseek$#.text$.datax@.bss@.comment@.filegfilbuf.c_filbuf$.text.datax@.bss@.comment@.filegsleep.csleep.awake$.text.datax@.bss@.comment@env@.file(galarm.s.text.datax@.bss@.comment@ .file2gpause.s.text.datax@.bss@.comment@ .file<gsetjmp.s.text@.datax@.bss@.comment@ .fileHgsprintf.csprintf$F@.textH.datax@.bss@.comment@.fileTgstrchr.cstrchrHb+L.textH,.datax@.bss@.comment@.file`gstrcmp.cstrcmpt$8X.textt8.datax@.bss@.comment@.filejgfstat.s.text.datax@.bss@.comment@ .filetgstat.s.text.datax@.bss@.comment@.filegstrcat.cstrcatb0x.text0.datax@.bss@.comment@.filegunlink.s.text .datax@.bss@.comment@ .filegdoprnt.cX$$D_dowriteh$k_doprnt$'.text$.datax@Y.bss@.comment@_blanksx@_zeroes@uc_digs@lc_digs@lc_nan@uc_nan@lc_inf@uc_inf@.filegctype.cb/$.text/.data@(.bss@.comment@n @.filegecvt.cecvt0bfcvt0bcvt 1bT.text0 .data @.bss@P.commentl@buf@.filegfwrite.cfwrite`3$.text`3 .dataX @.bssl@.commentl@.fileggetenv.cgetenv4bAnvmatch95b@.text4.dataX @.bssl@.commentl@.filegmemchr.cmemchr|5b1.text|54.dataX @.bssl@.commentl@.filegread.s.text5.dataX @.bssl@.commentl@.filegstrcpy.cstrcpy5b'.text5(.dataX @.bssl@.commentl@.filegstrlen.cstrlen5$ .text5 .dataX @.bssl@.commentl@.filegfopen.cfopen 6h freopen%6h"_endopenG6h9.text 6t .dataX @.bssl@.commentl@.file$gfindiop.c_findiop7h,.text7,.dataX @.bssl@.commentl@.file>gflsbuf.c_cleanup7 "(fclose7$*fflushU8$`,_flsbuf8$7._xflsbuf9$0_wrtchkt:$2_findbuf ;$4_bufsync;$:6.text7P%.dataX @.bssl@.commentl@.fileHgclose.s.text;.dataX @.bssl@.commentl@ .fileRgdata.c.text<.dataX @.bssl@.commentl@.file^gisatty.cisatty<$9V.text<<.dataH@.bssl@.commentl@.filehgi386_data.s.textP<.dataH@.bssl@.commentl@$.filergioctl.s.textP<.dataL@.bssl@.commentl@ .file|glseek.s.textd<.dataL@.bssl@.commentl@ .filegmalloc.cmallocx<bfree ? 3reallocS?b.textx<9.dataL@.bssl@.commentl@allocpL@alloctP@allocxT@allocendX@.filegmall_data.s.text@.data\@.bssl@.commentl@$.filegmemcpy.cmemcpy@b0.text@0.datad@.bssl@.commentl@.filegopen.s.text@@.datad@.bssl@.commentl@.filegsbrk.s.textT@@.datad@.bssl@.commentl@ndd@.filegwrite.s.text@.datah@.bssl@.commentl@ .filegsignal.s.text@t.datah@.bssl@.commentl@ yA.fileggetpid.s.textA.datah@.bssl@.commentl@ .filegcerror.s.text,A .datah@.bssl@.commentl@ .filegcuexit.s.text8A.datah@.bssl@.commentl@ .filegcrtn.s.textTA.datah@.bssl@.init_start_mcountenvironh@exit8At@Tfnl@Ofn@Progl@Ifnp@Ifpt@Tfpx@vflag@Nbpptr|@Hashsize@Nslots@Nentries@@Updated@_iobX @getpidAstatchmod,unlink linkfstat_ctype@_cerror,A| @lseekd<_lastbufx @read5alarmsignal@setjmppauselongjmpopen@@close;write@errnoH@_sibuf@_sobuf@_smbuf@ioctlP<_allocs\@sbrkT@brku@end4@sighold@sigrelse@sigpause@sigset@@etextTAedatah@aliashashsethashtabnextprimewritehashtabreadaliasnextaliasopenaliasschecksum_lowdigitsetchrclassfirst_call_sigreturnHashmagicDuplicates_bufendtabsigignore@@close;write@errnoH@_sibuf@_sobuf@_smbuf@ioctlP<_allocs\@sbrkT@brku@end4@sighold@sigrelse@sigpause@sigset@@etextTAedatah@aliashashsethashtabnusr/lib/mail/aliases.hash100644 3 3 307 4201130547 12030 37777777777 # 4 2 16 76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 < 1 0 0 0 243 0 all: "$e no users in entire network" # send network mail to root network: root rrnoH@_sibuf@_sobuf@_smbuf@ioctlP<_allocs\@sbrkT@brku@end4@sighold@sigrelse@sigpause@sigset@@etextTAedatah@aliashashsethashtabnusr/lib/mail/daemon.mn100755 3 3 152771 4201130551 11434 37777777777 L!Xm hd8@.texthd .data8@8@8e@.bss%@%@.commentPÐET%@RU RP PdjÐUWVSEE 0Y+@+@T@8,@+@,,@(,@+@+@+@,@PE PB9C=et=xuMM5+@h@j@ ;uME 9E~E P=-t9E~5+@h@j@ =+@]5=tt]jbYS=$@| @9$@|5$@hP@h%@1 %@$@`@PhX@jGG j b0YjjajjajjahjaE @+@t5+@VY=~ +@@hi@)Yuh@hq@jC )Pvp5+@h@h@h<,@1h<,@N'Y}X=$@| @9$@|5$@hP@h%@0 %@$@`@Ph<,@h@jH'v)/Y}a=+@uX=$@| @9$@|5$@hP@h%@\0 %@$@`@Ph@h@jG>+@E ,@!5+@5+@u0u5+@h@jAm }3,@j3YEE+£ %@=,@t@#@P5+@h @^ 5+@h)@Kh+@5+@h:@3 EP%YP Y=8,@t58,@VY8,@=,@tK,@,@,@,@,@,@,@,@,@,@4,@,@,@,@,@,@,@U=$@| @9$@|5$@hP@h%@y. %@á$@`@U=,@tK,@,@,@,@,@,@,@,@,@,@4,@,@,@,@,@U=8,@h`@5+@pS8,@uj=$@| @9$@|5$@hP@h%@- %@$@`@P5+@5+@hb@h!@*jG'^YU=8,@t58,@TY8,@UPW3=+@=8,@u u(u$u uuuuu u58,@/*(u EEI=,@tu5%@h|@ }AE@E=/ 9E!E0%@ujjW E=|W-YE=9EP-Ph0%@#EE9Eu @E@@@=~@UPE4,@;t=,@t hl @Y4,@=t>=uFjejj |jjEP tE,@;ujh,@4,@3UWV}u Gց%u}UWV}G%% Ƌu}UWVS}3f3ۡ@=t=]u}f3(ét ffG%f؋E M %t G%Ћ%E M ɋvG%E M %UUW4,@0%@ G,@%@rhh0%@.}ÐUWVSjh @P}h @jEJ= @u= @u3Eu=,@u @ 9 @| @ @j5 @S\L ƹ3| @‹f?t]jh @GP0* uFjGPh,@ ,@h,@YuS~KY3 @95 @x @ @hPSD 6 @ @}SJYxU h @uDEu+u)Y=,@guh @QRuj EPN uhnP7 nPYu7FYDž @E9gjEP5+@( tOEPYEuEP9YEt-ju5+@x( u uEY3ËEh @h @P/nPPnPu}$NP@Ph @h @jG`u>(Y}u bU(EP YN9$@thS @hB @jE EPh[ @'|E+E=|ihc @'Yh: @h2 @|EPBYk +@}h @hk @jG =+@u+@EuHYEظ29E|jh @h @ h @h @jED UWVu+EU J;}F׈E} u7Y EP@t uu}UWV} G=/u?uƋu}UW= @uL @3Ra%@uu EAubAYE G%@G5 @h @W Oju %=tN @ @=z~ @aO%@@%@=z~%@a @ {}ÐU(qu ,@+Ã=+@t,EPh @%=uEP@Y+@jxjEPq =ucE,@;ujh,@,@E,@;t*=,@tEPh @,@O,@@U WVS,@jY,@h- @h,@?u/=,@th,@h/ @j3jY} SpAYhA @h,@*WP}S=AYhD @<$YShjPS AYhG @ $YjYXh,@#YjYPVhJ @,@!UWVS,@jY,@jY|3hP @hM @>u/=,@thd @hR @DžhP}VP@ FF;s C= u̍;sfSTY@Phg @V ;s C= uV+Ћ+PjS:VWjP:hPV:?Y}=,@hk @YjYjYPhy @h| @Yuh @jD,@mU=,@t h @rY,@,@,@UPjh,@F  ,@,@jjEPW =uuE,@;u ,@E,@;u$=,@ujh,@ ,@˃=,@tEPh @,@뤃=,@th @YUE=,@t h @pYE=,@tQEPh @K=E,@;E,@;t'=,@tEPh- @ ,@Ã= @t @h` @{Y,@jhy @ jh,@jxjEP =E,@;t'E,@;E@E=jh,@Xjh,@IjjEPf ==,@t hH @Y,@ =,@7h @Y'UW +@uh` @jDX=+@t>5+@Yu 5+@5+@h @h @jDWY}h @h @9EuzPh @h @jG=,@a7E}LPh @jGm }uu;;YWjYjpYWuh @uu;Yuu:Yu uh @^ hh @4 j:DY UW}=+@G Ph @h+@D G0,@}UWVS3,@h @h @8SPh @h @jHoGEPEPP t}u}t9EtWh @h @jA!}tRj5+@6 uWvvvj(j5+@vg uWvv 6@ShP- BS9Y=,@u5+@h @h@jAUWVS3h-@h @k7EuPh @h/@jH-3ECEPEPP uSh @hB@jA}u}E9E}+}u%}t 9E}Sh @h_@jA3}u?j5+@6  u;voYEt+SuG4 ;}|}uEuhP u7YUWV}5,@jVWs u Ƌu}Ëvu3UWVS}5,@,^ jSW8 u Ƌ]u}Ë[ u܋vu3UPWVS}j5+@W u#u5+@5+@h @hw@jAJW>Yt uWj5+@h @h@jAj;Yuh@jGjWV Fjh@u i tuu jh @h@jAju F P FuYE @29Eu(fCfFF,@F5,@]u}Ã;uuh @h@jAJUWVS}u j5+@W tWYu WEYtuWjh @h @jAjv:YuhJ@jGjWS CFC ^]u}Ujh+@=(,@=u_Ph+@h|@jH{(,@,,@EPhT5(,@9 h,@hT5(,@9 0,@% f EEEfefM0feEPhT5(,@_9 =tjh t5(,@C9 =uPh+@h@jGfMU=(,@|B=+@t-h,@hT5(,@8 jht5(,@8 5(,@v8Y,,@(,@Uu u5,,@< ;E th@jJ*UPWEhK(j<,@u YE +EPu5(,@1 j Y}=,@uh@jJ~EE=,@uE 9ErjjL<E}U,@ÐUWVS}EE%@GtVh@ ut #uV}uP}~&EH4%@h@ u MEuEUE U%@]u}ËEE=|3;G`Vh@h tIUW#t?u3}ÃtG쐐UWVS=@t&@@h@h@I0Eu&@&@&@$&@P&@EuhP[ G?tPh@z utH=#u(VwY=uE9Eu~3]u}N;>}Sj vucEtE+E؋E)F>}3V $@+V;}V.Y}u +gEEvUWVS}u ]GF:u Nj]u}M}3UW}W*YjjG P. GGg G tg }ÐUPWEEE@ uE@ t(EH uuu E@ t }ËUWV}uW,YG uG tO G Dt1 @"u}F @tV)Y;5$@rGGG tG $@+GPwG P& | GG듸9tO O G tg a23ÐU}u3jYEh3jm1EEE}t6E9Ev)EE&E+EEEEEMuj 1h*@YuubYljUYE}| uj0} }}}t EEP YEE2Ujh*@EøÐ1ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E)@u5GEE)@uE=+t =-u EGEu309Et "G=xt G=XuE)@tEE)@t E-0#E)@t E-WE-7E;| 3]u}Ãu;09Eu1G)@tG=xt G=Xu EE)@t E-0#E)@t E-WE-7+EGE)@tEE)@t E-0#E)@t E-WE-7E;|} tE 8}tU5%@E Pu Ð;-z-t3Ð T$tÐUW(E+@EEPY=@iGQiWkW<E= +@u=+@uWEPEP<  +@E+@EE9E|)E9E}!E+@EEPYG Nj}UWVEQUEE}} EQME<+@E+@ƙ5+@Ep,+@}| FFFtmnEN}|ۉ5(+@}=0+@ƹtmn=nu f@3 u@+Fu@;}f@G +@5$+@4+@+@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph(@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}8+@E8+@EP @s3UtE]8+@EX @E` @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁8+@+@v+@E @tI+@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+8+@u8+@1}tCF0N<98+@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G $@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W $@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}%@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W$@UW @;=$@r3}ÃG uUW @ WY;=$@r}UWV}tlG t6G t3WVYG PY}$@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG $@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G $@+G?}3W $@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G $@+G?}3W $@+W;}WY3UWV}G G u}}&u-@1@GW $@*h!YGt@O G W$@GGVYtG uO @u}G 5@WR$@UWV}G $@+G}G $@Wu};7}7𐐐3ÐU$@EEPhTu } E$@3ø6ÐÐU WVSE9ET=$@u<%@ $@$@ %@$@%@$@$@$@$@E@3؋=$@E&;5$@$@E@E=w=$@jY$@@;t?3Ee ƹ3tL3+‰EEE2$@+$@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5$@$@0E+E-$@@;t$@$@$@$@~Љ$@;5$@v$@$@$@ 9=$@u $@$@G(=$@95$@u=$@7tލ;r;l%;UWV}5$@%$@9u5$@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ$@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$%@Ru %@+D$øT$%@3øÐ0dNL$0d:L$0+L$0L$0 L$0ÃÐ$@ÐoT$@(#)main.c 1.2 87/08/26 LOGfork failed (%s)networkno password entry for %snetwork%s/%s/usr/spool/micnet/remotecan't chdir to %s (%s)setuid(%s) error (%s)networkLocal/Remote system name clash: %s %s: running as %sMASTERSLAVELocal system: %sRemote system: %s, %ssystem error %da%s: PANIC: Can't open log file %s (%s) %s: %s: terminated %susage: %s [-ex] [remotesys]received SIGTERM%s: %3ldb %d:%02d @ %d:%02dswitched to %s checksum algorithm,@-@1@oldOLDPopen: bad TtymodePwrite: bad Ttymodeputblk: bad initial Tack: %02x (packet %d)putblk: no final Tack (packet %d)putblk: remote resetting, resetputblk: too many retries: %dbad finalreceivedputblk: %s Tnak: %02x, packet %d, retry %dPread: bad Ttymodegetblk: too many retries: %dgetblk: wrote Tnak, packet %d, retry %dgetblk: can't read count, packet %d, retry %dgetblk: remote resetting, resetgetblk: read bad count %dgetblk: bad count: read %d, computed %dgetblk: bad checksum: read/computed %04x/%04xgetblk: bad sequence number: expected %d, read %dPclose: bad Ttymode@(#)queue.c 1.1 86/11/17 a.qempty: can't open Spooldirmnrdispose: can't open %s, removedlocal../%s/%smncan't link to %s%s (%s)/usr/spool/micnet/remote../pids../lockcan't link to %s../pids../lock../lockcan't fork to exec %s/usr/lib/mail/exec.mn/usr/lib/mail/exec.mn/usr/lib/mail/exec.mnexec of %s failed/usr/lib/mail/exec.mn%u@(#)state.c 1.2 87/08/26 ../lockidle: bad resp: %02xrtx: can't open %stxtxtxtxrxwrx: can't open %srx%d rx: bad Preadrxrxcan't dipose of received jobenter reset()request: bad Req/Rack: %02xrequest: no responsersync: Remote system echoingrsync: bad Probe resp: %02xrsync: no Probe responsersync: bad Sync resp: %02xrsync: no Sync responsefirst handshake completeLOG@(#)top.c 1.2 87/02/25 /usr/spool/micnet/remote/pids/usr/lib/mail/top/usr/lib/mail/top.next2Kn,X  `  % Kno machine name in /etc/systemid%s: no entry for `%s <--> %s'wcan't open %s (%s)can't fork daemons (%s)%d %s /dev/%srcan't open %s (%s)%s: line %d, bad format%s: no remote systems: (%s <--> ???)rcan't open %s (%s)%s: line %d, too many fields%s: line %d, bad format%s: bad entry: `%s <--> %s', line %d%s: duplicate entry: `%s <--> %.*s', line %dnewintsys: no memorytty%s: bad tty name `%.*s', line %d %s: bad tty speed, line %d %s: `%.*s' is involved in a loop, line %dnewdestsys: no memory@(#)tty.c 1.3 87/10/14 can't open %s (%s)can't set tty modes on %s (%s)write errorread error, \, /etc/systemidr Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/passwdrr@@@@@@@@*@<@L@_@q@@@@@@@@@@@@3@G@X@g@v@@@@@@@@@"@>@W@f@t@@@@@@@@$@-@E@\@p@@@@@@@@@@@,@J@`@q@@@@@@@@@@@@#@,@G@d@{@@@@%@L@U@^@g@p@y@@@@@@@@@@@@@@@@@@&@0@:@D@N@X@b@l@v@@@@@@@@@@@@@@@ @@/@9@I@W@f@w@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error @@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFABKBKABKJBKBKBKBKAjABKvAABKAAAAAAAAAABKBKBKBKBKBKBKBKBKBKBKDBKHBKBKBKBKBKBKBKBKBKBKBKBKBKBKBKBKCBKBKBKBKBKBKBKBKBKBKJ BDFHB BBKBKBBKBKCBKBKBKJBK:CBKBKC-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@ 5@ 5@$@(5@6@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0.file gcrt1.s.text<.data8@.bss%@.comment %@.init_istart.filegvers.c.text.data8@.bss %@.comment.file;gmain.cmain$errstrbFpinit$ulogopen`$!logclose$$#log$%fatal$'usage$)quit$+logdate$(-logtime$/dblog $41.text .data8@.bss %@$.comment_sccsid8@lasttime %@.file]gpseudo.cPopen $S?Pwrite $~Aputblk $CPread5 $kEgetblk $GPclose]$Iputint$,Kgetint$*MchecksumG$OPreset$<Q.text  .data@.bss0%@.comment@sums@pbuf0%@seqno%@.filetgqueue.cqempty\$adispose$c$egetline$Sgtailb(imktfn$k.text\r.data @p.bss%@.comment_sccsid @.filegstate.cidle$xtx$@zrx$|reset$2~request+$rsync$.text.data @.bss%@.comment _sccsid @.filegtop.ctopinit$P $1"!$O,h"$h7#h5A$hELJ$$DV%$.text.data @.bss%@.comment(_sccsid @Pidfile @Topfile @a @.filegtty.cttyopen &$ttyclose'$dttywrite'$-ttyread'$halarmK($.text &<3.data`@h.bss%@.comment0_sccsid`@.filegmnparse.cmnparse\(b.text\( .data@ .bss%@d.comment8.filegwhoami.cwhoami8)b*.text8),.data@.bss$&@.comment@.filegsysnames.csysnamesd)b:.textd)<.data@.bss$&@.commentHsnames$&@stabP&@called@namelist&@.filegchdir.s.text*.data@.bss&@.comment&@ .filegctime.cctime*basctime*bct_numb+bJ.text*T .data@X.bss&@.comment&@cbuf&@.file gchmod.s.text ,.dataH@.bss&@.comment&@ .filegchown.s.text$,.dataH@.bss&@.comment&@ .fileggetegid.s.text<,.dataH@.bss&@.comment&@ .file+gatoi.catoiL,$#.textL,.dataH@.bss&@.comment&@.file7ggetpwnam.cgetpwnam,h1/.text,4.dataH@.bss&@.comment&@.fileCgfread.cfread,-$;.text,-.dataH@.bss&@.comment&@.fileMglink.s.text-.dataH@.bss&@.comment&@.filefggetpwent.csetpwent. 3Qendpwent3. $SpwskipW.bDUgetpwent.h9Wm.hwY.text.L0.dataH@.bss&@(.comment*@PASSWDH@EMPTYT@pwfX@line&@passwd*@.filergfgets.cfgetsL0bj.textL0.data`@.bss*@.comment*@.file|gerrlst.c.text 1.data`@D .bss*@.comment*@.filegmemccpy.cmemccpy 1b3.text 14.data@.bss*@.comment*@.filegrew.crewindT1 C.textT1D.data@.bss*@.comment*@.filegfprintf.cfprintf1$].text1`.data@.bss*@.comment*@.filegfilbuf.c_filbuf1$.text1.data@.bss*@.comment*@.filegsetuid.s.text2.data@.bss*@.comment*@ .filegsleep.csleep2.awake3$.text2.data@.bss*@.comment +@env*@.filegalarm.s.text3.data@.bss +@.comment +@ .filegpause.s.text3.data@.bss +@.comment +@ .filegsetjmp.s.text 4@.data@.bss +@.comment +@ .filegsprintf.csprintfL4$F.textL4H.data@.bss +@.comment +@.filegstrchr.cstrchr4b+.text4,.data@.bss +@.comment +@.filegstrcmp.cstrcmp4$8.text48.data@.bss +@.comment +@.filegstrncpy.cstrncpy4b> .text4@.data@.bss +@.comment +@.filegstrtol.cstrtol85$.text85.data@.bss +@.comment +@.file+gexecl.cexeclT7$#.textT7.data@.bss +@.comment +@.file5gexecve.s.textp7.data@.bss +@.comment +@ .file?gfork.s.text7.data@.bss +@.comment +@.fileIgtime.s.text7.data@.bss +@.comment +@.filehgtime_comm.cw7hMgmtimes8hyOtzset9 Qgetzname:b{SgettimeZ;bUgetdigit6<bTWgetdst<$Ygetusab= [sunday=$T].text7E .data@t.bss +@,.comment8+@ +@end_dst+@@.filergaccess.s.textH>.data@.bss8+@.comment8+@ .file~gstrncmp.cstrncmp\>$Gv.text\>H.data@.bss8+@.comment8+@.filegstat.s.text>.data@.bss8+@.comment8+@.filegunlink.s.text>.data@.bss8+@.comment8+@ .filegutime.s.text>.data@.bss8+@.comment8+@ .filegdoprnt.c>$D_dowrite,?$k_doprnt?$'.text>.data@Y.bss8+@.comment8+@_blanks@_zeroes0@uc_digsH@lc_digs\@lc_nanp@uc_nanx@lc_inf@uc_inf@.filegctype.cS$.textS.data(@(.bss8+@.comment8+@, @.filegecvt.cecvtTbfcvtTbcvtTbT.textT .dataP @.bss8+@P.comment+@buf8+@.filegfwrite.cfwrite$W$.text$W .data @.bss+@.comment+@.fileggetenv.cgetenvXbAnvmatchXb@.textX.data @.bss+@.comment+@.filegmemchr.cmemchr@Yb1.text@Y4.data @.bss+@.comment+@.filegread.s.texttY.data @.bss+@.comment+@.filegstrcpy.cstrcpyYb'.textY(.data @.bss+@.comment+@.filegstrlen.cstrlenY$ .textY .data @.bss+@.comment+@.file$gwait.s.textY .data @.bss+@.comment+@.file4gfopen.cfopenYh(freopen Zh"*_endopen+Zh9,.textYt .data @.bss+@.comment+@.file@gfindiop.c_findiopd[h,8.textd[,.data @.bss+@.comment+@.fileZgflsbuf.c_cleanup[ "Dfclose[$Ffflush9\$`H_flsbuf\$7J_xflsbuf]$L_wrtchkX^$N_findbuf^$P_bufsync_$:R.text[P%.data @.bss+@.comment+@.filedgclose.s.text_.data @.bss+@.comment+@ .filengdata.c.text_.data @.bss+@.comment+@.filezgisatty.cisatty_$9r.text_<.data$@.bss+@.comment+@.filegi386_data.s.text4`.data$@.bss+@.comment+@$.filegioctl.s.text4`.data$@.bss+@.comment+@ .fileglseek.s.textH`.data$@.bss+@.comment+@ .filegmalloc.cmalloc\`bfreec 3realloc7cb.text\`9.data$@.bss+@.comment+@allocp$@alloct$@allocx$@allocend$@.filegmall_data.s.textc.data$@.bss+@.comment+@$.filegmemcpy.cmemcpycb0.textc0.data%@.bss+@.comment+@.filegopen.s.text$d.data%@.bss+@.comment+@.filegsbrk.s.text8d@.data%@.bss+@.comment+@nd%@.filegwrite.s.textxd.data%@.bss+@.comment+@ .filegsignal.s.textdt.data%@.bss+@.comment+@ d.fileggetpid.s.texte.data%@.bss+@.comment+@ .filegcerror.s.texte .data%@.bss+@.comment+@ .file gcuexit.s.texte.data%@.bss+@.comment+@ .filegcrtn.s.text8e.data%@.bss+@.init_start_mcountenviron%@exiteProg+@Locsys+@Remsys+@Logfile+@Nolog+@Dflag+@Parent+@+@Remtty+@Ttyin(,@Ttyout,,@Ttyspeed0,@Ttymode4,@Lfile8,@Spooldir<,@Sfile,@Savetty,@Map,@Timeout,@Master,@Txmaster,@State,@Debug,@Probe,@Pack,@Sync,@Sack,@Req,@Rack,@Tack,@Tnak,@fork7errno$@sys_nerr@`@signaldgetegid<,chdir*setuid2time7_iob @sumtype@open$dlseekH`close_readtYunlink>link-stat>waitYgetpideaccessH>utime> @chown$,chmod ,ioctl4`writexdalarm3_cerrore_ctype(@$@_lastbuf$@setjmp 4pause3longjmp(4execvep7timezone@altzone@daylight@tzname@_sibuf-@_sobuf1@_smbuf5@_allocs$@sbrk8dbrkYdend6@sigholddsigrelsedsigpausedsigsetddetext8eedata%@swtchsumskicklocalsetremotegetintsysgetdestsysintlookupdestlookupnewintsysnewdestsysTopnextfilefgetpwentlocaltimestart_dstmonth_size_lowdigitsetchrclassfirst_call_sigreturnExecmnpidsys_errlistttyspeeds_bufendtabsigignoree@usr/lib/mail/execmail100755 3 3 173447 4201130553 11354 37777777777 L!  `p0@0@.text`p .data0@0@00q@.bss`/@`/@@.comment`ÐET`/@RU RP PpjÐUjjeojjYojjMojjAo|X@m`@eh@]E P6@d@ME BE p*0Y@\@} \@ME -f|= w |$p@ME 9E~E P=-t$9*6@t 6@8u6@@=E PB떃=h@u 6@xu6@6@6@P6@56@h6@1ch@h6@7Hh6@>Yh@DY6@=d@u 6@9E}<=T@'E @EE&jju#EU EHEUEE8u5`@hT@5X@56@uEEuT@uhp+@!5T@h@hp+@5 9\@~ 5\@h@hp+@5 T@E5\@j5X@56@j56@utP@5P@h@hp+@v5 T@P@Ph@hp+@X5 =P@u =T@t56@cY56@cYjlYUhp+@h$@56@a th&@56@a6@u h(@Y56@_FYUWVh?@56@dathA@56@Ka6@u hC@QY56@ FYhP+@jjEP-E9E|jEPhZ@C t h6@*YP56@h`@V4}~]VujEP]}VPNc FF׈ P+@} hP+@T5YT+@T+@uF thk@hp+@3T@VbYu}UWVSh@56@!`th@56@`u h@Y56@DYh6@)YPh6@h@V356@h@V3 h@V2h6@)YP56@=h@t@@Ph@V2h@V2hp+@aY56@12Y}VPa FF׈6@}56@3Y6@P@uh @V@256@1Y}VP|a FF׈6@}56@3Y6@P@uF t hO@YV>`Y56@2`Y56@&`Yjj*Eu he@bYE6@Pf@jhT@jh@uEt%jjjh6@jSu#ujCiYjjS*Eu h@Yjj5*Eu h@YE@UPE@@f@jjjh6@jSut h@zYjChY]u}UWM+u.P4Yu @}jWhd/@4 l/@d/@Uh@hp+@;0T@UWjh/@gj h<@WJg uw\YPuW4g jhG@W$g jGgY}UWV}E /@E/@p/@x/@t/@fG?jvV{ Džu=p/@tK}u55@VY'p/@p/@jjvVn ut/@p/@uEt/@uYu}UWVu5 Y=t(uh@@hp+@. t/@ u}5/@JY=p/@fgߋ?uWdY=p/@ G uwYtfO ?uUWVSx/@B@t2{)G=\t5@s Yu?uӋ[u]u}3x/@^@tN{EG=\t6Fwu[E|&}wsCW*Y?u[ut k EuJ oUWV}s tG jjVWu}whV@hp+@T- t/@UWVS}_GEG EE3E=#u EeFEuF= t= tE=etu=r=xS#EVut|V YYESYYUЍRRYEPV?FVS=VShp@hp+@L,t/@3uCVYufO ]؋u܋}t=#=$S5p/@5p/@}tjjuW뢅uE=/@u%=/@tV5/@u ECu jYfEfGVbYPSufO jVWJ t38u9E}fEfGj5/@W UPWEfPfBfP%=|"u hx@hp+@* t/@3}u YWYu#EPuWu5p/@3p/@Ejuu uu t/@3롸Ux/@U$WVS=x/@@tuux/@]Ћuԋ}|/@@EPSV;=u@3E@SYt=u0W{Y'E@Sh@hp+@) |/@=x/@y@titct w Ytuww|/@uuh*@hp+@X)juhp+@ hp+@j ! GuE|/@UPWVSEaEEtHjY>3ۋ=x/@0@t tCwV2u WZYu̅t but 9E|t$9E|jh@hp+@k( |/@]u}UWVSEx@@ @EEf@ 9E|Yh@WEp|/@uuh*@hp+@'juhp+@5 hp+@j *  ]܋u}Etu3Eu=#t =$uk=#uKeC=euCSWEp|/@uuh*@hp+@T'juhp+@ hp+@j  PSSYHPhx@E+h@WEp|/@uuh*@hp+@&juhp+@ hp+@j  ?uFEYH/@3۾/@u"uu3Q tu3Wh@$t!/@u F׈36=/@t-:u(-/@=c}F׈5p@tYu5p@\Yt t t=/@9/@t59/@u u#=/@t!9/@t 9/@u3/@5/@5/@W$ /@9/@t ]u}3U9Et 9Et 9E tZE=t?= t1="t=#t1=,t=:u4ø9E uу}tĸU/@UWV3$(@t )@ǍuЋEEu͋%} E‹u}UWV3(@t )@EEu֋%_R ‹u}U(WVS5 0@50@u? uYt;u*j0@0@R5t@ 5t@j50@EP=EPYEtxE;u]E0@PY|\9/@u/@ u3Et2uu+u 3]̋uЋ}G;=0@u3; ېUWVS}G= t= t3$-0 ~ ~ƋG(@uˋË]u}ÐUWV} 3E(0@E 0@E$0@E,0@E 00@o5(0@WEpp0hjEpt6h@hp+@jEphp+@ hp+@j EPU}uƋu}U(WVS}EEE@t 3]̋uЋ}ËE@tjWuu@EE@WYWjjEPWE9EjEPh@O* WYE=t 9EuWYEw=l@t h@Yhut6h@hp+@Zhuhp+@ hp+@j E=l@t h@YjuBuEuu u Eu E@EEU=l@tZEE؃}t@@Puh@ EEE0h@EE؃8uh`+@pHYEPEYhp+@[HY| }Mh@Yh@hp+@8huhp+@k hp+@j `E@EuyjjHPjj],0@E,500@h&@EEP E E 0@EuY։?9}th)@hp+@3ECtfC9CEE@ uEE=\tƋUfCM}unUW}=$u^G=?uSG=Ht2=Rt=mt1=ru>=,0@u*3}Ã=(0@u3=00@u 3=$0@t33UWVS}u 3G%;uC?uË]u}ÐUWVSuYu@]u}L@VwtՃtWv|WvE}uWvg>;}} E E 0uEE }t WYNjU B}t3UE]u}ÐUW} #G%;Euwhl@u ?uً}ÐUWuYuH'G=$uG=puWTY40@}+t=#t=$t40@p@UW}j*540@;uE((@tP540@uG?uӊu:t3}øUPWVSE@%ؿ80@|-80@ ȸ?u7;r3jV uhx@hp+@XjG.HYGw9_r)GGEGE]u}à 0@xh@hp+@jGGYUW3#k 0@k 80@ JHJHG rt@}Ut@UWV=t@t0@80@80@(?t G-80@ ȸG 0@rЋu}Ã?t'>u"F-80@ ȸFNj֋ JHJH 0@rUWVS}Džu 3]u}ËF8u+PY؋FG҈uUWV}u F׊ G?uƋu}ÐUPWV}u FGu 3u}(@t )@E(@t )@9Et+릐UPWVS}=(1@uI(1@u;Nj]u}E31j(1@4W5 uECWYuF(1@<uĊE룐UPWVS}u ]FGtOK|H(@t )@E(@t )@9Et} 3]u}+UWVS=@t1@@h@h@9Eu1@1@1@,1@X1@EuhP+ G?tPh@utH=#u(VY=uE9Eu~3]u}N;>}Sj vuSEtE+E؋E)F>}3V t.@+V;}V4Y}u +gEEvÐUWV@@9@/@s @/@<@u-YtVuj{8 jh@jj8 W-YPWjW8 jh@jF8 u}ÐUPWE El+@ul+@t* l+@h`+@uu l+@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}WX/YjjG PX3 GGg G tg }ÐUW}} WY}ËGGUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PY2 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P1 ECG t8W-YG t g GGuu G P1 E9Eus3lUWV}uW0YG uG tO G Dt1P+@"u}F @tV-Y;5p.@rGGG tG t.@+GPwG P* | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐU}u3jYEh<j4EEE}t6E9Ev)EE&E+EEEEEMujD4h6@YuubYljUYE}| uj 4} }}}t EEP YEE2Ujh6@EøÐ*4ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu ; ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E(@u5GEE(@uE=+t =-u EGEu309Et "G=xt G=XuE(@tEE(@t E-0#E(@t E-WE-7E;| 3]u}Ãu;09Eu1G(@tG=xt G=Xu EE(@t E-0#E(@t E-WE-7+EGE(@tEE(@t E-0#E(@t E-WE-7E;|} tE 8}tU5`/@E Pu Ð;00t3Ð T$tÐUW(E+%@EEPY=%@iGQiWkW<E= 6@u=$6@uWEPEP<  6@E$6@EE9E|)E9E}!E+%@EEPYG Nj}UWVEQUEE}} EQME<(6@E,6@ƙ506@Ep@6@}| FFFtmnEN}|ۉ5<6@}=D6@ƹtmn=nu f%@3 u%@+Fu%@;}f%@G46@586@H6@(6@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph(@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}l6@El6@E*@s3UtE]l6@E*@E*@E+@r5E+@r+@E+@AE0+@s6EE]@)EE8+@r݋EE 9P܃}t؁l6@6@v6@E@+@t}6@r05}fEf fEmE]mE܉E@0Ee H+@];r&=5|+l6@ul6@1}tCF0N<9l6@]Ћuԋ}ËEE0]@EEsEE 9P EEEE+@MU]vEu}fEf fEm]mE܉EFUR0EMm]E +@E5(+@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G t.@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W t.@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}`/@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wt.@UWP+@;=p.@r3}ÃG uUWP+@ WY;=p.@r}UWV}tlG t6G t3WVYG PY}@/@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG t.@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G t.@+G?}3W t.@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G t.@+G?}3W t.@+W;}WY3UWV}G G u}}&u6@;@GW t.@*h!YGt@O G Wt.@GGVYtG uO @u}G ?@WRt.@UWV}G t.@+G}G t.@Wu};7}7𐐐3ÐU@/@EEPhTu } E@/@3ø6ÐÐU WVSE9ET=T/@u@T@&V@`@c@f@i@l@o@@ @!?:%#_-.L@@@$@@@@@@@@@@ @$@/usr/lib/mail/mail.local!..mail.local-r$f$u/usr/lib/mail/mail.mn:..mail.mn-h$H$f$h$u/usr/lib/mail/mail.un%..mail.un-h$H$h$f$umachine aliases only?/usr/lib/mail/execmail..execmail$?m-m$?H-h$?H$H-f$f$u/usr/lib/mail/aliases/usr/lib/mail/aliases.hash/usr/lib/mail/faliases/usr/lib/mail/maliases/usr/lib/mail/maliases.hashalias file error: %s missing forward alias: %s%s: %s "%s" involved in alias loop no path in machine alias filepath unresolvedalias file error: %s Can't resolve machine aliases in %d passes machine alias loopbad machine aliasCan't send to users on %s: (%s) Don't know how to send to `%s' &&T03# rr :,Can't send to:From %s%s (wait) "%s"forkCan't send to: ERROR Can't send to: OK buildargv: no names to build arglist %dbuildargv: `$u' error in mailer template %s%c"%s"%s (%s) %ssalloc: no memory (fatal error) salloc: string table overflow (fatal error) /etc/systemidr @/bin/shNo local user named "%s" fork-caDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/utmp/etc/passwdrrUnknown error: @@@@ @8@B@\@n@@@@@@@@@@@$@3@C@R@c@w@@@@@@@@@@'@8@S@f@@@@@@@ @ @< @V @_ @h @q @ @ @ @ @ @ @ @!@!@$!@8!@J!@X!@p!@!@!@!@!@!@!@"@"@"@&"@9"@B"@K"@^"@g"@p"@"@"@"@"@ #@+#@i#@#@#@#@#@#@#@#@#@#@#@#@#@#@$@$@$@$$@.$@8$@B$@L$@V$@`$@j$@t$@~$@$@$@$@$@$@$@$@$@$@$@$@$@%@ %@%@%@(%@2%@<%@F%@P%@Z%@s%@}%@%@%@%@%@%@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device errorP&@T&@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFzM:W:WM:WV:W:W:W:WMbM:WnMM:WMMMMMMMMMM:W:W:W:W:W:W:W:W:W:W:WO:WT:W:W:W:W:W:W:W:W:W:W:W:W:W:W:W:WO:W:W:W:W:W:W:W:W:W:WVNORTMN:W:WM:W:W}O:W:W:WV:W2O:W:WO-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@?@?@p.@ ?@@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0.file gcrt1.s.text<.data0@.bss`/@.commentd/@.init_istart.filegvers.c.text.data0@.bssd/@.comment.file0gexecmail.cmain$makelog$Tl$Bmailback$!bI#usage$%panic $X'.textL.data0@ .bssd/@ .comment_sccsid0@.file:gconf.c.text\ .dataL@(.bssp/@.comment.filebgalias.calias\ h>alias1" $@falias $Bdofalias $MDdoalias $7Fputonq"$Hclearmq$JmaliashQL&$Ndomalias$6P&$DRputonmqWhT.text\  .data@@0.bssp/@.commentaqp/@errcountt/@mqx/@mqerror|/@myname/@metoo/@.filegascan.c0b&f:bFhsetaliasd$jaseeka$lendalias$MnD0$preadtok$XrtoktypeQ$tafpos$ vshash$UxNF$Ozslookup$|.text .datap@4.bss/@.comment abuf/@afpp@hfpt@afnx@apos/@atok/@nexttok/@lastc/@cont/@ishashed0@ptrsize0@nbpslot 0@nslots0@hashsize0@hashpos0@datapos0@.filegatolx.catolx$f.texth.data@.bss 0@.comment(.filegexec.cdeliver$X$'c btest"$~ncountf#$1.textm.data@.bss 0@.comment0myname 0@metoo$0@remote(0@remflag,0@hopcount00@.filegfindmailer.cm#hQ.text#T.dataT@.bss40@.comment8.fileggetname.cgetname#b-x$$6.text#d.dataT@.bss40@.comment@.fileghostprefix.cP$br.textP$t.dataT@.bss40@.commentH.filegmprint.cmprint$$.text$.dataT@.bss40@.commentP.filegnalloc.cnallocH&h4.textH&4.datal@.bss40@.commentX.filegndelete.cndelete|&hE.text|&H.datal@.bss40@.comment`.filegninsert.cninsert&h.text&.datal@.bss40@.commenth.filegnprint.cnprint|'$5.text|'8.datal@.bss40@.commentp.file*gperms.csetperms'$eckperms($g!.text' .datap@.bss40@.commentxaperms40@.fileAgsalloc.csalloc(b.slock=)$?0sunlock|)$2sreset)$4savestr7*bE6.text(.datat@T.bss80@.commentstrinfo80@strlock0@islockedt@.fileMgscopy.cscopy|*b)E.text|*,.data@.bss(1@.comment.fileYgstrccmp.cstrccmp*$rQ.text*t.data@.bss(1@.comment.filefgstriplocal.c+b~].text+.data@.bss(1@.comment(1@.filergstrnccmp.cstrnccmp+$j.text+.data@.bss,1@.comment.filegsysnames.csysnames,b:v.text,<.data@.bss,1@.commentsnames,1@stabX1@called@namelist1@.filegverify.cverifyX-$topipe].$tofileR/$|.textX-x,.data@0.bss1@.commentShell@.filegwhoami.cwhoami/b*.text/,.data@.bss1@.comment.filegctime.cctime/basctime0bct_numb1bJ.text/T .data@X.bss1@.comment1@cbuf1@.filegdup.s.textP1.datal@.bss1@.comment1@.filegexecv.cexecvd1$.textd1.datal@.bss1@.comment1@.filegfputc.cfputc1$0.text10.datal@.bss1@.comment1@.filegatoi.catoi1$.text1.datal@.bss1@.comment1@.filegcalloc.ccalloc\2b0cfree2 .text\2@.datal@.bss1@.comment1@.filegfread.cfread2$.text2.datal@.bss1@.comment1@.filegftell.cftellX3$.textX3.datal@.bss1@.comment1@.fileggetlogin.cgetlogin3b.text3 .datal@ .bss1@ .comment1@l@.file*ggetpwent.csetpwent4 3endpwent4 $pwskip4bDgetpwent#5h9\5hw.text4L0.datax@.bss1@(.comment6@PASSWDx@EMPTY@pwf@line1@passwd5@.file6gfgets.cfgets6b..text6.data@.bss6@.comment6@.file@ggetuid.s.text7.data@.bss6@.comment6@ .fileLgperror.cperror7 }D.text7 .data@.bss6@.comment6@.fileVgerrlst.c.text88.data@D .bss6@.comment6@.filebgprintf.cprintf88$_Z.text88`.data%@.bss6@.comment6@.filengmemccpy.cmemccpy8b3f.text84.data%@.bss6@.comment6@.filezgrew.crewind8 Cr.text8D.data%@.bss6@.comment6@.filegfgetc.cfgetc9$"~.text9$.data%@.bss6@.comment6@.filegfprintf.cfprintf49$].text49`.data%@.bss6@.comment6@.filegfseek.cfseek9$#.text9$.data%@.bss6@.comment6@.filegfilbuf.c_filbuf:$.text:.data%@.bss6@.comment6@.filegmemset.cmemset;b).text;,.data%@.bss6@.comment6@.filegsleep.csleep;.awake<$.text;.data%@.bss6@.comment 6@env6@.filegalarm.s.text<.data%@.bss 6@.comment 6@ .filegpause.s.text<.data%@.bss 6@.comment 6@ .filegsetjmp.s.text<@.data%@.bss 6@.comment 6@ .filegsprintf.csprintf =$F.text =H.data%@.bss 6@.comment 6@.filegstrchr.cstrchrh=b+.texth=,.data%@.bss 6@.comment 6@.filegstrcmp.cstrcmp=$8.text=8.data%@.bss 6@.comment 6@.filegstrncpy.cstrncpy=b> .text=@.data%@.bss 6@.comment 6@.filegstrtol.cstrtol >$.text >.data%@.bss 6@.comment 6@.file+gexecl.cexecl(@$#.text(@.data%@.bss 6@.comment 6@.file5gexecve.s.textD@.data%@.bss 6@.comment 6@ .file?gfork.s.textX@.data%@.bss 6@.comment 6@.fileIgtime.s.textt@.data%@.bss 6@.comment 6@.filehgtime_comm.c@hMgmtimeGAhyOtzsetB QgetznameCb{Sgettime.DbUgetdigit EbTWgetdst^E$Ygetusa6F [sundayF$T].text@E .data%@t.bss 6@,.commentL6@ 6@end_dst$6@%@.filetgmktemp.cmktempGbl.textG.data\&@.bssL6@.commentL6@.file~gaccess.s.textG.data\&@.bssL6@.commentL6@ .filegttyslot.cttyslotG$.textG .data\&@ .bssL6@.commentL6@\&@.filegstrncmp.cstrncmpH$G.textHH.datah&@.bssL6@.commentL6@.filegstrrchr.cstrrchrIb/.textI0.datah&@.bssL6@.commentL6@.filegttyname.cttyname8Ib/.text8I0.datah&@.bssL6@ .commentl6@rbufL6@devh&@.filegfstat.s.texthJ.datap&@.bssl6@.commentl6@ .filegstat.s.textJ.datap&@.bssl6@.commentl6@.filegstrcat.cstrcatJb0.textJ0.datap&@.bssl6@.commentl6@.filegunlink.s.textJ.datap&@.bssl6@.commentl6@ .filegdoprnt.cJ$D_dowrite$K$k_doprntK$'.textJ.datap&@Y.bssl6@.commentl6@_blanksp&@_zeroes&@uc_digs&@lc_digs&@lc_nan&@uc_nan&@lc_inf&@uc_inf&@.filegctype.c_$.text_.data(@(.bssl6@.commentl6@*@.filegecvt.cecvt`bfcvt`bcvt`bT.text` .data*@.bssl6@P.comment6@bufl6@.filegfwrite.cfwritec$.textc .dataP+@.bss6@.comment6@.file+ggetenv.cgetenvdbA!nvmatchdb@#.textd.dataP+@.bss6@.comment6@.file7gmemchr.cmemchr8eb1/.text8e4.dataP+@.bss6@.comment6@.fileAgread.s.textle.dataP+@.bss6@.comment6@.fileMgstrcpy.cstrcpyeb'E.texte(.dataP+@.bss6@.comment6@.fileYgstrlen.cstrlene$ Q.texte .dataP+@.bss6@.comment6@.filecgwait.s.texte .dataP+@.bss6@.comment6@.filesgfopen.cfopenehgfreopenfh"i_endopen#fh9k.textet .dataP+@.bss6@.comment6@.filegfindiop.c_findiop\gh,w.text\g,.dataP+@.bss6@.comment6@.filegflsbuf.c_cleanupg "fcloseg$fflush1h$`_flsbufh$7_xflsbufi$_wrtchkPj$_findbufj$_bufsynck$:.textgP%.dataP+@.bss6@.comment6@.filegclose.s.textk.dataP+@.bss6@.comment6@ .filegdata.c.textk.dataP+@.bss6@.comment6@.filegisatty.cisattyk$9.textk<.data@/@.bss6@.comment6@.filegi386_data.s.text,l.data@/@.bss6@.comment6@$.filegioctl.s.text,l.dataD/@.bss6@.comment6@ .fileglseek.s.text@l.dataD/@.bss6@.comment6@ .filegmalloc.cmallocTlbfreen 3realloc/ob.textTl9.dataD/@.bss6@.comment6@allocpD/@alloctH/@allocxL/@allocendP/@.filegmall_data.s.texto.dataT/@.bss6@.comment6@$.filegmemcpy.cmemcpyob0.texto0.data\/@.bss6@.comment6@.file gopen.s.textp.data\/@.bss6@.comment6@.filegsbrk.s.text0p@.data\/@.bss6@.comment6@nd\/@.file gwrite.s.textpp.data`/@.bss6@.comment6@ .file+gsignal.s.textpt.data`/@.bss6@.comment6@ p.file5ggetpid.s.textp.data`/@.bss6@.comment6@ .file?gcerror.s.textq .data`/@.bss6@.comment6@ .fileIgcuexit.s.textq.data`/@.bss6@.comment6@ .fileSgcrtn.s.text0q.data`/@.bss6@.init_start_mcountenviron`/@exitq P@ErrcountT@MetooX@Hopcount\@nflag`@fflagd@rflagh@6@Daemon6@ 6@Lsysname6@From6@Tfn6@Lfp6@Mfp6@Debugl@signalptimet@_iobP+@unlinkJ+@getuid7openpwriteppMailtabL@Metanetx@7@Execmail@A@M@W@a@l@w@statJfstathJ_ctype(@waiteforkX@closekdupP1lseek@l_cerrorqexecveD@t.@readlesys_nerr@errno@/@@_lastbufp.@alarm<setjmp<pause<longjmp<timezone%@altzone%@daylight%@tzname%@getpidpaccessG_sibuf6@_sobuf;@_smbuf?@ioctl,l_allocsT/@sbrk0pbrkQpend@@sigholdpsigrelsepsigpausepsigsetppetext0qedata`/@makeinputgetlognamemaliasnohashmaliaserrreadaliasnextaliasopenaliasschecksumexecmailerbuildargvfindmailergetuseridhostprefixstriplocalLocalnamesutmp_filefgetpwentlocaltimestart_dstmonth_sizeutmp_file_lowdigitsetchrclassfirst_call_sigreturnDerrcountStarttimeLocalnamesLocalmailerNormalnetUucpgatewayAliasfileAliashashFaliasfileMaliasfileMaliashash_bufendtabsys_errlistsigignoresigpausepsigsetppetext0qedata`/@makeinputgetlognamemaliasnohashmaliaserrreadaliasnextaliasopenaliasschecksumexecmailerbuildargvfindmailergetuusr/lib/mail/mailhelp.cmd100644 3 3 2222 4201130562 12035 37777777777 HELP: Mail Commands PRINTING MESSAGES AND HEADERS OTHER COMMANDS , +n, -n n-th next message = Print message no. p Specified messages !command Run shell command t First five lines A name... Print global aliases h [+n, -n, ] Print headers a name user... Alias name to users c directory Change directory DISPOSING OF MESSAGES list Print command list d or u Delete or undelete m Mail to users e or v Edit with ed or vi mov msg Change order of msgs f or F user... Forward to users q or x Quit or exit ho Hold in mail box sh Run subshell l Print on lineprinter so file Read cmds from file mb Save in mbox st patt Search for string patt r or R Reply to sender(s) set option... Set options s or w file Append to file uns option... Unset options A is an optional list of message numbers & users separated by spaces. A user is a login name, alias, or distribution group name. For help while composing a message, type "~?" on a line by itself. For help on options type "set ?". ubshell l Print on lineprinter so file Read cmds from file mb Save in mbox st patt Search for string patt r or R Reply to sender(s) set option... Set options s or w file Append to file uns option... Unset options A is an optional list of message numbers & users separated by spaces. A user is a lousr/lib/mail/mailhelp.esc100644 3 3 1327 4201130562 12051 37777777777 HELP: Mail Compose Escapes EDITING HEADING FIELDS OTHER COMPOSE ESCAPES ~s subject Set Subject field ~!cmd Execute shell command ~t users Add users to To list ~:mail-cmd Execute mail command ~c users Add users to Cc list ~~ Begin line with tilde ~b users Add users to Bcc list ~A [name...] Print global aliases ~R users Add to Return-receipt ~a name Set/print aliases ~h Edit all fields ~p or ~P Print message so far ~q Abort message READING IN MESSAGES ~w file Write message to file ~r file read file ~d read dead.letter EDITING MESSAGE BODY ~m read messages ~e or ~v Use ed or vi ~M same; doesn't tab ~|cmd Pipe message thru cmd Typing two interrupts is the same as ~q. rs to Cc list ~~ Begin line with tilde ~b users Add users to Bcc list ~A [name...] Print global aliases ~R users Add to Return-receipt ~a name Set/print aliases ~h Edit all fields ~p or ~P Print message so far ~q Abort message READING IN MESSAGES ~w file Write message to fiusr/lib/mail/mailhelp.set100644 3 3 1725 4201130563 12075 37777777777 HELP: Mail Options askcc Prompt for carbon copies after composing asksubject Prompt for subject before composing autombox Automatically save messages in mbox autoprint Print next message after deleting chron List messages in chronological order dot Allow dot (.) to terminate messages EDITOR= Use editor set by string escape= Character for compose escapes (default=~) ignore Ignore interrupts mchron diplay messages in chronological order but list them in numerical order metoo Send to self when self is in an alias list nosave Don't save aborted messages in dead.letter page= Set page size. "set page" uses page size of 23 quiet Don't print sign-on header and message numbers record= Copy outgoing messages to file set by string SHELL= Use shell set by string for shell escapes toplines= Number of lines typed by "top" command VISUAL= Use visual editor set by string verify Verify mail recipients Use "set" with no argument to print current option settings. umerical order metoo Send to self when selusr/lib/mail/mailrc100644 3 3 32 4201130563 10705 37777777777 set mchron set asksubject ve Don't save aborted messages in dead.letter page= Set page size. "set page" uses page size of 23 quiet Don't print sign-on header and message numbers record= Copy outgoing messages to file set by string SHELL= Use shell set by string for shell escapes toplines= Number of lines typed by "top" command VISUAL= Use visual editor set by string verify Verify mail recipients Use "set" with no argument to print current option settings. umerical order metoo Send to self when selusr/lib/mail/mail.local100755 3 3 65234 4201130565 11555 37777777777 L! Yt@.textY .datat@t@tZ@.bssl*@l*@.comment0ljÐETl*@RU RP PYYjÐUWVjjXE |0@F=/u5|0@>uꍅPh|&@"hU@cY}hZ@jHh@.Yh@z2Y5hWjX=tXG|hn@h@IM0@uh@hp@jGP PPh@ hh@u u=@t&=@t=@u @g h@1Y5@WYUju&W=tu uWUWVS0@ME E 8G=ruzEM=}'@@5|0@hK@h|&@d E E @h\&@hh0@ h0@h@J a'@@5|0@hK@h|&@ S9E~E P=-&9E'@@5|0@hK@h|&@ =@u62uPYEu@E8W"Y@h0@W%Yh0@Y0@50@5@h@h@50@%ޅt 0@h\&@hh0@ t)7h0@h@!3h@h0@!t50@h@50@LY50@rY0@0@@ t50@KYh@jJ, 50@KYh@h@I0@lh@h@jG Sh0@h@! tZYE;EuEu E=Eu h@jE U5|0@h@h|&@ u$u uuuuu h|&@ h@h|&@=@th@h|&@E@h@;"Y5@{HYUh@"Y5@ZHYUhujuG=tuuG7h@!Y5@ HYU@@5|0@hK@h|&@  h@!Y5@GYÐUWV}p@u~@@|;=@}4p@Ƌu}ÐU@WVS=*@u}t Eu ,=*@u 7G*@5*@hH@EP E‹hW u VAY}G=/u}?up*@uhT@W 3ۋw9L*@t EPW =u9L*@t?ZjYU,;W- YC|*jYWEP=q*@EPY<@t-hc@h|&@@ 5L*@W4@h|&@% @]u}U=*@thp*@Y*@UWVS=T @t+@T @hf @hX @Y:Eu+@+@+@*@*@EuhP G?tPhh @utH=#u3ÐU$WV|Yjh @%=|Djk$PV49 j$EPVQ2 =$tV8Y3uԋ}V8YE܄u3jEPh+@T +@+@ŐUWV}t9~u=Ƌu}U= @uh @h @52 @5 @YU= @t5 @3Y @UW}G?t=:t = u= u ?tGNj}U= @uh @h @1 @u35 @YUWuhh+@_ =/@WQY=/@WBY=:j EPW EW0YPj:WP0 9Eu`WY}| `9E~aE/@t4=:t*j EPW EWj0YPj:W/ 9Et3}WY}| `9E~aE/@=/@=/@W^Y=/@WOY=/@W@Y=/@G?t =,u?tG=/@/@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuGEtE+E؋E)F>}3V )@+V;}V5Y}u +gEEvÐ.:Ð>:ÐUWV} _0t?F EF F F3҉V)@=at=rt=wt3u}ÀN jju4 N G=+uf N ȸ*z9L$Q3ÐUWVS}u ]GF:u Nj]u}M}3UW}WT0YjjG PT4 GGg G tg }ÐUW}} WY}ËGGUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG PU3 +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P2 ECG t8W.YG t g GGuu G P2 E9Eus3lUWV}uW1YG uG tO G Dt1\&@"u}F @tV.Y;5|)@rGGG tG )@+GPwG P+ | GG듸9tO O G tg aUWV}G tG t w14Yg E GuaO }8u1@5@GW )@GGu}G 9@WR)@G W)@V0YtO @맸53ÐU}u3jYEh%j4EEE}t6E9Ev)EE&E+EEEEEMuj4h/@YuubYljUYE}| uj]4} }}}t EEP YEE2Ujh/@EøÐ~4ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPu$(Y@P.YE}u3uu'UPWVS}u ]}CKt GFut GKuE]u}ÐU WVS}uE} tE 8$E#@u5GEE#@uE=+t =-u EGEu309Et "G=xt G=XuE#@tEE#@t E-0#E#@t E-WE-7E;| 3]u}Ãu;09Eu1G#@tG=xt G=Xu EE#@t E-0#E#@t E-WE-7+EGE#@tEE#@t E-0#E#@t E-WE-7E;|} tE 8}t;00t3Ð T$tÐUW(E+ @EEPY= @iGQiWkW<E=/@u=/@uWEPEP< /@E/@EE9E|)E9E}!E+ @EEPYG Nj}UWVEQUEE}} EQME</@E/@ƙ5/@Ep0@}| FFFtmnEN}|ۉ5/@}=0@ƹtmn=nu f !@3 u!@+Fu!@;}f !@G/@5/@0@/@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph#@v 3WW YkUjuuuu u#Ujuuuu uU$WVS},0@E,0@E%@s3UtE],0@E%@E%@E &@r5E&@r &@E&@AE<&@s6EE]@)EED&@r݋EE 9P܃}t؁,0@z0@vz0@EL&@t=0@r05}fEf fEmE]mE܉E@0Ee T&@];r&=5|+,0@u,0@1}tCF0N<9,0@]Ћuԋ}ËEE0]@EEsEE 9P EEEE$&@MU]vEu}fEf fEm]mE܉EFUR0EMm]E,&@E54&@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G )@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W )@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}l*@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W)@UW\&@;=|)@r3}ÃG uUW\&@ WY;=|)@r}UWV}tlG t6G t3WVYG PY}L*@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG )@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G )@+G?}3W )@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G )@+G?}3W )@+W;}WY3UWV}G G u}}&u1@5@GW )@*h!YGt@O G W)@GGVYtG uO @u}G 9@WR)@UWV}G )@+G}G )@Wu};7}7𐐐3ÐUL*@EEPhTu } EL*@3ø6ÐÐU WVSE9ET=`*@u temp file write errorrcan't reopen %sno memory"' no memoryno memory%s: can't send to %s %s: mailbox %s locked a%s: cannot append to %s %s: no remote system/user: %s %s: remote system name too long: %s!%s !rmail)/etc/default/mailspoolonly-rpipe to uux%s: uux exec failed %s: uux execution error %s: no pipe available for %s %s: can't fork for %s exec wsomewhere remote from %s%s: %s: write error \%03ocan't return receipt via %s%s%s %sTo: "%s" %s Subject: Re:%sDate: %s %s: received okdelivery error: %d (%s) write error on pipe to %s%s exec failed%s execution error%s: Mail delivered ok; can't deliver return-receipt. Usage: %s [-r sender] people ... Unknown errorOk@@@@@2@caller error can't creat lock temp file %s: %d link error: %s: %d stat error: %s: %d unlinked stale lock file %s too many retries: %s /tmp/%u.mlk/tmp/%.10s.mlkmailock: @@@@@@@ @" @6 @J @ Bad usageData format errorCannot open inputUser unknownHost unknownService unavailableInternal errorOperating system errorSystem file missingCan't create outputI/O error/etc/systemidr Day Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDecr/etc/utmp/etc/passwdrr\!@`!@W`/Lw/K:/JMFw/GMT TZ/etc/utmp/dev/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF6~@~@6~@?~@~@~@~@66~@66~@7)7)7)7)7)7)7)7)7)7~@~@~@~@~@~@~@~@~@~@~@@9~@=~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@8~@~@~@~@~@~@~@~@~@~@?H7@9Z;=C7H7~@~@<7~@~@8~@~@~@@~@v8~@~@8-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@9@9@|)@9@<;@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0|)@9@usr/lib/mail/mail.mn100755 3 3 51104 4231442730 13745 1usr/bin/remote37777777777 usr/lib/mail/exec.mn100755 3 3 66220 4201130572 11071 37777777777 L-! `Q( 0@.text`Q .data0@0@(0R@.bssX,@X,@ .comment8XlÐETX,@RU RP PQjÐUWE 0Y.@9E~.E P=-uE PB=lu l@ME jjPjjPjjPhNjO9EuUht@!Y}Fh@h}@jEuuu uuuuuu$h@)Yu*PY i.@uAh@jHuuuu uuuuuq$h@)YuOY5.@h@=l@t#uuu uuuuuu#$.@@.@=X,@+j7h@( u.@.@?uи9E(*h@(Y}ËE E 0YMU$WVSjh@NEh@jE0$h@W(YNY`jjuI OjuuI jPuB ~ fuu IY3EEE3Ey3f?t9jh@GP& u"jGPEPy% EEPYE}u*uffu+Ћ¹ЉUEMyEhPuA E9}UWVSuh@=l@t>i$h@uAEuhuh@=l@t>$3ÍE;s=.uFlj0uZYP5Yth@VX#u+Ћ¹=}Yuh!@=l@t>,$3'Uǃ0YfEf~E=fMEPh;@EP" UUUUGU3h>@4Q"uE҉C<uuuuhA@=l@t>3$7hV@=l@t>$Eju5.@Q# 7YEu"7h^@jjuEPI EuYuhu@=l@t>2$WuEP@ EKE=~"EPh~@jjuEP Euh@jjuEP Eu?Y}tVh@=l@t>t$Yu"YEgUWVE;sF׈E} u Y EP@t u;uu3ÍUWV}hP@WthP@"YPWqu P@u}àp@Eh@Yt6h@=l@t#uuuuuuuuu_$Y3몠p@p@h@Yt9h@=l@t#uuuuuuuuu$Yp@h@Ytfjh@Vi uRFVY.@uAh@jGuuuuuuuuu$h@ YuGY5.@h@=l@t#uuuuuuuuuP$p@uQE F׊ G?t= tE;rEPYtF==u =/t3j/Y2U$Wh@EP:EPgYhEPP@Yu YE E}_h$@jGH $h@oYEY}j^@YE @ P Yjuj@ W3@YG2|jEPeD}3EtjG?EYuYh0@YX,@.@uEp=8,@| `@98,@|58,@ha@h\,@ \,@8,@$@PEp5.@h5@jDYEPU9Y;}tu}EuhM@=l@t> $PEP|PE @ P`}cEPh]@jE? $h@fYCY E%E}EE@=Ruj|YQ;}gEPh~@=l@t> $EPY3ËE@=-t#=Mt+=muEu9Eu4}u t#}h@!P7EPh@=l@t> $EPY.E%Puh@!P9EuEEEt}h@EP6EueEPh@jE $h@.YnAY Mh@=l@t>$YE}uE@=Mt#9E}E Ejuu Mh@=l@t>$YEP;Y5.@EP4h @h @EPEE0EPE8t(04YEP4YЍRP|E8th @EPu YP!PEPh@uuuu UWVu0u,u(u$u uu=l@t>D@<840,($$5.@3YHh@3YHЍRRYEh,@5.@h&@uEP :tKp 3YHEp3YHЍRR)YEEpp h4@u EPUE5h@YŰMEE̋UE:@E̋UEM E̋UEM E̋Uh=@LP2LPgYhG@LP2ufLPhI@jIXTPLHD@<8W$h@~Y4=Y uhb@W Extphz@Wj h@W\}th@WHu0u,u(u$u uuW* } Wj 4 G G}}WP4 GGֈE} uWY EP@uE@ t_h@jJ\XTPLHD@<$h@<Y8|<Y} h@W;}WP3 GGֈE } u Y E P@uE @ t_h@jJ\XTPLHD@@hh(@ j:YEP.YE;Et 9Eu}}EuhQ@=l@t>XTPLHD@<8%$LPGYEu E=t@D3U=8,@| `@98,@|58,@ha@h\,@ \,@á8,@$@UWV} G=/u?uƋu}U=l@t#u(u$u uuuuu uK$Uhq@jGuuuuu uuuu$h@CYu8YU5.@h@hh(@@ u(u$u uuuuu uhh(@ (h@hh(@ Uu,u(u$u uuuuu $h@Yu7YÐUWV}@u@@|;=(@}4@Ƌu}ÐUPWVSE@%ؿ|,@|-|,@ ȸ?u7;r3jVuh@hh(@0 jGN7YGw9_r)GGEGE]u}à ,@xh@hh(@ jG6YUW3#k ,@k |,@ JHJHG r@}U@UWV=@t,@|,@|,@(?t G-|,@ ȸG ,@rЋu}Ã?t'>u"F-|,@ ȸFNj֋ JHJH ,@rUWVS}Džu 3]u}ËF8u+PY؋FG҈uUW#t?u3}ÃtG쐐UWVS=@t-@@h@h@*Eu-@-@-@l-@-@EuhP G?tPh@ utH=#uutGNj]u}3U5X,@u u\ ÐUPWVS}Ey%@uJGy%@u=+t =-u EGy%@u 3]u}ø0+Ëk 0+Gy%@uރ}t뾋븐UWEE EP*YtujW Nj}Uuq-YÐUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P4* E}|EE}øUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V l+@+V;}V(Y}u +gEEv-ÐUPWE Ed(@ud(@t* d(@hX(@uu= d(@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W|$YjjG P|( GGg G tg }ÐUPWEEE@ uE@ t(EH uuu g E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P' +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P8' ECG t8W #YG t g GGuu G P& E9Eus3lUWV}uWa%YG uG tO G Dt1H(@"u}F @tVb"Y;5h+@rGGG tG l+@+GPwG P] | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐU}u3jYEh`(j)EEE}t6E9Ev)EE&E+EEEEEMuj)hL.@YuubYljUYE}| ujQ)} }}}t EEP YEE2UjhL.@EøÐr)ÐD$Xpxh Z`P+␋T$D$;j tZrzj bu@bUWEEEEEE2EEEPuu  ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPuY@P#YE}u3uuUPWVS}u ]}CKt GFut GKuE]u}Ð;''t3Ð T$tÐUWVS}3'uNYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!'ÐUW}y%@t z&@Nj}ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐&3Ðv&3ÐUWVS}u ߋG8uOGF҈uË]u}ø .&3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  l+@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlT%@Dž\9PtP؉PNKPPoYh~PW =uh~Phx%@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}d.@Ed.@E'@s3UtE]d.@E'@E'@E'@r5E(@r (@E(@AE((@s6EE]@)EE0(@r݋EE 9P܃}t؁d.@.@v.@E8(@tu.@r05}fEf fEmE]mE܉E@0Ee @(@];r&=5|+d.@ud.@1}tCF0N<9d.@]Ћuԋ}ËEE0]@EEsEE 9P EEEE(@MU]vEu}fEf fEm]mE܉EFUR0EMm]E(@E5 (@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G l+@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W l+@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS}X,@u'3]u}ËÃ0Wtۃ;uUWV}u  G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wl+@UWH(@;=h+@r3}ÃG uUWH(@ WY;=h+@r}UWV}tlG t6G t3WVYG PY}8,@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG l+@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G l+@+G?}3W l+@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G l+@+G?}3W l+@+W;}WY3UWV}G G u}}&u.@2@GW l+@*h!YGt@O G Wl+@GGVYtG uO @u}G 6@WRl+@UWV}G l+@+G}G l+@Wu};7}7𐐐3ÐU8,@EEPhTu } E8,@3ø6ÐÐU WVSE9ET=L,@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@6@6@h+@6@p8@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0h+@6@usr/lib/tabset/beehive100644 0 2 244 3760706462 11446 37777777777                                                                                  h+@6@usr/lib/tabset/diablo100644 0 2 130 3760706463 11264 37777777777  9 2 1 1 1 !1 )1 11 91 A1 I1 Q1 Y1 a1 i1 q1 y1 9                                      h+@6@usr/lib/tabset/std100644 0 2 207 3760706463 10631 37777777777  3 1 1 1 1 1 1 1 1 1 1 1 1 1               h+@6@usr/lib/tabset/teleray100644 0 2 71 3760706464 11464 37777777777 GY9(FY90FY98FY9@FY9HFY9PFY9XFY9`FY9hF 1 1 1 1 1 1 1 1               h+@6@usr/lib/tabset/vt100100644 0 2 237 3760706465 10716 37777777777   H H H H H H H H H H H H H H H H   h+@6@usr/lib/tabset/xerox1720100644 0 2 244 3760706465 11521 37777777777 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 h+@6@usr/lib/terminfo/remove.this100644 3 3 0 4201173234 12557 37777777777 usr/lib/acct/acctcms100755 3 3 102554 4201127107 11162 37777777777 LE! e T@.texte .dataT@T@Tf@.bss4%@4%@ .comment84ÐET4%@RU RP P9ejÐUPF&@>&@6&@.&@&&@&@&@&@&@hU @u u  E=uq=&@tE 0h^ @hD!@' jdY=&@thj h&!\&@&E 0h @hD!@& jTdYE-a^=SK$@j8h `&@u9E 0h @hD!@v& jcYE D@4CYD@E9D@|݃=&@tE =&@tP=&@t[\Pj85X&@5`&@#=&@t&E D@4~YD@E9D@|݃=&@t8\=&@t=&@tPj 5X&@5\&@}"=&@t r^hUXh$!@h @u.X uuh @hD!@ % Ã=&@ EPYh$!@jj EPX=tjEPEP3 EEPYEEE]PYEEE5l@]EPYEE5t@]EPYEE5@5|@]EPjYEEP\YEEPYh$!@jj EP=6Uh$!@h @uV uuh @hD!@# Ã=&@; EPVYh$!@jj8EP=tjEPEP~2 EPYEE5@ٽ|f|f f~٭~۝t٭|tEuEEPuu Eu]E9E~EEEEEPYxۅxE]PYpۅpE5@]EM]E@u@Em]EPYEE5@]EM]E@u@Em]EP`YEE5@5@]EM]E@u@Em]EPYEEM]E@u@EE]EPYEEM]E@u@EE]܍EP'Yh$!@jj EP=UWVS}3ۋ!<t=?k‹Crڅ}؋ƹ3+j\&@RWV8 t&FC\&@<tuu"h @hD!@ ]u}á\&@ ujW\&@Rt/ W\&@RUWVS}3ۋ!<t=?k‹Crڅ}؋ƹ3)jk8`&@RWW7 t$FC`&@k8<tuu"h @hD!@]u}á`&@k8 ujWk8`&@R{. Wk8`&@RXUWVh@Y3^;tY\&@<tI\&@и9B2\&@R\&@R\&@G|u}UWVh@vY3^;tY`&@k8<tKk8`&@С`&@k8RT ,k8`&@Rk8`&@Ri`&@k8G|u}UWV}u FGF G _ FG_FG_FGFGu}U WV}u FGF G GEFEGEFEGEFEGEFEG EF EG$EF$EG(EF(EG,EF,EG0EF0EG4EF4Eu}UWV3\&@<j\&@R\&@R+ \&@LL\&@ЍR  \&@A \&@ЍR \&@A\&@ЍR \&@A\&@LLLLFG5X&@u}UWV3`&@k8<pjk8`&@Rk8`&@R* `&@k8Lk8Lk8L k8L k8`&@ЍRk8 `&@Ak8`&@ЍRk8 `&@Ak8`&@ЍRk8 `&@Ak8`&@ЍRk8 `&@Ak8`&@ЍR k8 `&@A k8`&@ЍR$k8 `&@A$k8`&@ЍR(k8 `&@A(k8`&@ЍR,k8 `&@A,k8`&@ЍR0k8 `&@A0k8`&@ЍR4k8 `&@A4FGq5X&@u}UWV}u F G u 3u}G F vUWVS}u =&@t =&@u=&@uK=&@uBGFFGtPFGGFwN]܋u}Ã=&@t3؍FGu3ʍGFv밸UWV}u FGu 3u}GFvUWVS}u =&@t =&@u=&@uK=&@uBG$F$F G tPF$G$G F wN]܋u}Ã=&@t3؍F G u3ʍG F v밸UWV}u F9Gu 3u}ËG9F~UWVS}u =&@t =&@u=&@u9=&@u0GG VV ;tJFF WW ;T]u}Ã=&@t3؍GV9u3ǍFW9~몸UWh@Yhl@YhJ @Y3\&@Rh@G;=X&@|jhL @h@<& h@2YhS @Y3\&@RYG;=X&@|}UW}WhU @xwh\ @hG\$ha @Q G \$hh @: G\$ho @# G @u@G G G\$hv @ uGG w\$h| @ G@u@GGG \$h @ wh @wh @x}UW3 h4!@jj \&@RFG;=X&@|؋}UW=&@t=&@t h @Y7=&@t h @Y!=&@t h @Y hH @Y=&@u =&@t &@3&@th@YhT @h @Yh@ @Yh @Y3k8`&@Rh@G;=X&@|jh @h@# h@0Yh @@Y3k8`&@RYG;=X&@|}UW}=&@t=&@t WY}Ã=&@u =&@t=&@t3PWWeYUWV}u G<yW5@G45@G \$5@g G\$5@L G\$5@1 G @uG @GG \$5@ G<u GGG4\$5 @ G @uG @GG\$5@m G(\$5@R G0\$5@7 h @*Yu}UW}W5@ w5@w 5@G$G \$5@ G\$5@ G\$5@ G\$5@ G\$5@l GG @u @GG$GGG \$5@( GG uGGGG EEG\$5 @ GG @u @GGGGG\$5@ G,G(\$5@ G4G0\$5@n h @a Y}UW}W5@E GG P5@0 G$G \$5@ GG\$5@ GG\$5@ GG @u @GG$GGG \$5@ GG uGGGG EEG\$5 @Y GG @u @GGGGG\$5@ G,G(\$5@ G4G0\$5@ h @ Y}UW3h4!@jj8k8`&@R^?G;=X&@|ڋ}ÐUTWV= @tNEEE Ej$EPYPEP E@j$EP}YPEP E9Eu3EPvYt@tEU+UPu}h @EPEEUPEE%@EPVugt(VEPwtEV M+M EE@VEPEF UЋEEE܋FEFE>}E9E6UPWu+h @hD!@  @8%@}ÍEPYEP(YGl @9Gu g9G @9G~h @h @hD!@0  @UWV}t9Gt3+8%@9G|9Gu u}Ë8%@9G F<8%@}3UWVS333h@h @?Eh @Yu(AY3dhl|=*GtPxPh @h@|P =th @h(@hD!@ CI9 @| 9 @~5 @hN@hD!@ Cxd|cx=Sx|Fx<}8t|+t=t|t<|hj@hD!@P C%@xd%@x=u3xd%@%@%@td%@t=u3td%@%@%@<%@;%@%@%@|*h@hD!@^ h@hD!@L CpPh@|P 9p| n9p~ph@hD!@ C0FpJ8%@uh|P PuY>Yu+}&FPh8%@8%@3UPWVSu IF33:UЋEO9~ E4GEEU W4G;~…]u}UPWVS}u }3 G֊ FC;]|E]u}ÐUWVSf} %%NË]u}ÐUWV}u F9Gt9G|!3u}ËF9Gt 9G| 39}3UWV}u +V+Wk<‹V+Wi‹u}UPWV98@ueE9D@}#E D@ =-u E Au u}h<@E D@4u D@΋E D@ 8@=H@:tWu=@@tOLjEE E 0,:YPE 0jD h @:YPh @jD jEPjD E D@ 8@@8@uD@8@?F=:8@@U D@t8@@U D@L@D@@D@;E|l=@@tOLjEE E 0I9YPE 0jC h@.9YPh@jC jEPjC 8@?GE D@D@ L@8@8E D@ 8@@8@u8@D@L@UWEE EP ?YtujW  Nj}UuAYÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwuB ÉE)G?}3W H$@+W;}W=Y+Å{EhUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V H$@+V;}V<Y}u +gEEvUWVP@@9%@s %@E%@P<Y@E%@E%@E EURu+ËE9%@sˣ%@P5@>@UWVS%@/u EPEE uuEÉEE +EE;vD]EE3uÉEEEEE}E +ËE+ÉEPW ]u};}stuW%@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu%@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u %@|?=@t6SW5@= SVW= S5@V= ]u}ÊEGFUKuUWVS}u ]%@E9E|R=@tIuW5@>= uSW1= uVS$= u5@V= ]u}ÊEGCFUMuӐUPWEEE@ uE@ t(EH uuu g E@ t }ËUPE EPuh$!@d UPEEPu uI UW}EEEljEEW2YEE2uu EP }ÐUWVS}u Dž%@%@ %@Wq=~*uDžF DžDžk -0FU@u؃u DžÉ=lt h9uF؅[uPVU@tDžlV@؃nt_=%@uVctQ[tL%@} W@ Y GGU@u %@W2=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf%@fl9uEEP%@{EEP%@dEPWSt'=%@tu /$Fu U@td=%@u%@} W Y GGU@u %@W|=u%@y%uF؃%%@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE%@}WyY3]u}ËGG=+t=-t =0t8EM%@} W(Y GG؃0i9E }9Eo%@} WY GGE@Dž\h~PW =uh~PhT@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}&@E&@E| @s3UtE]&@E @E @E @r5E @r @E @AE!@s6EE]@)EE !@r݋EE 9P܃}t؁&@V&@vV&@E!@t&@r05}fEf fEmE]mE܉E@0Ee !@];r&=5|+&@u&@1}tCF0N<9&@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G H$@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W H$@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}4%@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉WH$@UW$!@;=D$@r3}ÃG uUW$!@ WY;=D$@r}UWV}tlG t6G t3WVYG PY}%@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG H$@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G H$@+G?}3W H$@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G H$@+G?}3W H$@+W;}WY3UWV}G G u}}&u&@*@GW H$@*h!YGt@O G WH$@GGVYtG uO @u}G .@WRH$@UWV}G H$@+G}G H$@Wu};7}7𐐐3ÐU%@EEPhTu } E%@3ø6FÐ2ÐU WVSE9ET=(%@u<,%@ (%@(%@ ,%@%@,%@%@(%@%@$%@E@3؋=%@E&;5%@(%@E@E=w=$%@jY%@@;t?3Ee ƹ3tL3+‰EEE2%@+$%@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5$%@%@0E+E-%@@;t%@%@%@(%@~Љ%@;5%@v%@ %@%@ 9=$%@u %@$%@G(=%@95$%@u=$%@7tލ;r;l%;UWV}5%@%%@9u5$%@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ %@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$0%@Ru 0%@+D$ø!T$0%@3øÐ%@ÐT$X@@(#)acctcms 5.3b of Jan 27, 1988@(#)acctcms.c 1.1 87/08/11 ***other***other @ @ @' @. @5 @; @A @G @N @VVVVVVV&VVV.F>VV6N @ @ @@N@ @? @? @@???COMMAND NUMBER TOTAL TOTAL TOTAL MEAN MEAN HOG CHARS BLOCKS NAME CMDS KCOREMIN CPU-MIN REAL-MIN SIZE-K CPU-MIN FACTOR TRNSFD READ ??COMMAND NUMBER TOTAL TOTAL TOTAL MEAN MEAN HOG CHARS BLOCKS NAME CMDS KCOREMIN CPU-MIN REAL-MIN SIZE-K CPU-MIN FACTOR TRNSFD READ COMMAND NUMBER TOTAL CPU-MIN REAL-MIN MEAN MEAN HOG CHARS BLOCKS NAME (P) (NP) KCOREMIN (P) (NP) (P) (NP) SIZE-K CPU-MIN FACTOR TRNSFD READ PRIME TIME COMMAND SUMMARY NON-PRIME TIME COMMAND SUMMARY TOTAL COMMAND SUMMARY PRIME/NON-PRIME TIME COMMAND SUMMARY ??????%-8.8s%8ld%12.2f%10.2f%13.2f%8.2f%8.2f%8.2f%13.0f%11.0facjnspotUsage: %s [-acjnspot] [file ...] %s: Cannot allocate memory %s: Cannot allocate memory racctcms: cannot open %s racctcms: cannot open %s acctcms: Hash table overflow. Increase CSIZE acctcms: Hash table overflow. Increase CSIZE TOTALS %-8.8s%8ld%12.2f%11.2f%13.2f%7.2f%8.2f %8.2f%12ld%12ld TOTALS /usr/lib/acct/holidays<;pnpsplit: holidays table setup failed ***UPDATE %s WITH NEW HOLIDAYS*** r%4d %4d %4d%s: bad {yr ptime nptime} conversion pnpsplit: invalid year: %d pnpsplit: invalid p/np hours pnpsplit: too many holidays, recompile with larger NHOLIDAYS %d %*s %*s %*[^ ] pnpsplit: invalid day of year %d : option requires an argument -- : illegal option -- --Unknown error: @@@@@@@@.@@@P@c@u@@@@@@@@@@@#@7@K@\@k@z@@@@@@@@@&@B@[@j@x@@@@@@@@(@1@I@`@t@@@@@@@@@ @@0@N@d@u@@@@@@@@@@ @@'@0@K@h@@@@@)@P@Y@b@k@t@}@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@3@=@M@[@j@{@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error---------------------??GA>???8@<@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFBCMMNCMpLMMMMmC*CM6CZCMCCCCCCCCCCMMMMMMMMMMMEMMJMMMMMMMMMMMMMMMM[EMMMMMMMMMMuLCEGMJCCMMCMMEEMMMLMDMM[E-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@.@.@D$@.@P0@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0usr/lib/acct/acctcon1100755 3 3 71330 4201127116 11215 37777777777 Lw! W@,5X@.textW .dataX@X@@XX@.bss2@2@,5.comment@rÐET2@RU RP P=WjÐU]M~XE E @CM~>E E @)^@! ^@-l|=w |$@M~E E =-t=^@YE B1t85K@hK@hK@h(@ hK@~YPh7@ h.@IYu5^@2VY.=]@u K@]@t} h.@YuuK@h;@hK@JfK@ = ^@t ]@K@ hK@(Y =@t =@t5^@UYUh.@jj$hK@=u3UWV3"K@+@u $t u,G|fK@f|K@= u}Åt3UW}h.@MY-$PhD@WO 5K@hK@hK@h[@W1hK@ YPhz@W ^@}UWVK@tK@= wi|e$@u}áK@]@=]@t㡠K@+]@K@jK@]@|k,K@PYhK@ YPhK@hK@K@Ph~@h.@SmF,k@,K@;v]@^@?UW3G;=\@}j k \@PhK@2- u;=\@|L\@@\@=~!h@h.@\@}j hK@k \@PZ" k \@UW3%j k,K@PhK@, uNj}G;=@~ӡ@@@=d|h@h.@:jRYj hK@k@,K@P! hK@H Yk@,fK@@UWfK@K@ WY,k@,K@;v}UEPUK@E9E~OEPA YPh@h.@ EP$ YPh@h.@k ^@EUPËEUPK@===uыE@P tjfPfK@j@ PhK@ hK@ YfK@EK@hK@E+EP5K@ hK@YEU+UP(E@ jhK@E@ PR 9E@$P (fPfK@j@ PhK@ hK@YfK@EK@hK@E+EP5K@? hK@YEU+UP(@ UWh.@h@5@E h]@ YPh@h]@u YPh#@=^@t*9^@~s3P5^@h+@ 3#k \@Pk \@Ph=@ G;=\@|Ջ}U$Wh.@hG@5@8E @E@EE3EE]@%]@5@]uuhI@ hi@YK@pG(5@]EE]GEG EG$Ew$w wE @v@Mu@\$uuWh@$,k@,K@;{uuuuuh@i}UW}www GPGPPh@:GPYPh@"}ÐUTWV=@tNEEE Ej$EPo!YPEP E@j$EPA!YPEP E9Eu3EPvYt@tEU+UPu}h@EPEEUPEE2@EPVFugt(VEP/tEV M+M EE@VEPKEF UЋEEE܋FEFE>}E9E6UPWu+h@h.@o @2@}ÍEPYEPYGl@9Gu g9G @9G~h@h/@h.@ @UWV}t9Gt3+2@9G|9Gu u}Ë2@9G F<2@}3UWVS333hR@h@cAEh@ YuCY3dhl|=*GtPxPh@hT@|P =th@h`@h.@ CI9@| 9@~5@h@h.@ Cxd|cx=Sx|Fx<}8t|+t=t|t<|h@h.@$ C2@xd2@x=u3xd2@2@2@td3@t=u3td3@3@ 3@<3@;3@3@3@|*h@h.@2 h@h.@ CpPh@|P 9p| n9p~ph@h.@ C0FpJ2@uh|Pv Pu5@Yu+}&FPh2@2@3UPWVSu IF33:UЋEO9~ E4GEEU W4G;~…]u}UPWVS}u }3 G֊ FC;]|E]u}ÐU j uh9@g EPh4@"=tE%= uEøUWVS03@$jWu! uG]u}à k,3@ 03@;rjuh^@ h^@ Yuf,fCf9,3@}juW fw,3@낐UWV}u F9Gt9G|!3u}ËF9Gt 9G| 39}3UWV}u +V+Wk<‹V+Wi‹u}UuYPYUWVSF@H@GF҈uEk@b@F@GFGFGFGE@kx@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRWF@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUWt7ujuNj}ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwuED ÉE)G?}3W 1@+W;}W?Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P? E}|EE}øU=@uh@h@A9@5@YU=@t5@:Y@UW}G?t=:t = u= u ?tGNj}U=@uh@h@8@u35@YUWuhhF@_ =J@WQY=J@WBY=:j EPW EW7YPj:W|7 9Eu`WY}| `9E~aEJ@t4=:t*j EPWV EW7YPj:W7 9Et3}WY}| `9E~aEJ@=J@=J@W^Y=J@WOY=J@W@Y=J@G?t =,u?tG=J@J@oUWVS} uEE~,F t!O>(VgY=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V 1@+V;}V<Y}u +gEEvUWV@@9x2@s x2@<@u5YtVuj@ jh@jv@ W5YPWjc@ jh@jR@ u}ÐUPWE E.@u.@t* .@h.@uuE .@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}Wd7YjjG Pd; GGg G tg }ÐUPWEEE@ uE@ t(EH uuu o E@ t }ËUPE EPuh.@d UPEEPu uI UW}EEEljEEW 4YEE2uu EP }ÐUWVS}u DžJ@K@ J@Wy=~*uDžF DžDžk -0F+@u؃u DžÉ=lt h9uF؅[uPV+@tDžl,@؃nt_=K@uVctQ[tLJ@} W@ Y GG+@u J@W:=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfJ@fl9uEEPJ@{EEPJ@dEPWSt'=K@tu /$Fu +@td=K@uJ@} W Y GG+@u J@W=uK@y%uF؃%J@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$(@EE EEJ@}WyY3]u}ËGG=+t=-t =0t8EMJ@} W(Y GG؃0i9E }9EoJ@} WY GGEh~PW =uh~Ph+@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}0K@E0K@E-@s3UtE]0K@E-@E-@E8.@r5E@.@rL.@EH.@AEh.@s6EE]@)EEp.@r݋EE 9P܃}t؁0K@~K@v~K@Ex.@tAK@r05}fEf fEmE]mE܉E@0Ee .@];r&=5|+0K@u0K@1}tCF0N<90K@]Ћuԋ}ËEE0]@EEsEE 9P EEEEP.@MU]vEu}fEf fEm]mE܉EFUR0EMm]EX.@E5`.@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 1@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu  )G?}3W 1@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}2@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W1@UW.@;=1@r3}ÃG uUW.@ WY;=1@r}UWV}tlG t6G t3WVYG PY}x2@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 1@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 1@+G?}3W 1@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 1@+G?}3W 1@+W;}WY3UWV}G G u}}&u^@$b@GW 1@*h!YGt@O G W1@GGVYtG uO @u}G ,f@WR1@UWV}G 1@+G}G 1@Wu};7}7𐐐3ÐUx2@EEPhTu } Ex2@3ø6FÐ2ÐU WVSE9ET=2@u<2@ 2@2@ 2@2@2@|2@2@2@2@E@3؋=|2@E&;52@2@E@E=w=2@jY2@@;t?3Ee ƹ3tL3+‰EEE22@+2@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή52@2@0E+E-2@@;t2@2@2@2@~Љ|2@;5|2@v|2@2@|2@ 9=2@u |2@2@G(=|2@952@u=2@7tލ;r;l%;UWV}5|2@%2@9u52@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ2@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$2@Ru 2@+D$ø!T$2@3øÐx2@ÐT$\@@(#)acctcon1 5.3b of Jan 27, 1988@(#)acctcon1.c 1.1 87/08/13 rr/IrrrQN@N@Y@%.12s %.8s %lu %sacctcon1bad wtmp: offset %lu. bad record is: %.12s %.8s %lu %sacctcon1: invalid type %d for %s %s %sacctcon1: recompile with larger NSYS acctcon1: RECOMPILE WITH LARGER A_TSIZE acctcon1: bad times: old: %snew: %swfrom %sto %s%d date change%c %d %.12s wTOTAL DURATION IS %.0f MINUTES LINE MINUTES PERCENT # SESS # ON # OFF %.8s %.0f %.0f %d %d %d TOTALS %.0f -- %d %d %d %u %u %.8s %lu %lu %lu %s/usr/lib/acct/holidays<;pnpsplit: holidays table setup failed ***UPDATE %s WITH NEW HOLIDAYS*** r%4d %4d %4d%s: bad {yr ptime nptime} conversion pnpsplit: invalid year: %d pnpsplit: invalid p/np hours pnpsplit: too many holidays, recompile with larger NHOLIDAYS %d %*s %*s %*[^ ] pnpsplit: invalid day of year %d /dev/xxxxxxxxDay Mon 00 00:00:00 1900 SunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec/etc/passwdrrUnknown error: @@@8@H@`@j@@@@@@@@ @ @" @. @: @L @[ @k @z @ @ @ @ @ @ @ @!@!@,!@8!@O!@`!@{!@!@!@!@!@!@!@"@1"@@"@d"@~"@"@"@"@"@"@"@"@#@#@%#@:#@C#@L#@`#@r#@#@#@#@#@#@#@$@$@-$@<$@E$@N$@a$@j$@s$@$@$@$@$@$@$@%@3%@S%@%@%@%@%@%@%@%@%@%@&@ &@&@&@$&@.&@8&@B&@L&@V&@`&@j&@t&@~&@&@&@&@&@&@&@&@&@&@&@&@&@'@ '@'@'@('@2'@<'@F'@P'@Z'@d'@n'@x'@'@'@'@'@'@'@'@'@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error~{{{~~??GA>???)@)@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFF5??R5?t>????q5.5?:5^5?5555555555???????????7?Q<????????????????_7??????????y>579Q<55??5??I7???>?6??_7-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@h~PW =uh~Ph @ 3WYkUWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G h%@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W h%@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}T&@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UWD"@ WY;=d%@r}UWV}tlG t6G t3WVYG PY}4&@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG h%@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G h%@+G?}3W h%@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G h%@+G?}3W h%@+W;}WY3UWV}G G u}}&u&@*@GW h%@*h YGt@O G Wh%@GGVYtG uO @u}G .@WRh%@UWV}G h%@+G}G h%@Wu};7}7𐐐3ÐU4&@EEPhTu } E4&@3ø62ÐU WVSE9ET=H&@u??? ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/.@.@d%@.@T0@3.1bS03.1bS0d%@.@usr/lib/acct/acctdisk100755 3 3 23034 4201127123 11303 37777777777 L!  T@.text .dataT@T@T@.bss &@ &@ .comment &ÐET &@RU RP P9jÐU졠@\&@@X&@fF&@*jhL&@h&@e h "@jj4h&@?h<&@hL&@h&@h@=uÐUPE EPuh!@d UPEEPu uI UW}EEEljEEWFYEE2uu EP }ÐUWVS}u Dž&@&@ &@W=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl @؃nt_=&@uVctQ[tL&@} W@ Y GG@u &@W =tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf&@fl9uEEP&@{EEP&@dEPWSt'=&@tu /$Fu @td=&@u&@} W Y GG@u &@W( =u&@y%uF؃%&@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE&@}WyY3]u}ËGG=+t=-t =0t8EM&@} W(Y GG؃0i9E }9Eo&@} WY GGEh~PW =uh~Ph@ 3WYkUWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G  %@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  %@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS} &@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW!@ WY;=%@r}UWV}tlG t6G t3WVYG PY}%@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  %@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  %@+G?}3W  %@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  %@+G?}3W  %@+W;}WY3UWV}G G u}}&u`&@h*@GW  %@*h YGt@O G W %@GGVYtG uO @u}G p.@WR %@UWV}G  %@+G}G  %@Wu};7}7𐐐3ÐU%@EEPhTu } E%@3ø62ÐU WVSE9ET=&@u<&@ &@&@ &@%@&@%@&@%@%@E@3؋=%@E&;5%@&@E@E=w=%@jY%@@;t?3Ee ƹ3tL3+‰EEE2%@+%@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5%@%@0E+E-%@@;t%@%@%@&@~Љ%@;5%@v%@%@%@ 9=%@u %@%@G(=%@95%@u=%@7tލ;r;l%;UWV}5%@%%@9u5%@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ%@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$&@Ru &@+D$ø!T$&@3øÐ%@ÐT$X@@(#)acctdisk 5.3b of Jan 27, 1988@(#)acctdisk.c 1.2 87/08/13 $@%hu %s %f??GA>??? ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/.@.@%@.@0@3.1bS03.1bS0%@.@usr/lib/acct/acctdusg100755 3 3 45560 4201127127 11327 37777777777 L! ? 8@.text? .data@@ @@.bss` @` @8.comment`KÐET` @RU RP Pq?jÐUE E =-E B=ptf=uuyM~th@E E 0f4 @u#E 0uh @hp@[ j>YYhE 09M~E E @E 0h@hp@  j>YM1h@5@3 @u15@uh @hp@ jK>YY h @]Y5 @hh @ u5 @/5Y,j h @ƀ @h @ZYh @Y5@hh @4 uP@9@t 5@4YZ`@9@t 5@4Y= @t 5 @4Yjr=YUuh @hp@ jP=YUW= @#twWwh@5@uً}UWVS}] 3;u Ƌ]u}GF?uUW}jj Euh,@hp@$j<YEEUG :u E9E|G=:uE@Ph9@Wg j:W HEG=:uM}j:WUB jEP BR?UBCEp Wp h @Ep=t @%=@tEpYu Y}EEPE=/uE@EEPE<uԃ=@uE@ @뮡@UPE@UWVS}] 3 G;uF?uƋ]u}UPWVS= @t @xu ]u}E3ۋ= @F}tދ= @3E/F9G| 9GuF9GvVWS EߋGuUPWVS}u ]Džu CEsEF @]u}É_CEsEFUWVS}h @W,=tW\/Y؋5 @@]u};^ |-v Wv uF =/tF uvu5 @Et E@ EYE9E~@E@uEEu?@EEu UЋEuU= @2= @% @%=@Wu @Ph<@5 @{ @%=@uE( @%=u @EE}3FUEt E@ËEUWVS}[F=/t;wF;t VSo-C=.uC=.t)=/t@;t C=/u>u]u}C=/u;vN=/t;wSV-Ɛ73ÐUWEE EP3YtujWz Nj}Uu 6YÐUWVS} uEE~,F t!O>(VCY=uE9Eu~3]u}N;>}Sj vucEtE+E؋E)F>}3V t @+V;}V1Y}u +gEEvUWVS}u ]GF:u Nj]u}M}3UPWEEE@ uE@ t(EH uuu s E@ t }ËUPE EPuhP@d UPEEPu uI UW}EEEljEEW+YEE2uu EP }ÐUWVS}u Džd @h @ d @W}=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_=h @uVctQ[tLd @} W@ Y GG@u d @W>=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPfd @fl9uEEPd @{EEPd @dEPWSt'=h @tu /$Fu @td=h @ud @} W Y GG@u d @W =uh @y%uF؃%d @} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$L@EE EEd @}WyY3]u}ËGG=+t=-t =0t8EMd @} W(Y GG؃0i9E }9Eod @} WY GGEh~PW =uh~Ph@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}l @El @E@s3UtE]l @E@E@E@r5E@r@E@AE0@s6EE]@)EE8@r݋EE 9P܃}t؁l @ @v @E@@t} @r05}fEf fEmE]mE܉E@0Ee H@];r&=5|+l @ul @1}tCF0N<9l @]Ћuԋ}ËEE0]@EEsEE 9P EEEE@MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5(@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G t @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W t @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}` @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉Wt @UWP@;=p @r3}ÃG uUWP@ WY;=p @r}UWV}tlG t6G t3WVYG PY}@ @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG t @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G t @+G?}3W t @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G t @+G?}3W t @+W;}WY3UWV}G G u}}&u@@GW t @*h!YGt@O G Wt @GGVYtG uO @u}G @WRt @UWV}G t @+G}G t @Wu};7}7𐐐3ÐU@ @EEPhTu } E@ @3ø6FÐ2ÐU WVSE9ET=T @u??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFz:':':'&:':':':'b:'n:':':':':':':':':':':':':'$:':':':':':':':':':':':':':':':':':':':':':':':':':'&"$:':':':'}:':':'&:'2:':'-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@p @@@3.1bS03.1bS0usr/lib/acct/acctmerg100755 3 3 44474 4201127132 11316 37777777777 L! < ( @.text< .data@@ =@.bss$)@$)@( .comment$IÐET$)@RU RP Pm<jÐUWVE E =-u{E B=at8=it<=pt@=ttD=utE=v+@+@+@+@+@+@x+@p)@@)@= |j h@h4%@e j;Yh@E 00)@@uE 0h@h4%@# jQ;YM=+@t,3h)@YjbYuG;=)@~j;Y3$WBYuWE 0h@h4%@G;=)@~VY"u=+@t h@Yu}UWV3)@CGt9t3;r);u!=+@ujFPGP5 }4k)@4)@;vƋu}U4W}j4WEP Wh@-)@4PDYgGt]U;uR=+@ujEPGP u3WEPUWh@G-)@4PY4k)@4)@;v=+@u EPY}UWV}u F G _ FG_FG_FG_FG_F G _ F$G$_$F(G(fF,fG,fF.fG.fF0fG0u}UW}=+@t WY}h$%@jj4Ww+UWV}k4)@F<@u 3u}Ã=+@tSF0PF.PF,PF(PF$PF PFPFPFPFPF PFPVh@4@<=t"4@jj4V=t@3oUW}G0PG.PG,Pw(G$\$G \$G\$G\$G\$G\$G \$GPP=+@tl@PT}ø,@UPWVS}u }3 G֊ FC;]|E]u}ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WRY=uE H3u U+ЋO;7sSwu=6 ÉE)G?}3W 8(@+W;}W1Y+Å{EhUPWE E0%@u0%@t* 0%@h$%@uuy 0%@ t }ËUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh%@d UPEEPu uI UW}EEEljEEW*YEE2uu EP }ÐUWVS}u Dž()@,)@ ()@W%=~*uDžF DžDžk -0FE"@u؃u DžÉ=lt h9uF؅[uPVE"@tDžlF#@؃nt_=,)@uVctQ[tL()@} W@ Y GGE"@u ()@W =tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf()@fl9uEEP()@{EEP()@dEPWSt'=,)@tu /$Fu E"@td=,)@u()@} W Y GGE"@u ()@W0 =u,)@y%uF؃%()@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE()@}WyY3]u}ËGG=+t=-t =0t8EM()@} W(Y GG؃0i9E }9Eo()@} WY GGE"@Dž\Dž h~PW =uh~PhD"@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}0)@E0)@El$@s3UtE]0)@Et$@E|$@E$@r5E$@r$@E$@AE$@s6EE]@)EE$@r݋EE 9P܃}t؁0)@~)@v~)@E%@tA)@r05}fEf fEmE]mE܉E@0Ee %@];r&=5|+0)@u0)@1}tCF0N<90)@]Ћuԋ}ËEE0]@EEsEE 9P EEEE$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E$@E5$@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 8(@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 8(@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}$)@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W8(@UW%@;=4(@r3}ÃG uUW%@ WY;=4(@r}UWV}tlG t6G t3WVYG PY})@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 8(@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 8(@+G?}3W 8(@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 8(@+G?}3W 8(@+W;}WY3UWV}G G u}}&u+@/@GW 8(@*h!YGt@O G W8(@GGVYtG uO @u}G 3@WR8(@UWV}G 8(@+G}G 8(@Wu};7}7𐐐3ÐU)@EEPhTu } E)@3ø6FÐ2ÐU WVSE9ET=)@u<)@ )@)@ )@ )@)@)@)@ )@)@E@3؋=)@E&;5 )@)@E@E=w=)@jY )@@;t?3Ee ƹ3tL3+‰EEE2 )@+)@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5)@ )@0E+E- )@@;t )@ )@ )@)@~Љ)@;5)@v)@)@)@ 9=)@u )@)@G(=)@95)@u=)@7tލ;r;l%;UWV}5)@% )@9u5)@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ)@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$ )@Ru )@+D$ø!T$ )@3øÐ)@ÐT$Ì@@(#)acctmerg 5.3b of Jan 27, 1988@(#)acctmerg.c 1.1 87/08/13 %@TOTAL%hu %.9s %.0f %.0f %.0f %.0f %.0f %.0f %.0f %lu %hu %hu %hu %hu %.9s %e %e %e %e %e %e %e %lu %hu %hu %hu acctmerg: >%d files racctmerg: can't open %s %s: read error file %d %hu %s %e %e %e %e %e %e %e %lu %hu %hu %hu .  . . . . . . . . . .  . .  ??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFv6$6$6$#6$6$6$6$^6$j6$6$6$6$6$6$6$6$6$6$6$6$6$!6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$6$#!6$6$6$6$y6$6$6$#6$.6$6$-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@3@3@4(@3@L5@3.1bS03.1bS03.1bS0usr/lib/acct/accton104755 0 4 37200 4201127134 10771 37777777777 Lij! ' @.text' .data@@(@.bssp@p@ .commentp>ÐETp@RU RP P'jÐUWE @t 4j>Y=u1P@4< @h @5@h@h@j'Yh@Y=uj&Yh@Y=uj&Y9E~nE pY=9P@uhT @hA @5@h5 @P@4< @hz @5@hn @h@jh&Y@jY=u1P@4< @h @5@h @h@j&&Yj&Y5@h @h@ j%Y}U WV}EVW=uKhWL=u6P@4< @h @5@h @h@0u؋}F=u F =tDjjW =u0P@4< @h @5@h @h@FtHhW\=u3P@4< @h/ @5@h# @h@K3D3$3Ð$3Ð$3ÐÐb$ÐUPWEEE@ uE@ t(EH uuu  E@ t }Ë#3Ð#3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžll@Dž\9PtP؉PNKPPoY Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžlr@Dž\?E2ETMDžlu@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS}t@Et@E@s3UtE]t@E@E@E@r5E@r$@E @AE@@s6EE]@)EEH@r݋EE 9P܃}t؁t@@v@EP@t@r05}fEf fEmE]mE܉E@0Ee X@];r&=5|+t@ut@1}tCF0N<9t@]Ћuԋ}ËEE0]@EEsEE 9P EEEE(@MU]vEu}fEf fEm]mE܉EFUR0EMm]E0@E58@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}p@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW`@ WY;=@r}UWV}tlG t6G t3WVYG PY}P@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u@"@GW @*h YGt@O G W@GGVYtG uO @u}G &@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUP@EEPhTu } EP@3ø62ÐU WVSE9ET=d@u@H@R@\@f@p@z@@@@@@@@@@@@@ @@%@3@B@S@k@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFBNpm*6Z M[ u ME [ -+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@&@&@@&@p(@3.1bS03.1bS0@&@usr/lib/acct/acctprc1100755 3 3 64654 4201127140 11232 37777777777 LԳ! pP,$g@@.textpP .data@@@@,@Q@.bssl)@l)@$g.comment@liÐETl)@RU RP P%PjÐU(/E E =-u E B E 0YMx0@ff0@f0@j50@0@P0@P` Ph0@ 0@P YEE5@}fEf fEm]mE؅EuE0@Pk YE0@PZ YUЉU0@PD YEEPu50@ EMu}fEf fEm]mE0@9E~ E+0@30@E+0@0@}tEEH}0@ 0@50@50@50@h0@0@Ph@Jh\%@jj h0@ =gUWuE PEP~ tNj}EPYUPWVh@uJCEuuh@h|%@ u}3X@t%0@;ujGPh0@e' tUu0@%X@rh@h|%@5jgMYf0@fjh0@GP w fG܆@rh@h|%@ j MYf0@f0@F0@0@F fGh0@h0@h0@h0@h0@h0@h@u =t =@uCYU WVSf}EE0@m;u`^ Fk ЉUHE ;u:C9E|C9EF]u}ËC9E|E9C~ CEFE ;]r;5@s ;sE뷐UTWV=@tNEEE Ej$EPYPEP E@j$EPYPEP E9Eu3EPvYt@tEU+UPu}h8@EPEEUPEE)@EPVugt(VEPwtEV M+M EE@VEPEF UЋEEE܋FEFE>}E9E6UPWu+hD@h|%@? @p)@}ÍEPvYEPYGl@9Gu g9G @9G~h @hk@h|%@ @UWV}t9Gt3+p)@9G|9Gu u}Ëp)@9G FEh @Yu@Y3dhl|=*GtPxPh@h@|Po =th @h@h|%@ CI9@| 9@~5@h@h|%@ Cxd|cx=Sx|Fx<}8t|+t=t|t<|h@h|%@C)@xd)@x=u3xd)@)@)@td)@t=u3td)@)@)@<)@;)@)@)@|*h@h|%@h@h|%@CpPh;@|Pg 9p| n9p~phN@h|%@ C0FpJp)@uh|PF Pu=Yu+}&FPhp)@p)@3UPWVSu IF33:UЋEO9~ E4GEEU W4G;~…]u}UPWVS}u }3 G֊ FC;]|E]u}ÐUWVSf} %%NË]u}ÐUWV}u F9Gt9G|!3u}ËF9Gt 9G| 39}3UWV}u +V+Wk<‹V+Wiu}UWV*@EW;u Nju}à k*@ *@;r-EPYup@Ǹ29*@}fEfGj6W *@뛐UWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwuC ÉE)G?}3W (@+W;}W?Y+Å{EhUWV}t9~u=Ƌu}U=@uh@ht@8@5@YU=@t5@:Y@UW}G?t=:t = u= u ?tGNj}U=@uh@ht@V8@u35@YUWuhh+@_ =/@WQY=/@WBY=:j EPW~ EW7YPj:W,7 9Eu`WY}| `9E~aE0@t4=:t*j EPW EWF7YPj:W6 9Et3}WY}| `9E~aE0@=0@=0@W^Y=0@WOY=0@W@Y=/@G?t =,u?tG= 0@/@oUWVS} uEE~,F t!O>(VgY=uE9Eu~3]u}N;>}Sj vuCEtE+E؋E)F>}3V (@+V;}V;Y}u +gEEvUWV@@9L)@s L)@<@u5YtVuj7@ jh@j&@ Wu5YPWj@ jh@j@ u}ÐUPWE Ex%@ux%@t* x%@hl%@uu x%@ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W7YjjG P; GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh\%@d UPEEPu uI UW}EEEljEEW3YEE2uu EP }ÐUWVS}u Dž 0@$0@ 0@W)=~*uDžF DžDžk -0F"@u؃u DžÉ=lt h9uF؅[uPV"@tDžl#@؃nt_=$0@uVctQ[tL 0@} W@ Y GG"@u 0@W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf 0@fl9uEEP 0@{EEP 0@dEPWSt'=$0@tu /$Fu "@td=$0@u 0@} W Y GG"@u 0@W4=u$0@y%uF؃% 0@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE 0@}WyY3]u}ËGG=+t=-t =0t8EM 0@} W(Y GG؃0i9E }9Eo 0@} WY GGEh~PW =uh~Ph"@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}T0@ET0@E$@s3UtE]T0@E$@E$@E %@r5E%@r %@E%@AE<%@s6EE]@)EED%@r݋EE 9P܃}t؁T0@0@v0@EL%@te0@r05}fEf fEmE]mE܉E@0Ee T%@];r&=5|+T0@uT0@1}tCF0N<9T0@]Ћuԋ}ËEE0]@EEsEE 9P EEEE$%@MU]vEu}fEf fEm]mE܉EFUR0EMm]E,%@E54%@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G (@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W (@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}l)@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W(@UW\%@;=|(@r3}ÃG uUW\%@ WY;=|(@r}UWV}tlG t6G t3WVYG PY}L)@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG (@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G (@+G?}3W (@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G (@+G?}3W (@+W;}WY3UWV}G G u}}&u@@GW (@*h!YGt@O G W(@GGVYtG uO @u}G @WR(@UWV}G (@+G}G (@Wu};7}7𐐐3ÐUL)@EEPhTu } EL)@3ø6FÐ2ÐU WVSE9ET=`)@u@X@j@|@@@@@@@@@@ @/@?@N@_@s@@@@@@@@@ @#@4@O@b@~@@@@@@@@8@R@[@d@m@@@@@@@@@@ @4@F@T@l@@@@@@@@@@"@5@>@G@Z@c@l@@@@@@'@e@@@@@@@@@@@@@@@ @@ @*@4@>@H@R@\@f@p@z@@@@@@@@@@@@@@@@@$@.@8@B@L@V@o@y@@@@@@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error??GA>???p @t @W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF..77:.7\77777Y..7".F.7..........7777777777707957777777777777777G07777777777a7.0295..77.771077777/77G0-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@@@|(@@@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0usr/lib/acct/acctprc2100755 3 3 43700 4201127143 11223 37777777777 L! (< H@.text(< .data@@ <@.bss'@'@H.commentGÐET'@RU RP P;jÐU h(@TYh0(@h,(@h((@h(@h(@hh@5=uh+j 5'@hh(@UWV}GPA2Y@ GFrE3kWM ‹EGU uk‹E4h(@;ujj(@PGPO t)F3j(@t EE=|9E|hz@h#@j:Yj(@u)ffh(@jGPj(@P  t(@EG 5@@Ex(@EG5H@E0(@5P@]|(@EEO 5X@E(@EEO5`@E(@u}UWV3j(@fh(@fh(@jj(@Pj(@P t(@قt(@x(@قx(@|(@ق|(@(@ق(@(@(@FG05'@u}UWV}u ;t+‹u}jFPGP UW3fh(@f4(@jj(@Ph6(@ t(@@(@x(@D(@|(@H(@(@L(@(@\(@h#@jj4h4(@/,G;='@R}ÐU9Er=@u>E'@PX3Y@E'@E'@E EURu+ËE9'@sˣ'@P5@5@UWVS'@/u EPEE uuEÉEE +EE;vD]EE3uEEEEE}E +ËE+ÉEPW ]u};}stuW'@Etȃ}}ZVEÉEP@}~6;}uVEÉEPW EÉEVWj+닋+;uvVu'@Eu;}uE+EU +U;WE+ÉEPV E+ÉE,UPWVS}u '@|?=@t6SW5@4 SVW4 S5@V4 ]u}ÊEGFUKuUWVS}u ]'@E9E|R=@tIuW5@~4 uSWq4 uVSd4 u5@VR4 ]u}ÊEGCFUMuӐUPWEEE@ uE@ t(EH uuu [ E@ t }ËUPE EPuh#@d UPEEPu uI UW}EEEljEEW*YEE2uu EP }ÐUWVS}u Dž'@'@ '@We=~*uDžF DžDžk -0F @u؃u DžÉ=lt h9uF؅[uPV @tDžl!@؃nt_='@uVctQ[tL'@} W@ Y GG @u '@W&=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf'@fl9uEEP'@{EEP'@dEPWSt'='@tu /$Fu  @td='@u'@} W Y GG @u '@Wp =u'@y%uF؃%'@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE'@}WyY3]u}ËGG=+t=-t =0t8EM'@} W(Y GG؃0i9E }9Eo'@} WY GGE Ek E-0GE @uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžl @Dž\?E2ETMDžl @Dž\EE C~u~E܉TMs؍gh݅H0@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H8@u+-hJhE @tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h"@YEt Eu ="@t3txE"@"@h"@EPbuEPSjEP |>h~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}'@E'@E"@s3UtE]'@E#@E#@EP#@r5EX#@rd#@E`#@AE#@s6EE]@)EE#@r݋EE 9P܃}t؁'@(@v(@E#@t'@r05}fEf fEmE]mE܉E@0Ee #@];r&=5|+'@u'@1}tCF0N<9'@]Ћuԋ}ËEE0]@EEsEE 9P EEEEh#@MU]vEu}fEf fEm]mE܉EFUR0EMm]Ep#@E5x#@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G &@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W &@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}'@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW#@ WY;=&@r}UWV}tlG t6G t3WVYG PY}'@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG &@9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G &@+G?}3W &@+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G &@+G?}3W &@+W;}WY3UWV}G G u}}&uf@j@GW &@*h YGt@O G W&@GGVYtG uO @u}G n@WR&@UWV}G &@+G}G &@Wu};7}7𐐐3ÐU'@EEPhTu } E裐'@3ø62ÐU WVSE9ET='@u<'@ '@'@ '@'@'@'@'@'@'@E@3؋='@E&;5'@'@E@E=w='@jY'@@;t?3Ee ƹ3tL3+‰EEE2'@+'@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5'@'@0E+E-'@@;t'@'@'@'@~Љ'@;5'@v'@'@'@ 9='@u '@'@G(='@95'@u='@7tލ;r;l%;UWV}5'@%'@9u5'@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ'@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$'@Ru '@+D$ø!T$'@3øÐ'@ÐT$@@(#)acctprc2 5.3b of Jan 27, 1988@(#)acctprc2.c 1.1 87/08/13 @ @@ @ @%hu %s %lu %lu %uacctprc2: INCREASE A_USIZE              ??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFZ%Z%Z%$Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%"Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%Z%$$6 "$Z%Z%Z%Z%Z%Z%Z%$Z%RZ%Z%-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@o@o@&@o@p@3.1bS03.1bS0usr/lib/acct/acctwtmp100755 3 3 30364 4201127146 11351 37777777777 L! &` @.text& .data@@` '@.bss@@ .comment0ÐET@RU RP Pi&jÐU9E}$h@E 0h@h @fj(&Yj E phD@ O@fR@ hX@Yjjh @} h @jj$h8@ÐUPWEEE@ uE@ t(EH uuu O E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P` ECG t8W2YG t g GGuu G P E9Eus3lUPWVS}u ]}CKt GFut GKuE]u}Ð T$tÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSYSVjWES]u}VWE0" ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu! E}E+F)EF;EvF =2tV+YF Dt*F uuj E+EP` tV#YF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl @Dž\9PtP؉PNKPPoYh~PW =uh~Ph @ 3W YkUjuuuu u#Ujuuuu uU$WVS}@E@E, @s3UtE]@E4 @E< @E @r5E @r @E @AE @s6EE]@)EE @r݋EE 9P܃}t؁@6@v6@E @t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEE @MU]vEu}fEf fEm]mE܉EFUR0EMm]E @E5 @]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3F ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW @ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uEO G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u\@d@GW @*h!YGt@O G W@GGVYtG uO @u}G l@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$È@@(#)acctwtmp 5.3b of Jan 27, 1988@(#)acctwtmp.c 1.1 87/08/13 Usage: %s reason [ >> %s ] /etc/wtmp  000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF@=*m}}}}}}}}} +E  i+-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@|@|@@@@3.1bS03.1bS0@usr/lib/acct/fwtmp100755 3 3 46174 4201127151 10666 37777777777 L! L@P p @.textL@ .data@@P A@.bssl @l @p .commentlLÐETl @RU RP P@jÐUE3EM\hl@jj$h @$4DE E =-u-E =ct =iuEEE B:uՃ}t#h @h\@=u'jU?Yh\@jj$h @=uك}Th0 @=Y@P50 @. @P, @P* @P( @Ph @h @h @h@@(ZUWVS} uhV u3FC|= u K}F3GF uGC|F3 G ֊ F C | G = u G K}G PGPGPGPGPhv@VAUu YPYUWVSp @@GF҈uEk@@p @GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRWp @]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwuy; ÉE)G?}3W  @+W;}W 7Y+Å{EhUWVS} uEE~,F t!O>(VCY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V  @+V;}VC6Y}u +gEEvUPWE Ex@ux@t* x@hl@uu x@ t }ËUWVS}u ]GF:u Nj]u}M}3UPE EPuh\@d UPEEPu uI UW}EEEljEEW0YEE2uu EP }ÐUWVS}u Dž @ @ @Wm=~*uDžF DžDžk -0F@u؃u DžÉ=lt h9uF؅[uPV@tDžl@؃nt_= @uVctQ[tL @} W@ Y GG@u @W.=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf @fl9uEEP @{EEP @dEPWSt'= @tu /$Fu @td= @u @} W Y GG@u @Wx=u @y%uF؃% @} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$@EE EE @}WyY3]u}ËGG=+t=-t =0t8EM @} W(Y GG؃0i9E }9Eo @} WY GGE Ek E-0GE@uE@t E EGEK<#0  %4uE@t/E+ËU+Љ~ETMEPtE=XtV=ot$=xXDžln@Dž\?E2ETMDžlq@Dž\EE C~u~E܉TMs؍gh݅H@DH}A؉1 R0‹hJh 9‹hHhR0hHh0e9hw⃽D݅H@u+-hJhE@tEehJhg+hXTM؀oD~t 98|0 8CUE}čs&9|H=0t۸9DE9D +DE Kk +ЍR0ˆ 9+UWV}u;h@YEt Eu =@t3txE@@h@EPbuEPSjEP |>h~PW =uh~Ph@ 3W YkUjuuuu u#Ujuuuu uU$WVS} @E @E@s3UtE] @E@E@E @r5E@r @E@AE<@s6EE]@)EED@r݋EE 9P܃}t؁ @ @v @EL@t @r05}fEf fEmE]mE܉E@0Ee T@];r&=5|+ @u @1}tCF0N<9 @]Ћuԋ}ËEE0]@EEsEE 9P EEEE$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E,@E54@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G  @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W  @+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}l @u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}32 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW\@ WY;=| @r}UWV}tlG t6G t3WVYG PY}L @G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG  @9GGGU= uQWY=E}G %=u7EEjEPG PC =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G  @+G?}3W  @+W;}W{Y~'SVG P+ ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G  @+G?}3W  @+W;}WY3UWV}G G u}}&u4 @<@GW  @*h YGt@O G W @GGVYtG uO @u}G D@WR @UWV}G  @+G}G  @Wu};7}7𐐐3ÐUL @EEPhTu } EL @3ø62ÐU WVSE9ET=` @u???p@t@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF~)~)~)(~)~)~)~)~)~) ) ) ) ) ) ) ) ) ) ~)~)~)~)~)~)~)~)~)~)~)@"~)&~)~)~)~)~)~)~)~)~)~)~)~)~)~)~)~)!~)~)~)~)~)~)~)~)~)~)(H @"Z$&C H ~)~)< ~)~)!~)~)~))~)v!~)~)!-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@T@T@| @\@@3.1bS03.1bS0| @\@usr/lib/acct/diskusg100755 3 3 52260 4201127154 11176 37777777777 L! HG ^@.textHG .data@@ H@.bss@@^.commentTÐET@RU RP PFjÐU,WVSEEp@EE xiBv=?tj=it1=ptR=st=ut*=vuJ`@>E55 @Y'h@5 @;d@ @EEh|@u u' l}t 5xiBh@h@ j FY$B6k$Bǀ0Bk$Bǀ4Bk$Bƀ8B$B9$B|9Eu2E9 @h@YCjEY]ȋű}uYjE  @4D})E  @45xiBh@h@-EPS|]E%= tE%=`uSE  @4{JE  @45xiBh@h@ $E  @45xiBh @h@ S?Y @E9 @ h@E  @49u&E  @45xiBh@h@2 VYV>;Y @E9 @|yUW}ouY$B=u }k$B90Bu,k$BU0BjEPk$B8BP k$BU4BEPEPEPh. @W =lUWVS} }]u}fjhW> }5@h9 @h@ hh$@W8 E=thT @h@ jBYh@Yv ~9@u @f$@-,BC?(BPhh$@SW=EE$@t{Puf=ue=`@t)E(@P5(Buhn @h@ =d@t*E(@P5(Buh @5d@ E9E}(B(B;,BM@,B9(B3>UW}h@YowY$B=uh @h@D}k$B90Bu*k$BW0Bj7k$B8BP $uUWV}3!j4PiBW u 3u}F;5h@|׸UW}= t =,uGG?uNj}UW}=l@uh4 @W2l@ 5l@ Y=l@t }3U=l@t5l@?4Yl@UW}G?t=:t = u= u ?tGNj}UPW=l@t5l@hh@ u3}É=@W}Y=@WnYWYE}| `9E~aE@W(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V 3Y}u +gEEvUPWE E@u@t* @h@uu @ t }ËUWVS}u ]GF:u Nj]u}M}3UW}W.YjjG P2 GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPE EPuh@d UPEEPu uI UW}EEEljEEW+YEE2uu EP }ÐUWVS}u Dž@@ @W=~*uDžF DžDžk -0F @u؃u DžÉ=lt h9uF؅[uPV @tDžl@؃nt_=@uVctQ[tL@} W@ Y GG @u @W=tP=[t$=ct=i=ntT=sEPWPS#øh9uEEPf@fl9uEEP@{EEP@dEPWSt'=@tu /$Fu  @td=@u@} W Y GG @u @W =u@y%uF؃%@} W Y GG;6UhWVS}EEEEEEEE -d|A=w:|6$ @EE EE@}WyY3]u}ËGG=+t=-t =0t8EM@} W(Y GG؃0i9E }9Eo@} WY GGEh~PW =uh~Ph @V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}@E@E@s3UtE]@E@E@E@@r5EH@rT@EP@AEp@s6EE]@)EEx@r݋EE 9P܃}t؁@"@v"@E@t@r05}fEf fEmE]mE܉E@0Ee @];r&=5|+@u@1}tCF0N<9@]Ћuԋ}ËEE0]@EEsEE 9P EEEEX@MU]vEu}fEf fEm]mE܉EFUR0EMm]E`@E5h@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW@;=@r3}ÃG uUW@ WY;=@r}UWV}tlG t6G t3WVYG PY}@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u|iBmBGW @*h!YGt@O G W@GGVYtG uO @u}G qBWR@UWV}G @+G}G @Wu};7}7𐐐3ÐU@EEPhTu } E裀@3ø6FÐ2ÐU WVSE9ET=@u<@ @@ @@@@@@@E@3؋=@E&;5@@E@E=w=@jY@@;t?3Ee ƹ3tL3+‰EEE2@+@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5@@0E+E-@@;t@@@@~Љ@;5@v@@@ 9=@u @@G(=@95@u=@7tލ;r;l%;UWV}5@%@9u5@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ@Nj]u}UPWVS}u ]} G֊ FK}E]u}øVÐT$@Ru @+D$ø!T$@3øÐ@ÐT$@@(#)diskusg 5.3b of Jan 27, 1988@(#)diskusg.c 1.3 87/08/13 /etc/passwdvu:p:si:aUsage: %s [-sv] [-p pw_file] [-u file] [-i ignlist] [file ...] r%s: Cannot open %s %s: Cannot open %s %s: %s is not a special file -- ignored %s: Cannot stat %s %d %s %ld lseek failed errno is %d read error on superblock BAD UID: file system = %s, inode = %u, uid = %u %s %u %u %s: ignore list overflow. Recompile with larger MAXIGN read error %u %u %s %ld %s: Cannot open %s diskacct: INCREASE SIZE OF MAXUSERS r: option requires an argument -- : illegal option -- --??GA>??? 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF%..%.4.....1%$.$%.a%q%q%q%q%q%q%q%q%q%...........'.,................'..........9.%'),%%..%.. '...]..&..'-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@qBqB@qB$sB3.1bS03.1bS0@qBusr/lib/acct/wtmpfix100755 3 3 50620 4201127157 11224 37777777777 L(! (: @.text(: .data@@:@.bss1@1@ .commentQÐET1@RU RP? P9jÐUjj095@@Yj9YUW9E}E UU@Ehj8=uhW@ Yja9Y5@@qYh^@5@@. 2@5@@h`@uuuuh-@ h@h-@ -]E hz@E 0 u2@p-@h|@E 0-2@E 0h~@uuuuh-@) h@h-@ =D@tF2@=uh,2@5D@h,2@Yt+h,2@h@h-@ jh@h,2@R F2@=hP2@52@u>5D@h@uuuuh-@Yh@h-@Gj2@=t>5D@h@uuuuh-@ h@h-@hP2@h,2@5D@ D@Hh,2@5 2@ujj$u?)hP2@5 2@ujj$u)'h,2@5 2@ujj$u(D@$h,2@52@dFp-@92@t 52@+-YM5 2@-Yh@5@@C+ 2@u>5@@h@uuuuh-@h@h-@\D@9h,2@5D@D@$h,2@h-@ujj$u(h,2@5 2@|u5 2@T,Y5@@Yj5Y}Uuuu uh-@+h@h-@jj45@@3YjW5YUWV}u Wjj$V=t 3u}fFf|F= WY-$Ph!@h-@ F PYPv VF Ph9@h-@qjj545@@Yj4YwUujj$u &UWV} 5(2@uTjju6hK@uuuuh-@h@h-@mYƣ(2@$2@Eu}UWVS} u(2@u6hW@uuuuh-@h@h-@{YECF +G CjjB(2@u6h_@uuuuh-@3h@h-@!Y(2@C ]u}UPWV} EE5$2@~t9E|F9E}FG v uދu}UW3CE8t>8*@u&E8=$tE8= t }G|3UuMYPYUWVS1@l@GF҈uEk@@1@GFGFGFGE@k@GFGFGF3W~@dPWj@dPWV@dPWBEd9P|G2G0EPRdRW1@]u}UW}G 9E |E R0ˆG GE R0‹GNj}ÐUWEE EP,YtujW: Nj}Uu%/YÐUWVS}}~EE ;ur;u s 3]u}Ã?'WY=uE H3u U+ЋO;7sSwu/ ÉE)G?}3W 0@+W;}W+Y+Å{EhUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P,+ E}|EE}øUWV@@9`1@s `1@<@ui$YtVuj. jh@j. W=$YPWj. jh@j. u}ÐUPWEEE@ uE@ t(EH uuu E@ t }ËUWV}uW(YG uG tO G Dt1p-@"u}F @tV%Y;50@rGGG tG 0@+GPwG P" | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐUW(E+(@EEPY=$(@iGQiWkW<E=1@u=1@uWEPEP< 1@E1@EE9E|)E9E}!E+ (@EEPYG Nj}UWVEQUEE}} EQME<1@E1@ƙ51@Ep1@}| FFFtmnEN}|ۉ51@}=1@ƹtmn=nu f2(@3 u0(@+Fu0(@;}f2(@G1@51@1@1@u}Ëƹtmn)EFƹtmn9E}h~PW =uh~Ph*@V 3W7 YkUjuuuu u#Ujuuuu uU$WVS}1@E1@E,@s3UtE]1@E,@E,@E -@r5E(-@r4-@E0-@AEP-@s6EE]@)EEX-@r݋EE 9P܃}t؁1@2@v2@E`-@t1@r05}fEf fEmE]mE܉E@0Ee h-@];r&=5|+1@u1@1}tCF0N<91@]Ћuԋ}ËEE0]@EEsEE 9P EEEE8-@MU]vEu}fEf fEm]mE܉EFUR0EMm]E@-@E5H-@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G 0@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 0@+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}1@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3j ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W0@UWp-@;=0@r3}ÃG uUWp-@ WY;=0@r}UWV}tlG t6G t3WVYG PY}`1@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 0@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 0@+G?}3W 0@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 0@+G?}3W 0@+W;}WY3UWV}G G u}}&ut2@|6@GW 0@*h!YGt@O G W0@GGVYtG uO @u}G :@WR0@UWV}G 0@+G}G 0@Wu};7}7𐐐3ÐU`1@EEPhTu } E`1@3ø6ÐÐU WVSE9ET=t1@u'@H'@R'@\'@f'@p'@z'@'@'@'@'@'@'@'@'@(@Error 0Not ownerNo such file or directoryNo such processInterrupted system callI/O errorNo such device or addressArg list too longExec format errorBad file numberNo child processesNo more processesNot enough spacePermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNo such deviceNot a directoryIs a directoryInvalid argumentFile table overflowToo many open filesNot a typewriterText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksBroken pipeArgument out of domainResult too largeNo message of desired typeIdentifier removedChannel number out of rangeLevel 2 not synchronizedLevel 3 haltedLevel 3 resetLink number out of rangeProtocol driver not attachedNo CSI structure availableLevel 2 haltedDeadlock situation detected/avoidedNo record locks availableError 47Error 48Error 49Bad exchange descriptorBad request descriptorMessage tables fullAnode table overflowBad request codeInvalid slotFile locking deadlockBad font file formatError 58Error 59Not a stream deviceNo data availableTimer expiredOut of stream resourcesMachine is not on the networkPackage not installedObject is remoteLink has been severedAdvertise errorSrmount errorCommunication error on sendProtocol errorError 72Error 73Multihop attemptedError 75Error 76Not a data messageError 78Error 79Name not unique on networkFile descriptor in bad stateRemote address changedCan not access a needed shared libraryAccessing a corrupted shared library.lib section in a.out corruptedAttempting to link in more shared libraries than system limitCan not exec a shared library directlyError 88Error 89Error 90Error 91Error 92Error 93Error 94Error 95Error 96Error 97Error 98Error 99Error 100Error 101Error 102Error 103Error 104Error 105Error 106Error 107Error 108Error 109Error 110Error 111Error 112Error 113Error 114Error 115Error 116Error 117Error 118Error 119Error 120Error 121Error 122Error 123Error 124Error 125Error 126Error 127Error 128Error 129Error 130Error 131Error 132Error 133Error 134Structure needs cleaningError 136Not a name fileNot availableIs a name fileRemote i/o errorReserved for future useRemote device error(@(@W`/Lw/K:/JMFw/GMT TZ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFb"!"!n"! "!"!"!"!J"!Vz"!"!"!"!"!"!"!"!"!"!"!"!"!m"!"!"!"!"!"!"!"!"!"!"!"!"!"!"!"!{"!"!"!"!"!"!"!"!"!"! m"!"!"!"!e"!"!"! "!"!"!{-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@:@:@0@:@<@3.1bS03.1bS0usr/lib/acct/chargefee100755 3 3 1417 4201127161 11412 37777777777 : # @(#)chargefee 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "chargefee login-name number" # "emits tacct.h/ascii record to charge name $number" cd /usr/adm PATH=/usr/lib/acct:/bin:/usr/bin:/etc if test $# -lt 2; then echo "usage: chargefee name number" exit fi _entry="`grep \^$1: /etc/passwd`" if test -z "${_entry}"; then echo "can't find login name $1" exit fi case "$2" in -[0-9]*|[0-9]*);; *) echo "charge invalid: $2" exit esac if test ! -r fee; then nulladm fee fi _userid=`echo "${_entry}" | cut -d: -f3` # get the UID echo "${_userid} $1 0 0 0 0 0 0 0 0 0 0 $2" >>fee name number" # "emits tacct.h/ascii record to charge name $number" cd /usr/adm PATH=/usr/lib/acct:/bin:/usr/bin:/etc if test $# -lt 2; then echo "usage: chargefee name number" exit fi _entry="`grep \^$1: /etc/passwd`" if test -z "${_entry}usr/lib/acct/ckpacct100755 3 3 3532 4201127164 11114 37777777777 : # @(#)ckpacct 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "periodically check the size of /usr/adm/pacct" # "if over $1 blocks (500) default, execute turnacct switch" # "should be run as adm" PATH=/usr/lib/acct:/bin:/usr/bin:/etc trap "rm -f /usr/adm/cklock*; exit 0" 0 1 2 3 9 15 export PATH _max=${1-500} _MIN_BLKS=500 cd /usr/adm # set up lock files to prevent simultaneous checking cp /dev/null cklock chmod 400 cklock ln cklock cklock1 if test $? -ne 0 ; then exit 1; fi # If there are less than $_MIN_BLKS free blocks left on the /usr # file system, turn off the accounting (unless things improve # the accounting wouldn't run anyway). If something has # returned the file system space, restart accounting. This # feature relies on the fact that ckpacct is kicked off by the # cron at least once per hour. sync;sync; _blocks=`df / | sed "s/.*: *\([0-9][0-9]*\) blocks.*/\1/"` if [ "$_blocks" -lt $_MIN_BLKS -a -f /tmp/acctoff ];then echo "ckpacct: /usr still low on space ($_blocks blks); \c" echo "acctg still off" ( echo "ckpacct: /usr still low on space ($_blocks blks); \c" echo "acctg still off" ) | mail root adm exit 1 elif [ "$_blocks" -lt $_MIN_BLKS ];then echo "ckpacct: /usr too low on space ($_blocks blks); \c" echo "turning acctg off" ( echo "ckpacct: /usr too low on space ($_blocks blks); \c" echo "turning acctg off" ) | mail root adm nulladm /tmp/acctoff turnacct off exit 1 elif [ -f /tmp/acctoff ];then echo "ckpacct: /usr free space restored; turning acctg on" | \ mail root adm rm /tmp/acctoff turnacct on fi _cursize="`du -s pacct | sed 's/ .*//'`" if [ "${_max}" -lt "${_cursize}" ]; then turnacct switch fi $_blocks" -lt $_MIN_BLKS ];then echo "ckpacct: /usr too low on space ($_blocks blks); \c" echo "turning acctg off" ( echo "ckpacct: /usr too low on space ($_blocksusr/lib/acct/dodisk100755 3 3 2075 4201127167 10765 37777777777 : # @(#)dodisk 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # 'perform disk accounting' _dir=/usr/adm _pickup=acct/nite PATH=/usr/lib/acct:/bin:/usr/bin:/etc: export PATH while getopts o i do case $i in o) SLOW=1;; ?) echo "Usage: $0 [ -o ] [ filesystem ... ]" exit 1;; esac done shift `expr $OPTIND - 1` cd ${_dir} date if [ "$SLOW" = "" ] then if [ $# -lt 1 ] then args=`cat /etc/fstab | grep -v "^#" | sed 's/[ ].*$//'` else args="$*" fi diskusg $args > dtmp else if [ $# -lt 1 ] then args="/" else args="$*" fi for i in $args; do if [ ! -d $i ] then echo "$0: $i is not a directory -- ignored" else dir="$i $dir" fi done if [ "$dir" = "" ] then echo "$0: No data" > dtmp else find $dir -print | acctdusg > dtmp fi fi date sort +0n +1 -o dtmp dtmp acctdisk disktmp chmod 644 disktmp chown adm disktmp mv disktmp ${_pickup}/disktacct `cat /etc/fstab | grep -v "^#" | sed 's/[ ].*$//'` else args="$*" fi diskusg $args > dtmp else if [ $# -lt 1 ] then args="/" else args="$*" fi for i in $args; do if [ ! -d $i ] then echo "$0: $i is not a directory -- ignored" else dir="$i $dir" fi done if [ "$dir" = "" ] then echo "$0: No data" > dtmp else find $dir -print | acctdusg > dtmp fi fi date sort +0n +1 -o dtmp dtmp acctdisk disktmp chmod 6usr/lib/acct/monacct100755 3 3 2415 4201127171 11125 37777777777 : # @(#)monacct 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "this procedure should be run periodically ( by month or fiscal )" _adm=/usr/adm _sum=${_adm}/acct/sum _fiscal=${_adm}/acct/fiscal PATH=:/usr/lib/acct:/bin:/usr/bin:/etc export PATH #if test $# -ne 1; then # echo "usage: monacct fiscal-number" # exit #fi _period=${1-`date +%m`} cd ${_adm} # "move summary tacct file to fiscal directory" mv ${_sum}/tacct ${_fiscal}/tacct${_period} # "delete the daily tacct files" rm -f ${_sum}/tacct???? # "restart summary tacct file" nulladm ${_sum}/tacct # "move summary cms file to fiscal directory mv ${_sum}/cms ${_fiscal}/cms${_period} # "restart summary cms file" nulladm ${_sum}/cms # "remove old prdaily reports" rm -f ${_sum}/rprt* # "produce monthly reports" prtacct ${_fiscal}/tacct${_period} > ${_fiscal}/fiscrpt${_period} acctcms -a -s ${_fiscal}/cms${_period} | \ pr -h "TOTAL COMMAND SUMMARY FOR FISCAL ${_period}" >> ${_fiscal}/fiscrpt${_period} pr -h "LAST LOGIN" -3 ${_sum}/loginlog >> ${_fiscal}/fiscrpt${_period} # "add commands here to do any charging of fees, etc" exit iscal directory mv ${_sum}/cms ${_fiscal}/cms${_period} # "restart summary cms file" nulladm ${_sum}/cms # "remove old prdaily reports" rm -f ${_sum}/rprt* # "produce monthly reports" prtacct ${_fiscal}/tacct${_period} > ${_fiscal}/fiscrpt$usr/lib/acct/lastlogin100755 3 3 3370 4201127174 11501 37777777777 : # @(#)lastlogin 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "lastlogin - keep record of date each person last logged in" # "bug - the date shown is usually 1 more than it should be " # " because lastlogin is run at 4am and checks the last" # " 24 hrs worth of process accounting info (in pacct)" PATH=/usr/lib/acct:/bin:/usr/bin:/etc cd /usr/adm/acct if test ! -r sum/loginlog; then nulladm sum/loginlog fi # "cleanup loginlog - delete entries of those no longer in" # "/etc/passwd and add an entry for those recently added" # "line 1 - get file of current logins in same form as loginlog" # "line 2 - merge the 2 files; use uniq to delete common" # "lines resulting in those lines which need to be" # "deleted or added from loginlog" # "line 3 - result of sort will be a file with 2 copies" # "of lines to delete and 1 copy of lines that are " # "valid; use uniq to remove duplicate lines" cat /etc/passwd | sed "s/\([^:]*\).*/00-00-00 \1/" |\ sort +1 - sum/loginlog | uniq -u +10 |\ sort +1 - sum/loginlog |uniq -u > sum/tmploginlog cp sum/tmploginlog sum/loginlog # "update loginlog" _d="`date +%y-%m-%d`" _day=`date +%m%d` # "lines 1 and 2 - remove everything from the total" # "acctng records with connect info except login" # "name and adds the date" # "line 3 - sorts in reverse order by login name; gets" # "1st occurrence of each login name and resorts by date" acctmerg -a < nite/ctacct.$_day | \ sed -e "s/^[^ ]*[ ]\([^ ]*\)[ ].*/$_d \1/" | \ sort -r +1 - sum/loginlog | uniq +10 | sort >sum/tmploginlog cp sum/tmploginlog sum/loginlog rm -f sum/tmploginlog og # "update loginlog" _d="`date +%y-%m-%d`" _day=`date +%m%d` # "lines 1 and 2 - remove everything from the total" # "acctng records with connect info except login" # "name and adds the date" # "line 3 - sorts in reverse order by login name; gets" # "1st occurrenusr/lib/acct/nulladm100755 3 3 705 4201127177 11123 37777777777 : # @(#)nulladm 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "nulladm name..." # "creates each named file mode 664" # "make sure owned by adm (in case created by root)" for _file do cp /dev/null $_file chmod 664 $_file chgrp adm $_file chown adm $_file done sorts in reverse order by login name; gets" # "1st occurrenusr/lib/acct/prctmp100755 3 3 1032 4201127201 10772 37777777777 : # @(#)prctmp 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "print session record file (ctmp.h/ascii) with headings" # "prctmp file [heading]" PATH=/usr/lib/acct:/bin:/usr/bin:/etc (cat < ${_nite}/lock1 chmod 400 ${_nite}/lock1 ln ${_nite}/lock1 ${_nite}/lock if test $? -ne 0; then _lnkerr="\n\n*********** 2 CRONS or ACCT PROBLEMS***********\n\n\n" (date ; echo "$_lnkerr" ) >/dev/console echo "$_lnkerr" | mail adm root echo "ERROR: locks found, run aborted" >> ${_active} rm -f ${_nite}/lock* exit 1 fi # Check to see if there is enough space in /usr to do nitely accounting # # for Xenix changed /usr to / _blocks=`df / | sed "s/.*: *\([0-9][0-9]*\) blocks.*/\1/"` if [ "$_blocks" -le $_MIN_BLKS ];then echo "runacct: Insufficient space in / ($_blocks blks); \c" echo "Terminating procedure" ( echo "runacct: Insufficient space in / ($_blocks blks); \c" echo "Terminating procedure" ) | \ tee /dev/console ${_active} | mail root adm rm -f ${_nite}/lock* exit 1 fi case $# in 0) # "as called by the cron each day" _date="`date +%m%d`" if test ! -r ${_lastdate} ; then echo "0000" > ${_lastdate} fi if test "${_date}" = "`cat ${_lastdate}`"; then (date; echo "${_errormsg}") > /dev/console echo "${_errormsg}" | mail root adm echo "ERROR: acctg already run for `date`: check ${_lastdate}" >> ${_active} rm -f ${_nite}/lock* mv ${_active} ${_active}${_date} exit 1 fi echo ${_date} > ${_lastdate} echo "SETUP" > ${_statefile} nulladm ${_active} echo "\n\n\n\n\n********** SYSTEM ACCOUNTING STARTED `date` **********\n\n\n\n\n" > /dev/console ;; 1) # "runacct MMDD (date) will restart at current state" _date=$1 echo "restarting acctg for ${_date} at `cat ${_statefile}`" >> ${_active} echo "\n\n\n\n\n********** SYSTEM ACCOUNTING RESTARTED `date` **********\n\n\n\n\n" > /dev/console ;; 2) # "runacct MMDD STATE restart at specified state" _date=$1 echo "restarting acctg for ${_date} at $2" >> ${_active} echo "previous state was `cat ${_statefile}`" >> ${_active} echo "$2" > ${_statefile} echo "\n\n\n\n\n********** SYSTEM ACCOUNTING RESTARTED `date` **********\n\n\n\n\n" > /dev/console ;; *) (date; echo "${_errormsg}") > /dev/console echo "${_errormsg}" | mail root adm echo "ERROR: runacct called with invalid arguments" > ${_active} rm -f ${_nite}/lock* mv ${_active} ${_active}${_date} exit 1 ;; esac # "processing is broken down into seperate, restartable states" # "the statefile is updated at the end of each state so that the" # "next loop through the while statement switches to the next state" while [ 1 ] do case "`cat ${_statefile}`" in SETUP) cd ${_adm} (date ; ls -l fee pacct* ${_wtmp}* ) >> ${_active} # "switch current pacct file" turnacct switch _rc=$? if test ${_rc} -ne 0; then (date ; echo "${_errormsg}" ) > /dev/console echo "${_errormsg}" | mail root adm echo "ERROR: turnacct switch returned rc=${_rc}" >> ${_active} rm -f ${_nite}/lock* mv ${_active} ${_active}${_date} exit 1 fi # " give pacct files unique names for easy restart " for _i in pacct?* do if test -r S${_i}.${_date} ; then (date ; echo "${_errormsg}" ) > /dev/console echo "${_errormsg}" | mail root adm echo "ERROR: S${_i}.${_date} already exists" >> ${_active} echo "file setups probably already run" >> ${_active} rm -f ${_nite}/lock* mv ${_active} ${_active}${_date} exit 1 fi mv ${_i} S${_i}.${_date} done # "add current time on end" if test -r ${_nite}/wtmp.${_date} ; then (date ; echo "${_errormsg}" ) > /dev/console echo "${_errormsg}" | mail root adm echo "ERROR: ${_nite}/wtmp.${_date} already exists: run setup manually" > ${_active} rm -f ${_nite}/lock* mv ${_active} ${_active}${_date} exit 1 fi cp ${_wtmp} ${_nite}/wtmp.${_date} acctwtmp "runacct" >> ${_nite}/wtmp.${_date} nulladm ${_wtmp} echo "files setups complete" >> ${_active} echo "WTMPFIX" > ${_statefile} ;; WTMPFIX) # "verify the integrity of the wtmp file" # "wtmpfix will automatically fix date changes" cd ${_nite} nulladm tmpwtmp wtmperror wtmpfix < wtmp.${_date} > tmpwtmp 2>wtmperror if test $? -ne 0 ; then (date ; echo "${_errormsg}") | mail root adm echo "${_errormsg}" > /dev/console echo "ERROR: wtmpfix errors see ${_nite}/wtmperror${_date}" >> ${_active} rm -f ${_nite}/lock* mv ${_active} ${_active}${_date} mv wtmperror wtmperror${_date} exit 1 fi echo "wtmp processing complete" >> ${_active} echo "CONNECT1" > ${_statefile} ;; CONNECT1) # "produce connect records in the ctmp.h format" # "the lineuse and reboots files are used by prdaily" cd ${_nite} nulladm lineuse reboots ctmp log acctcon1 -t -l lineuse -o reboots < tmpwtmp 2> log |\ sort +1n +2 > ctmp # if the following test is true, then pnpsplit complained about # the year and holidays not being up to date. This used to be # a fatal error, but now it will continue to process the accounting. # if test -s log ; then (date ; cat ${_nite}/log) | mail adm root echo "\n\n************ ACCT ERRORS : see ${_nite}/log${_date}********\n\n" > /dev/console mv ${_nite}/log ${_nite}/log${_date} fi echo "CONNECT2" > ${_statefile} ;; CONNECT2) # "convert ctmp.h records in tacct records" cd ${_nite} nulladm ctacct.${_date} acctcon2 < ctmp | acctmerg > ctacct.${_date} echo "connect acctg complete" >> ${_active} echo "PROCESS" > ${_statefile} ;; PROCESS) # "correlate Spacct and ptacct files by number" # "will not process Spacct file if corresponding ptacct exists" # "remove the ptacct file to rurun the Spacct file" # "if death occurs here, rerunacct should remove last ptacct file" cd ${_nite} for _Spacct in ${_adm}/Spacct*.${_date} do _ptacct=`basename ${_Spacct} | sed 's/Sp/pt/'` if test -s ${_ptacct}; then echo "WARNING: accounting already run for ${_Spacct}" \ >> ${_active} echo "WARNING: remove ${_nite}/${_ptacct} to rerun" \ >> ${_active} else nulladm ${_ptacct} acctprc1 ctmp < ${_Spacct} |\ acctprc2 > ${_ptacct} echo "process acctg complete for ${_Spacct}" >> ${_active} fi done echo "all process actg complete for ${_date}" >> ${_active} echo "MERGE" > ${_statefile} ;; MERGE) cd ${_nite} # "merge ctacct and ptacct files together" acctmerg ptacct*.${_date} < ctacct.${_date} > daytacct echo "tacct merge to create daytacct complete" >> ${_active} echo "FEES" > ${_statefile} ;; FEES) cd ${_nite} # "merge in fees" if test -s ${_adm}/fee; then cp daytacct tmpdayt sort +0n +2 ${_adm}/fee | acctmerg -i | acctmerg tmpdayt > daytacct echo "merged fees" >> ${_active} rm -f tmpdayt else echo "no fees" >> ${_active} fi echo "DISK" > ${_statefile} ;; DISK) cd ${_nite} # "the last act of any disk acct procedure should be to mv its" # "entire output file to disktacct, where it will be picked up" if test -r disktacct; then cp daytacct tmpdayt acctmerg disktacct < tmpdayt > daytacct echo "merged disk records" >> ${_active} rm -f tmpdayt disktacct else echo "no disk records" >> ${_active} fi echo "MERGETACCT" > ${_statefile} ;; MERGETACCT) cd ${_adm}/acct # "save each days tacct file in sum/tacct.${_date}" # "if sum/tacct gets corrupted or lost, could recreate easily" # "the mounthly acctg procedure should remove all sum/tacct files" cp nite/daytacct sum/tacct${_date} if test ! -r sum/tacct; then echo "WARNING: recreating ${_adm}/sum/tacct " >> ${_active} nulladm sum/tacct fi # "merge in todays tacct with the summary tacct" cp sum/tacct sum/tacctprev acctmerg sum/tacctprev < sum/tacct${_date} > sum/tacct echo "updated sum/tacct" >> ${_active} echo "CMS" > ${_statefile} ;; CMS) cd ${_adm}/acct # "do command summaries" nulladm sum/daycms if test ! -r sum/cms; then nulladm sum/cms echo "WARNING: recreating ${_adm}/sum/cms " >> ${_active} fi cp sum/cms sum/cmsprev acctcms ${_adm}/Spacct*.${_date} > sum/daycms acctcms -s sum/daycms sum/cmsprev > sum/cms acctcms -a -s sum/daycms | sed -n 1,56p > nite/daycms acctcms -a -s sum/cms | sed -n 1,56p > nite/cms lastlogin echo "command summaries complete" >> ${_active} echo "USEREXIT" > ${_statefile} ;; USEREXIT) # "any installation dependant accounting programs should be run here" echo "CLEANUP" > ${_statefile} ;; CLEANUP) cd ${_adm}/acct # " finally clear files; could be done next morning if desired" nulladm ${_adm}/fee rm -f ${_adm}/Spacct*.${_date} # "put reports onto a file" prdaily >> sum/rprt${_date}; rm -f nite/lock* rm -f nite/ptacct*.${_date} nite/ctacct.${_date} rm -f nite/wtmp.${_date} nite/wtmperror${_date} nite/active${_date} mv nite/tmpwtmp nite/owtmp echo "system accounting completed at `date`" >> ${_active} echo "********** SYSTEM ACCOUNTING COMPLETED `date` **********" > /dev/console echo "COMPLETE" > ${_statefile} exit 0 ;; *) (date;echo "${_errormsg}") > /dev/console echo "${_errormsg}" | mail adm root echo "ERROR: invalid state, check ${_statefile}" >> active rm -f ${_nite}/lock* mv ${_active} ${_active}${_date} exit 1 ;; esac done # " runacct is normally called with no arguments from the cron" # " it checks its own locks to make sure that 2 crons or previous" # " problems have not occured" # " runacct uses the statefile to record its progress" # " each state updates the statefile upon completion" # " then the next loop though the while picks up the new state" # " to restart this shell, check the active file for diagnostics" # " fix up any corrupted data (ie. bad pacct or wtmp files)" # " if runacct detected the error it removes the locks" # " remove the locks if necessary, otherwise runacct will complain" # " the lastdate file should be removed or changed" # " restart runacct at current state with: runacct MMDD" # " to override the statefile: runacct MMDD STATE" # " if runacct has been executed after the latest failure" # " ie. it ran ok today but failed yesterday" # " the statefile will not be correct" # " check the active files and restart properly" # " if runacct failed in the PROCESS state, remove the last" # " ptacct file because it may not be complete" # " if shell has failed several days, do SETUP manually" # " then rerun runacct once for each day failed" # " could use fwtmp here to split up wtmp file correctly" # " normally not a good idea to restart the SETUP state" # " should be done manually, or just cleanup first" # " FILE USAGE: all files in /usr/adm/ac/nite unless specified" # " statefile records progess of runacct" # " lastdate last day runacct ran in date +%m%d format" # " lock lock1 controls serial use of runacct" # " active place for all descriptive and error messages" # " fd2log fd2 output for runacct ( see cron entry ) " # " wtmp.MMDD owtmp yesterdays wtmp file" # " tmpwtmp yesterdays wtmp corrected by wtmpfix" # " wtmperror place for wtmpfix error messages" # " lineuse lineusage report used in prdaily" # " reboots reboots report used in prdaily" # " ctmp ctmp.h records from acctcon1" # " log place for error messages from acctcon1" # " ctacct.MMDD connect tacct records for MMDD" # " ptacct.n.MMDD process tacct records n files for MMDD" # " daytacct total tacct records for this days accounting" # " disktacct disk tacct records produced by disk shell" # " daycms ascii daily command summary used by prdaily" # " cms acsii total command summary used by prdaily" # " following files in /usr/adm directory" # " fee output from chargefee program" # " pacct active pacct file" # " pacctn switched pacct files" # " Spacctn.MMDD pacct files for MMDD after SETUP state" # " wtmp active wtmp file" # " following files in /usr/adm/acct/sum" # " loginlog output of lastlogin used in prdaily" # " tacct total tacct file for current fiscal" # " tacct.MMDD tacct file for day MMDD" # " cms total cms file for current fiscal" # " rprt.MMDD output of prdaily program" # " wtmp.MMDD saved copy of wtmp for MMDD" # " pacct.MMDD concatenated version of all pacct files for MMDD" # " cmsprev total cms file without latest update" # " tacctprev total tacct file without latest update" # " daycms cms files for todays usage" ollowing files in /usr/adm/acct/sum" # " loginlog output of lastlogin used in prdaily" # " tacct total tacct file for current fiscal" # " tacct.MMDD tacct file for dausr/lib/acct/shutacct100755 3 3 1014 4201127222 11306 37777777777 : # @(#)shutacct 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "shutacct [arg] - shuts down acct, called from /etc/shutdown" # "whenever system taken down" # "arg added to /etc/wtmp to record reason, defaults to shutdown" PATH=/usr/lib/acct:/bin:/usr/bin:/etc _reason=${1-"acctg off"} acctwtmp "${_reason}" >>/etc/wtmp turnacct off acct 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "shutacct [arg] - shuts down acct, called from /etc/shutdown" # "whenever system taken down" # "arg added to /etc/wtmp to record reason, defaults to shutdown" PATH=/usr/lib/acct:/bin:/usr/bin:/etc _reason=${1-"acctg off"} acctwtmp "${_reason}" >>/etc/wtmp tusr/lib/acct/startup100755 3 3 721 4201127224 11160 37777777777 : # @(#)startup 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "startup (acct) - should be called from /etc/rc" # "whenever system is brought up" PATH=/usr/lib/acct:/bin:/usr/bin:/etc acctwtmp "acctg on" >>/etc/wtmp turnacct on # "clean up yesterdays accounting files" remove ctg off"} acctwtmp "${_reason}" >>/etc/wtmp tusr/lib/acct/turnacct100755 3 3 1735 4201127227 11332 37777777777 : # @(#)turnacct 5.3b of Jan 27, 1988 : # Copyright (c) 1984 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. # "control process accounting (must be root)" # "turnacct on makes sure it's on" # "turnacct off turns it off" # "turnacct switch switches pacct to pacct?, starts fresh one" # "/usr/adm/pacct is always the current pacct file" PATH=/usr/lib/acct:/bin:/usr/bin:/etc cd /usr/adm case "$1" in on) if test ! -r pacct then nulladm pacct fi accton pacct rc=$? ;; off) accton rc=$? ;; switch) if test -r pacct then _i=1 while test -r pacct${_i} do _i="`expr ${_i} + 1`" done mv pacct pacct${_i} fi nulladm pacct accton accton pacct _rc=$? if test ${_rc} -ne 0; then echo "accton failed" rm pacct mv pacct${_i} pacct exit ${_rc} fi ;; *) echo "Usage: turnacct on|off|switch" _rc=1 ;; esac exit ${_rc} PATH=/usr/lib/acct:/bin:/usr/bin:/eusr/lib/acct/holidays100755 3 3 561 4236173550 11307 37777777777 * #ident"@(#)acct:holidays 1.8" * Prime/Nonprime Table for UNIX Accounting System * * Curr Prime Non-Prime * Year Start Start * 1988 0830 1700 * * Day of Calendar Company * Year Date Holiday * 151 May 30 Memorial Day 186 Jul 4 Indep. Day 248 Sep 5 Labor Day 329 Nov 24 Thanksgiving Day 330 Nov 25 day after Thanksgiving 360 Dec 25 Christmas pacct${_i} pacct exit ${_rc} fi ;; *) echo "Usage: turnacct on|off|switch" _rc=1 ;; esac exit ${_rc} PATH=/usr/lib/acct:/bin:/usr/bin:/eusr/lib/acct/ptecms.awk100755 3 3 1276 4201127234 11561 37777777777 #ident "@(#)acct:ptecms.awk 1.3" BEGIN { MAXCPU = 20.0 # report if cpu usage greater than this MAXKCORE = 1000.0 # report if KCORE usage is greater than this } NF == 4 { print "\t\t\t\t" $1 " Time Exception Command Usage Summary" } NF == 3 { print "\t\t\t\tCommand Exception Usage Summary" } NR == 1 { MAXCPU = MAXCPU + 0.0 MAXKCORE = MAXKCORE + 0.0 print "\t\t\t\tTotal CPU > " MAXCPU " or Total KCORE > " MAXKCORE } NF <= 4 && length != 0 { next } $1 == "COMMAND" || $1 == "NAME" { print next } NF == 10 && ( $4 > MAXCPU || $3 > MAXKCORE ) && $1 != "TOTALS" NF == 13 && ( $5 + $6 > MAXCPU || $4 > MAXKCORE ) && $1 != "TOTALS" length == 0 t\t" $1 " Time Exception Command Usage Summary" } NF == 3 { print "\t\t\t\tCommand Exception Usage Summary" } NR == 1 { MAXCPU = MAXCPU + 0.0 MAXKCORE = MAXKCORE + 0.0 print "\t\t\t\tTotal CPU > " MAXCPU " or Total KCORE > " MAXKCORE } NF <= 4 && length != 0 { next } $1 == "COMMAND" || $1 =usr/lib/acct/ptelus.awk100755 3 3 1626 4201127237 11604 37777777777 #ident "@(#)acct:ptelus.awk 1.4" BEGIN { MAXCPU = 20. # report if cpu usage is greater than this MAXKCORE = 500. # report is Kcore usage is greater than this MAXCONNECT = 120. # report if connect time is greater than this } NR == 1 { MAXCPU = MAXCPU + 0 MAXKCORE = MAXKCORE + 0 MAXCONNECT = MAXCONNECT + 0 printf "Logins with exceptional Prime/Non-prime Time Usage\n" printf ( "CPU > %d or KCORE > %d or CONNECT > %d\n\n\n", MAXCPU, MAXKCORE, MAXCONNECT) printf "\tLogin\t\tCPU (mins)\tKCORE-mins\tCONNECT-mins\tdisk" printf "\t# of\t# of\t# Disk\tfee\n" printf "UID\tName\t\tPrime\tNprime\tPrime\tNprime\t" printf "Prime\tNprime\tBlocks\tProcs\tSess\tSamples\n\n" } $3 > MAXCPU || $4 > MAXCPU || $5 > MAXKCORE || $6 > MAXKCORE || $7 > MAXCONNECT || $8 > MAXCONNECT { printf("%d\t%-8.8s\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\t%d\n", $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) } E > %d or CONNECT > %d\n\n\n", MAXCPU, MAXKCORE, MAXCONNECT) printf "\tLogin\t\tCPU (mins)\tKCORE-mins\tCusr/lib/lpshut106755 6 3 37224 4213315521 10146 37777777777 L8" T3H 4$@.textT3 .data$@$@H $4@.bssl@l@4.comment(l>ÐETl@RU RP P 3jÐUE P@yt&h8@P tjh;@6hj@Y=ujhx@h@h@jqY th@Yjp2Yh@g Yh@\ Yjh@אUhj1UTEh@u> t>h@uh@EPjEP t$h@EPz&h@EPg&jEPY=@u+XjeYh@EPv&@jGY=@tXj6Yu EPh@5@EjY}t5@g(Y@ @=@t3U Eah @$YEtuYEt EU9Pt!uYEt EUE}tjuhp@  @uh(@hp@L p@ÐU(EPu6 =E%=@u E EE9Eu EE1U;uE%8EE%EE t Et$E t E܀tE tE@u3U=P@t5P@hX@h|@ uh]@h|@ h|@~&Y} t=T@tT@u '/Yø /3Ð/ÐÐUWWt7uuiNj}ÐUWV}t9~u=Ƌu}U=t@uhx@hd@a#t@5t@YU=t@t5t@$Yt@UW}G?t=:t = u= u ?tGNj}U=t@uhz@hd@"t@u35t@YUWuhh@_ ="@WQY="@WBY=:j EPW EW"YPj:W! 9Eu`WY}| `9E~aE"@t4=:t*j EPW EW!YPj:WP! 9Et3}WY}| `9E~aE"@="@="@W^Y="@WOY="@W@Y="@G?t =,u?tG="@"@oUWVS} uEE~,F t!O>(VY=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V @+V;}V3&Y}u +gEEvÐUPWE Ex@ux@t* x@hl@uu x@ t }ËWV|$ t$T$L$I|&:tI|:tI|:t I| :u܋^_3^_UW}W!YjjG P% GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}uW#YG uG tO G Dt1\@"u}F @tV Y;5|@rGGG tG @+GPwG P  | GG듸9tO O G tg aÐUWEEEEEE2EEEPuu  ENj}ÐWVt$ |$;t@uAt8u9t0u1t(u)t u!tututu u3^_ß^_WV|$L$3ыϋt$+΋|$ ȁ3D$ ^_ÐU WVS}uE} tE 8$E@u5GEE@uE=+t =-u EGEu309Et "G=xt G=XuE@tEE@t E-0#E@t E-WE-7E;| 3]u}Ãu;09Eu1G@tG=xt G=Xu EE@t E-0#E@t E-WE-7+EGE@tEE@t E-0#E@t E-WE-7E;|} tE 8}t! &Ð%3Ð %3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESS YSVjWES]u}VWE05$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  @EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSuJ# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžlh@Dž\9PtP؉PNKPPoYh~PW =uh~Ph@B 3W# YkUjuuuu u#Ujuuuu uU$WVS}"@E"@E@s3UtE]"@E@E@E @r5E@r @E@AE<@s6EE]@)EED@r݋EE 9P܃}t؁"@"@v"@EL@t"@r05}fEf fEmE]mE܉E@0Ee T@];r&=5|+"@u"@1}tCF0N<9"@]Ћuԋ}ËEE0]@EEsEE 9P EEEE$@MU]vEu}fEf fEm]mE܉EFUR0EMm]E,@E54@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G @UEE ;ur;u s 3]u}ËG9GreG urRVuG Pj ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W @+W;}WY+Åu>G Dt+G uEE Pj u tWYEEWUWVS}l@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3W|$D$ L$uH_3_ÐR ÐW֋|$ 3ыt$ |$ȁD$_ÐW|$3A_ÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSu= E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W@UW\@;=|@r3}ÃG uUW\@ WY;=|@r}UWV}tlG t6G t3WVYG PY}L@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG @9GGGU= uQWY=E}G %=u7EEjEPG PK =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G @+G?}3W @+W;}W{Y~'SVG P3 ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G @+G?}3W @+W;}WY3UWV}G G u}}&u"@'@GW @*h!YGt@O G W@GGVYtG uO @u}G +@WR@UWV}G @+G}G @Wu};7}7𐐐3ÐUL@EEPhTu } EL@3ø6ÐÐU WVSE9ET=`@u?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@+@+@|@ +@,@3.1bS03.1bS03.1bS03.1bS03.1bS0|@ +@usr/lib/lib.b100644 3 3 3111 4201127256 7550 37777777777 scale = 20 define e(x){ auto a, b, c, d, e, g a=1 b=10 c=b d=1 e=1 for(a=1;1==1;a++){ b=b*x c=c*a+b d=d*a g = c/d if(g == e) return(g/10) e=g } } scale = 20 define s(x){ auto a, b, c, d, e, g, y y = -x*x a=1 b=x c=b d=1 e=1 for(a=3;1==1;a=a+2){ b=b*y c=c*a*(a-1) + b d=d*a*(a-1) g=c/d if(g==e) return(g) e=g } } scale = 20 define c(x){ auto a, b, c, d, e, g, y y = -x*x a=1 b=1 c=b d=1 e=1 for(a=2;1==1;a=a+2){ b=b*y c=c*a*(a-1) + b d=d*a*(a-1) g=c/d if(g==e) return(g) e=g } } scale = 20 define l(x){ auto a, b, c, d, e, f, g, u, s, t if(x <=0) return(1-10^scale) t = scale scale = 0 f = 1 s = x while(s > 0){ s = s/10 f = f + 1 } scale = t + f f=1 while(x > 2){ x = sqrt(x) f=f*2 } while(x < .5){ x = sqrt(x) f=f*2 } u = (x-1)/(x+1) s = u*u b = 2*f c = b d = 1 e = 1 for(a=3;1==1;a=a+2){ b=b*s c=c*a+d*b d=d*a g=c/d if(g==e){ scale = t return(u*c/d) } e=g } } scale = 20 define a(x){ auto a, b, c, d, e, f, g, s, t if(x==0) return(0) t = scale f=1 while(x > .5){ scale = scale + 1 x= -(1-sqrt(1.+x*x))/x f=f*2 } while(x < -.5){ scale = scale + 1 x = -(1-sqrt(1.+x*x))/x f=f*2 } s = -x*x b = f c = f d = 1 e = 1 for(a=3;1==1;a=a+2){ b=b*s c=c*a+d*b d=d*a g=c/d if(g==e){ scale = t return(x*c/d) } e=g } } scale = 20 define j(n,x){ auto a,b,c,d,e,g,i,s s= -x*x/4 if(n<0){ n= -n x= -x } a=1 c=1 for(i=1;i<=n;i++){ a=a*x c = c*2*i } b=a d=1 e=1 for(i=1;1;i++){ a=a*s b=b*i*(n+i) + a c=c*i*(n+i) g=b/c if(g==e){ return(g) } e=g } } cale + 1 x= -(1-sqrt(1.+x*x))/x f=f*2 } while(x < -.5){ scale = scale + 1 x = -(1-sqrt(1.+x*x))/x f=f*2 } s = -x*x b = f c = f d = 1 e = 1 for(a=3;1==1;a=a+2){ b=b*s c=c*a+d*b d=d*a g=c/d if(g==e){ scale = t return(x*c/d) } e=g } } scale = 20 define j(n,x){ auto a,b,c,d,e,g,i,s s= -x*x/4 if(n<0){ n= -n x= -x } a=1 c=1 for(i=1;i<=n;i++){ a=a*x c = c*2*i } b=a d=1 e=1 for(i=1;1;i++){ a=a*s usr/lib/help/interact100755 3 3 106424 4201127524 11377 37777777777 L(! xd)X@.textx .dataX@X@dXy@.bss,@,@).commentXÐET,@RU RP P=xjÐUPjrY=t @E 4@u u&P=@(@9@jjj# h@h9@GEu 54@h@h(@J jwYNT=@H=@5T=@h4@DH=@uhh4@E u5T=@fIYuGYD=@5T=@mY9@th@h9@~L'9@t"jvYUP9E<54@54@hk@h(@IjvY,@=?=dt+=l=rtd=sf9@h@5#@kX=@5#@54@h@h(@HjvYh@5#@j\=@uh5#@54@h@h(@JHjuY@h@5#@j`=@&54@54@hk@h(@HjuYh@u u? ,@=#@U Ћ4@Rh9@ih@h9@JuDh@E #@B4 KEuE #@B AOE #@BM E #@B#@4h<@0i4@Eh@u0Jt(h@uJth@uJuh<@h(9@hh%@uIuh<@hx9@hh<@h<@hUh-@h9@Iux9@D=@f 39@:@;@h2@h<@JhhB@hW<@8hL=@@3@UfE5X=@EYh4@hYƀ4@E4@jh~@uL u0f}qh9@h4@H7fE,jh@uK u4f} h@h4@HD=@L jh@uK u)f}h4@YPh9@gjh@uDK u&f}h4@YPh:@fgjh@uK u"f}tJh4@YPh<@f/jh@uJ uf}th4@hW<@sf5X=@hh4@@ Uf}u%h9@54@h@h(@;DjqYUuh,@f,@,@,@=%,@,@=Nt?=RtD=ctI=ktN=nt=rM,@<@:,@9@.,@9@",@<@,@(9@ ,@x9@5,@eY,@t(=t!=h,@`eY@,@,@,@,@*,@+,@ ,@ʊ,@,@,@+,@,@Њ,@u,@ƀ,@R,@,@,@,@,@ ,@,@@9,@,@,@,@ ,@,@,@u ,@,@,@,@I,@U9@t 9@u 0@qT@PtT@@+;@-0@C@50@j 9@jdYR=0@9H=@~90@tjVjY 1@uh@h(@uAjnY 1@L=@0@L=@;@PT@R+;@PL=@B3҉P 0@S@L=@p0 tA@=@u.@L=@;@PT@R+<@PL=@p Y20@=uL=@PL=@90@L=@x jiY 1@uh@h(@;@jmY 1@0@5T=@;Y0@0@L=@P@ L=@0@P 0@;@PT@R+<@PL=@P L=@90@0@L=@L=@P L=@L=@pjYL=@x u5L=@jYXUh<@h<@JaYh@h<@3aBh<@IaYƀ<@T@p@Yh(@cY0@=`=@t790@uA@G@Ph<@h9@h @5`=@>90@uhJ@h<@`90@90@t0@áT@p,Yh<@}`Y=uh{@hW<@h8@7`h(@h8@YPT@xt' (@}h(@j c(@ (@jT@@-PT@pP# P[YT@p@MYh(@h<@5P=@jOh<@9 90@P<@= >"Uh9@h9@L_<@=!uh<@Y<@=>uHh@h<@@PYh@h<@^j59@5T=@I= <@=|uT90@uGh<@Yh@h<@^j59@5T=@< 0@F<@u:<@=b=h=n=qtk=r+Dž9@h@,?<@h<@hx9@]h@h9@]h@h9@]h@54@>Vh@h9@><h@h9@n]6=L=@L=@x=L=@L=@e9Pf9P0@h@=uh@h9@\)h@=uh<@h(9@\0@h<@\Y0@h9@\Y0@5\=@.:Yh4@~\Yƀ4@50@h<@h4@y@ 0@4@=:j,0@4@P<E50@h9@0@4@P@ nh@h<@<u9h@h9@<t#x9@uh@h9@<?0@0@4@Ph9@d[jh@h9@? uh9@h<@:[9@h4@P[0@4@E50@h9@u,? u0j:P_?E@EPh9@ZEuZY0@@0@0@0@=:th @u;Eb5\=@hh4@t4  UP:@h@h9@/;t,h@h9@;th @h9@;ux9@th+@h:@>hE@54@:uhJ@h:@[>hb@h:@I>;@1@30@rá1@:@=\u1@O0@0@=O~= 1@1@:@=,u1@@1@ƀ:@ ;@0@1@1@:@u1@1@;@;@1@91@|hr@,1@E(1@#(1@=\u(1@,1@(1@(1@uҡ,1@Y0@@=O;@jh@,1@E(1@#(1@=\u(1@,1@(1@(1@uҡ,1@YEh@,1@E(1@#(1@=\u(1@,1@(1@(1@uҡ,1@YUЋ0@@=O ;@g6;@h<@$;@k;@i<@@<@;@h@,1@E(1@#(1@=\u(1@,1@(1@(1@uҡ,1@Y0@@=O;@e;@f<@lUP9E tLf=9@uT@pujYujYjuhE@hB@h:@B1j@LZY=1@~AjjYEh$1@NY 1@;1@t 9 1@uujtYujgYujZY (@}h(@j!KQ(@!(@h(@hH@5P=@hh4@(( 4@= tT@p,{YU,1@E(1@#(1@=\u(1@,1@(1@(1@uҡ,1@U54@54@hk@h(@+jXYU 5T=@&Y9@hhuW = 9,@*ju71uNju&1t=uh<@Lh@h8@Lh(@h8@YPj/u41uE.E9t ju0Nh>@u_-uj@j Puh<@Lh@@h8@ Lh(@h8@YP39,@uej/u\0Džuh<@Khk@h8@Kh(@h8@fYPeuh<@lKh@h8@ZKh(@h8@&YP%h@(d=@uh(@h@N5T=@(Y5d=@P5T=@hP$ u5d=@LYQYU5T=@ $Y9@h@u}%d=@uh(@h@J5T=@(Y5d=@P%5T=@hPO$ u5d=@/&Ih(@h@5P=@hh4@$ 4@= tT@p,cYUh@h<@Ij59@5T=@ ( ÐU (@}h(@EPLá(@(@UUh$ju Uh$uÐUT@rt&T@nPhTT@lPO 3UWVS}G%%؁u tu]u}ËЋU<WVS}uh@GYE}t EuP@EDž}t Eh@GY>VYHY@uGHYЁ~fh@VPGP HYЋ/FFU /FuVGjPGR} 9,@}Vh@PnGPGYЋEVuVCGjPQ}c 9,@tjh@3+tfh@#fh@fh@}t Euhh=@FhPF LYfh@B9ufh@'=@WTY9uW7YW'YWYWYWYDž=d@hLYT@tyjLYX@t\jvLY\@t?hbLY`@\H@9`@t 5`@NY5\@NY5X@NY5T@NYfh@}u h@PPY_d@T@C@X@$H@\@@H@`@\H@x9s Dž>@u|KY}t EjuT@P% T@ƀX@\@`@T@ǂ3҉9E uu {JYuE T@fU fl5T@ǀǀ3ffffhjP$ YT@T@3f@ы T@BƀT@ǁj4jP# T@nPhTT@lPI 3T@T@n JHJHJ H fJfHWV%M X@@5X@G;sFӁu;s+PjV" tG\@\@@:W6Y;s"} fffu;s#+ùEPjS:" Phju WH =t0t&t\@ffPffDžDžh@@Yh@v@Yt&[Y~\@ffPt%,Y~\@ff`@`@?WY;s'} Ëu;s#+ùPjS WJ T@%=uKT@fT@t&T@PhTT@lPF 3 T@xt`@`@3҉T@@+T@P5X@5T@I T@@(T@R+P5\@T@@PI T@lT@R(+P5`@T@@(PI T@L`@DžSl@ ɉ tT@,@ p 9|T@4\@@=uT@xu fPf| \@f@DžTx@<t04;uT@,@ 9rT@ǀDž|@ ɉ tM~04t39u@4T@juT@,@!9GT@T@J\tJhxJx|3UEǀǀ3ffffhjP UT@t&T@PhTT@lP C 3UT@nPhTT@lPB 3ÐUh @h(@"hh=@h@4@h(@ h @h(@ÐUWVSDžl}01@Dž`E \EXT@} 03@%:uGDž ӈGht%=t = `tT@@TDžh|T@@lT`t6Tt-T@@H9h}T@xtthPtTTt&T@@P9EuTh03@;hFhlpll TQk:YplAlb\XQG-1=wo$`!@plBl\ plBlX plBlM plBlM plBlM jplBlM OplBlM$ 4plBlM( plBlM, 1u3` =a|1=z'pll EGa =A=ZpllfGafJ=a|2=z(EGa plBl K=A==Z/GaPplAlplBlG G='DžhDžd=-uDždG=+Gpllpll hplBlhˉ @pllpll hplBlh+ˉ pllpll hplBlhˉ pllpll hplAlIpllpll hplAlpllpll hplBlh#ˉ pllpll hplBlh ˉ Spllpll hplBlh3ˉ pllpll h9hpllpll h9h{pllpll h9h|Apllpll hhtA3plAlpllpll hh뜍pl<u3pl}plЍpl[pll<uCjeW4j;W%- \=^QI$!@Gu'h03@V201@Ã%t Fӈpl hG|- |=w |$ @Džt u΋=Xt =dt=ot=st =xӈsuhPV~ hPVf F>ulkh -0hG؃0|9~܃}t3plBldh UWVS}35%u0GU ;t;uu Nj]u}À?uF;uNGu3ܐUWVS}3EET@@,93@tT@93@uE%@t!k G-0%@uk =.u:G%@t -0G%@uEG=/u E=*tۃ}tu =>u#GtT@xt"}uNj]u}ËCPUYuVUW}t>=3@1=$uG=<uuu W GPUY?u3}ÐUu T@u 3U WVS}u ]T@4\@@ET@;uT@9uET@׉UuEU‹T@#Et#EU‹U!EU EE|^E}~EE2EU‹U#,@tE,@ EMt E 9E|čEUM EMC}u;tzT@4twSj%P%P%@P% P%P%P%P%P%PT@4(P E]ԋu؋}áT@xu fPf|3#DžE#3ƅEEuT@U#9UtSjT@e 3LE.EU#,@tSjT@U4- E9E|ȋ#%3#DžEtYEFEU#,@t4SjT@LU4 E,@ЋU#Ѕ҉Ut E 9E|T@fPf~Sjp` T@UPWVS}X@xu}T@%E}~ 9Er]u}ËEE#@T@t 3ۋǙSU YO3먐U} u,@3Ã} }uu R2YEu,@ 3,@h4#@5 #@JEu3,@uu uP u,@ 3xu"Yju E@= t,@"3CE@E4UPWVS}E%@uJG%@u=+t =-u EG%@u 3]u}ø0+Ëk 0+G%@uރ}t뾋븐UPWV9t#@ueE9#@}#E #@ =-u E Au u}hx#@E #@4 u #@E #@ t#@=#@:tWui =|#@tOLjEE E 0|)YPE 0j64 h\#@a)YPh\#@j4 jEPj 4 E #@ t#@@t#@u#@t#@?F=:t#@@U #@tt#@@U #@#@#@@#@;E|l=|#@tOLjEE E 0(YPE 0jS3 h8#@~(YPh8#@j83 jEPj(3 t#@?GE #@#@ #@t#@8E #@ t#@@t#@ut#@#@#@UWVS} 3G %=utG9Gu!?uG DuWJ,Y 3G +@UG u;uj'YEPuG P 2 E]u}Wa+Y=u~GEU+Ѕҋ~SjuuEt E+EH؋)G?}3W +@+W;}W,Y}t*G @tW*Y=u ]VEgUPWE8}E@ t E؋?E@ t[3E@ t!Ext@ u EЋ@+BjjE@ P, E}|EE}øUWVS} uEE~,F t!O>(V3Y=uE9Eu~3]u}N;>}Sj vuEtE+E؋E)F>}3V +@+V;}VC+Y}u +gEEvUWVSEPfYE =ruEEE =ruEErE3@?t-3@P*Y`4@rڋE =ru3EV*Yu*YujS S*Yjuh#@h#@h#@jY9Eu 3]u}ËE3@SM*Yu VUWVE@ u%Yjj.Ejj.Ejj.EEP#Y;43@tu9,@tكuEujf.ujY.ujL.3@Eu}Ð>.ÐUWV} $t?F EF F F3҉V+@=at=rt=wt3u}ÀN jjuj) N G=+uf N ȸ*.L$Q3ÐUWVS}u ]GF:u Nj]u}M}3UW}W$YjjG P( GGg G tg }ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUPWV}g G 9E}qtkG u`7E E}ujjG P( +ЋE)E G u&~"9uG+G9E|EG)3u}G t GGg uu G P' ECG t8Wj#YG t g GGuu G PM' E9Eus3lUWV}uW%YG uG tO G Dt1(@"u}F @tV"Y;5+@rGGG tG +@+GPwG P | GG듸9tO O G tg aUPWVS}] u}GN}E]u}ÐUWEEEEEE2EEEPuu 7 ENj}ÐUWS}] ;u Nj]}ËG8u3UWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐUWVS}u`4@Etu WЋu 3]u}u V&u `4@ C`4@ɐUWVS}u Ct ;ut Nj]u}ËG8u3UWVS} ]Ft ;utCuދ+E]u}U5,@E Pu Ð;((t3ÐUWEP0Yh#@EPqu3}ÍEP8Y퐐UWV}ud4@Eh#@Wh#@Wph#@Wb#@aF=zttWYNju}ÐUWVS}3'uYƹ 3R0ˆ3O=XuCvG?ta9juEuE]u}Ê=z~Eju tǐ!J'ÐUWVS}u ]C;u 3]u}Kt F;ttN+؊Gu͐UWVS}] 3;uG8uƋ]u}ÐUWVS}u ߋG8uOGF҈uË]u}UW} 9EtFG tG9GwG9Gu+?u&GuW= YGHGUE}ø .&3ÐUE%EE%EUEUE@0UWVS}u ]C =2t9E+C)ESSE YSVjWES]u}VWE0i$ ƋUUWVS}uEDž,Dž(Dž F FE29u E  +@EEts%9EtiGEt %9Eu+ÉEE;EvEPVSSu~# E}E+F)EF;EvF =2tVYF Dt*F uuj E+EP` tVYF t ËEDžX3E؉T\EGE E PU}E؉EuMMMMM@EE@tE E PU}iE]EDuM E-0 M.EE E PP~؉]P}CDžl%@Dž\9PtP؉PNKPPoYh~PW =uh~Ph%@v 3WW YkUjuuuu u#Ujuuuu uU$WVS}4@E4@E(@s3UtE]4@E (@E(@E\(@r5Ed(@rp(@El(@AE(@s6EE]@)EE(@r݋EE 9P܃}t؁4@4@v4@E(@t4@r05}fEf fEmE]mE܉E@0Ee (@];r&=5|+4@u4@1}tCF0N<94@]Ћuԋ}ËEE0]@EEsEE 9P EEEEt(@MU]vEu}fEf fEm]mE܉EFUR0EMm]E|(@E5(@]UWVS}}~bG %=utG9Gu?uG Du WYu)3u!G +@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W +@+W;}W;Y+Åu>G Dt+G uEE Pj u tW(YEEWUWVS},@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}ø. L$tÐUlPu u' UW}WYWu u }UPWVS}}EE @=+u3E =at+=rt==wt (t t3hSuI E|WEG tE =ruG E =au$u jju } 3]u}G G3҉W+@UW(@;=+@r3}ÃG uUW(@ WY;=+@r}UWV}tlG t6G t3WVYG PY},@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG +@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G +@+G?}3W +@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G +@+G?}3W +@+W;}WY3UWV}G G u}}&uM@ Q@GW +@*h!YGt@O G W+@GGVYtG uO @u}G U@WR+@UWV}G +@+G}G +@Wu};7}7𐐐3ÐU,@EEPhTu } E補,@3ø6ÐÐU WVSE9ET=,@u<,@ ,@,@ ,@,@,@,@,@,@,@E@3؋=,@E&;5,@,@E@E=w=,@jY,@@;t?3Ee ƹ3tL3+‰EEE2,@+,@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5,@,@0E+E-,@@;t,@,@,@,@~Љ,@;5,@v,@,@,@ 9=,@u ,@,@G(=,@95,@u=,@7tލ;r;l%;UWV}5,@%,@9u5,@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ,@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$,@Ru ,@+D$øT$,@3øÐ0yNL$0y:L$0+L$0L$0 L$0ÃÐ,@ÐoT$\@@(#)interact 5.3b of Jan 27, 1988quitr%s: can't create input for display handler. sd:r:l:r%s: can't open %s, r%s: can't open %s, adefine getdescgetexamplegetoptionkeysrchhelpEnter choice > \S %r \S is an invalid choice. Enter a choice shown above.name:name:filter:filter:promptcommand:command:menu:menu:prompt:prompt:error:error:%s: interaction name %s is not in display table. Enter choice > name=%s response='%s' status=%s ERROROKEnter > file, | cmd(s), or RETURN to continue > \S %r \S is an invalid choice. Enter a choice shown above. quithelphelphelpgetkeykeysrchdefineglossarygetdoelhelpstarterdefine,:getdescgetoptiongetexample, \S l \S(back to locate)help, \S h \S(restart help), \S q \S(quit)\S n \S(next pg)\S n \S(next pg)\S b \S(back 1 pg)\S b \S(back 1 pg)%s: not enough space to allocate page structure. MORE\S n \S(next pg)\S n \S(next pg)\S b \S(back 1 pg)\S b \S(back 1 pg)/bin/shsh-c \SPress to continue\S: %s usage: %s [options] [first name] [first response] options available: -d -r -l -s scroll display Cannot write on file \S %r \S..Cannot create files in directory \S %r \S.Directory \S %r \S does not exist.Cannot create file \S %r \S.whelp: cannot open output redirection streamwhelp: cannot open output pipe \SPress to continue\S: Enter choice >  @@C@$H@@H@\H@#$" !+,&unknownTERMTERMINFO/usr/lib/terminfo/a//usr/lib/terminfo/.LINESCOLUMNS@@ @B @[ @s @ @ @/usr/lib/terminfo is unaccessibleI don't know anything about your "%s" terminalcorrupted terminfo entryterminfo entry too longTERMINFO pathname for device exceeds 512 charactersmalloc returned NULLterminfo file for "%s" terminal is not readableSorry, . \2];];\2];];];];];];];\2];\2\2];\2\2\2\2\2\2\2\2\2\23334;4V4q444-2::%<-2%<;75%<%<6P6%<6-2J7-2-2-2-2-2-2-2-2-2-2-2:c98)9:%<9%<%<%<%<%<%<%<%<%<%<%<%<%<94%<%<%<%<%<%<%<-2%<%<%<%<%<8%<%<%<%<w2-2:%<\5%<3%<%<D37%<-23%<%<-2:%<%<%<-2%<%<6=8%<f:5MS7) $#@pwd 2>/dev/nullr: option requires an argument -- : illegal option -- --/bin/shsh-c/usr/tmp/w+aaaXXXXXX/usr/tmp//usr/tmp/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINFUb_b_Ub_^b_b_b_b_UUb_UUb_U V V V V V V V V Vb_b_b_b_b_b_b_b_b_b_b_$Xb_\b_b_b_b_b_b_b_b_b_b_b_b_b_b_b_b_Wb_b_b_b_b_b_b_b_b_b_^,V$X>Z\'V,Vb_b_ Vb_b_Wb_b_b_^b_ZWb_b_W-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@$U@$U@+@,U@V@3.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS03.1bS0+@,U@usr/lib/help/fetch100755 3 3 43074 4201127527 10643 37777777777 L_! : t@.text: .datat@t@ t;@.bss&@&@.comment FÐET&@RU RP PY:jÐUPE 0'Y'@jj9=th( j9jjy9=th( jc9jjW9=th( jA99E}c5'@h@h,"@ j='@t 5'@ Y='@t 5'@Y= '@t 5 '@Yuc9YYE P'@@ '@E-'@'@Eh@uuR*j='@t 5'@}Y='@t 5'@hY= '@t 5 '@SYu8YYh@uQuah@u6u 9zh@uu \h@uu >5'@h@h,"@t j='@t 5'@Y='@t 5'@Y= '@t 5 '@yYu7YYUWI_ ='@t u t2q }P='@t5$'@5'@h@h,"@j5<'@58'@r P t}jj58'@M WSYUft[5'@5'@hj@h,"@XjBY3 tjj58'@ j5<'@58'@ tU6t`5'@5'@hj@h,"@ jY8='@t = tjj58'@p jj58'@\ : tUtk5'@5'@hj@h,"@j jTYC='@t t5$'@ YPh@h"@/ jj58'@ tUW<5'@5'@hj@h,"@ jY='@t < t=&@%P5$'@ }G5$'@5'@h@h,"@ jj58'@2 ='@~Du;}&@P&@P5$'@ jW58'@ W/YEUh"@h@ '@h5'@ P{/Yj5'@3<'@=<'@}c5'@h%@h,"@ j='@t 5'@Y='@t 5'@Y= '@t 5 '@Yu74YYjhB@h&@ j5'@ YPh&@ h&@j YP h&@5'@ jh&@5<'@&3 =t 5'@h@h,"@ jYUj5'@28'@=8'@}jh&@58'@|) =ujhG@h&@- ti5'@5'@hL@h,"@S j='@t 5'@Y='@t 5'@mY= '@t 5 '@XYu2YYjh&@h&@ h&@[ Y'@h&@K Y'@3&U5'@5'@hj@h,"@ j='@t 5'@ Y='@t 5'@ Y= '@t 5 '@ Yu42YYUjd='@t 5'@ Y='@t 5'@v Y= '@t 5 '@a Yu1YYU='@t 5'@= Y='@t 5'@( Y= '@t 5 '@ Yu1YUWV3Q '@$'@=$'@t9} 5$'@5'@h@h,"@rV3YG;='@|u}UWjj0jj{0jjo058'@+Yh5'@8'@=8'@}i5'@5'@h@h,"@j='@t 5'@ Y='@t 5'@ Y= '@t 5 '@ Yuh0YY='@tjjj5<'@z+ 8WhL'@58'@/ ;t 5'@h@h,"@H j2YhhL'@5<'@& = '@tjjj5D'@+ 8WhL'@58'@!/ ;t 5'@h@h,"@ jYhhL'@5D'@% ='@tjjj5@'@* 8WhL'@58'@. ;t 5'@h@h,"@b jLYhhL'@5@'@.% }UWV5$'@Y3&@tGF|&@&@&@&@fx&@f&@fz&@f&@t&@&@j 5<'@u uO)Yu}UWV3 '@<tFG;='@|Ƌu}UWj5$'@O-|#hp&@W_ }W(Y}ËUPWVEjh&@h&@ h&@5&@h&@&@Ph&@&@Ph&@5&@sh&@5&@`j$h&@u , =$t 5'@h@h,"@ juYE9=&@}$5&@tEtGEtFWhL'@u# ;tEEu5VhL'@u B, ;t 5'@h@h,"@ jY-&@=&@`}ti5$'@5'@h@h,"@j='@t 5'@Y='@t 5'@Y= '@t 5 '@Yu;,YYu}UWj$h&@58'@3" $t)='@t=<'@@'@<'@=@'@}jh&@h('@ $'@('@jh('@h&@} h&@LY&@h&@<Yf&@h&@+Yf&@h&@Y&@h&@ Y&@3pUW3G '@<t;5$'@4)YPu '@$'@}G;='@|3UWH'@=t =t}H'@H'@h@h@'@h5'@Pf%Yj5'@)}c5'@h@h,"@ j='@t 5'@Y='@t 5'@Y= '@t 5 '@Yu**YY<'@@'@=<'@(UWV}G?uO=/u;}wu=/uGG?uƋu}U5'@h@h,"@ j='@t 5'@ Y='@t 5'@Y= '@t 5 '@Yud)YYUWVS}3 G }Ƌ]u}ÐUWVS}u Fˋ}]u}Ð(3Ð(ÐUPWEEE@ uE@ t(EH uuu  E@ t }ËUWV}u ;u 3u}F;t N+GuUPWVS}u ]}CKt GFut GKuE]u}ÐU WVSEEh@/YEh@-Yt SYE}t uYEE9E}E;E}E E9E}E@P"Y}~jSWP*t]}~juWP th~PW =uh~Ph<@ 3W YkUjuuuu u#Ujuuuu uU$WVS} &@E &@Ed!@s3UtE] &@El!@Et!@E!@r5E!@r!@E!@AE!@s6EE]@)EE!@r݋EE 9P܃}t؁ &@n&@vn&@E!@t1&@r05}fEf fEmE]mE܉E@0Ee "@];r&=5|+ &@u &@1}tCF0N<9 &@]Ћuԋ}ËEE0]@EEsEE 9P EEEE!@MU]vEu}fEf fEm]mE܉EFUR0EMm]E!@E5!@]UWVS}}~bG %=utG9Gu?uG Du W.Yu)3u!G 0%@UEE ;ur;u s 3]u}ËG9GreG urRVuG P ;tO |3؋3u WY=uE H3u U+Ћ눋GEU+Ѕҋ~;sËSuu )G?}3W 0%@+W;}W{Y+Åu>G Dt+G uEE Pj u tWhYEEWUWVS}&@u'3]u}ËÃ0Wtۃ;uUWV}u G==tF;tuF==u Ƌu}3UWVS}] uG;uONj]u}N}3 ÐUWVS}u ߋGF҈uË]u}ÐUWV}GGu+Ƌu}UW "@ WY;=,%@r}UWV}tlG t6G t3WVYG PY}%@G twYGG GGƋu}UW}G u3}WrYG uG ttG9GwG t3UPW} G %R=BuDG 0%@9GGGU= uQWY=E}G %=u7EEjEPG PW =uE뿀O G %=utG9Gu?uG Du WYuH3u@G DW>Y}WEP GGUG t )E UWVS}wG+Ƌ؉wG Dt3G 0%@+G?}3W 0%@+W;}W{Y~'SVG P? ;tO ]u}3UW}G %=t&G u }G % G uWLYG9Gu?G Du4G 0%@+G?}3W 0%@+W;}WY3UWV}G G u}}&uL+@T/@GW 0%@*h!YGt@O G W0%@GGVYtG uO @u}G \3@WR0%@UWV}G 0%@+G}G 0%@Wu};7}7𐐐3ÐU%@EEPhTu } E%@3ø6ÐÐU WVSE9ET=&@u<&@ &@&@ &@&@&@&@&@&@ &@E@3؋=&@E&;5&@&@E@E=w= &@jY&@@;t?3Ee ƹ3tL3+‰EEE2&@+ &@+ЉU3Ee E;r"EE9Ev&hrY=u 3]u}ÁmuNY=u+EP\Y3Ή5 &@&@0E+E-&@@;t&@&@&@&@~Љ&@;5&@v&@&@&@ 9= &@u &@ &@G(=&@95 &@u= &@7tލ;r;l%;UWV}5&@%&@9u5 &@u}UWVSuFt uYF+ƹEu Yts;}tnE @3EE9EsEEEPuWG ;s1E;rE+ƹ&@Nj]u}UPWVS}u ]} G֊ FK}E]u}øÐT$&@Ru &@+D$øT$&@3øÐ00;NL$00;:L$0+L$0L$0 L$0ÃÐ%@ÐoT$x@@(#)fetch 5.3b of Jan 27, 1988usage: %s archive files ... replacedeletelistfetchextractBad command name: %s %s: cannot open %s %s %s: %s cannot create /tmpar%s: cannot create temp file %s: %s not in archive format %s: %s does not exist %s: %s cannot open %s: cannot create %s %s: phase error on %s /tmpar%s: cannot create second temp %s: write error TMPDIR/tmpXXXXXX/usr/tmp$@AAA/ 000000000000000000000123456789ABCDEF0123456789abcdefnan0xNAN0XinfINF~>#>#>#">#>#>#>#f>#r>#>#>#>#>#>#>#>#>#>#>#>#># >#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#>#" >#>#>#>#>#>#>#">#6>#>#-+ 0x0X--+ --+ --+ ((((( H   !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~CHRCLASSascii/lib/chrclass/nF 7yACחA@Y@$@@C$@$@$@$@$@?$@$@l3@l3@,%@t3@4@3.1bS03.1bS03.1bS03.1bS0,%@t3@usr/lib/help/extract100755 3 3 43074 4201127527 14626 1usr/lib/help/fetch37777777777 usr/lib/help/list100755 3 3 43074 4201127527 14127 1usr/lib/help/fetch37777777777 usr/lib/help/delete100755 3 3 43074 4201127527 14416 1usr/lib/help/fetch37777777777 usr/lib/help/replace100755 3 3 43074 4201127527 14567 1usr/lib/help/fetch37777777777 usr/lib/help/keysrch100755 3 3 1026 4201127541 11165 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" echo "\nCommands found using \\S${*}\\S:\n" for word do line="${line}`grep \"^key='${word}' \" ${KEYWORDS_TABLE}`" if [ $? -eq 0 ] then line="${line};" fi done if [ -z "${line}" ] then echo "\n\n\n No commands found using \\S ${*} \\S\n" else eval "${line}" | sort -u fi , 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" echo "\nCommands found using \\S${*}\\S:\n" for word do line="${line}`grep \"^key='${word}' \" ${KEYWORDS_TABLE}`" if [ $? -eq 0 ] then line="${line};" fi done if [ -z "${line}" ] then echo "\n\n\n No commands found using \\S ${*} \\S\n" else eval "usr/lib/help/admstart100754 3 3 4505 4201127546 11345 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" trap 'rm -f /tmp/$$.admstart 2>/dev/null ; rm -f /tmp/*$$ ; trap 0 ; exit' 0 1 2 3 15 if [ -f /tmp/*.admstart ] then echo "Someone else is using helpadm to update starter information." echo "Try to update it later." else >/tmp/$$.admstart cat <<-! helpadm: starter Which screens of starter do you want to make changes to? choice description c commands screen d documents screen e education screen l local screen t teach screen q quit ! CHOICE= while [ "${CHOICE}" = "" ] do echo "Enter choice> \c" read CHOICE case $CHOICE in c ) SCREEN=basiccmds NAME=commands ;; d ) SCREEN=documents NAME=documents ;; e ) SCREEN=education NAME=education ;; l ) SCREEN=local NAME=local ;; t ) SCREEN=teach NAME=teach ;; q ) exit ;; * ) #bad input echo "Illegal input--try again." CHOICE= ;; esac done >/tmp/$$.${NAME} cd /tmp ${HELP}/usr/lib/help/extract ${DATABASE}/screens.a ${SCREEN} 2>/dev/null if [ -w /tmp/${SCREEN} ] then mv /tmp/${SCREEN} /tmp/${SCREEN}$$ echo "\n Editing starter ${NAME} Screen" LEN=bad EDFILE=/tmp/${SCREEN}$$ ${LIB}/checklen ####explicitely request all changes to database ANS= while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Do you want the data you have entered to be added to the help facility database (y or n)?> \c" read ANS done if [ "${ANS}" != "y" ] then rm /tmp/${SCREEN}$$ 2>/dev/null echo "Exiting with no updates to the help database." else chmod 644 /tmp/${SCREEN}$$ mv /tmp/${SCREEN}$$ /tmp/${SCREEN} ${HELP}/usr/lib/help/replace ${DATABASE}/screens.a ${SCREEN} rm /tmp/${SCREEN} 2>/dev/null echo "Modifications to help starter database complete." fi else echo "You do not have permission to change this starter screen." echo "Exiting with no changes to the help facility database." fi rm /tmp/$$.admstart fi exit = "y" ] then rm /tmp/${SCREEN}$$ 2>/dev/null echo "Exiting with no updates to the help database." else chmod 644 /tmp/${SCREEN}$$ mv /tmp/${SCREEN}$$ /tmp/${SCREEN} ${Husr/lib/help/admgloss100754 3 3 11137 4201130133 11340 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" trap 'rm -f /tmp/$$.admgloss ; rm -f /tmp/$$.response ; rm -f /tmp/*$$ ; trap 0 ; exit' 0 1 2 3 15 if [ -f /tmp/*.admgloss ] then echo "Someone else is using helpadm to update the glossary." echo "Try to update the glossary later." else >/tmp/$$.admgloss echo "Enter the name of the glossary term to be added/modified/deleted> \c" read term grep "^${term}:glossary" ${DATABASE}/tables/responses >/tmp/gloss$$ cd /tmp if [ -s /tmp/gloss$$ ] then ####code if term already exists echo "${term} is already included in the glossary." ed - /tmp/gloss$$ <<-! 1s/${term}:glossary:// w Q ! filename=`cat /tmp/gloss$$ | line` rm /tmp/gloss$$ ${HELP}/usr/lib/help/extract ${DATABASE}/glossary.a ${filename} #if file is not writeable by that user, do not let him/her modify or #delete it if [ ! -w /tmp/${filename} ] then echo "You do not have permission to delete the definition of ${term}." echo "Exiting with no changes to the help facility database." else mv /tmp/${filename} /tmp/${filename}$$ CHOICE= while [ \( "${CHOICE}" != "d" \) -a \( "${CHOICE}" != "m" \) ] do echo "Do you want to m(modify) its definition or d(delete) it from the glossary?" echo "Enter choice (m or d ) > \c" read CHOICE done #deleting a glossary term if [ "${CHOICE}" = "d" ] then ANS= while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Are you sure you want to delete ${term} from the glossary?" echo "Enter choice (y or n) > \c" read ANS done if [ "$ANS" = "y" ] then #delete term from responses table table=responses action="deleted from" info=${term} place=glossary ${LIB}/locking >/tmp/$$.response ed - ${DATABASE}/tables/responses <<-! g/^${term}:glossary:define/d w q  ! #check if more than one glossary term uses the same file for its definition. #if so, the definition file is not removed. grep ${filename} ${DATABASE}/tables/responses >/tmp/gloss$$ rm /tmp/$$.response if [ ! -s /tmp/gloss$$ ] then ${HELP}/usr/lib/help/delete ${DATABASE}/glossary.a ${filename} 2>/dev/null else rm /tmp/gloss$$ fi echo "${term} deleted from glossary." else echo "Exiting with no changes to the help facility database." fi #code for modifying an existing term definition else echo "Editing definition for ${term}" LEN=bad EDFILE=/tmp/${filename}$$ term=${term} ${LIB}/defnlen #explicitely request modifications to database ANS= while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Do you want the data you have entered to be added to the help" echo "facility database (y or n)?> \c" read ANS done if [ "${ANS}" = "n" ] then echo "Exiting with no changes to the help database." else mv /tmp/${filename}$$ /tmp/${filename} ${HELP}/usr/lib/help/replace ${DATABASE}/glossary.a ${filename} echo "Modifications to the help glossary complete." fi fi fi else #code for adding a new glossary term ####get a filename for the new term start=`grep -c ":define[0-9]*" ${DATABASE}/tables/responses` ${HELP}/usr/lib/help/extract ${DATABASE}/glossary.a define${start} 2>/dev/null while [ -f /tmp/define${start} ] do rm /tmp/define${start} start=`expr ${start} + 1` ${HELP}/usr/lib/help/extract ${DATABASE}/glossary.a define${start} 2>/dev/null done filename=define${start} >/tmp/${filename}$$ echo " \S ${term} \S " >>/tmp/${filename}$$ chmod 644 /tmp/${filename}$$ echo "Editing definition for ${term}" LEN=bad EDFILE=/tmp/${filename}$$ term=${term} ${LIB}/defnlen #explicitely request changes to database ANS= while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Do you want the data you have entered to be added to the help" echo "facility database (y or n)?> \c" read ANS done if [ "${ANS}" = "n" ] then rm /tmp/${filename}$$ echo "Exiting with no changes to the help database." else table=responses action="added to" info=${term} place=glossary ${LIB}/locking >/tmp/$$.response echo "${term}:glossary:${filename}" >>${DATABASE}/tables/responses mv /tmp/${filename}$$ /tmp/${filename} ${HELP}/usr/lib/help/replace ${DATABASE}/glossary.a ${filename} rm /tmp/$$.response echo "Modifications to the help glossary complete." fi fi rm /tmp/$$.admgloss fi rm -f /tmp/${filename} 2>/dev/null exit tmp/${filename}$$ echo "Exiting with no changes to the help database." else table=responses action="added to" info=${term} place=glossary ${LIB}/locking >/tmp/$$.response echo "${term}:glossary:${filename}" >>${DATABASE}/tables/responses mv /tmp/${filename}$$ /tmp/${filename} ${HELP}/usr/lib/help/replace ${DATABASE}/glossary.a ${filename} rm /tmp/$$.response echo "Modifications to the helusr/lib/help/editcmd100754 3 3 25401 4201130135 11141 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" trap 'rm -f /tmp/$$.editcmd ; rm -f /tmp/$$.response ; rm -f /tmp/*$$ ; trap 0 ; exit' 0 1 2 3 15 if [ -f /tmp/*.editcmd ] then echo "Someone else is using helpadm to update command information." echo "Try to update command information later." else >/tmp/$$.editcmd echo "Enter the name of the command to be added/modified/deleted > \c" read CMD cd /tmp ${HELP}/usr/lib/help/extract ${DATABASE}/descriptions.a ${CMD} 2>/dev/null mv /tmp/${CMD} /tmp/${CMD}$$ 2>/dev/null if [ -f /tmp/${CMD}$$ ] then echo "The ${CMD} command is already included in help.\n" if [ ! -w /tmp/${CMD}$$ ] then echo "You do not have permission to change the database files for ${CMD}." echo "Exiting with no changes to the help facility database." rm /tmp/$$.editcmd exit fi  rm /tmp/${CMD}$$ ANS= while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Do you want to delete information on ${CMD} (y or n)? >\c" read ANS done #### code to modify existing information if [ "${ANS}" != "y" ] then INPUT=yes while [ "$INPUT" = "yes" ] do echo "Which part of the command data do you wish to edit?" echo "Enter d(desc), o(options), e(examp), k(keywds), or q(quit) > \c" read CHOICE case $CHOICE in d ) #edit description screen SCREEN=descriptions.a NAME=Description FLAG=d CHOICE=q ;; o ) #edit options screen SCREEN=options.a NAME=Options FLAG=o CHOICE=q ;; e ) #edit examples screen SCREEN=examples.a NAME=Examples FLAG=e CHOICE=q ;; k ) #edit keyword list SCREEN="tables/keywords" FLAG=k CHOICE=q ;; q ) # get out of input loop INPUT=no FLAG=q ;; * ) #bad input echo "Illegal input -- try again." FLAG= ;; esac #code to modify descriptions, options, and examples if [ \( "${FLAG}" = "d" \) -o \( "${FLAG}" = "o" \) -o \( "${FLAG}" = "e" \) ] then ${HELP}/usr/lib/help/extract ${DATABASE}/${SCREEN} ${CMD} mv /tmp/${CMD} /tmp/${FLAG}.${CMD}$$ echo "\nEditing ${NAME} Screen for ${CMD}" LEN=bad EDFILE=/tmp/${FLAG}.${CMD}$$ ${LIB}/checklen fi #code to delete keywords if [ "${FLAG}" = "k" ] then echo "\nEditing keyword list for ${CMD}" echo "Remember that all keywords are a single word." grep "The \\\\\\\\S${CMD}\\\\\\\\S " <${DATABASE}/${SCREEN} >/tmp/cmd$$ ed - /tmp/cmd$$ <<-! 1,\$s/key='// 1,\$s/'.*// w q ! cp /tmp/cmd$$ /tmp/${FLAG}.${CMD}$$ echo "\nThe current keyword list for ${CMD} is: " cat /tmp/cmd$$ if [ `wc -l \c" read ANS done if [ "$ANS" = "y" ] then OUTWORD= echo "Enter a keyword to be deleted after each colon (:)." echo "Enter a period (.) to stop deletions." while [ "${OUTWORD}" != "." ] do echo ": \c" read OUTWORD if [ "${OUTWORD}" = "." ] then break fi #all existing keywords except the one to be deleted are put into a #temporary file for i in $WORDS do if [ "${OUTWORD}" = "${i}" ] then :; else echo $i >> /tmp/${FLAG}.${CMD}2$$ fi done if [ -f /tmp/${FLAG}.${CMD}2$$ ] then cp /tmp/${FLAG}.${CMD}2$$ /tmp/cmd$$ if [ `wc -l /tmp/${FLAG}.${CMD}$$ cp /tmp/${FLAG}.${CMD}$$ /tmp/cmd$$ fi done rm /tmp/cmd$$ echo "New keyword list for $CMD: " cat /tmp/${FLAG}.${CMD}$$ else :; fi #code to add keywords ANS= while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Do you want to add new keywords for ${CMD}? (y or n) > \c" read ANS done if [ "${ANS}" = "y" ] then MOREKEY=yes echo "Enter a new keyword after each colon (:)." echo "Enter a period (.) to quit adding keywords." while [ "${MOREKEY}" = "yes" ] do echo "\t: \c" read KEY if [ "${KEY}" != "" ] then set ${KEY} if [ $# -gt 1 ] then echo "Not a single word keyword." elif [ "${KEY}" != "." ] then echo ${KEY} >>/tmp/${FLAG}.${CMD}$$ else MOREKEY=no fi  fi done echo "The updated keyword list for ${CMD} is: " cat /tmp/${FLAG}.${CMD}$$ fi fi #code to quit editing command data if [ "${FLAG}" = "q" ] then INPUT=no fi done ###end loop to edit command data ####code to delete a command else ANS= while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Are you sure you want to remove keywords, description, option, and example information for ${CMD} (y or n)? >\c" read ANS done if [ "${ANS}" = "y" ] then table=responses action="deleted from" info=${CMD} place=database ${LIB}/locking >/tmp/$$.response ed - ${DATABASE}/tables/responses <<-! g/^${CMD}:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe/d w q ! rm /tmp/$$.response ${HELP}/usr/lib/help/delete ${DATABASE}/descriptions.a ${CMD} ${HELP}/usr/lib/help/delete ${DATABASE}/options.a ${CMD} ${HELP}/usr/lib/help/delete ${DATABASE}/examples.a ${CMD} ed - ${DATABASE}/tables/keywords <<-! g/.*The \\\\\\\\S${CMD}\\\\\\\\S .*command/d w q ! echo "Keywords, description, option, and example information for ${CMD} have" echo "been deleted from the help facility database." rm /tmp/$$.editcmd exit else echo "Exiting with no changes to the help facilty database." rm /tmp/$$.editcmd exit fi fi #end processing for existing command data###################### #code to enter a new command's data else echo "New Command: ${CMD}" cat <<-! This command is not currently included in the help facility. You must enter a COMPLETE set of command data, including description and syntax information, option information, usage examples, and a keyword set, if ANY of the data you enter are to be added to the help facility's database. You will be asked to explicitely request that this data be included in the help facility database at the end of this session. ! for i in desc opt ex do case ${i} in desc ) #description screen FLAG=d  SCREEN=Description ;; opt ) #options screen FLAG=o SCREEN=Options ;; ex ) #examples screen FLAG=e SCREEN=Examples ;; esac EDFILE=/tmp/${FLAG}.${CMD}$$ >> ${EDFILE} echo " \S ${CMD} \S " >> ${EDFILE} echo "Editing ${SCREEN} Screen for ${CMD}" EDFILE=/tmp/${FLAG}.${CMD}$$ LEN=bad ${LIB}/checklen echo "${SCREEN} Screen Completed." done ####end addition of description, options, examples ####add new keywords next FLAG=k EDFILE=/tmp/${FLAG}.${CMD}$$ echo "Making Keyword List for ${CMD}" cat <<-! Enter a single keyword for the command after each colon (:). To stop adding keywords, enter a period (.). ! NEWKEY= >/tmp/${FLAG}.${CMD}$$ while [ "$NEWKEY" != "." ] do echo " : \c" read NEWKEY if [ "${NEWKEY}" != "" ] then set ${NEWKEY} if [ $# -gt 1 ] then echo "Not a single word keyword." elif [ "${NEWKEY}" != "." ] then echo "${NEWKEY}" >> /tmp/${FLAG}.${CMD}$$ elif [ `wc -l \c" read ANS done if [ "${ANS}" = "y" ] then :; else NEWKEY= echo "Add more keywords now." echo "To delete keywords, exit to the shell and reedit." fi fi fi done fi ####explicitely request changes to database ANS= while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Do you want the data you have entered to be added to the help" echo "facility database? (y or n) > \c" read ANS done if [ "${ANS}" != "y" ] then echo "Exiting with no updates to help database." else #if the command is not already included in the responses table, then #include it table=responses action="added to" info=${CMD} place=database ${LIB}/locking >/tmp/$$.response grep "^${CMD}:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe$" ${DATABASE}/tables/responses >/tmp/cmd$$ if [ `wc -l >${DATABASE}/tables/responses fi rm /tmp/$$.response if [ -f /tmp/d.${CMD}$$ ] then chmod 644 /tmp/d.${CMD}$$ mv /tmp/d.${CMD}$$ /tmp/${CMD} ${HELP}/usr/lib/help/replace ${DATABASE}/descriptions.a ${CMD} echo "Description Screen for ${CMD} Updated" rm /tmp/${CMD} fi if [ -f /tmp/o.${CMD}$$ ] then chmod 644 /tmp/o.${CMD}$$ mv /tmp/o.${CMD}$$ /tmp/${CMD} ${HELP}/usr/lib/help/replace ${DATABASE}/options.a ${CMD} echo "Options Screen for ${CMD} Updated" rm /tmp/${CMD} fi if [ -f /tmp/e.${CMD}$$ ] then chmod 644 /tmp/e.${CMD}$$ mv /tmp/e.${CMD}$$ /tmp/${CMD} ${HELP}/usr/lib/help/replace ${DATABASE}/examples.a ${CMD} echo "Examples Screen for ${CMD} Updated" rm /tmp/${CMD} fi if [ -f /tmp/k.${CMD}$$ ] then if [ `wc -l > /tmp/keywords$$ done ed - ${DATABASE}/tables/keywords <<-! 1,\$d .r /tmp/keywords$$ w q ! rm /tmp/keywords$$ rm /tmp/k.${CMD}$$ echo "Keyword List for ${CMD} Updated." fi echo "Modifications to help database complete." fi rm /tmp/$$.editcmd fi rm /tmp/*$$ 2>/dev/null exit les/keywords /tmp/keywords$$ ed - /tmp/keywords$$ <<-! g/The \\\\\\\\S${CMD}\\\\\\\\S/d w q ! for i in ${WORDS} do echo "key='${i}' echo 'The \\\\\\\\S${CMD}\\\\\\\\S command'" >> /tmp/keywords$$ done ed - ${DATABASE}/tables/usr/lib/help/defnlen100754 3 3 1465 4201130140 11123 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" trap 'rm -f /tmp/$$LCK.* ; rm -f /tmp/LCK.${term} 2>/dev/null ; rm -f /tmp/*$$ ; trap 0 ; exit' 0 1 2 3 15 while [ "${LEN}" = "bad" ] do ${EDITOR} ${EDFILE} if [ `wc -l <${EDFILE}` -le ${SCRNLEN} ] then ANS=~ while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Are you satisfied with this definition (y or n)? > \c" read ANS done if [ "${ANS}" = "y" ] then LEN=good else echo "Re-editing definition for ${term}" fi else echo "This definition is more than ${SCRNLEN} lines long." echo "Re-editing definition for ${term}." fi done f /tmp/*$$ ; trap 0 ; exit' 0 1 2 3 15 while [ "${LEN}" = "bad" ] do ${EDITOR} ${EDFILE} if [ `wc -l <${EDFILE}` -le ${SCRNLEN} ] then ANS=~ while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) usr/lib/help/checklen100754 3 3 2213 4201130142 11256 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" while [ "${LEN}" = "bad" ] do ${EDITOR} ${EDFILE} if [ `wc -l <${EDFILE}` -lt 1 ] then echo "This help screen may not be empty. You are being put back into the editor to enter some data." elif [ `wc -l <${EDFILE}` -le ${SCRNLEN} ] then ANS=~ while [ \( "${ANS}" != "y" \) -a \( "${ANS}" != "n" \) ] do echo "Are you satisfied with this screen (y or n)? > \c" read ANS done if [ "${ANS}" = "y" ] then LEN=good else echo "You may now re-edit this help screen." fi else CHOICE=~ while [ \( "${CHOICE}" != "r" \) -a \( "${CHOICE}" != "e" \) ] do echo "This screen is more than ${SCRNLEN} lines long. Do you want to" echo "re-edit it, or have it expanded to a multi-page screen?" echo "Enter choice (r for re-edit, e for expand) > \c" read CHOICE done if [ "${CHOICE}" = "e" ] then LEN=good else echo "You may now re-edit this help screen." fi fi done }" = "y" ] then LEN=good else echo "You may now re-edit this help screen." fi else CHOICE=~ while [ \( "${CHOICE}" != "r" \) -a \( "${CHOICE}" != "e" \) ] do echo "This screen is more than ${SCRNLEN} lines long. Do you want to" echo "re-edit it, or have it expanded to a multi-page screen?" echo "Enter choice (r for re-edit, e for expand) > \cusr/lib/help/locking100754 3 3 1065 4201130145 11137 37777777777 : # Copyright (c) 1984, 1987 AT&T # All Rights Reserved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" if [ -f /tmp/*.${table} ] then echo "Someone else is updating the ${table} table. ${info}" echo "will be ${action} the ${place} when the ${table} table is no longer" echo "in use. If you hit break while waiting, ${info} will not be" echo "${action} the ${place}." while [ -f /tmp/*.${table} ] do continue done fi rved # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T # The copyright notice above does not evidence any # actual or intended publication of such source code. #ident "%W% %D% %Q%" if [ -f /tmp/*.${table} ] then echo "Someone else is updating the ${table} table. ${info}" echo "will be ${action} the ${place} when the ${table} table is no longer" echo "in use. If you hit break while waiting, ${info} will not be" echo "${action} the ${place}." usr/lib/help/db/tables/display100644 3 3 4706 4201130272 13021 37777777777 name:define command:${FETCH} ${GLOSSARY} %r menu:Choices: \S UNIX_term \S(from list), \S g \S(restart glossary), \S r \S(redirect) error:\S %r \S is not known. See list of known terms. name:keysrch command:${HELP}/%n %k menu:Choices: \S UNIX_command \S, \S k \S(new keywords), \S r \S(redirect) error:\S %r \S is not known. Enter legal command name. name:glossary command:${HELP}/%n menu:Choices: \S UNIX_term \S(from list), \S r \S(redirect) error:\S %r \S is not known. See list of known terms. name:starter command:${FETCH} ${SCREENS} %n ${HELP_FILE} name:basiccmds command:${FETCH} ${SCREENS} %n menu:Choices: \S s \S(restart starter), \S r \S(redirect) name:getdesc command:${FETCH} ${DESCRIPTIONS} %c menu:Choices: \S o \S(options), \S e \S(examples), \S UNIX_command \S, \S p \S(print list), \S r \S(redirect) error:\S %r \S is not known. Enter \S p \S for a list of known commands. name:getexample command:${FETCH} ${EXAMPLES} %c menu:Choices: \S o \S(options), \S d \S(description), \S UNIX_command \S, \S p \S(print list), \S r \S(redirect) error:\S %r \S is not known. Enter \S p \S for a list of known commands. name:getoption command:${FETCH} ${OPTIONS} %c menu:Choices: \S e \S(examples), \S d \S(description), \S UNIX_command \S, \S p \S(print list), \S r \S(redirect) error:\S %r \S is not known. Enter \S p \S for a list of known commands. name:getdoe filter:prompt prompt:Enter \S d \S(description), \S e \S(examples), or \S o \S(options) > name:documents command:${FETCH} ${SCREENS} %n menu:Choices: \S s \S(restart starter), \S r \S(redirect) name:education command:${FETCH} ${SCREENS} %n menu:Choices: \S s \S(restart starter), \S r \S(redirect) name:local command:${FETCH} ${SCREENS} %n menu:Choices: \S s \S(restart starter), \S r \S(redirect) name:help command:${FETCH} ${SCREENS} %n name:locate command:${FETCH} ${SCREENS} %n ${HELP_FILE} name:usage command:${FETCH} ${SCREENS} %n ${HELP_FILE} error:\S %r \S is not known. Enter \S p \S for a list of known commands. name:getkey filter:prompt prompt:Enter keywords separated by blanks > name:teach command:${FETCH} ${SCREENS} %n menu:Choices: \S s \S(restart starter), \S r \S(redirect) name:listcmds command:echo "\n\\Susage\\S: Information about Commands\n\nThe following commands are currently included in \\Shelp\\S:\n" ; ${LIST} ${DESCRIPTIONS} | pr -a -t -6 -w79 - | pr -e -t menu:Choices: \S UNIX_command \S, \S r \S(redirect) error:\S %r \S is not known. Enter legal command name. S for a list of known commands. name:getkey filter:promptusr/lib/help/db/tables/keywords100644 3 3 106112 4201130272 13255 37777777777 key='change' echo 'The \\Schgrp\\S (change group) command' key='group' echo 'The \\Schgrp\\S (change group) command' key='permission' echo 'The \\Schgrp\\S (change group) command' key='access' echo 'The \\Schgrp\\S (change group) command' key='permissions' echo 'The \\Schgrp\\S (change group) command' key='permit' echo 'The \\Schgrp\\S (change group) command' key='change' echo 'The \\Schown\\S (change owner) command' key='name' echo 'The \\Schown\\S (change owner) command' key='owner' echo 'The \\Schown\\S (change owner) command' key='access' echo 'The \\Schown\\S (change owner) command' key='permission' echo 'The \\Schown\\S (change owner) command' key='permissions' echo 'The \\Schown\\S (change owner) command' key='permit' echo 'The \\Schown\\S (change owner) command' key='login' echo 'The \\Schown\\S (change owner) command' key='object' echo 'The \\Scmp\\S (compare) command' key='compare' echo 'The \\Scmp\\S (compare) command' key='executable' echo 'The \\Scmp\\S (compare) command' key='identical' echo 'The \\Scmp\\S (compare) command' key='different' echo 'The \\Scmp\\S (compare) command' key='difference' echo 'The \\Scmp\\S (compare) command' key='compare' echo 'The \\Sdiff\\S (difference) command' key='changes' echo 'The \\Sdiff\\S (difference) command' key='difference' echo 'The \\Sdiff\\S (difference) command' key='different' echo 'The \\Sdiff\\S (difference) command' key='script' echo 'The \\Sdiff\\S (difference) command' key='editor' echo 'The \\Sed\\S (editor) command' key='security' echo 'The \\Sed\\S (editor) command' key='line' echo 'The \\Sed\\S (editor) command' key='change' echo 'The \\Sed\\S (editor) command' key='modify' echo 'The \\Sed\\S (editor) command' key='revise' echo 'The \\Sed\\S (editor) command' key='edit' echo 'The \\Sed\\S (editor) command' key='expression' echo 'The \\Sexpr\\S (expression) command' key='evaluate' echo 'The \\Sexpr\\S (expression) command' key='strings' echo 'The \\Sexpr\\S (expression) command' key='test' echo 'The \\Sfalse\\S command' key='loop' echo 'The \\Sfalse\\S command' key='evaluate' echo 'The \\Sfalse\\S command' key='test' echo 'The \\Strue\\S command' key='evaluate' echo 'The \\Strue\\S command' key='loop' echo 'The \\Strue\\S command' key='interpret' echo 'The \\Sgetopt\\S (get option) command' key='parse' echo 'The \\Sgetopt\\S (get option) command' key='line' echo 'The \\Sgetopt\\S (get option) command' key='options' echo 'The \\Sgetopt\\S (get option) command' key='arguments' echo 'The \\Sgetopt\\S (get option) command' key='parameters' echo 'The \\Sgetopt\\S (get option) command' key='read' echo 'The \\Sgetopt\\S (get option) command' key='job' echo 'The \\Skill\\S command' key='break' echo 'The \\Skill\\S command' key='quit' echo 'The \\Skill\\S command' key='active' echo 'The \\Skill\\S command' key='delete' echo 'The \\Skill\\S command' key='scratch' echo 'The \\Skill\\S command' key='process' echo 'The \\Skill\\S command' key='end' echo 'The \\Skill\\S command' key='stop' echo 'The \\Skill\\S command' key='terminate' echo 'The \\Skill\\S command' key='background' echo 'The \\Skill\\S command' key='signal' echo 'The \\Skill\\S command' key='kill' echo 'The \\Skill\\S command' key='connect' echo 'The \\Slogin\\S (log in) command' key='computer' echo 'The \\Slogin\\S (log in) command' key='environment' echo 'The \\Slogin\\S (log in) command' key='login' echo 'The \\Slogin\\S (log in) command' key='user' echo 'The \\Slogin\\S (log in) command' key='password' echo 'The \\Spasswd\\S (password) command' key='restrict' echo 'The \\Spasswd\\S (password) command' key='change' echo 'The \\Spasswd\\S (password) command' key='login' echo 'The \\Spasswd\\S (password) command' key='modify' echo 'The \\Spasswd\\S (password) command' key='security' echo 'The \\Spasswd\\S (password) command' key='code' echo 'The \\Spasswd\\S (password) command' key='editor' echo 'The \\Sred\\S (restricted editor) command' key='security' echo 'The \\Sred\\S (restricted editor) command' key='restricted' echo 'The \\Sred\\S (restricted editor) command' key='edit' echo 'The \\Sred\\S (restricted editor) command' key='line' echo 'The \\Sred\\S (restricted editor) command' key='change' echo 'The \\Sred\\S (restricted editor) command' key='modify' echo 'The \\Sred\\S (restricted editor) command' key='restrict' echo 'The \\Sred\\S (restricted editor) command' key='remove' echo 'The \\Srmdir\\S (remove directory) command' key='delete' echo 'The \\Srmdir\\S (remove directory) command' key='eliminate' echo 'The \\Srmdir\\S (remove directory) command' key='unlink' echo 'The \\Srmdir\\S (remove directory) command' key='interpreter' echo 'The \\Srsh\\S (restricted shell) command' key='restricted' echo 'The \\Srsh\\S (restricted shell) command' key='shell' echo 'The \\Srsh\\S (restricted shell) command' key='execute' echo 'The \\Srsh\\S (restricted shell) command' key='language' echo 'The \\Srsh\\S (restricted shell) command' key='restrict' echo 'The \\Srsh\\S (restricted shell) command' key='environment' echo 'The \\Srsh\\S (restricted shell) command' key='change' echo 'The \\Ssed\\S (stream editor) command' key='filter' echo 'The \\Ssed\\S (stream editor) command' key='edit' echo 'The \\Ssed\\S (stream editor) command' key='editor' echo 'The \\Ssed\\S (stream editor) command' key='language' echo 'The \\Ssed\\S (stream editor) command' key='modify' echo 'The \\Ssed\\S (stream editor) command' key='pipe' echo 'The \\Ssed\\S (stream editor) command' key='script' echo 'The \\Ssed\\S (stream editor) command' key='interpreter' echo 'The \\Ssh\\S (shell) command' key='command' echo 'The \\Ssh\\S (shell) command' key='environment' echo 'The \\Ssh\\S (shell) command' key='shell' echo 'The \\Ssh\\S (shell) command' key='execute' echo 'The \\Ssh\\S (shell) command' key='compare' echo 'The \\Stest\\S command' key='true' echo 'The \\Stest\\S command' key='false' echo 'The \\Stest\\S command' key='evaluate' echo 'The \\Stest\\S command' key='type' echo 'The \\Stest\\S command' key='size' echo 'The \\Stest\\S command' key='string' echo 'The \\Stest\\S command' key='integer' echo 'The \\Stest\\S command' key='expression' echo 'The \\Stest\\S command' key='loop' echo 'The \\Stest\\S command' key='test' echo 'The \\Stest\\S command' key='mode' echo 'The \\Sumask\\S (user mode mask) command' key='change' echo 'The \\Sumask\\S (user mode mask) command' key='permission' echo 'The \\Sumask\\S (user mode mask) command' key='access' echo 'The \\Sumask\\S (user mode mask) command' key='permissions' echo 'The \\Sumask\\S (user mode mask) command' key='mask' echo 'The \\Sumask\\S (user mode mask) command' key='delay' echo 'The \\Swait\\S command' key='rest' echo 'The \\Swait\\S command' key='hesitate' echo 'The \\Swait\\S command' key='process' echo 'The \\Swait\\S command' key='execute' echo 'The \\Swait\\S command' key='wait' echo 'The \\Swait\\S command' key='pause' echo 'The \\Swait\\S command' key='suspend' echo 'The \\Swait\\S command' key='execute' echo 'The \\Sat\\S command' key='job' echo 'The \\Sat\\S command' key='process' echo 'The \\Sat\\S command' key='later' echo 'The \\Sat\\S command' key='future' echo 'The \\Sat\\S command' key='delay' echo 'The \\Sat\\S command' key='time' echo 'The \\Sat\\S command' key='execute' echo 'The \\Scrontab\\S (chronological table) command' key='process' echo 'The \\Scrontab\\S (chronological table) command' key='schedule' echo 'The \\Scrontab\\S (chronological table) command' key='later' echo 'The \\Scrontab\\S (chronological table) command' key='future' echo 'The \\Scrontab\\S (chronological table) command' key='delay' echo 'The \\Scrontab\\S (chronological table) command' key='time' echo 'The \\Scrontab\\S (chronological table) command' key='repeat' echo 'The \\Scrontab\\S (chronological table) command' key='periodic' echo 'The \\Scrontab\\S (chronological table) command' key='daily' echo 'The \\Scrontab\\S (chronological table) command' key='hourly' echo 'The \\Scrontab\\S (chronological table) command' key='weekly' echo 'The \\Scrontab\\S (chronological table) command' key='monthly' echo 'The \\Scrontab\\S (chronological table) command' key='regularly' echo 'The \\Scrontab\\S (chronological table) command' key='remove' echo 'The \\Sbasename\\S command' key='drop' echo 'The \\Sbasename\\S command' key='extract' echo 'The \\Sbasename\\S command' key='suffix' echo 'The \\Sbasename\\S command' key='path' echo 'The \\Sbasename\\S command' key='strip' echo 'The \\Sbasename\\S command' key='last' echo 'The \\Sbasename\\S command' key='end' echo 'The \\Sbasename\\S command' key='remove' echo 'The \\Sdirname\\S (directory name) command' key='beginning' echo 'The \\Sdirname\\S (directory name) command' key='drop' echo 'The \\Sdirname\\S (directory name) command' key='extract' echo 'The \\Sdirname\\S (directory name) command' key='parent' echo 'The \\Sdirname\\S (directory name) command' key='path' echo 'The \\Sdirname\\S (directory name) command' key='prefix' echo 'The \\Sdirname\\S (directory name) command' key='directory' echo 'The \\Sdirname\\S (directory name) command' key='strip' echo 'The \\Sdirname\\S (directory name) command' key='execute' echo 'The \\Sbatch\\S command' key='job' echo 'The \\Sbatch\\S command' key='process' echo 'The \\Sbatch\\S command' key='later' echo 'The \\Sbatch\\S command' key='future' echo 'The \\Sbatch\\S command' key='delay' echo 'The \\Sbatch\\S command' key='priority' echo 'The \\Sbatch\\S command' key='system' echo 'The \\Sbatch\\S command' key='load' echo 'The \\Sbatch\\S command' key='execute' echo 'The \\Senv\\S (environment) command' key='variables' echo 'The \\Senv\\S (environment) command' key='variable' echo 'The \\Senv\\S (environment) command' key='environment' echo 'The \\Senv\\S (environment) command' key='change' echo 'The \\Senv\\S (environment) command' key='value' echo 'The \\Senv\\S (environment) command' key='print' echo 'The \\Sline\\S command' key='line' echo 'The \\Sline\\S command' key='input' echo 'The \\Sline\\S command' key='read' echo 'The \\Sline\\S command' key='terminal' echo 'The \\Sline\\S command' key='execution' echo 'The \\Snohup\\S (no hang up) command' key='background' echo 'The \\Snohup\\S (no hang up) command' key='continue' echo 'The \\Snohup\\S (no hang up) command' key='execute' echo 'The \\Snohup\\S (no hang up) command' key='hangup' echo 'The \\Snohup\\S (no hang up) command' key='disconnect' echo 'The \\Snohup\\S (no hang up) command' key='break' echo 'The \\Snohup\\S (no hang up) command' key='delete' echo 'The \\Snohup\\S (no hang up) command' key='quit' echo 'The \\Snohup\\S (no hang up) command' key='execute' echo 'The \\Sxargs\\S (execute arguments) command' key='repeat' echo 'The \\Sxargs\\S (execute arguments) command' key='arguments' echo 'The \\Sxargs\\S (execute arguments) command' key='replace' echo 'The \\Sxargs\\S (execute arguments) command' key='big' echo 'The \\Sbdiff\\S (big difference) command' key='difference' echo 'The \\Sbdiff\\S (big difference) command' key='compare' echo 'The \\Sbdiff\\S (big difference) command' key='changes' echo 'The \\Sbdiff\\S (big difference) command' key='different' echo 'The \\Sbdiff\\S (big difference) command' key='common' echo 'The \\Scomm\\S (common) command' key='compare' echo 'The \\Scomm\\S (common) command' key='difference' echo 'The \\Scomm\\S (common) command' key='same' echo 'The \\Scomm\\S (common) command' key='columns' echo 'The \\Scomm\\S (common) command' key='different' echo 'The \\Scomm\\S (common) command' key='store' echo 'The \\Scpio\\S (copy in, copy out) command' key='archive' echo 'The \\Scpio\\S (copy in, copy out) command' key='transfer' echo 'The \\Scpio\\S (copy in, copy out) command' key='move' echo 'The \\Scpio\\S (copy in, copy out) command' key='copy' echo 'The \\Scpio\\S (copy in, copy out) command' key='in' echo 'The \\Scpio\\S (copy in, copy out) command' key='out' echo 'The \\Scpio\\S (copy in, copy out) command' key='together' echo 'The \\Scpio\\S (copy in, copy out) command' key='input' echo 'The \\Scpio\\S (copy in, copy out) command' key='output' echo 'The \\Scpio\\S (copy in, copy out) command' key='pass' echo 'The \\Scpio\\S (copy in, copy out) command' key='move' echo 'The \\Scpio\\S (copy in, copy out) command' key='send' echo 'The \\Scpio\\S (copy in, copy out) command' key='difference' echo 'The \\Sdiff3\\S (3-way difference) command' key='three' echo 'The \\Sdiff3\\S (3-way difference) command' key='different' echo 'The \\Sdiff3\\S (3-way difference) command' key='changes' echo 'The \\Sdiff3\\S (3-way difference) command' key='compare' echo 'The \\Sdiff3\\S (3-way difference) command' key='script' echo 'The \\Sdiff3\\S (3-way difference) command' key='versions' echo 'The \\Sdiff3\\S (3-way difference) command' key='compare' echo 'The \\Sdircmp\\S (directory compare) command' key='directory' echo 'The \\Sdircmp\\S (directory compare) command' key='contents' echo 'The \\Sdircmp\\S (directory compare) command' key='identical' echo 'The \\Sdircmp\\S (directory compare) command' key='different' echo 'The \\Sdircmp\\S (directory compare) command' key='script' echo 'The \\Sdircmp\\S (directory compare) command' key='list' echo 'The \\Sdircmp\\S (directory compare) command' key='pack' echo 'The \\Spack\\S command' key='compress' echo 'The \\Spack\\S command' key='save' echo 'The \\Spack\\S command' key='space' echo 'The \\Spack\\S command' key='reduce' echo 'The \\Spack\\S command' key='size' echo 'The \\Spack\\S command' key='store' echo 'The \\Spack\\S command' key='print' echo 'The \\Spcat\\S (concatenate packed file) command' key='read' echo 'The \\Spcat\\S (concatenate packed file) command' key='expand' echo 'The \\Spcat\\S (concatenate packed file) command' key='view' echo 'The \\Spcat\\S (concatenate packed file) command' key='pack' echo 'The \\Spcat\\S (concatenate packed file) command' key='concatenate' echo 'The \\Spcat\\S (concatenate packed file) command' key='output' echo 'The \\Spcat\\S (concatenate packed file) command' key='write' echo 'The \\Spcat\\S (concatenate packed file) command' key='packed' echo 'The \\Spcat\\S (concatenate packed file) command' key='unpack' echo 'The \\Spcat\\S (concatenate packed file) command' key='original' echo 'The \\Spcat\\S (concatenate packed file) command' key='side' echo 'The \\Ssdiff\\S (side-by-side difference) command' key='columns' echo 'The \\Ssdiff\\S (side-by-side difference) command' key='compare' echo 'The \\Ssdiff\\S (side-by-side difference) command' key='difference' echo 'The \\Ssdiff\\S (side-by-side difference) command' key='different' echo 'The \\Ssdiff\\S (side-by-side difference) command' key='list' echo 'The \\Ssdiff\\S (side-by-side difference) command' key='changes' echo 'The \\Ssdiff\\S (side-by-side difference) command' key='checksum' echo 'The \\Ssum\\S command' key='blocks' echo 'The \\Ssum\\S command' key='size' echo 'The \\Ssum\\S command' key='check' echo 'The \\Ssum\\S command' key='characters' echo 'The \\Ssum\\S command' key='verify' echo 'The \\Ssum\\S command' key='expand' echo 'The \\Sunpack\\S command' key='pack' echo 'The \\Sunpack\\S command' key='extract' echo 'The \\Sunpack\\S command' key='packed' echo 'The \\Sunpack\\S command' key='original' echo 'The \\Sunpack\\S command' key='restore' echo 'The \\Sunpack\\S command' key='unpack' echo 'The \\Sunpack\\S command' key='output' echo 'The \\Sunpack\\S command' key='tabs' echo 'The \\Stabs\\S command' key='terminal' echo 'The \\Stty\\S command' key='type' echo 'The \\Stty\\S command' key='who' echo 'The \\Swho\\S (who is on the system) command' key='write' echo 'The \\Swrite\\S command' key='non-printing' echo 'The \\Scat\\S (concatenate) command' key='hidden' echo 'The \\Scat\\S (concatenate) command' key='merge' echo 'The \\Scat\\S (concatenate) command' key='tabs' echo 'The \\Scat\\S (concatenate) command' key='bell' echo 'The \\Scat\\S (concatenate) command' key='lock' echo 'The \\Schmod\\S (change mode) command' key='user' echo 'The \\Schmod\\S (change mode) command' key='group' echo 'The \\Schmod\\S (change mode) command' key='sticky' echo 'The \\Schmod\\S (change mode) command' key='execute' echo 'The \\Schmod\\S (change mode) command' key='string' echo 'The \\Sfgrep\\S command' key='strings' echo 'The \\Sfgrep\\S command' key='expression' echo 'The \\Sfind\\S command' key='select' echo 'The \\Sfine\\S command' key='logical' echo 'The \\Sfind\\S command' key='user' echo 'The \\Sfind\\S command' key='group' echo 'The \\Sfind\\S command' key='octal' echo 'The \\Sfind\\S command' key='type' echo 'The \\Sfind\\S command' key='links' echo 'The \\Sfind\\S command' key='size' echo 'The \\Sfind\\S command' key='blocks' echo 'The \\Sfind\\S command' key='forward' echo 'The \\Smail\\S command' key='write' echo 'The \\Smesg\\S (message) command' key='item' echo 'The \\Snews\\S command' key='columns' echo 'The \\Spr\\S (print) command' key='read' echo 'The \\Spr\\S (print) command' key='expand' echo 'The \\Spr\\S (print) command' key='tabs' echo 'The \\Spr\\S (print) command' key='number' echo 'The \\Spr\\S (print) command' key='indent' echo 'The \\Spr\\S (print) command' key='time' echo 'The \\Sps\\S (process status) command' key='parent' echo 'The \\Sps\\S (process status) command' key='child' echo 'The \\Sps\\S (process status) command' key='priority' echo 'The \\Sps\\S (process status) command' key='address' echo 'The \\Sps\\S (process status) command' key='characteristics' echo 'The \\Sstty\\S (set tty) command' key='settings' echo 'The \\Sstty\\S (set tty) command' key='access' echo 'The \\Stouch\\S command' key='modification' echo 'The \\Stouch\\S command' key='port' echo 'The \\Stty\\S command' key='node' echo 'The \\Suname\\S (UNIX name) command' key='domain' echo 'The \\Suname\\S (UNIX name) command' key='version' echo 'The \\Suname\\S (UNIX name) command' key='release' echo 'The \\Suname\\S (UNIX name) command' key='begin' echo 'The \\Sstarter\\S command' key='write' echo 'The \\Swall\\S (write all) command' key='inform' echo 'The \\Swall\\S (write all) command' key='all' echo 'The \\Swall\\S (write all) command' key='line' echo 'The \\Swho\\S (who is on the system) command' key='message' echo 'The \\Swrite\\S command' key='inform' echo 'The \\Swrite\\S command' key='line-oriented' echo 'The \\Sred\\S (restricted editor) command' key='line-oriented' echo 'The \\Sed\\S (editor) command' key='language' echo 'The \\Sed\\S (editor) command' key='revise' echo 'The \\Sred\\S (restricted editor) command' key='users' echo 'The \\Schgrp\\S (change group) command' key='size' echo 'The \\Sls\\S (list) command' key='order' echo 'The \\Sls\\S (list) command' key='sort' echo 'The \\Sls\\S (list) command' key='type' echo 'The \\Sls\\S (list) command' key='non-printing' echo 'The \\Sls\\S (list) command' key='hidden' echo 'The \\Sls\\S (list) command' key='inode' echo 'The \\Sls\\S (list) command' key='links' echo 'The \\Sls\\S (list) command' key='recursive' echo 'The \\Srm\\S (remove) command' key='merge' echo 'The \\Ssort\\S command' key='monitor' echo 'The \\Stail\\S command' key='copy' echo 'The \\Stee\\S command' key='extract' echo 'The \\Scpio\\S (copy in, copy out) command' key='large' echo 'The \\Sbdiff\\S (big difference) command' key='same' echo 'The \\Sdircmp\\S (directory compare) command' key='errors' echo 'The \\Ssum\\S command' key='compressed' echo 'The \\Sunpack\\S command' key='assign' echo 'The \\Sline\\S command' key='assign' echo 'The \\Senv\\S (environment) command' key='octal' echo 'The \\Scmp\\S (compare) command' key='code' echo 'The \\Scmp\\S (compare) command' key='encrypted' echo 'The \\Sed\\S (editor) command' key='encrypt' echo 'The \\Sed\\S (editor) command' key='revise' echo 'The \\Sred\\S (restricted editor) command' key='encrypted' echo 'The \\Sred\\S (restricted editor) command' key='encrypt' echo 'The \\Sred\\S (restricted editor) command' key='language' echo 'The \\Sred\\S (restricted editor) command' key='language' echo 'The \\Ssh\\S (shell) command' key='syntax' echo 'The \\Ssh\\S (shell) command' key='debug' echo 'The \\Ssh\\S (shell) command' key='command' echo 'The \\Ssh\\S (shell) command' key='commands' echo 'The \\Ssh\\S (shell) command' key='syntax' echo 'The \\Srsh\\S (restricted shell) command' key='debug' echo 'The \\Srsh\\S (restricted shell) command' key='command' echo 'The \\Srsh\\S (restricted shell) command' key='commands' echo 'The \\Srsh\\S (restricted shell) command' key='display' echo 'The \\Scat\\S (concatenate) command' key='view' echo 'The \\Scat\\S (concatenate) command' key='join' echo 'The \\Scat\\S (concatenate) command' key='read' echo 'The \\Scat\\S (concatenate) command' key='review' echo 'The \\Scat\\S (concatenate) command' key='print' echo 'The \\Scat\\S (concatenate) command' key='examine' echo 'The \\Scat\\S (concatenate) command' key='concatenate' echo 'The \\Scat\\S (concatenate) command' key='write' echo 'The \\Scat\\S (concatenate) command' key='change' echo 'The \\Scd\\S (change directory) command' key='place' echo 'The \\Scd\\S (change directory) command' key='move' echo 'The \\Scd\\S (change directory) command' key='directory' echo 'The \\Scd\\S (change directory) command' key='current' echo 'The \\Scd\\S (change directory) command' key='reposition' echo 'The \\Scd\\S (change directory) command' key='hierarchy' echo 'The \\Scd\\S (change directory) command' key='path' echo 'The \\Scd\\S (change directory) command' key='enter' echo 'The \\Scd\\S (change directory) command' key='change' echo 'The \\Schmod\\S (change mode) command' key='mode' echo 'The \\Schmod\\S (change mode) command' key='set' echo 'The \\Schmod\\S (change mode) command' key='permissions' echo 'The \\Schmod\\S (change mode) command' key='protect' echo 'The \\Schmod\\S (change mode) command' key='permit' echo 'The \\Schmod\\S (change mode) command' key='security' echo 'The \\Schmod\\S (change mode) command' key='copy' echo 'The \\Scp\\S (copy) command' key='move' echo 'The \\Scp\\S (copy) command' key='duplicate' echo 'The \\Scp\\S (copy) command' key='link' echo 'The \\Scp\\S (copy) command' key='rename' echo 'The \\Scp\\S (copy) command' key='cut' echo 'The \\Scut\\S command' key='strip' echo 'The \\Scut\\S command' key='split' echo 'The \\Scut\\S command' key='slice' echo 'The \\Scut\\S command' key='select' echo 'The \\Scut\\S command' key='pick' echo 'The \\Scut\\S command' key='extract' echo 'The \\Scut\\S command' key='format' echo 'The \\Scut\\S command' key='splice' echo 'The \\Scut\\S command' key='lines' echo 'The \\Scut\\S command' key='divide' echo 'The \\Scut\\S command' key='edit' echo 'The \\Scut\\S command' key='merge' echo 'The \\Scut\\S command' key='date' echo 'The \\Sdate\\S command' key='time' echo 'The \\Sdate\\S command' key='echo' echo 'The \\Secho\\S command' key='display' echo 'The \\Secho\\S command' key='repeat' echo 'The \\Secho\\S command' key='output' echo 'The \\Secho\\S command' key='write' echo 'The \\Secho\\S command' key='show' echo 'The \\Secho\\S command' key='print' echo 'The \\Secho\\S command' key='locate' echo 'The \\Segrep\\S command' key='find' echo 'The \\Segrep\\S command' key='pattern' echo 'The \\Segrep\\S command' key='match' echo 'The \\Segrep\\S command' key='scan' echo 'The \\Segrep\\S command' key='retrieve' echo 'The \\Segrep\\S command' key='grope' echo 'The \\Segrep\\S command' key='extract' echo 'The \\Segrep\\S command' key='grab' echo 'The \\Segrep\\S command' key='search' echo 'The \\Segrep\\S command' key='look' echo 'The \\Segrep\\S command' key='select' echo 'The \\Segrep\\S command' key='pick' echo 'The \\Segrep\\S command' key='expression' echo 'The \\Segrep\\S command' key='find' echo 'The \\Sfgrep\\S command' key='pattern' echo 'The \\Sfgrep\\S command' key='grope' echo 'The \\Sfgrep\\S command' key='grab' echo 'The \\Sfgrep\\S command' key='search' echo 'The \\Sfgrep\\S command' key='scan' echo 'The \\Sfgrep\\S command' key='extract' echo 'The \\Sfgrep\\S command' key='locate' echo 'The \\Sfgrep\\S command' key='retrieve' echo 'The \\Sfgrep\\S command' key='look' echo 'The \\Sfgrep\\S command' key='match' echo 'The \\Sfgrep\\S command' key='select' echo 'The \\Sfgrep\\S command' key='pick' echo 'The \\Sfgrep\\S command' key='type' echo 'The \\Sfile\\S (file type) command' key='file' echo 'The \\Sfile\\S (file type) command' key='contents' echo 'The \\Sfile\\S (file type) command' key='classify' echo 'The \\Sfile\\S (file type) command' key='find' echo 'The \\Sfind\\S (find a file) command' key='locate' echo 'The \\Sfind\\S (find a file) command' key='search' echo 'The \\Sfind\\S (find a file) command' key='match' echo 'The \\Sfind\\S (find a file) command' key='look' echo 'The \\Sfind\\S (find a file) command' key='where' echo 'The \\Sfind\\S (find a file) command' key='descent' echo 'The \\Sfind\\S (find a file) command' key='traverse' echo 'The \\Sfind\\S (find a file) command' key='find' echo 'The \\Sgrep\\S command' key='grope' echo 'The \\Sgrep\\S command' key='extract' echo 'The \\Sgrep\\S command' key='search' echo 'The \\Sgrep\\S command' key='pick' echo 'The \\Sgrep\\S command' key='look' echo 'The \\Sgrep\\S command' key='locate' echo 'The \\Sgrep\\S command' key='grab' echo 'The \\Sgrep\\S command' key='scan' echo 'The \\Sgrep\\S command' key='match' echo 'The \\Sgrep\\S command' key='retrieve' echo 'The \\Sgrep\\S command' key='pattern' echo 'The \\Sgrep\\S command' key='select' echo 'The \\Sgrep\\S command' key='expression' echo 'The \\Sgrep\\S command' key='link' echo 'The \\Sln\\S (link) command' key='mirror' echo 'The \\Sln\\S (link) command' key='links' echo 'The \\Sln\\S (link) command' key='duplicate' echo 'The \\Sln\\S (link) command' key='alias' echo 'The \\Sln\\S (link) command' key='synonym' echo 'The \\Sln\\S (link) command' key='same' echo 'The \\Sln\\S (link) command' key='list' echo 'The \\Sls\\S (list) command' key='directory' echo 'The \\Sls\\S (list) command' key='print' echo 'The \\Sls\\S (list) command' key='tell' echo 'The \\Sls\\S (list) command' key='show' echo 'The \\Sls\\S (list) command' key='contents' echo 'The \\Sls\\S (list) command' key='catalog' echo 'The \\Sls\\S (list) command' key='describe' echo 'The \\Sls\\S (list) command' key='display' echo 'The \\Sls\\S (list) command' key='file' echo 'The \\Sls\\S (list) command' key='mail' echo 'The \\Smail\\S command' key='write' echo 'The \\Smail\\S command' key='talk' echo 'The \\Smail\\S command' key='notes' echo 'The \\Smail\\S command' key='message' echo 'The \\Smail\\S command' key='receive' echo 'The \\Smail\\S command' key='communicate' echo 'The \\Smail\\S command' key='send' echo 'The \\Smail\\S command' key='restrict' echo 'The \\Smesg\\S (message) command' key='message' echo 'The \\Smesg\\S (message) command' key='modify' echo 'The \\Smesg\\S (message) command' key='communicate' echo 'The \\Smesg\\S (message) command' key='create' echo 'The \\Smkdir\\S (make directory) command' key='new' echo 'The \\Smkdir\\S (make directory) command' key='make' echo 'The \\Smkdir\\S (make directory) command' key='directory' echo 'The \\Smkdir\\S (make directory) command' key='generate' echo 'The \\Smkdir\\S (make directory) command' key='establish' echo 'The \\Smkdir\\S (make directory) command' key='move' echo 'The \\Smv\\S (move) command' key='change' echo 'The \\Smv\\S (move) command' key='relocate' echo 'The \\Smv\\S (move) command' key='rename' echo 'The \\Smv\\S (move) command' key='create' echo 'The \\Smv\\S (move) command' key='copy' echo 'The \\Smv\\S (move) command' key='print' echo 'The \\Spr\\S (print) command' key='type' echo 'The \\Spr\\S (print) command' key='list' echo 'The \\Spr\\S (print) command' key='display' echo 'The \\Spr\\S (print) command' key='show' echo 'The \\Spr\\S (print) command' key='contents' echo 'The \\Spr\\S (print) command' key='file' echo 'The \\Spr\\S (print) command' key='dump' echo 'The \\Spr\\S (print) command' key='reformat' echo 'The \\Spr\\S (print) command' key='format' echo 'The \\Spr\\S (print) command' key='paginate' echo 'The \\Spr\\S (print) command' key='page' echo 'The \\Spr\\S (print) command' key='break' echo 'The \\Spr\\S (print) command' key='filter' echo 'The \\Spr\\S (print) command' key='process' echo 'The \\Sps\\S (process status) command' key='active' echo 'The \\Sps\\S (process status) command' key='status' echo 'The \\Sps\\S (process status) command' key='running' echo 'The \\Sps\\S (process status) command' key='inform' echo 'The \\Sps\\S (process status) command' key='activity' echo 'The \\Sps\\S (process status) command' key='directory' echo 'The \\Spwd\\S (print working directory) command' key='where' echo 'The \\Spwd\\S (print working directory) command' key='location' echo 'The \\Spwd\\S (print working directory) command' key='here' echo 'The \\Spwd\\S (print working directory) command' key='current' echo 'The \\Spwd\\S (print working directory) command' key='place' echo 'The \\Spwd\\S (print working directory) command' key='identify' echo 'The \\Spwd\\S (print working directory) command' key='display' echo 'The \\Spwd\\S (print working directory) command' key='print' echo 'The \\Spwd\\S (print working directory) command' key='show' echo 'The \\Spwd\\S (print working directory) command' key='tell' echo 'The \\Spwd\\S (print working directory) command' key='now' echo 'The \\Spwd\\S (print working directory) command' key='where' echo 'The \\Spwd\\S (print working directory) command' key='remove' echo 'The \\Srm\\S (remove) command' key='delete' echo 'The \\Srm\\S (remove) command' key='discard' echo 'The \\Srm\\S (remove) command' key='unsave' echo 'The \\Srm\\S (remove) command' key='unlink' echo 'The \\Srm\\S (remove) command' key='scratch' echo 'The \\Srm\\S (remove) command' key='clean' echo 'The \\Srm\\S (remove) command' key='erase' echo 'The \\Srm\\S (remove) command' key='sleep' echo 'The \\Ssleep\\S command' key='suspend' echo 'The \\Ssleep\\S command' key='rest' echo 'The \\Ssleep\\S command' key='pause' echo 'The \\Ssleep\\S command' key='hesitate' echo 'The \\Ssleep\\S command' key='delay' echo 'The \\Ssleep\\S command' key='wait' echo 'The \\Ssleep\\S command' key='sort' echo 'The \\Ssort\\S command' key='format' echo 'The \\Ssort\\S command' key='list' echo 'The \\Ssort\\S command' key='order' echo 'The \\Ssort\\S command' key='terminal' echo 'The \\Sstty\\S (set tty) command' key='environment' echo 'The \\Sstty\\S (set tty) command' key='configure' echo 'The \\Sstty\\S (set tty) command' key='set' echo 'The \\Stabs\\S command' key='stops' echo 'The \\Stabs\\S command' key='tabs' echo 'The \\Stabs\\S command' key='environment' echo 'The \\Stabs\\S command' key='margins' echo 'The \\Stabs\\S command' key='print' echo 'The \\Stail\\S command' key='tail' echo 'The \\Stail\\S command' key='bottom' echo 'The \\Stail\\S command' key='display' echo 'The \\Stail\\S command' key='follow' echo 'The \\Stail\\S command' key='backwards' echo 'The \\Stail\\S command' key='end' echo 'The \\Stail\\S command' key='output' echo 'The \\Stail\\S command' key='duplicate' echo 'The \\Stee\\S command' key='mirror' echo 'The \\Stee\\S command' key='transcribe' echo 'The \\Stee\\S command' key='collect' echo 'The \\Stee\\S command' key='divert' echo 'The \\Stee\\S command' key='log' echo 'The \\Stee\\S command' key='branch' echo 'The \\Stee\\S command' key='time' echo 'The \\Stime\\S command' key='measure' echo 'The \\Stime\\S command' key='statistics' echo 'The \\Stime\\S command' key='duration' echo 'The \\Stime\\S command' key='clock' echo 'The \\Stime\\S command' key='terminal' echo 'The \\Stty\\S command' key='line' echo 'The \\Stty\\S command' key='identify' echo 'The \\Stty\\S command' key='update' echo 'The \\Stouch\\S command' key='time' echo 'The \\Stouch\\S command' key='touch' echo 'The \\Stouch\\S command' key='renew' echo 'The \\Stouch\\S command' key='redate' echo 'The \\Stouch\\S command' key='where' echo 'The \\Suname\\S (UNIX system name) command' key='machine' echo 'The \\Suname\\S (UNIX system name) command' key='name' echo 'The \\Suname\\S (UNIX system name) command' key='identify' echo 'The \\Suname\\S (UNIX system name) command' key='system' echo 'The \\Suname\\S (UNIX system name) command' key='announce' echo 'The \\Swall\\S (write to all) command' key='talk' echo 'The \\Swall\\S (write to all) command' key='bulletin' echo 'The \\Swall\\S (write to all) command' key='wall' echo 'The \\Swall\\S (write to all) command' key='broadcast' echo 'The \\Swall\\S (write to all) command' key='alert' echo 'The \\Swall\\S (write to all) command' key='send' echo 'The \\Swall\\S (write to all) command' key='count' echo 'The \\Swc\\S (word count) command' key='lines' echo 'The \\Swc\\S (word count) command' key='size' echo 'The \\Swc\\S (word count) command' key='words' echo 'The \\Swc\\S (word count) command' key='counter' echo 'The \\Swc\\S (word count) command' key='characters' echo 'The \\Swc\\S (word count) command' key='total' echo 'The \\Swc\\S (word count) command' key='who' echo 'The \\Swho\\S (who is on the system) command' key='name' echo 'The \\Swho\\S (who is on the system) command' key='status' echo 'The \\Swho\\S (who is on the system) command' key='users' echo 'The \\Swho\\S (who is on the system) command' key='list' echo 'The \\Swho\\S (who is on the system) command' key='identify' echo 'The \\Swho\\S (who is on the system) command' key='write' echo 'The \\Swrite\\S command' key='send' echo 'The \\Swrite\\S command' key='conversation' echo 'The \\Swrite\\S command' key='communicate' echo 'The \\Swrite\\S command' key='talk' echo 'The \\Swrite\\S command' key='help' echo 'The \\Sglossary\\S command' key='assistance' echo 'The \\Sglossary\\S command' key='term' echo 'The \\Sglossary\\S command' key='symbol' echo 'The \\Sglossary\\S command' key='jargon' echo 'The \\Sglossary\\S command' key='define' echo 'The \\Sglossary\\S command' key='definition' echo 'The \\Sglossary\\S command' key='glossary' echo 'The \\Sglossary\\S command' key='explain' echo 'The \\Sglossary\\S command' key='reference' echo 'The \\Sglossary\\S command' key='help' echo 'The \\Shelp\\S command' key='assistance' echo 'The \\Shelp\\S command' key='documents' echo 'The \\Shelp\\S command' key='information' echo 'The \\Shelp\\S command' key='data' echo 'The \\Shelp\\S command' key='command' echo 'The \\Shelp\\S command' key='definition' echo 'The \\Shelp\\S command' key='help' echo 'The \\Slocate\\S command' key='assistance' echo 'The \\Slocate\\S command' key='locate' echo 'The \\Slocate\\S command' key='find' echo 'The \\Slocate\\S command' key='identify' echo 'The \\Slocate\\S command' key='command' echo 'The \\Slocate\\S command' key='how' echo 'The \\Slocate\\S command' key='which' echo 'The \\Slocate\\S command' key='help' echo 'The \\Sstarter\\S command' key='assistance' echo 'The \\Sstarter\\S command' key='documents' echo 'The \\Sstarter\\S command' key='document' echo 'The \\Sstarter\\S command' key='training' echo 'The \\Sstarter\\S command' key='system' echo 'The \\Sstarter\\S command' key='information' echo 'The \\Sstarter\\S command' key='starter' echo 'The \\Sstarter\\S command' key='data' echo 'The \\Sstarter\\S command' key='basic' echo 'The \\Sstarter\\S command' key='local' echo 'The \\Sstarter\\S command' key='administrator' echo 'The \\Sstarter\\S command' key='start' echo 'The \\Sstarter\\S command' key='help' echo 'The \\Susage\\S command' key='explain' echo 'The \\Susage\\S command' key='assistance' echo 'The \\Susage\\S command' key='command' echo 'The \\Susage\\S command' key='describe' echo 'The \\Susage\\S command' key='option' echo 'The \\Susage\\S command' key='options' echo 'The \\Susage\\S command' key='how' echo 'The \\Susage\\S command' key='example' echo 'The \\Susage\\S command' key='syntax' echo 'The \\Susage\\S command' key='synopsis' echo 'The \\Susage\\S command' key='usage' echo 'The \\Susage\\S command' \Susage\\S command' key='explain' echo 'The \\Susage\\S command' key='assistance' echo 'The \\Susage\\S command' key='command' echo 'The \\Susage\\S command' key='describe' echo 'The \\Susage\\S command' key='option' echo 'The \\Susage\\S command' key='options' echo 'The \\Susage\\S command' key='how' echo 'The \\Susage\\S command' key='example' echo 'The \\Susage\\S command' key='syntax' echo 'The \\Susage\\S command' key='synopsis' usr/lib/help/db/tables/responses100644 3 3 32570 4201130273 13416 37777777777 []:glossary:define1 square brackets:glossary:define1 $:glossary:define2 dollar sign:glossary:define2 .:glossary:define51 *:glossary:define4 asterisk:glossary:define4 \:glossary:define5 backslash:glossary:define5 &:glossary:define6 ampersand:glossary:define6 background:glossary:define6 "":glossary:define7 '':glossary:define7 quote:glossary:define7 quotes:glossary:define7 double quotes:glossary:define7 ``:glossary:define8 grave accents:glossary:define8 #:glossary:define9 pound sign:glossary:define9 ?:glossary:define10 question mark:glossary:define10 |:glossary:define45 pipe:glossary:define45 pipeline:glossary:define45 k:locate:getkey k:keysrch:getkey access permissions:glossary:define11 permissions:glossary:define11 mode:glossary:define11 owner:glossary:define11 owner:glossary:define11 group:glossary:define11 other:glossary:define11 read:glossary:define11 write:glossary:define11 execute:glossary:define11 active process:glossary:define12 argument:glossary:define13 ASCII:glossary:define14 ASCII collating sequence:glossary:define14 block:glossary:define15 block number:glossary:define15 byte:glossary:define17 bit:glossary:define17 byte number:glossary:define17 character number:glossary:define17 command:glossary:define18 command line:glossary:define18 directory:glossary:define27 subdirectory:glossary:define20 parent directory:glossary:define20 erase character:glossary:define22 error message:glossary:define23 field:glossary:define24 file:glossary:define25 file type:glossary:define25 file descriptor:glossary:define16 file name:glossary:define26 simple file name:glossary:define26 file system:glossary:define27 file system structure:glossary:define27 current working directory:glossary:define27 full pathname:glossary:define28 pathname:glossary:define28 group ID:glossary:define29 numeric group ID:glossary:define29 group ID number:glossary:define29 HOME:glossary:define31 $HOME:glossary:define31 HOME directory:glossary:define31 interrupt:glossary:define32 kill character:glossary:define33 limited regular expression:glossary:define34 full regular expression:glossary:define34 regular expression:glossary:define34 expression:glossary:define34 logical expression:glossary:define34 logical operator:glossary:define34 pattern matching:glossary:define34 link:glossary:define35 login:glossary:define36 login name:glossary:define36 login directory:glossary:define36 password:glossary:define36 machine hardware name:glossary:define38 machine ID:glossary:define38 mail file:glossary:define39 manual page:glossary:define40 section number:glossary:define40 non-printing character:glossary:define41 octal:glossary:define42 option:glossary:define43 default-option:glossary:define43 operand:glossary:define44 process:glossary:define12 process number:glossary:define12 program:glossary:define48 prompt:glossary:define49 prompt string:glossary:define49 primary prompt:glossary:define49 secondary prompt:glossary:define49 redirection:glossary:define50 relative pathname:glossary:define51 dot:glossary:define51 root directory:glossary:define52 root:glossary:define52 separator:glossary:define53 separator character:glossary:define53 shell:glossary:define54 shell level:glossary:define54 shell command level:glossary:define54 shell language:glossary:define55 shell script:glossary:define56 shell program:glossary:define56 shell variable:glossary:define64 export:glossary:define64 exported variable:glossary:define64 special character:glossary:define58 standard error output:glossary:define59 standard error:glossary:define59 standard input:glossary:define59 standard output:glossary:define59 string:glossary:define60 system name:glossary:define61 terminal type:glossary:define62 user ID:glossary:define63 user ID number:glossary:define63 UNIX:glossary:define66 UNIX system:glossary:define66 UNIX operating system:glossary:define66 operating system:glossary:define66 kernel:glossary:define66 white space:glossary:define65 angle brackets:glossary:define67 arrow:glossary:define67 dash:glossary:define68 -:glossary:define68 minus:glossary:define68 hyphen:glossary:define68 abnormal termination:glossary:define69 archive:glossary:define70 archive file:glossary:define70 header:glossary:define70 symbol table:glossary:define70 file format:glossary:define70 baud rate:glossary:define71 transmission rate:glossary:define71 buffer:glossary:define72 editor buffer:glossary:define72 byte order:glossary:define73 half word order:glossary:define73 compiler:glossary:define74 link editor:glossary:define74 loader:glossary:define74 interpreter:glossary:define74 control-d:glossary:define75 :glossary:define75 central processing unit:glossary:define76 CPU:glossary:define76 CPU priority:glossary:define76 crash:glossary:define77 editor crash:glossary:define77 system crash:glossary;define77 device:glossary:define78 device driver:glossary:define78 directory name:glossary:define79 simple directory name:glossary:define79 editor:glossary:define80 text editor:glossary:define80 editor command:glossary:define80 encrypt:glossary:define81 decrypt:glossary:define81 environment:glossary:define82 environment variable:glossary:define82 EOF:glossary:define83 end-of-file:glossary:define83 end-of-file character:glossary:define83 exit status:glossary:define84 return code:glossary:define84 false:glossary:define84 true:glossary:define84 filter:glossary:define85 high-level language:glossary:define86 machine language:glossary:define86 interpreted language:glossary:define86 inode:glossary:define87 i-number:glossary:define87 inode number:glossary:define87 library:glossary:define88 line:glossary:define89 port:glossary:define89 terminal line:glossary:define89 login port:glossary:define89 line number:glossary:define89 port number:glossary:define89 tty number:glossary:define89 line editor:glossary:define90 line-oriented editor:glossary:define90 screen editor:glossary:define90 screen-oriented editor:glossary:define90 display-oriented editor:glossary:define90 local system:glossary:define91 remote system:glossary:define91 loop:glossary:define92 infinite loop:glossary:define92 electronic mail:glossary:define93 network hop:glossary:define94 newline character:glossary:define95 tab character:glossary:define95 blank character:glossary:define95 newline:glossary:define95 blank:glossary:define95 tab:glossary:define95 option argument:glossary:define96 parent process:glossary:define97 child process:glossary:define97 parity:glossary:define98 parity bit:glossary:define98 even parity:glossary:define98 odd parity:glossary:define98 portable:glossary:define100 portability:glossary:define100 positional parameters:glossary:define101 .profile:glossary:define102 release:glossary:define103 version:glossary:define103 operating system version:glossary:define103 operating system release:glossary:define103 request:glossary:define104 macro:glossary:define104 register:glossary:define104 macro package:glossary:define104 screen:glossary:define105 display:glossary:define105 cursor:glossary:define105 home position:glossary:define105 signal:glossary:define106 signal number:glossary:define106 catch:glossary:define106 simplex:glossary:define107 duplex:glossary:define107 half-duplex:glossary:define107 source code:glossary:define108 source file:glossary:define108 object file:glossary:define108 object code:glossary:define108 a.out file:glossary:define108 executable:glossary:define108 synchronous transmission:glossary:define109 asynchronous transmission:glossary:define109 syntax:glossary:define110 syntax summary:glossary:define110 terminal mode:glossary:define111 standout mode:glossary:define111 reverse video:glossary:define111 word:glossary:define112 half word:glossary:define112 process group leader:glossary:define113 super user:glossary:define114 c:starter:basiccmds d:getdoe:getdesc d:getexample:getdesc d:getoption:getdesc d:starter:documents e:getdesc:getexample e:getdoe:getexample e:getoption:getexample e:starter:education g:help:glossary g:glossary:glossary l:getdesc:keysrch l:getexample:keysrch l:getoption:keysrch l:help:locate l:starter:local o:getdesc:getoption o:getdoe:getoption o:getexample:getoption p:getdesc:listcmds p:getexample:listcmds p:getoption:listcmds p:usage:listcmds s:basiccmds:starter s:documents:starter s:education:starter s:help:starter s:teach:starter s:local:starter t:starter:teach u:help:usage cat:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe cd:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe chmod:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe cp:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe date:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe echo:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe egrep:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe fgrep:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe file:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe find:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe grep:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe ln:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe ls:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe mail:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe mesg:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe mkdir:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe mv:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe news:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe pr:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe ps:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe pwd:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe rm:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe sleep:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe sort:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe stty:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe tabs:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe tail:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe tee:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe time:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe tty:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe touch:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe uname:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe wall:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe wc:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe who:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe write:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe p:getdesc,getexample,getoption,usage:listcmds ar:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe at:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe basename:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe batch:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe bdiff:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe chgrp:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe chown:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe cmp:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe comm:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe cpio:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe crontab:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe diff:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe diff3:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe dircmp:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe dirname:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe ed:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe env:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe expr:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe false:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe file:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe find:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe getopt:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe glossary:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe help:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe kill:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe line:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe locate:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe login:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe nohup:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe pack:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe passwd:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe pcat:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe red:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe rmdir:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe rsh:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe sdiff:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe sed:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe sh:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe starter:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe sum:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe test:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe true:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe umask:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe unpack:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe usage:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe wait:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe xargs:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe test:getdesc,listcmds,getexample,getoption,usage,keysrch:getdoe true:getdesc,usr/lib/help/db/descriptions.a100644 3 3 233772 4201130236 13076 37777777777 descriptions.a"ar"g% \Sar\S: Description Syntax Summary: ar -d [s] archive_file file_name ... ar -m [lsv] [a|b|i location] archive_file file_name ... ar -p [s] archive_file [file_name ...] ar -q [clsv] archive_file file_name ... ar -r [clsuv][a|b|i location] archive_file file_name ... ar -t [sv] archive_file [file_name ...] ar -x [lsv] archive_file [file_name ...] where: location, archive_file and file_name are names of files. Description: \Sar\S stands for "archive." \Sar\S creates and maintains archives. An archive is a file that is composed of a group of files. \Sar\S is primarily used to archive files of object code to create libraries. You can also use \Sar\S to archive text files and save them under one file name. If the files are smaller than one block, archiving with \Sar\S will save storage space in memory. \Sar\S is useful because it enables you to extract, add, or delete files without disturbing the rest of the files in the library. \Sar\S uses two types of options. The first type of options are independent but mandatory. You can use one of these options alone with the command and operands, but you must use one if you want \Sar\S to execute. These independent options dictate the function of \Sar\S. With one of these you can create new archives, extract files from archives, and replace, append, or move files to different positions within an archive. The second type of options are dependent options. You must use a dependent option with an independent option. Dependent options change the output of \Sar\S. They suppress messages, or describe the creation of an archive. See also: convert(1) for a command that might be used with \Sar\S. at"gZ \Sat\S: Description Syntax Summary: at time [future] [date] at -l [job ...] at -r job ... where: time is the time on a 12 or 24 hour clock, or "noon", "midnight", "now", or "next". future is an integer that indicates a duration of time and a measure of time stated as "minutes," "hours," "days," "weeks," "months," or "years." job is a job number. Description: \Sat\S executes commands at a time in the future. Use \Sat\S to read commands from standard input and execute them at the date and time you specify on the \Sat\S command line.