home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume17 / mgr / part12 < prev    next >
Encoding:
Internet Message Format  |  1989-01-18  |  51.5 KB

  1. Subject:  v17i013:  MGR, Bellcore window manager, Part12/61
  2. Newsgroups: comp.sources.unix
  3. Approved: rsalz@uunet.UU.NET
  4.  
  5. Submitted-by: Stephen A. Uhler <sau@bellcore.com>
  6. Posting-number: Volume 17, Issue 13
  7. Archive-name: mgr/part12
  8.  
  9.  
  10.  
  11.  
  12. #! /bin/sh
  13. # This is a shell archive.  Remove anything before this line, then unpack
  14. # it by saving it into a file and typing "sh file".  To overwrite existing
  15. # files, type "sh file -c".  You can also feed this as standard input via
  16. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  17. # will see the following message at the end:
  18. #        "End of archive 12 (of 61)."
  19. # Contents:  demo/sh/showfont demo/tests/half.c
  20. #   doc/usrman/croff/croff.1 font-16/Ucour7x14b font-16/Ucour7x14bI
  21. #   font-16/Ucour7x14bu font-16/Ugal8x14b font-16/Ugal8x14bI
  22. #   font-16/Ugal8x14bu font-32/Ucour7x14b font-32/Ucour7x14bI
  23. #   font-32/Ucour7x14bu font-32/Ugal8x14b font-32/Ugal8x14bI
  24. #   font-32/Ugal8x14bu misc/getscreen.c src/icons-16.h
  25. # Wrapped by rsalz@papaya.bbn.com on Thu Nov 17 21:05:11 1988
  26. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  27. if test -f 'demo/sh/showfont' -a "${1}" != "-c" ; then 
  28.   echo shar: Will not clobber existing file \"'demo/sh/showfont'\"
  29. else
  30. echo shar: Extracting \"'demo/sh/showfont'\" \(2559 characters\)
  31. sed "s/^X//" >'demo/sh/showfont' <<'END_OF_FILE'
  32. X#!/bin/sh
  33. X#                        Copyright (c) 1987 Bellcore
  34. X#                            All Rights Reserved
  35. X#       Permission is granted to copy or use this program, EXCEPT that it
  36. X#       may not be sold for profit, the copyright notice must be reproduced
  37. X#       on copies, and credit should be given to Bellcore where it is due.
  38. X#       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  39. X
  40. X#    $Header: showfont,v 4.1 88/06/21 14:01:39 bianchi Exp $
  41. X#    $Source: /tmp/mgrsrc/demo/sh/RCS/showfont,v $
  42. X
  43. X#    show all of the fonts
  44. X
  45. Xusage="Usage:  `basename $0` [ -s'string' ] [ -c ] [ -i ] [ -number ] [ font-files ... ]
  46. XShow the fonts found in the given fonts-files.
  47. X-s'string'    Change the string used as the example of the font.
  48. X-c    Show current font.
  49. X-i    Show internal fonts, by number.
  50. X"
  51. X
  52. XESC=^[
  53. Xstring='abcdefghijklmnopqrstuvwxyz
  54. XABCDEFGHIJKLMNOPQRSTUVWXYZ
  55. X1234567890 !@#$%^&*()_+|~ -=\`
  56. X{}[] :";'\'' <>? ,./'
  57. X
  58. Xif /bin/test $TERM != mgr
  59. Xthen
  60. X    echo "$0 only works on mgr terminals"
  61. X    exit 1
  62. Xfi
  63. X
  64. Xif [ $# -lt 1 ]
  65. Xthen
  66. X    echo >&2 "${usage}"
  67. X    exit 255
  68. Xfi
  69. X
  70. Xtrap 'exit' 1 2 15
  71. Xtrap 'stty echo' 0
  72. X
  73. Xstty -echo
  74. X
  75. X#    get current font info.
  76. Xecho "${ESC}3I"
  77. Xread charwide charhigh curnum curname
  78. X
  79. Xtrap '
  80. X    len=`expr length ${curname}`
  81. X    echo "${ESC}${curnum},${len}F${curname}"
  82. X    echo "${ESC}${curnum}F"
  83. X    stty echo
  84. X    ' 0
  85. X
  86. Xwhile [ -n "$1" ]
  87. Xdo
  88. X    case $1 in
  89. X    -c )
  90. X        echo "${ESC}0FCurrent font ${curnum}, ${curname}${ESC}${curnum}F
  91. X${string}
  92. X"
  93. X        ;;
  94. X    -i )
  95. X        echo ${ESC}0F${ESC}3I
  96. X        read charwide charhigh num name
  97. X        echo "${ESC}0FFont ${num} ${name} ${ESC}${num}F
  98. X${string}
  99. X${ESC}0F"
  100. X
  101. X        count=1
  102. X        while    echo ${ESC}${count}F${ESC}3I
  103. X            read charwide charhigh num name
  104. X            test ${num} != 0
  105. X        do
  106. X            echo "${ESC}0FFont ${num} ${name} ${ESC}${num}F
  107. X${string}
  108. X${ESC}${curnum}F"
  109. X            count=`expr ${count} + 1`
  110. X        done
  111. X        ;;
  112. X    -s?* )
  113. X        string=`expr "$1" : '-s\(.*\)'`
  114. X        ;;
  115. X    -[0-9] | -[0-9][0-9] )
  116. X        argnum=`expr $1 : '-\(.*\)'`
  117. X        echo ${ESC}${argnum}F${ESC}3I
  118. X        read charwide charhigh num name
  119. X        if [ ${argnum} -ne ${num} ]
  120. X        then
  121. X            echo >&2 "$0:  No font ${argnum} available."
  122. X        else
  123. X            echo "${ESC}0FFont ${num} ${name} ${ESC}${num}F
  124. X${string}
  125. X${ESC}${curnum}F"
  126. X        fi
  127. X        ;;
  128. X    -[0-9]* )
  129. X        echo >&2 "$0:  Illegal option argument.  '$1'
  130. X    -number is limited to 2 digits."
  131. X        echo >&2 "${usage}"
  132. X        exit 255
  133. X        ;;
  134. X    -* )
  135. X        echo >&2 "$0:  Illegal option argument.  '$1'"
  136. X        echo >&2 "${usage}"
  137. X        exit 255
  138. X        ;;
  139. X    * )
  140. X        break
  141. X    esac
  142. X    shift
  143. Xdone
  144. X
  145. Xfor file 
  146. Xdo
  147. X    len=`expr length ${file}`
  148. X    echo "${ESC}${curnum},${len}F${file}"
  149. X    echo "${ESC}0F(font ${file})${ESC}${curnum}F
  150. X${string}
  151. X${ESC}0F"
  152. Xdone
  153. END_OF_FILE
  154. chmod +x 'demo/sh/showfont'
  155. # end of 'demo/sh/showfont'
  156. fi
  157. if test -f 'demo/tests/half.c' -a "${1}" != "-c" ; then 
  158.   echo shar: Will not clobber existing file \"'demo/tests/half.c'\"
  159. else
  160. echo shar: Extracting \"'demo/tests/half.c'\" \(2702 characters\)
  161. sed "s/^X//" >'demo/tests/half.c' <<'END_OF_FILE'
  162. X/*                        Copyright (c) 1987 Bellcore
  163. X *                            All Rights Reserved
  164. X *       Permission is granted to copy or use this program, EXCEPT that it
  165. X *       may not be sold for profit, the copyright notice must be reproduced
  166. X *       on copies, and credit should be given to Bellcore where it is due.
  167. X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  168. X */
  169. X/*    $Header: half.c,v 4.1 88/06/21 14:02:04 bianchi Exp $
  170. X    $Source: /tmp/mgrsrc/demo/tests/RCS/half.c,v $
  171. X*/
  172. Xstatic char    RCSid_[] = "$Source: /tmp/mgrsrc/demo/tests/RCS/half.c,v $$Revision: 4.1 $";
  173. X
  174. X/* Start a new window with a command running in it */
  175. X
  176. X#include <stdio.h>
  177. X#include <sgtty.h>
  178. X
  179. X#define WIDE    400
  180. X#define HIGH    300
  181. X#define X    200
  182. X#define Y    200
  183. X
  184. Xmain(argc,argv)
  185. Xint argc;
  186. Xchar **argv;
  187. X   {
  188. X   register int i;
  189. X   int group;        /* process group for new shell */
  190. X   int pid;        /* pid of new shell */
  191. X   char name[50];    /* name of tty to open */
  192. X   struct sgttyb modes;    /* for tty modes */
  193. X   /* check arguments */
  194. X
  195. X   if (argc < 2) {
  196. X      fprintf(stderr,"usage: %s <command> \n",*argv);
  197. X      exit(1); 
  198. X      }
  199. X
  200. X   /* get existing file modes, turn off echo */
  201. X
  202. X   ioctl(0,TIOCGETP,&modes);
  203. X   modes.sg_flags &= ~ECHO;
  204. X   ioctl(0,TIOCSETP,&modes);
  205. X      
  206. X   /* make the window */
  207. X
  208. X   printf("\033%d,%d,%d,%d%c",X,Y,WIDE,HIGH,'z');
  209. X   fflush(stdout);
  210. X
  211. X   /* get tty name to open */
  212. X
  213. X   gets(name);
  214. X
  215. X   /* restore modes */
  216. X
  217. X   modes.sg_flags |= ECHO;
  218. X   ioctl(0,TIOCSETP,&modes);
  219. X
  220. X   if (strlen(name) < 4) {
  221. X      printf("%s: Sorry, couldn't create window\n",*argv);
  222. X      exit(1);
  223. X      }
  224. X
  225. X   /* make sure we can open tty */
  226. X
  227. X   if (open(name,2) < 0) {
  228. X      printf("Serious error, can't open %s\n",name);
  229. X      exit(1);
  230. X      }
  231. X
  232. X   /* start new process */
  233. X
  234. X   if ((pid=fork()) > 0) {    /* parent */
  235. X      printf("starting %s as %d on %s\n",argv[1],pid,name);
  236. X      exit(0);
  237. X      }
  238. X
  239. X   else if (pid == 0) {        /* new shell (child) */
  240. X
  241. X      /* remove controlling tty */
  242. X
  243. X      ioctl(open("/dev/tty",0),TIOCNOTTY,0);
  244. X
  245. X      /* close all files */
  246. X
  247. X      for(i=0;i<getdtablesize();i++)
  248. X         close(i);
  249. X
  250. X      /* open new ones */
  251. X
  252. X      open(name,0);    /* stdin */
  253. X      open(name,1);    /* stdout */
  254. X      open(name,1);    /* stderr */
  255. X   
  256. X      /* get our own process group */
  257. X      
  258. X      group = getpid();
  259. X      setpgrp(group,group);
  260. X      ioctl(0,TIOCSPGRP,&group);      
  261. X
  262. X      /* fix the tty modes */
  263. X
  264. X      modes.sg_flags = ECHO|CRMOD|EVENP|ODDP;
  265. X      ioctl(0,TIOCSETP,&modes);
  266. X
  267. X      /* start the command */
  268. X
  269. X      execvp(argv[1],argv+1);
  270. X      printf("%s: Can't find %s\n",argv[0],argv[1]);
  271. X      sleep(2);
  272. X      exit(1);
  273. X      }
  274. X   else {
  275. X      printf("Can't fork!!\n");
  276. X      }
  277. X   }
  278. END_OF_FILE
  279. # end of 'demo/tests/half.c'
  280. fi
  281. if test -f 'doc/usrman/croff/croff.1' -a "${1}" != "-c" ; then 
  282.   echo shar: Will not clobber existing file \"'doc/usrman/croff/croff.1'\"
  283. else
  284. echo shar: Extracting \"'doc/usrman/croff/croff.1'\" \(2645 characters\)
  285. sed "s/^X//" >'doc/usrman/croff/croff.1' <<'END_OF_FILE'
  286. X'\"                        Copyright (c) 1988 Bellcore
  287. X'\"                            All Rights Reserved
  288. X'\"       Permission is granted to copy or use this program, EXCEPT that it
  289. X'\"       may not be sold for profit, the copyright notice must be reproduced
  290. X'\"       on copies, and credit should be given to Bellcore where it is due.
  291. X'\"       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  292. X'\"
  293. X'\"    $Header: croff.1,v 1.1 88/07/07 10:11:58 sau Exp $
  294. X'\"    $Source: /tmp/mgrsrc/doc/usrman/croff/RCS/croff.1,v $
  295. X.TH croff 1L "June 30, 1987"
  296. X.SH NAME
  297. Xcroff \- prepare C source code for inclusion in a troff document
  298. X.SH SYNOPSIS
  299. Xcat <files> \(or 
  300. X.B croff
  301. X[ \fB\-Ft\fP]
  302. X[ \fB\-a|d \fP\fI<key_word>\fP ]
  303. X[ \fB\-k|c|i|f|p \fP\fI<start> <end>\fP ]
  304. X[ \fB\-e \fP\fI<end>\fP ]
  305. X\(or troff ...
  306. X.SH DESCRIPTION
  307. X.B Croff
  308. Xis a 
  309. Xtroff preprocessor
  310. Xthat prepares C source code for the inclusion in a troff document.
  311. XIn the default case, all C keywords 
  312. Xand c preprosessor keywords are emboldened, whereas comments are
  313. Xset in italics.  In additions the characters '\e', '\-' and '\(or' are
  314. Xmunged to appear properly in the troff output.
  315. XA line in
  316. X.I file
  317. Xthat begins with 
  318. X.B .SS
  319. Xstarts the croff filter, whereas a line in
  320. X.I file
  321. Xthat begins with
  322. X.B .SE
  323. Xsuspends the filtering process.
  324. Xthe
  325. X.B .SS
  326. Xand
  327. X.B .SE
  328. Xare passed through croff unchanged, and may be defined as 
  329. X.B troff
  330. Xmacros if desired.
  331. XUp to the first 4 arguments on the same line as
  332. X.B .SS
  333. Xare interpreted by croff to be the keyword starting string, comment starting
  334. Xstring, keywork ending string, and comment ending string respectively.
  335. XWhen specified here, these strings override
  336. Xthe defaults or the command line arguments.
  337. X.LP
  338. XThe following options are recognized on the command line:
  339. X.TP
  340. X.B \-F
  341. XThe entire file is forced though
  342. X.B croff, no 
  343. X.B .SS
  344. Xand
  345. X.B .SE
  346. Xare required.
  347. X.TP
  348. X.B \-t
  349. XThe characters '\e', '\-' and '\|' are left alone.
  350. X.TP
  351. X\fB\-a \fP\fIkeyword\fP
  352. X.I Keyword
  353. Xis added to the list of reserved words taken to be keywords
  354. X.TP
  355. X\fB\-d \fP\fIkeyword\fP
  356. X.I Keyword
  357. Xis deleted to the list of reserved words taken to be keywords
  358. X.TP 
  359. X\fB\-[kcifp] \fP\fIstart end\fP
  360. XThe strings
  361. X.I start
  362. Xand
  363. X.I end
  364. Xare used to delimit keywords, comments, identifiers, function calls, and
  365. Xpreprocessor declarations respectively.  The default is
  366. X.RS
  367. Xcroff \fB\-e\fP "\efP" \fB\-k\fP "\efB" \fB\-c\fP "\efI" \fB\-p\fP "\efB"
  368. X.RE
  369. Xto set keywords in
  370. X.B bold
  371. Xand comments in
  372. X.I  italics.
  373. XThe
  374. X.I end
  375. Xstring may be omitted if the default value is ok.
  376. X.TP
  377. X\fB\-e \fP\fIend\fP
  378. Xsets the 
  379. X.I end
  380. Xstring to all of the options
  381. X.B k,c,i,f,p
  382. Xabove;
  383. X.SH SEE ALSO
  384. Xtroff(1)
  385. X.SH AUTHOR
  386. XStephen A. Uhler
  387. END_OF_FILE
  388. # end of 'doc/usrman/croff/croff.1'
  389. fi
  390. if test -f 'font-16/Ucour7x14b' -a "${1}" != "-c" ; then 
  391.   echo shar: Will not clobber existing file \"'font-16/Ucour7x14b'\"
  392. else
  393. echo shar: Extracting \"'font-16/Ucour7x14b'\" \(2626 characters\)
  394. sed "s/^X//" >'font-16/Ucour7x14b' <<'END_OF_FILE'
  395. Xbegin 644 cour7x14b.fnt
  396. XM%@@.!(8             _/XX.                                   
  397. XM                                                            
  398. XM                                                            
  399. XM        .#@X.#@   !^_C@X               X.#@X.#@ ?@     8    
  400. XM!"                                                          
  401. XM        /  \                                       .&'  X   
  402. XM       X.#@X.    /S^.#@              #@X.#@X. #\ !@V-A@P' P(
  403. XM$!@     !CP8/#P&/AY^/#P      #P<>'P^?']_/O=^/_-XX\<<?AS\/O_W
  404. XM]_?O]WXP8 P8 !@ X  .  \ X!@,X'@         "        !@8&#*0    
  405. XM     #@X.#@X    ?OXX.               .#@X.#@X 'X V/EDV#!@8
  406. XM6@     &9CAF9@XP,$9F9@  !@!@9C88-F8V,S-F9A@,9C!B0B8S)F9FF69B
  407. XM8D9B9C!@##P & !@  8 & !@& Q@&          8        &!@8?I      
  408. XM    .#@X.#@   #\_C@X               X.#@X.#@ _  8-G]B6S 8$ A^
  409. XM      QF6&8&'C!@!F9F   , #!F(CPR8#,P,&!F& QL,'9B9C-F9F 89F)J
  410. XM+&8&,# ,9@ , &  !@ 8 &   & 8         !@        8&!A,X       
  411. XM   X.#@X.    '[^.#@              #@X.#@X. !^ !@ -F V$  P##P8
  412. XM    #&88!@8V/'P,9F88&!@ & 9O-#9@,S0T8&88#'@P=G)F,V9F<!AF-&H\
  413. XM- PP, P    \?#X^/'X[;'A\9ABVW#S<.VX^?N[WYW?O?A 8" "0        
  414. XM #@X.#@X    _/XX.               .#@X.#@X /P &  V. PY # ,?A@ 
  415. XM   89A@,'&8F9@P\9A@8,'X,#</& S/#Q@?A@,<#!^>F8^9GP\&&8T:A@\
  416. XM&# 8#     9F9F9F&&9V& QL&']V9F9F.V(89F9B-D9,8  & )          
  417. XM.#@X.#@   !^_C@X               X.#@X.#@ ?@ 8 #8<&&X , Q:?@!^
  418. XM !AF&!@&?P9F&&8^  !@  88:V(V8#,T-&]F& QX,&I>9C!F; X89C1^/!@P
  419. XM,!@,    /F9@9GX89F88#'@8:V9F9F8P.!AF-&H<9!@0  @            X
  420. XM.#@X.    /S^.#@              #@X.#@X. #\    ?P8V9  0"!@8    
  421. XM,&88, 8&!F889@8  #!^# !N?C-B,S P9F88;&PP:DYF,&9F!AAFT&& P
  422. XM# P   !F9F!F8!AF9A@,>!AK9F9F9C ,&&8\:APL,!@8&  ,         #@X
  423. XM.#@X    ?OXX.               .#@X.#@X 'X    V1FMF !@8 !@8 !@P
  424. XM9AAB9@9F9AAF#!@8&  8 "!F,V8V,S!F9AAL9C-B1F0P9F9F&&88-F(89C ,
  425. XM#    &9F9F9F&&9F& QL&&MF9F9F,&899A@^-CAF&!@8 !(         .#@X
  426. XM.#@   #\_C@X               X.#@X.#@ _  8 #9\2SL "!   !@ && \
  427. XM?GX\#SP\&#QX&!@, # 8,^=^/'Q_>#SW?CCW?^?B.'@\YWP\/!@V]SQ^, 8,
  428. XM    .]P\.SQ^/O=^#.=^:_<\?#YX? X[ W&'X8&!@ $@         X.#@X
  429. XM.    '[^.#@              #@X.#@X. !^     !@&   $(   &   8   
  430. XM            & 8 8  >                     !@            \!CP 
  431. XM?P         &   ,      !@!@         P  X8<  2         #@X.#@X
  432. XM    _/XX.               .#@X.#@X /P     &          P        
  433. XM           P                            +                   
  434. XM          8   P      & &         #   !@  !(         .#@X.#@ 
  435. XM  !^_C@X               X.#@X.#@ ?@                          
  436. XM                                       '                    
  437. XE        /   >       \ \         ^       #           
  438. Xend
  439. END_OF_FILE
  440. # end of 'font-16/Ucour7x14b'
  441. fi
  442. if test -f 'font-16/Ucour7x14bI' -a "${1}" != "-c" ; then 
  443.   echo shar: Will not clobber existing file \"'font-16/Ucour7x14bI'\"
  444. else
  445. echo shar: Extracting \"'font-16/Ucour7x14bI'\" \(2627 characters\)
  446. sed "s/^X//" >'font-16/Ucour7x14bI' <<'END_OF_FILE'
  447. Xbegin 644 cour7x14bI.fnt
  448. XM%@@.!(8 ____________ P''Q________________________P  ________
  449. XM____________________________________________________________
  450. XM____________________________________________________________
  451. XM________Q\?'Q\?___^! <?'_______________'Q\?'Q\?_?@#____G____
  452. XM^]__________________________________________________________
  453. XM________P__#_______________________________________QYX__'___
  454. XM_______'Q\?'Q____P,!Q\?______________\?'Q\?'Q__\ .?)R>?/X_/W
  455. XM[^?_____^</GP\/YP>&!P\/______\/CAX/!@X" P0B!P R''#CC@>,#P0 (
  456. XM" @0"('/G_/G_^?_'__Q__#_'^?S'X?_________]________^?GY\UO____
  457. XM_____\?'Q\?'____@0''Q_______________Q\?'Q\?'_WX Y\G)P:;)\^?G
  458. XMI?_____YF<>9F?'/S[F9F?__^?^?F<GGR9G)S,R9F>?SF<^=O=G,V9F99IF=
  459. XMG;F=F<^?\\/_Y_^?__G_Y_^?Y_.?Y__________G________Y^?G@6______
  460. XM____Q\?'Q\?___\# <?'_______________'Q\?'Q\?__ #GR8"=I,_G[_>!
  461. XM______.9IYGYX<^?^9F9___S_\^9W</-G\S/SY^9Y_.3SXF=F<R9F9_GF9V5
  462. XMTYGYS\_SF?_S_Y__^?_G_Y___Y_G_________^?________GY^>S'_______
  463. XM___'Q\?'Q____X$!Q\?______________\?'Q\?'Q_]^ .?_R9_)[__/\\/G
  464. XM____\YGG^?G)PX/SF9GGY^?_Y_F0R\F?S,O+GYGG\X?/B8V9S)F9C^>9RY7#
  465. XMR_//S_/____#@\'!PX'$DX>#F>=)(\,CQ)'!@1$(&(@0@>_G]_]O________
  466. XM_\?'Q\?'____ P''Q_______________Q\?'Q\?'__P Y__)Q_/&_\_S@>?_
  467. XM___GF>?SXYG9F?/#F>?GSX'S\Y3+PY_,P\.?@>?SC\^!A9G!F8/#YYG+E>?#
  468. XMY\_G\_____F9F9F9YYF)Y_.3YX")F9F9Q)WGF9F=R;FSG__Y_V__________
  469. XMQ\?'Q\?___^! <?'_______________'Q\?'Q\?_?@#G_\GCYY'_S_.E@?^!
  470. XM_^>9Y^?Y@/F9YYG!__^?__GGE)W)G\S+RY"9Y_.'SY6AF<^9D_'GF<N!P^?/
  471. XMS^?S____P9F?F8'GF9GG\X?GE)F9F9G/Q^>9RY7CF^?O__?____________'
  472. XMQ\?'Q____P,!Q\?______________\?'Q\?'Q__\ /__@/G)F__O]^?G____
  473. XMSYGGS_GY^9GGF?G__\^!\_^1@<R=S,_/F9GGDY//E;&9SYF9^>>9Y\G+YY_/
  474. XM\_/___^9F9^9G^>9F>?SA^>4F9F9F<_SYYG#E>/3S^?GY__S_________\?'
  475. XMQ\?'____@0''Q_______________Q\?'Q\?'_WX ___)N929_^?G_^?G_^?/
  476. XMF>>=F?F9F>>9\^?GY__G_]^9S)G)S,^9F>>3F<R=N9O/F9F9YYGGR9WGF<_S
  477. XM\____YF9F9F9YYF9Y_.3YY29F9F9SYGFF>?!R<>9Y^?G_^W_________Q\?'
  478. XMQ\?___\# <?'_______________'Q\?'Q\?__ #G_\F#M,3_]^___^?_YY_#
  479. XM@8'#\,/#Y\.'Y^?S_\_GS!B!PX. A\,(@<<(@!@=QX?#&(/#P^?)",.!S_GS
  480. XM____Q"/#Q,.!P0B!\QB!E C#@\&'@_'$Y\F(YX'GY^?_[?_________'Q\?'
  481. XMQ____X$!Q\?______________\?'Q\?'Q_]^ /___^?Y___[W___Y___G___
  482. XM____________Y_G_G__A_____________________^?____________#^</_
  483. XM@/_________Y___S______^?^?_________/__'GC__M_________\?'Q\?'
  484. XM____ P''Q_______________Q\?'Q\?'__P ____Y__________/________
  485. XM___________/____________________________T___________________
  486. XM__________G___/______Y_Y_________\___^?__^W_________Q\?'Q\?_
  487. XM__^! <?'_______________'Q\?'Q\?_?@#_________________________
  488. XM_______________________________________X____________________
  489. XE________P___A_______#_#_________!_______\___________
  490. Xend
  491. END_OF_FILE
  492. # end of 'font-16/Ucour7x14bI'
  493. fi
  494. if test -f 'font-16/Ucour7x14bu' -a "${1}" != "-c" ; then 
  495.   echo shar: Will not clobber existing file \"'font-16/Ucour7x14bu'\"
  496. else
  497. echo shar: Extracting \"'font-16/Ucour7x14bu'\" \(2627 characters\)
  498. sed "s/^X//" >'font-16/Ucour7x14bu' <<'END_OF_FILE'
  499. Xbegin 644 cour7x14bu.fnt
  500. XM%@@.!(8             _/XX.                                   
  501. XM                                                            
  502. XM                                                            
  503. XM        .#@X.#@   !^_C@X               X.#@X.#@ ?@     8    
  504. XM!"                                                          
  505. XM        /  \                                       .&'  X   
  506. XM       X.#@X.    /S^.#@              #@X.#@X. #\ !@V-A@P' P(
  507. XM$!@     !CP8/#P&/AY^/#P      #P<>'P^?']_/O=^/_-XX\<<?AS\/O_W
  508. XM]_?O]WXP8 P8 !@ X  .  \ X!@,X'@         "        !@8&#*0    
  509. XM     #@X.#@X    ?OXX.               .#@X.#@X 'X V/EDV#!@8
  510. XM6@     &9CAF9@XP,$9F9@  !@!@9C88-F8V,S-F9A@,9C!B0B8S)F9FF69B
  511. XM8D9B9C!@##P & !@  8 & !@& Q@&          8        &!@8?I      
  512. XM    .#@X.#@   #\_C@X               X.#@X.#@ _  8-G]B6S 8$ A^
  513. XM      QF6&8&'C!@!F9F   , #!F(CPR8#,P,&!F& QL,'9B9C-F9F 89F)J
  514. XM+&8&,# ,9@ , &  !@ 8 &   & 8         !@        8&!A,X       
  515. XM   X.#@X.    '[^.#@              #@X.#@X. !^ !@ -F V$  P##P8
  516. XM    #&88!@8V/'P,9F88&!@ & 9O-#9@,S0T8&88#'@P=G)F,V9F<!AF-&H\
  517. XM- PP, P    \?#X^/'X[;'A\9ABVW#S<.VX^?N[WYW?O?A 8" "0        
  518. XM #@X.#@X    _/XX.               .#@X.#@X /P &  V. PY # ,?A@ 
  519. XM   89A@,'&8F9@P\9A@8,'X,#</& S/#Q@?A@,<#!^>F8^9GP\&&8T:A@\
  520. XM&# 8#     9F9F9F&&9V& QL&']V9F9F.V(89F9B-D9,8  & )          
  521. XM.#@X.#@   !^_C@X               X.#@X.#@ ?@ 8 #8<&&X , Q:?@!^
  522. XM !AF&!@&?P9F&&8^  !@  88:V(V8#,T-&]F& QX,&I>9C!F; X89C1^/!@P
  523. XM,!@,    /F9@9GX89F88#'@8:V9F9F8P.!AF-&H<9!@0  @            X
  524. XM.#@X.    /S^.#@              #@X.#@X. #\    ?P8V9  0"!@8    
  525. XM,&88, 8&!F889@8  #!^# !N?C-B,S P9F88;&PP:DYF,&9F!AAFT&& P
  526. XM# P   !F9F!F8!AF9A@,>!AK9F9F9C ,&&8\:APL,!@8&  ,         #@X
  527. XM.#@X    ?OXX.               .#@X.#@X 'X    V1FMF !@8 !@8 !@P
  528. XM9AAB9@9F9AAF#!@8&  8 "!F,V8V,S!F9AAL9C-B1F0P9F9F&&88-F(89C ,
  529. XM#    &9F9F9F&&9F& QL&&MF9F9F,&899A@^-CAF&!@8 !(         .#@X
  530. XM.#@   #\_C@X               X.#@X.#@ _  8 #9\2SL "!   !@ && \
  531. XM?GX\#SP\&#QX&!@, # 8,^=^/'Q_>#SW?CCW?^?B.'@\YWP\/!@V]SQ^, 8,
  532. XM    .]P\.SQ^/O=^#.=^:_<\?#YX? X[ W&'X8&!@ $@       ']_?W]_
  533. XM?W]_?W__?W]_?W]_?W]_?W]_?W]_?W]_?W]_ ']_?W]_?W]_?W]_?W]_?W]_
  534. XM?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_
  535. XM?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_ #@X.#@X
  536. XM    _/XX.               .#@X.#@X /P     &          P        
  537. XM           P                            +                   
  538. XM          8   P      & &         #   !@  !(         .#@X.#@ 
  539. XM  !^_C@X               X.#@X.#@ ?@                          
  540. XM                                       '                    
  541. XE        /   >       \ \         ^       #           
  542. Xend
  543. END_OF_FILE
  544. # end of 'font-16/Ucour7x14bu'
  545. fi
  546. if test -f 'font-16/Ugal8x14b' -a "${1}" != "-c" ; then 
  547.   echo shar: Will not clobber existing file \"'font-16/Ugal8x14b'\"
  548. else
  549. echo shar: Extracting \"'font-16/Ugal8x14b'\" \(2625 characters\)
  550. sed "s/^X//" >'font-16/Ugal8x14b' <<'END_OF_FILE'
  551. Xbegin 644 gal8x14b.fnt
  552. XM%@@.!(8             _/XX.                                   
  553. XM                                                            
  554. XM                                                    #AAP    
  555. XM        .#@X.#@   !^_C@X               X.#@X.#@ ?@ 8;!L8=C@,
  556. XM##        8                " $ \&                           
  557. XM        /F!\   P                                   8&!@ \   
  558. XM       X.#@X.    /S^.#@              #@X.#@X. #\ !AL&SR6; P8
  559. XM&!@     !CP8/#P&?CQ^/#P   8 8&8\$'@\>'Y^/&9^/F)@QF8\?#Q\/'YF
  560. XM9L-F9GXP8 P8 #  8  &  X 8!@,8#P         &        !@8&#+8    
  561. XM     #@X.#@X    ?OXX.               .#@X.#@X 'X &&P;6IQL&!@8
  562. XM6@     ,9CAF9@Y@9D9F9@  #  P8F8X;&9L8&!F9A@,9F#&9F9F9F9F&&9F
  563. XMPV9F!C P##P & !@  8 & !@  !@#          8        &!@8?M@     
  564. XM    .#@X.#@   #\_C@X               X.#@X.#@ _  8;']:[#@P, Q^
  565. XM&     QF> 9&'F!@!F9F&!@8?A@&;CAL8F9@8&)F& QL8.YV9F9F9F 89F;;
  566. XM9F8&,# ,9@ ,/&P\-CP8-FQX/&8,[%P\;#9L/'YF9L9F9GX8&!A,\       
  567. XM   X.#@X.    '[^.#@              #@X.#@X. !^ !@ -E@8,  P##P8
  568. XM    &&X8!@8V?& $9F88&#!^# QJ;&Q@9F!@8&88#'A@[G9F9F9F,!AF)%H\
  569. XM/ PP& Q"  !F=F9N9GYN=A@,; S^=F9V;G9F&&9FQF9F!A@8& #8        
  570. XM #@X.#@X    _/XX.               .#@X.#@X /P &  V/!A[ # ,?GX 
  571. XM?@ 8?A@,'&8&? P\/@  8  &&&IL?F!F?'QN?A@,>&#^?F9\9GP,&&8\?A@8
  572. XM&# 8#     9F8&9F&&9F& QX#-9F9F9F8& 89F;6/#8,<  . -@         
  573. XM.#@X.#@   !^_C@X               X.#@X.#@ ?@ 8 /\:-]X , Q:?@!^
  574. XM #!V&!@&Q@9F#&8&   P  P8;L9F8&9@8&9F& QL8-9N9F!F; 889CQ^/!@P
  575. XM, P,    /F9@9GX89F88#'@,UF9F9F9@/!AF/-88-A@8&!@            X
  576. XM.#@X.    /S^.#@              #@X.#@X. #\    ;%HYS  P#!@8    
  577. XM,&88,$;_9F889@8  !A^& !@_F9B9F!@9F88;&Q@UFYF8&9F9AAF&&9F&& P
  578. XM# P   !F9F!F8!AF9A@,; S69F9F9F &&&8\UCP<,!@8&  .         #@X
  579. XM.#@X    ?OXX.               .#@X.#@X 'X & !L6FG< !@8 !@8 !A@
  580. XM9AAB9@9F9AAF9A@8#'XP&#;&9F9L8&!F9AAL9F#&9F9@9F9F&&88)&888# &
  581. XM#    &9V9FYF&&YF& QF#-9F9G9N8&8:;AC^9AQ@&!@8 !L         .#@X
  582. XM.#@   #\_C@X               X.#@X.#@ _  8 &P\;G< &!@  !@ && \
  583. XM?GX\!CP\&#P\&!@& & 8',9\/'A^8#IF?CAF?L9F/& \9CP8/!@D9AA^, 8,
  584. XM    /FP\-CP8-F88#&8,UF8\;#9@/ PV&&QF#'X8&!@ &P         X.#@X
  585. XM.    '[^.#@              #@X.#@X. !^     !@    ,,   "       
  586. XM            " ( 0                        !@            ^ 'P 
  587. XM_@         &   ,      !@!@         ( !@8&  ;         #@X.#@X
  588. XM    _/XX.               .#@X.#@X /P                P        
  589. XM           P                            #@                #^
  590. XM         &8  &P      & &         '@ #AAP !L         .#@X.#@ 
  591. XM  !^_C@X               X.#@X.#@ ?@                          
  592. XM                                                            
  593. XE        /   .       8 8         ,       #@          
  594. Xend
  595. END_OF_FILE
  596. # end of 'font-16/Ugal8x14b'
  597. fi
  598. if test -f 'font-16/Ugal8x14bI' -a "${1}" != "-c" ; then 
  599.   echo shar: Will not clobber existing file \"'font-16/Ugal8x14bI'\"
  600. else
  601. echo shar: Extracting \"'font-16/Ugal8x14bI'\" \(2626 characters\)
  602. sed "s/^X//" >'font-16/Ugal8x14bI' <<'END_OF_FILE'
  603. Xbegin 644 gal8x14bI.fnt
  604. XM%@@.!(8 ____________ P''Q________________________P  ________
  605. XM____________________________________________________________
  606. XM____________________________________________________\>>/____
  607. XM________Q\?'Q\?___^! <?'_______________'Q\?'Q\?_?@#GD^3GB<?S
  608. XM\\________G________________]_[_#Y___________________________
  609. XM________P9^#___/___________________________________GY^?_#___
  610. XM_______'Q\?'Q____P,!Q\?______________\?'Q\?'Q__\ .>3Y,-ID_/G
  611. XMY^?_____^</GP\/Y@<.!P\/___G_GYG#[X?#AX&!PYF!P9V?.9G#@\.#PX&9
  612. XMF3R9F8'/G_/G_\__G__Y__'_G^?SG\/_________Y________^?GY\TG____
  613. XM_____\?'Q\?'____@0''Q_______________Q\?'Q\?'_WX YY/DI6.3Y^?G
  614. XMI?_____SF<>9F?&?F;F9F?__\__/G9G'DYF3GY^9F>?SF9\YF9F9F9F9YYF9
  615. XM/)F9^<_/\\/_Y_^?__G_Y_^?__^?\__________G________Y^?G@2?_____
  616. XM____Q\?'Q\?___\# <?'_______________'Q\?'Q\?__ #GDX"E$\?/S_.!
  617. XMY_____.9A_FYX9^?^9F9Y^?G@>?YD<>3G9F?GYV9Y_.3GQ&)F9F9F9_GF9DD
  618. XMF9GYS\_SF?_SPY/#R</GR9.'PYGS$Z/#D\F3PX&9F3F9F8'GY^>S#_______
  619. XM___'Q\?'Q____X$!Q\?______________\?'Q\?'Q_]^ .?_R:?GS__/\\/G
  620. XM____YY'G^?G)@Y_[F9GGY\^!\_.5DY.?F9^?GYGG\X>?$8F9F9F9S^>9VZ7#
  621. XMP_//Y_.]__^9B9F1F8&1B>?SD_,!B9F)D8F9YYF9.9F9^>?GY_\G________
  622. XM_\?'Q\?'____ P''Q_______________Q\?'Q\?'__P Y__)P^>$_\_S@8'_
  623. XM@?_G@>?SXYGY@_/#P?__G__YYY63@9^9@X.1@>?SAY\!@9F#F8/SYYG#@>?G
  624. XMY\_G\_____F9GYF9YYF9Y_.'\RF9F9F9GY_GF9DIP\GSC__Q_R?_________
  625. XMQ\?'Q\?___^! <?'_______________'Q\?'Q\?_?@#G_P#ER"'_S_.E@?^!
  626. XM_\^)Y^?Y.?F9\YGY___/__/GD3F9GYF?GYF9Y_.3GRF1F9^9D_GGF<.!P^?/
  627. XMS_/S____P9F?F8'GF9GG\X?S*9F9F9F?P^>9PRGGR>?GY^?____________'
  628. XMQ\?'Q____P,!Q\?______________\?'Q\?'Q__\ /__DZ7&,__/\^?G____
  629. XMSYGGS[D F9GGF?G__^>!Y_^? 9F=F9^?F9GGDY.?*9&9GYF9F>>9YYF9YY_/
  630. XM\_/___^9F9^9G^>9F>?SD_,IF9F9F9_YYYG#*</CS^?GY__Q_________\?'
  631. XMQ\?'____@0''Q_______________Q\?'Q\?'_WX Y_^3I98C_^?G_^?G_^>?
  632. XMF>>=F?F9F>>9F>?G\X'/Y\DYF9F3GY^9F>>3F9\YF9F?F9F9YYGGVYGGG\_Y
  633. XM\____YF)F9&9YY&9Y_.9\RF9F8F1GYGED><!F>.?Y^?G_^3_________Q\?'
  634. XMQ\?___\# <?'_______________'Q\?'Q\?__ #G_Y/#D8C_Y^?__^?_YY_#
  635. XM@8'#^</#Y\/#Y^?Y_Y_GXSF#PX>!G\69@<>9@3F9PY_#F</GP^?;F>>!S_GS
  636. XM____P9/#R</GR9GG\YGS*9G#D\F?P_/)YY.9\X'GY^?_Y/_________'Q\?'
  637. XMQ____X$!Q\?______________\?'Q\?'Q_]^ /___^?____SS___]_______
  638. XM____________]_W_O________________________^?____________!_X/_
  639. XM ?_________Y___S______^?^?_________W_^?GY__D_________\?'Q\?'
  640. XM____ P''Q_______________Q\?'Q\?'__P _______________/________
  641. XM___________/____________________________\?________________\!
  642. XM_________YG__Y/______Y_Y_________X?_\>>/_^3_________Q\?'Q\?_
  643. XM__^! <?'_______________'Q\?'Q\?_?@#_________________________
  644. XM____________________________________________________________
  645. XE________P___Q_______G_G_________S_______\?__________
  646. Xend
  647. END_OF_FILE
  648. # end of 'font-16/Ugal8x14bI'
  649. fi
  650. if test -f 'font-16/Ugal8x14bu' -a "${1}" != "-c" ; then 
  651.   echo shar: Will not clobber existing file \"'font-16/Ugal8x14bu'\"
  652. else
  653. echo shar: Extracting \"'font-16/Ugal8x14bu'\" \(2626 characters\)
  654. sed "s/^X//" >'font-16/Ugal8x14bu' <<'END_OF_FILE'
  655. Xbegin 644 gal8x14bu.fnt
  656. XM%@@.!(8             _/XX.                                   
  657. XM                                                            
  658. XM                                                    #AAP    
  659. XM        .#@X.#@   !^_C@X               X.#@X.#@ ?@ 8;!L8=C@,
  660. XM##        8                " $ \&                           
  661. XM        /F!\   P                                   8&!@ \   
  662. XM       X.#@X.    /S^.#@              #@X.#@X. #\ !AL&SR6; P8
  663. XM&!@     !CP8/#P&?CQ^/#P   8 8&8\$'@\>'Y^/&9^/F)@QF8\?#Q\/'YF
  664. XM9L-F9GXP8 P8 #  8  &  X 8!@,8#P         &        !@8&#+8    
  665. XM     #@X.#@X    ?OXX.               .#@X.#@X 'X &&P;6IQL&!@8
  666. XM6@     ,9CAF9@Y@9D9F9@  #  P8F8X;&9L8&!F9A@,9F#&9F9F9F9F&&9F
  667. XMPV9F!C P##P & !@  8 & !@  !@#          8        &!@8?M@     
  668. XM    .#@X.#@   #\_C@X               X.#@X.#@ _  8;']:[#@P, Q^
  669. XM&     QF> 9&'F!@!F9F&!@8?A@&;CAL8F9@8&)F& QL8.YV9F9F9F 89F;;
  670. XM9F8&,# ,9@ ,/&P\-CP8-FQX/&8,[%P\;#9L/'YF9L9F9GX8&!A,\       
  671. XM   X.#@X.    '[^.#@              #@X.#@X. !^ !@ -E@8,  P##P8
  672. XM    &&X8!@8V?& $9F88&#!^# QJ;&Q@9F!@8&88#'A@[G9F9F9F,!AF)%H\
  673. XM/ PP& Q"  !F=F9N9GYN=A@,; S^=F9V;G9F&&9FQF9F!A@8& #8        
  674. XM #@X.#@X    _/XX.               .#@X.#@X /P &  V/!A[ # ,?GX 
  675. XM?@ 8?A@,'&8&? P\/@  8  &&&IL?F!F?'QN?A@,>&#^?F9\9GP,&&8\?A@8
  676. XM&# 8#     9F8&9F&&9F& QX#-9F9F9F8& 89F;6/#8,<  . -@         
  677. XM.#@X.#@   !^_C@X               X.#@X.#@ ?@ 8 /\:-]X , Q:?@!^
  678. XM #!V&!@&Q@9F#&8&   P  P8;L9F8&9@8&9F& QL8-9N9F!F; 889CQ^/!@P
  679. XM, P,    /F9@9GX89F88#'@,UF9F9F9@/!AF/-88-A@8&!@            X
  680. XM.#@X.    /S^.#@              #@X.#@X. #\    ;%HYS  P#!@8    
  681. XM,&88,$;_9F889@8  !A^& !@_F9B9F!@9F88;&Q@UFYF8&9F9AAF&&9F&& P
  682. XM# P   !F9F!F8!AF9A@,; S69F9F9F &&&8\UCP<,!@8&  .         #@X
  683. XM.#@X    ?OXX.               .#@X.#@X 'X & !L6FG< !@8 !@8 !A@
  684. XM9AAB9@9F9AAF9A@8#'XP&#;&9F9L8&!F9AAL9F#&9F9@9F9F&&88)&888# &
  685. XM#    &9V9FYF&&YF& QF#-9F9G9N8&8:;AC^9AQ@&!@8 !L         .#@X
  686. XM.#@   #\_C@X               X.#@X.#@ _  8 &P\;G< &!@  !@ && \
  687. XM?GX\!CP\&#P\&!@& & 8',9\/'A^8#IF?CAF?L9F/& \9CP8/!@D9AA^, 8,
  688. XM    /FP\-CP8-F88#&8,UF8\;#9@/ PV&&QF#'X8&!@ &P       /[^_O[^
  689. XM_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^ /[^_O[^_O[^_O[^_O[^_O[^
  690. XM_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^
  691. XM_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[__O[^_O[^_O[^_O[^
  692. XM_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_OX _O[^_O[^_O[^_O[^_O[^_O[^
  693. XM_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^
  694. XM_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O_^_O[^_OX .#@X.#@ 
  695. XM  !^_C@X               X.#@X.#@ ?@                          
  696. XM                                                            
  697. XE        /   .       8 8         ,       #@          
  698. Xend
  699. END_OF_FILE
  700. # end of 'font-16/Ugal8x14bu'
  701. fi
  702. if test -f 'font-32/Ucour7x14b' -a "${1}" != "-c" ; then 
  703.   echo shar: Will not clobber existing file \"'font-32/Ucour7x14b'\"
  704. else
  705. echo shar: Extracting \"'font-32/Ucour7x14b'\" \(2664 characters\)
  706. sed "s/^X//" >'font-32/Ucour7x14b' <<'END_OF_FILE'
  707. Xbegin 644 cour7x14b.fnt
  708. XM& @.!(8             _/XX.                                   
  709. XM                                                            
  710. XM                                                            
  711. XM           X.#@X.    '[^.#@              #@X.#@X. !^     !@ 
  712. XM   $(                                                       
  713. XM           \ #P                                       X8< #@
  714. XM            .#@X.#@   #\_C@X               X.#@X.#@ _  8-C88
  715. XM,!P,"! 8      8\&#P\!CX>?CP\       \''A\/GQ_?S[W?C_S>./'''X<
  716. XM_#[_]_?W[_=^,& ,&  8 .  #@ / . 8#.!X          @        8&!@R
  717. XMD            #@X.#@X    ?OXX.               .#@X.#@X 'X V
  718. XM/EDV#!@86@     &9CAF9@XP,$9F9@  !@!@9C88-F8V,S-F9A@,9C!B0B8S
  719. XM)F9FF69B8D9B9C!@##P & !@  8 & !@& Q@&          8        &!@8
  720. XM?I             X.#@X.    /S^.#@              #@X.#@X. #\ !@V
  721. XM?V);,!@0"'X     #&989@8>,& &9F8   P ,&8B/#)@,S P8&88#&PP=F)F
  722. XM,V9F8!AF8FHL9@8P, QF  P 8  & !@ 8   8!@         &        !@8
  723. XM&$S@            .#@X.#@   !^_C@X               X.#@X.#@ ?@ 8
  724. XM #9@-A  , P\&     QF& 8&-CQ\#&9F&!@8 !@&;S0V8#,T-&!F& QX,'9R
  725. XM9C-F9G 89C1J/#0,,# ,    /'P^/CQ^.VQX?&88MMP\W#MN/G[N]^=W[WX0
  726. XM& @ D            #@X.#@X    _/XX.               .#@X.#@X /P 
  727. XM&  V. PY # ,?A@    89A@,'&8F9@P\9A@8,'X,#</& S/#Q@?A@,<#!^
  728. XM>F8^9GP\&&8T:A@\&# 8#     9F9F9F&&9V& QL&']V9F9F.V(89F9B-D9,
  729. XM8  & )             X.#@X.    '[^.#@              #@X.#@X. !^
  730. XM !@ -AP8;@ P#%I^ 'X &&88& 9_!F889CX  &  !AAK8C9@,S0T;V88#'@P
  731. XM:EYF,&9L#AAF-'X\&# P& P    ^9F!F?AAF9A@,>!AK9F9F9C X&&8T:AQD
  732. XM&!  "               .#@X.#@   #\_C@X               X.#@X.#@ 
  733. XM_    '\&-F0 $ @8&    #!F&# &!@9F&&8&   P?@P ;GXS8C,P,&9F&&QL
  734. XM,&I.9C!F9@889A@V-!A@, P,    9F9@9F 89F88#'@8:V9F9F8P#!AF/&H<
  735. XM+# 8&!@ #            #@X.#@X    ?OXX.               .#@X.#@X
  736. XM 'X    V1FMF !@8 !@8 !@P9AAB9@9F9AAF#!@8&  8 "!F,V8V,S!F9AAL
  737. XM9C-B1F0P9F9F&&88-F(89C ,#    &9F9F9F&&9F& QL&&MF9F9F,&899A@^
  738. XM-CAF&!@8 !(            X.#@X.    /S^.#@              #@X.#@X
  739. XM. #\ !@ -GQ+.P ($   &  88#Q^?CP//#P8/'@8& P ,!@SYWX\?']X//=^
  740. XM./=_Y^(X>#SG?#P\&#;W/'XP!@P    [W#P[/'X^]WX,YWYK]SQ\/GA\#CL8
  741. XM-G<8?A@8&  2            .#@X.#@   !^_C@X               X.#@X
  742. XM.#@ ?@     8!@  !"   !@  &               !@& &  '@          
  743. XM           8            / 8\ '\         !@  #       8 8     
  744. XM    ,  .&'  $@           #@X.#@X    _/XX.               .#@X
  745. XM.#@X /P     &          P                   P                
  746. XM            +                             8   P      & &    
  747. XM     #   !@  !(            X.#@X.    '[^.#@              #@X
  748. XM.#@X. !^                                                    
  749. XM              <                            \  !X      #P#P  
  750. X4      #X       ,            
  751. Xend
  752. END_OF_FILE
  753. # end of 'font-32/Ucour7x14b'
  754. fi
  755. if test -f 'font-32/Ucour7x14bI' -a "${1}" != "-c" ; then 
  756.   echo shar: Will not clobber existing file \"'font-32/Ucour7x14bI'\"
  757. else
  758. echo shar: Extracting \"'font-32/Ucour7x14bI'\" \(2665 characters\)
  759. sed "s/^X//" >'font-32/Ucour7x14bI' <<'END_OF_FILE'
  760. Xbegin 644 cour7x14bI.fnt
  761. XM& @.!(8 ____________ P''Q________________________P  ________
  762. XM____________________________________________________________
  763. XM____________________________________________________________
  764. XM______\  /_'Q\?'Q____X$!Q\?______________\?'Q\?'Q_]^ /___^?_
  765. XM___[W_______________________________________________________
  766. XM___________#_\/_______________________________________'GC_\?
  767. XM________  #_Q\?'Q\?___\# <?'_______________'Q\?'Q\?__ #GR<GG
  768. XMS^/S]^_G______G#Y\/#^<'A@</#_______#XX>#P8. @,$(@< ,AQPXXX'C
  769. XM \$ " @($ B!SY_SY__G_Q__\?_P_Q_G\Q^'__________?________GY^?-
  770. XM;________P  _\?'Q\?'____@0''Q_______________Q\?'Q\?'_WX Y\G)
  771. XMP:;)\^?GI?_____YF<>9F?'/S[F9F?__^?^?F<GGR9G)S,R9F>?SF<^=O=G,
  772. XMV9F99IF=G;F=F<^?\\/_Y_^?__G_Y_^?Y_.?Y__________G________Y^?G
  773. XM@6________\  /_'Q\?'Q____P,!Q\?______________\?'Q\?'Q__\ .?)
  774. XM@)VDS^?O]X'_____\YFGF?GASY_YF9G___/_SYG=P\V?S,_/GYGG\Y//B9V9
  775. XMS)F9G^>9G973F?G/S_.9__/_G__Y_^?_G___G^?_________Y________^?G
  776. XMY[,?________  #_Q\?'Q\?___^! <?'_______________'Q\?'Q\?_?@#G
  777. XM_\F?R>__S_/#Y_____.9Y_GYR<.#\YF9Y^?G_^?YD,O)G\S+RY^9Y_.'SXF-
  778. XMF<R9F8_GF<N5P\OSS\_S____PX/!P<.!Q).'@YGG22/#(\21P8$1"!B($('O
  779. XMY_?_;________P  _\?'Q\?'____ P''Q_______________Q\?'Q\?'__P 
  780. XMY__)Q_/&_\_S@>?____GF>?SXYG9F?/#F>?GSX'S\Y3+PY_,P\.?@>?SC\^!
  781. XMA9G!F8/#YYG+E>?#Y\_G\_____F9F9F9YYF)Y_.3YX")F9F9Q)WGF9F=R;FS
  782. XMG__Y_V________\  /_'Q\?'Q____X$!Q\?______________\?'Q\?'Q_]^
  783. XM .?_R>/GD?_/\Z6!_X'_YYGGY_F ^9GGF<'__Y__^>>4G<F?S,O+D)GG\X?/
  784. XME:&9SYF3\>>9RX'#Y\_/Y_/____!F9^9@>>9F>?SA^>4F9F9F<_'YYG+E>.;
  785. XMY^__]___________  #_Q\?'Q\?___\# <?'_______________'Q\?'Q\?_
  786. XM_ #__X#YR9O_[_?GY____\^9Y\_Y^?F9YYGY___/@?/_D8',G<S/SYF9YY.3
  787. XMSY6QF<^9F?GGF>?)R^>?S_/S____F9F?F9_GF9GG\X?GE)F9F9G/\^>9PY7C
  788. XMT\_GY^?_\________P  _\?'Q\?'____@0''Q_______________Q\?'Q\?'
  789. XM_WX ___)N929_^?G_^?G_^?/F>>=F?F9F>>9\^?GY__G_]^9S)G)S,^9F>>3
  790. XMF<R=N9O/F9F9YYGGR9WGF<_S\____YF9F9F9YYF9Y_.3YY29F9F9SYGFF>?!
  791. XMR<>9Y^?G_^W_______\  /_'Q\?'Q____P,!Q\?______________\?'Q\?'
  792. XMQ__\ .?_R8.TQ/_W[___Y__GG\.!@</PP\/GPX?GY_/_S^?,&('#@X"'PPB!
  793. XMQPB &!W'A\,8@\/#Y\D(PX'/^?/____$(\/$PX'!"('S&(&4",.#P8>#\<3G
  794. XMR8CG@>?GY__M________  #_Q\?'Q\?___^! <?'_______________'Q\?'
  795. XMQ\?_?@#____G^?__^]___^?__Y_______________^?Y_Y__X?__________
  796. XM___________G____________P_G#_X#_________^?__\_______G_G_____
  797. XM____S__QYX__[?_______P  _\?'Q\?'____ P''Q_______________Q\?'
  798. XMQ\?'__P ____Y__________/___________________/________________
  799. XM____________T_____________________________G___/______Y_Y____
  800. XM_____\___^?__^W_______\  /_'Q\?'Q____X$!Q\?______________\?'
  801. XMQ\?'Q_]^ /__________________________________________________
  802. XM______________C____________________________#__^'______\/\/__
  803. X4______\'_______S________  #_
  804. Xend
  805. END_OF_FILE
  806. # end of 'font-32/Ucour7x14bI'
  807. fi
  808. if test -f 'font-32/Ucour7x14bu' -a "${1}" != "-c" ; then 
  809.   echo shar: Will not clobber existing file \"'font-32/Ucour7x14bu'\"
  810. else
  811. echo shar: Extracting \"'font-32/Ucour7x14bu'\" \(2665 characters\)
  812. sed "s/^X//" >'font-32/Ucour7x14bu' <<'END_OF_FILE'
  813. Xbegin 644 cour7x14bu.fnt
  814. XM& @.!(8             _/XX.                                   
  815. XM                                                            
  816. XM                                                            
  817. XM           X.#@X.    '[^.#@              #@X.#@X. !^     !@ 
  818. XM   $(                                                       
  819. XM           \ #P                                       X8< #@
  820. XM            .#@X.#@   #\_C@X               X.#@X.#@ _  8-C88
  821. XM,!P,"! 8      8\&#P\!CX>?CP\       \''A\/GQ_?S[W?C_S>./'''X<
  822. XM_#[_]_?W[_=^,& ,&  8 .  #@ / . 8#.!X          @        8&!@R
  823. XMD            #@X.#@X    ?OXX.               .#@X.#@X 'X V
  824. XM/EDV#!@86@     &9CAF9@XP,$9F9@  !@!@9C88-F8V,S-F9A@,9C!B0B8S
  825. XM)F9FF69B8D9B9C!@##P & !@  8 & !@& Q@&          8        &!@8
  826. XM?I             X.#@X.    /S^.#@              #@X.#@X. #\ !@V
  827. XM?V);,!@0"'X     #&989@8>,& &9F8   P ,&8B/#)@,S P8&88#&PP=F)F
  828. XM,V9F8!AF8FHL9@8P, QF  P 8  & !@ 8   8!@         &        !@8
  829. XM&$S@            .#@X.#@   !^_C@X               X.#@X.#@ ?@ 8
  830. XM #9@-A  , P\&     QF& 8&-CQ\#&9F&!@8 !@&;S0V8#,T-&!F& QX,'9R
  831. XM9C-F9G 89C1J/#0,,# ,    /'P^/CQ^.VQX?&88MMP\W#MN/G[N]^=W[WX0
  832. XM& @ D            #@X.#@X    _/XX.               .#@X.#@X /P 
  833. XM&  V. PY # ,?A@    89A@,'&8F9@P\9A@8,'X,#</& S/#Q@?A@,<#!^
  834. XM>F8^9GP\&&8T:A@\&# 8#     9F9F9F&&9V& QL&']V9F9F.V(89F9B-D9,
  835. XM8  & )             X.#@X.    '[^.#@              #@X.#@X. !^
  836. XM !@ -AP8;@ P#%I^ 'X &&88& 9_!F889CX  &  !AAK8C9@,S0T;V88#'@P
  837. XM:EYF,&9L#AAF-'X\&# P& P    ^9F!F?AAF9A@,>!AK9F9F9C X&&8T:AQD
  838. XM&!  "               .#@X.#@   #\_C@X               X.#@X.#@ 
  839. XM_    '\&-F0 $ @8&    #!F&# &!@9F&&8&   P?@P ;GXS8C,P,&9F&&QL
  840. XM,&I.9C!F9@889A@V-!A@, P,    9F9@9F 89F88#'@8:V9F9F8P#!AF/&H<
  841. XM+# 8&!@ #            #@X.#@X    ?OXX.               .#@X.#@X
  842. XM 'X    V1FMF !@8 !@8 !@P9AAB9@9F9AAF#!@8&  8 "!F,V8V,S!F9AAL
  843. XM9C-B1F0P9F9F&&88-F(89C ,#    &9F9F9F&&9F& QL&&MF9F9F,&899A@^
  844. XM-CAF&!@8 !(            X.#@X.    /S^.#@              #@X.#@X
  845. XM. #\ !@ -GQ+.P ($   &  88#Q^?CP//#P8/'@8& P ,!@SYWX\?']X//=^
  846. XM./=_Y^(X>#SG?#P\&#;W/'XP!@P    [W#P[/'X^]WX,YWYK]SQ\/GA\#CL8
  847. XM-G<8?A@8&  2          !_?W]_?W]_?W]__W]_?W]_?W]_?W]_?W]_?W]_
  848. XM?W]_?P!_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_
  849. XM?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_?W]_
  850. XM?W]_?W]_?W]_?W]_?W]_?P   #@X.#@X    _/XX.               .#@X
  851. XM.#@X /P     &          P                   P                
  852. XM            +                             8   P      & &    
  853. XM     #   !@  !(            X.#@X.    '[^.#@              #@X
  854. XM.#@X. !^                                                    
  855. XM              <                            \  !X      #P#P  
  856. X4      #X       ,            
  857. Xend
  858. END_OF_FILE
  859. # end of 'font-32/Ucour7x14bu'
  860. fi
  861. if test -f 'font-32/Ugal8x14b' -a "${1}" != "-c" ; then 
  862.   echo shar: Will not clobber existing file \"'font-32/Ugal8x14b'\"
  863. else
  864. echo shar: Extracting \"'font-32/Ugal8x14b'\" \(2663 characters\)
  865. sed "s/^X//" >'font-32/Ugal8x14b' <<'END_OF_FILE'
  866. Xbegin 644 gal8x14b.fnt
  867. XM& @.!(8             _/XX.                                   
  868. XM                                                            
  869. XM                                                    #AAP    
  870. XM           X.#@X.    '[^.#@              #@X.#@X. !^ !AL&QAV
  871. XM. P,,       !@                ( 0#P8                        
  872. XM           ^8'P  #                                   !@8& #P
  873. XM            .#@X.#@   #\_C@X               X.#@X.#@ _  8;!L\
  874. XMEFP,&!@8      8\&#P\!GX\?CP\   & &!F/!!X/'A^?CQF?CYB8,9F/'P\
  875. XM?#Q^9F;#9F9^,& ,&  P &  !@ . & 8#& \         !@        8&!@R
  876. XMV            #@X.#@X    ?OXX.               .#@X.#@X 'X &&P;
  877. XM6IQL&!@86@     ,9CAF9@Y@9D9F9@  #  P8F8X;&9L8&!F9A@,9F#&9F9F
  878. XM9F9F&&9FPV9F!C P##P & !@  8 & !@  !@#          8        &!@8
  879. XM?M@            X.#@X.    /S^.#@              #@X.#@X. #\ !AL
  880. XM?UKL.# P#'X8    #&9X!D8>8& &9F88&!A^& 9N.&QB9F!@8F88#&Q@[G9F
  881. XM9F9F8!AF9MMF9@8P, QF  P\;#PV/!@V;'@\9@SL7#QL-FP\?F9FQF9F?A@8
  882. XM&$SP            .#@X.#@   !^_C@X               X.#@X.#@ ?@ 8
  883. XM #98&#  , P\&    !AN& 8&-GQ@!&9F&!@P?@P,:FQL8&9@8&!F& QX8.YV
  884. XM9F9F9C 89B1:/#P,,!@,0@  9G9F;F9^;G88#&P,_G9F=FYV9AAF9L9F9@88
  885. XM&!@ V            #@X.#@X    _/XX.               .#@X.#@X /P 
  886. XM&  V/!A[ # ,?GX ?@ 8?A@,'&8&? P\/@  8  &&&IL?F!F?'QN?A@,>&#^
  887. XM?F9\9GP,&&8\?A@8&# 8#     9F8&9F&&9F& QX#-9F9F9F8& 89F;6/#8,
  888. XM<  . -@            X.#@X.    '[^.#@              #@X.#@X. !^
  889. XM !@ _QHWW@ P#%I^ 'X ,'88& ;&!F8,9@8  #  #!ANQF9@9F!@9F88#&Q@
  890. XMUFYF8&9L!AAF/'X\&# P# P    ^9F!F?AAF9A@,> S69F9F9F \&&8\UA@V
  891. XM&!@8&               .#@X.#@   #\_C@X               X.#@X.#@ 
  892. XM_    &Q:.<P , P8&    #!F&#!&_V9F&&8&   8?A@ 8/YF8F9@8&9F&&QL
  893. XM8-9N9F!F9F889AAF9AA@, P,    9F9@9F 89F88#&P,UF9F9F9@!AAF/-8\
  894. XM'# 8&!@ #@           #@X.#@X    ?OXX.               .#@X.#@X
  895. XM 'X & !L6FG< !@8 !@8 !A@9AAB9@9F9AAF9A@8#'XP&#;&9F9L8&!F9AAL
  896. XM9F#&9F9@9F9F&&88)&888# &#    &9V9FYF&&YF& QF#-9F9G9N8&8:;AC^
  897. XM9AQ@&!@8 !L            X.#@X.    /S^.#@              #@X.#@X
  898. XM. #\ !@ ;#QN=P 8&   &  88#Q^?CP&/#P8/#P8& 8 8!@<QGP\>'Y@.F9^
  899. XM.&9^QF8\8#QF/!@\&"1F&'XP!@P    ^;#PV/!@V9A@,9@S69CQL-F \##88
  900. XM;&8,?A@8&  ;            .#@X.#@   !^_C@X               X.#@X
  901. XM.#@ ?@     8    ##    @                   @" $              
  902. XM           8            /@!\ /X         !@  #       8 8     
  903. XM    "  8&!@ &P           #@X.#@X    _/XX.               .#@X
  904. XM.#@X /P                P                   P                
  905. XM            #@                #^         &8  &P      & &    
  906. XM     '@ #AAP !L            X.#@X.    '[^.#@              #@X
  907. XM.#@X. !^                                                    
  908. XM                                           \   X      !@!@  
  909. X4       P       .            
  910. Xend
  911. END_OF_FILE
  912. # end of 'font-32/Ugal8x14b'
  913. fi
  914. if test -f 'font-32/Ugal8x14bI' -a "${1}" != "-c" ; then 
  915.   echo shar: Will not clobber existing file \"'font-32/Ugal8x14bI'\"
  916. else
  917. echo shar: Extracting \"'font-32/Ugal8x14bI'\" \(2664 characters\)
  918. sed "s/^X//" >'font-32/Ugal8x14bI' <<'END_OF_FILE'
  919. Xbegin 644 gal8x14bI.fnt
  920. XM& @.!(8 ____________ P''Q________________________P  ________
  921. XM____________________________________________________________
  922. XM____________________________________________________\>>/____
  923. XM______\  /_'Q\?'Q____X$!Q\?______________\?'Q\?'Q_]^ .>3Y.>)
  924. XMQ_/SS_______^?________________W_O\/G________________________
  925. XM___________!GX/__\___________________________________^?GY_\/
  926. XM________  #_Q\?'Q\?___\# <?'_______________'Q\?'Q\?__ #GD^3#
  927. XM:9/SY^?G______G#Y\/#^8'#@</#___Y_Y^9P^^'PX>!@<.9@<&=GSF9PX/#
  928. XM@\.!F9D\F9F!SY_SY__/_Y__^?_Q_Y_G\Y_#_________^?________GY^?-
  929. XM)________P  _\?'Q\?'____@0''Q_______________Q\?'Q\?'_WX YY/D
  930. XMI6.3Y^?GI?_____SF<>9F?&?F;F9F?__\__/G9G'DYF3GY^9F>?SF9\YF9F9
  931. XMF9F9YYF9/)F9^<_/\\/_Y_^?__G_Y_^?__^?\__________G________Y^?G
  932. XM@2?_______\  /_'Q\?'Q____P,!Q\?______________\?'Q\?'Q__\ .>3
  933. XM@*43Q\_/\X'G____\YF'^;GAGY_YF9GGY^>!Y_F1QY.=F9^?G9GG\Y.?$8F9
  934. XMF9F9G^>9F229F?G/S_.9__/#D\/)P^?)DX?#F?,3H\.3R9/#@9F9.9F9@>?G
  935. XMY[,/________  #_Q\?'Q\?___^! <?'_______________'Q\?'Q\?_?@#G
  936. XM_\FGY\__S_/#Y____^>1Y_GYR8.?^YF9Y^?/@?/SE9.3GYF?GY^9Y_.'GQ&)
  937. XMF9F9F<_GF=NEP\/SS^?SO?__F8F9D9F!D8GG\Y/S 8F9B9&)F>>9F3F9F?GG
  938. XMY^?_)________P  _\?'Q\?'____ P''Q_______________Q\?'Q\?'__P 
  939. XMY__)P^>$_\_S@8'_@?_G@>?SXYGY@_/#P?__G__YYY63@9^9@X.1@>?SAY\!
  940. XM@9F#F8/SYYG#@>?GY\_G\_____F9GYF9YYF9Y_.'\RF9F9F9GY_GF9DIP\GS
  941. XMC__Q_R?_______\  /_'Q\?'Q____X$!Q\?______________\?'Q\?'Q_]^
  942. XM .?_ .7((?_/\Z6!_X'_SXGGY_DY^9GSF?G__\__\^>1.9F?F9^?F9GG\Y.?
  943. XM*9&9GYF3^>>9PX'#Y\_/\_/____!F9^9@>>9F>?SA_,IF9F9F9_#YYG#*>?)
  944. XMY^?GY___________  #_Q\?'Q\?___\# <?'_______________'Q\?'Q\?_
  945. XM_ #__Y.EQC/_S_/GY____\^9Y\^Y )F9YYGY___G@>?_GP&9G9F?GYF9YY.3
  946. XMGRF1F9^9F9GGF>>9F>>?S_/S____F9F?F9_GF9GG\Y/S*9F9F9F?^>>9PRG#
  947. XMX\_GY^?_\?_______P  _\?'Q\?'____@0''Q_______________Q\?'Q\?'
  948. XM_WX Y_^3I98C_^?G_^?G_^>?F>>=F?F9F>>9F>?G\X'/Y\DYF9F3GY^9F>>3
  949. XMF9\YF9F?F9F9YYGGVYGGG\_Y\____YF)F9&9YY&9Y_.9\RF9F8F1GYGED><!
  950. XMF>.?Y^?G_^3_______\  /_'Q\?'Q____P,!Q\?______________\?'Q\?'
  951. XMQ__\ .?_D\.1B/_GY___Y__GG\.!@</YP\/GP\/GY_G_G^?C.8/#AX&?Q9F!
  952. XMQYF!.9G#G\.9P^?#Y]N9YX'/^?/____!D\/)P^?)F>?SF?,IF<.3R9_#\\GG
  953. XMDYGS@>?GY__D________  #_Q\?'Q\?___^! <?'_______________'Q\?'
  954. XMQ\?_?@#____G____\\____?___________________?]_[______________
  955. XM___________G____________P?^#_P'_________^?__\_______G_G_____
  956. XM____]__GY^?_Y/_______P  _\?'Q\?'____ P''Q_______________Q\?'
  957. XMQ\?'__P _______________/___________________/________________
  958. XM____________\?________________\!_________YG__Y/______Y_Y____
  959. XM_____X?_\>>/_^3_______\  /_'Q\?'Q____X$!Q\?______________\?'
  960. XMQ\?'Q_]^ /__________________________________________________
  961. XM___________________________________________#___'______^?^?__
  962. X4_______/_______Q________  #_
  963. Xend
  964. END_OF_FILE
  965. # end of 'font-32/Ugal8x14bI'
  966. fi
  967. if test -f 'font-32/Ugal8x14bu' -a "${1}" != "-c" ; then 
  968.   echo shar: Will not clobber existing file \"'font-32/Ugal8x14bu'\"
  969. else
  970. echo shar: Extracting \"'font-32/Ugal8x14bu'\" \(2664 characters\)
  971. sed "s/^X//" >'font-32/Ugal8x14bu' <<'END_OF_FILE'
  972. Xbegin 644 gal8x14bu.fnt
  973. XM& @.!(8             _/XX.                                   
  974. XM                                                            
  975. XM                                                    #AAP    
  976. XM           X.#@X.    '[^.#@              #@X.#@X. !^ !AL&QAV
  977. XM. P,,       !@                ( 0#P8                        
  978. XM           ^8'P  #                                   !@8& #P
  979. XM            .#@X.#@   #\_C@X               X.#@X.#@ _  8;!L\
  980. XMEFP,&!@8      8\&#P\!GX\?CP\   & &!F/!!X/'A^?CQF?CYB8,9F/'P\
  981. XM?#Q^9F;#9F9^,& ,&  P &  !@ . & 8#& \         !@        8&!@R
  982. XMV            #@X.#@X    ?OXX.               .#@X.#@X 'X &&P;
  983. XM6IQL&!@86@     ,9CAF9@Y@9D9F9@  #  P8F8X;&9L8&!F9A@,9F#&9F9F
  984. XM9F9F&&9FPV9F!C P##P & !@  8 & !@  !@#          8        &!@8
  985. XM?M@            X.#@X.    /S^.#@              #@X.#@X. #\ !AL
  986. XM?UKL.# P#'X8    #&9X!D8>8& &9F88&!A^& 9N.&QB9F!@8F88#&Q@[G9F
  987. XM9F9F8!AF9MMF9@8P, QF  P\;#PV/!@V;'@\9@SL7#QL-FP\?F9FQF9F?A@8
  988. XM&$SP            .#@X.#@   !^_C@X               X.#@X.#@ ?@ 8
  989. XM #98&#  , P\&    !AN& 8&-GQ@!&9F&!@P?@P,:FQL8&9@8&!F& QX8.YV
  990. XM9F9F9C 89B1:/#P,,!@,0@  9G9F;F9^;G88#&P,_G9F=FYV9AAF9L9F9@88
  991. XM&!@ V            #@X.#@X    _/XX.               .#@X.#@X /P 
  992. XM&  V/!A[ # ,?GX ?@ 8?A@,'&8&? P\/@  8  &&&IL?F!F?'QN?A@,>&#^
  993. XM?F9\9GP,&&8\?A@8&# 8#     9F8&9F&&9F& QX#-9F9F9F8& 89F;6/#8,
  994. XM<  . -@            X.#@X.    '[^.#@              #@X.#@X. !^
  995. XM !@ _QHWW@ P#%I^ 'X ,'88& ;&!F8,9@8  #  #!ANQF9@9F!@9F88#&Q@
  996. XMUFYF8&9L!AAF/'X\&# P# P    ^9F!F?AAF9A@,> S69F9F9F \&&8\UA@V
  997. XM&!@8&               .#@X.#@   #\_C@X               X.#@X.#@ 
  998. XM_    &Q:.<P , P8&    #!F&#!&_V9F&&8&   8?A@ 8/YF8F9@8&9F&&QL
  999. XM8-9N9F!F9F889AAF9AA@, P,    9F9@9F 89F88#&P,UF9F9F9@!AAF/-8\
  1000. XM'# 8&!@ #@           #@X.#@X    ?OXX.               .#@X.#@X
  1001. XM 'X & !L6FG< !@8 !@8 !A@9AAB9@9F9AAF9A@8#'XP&#;&9F9L8&!F9AAL
  1002. XM9F#&9F9@9F9F&&88)&888# &#    &9V9FYF&&YF& QF#-9F9G9N8&8:;AC^
  1003. XM9AQ@&!@8 !L            X.#@X.    /S^.#@              #@X.#@X
  1004. XM. #\ !@ ;#QN=P 8&   &  88#Q^?CP&/#P8/#P8& 8 8!@<QGP\>'Y@.F9^
  1005. XM.&9^QF8\8#QF/!@\&"1F&'XP!@P    ^;#PV/!@V9A@,9@S69CQL-F \##88
  1006. XM;&8,?A@8&  ;          #^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^
  1007. XM_O[^_@#^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^
  1008. XM_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^
  1009. XM_O[^_O[^_O[^__[^_O[^_@  _O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^
  1010. XM_O[^_OX _O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^
  1011. XM_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^_O[^
  1012. XM_O[^_O[^_O[^_O_^_O[^_OX    X.#@X.    '[^.#@              #@X
  1013. XM.#@X. !^                                                    
  1014. XM                                           \   X      !@!@  
  1015. X4       P       .            
  1016. Xend
  1017. END_OF_FILE
  1018. # end of 'font-32/Ugal8x14bu'
  1019. fi
  1020. if test -f 'misc/getscreen.c' -a "${1}" != "-c" ; then 
  1021.   echo shar: Will not clobber existing file \"'misc/getscreen.c'\"
  1022. else
  1023. echo shar: Extracting \"'misc/getscreen.c'\" \(2592 characters\)
  1024. sed "s/^X//" >'misc/getscreen.c' <<'END_OF_FILE'
  1025. X/*                        Copyright (c) 1988 Bellcore
  1026. X *                            All Rights Reserved
  1027. X *       Permission is granted to copy or use this program, EXCEPT that it
  1028. X *       may not be sold for profit, the copyright notice must be reproduced
  1029. X *       on copies, and credit should be given to Bellcore where it is due.
  1030. X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  1031. X */
  1032. X/*    get_screen        (S A Uhler)
  1033. X *
  1034. X *    Capture an image of the SUN screen
  1035. X */
  1036. X/*    $Header: getscreen.c,v 1.2 88/07/08 08:25:28 sau Exp $
  1037. X    $Source: /tmp/mgrsrc/misc/RCS/getscreen.c,v $
  1038. X*/
  1039. Xstatic char    RCSid_[] = "$Source: /tmp/mgrsrc/misc/RCS/getscreen.c,v $$Revision: 1.2 $";
  1040. X
  1041. X#include <sys/ioctl.h>
  1042. X#include <sun/fbio.h>
  1043. X#include <sys/file.h>
  1044. X#include <sys/mman.h>
  1045. X#include <stdio.h>
  1046. X#include "dump.h"
  1047. X
  1048. X#define SCREEN    "/dev/bwtwo0"    /* name of sun frame buffer */
  1049. X#define BUFF    512        /* size of write buffer */
  1050. X#define BAR      3        /* width of copy bar */
  1051. X
  1052. Xmain()
  1053. X   {
  1054. X   int fd;
  1055. X   char  *malloc();
  1056. X   register unsigned char *addr;
  1057. X   struct fbtype buff;
  1058. X   int temp,pagesize;
  1059. X   register int i, wide;
  1060. X   struct b_header b_buff, *head = &b_buff;    /* for bitmap header */
  1061. X
  1062. X   /* open the SUN screen */
  1063. X
  1064. X   if ((fd = open(SCREEN,O_RDWR)) <0) {
  1065. X      fprintf(stderr,"Can' open %s\n",SCREEN);
  1066. X      exit(1);
  1067. X      }
  1068. X
  1069. X   /* get the frame buffer size */
  1070. X
  1071. X   ioctl(fd,FBIOGTYPE,&buff);
  1072. X   pagesize = getpagesize();
  1073. X   buff.fb_size = (buff.fb_size+pagesize-1) &~ (pagesize-1);
  1074. X
  1075. X   /* malloc space for frame buffer */
  1076. X
  1077. X   if ((temp = (int) malloc(buff.fb_size+pagesize)) == 0) {
  1078. X      fprintf(stderr,"couldn't malloc %d bytes\n",buff.fb_size+pagesize);
  1079. X      exit(1);
  1080. X      }
  1081. X
  1082. X   /* align space on a page boundary */
  1083. X
  1084. X   addr = (unsigned char *)((temp+pagesize-1) & ~(pagesize-1));
  1085. X
  1086. X   /* map the frame buffer into malloc'd space */
  1087. X
  1088. X#ifdef _MAP_NEW
  1089. X   addr = mmap(addr,buff.fb_size,PROT_WRITE|PROT_READ,_MAP_NEW|MAP_SHARED,fd,0);
  1090. X#else
  1091. X   mmap(addr,buff.fb_size,PROT_WRITE|PROT_READ,MAP_SHARED,fd,0);
  1092. X#endif
  1093. X  
  1094. X   /* write header to stdout */
  1095. X
  1096. X   B_PUTOLDHDR(head,buff.fb_width,buff.fb_height);
  1097. X   write(1,head,B_HSIZE);
  1098. X   
  1099. X   /* write the screen to stdout */
  1100. X
  1101. X   wide = buff.fb_width/8;
  1102. X   for(i=0;i<buff.fb_height;i++) {
  1103. X      if (i>BAR) invert(addr-BAR*wide,wide);
  1104. X      write(1,addr,wide);
  1105. X      invert(addr,wide);
  1106. X      addr += wide;
  1107. X      }
  1108. X   invert(addr-BAR*wide,BAR*wide);
  1109. X
  1110. X   /* clean up stuff */
  1111. X
  1112. X   munmap(addr,buff.fb_size);
  1113. X   free(temp);
  1114. X   }
  1115. X   
  1116. Xinvert(addr,count)
  1117. Xregister char *addr;
  1118. Xint count;
  1119. X   {
  1120. X   register char *max = addr + count;
  1121. X   while(addr<max) *addr++ = ~*addr;
  1122. X   }
  1123. END_OF_FILE
  1124. # end of 'misc/getscreen.c'
  1125. fi
  1126. if test -f 'src/icons-16.h' -a "${1}" != "-c" ; then 
  1127.   echo shar: Will not clobber existing file \"'src/icons-16.h'\"
  1128. else
  1129. echo shar: Extracting \"'src/icons-16.h'\" \(2673 characters\)
  1130. sed "s/^X//" >'src/icons-16.h' <<'END_OF_FILE'
  1131. X/*                        Copyright (c) 1987 Bellcore
  1132. X *                            All Rights Reserved
  1133. X *       Permission is granted to copy or use this program, EXCEPT that it
  1134. X *       may not be sold for profit, the copyright notice must be reproduced
  1135. X *       on copies, and credit should be given to Bellcore where it is due.
  1136. X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  1137. X */
  1138. X/*    $Header: icons-16.h,v 4.1 88/06/21 13:33:56 bianchi Exp $
  1139. X    $Source: /tmp/mgrsrc/src/RCS/icons-16.h,v $
  1140. X*/
  1141. Xstatic char    h_icons_[] = "$Source: /tmp/mgrsrc/src/RCS/icons-16.h,v $$Revision: 4.1 $";
  1142. X
  1143. X/********************************************************
  1144. X *
  1145. X * mouse icons for mgr
  1146. X *
  1147. X *    (0,0)->(16,16) => icon
  1148. X *    (0,17)->(16,32) => outline (mask) of icon
  1149. X */
  1150. X
  1151. Xshort c_arrow1[] = {            /* up left arrow */
  1152. X    0x0000,    0x7f80,    0x7d00,    0x7800,
  1153. X    0x7c00,    0x6e00,    0x4700,    0x6380,
  1154. X    0x41c0,    0x00e0,    0x0070,    0x0038,
  1155. X    0x001c,    0x000c,    0x0000,    0x0000,
  1156. X
  1157. X    0xffc0,    0x8040,    0x82c0,    0x8700,
  1158. X    0x8200,    0x9100,    0xb880,    0x9440,
  1159. X    0xa220,    0xe110,    0x0088,    0x0044,
  1160. X    0x0022,    0x0012,    0x000e,    0x0000,
  1161. X    };
  1162. X
  1163. Xshort c_box[] = {            /* box for creating/shaping windows */
  1164. X    0x0000,    0x7ffe,    0x7ffe,    0x6006,
  1165. X    0x6006,    0x6006,    0x6006,    0x6006,
  1166. X    0x6006,    0x6006,    0x6006,    0x6006,
  1167. X    0x6006,    0x7ffe,    0x7ffe,    0x0000,
  1168. X
  1169. X    0xffff,    0x8001,    0x8001,    0x8001,
  1170. X    0x8001,    0x8001,    0x8001,    0x8001,
  1171. X    0x8001,    0x8001,    0x8001,    0x8001,
  1172. X    0x8001,    0x8001,    0x8001,    0xffff,
  1173. X    };
  1174. X
  1175. Xshort c_cup[] = {            /* coffee-cup (for waiting) */
  1176. X    0x0FCC,    0x1878,    0x0FF0,    0x00C0,
  1177. X    0x0780,    0x0000,    0x1FF0,    0x181C,
  1178. X    0x181E,    0x1816,    0x181E,    0x1C3C,
  1179. X    0x0FE0,    0x07C0,    0x1FF0,    0x1FF0,
  1180. X
  1181. X    0x1032,    0x2784,    0x1008,    0x0b20,
  1182. X    0x0840,    0x1ff0,    0x200c,    0x27e2,
  1183. X    0x2421,    0x2429,    0x2421,    0x23c2,
  1184. X    0x101c,    0x0830,    0x2008,    0x2008,
  1185. X    };
  1186. X
  1187. Xshort c_cross[] = {            /* cross for drawing lines */
  1188. X    0x0000,    0x0400,    0x0400,    0x0400,
  1189. X    0x0400,    0x7fc0,    0x0400,    0x0400,
  1190. X    0x0400,    0x0400,    0x0000,    0x0000,
  1191. X    0x0000,    0x0000,    0x0000,    0x0000,
  1192. X    
  1193. X    0x0e00,    0x0a00,    0x0a00,    0x0a00,
  1194. X    0xfbe0,    0x8020,    0xfbe0,    0x0a00,
  1195. X    0x0a00,    0x0a00,    0x0e00,    0x0000,
  1196. X    0x0000,    0x0000,    0x0000,    0x0000,
  1197. X    };
  1198. X
  1199. Xshort c_cut[] = {            /* scissors for cutting text */
  1200. X    0x0000,    0x3000,    0x4801,    0x480e,
  1201. X    0x4878,    0x39f0,    0x0780,    0x0780,
  1202. X    0x39f0,    0x4878,    0x480e,    0x4801,
  1203. X    0x3000,    0x0000,    0x0000,    0x0000,
  1204. X    
  1205. X    0x3000,    0x4801,    0x8406,    0x9431,
  1206. X    0x8584,    0x4210,    0x2040,    0x2040,
  1207. X    0x4210,    0x8584,    0x9431,    0x8406,
  1208. X    0x4801,    0x3000,    0x0000,    0x0000,
  1209. X    };
  1210. X
  1211. Xshort c_bull[] = {            /* bullet for menus */
  1212. X    0x0000, 0x1800, 0x2400, 0x5a00,
  1213. X    0x5a00, 0x2400, 0x1800, 0x0000
  1214. X    };
  1215. Xshort c_bull2[] = {
  1216. X    0x0000, 0x0000, 0x1800, 0x2400,
  1217. X    0x2400, 0x1800, 0x0000, 0x0000
  1218. X    };
  1219. X
  1220. Xshort pat_data[] = {            /* background pattern */
  1221. X    0x8888,    0x4444,    0x1111,    0x2222,
  1222. X    };
  1223. END_OF_FILE
  1224. # end of 'src/icons-16.h'
  1225. fi
  1226. echo shar: End of archive 12 \(of 61\).
  1227. cp /dev/null ark12isdone
  1228. MISSING=""
  1229. for I in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 \
  1230.     21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 \
  1231.     38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 \
  1232.     55 56 57 58 59 60 61 ; do
  1233.     if test ! -f ark${I}isdone ; then
  1234.     MISSING="${MISSING} ${I}"
  1235.     fi
  1236. done
  1237. if test "${MISSING}" = "" ; then
  1238.     echo You have unpacked all 61 archives.
  1239.     rm -f ark[1-9]isdone ark[1-9][0-9]isdone
  1240. else
  1241.     echo You still need to unpack the following archives:
  1242.     echo "        " ${MISSING}
  1243. fi
  1244. ##  End of shell archive.
  1245. exit 0
  1246.