home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / games / volume18 / xboing / part28 < prev    next >
Encoding:
Internet Message Format  |  1993-09-13  |  52.5 KB

  1. Path: uunet!news.tek.com!news.cna.tek.com!not-for-mail
  2. From: billr@saab.cna.tek.com (Bill Randle)
  3. Newsgroups: comp.sources.games
  4. Subject: v18i087:  xboing - blockout variant with color and sound for X, Part28/30
  5. Date: 30 Aug 1993 10:29:47 -0700
  6. Organization: Tektronix, Inc., Redmond, OR
  7. Lines: 1317
  8. Approved: billr@saab.CNA.TEK.COM
  9. Message-ID: <25tdeb$i3h@saab.cna.tek.com>
  10. NNTP-Posting-Host: saab.cna.tek.com
  11. Xref: uunet comp.sources.games:1887
  12.  
  13. Submitted-by: jck@kimba.catt.citri.edu.au (Justin Kibell)
  14. Posting-number: Volume 18, Issue 87
  15. Archive-name: xboing/part28
  16. Environment: X11, Xlib, XPM
  17.  
  18.  
  19.  
  20. #! /bin/sh
  21. # This is a shell archive.  Remove anything before this line, then unpack
  22. # it by saving it into a file and typing "sh file".  To overwrite existing
  23. # files, type "sh file -c".  You can also feed this as standard input via
  24. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  25. # will see the following message at the end:
  26. #        "End of archive 28 (of 30)."
  27. # Contents:  audio/NOaudio.c bitmaps/ball1.xpm.uu bitmaps/ball2.xpm.uu
  28. #   bitmaps/ball3.xpm.uu bitmaps/ball4.xpm.uu
  29. #   bitmaps/exx2bonus1.xpm.uu
  30. #   bitmaps/exx2bonus2.xpm.uu bitmaps/exx2bonus3.xpm.uu
  31. #   bitmaps/leftarrow.xpm.uu bitmaps/paddleshrink.xpm.uu
  32. #   bitmaps/paddlesmall.xpm.uu bitmaps/reverse.xpm.uu
  33. #   bitmaps/rightarrow.xpm.uu bitmaps/tink.xpm.uu
  34. #   bitmaps/walloff.xpm.uu bitmaps/x2bonus1.xpm.uu
  35. #   bitmaps/x2bonus2.xpm.uu bitmaps/x2bonus3.xpm.uu
  36. #   bitmaps/x2bonus4.xpm.uu bitmaps/x4bonus1.xpm.uu
  37. #   bitmaps/x4bonus2.xpm.uu bitmaps/x4bonus3.xpm.uu
  38. #   bitmaps/x4bonus4.xpm.uu include/intro.h include/main.h
  39. #   include/misc.h include/sfx.h include/special.h sounds/bonus.au.uu
  40. #   sounds/click.au.uu sounds/tone.au.uu
  41. # Wrapped by billr@saab on Mon Aug 30 09:14:31 1993
  42. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  43. if test -f 'audio/NOaudio.c' -a "${1}" != "-c" ; then 
  44.   echo shar: Will not clobber existing file \"'audio/NOaudio.c'\"
  45. else
  46. echo shar: Extracting \"'audio/NOaudio.c'\" \(1315 characters\)
  47. sed "s/^X//" >'audio/NOaudio.c' <<'END_OF_FILE'
  48. X#include "include/copyright.h"
  49. X
  50. X/* NO Audio format - Dummy file - does nothing */
  51. X
  52. X/*
  53. X *  Include file dependencies:
  54. X */
  55. X
  56. X#include <stdio.h>
  57. X
  58. X#include "include/error.h"
  59. X#include "include/audio.h"
  60. X
  61. X/*
  62. X *  Internal macro definitions:
  63. X */
  64. X
  65. X/*
  66. X *  Internal type declarations:
  67. X */
  68. X
  69. X/*
  70. X *  Internal variable declarations:
  71. X */
  72. X
  73. X#if NeedFunctionPrototypes
  74. Xint SetUpAudioSystem(Display *display)
  75. X#else
  76. Xint SetUpAudioSystem(display)
  77. X    Display *display;
  78. X#endif
  79. X{
  80. X    /* Do nothing here as we don't have audio support */
  81. X    return False;
  82. X}
  83. X
  84. X#if NeedFunctionPrototypes
  85. Xvoid FreeAudioSystem(void)
  86. X#else
  87. Xvoid FreeAudioSystem()
  88. X#endif
  89. X{
  90. X    /* Do nothing here as we don't have audio support */
  91. X}
  92. X
  93. X#if NeedFunctionPrototypes
  94. Xvoid setNewVolume(unsigned int Volume)
  95. X#else
  96. Xvoid setNewVolume(Volume)
  97. X    unsigned int Volume;
  98. X#endif
  99. X{
  100. X    /* Do nothing here as we don't have audio support */
  101. X}
  102. X
  103. X#if NeedFunctionPrototypes
  104. Xvoid playSoundFile(char *filename, int volume)
  105. X#else
  106. Xvoid playSoundFile(filename, volume)
  107. X    char *filename;
  108. X    int volume;
  109. X#endif
  110. X{
  111. X    /* Do nothing here as we don't have audio support */
  112. X}
  113. X
  114. X#if NeedFunctionPrototypes
  115. Xvoid audioDeviceEvents(void)
  116. X#else
  117. Xvoid audioDeviceEvents()
  118. X#endif
  119. X{
  120. X    /* None to do */
  121. X}
  122. X
  123. X#if NeedFunctionPrototypes
  124. Xvoid SetMaximumVolume(int Volume)
  125. X#else
  126. Xvoid SetMaximumVolume(Volume)
  127. X    int Volume;
  128. X#endif
  129. X{
  130. X}
  131. END_OF_FILE
  132. if test 1315 -ne `wc -c <'audio/NOaudio.c'`; then
  133.     echo shar: \"'audio/NOaudio.c'\" unpacked with wrong size!
  134. fi
  135. # end of 'audio/NOaudio.c'
  136. fi
  137. if test -f 'bitmaps/ball1.xpm.uu' -a "${1}" != "-c" ; then 
  138.   echo shar: Will not clobber existing file \"'bitmaps/ball1.xpm.uu'\"
  139. else
  140. echo shar: Extracting \"'bitmaps/ball1.xpm.uu'\" \(1076 characters\)
  141. sed "s/^X//" >'bitmaps/ball1.xpm.uu' <<'END_OF_FILE'
  142. Xbegin 644 ball1.xpm
  143. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@8F%L;#%?>'!M6UT@/2!["B\J('=I
  144. XM9'1H(&AE:6=H="!N8V]L;W)S(&-H87)S7W!E<E]P:7AE;"`J+PHB,C`@,3D@
  145. XM,3(@,2(L"B\J(&-O;&]R<R`J+PHB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!W
  146. XM:&ET92(L"B)8"6,@(S,P,#!!.2(L"B)O"6,@(T$Y,3<P,"(L"B)/"6,@(S%!
  147. XM,#`X-"(L"B(K"6,@(S)#,#!$0R(L"B)`"6,@(S-$,#!&,B(L"B(C"6,@(T-#
  148. XM,D,P,"(L"B(D"6,@(S0T,#!&12(L"B(E"6,@(T4X,T4P,"(L"B(F"6,@(T8X
  149. XM-48P,"(L"B(J"6,@(S@T,#`P,"(L"B\J('!I>&5L<R`J+PHB("`@("`@+BXN
  150. XM+BXN+BX@("`@("`B+`HB("`@("XN6%A86%A8;T\N+B`@("`B+`HB("`N+EA8
  151. XM*RLK*RLK;UA83RXN("`B+`HB("`N3UA8*RLK*RLK;UA83T\N("`B+`HB("Y8
  152. XM6"LK0$!`(R,C*RM86$]/+B`B+`HB("Y86"M`)"0E0$!`*RM86$]/+B`B+`HB
  153. XM+E@K*T`D)"8D0$!`0"LK6%A83RXB+`HB+F\K*T`D)B0F0$!`0"LK6%A83RXB
  154. XM+`HB+E@C(T`E)"1`)24E0"LK;V]O3RXB+`HB+E@C(T`E)"1`)24E0"LK;V]O
  155. XM3RXB+`HB+E@K*R-`0$!`0$!`(RLC6%A8*BXB+`HB+EA86",K0$!`*RLK(R-8
  156. XM6%A83RXB+`HB+D]O;RLK*RLK(R,C*RM86$]/3RXB+`HB("Y86%A8*RLK*RLK
  157. XM;UA86$]/+B`B+`HB("Y/3UA86%A86%A8;UA83T]/+B`B+`HB("`N3T]/6%A8
  158. XM6%A86"HJ3T\N("`B+`HB("`N+D]/6%A86%A86"HJ3RXN("`B+`HB("`@("XN
  159. XJ3T]/3T]/3T\N+B`@("`B+`HB("`@("`@+BXN+BXN+BX@("`@("`B?3L*
  160. X`
  161. Xend
  162. END_OF_FILE
  163. if test 1076 -ne `wc -c <'bitmaps/ball1.xpm.uu'`; then
  164.     echo shar: \"'bitmaps/ball1.xpm.uu'\" unpacked with wrong size!
  165. fi
  166. # end of 'bitmaps/ball1.xpm.uu'
  167. fi
  168. if test -f 'bitmaps/ball2.xpm.uu' -a "${1}" != "-c" ; then 
  169.   echo shar: Will not clobber existing file \"'bitmaps/ball2.xpm.uu'\"
  170. else
  171. echo shar: Extracting \"'bitmaps/ball2.xpm.uu'\" \(1076 characters\)
  172. sed "s/^X//" >'bitmaps/ball2.xpm.uu' <<'END_OF_FILE'
  173. Xbegin 644 ball2.xpm
  174. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@8F%L;#)?>'!M6UT@/2!["B\J('=I
  175. XM9'1H(&AE:6=H="!N8V]L;W)S(&-H87)S7W!E<E]P:7AE;"`J+PHB,C`@,3D@
  176. XM,3(@,2(L"B\J(&-O;&]R<R`J+PHB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!W
  177. XM:&ET92(L"B)8"6,@(S,P,#!!.2(L"B)O"6,@(T$Y,3<P,"(L"B)/"6,@(S%!
  178. XM,#`X-"(L"B(K"6,@(S)#,#!$0R(L"B)`"6,@(T-#,D,P,"(L"B(C"6,@(S-$
  179. XM,#!&,B(L"B(D"6,@(T4X,T4P,"(L"B(E"6,@(T8X-48P,"(L"B(F"6,@(S0T
  180. XM,#!&12(L"B(J"6,@(S@T,#`P,"(L"B\J('!I>&5L<R`J+PHB("`@("`@+BXN
  181. XM+BXN+BX@("`@("`B+`HB("`@("XN6%A8;V]O;T\N+B`@("`B+`HB("`N+EA8
  182. XM*RM`*RLK6%A83RXN("`B+`HB("`N3UA8*RM`*RLK6%A83T\N("`B+`HB("Y8
  183. XM6"LK(R0C*RLK*RM86$]/+B`B+`HB("Y86"LC)28C(R,C*RM86$]/+B`B+`HB
  184. XM+E@K*R,F)28F(R,C(RLK6%A8*BXB+`HB+E@K*R,F)B4F(R,C(RLK6&]O3RXB
  185. XM+`HB+F\K*R,C)28D(R,C(RM`6&]O3RXB+`HB+F\K*R,C)28D(R,C(RM`6&]O
  186. XM3RXB+`HB+F\K*RLD(R,C)"0D0$`K;V]O3RXB+`HB+EA`0"LK)",C*RLK*RM8
  187. XM6%A8*BXB+`HB+D]`0"LD0"LK*RLK*RM86$]/*BXB+`HB("Y86$!8*T`K*RLK
  188. XM6%A86$]/+B`B+`HB("Y/3UA86%AO6%A86%A83T]/+B`B+`HB("`N3T]/6%AO
  189. XM6%A86$]/3T\N("`B+`HB("`N+D]/6%AO6%A86$]/3RXN("`B+`HB("`@("XN
  190. XJ3RI/3T]/3T\N+B`@("`B+`HB("`@("`@+BXN+BXN+BX@("`@("`B?3L*
  191. X`
  192. Xend
  193. END_OF_FILE
  194. if test 1076 -ne `wc -c <'bitmaps/ball2.xpm.uu'`; then
  195.     echo shar: \"'bitmaps/ball2.xpm.uu'\" unpacked with wrong size!
  196. fi
  197. # end of 'bitmaps/ball2.xpm.uu'
  198. fi
  199. if test -f 'bitmaps/ball3.xpm.uu' -a "${1}" != "-c" ; then 
  200.   echo shar: Will not clobber existing file \"'bitmaps/ball3.xpm.uu'\"
  201. else
  202. echo shar: Extracting \"'bitmaps/ball3.xpm.uu'\" \(1076 characters\)
  203. sed "s/^X//" >'bitmaps/ball3.xpm.uu' <<'END_OF_FILE'
  204. Xbegin 644 ball3.xpm
  205. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@8F%L;#-?>'!M6UT@/2!["B\J('=I
  206. XM9'1H(&AE:6=H="!N8V]L;W)S(&-H87)S7W!E<E]P:7AE;"`J+PHB,C`@,3D@
  207. XM,3(@,2(L"B\J(&-O;&]R<R`J+PHB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!W
  208. XM:&ET92(L"B)8"6,@(S,P,#!!.2(L"B)O"6,@(T$Y,3<P,"(L"B)/"6,@(S%!
  209. XM,#`X-"(L"B(K"6,@(S)#,#!$0R(L"B)`"6,@(T-#,D,P,"(L"B(C"6,@(S-$
  210. XM,#!&,B(L"B(D"6,@(S0T,#!&12(L"B(E"6,@(T4X,T4P,"(L"B(F"6,@(T8X
  211. XM-48P,"(L"B(J"6,@(S@T,#`P,"(L"B\J('!I>&5L<R`J+PHB("`@("`@+BXN
  212. XM+BXN+BX@("`@("`B+`HB("`@("XN6&]86%A86$\N+B`@("`B+`HB("`N+EA8
  213. XM*RM`*RLK6&]83RXN("`B+`HB("`N3UA8*RM`*RLK6&]83T\N("`B+`HB("Y8
  214. XM6"LK(R,C0$!`0"M86$]/+B`B+`HB("Y86"LC)"0E(R,C*RM86$]/+B`B+`HB
  215. XM+E@K*R,D)"8D(R,C(RLK6%A83RXB+`HB+E@K*R,D)B0D(R,C(RLK6%A83RXB
  216. XM+`HB+E@K*R,E)"8C(R,C(RLK6%A83RXB+`HB+E@K*R,E)"8C(R,C(RLK6%A8
  217. XM3RXB+`HB+E@K*T`C(R,E(R,C*T`K6%A83RXB+`HB+F]O;RLK(R,C0$!`0"MO
  218. XM;UA83RXB+`HB+D]86"LK*RLK*RLK0"M86"HJ3RXB+`HB("Y86%A8*RLK0$!`
  219. XM6%A86"HJ+B`B+`HB("Y/3UA86%AO6%A86%A83T]/+B`B+`HB("`N3T]/6%AO
  220. XM6%A86$]/3T\N("`B+`HB("`N+D]/6%AO6%A86$]/3RXN("`B+`HB("`@("XN
  221. XJ3T]/*BHJ3T\N+B`@("`B+`HB("`@("`@+BXN+BXN+BX@("`@("`B?3L*
  222. X`
  223. Xend
  224. END_OF_FILE
  225. if test 1076 -ne `wc -c <'bitmaps/ball3.xpm.uu'`; then
  226.     echo shar: \"'bitmaps/ball3.xpm.uu'\" unpacked with wrong size!
  227. fi
  228. # end of 'bitmaps/ball3.xpm.uu'
  229. fi
  230. if test -f 'bitmaps/ball4.xpm.uu' -a "${1}" != "-c" ; then 
  231.   echo shar: Will not clobber existing file \"'bitmaps/ball4.xpm.uu'\"
  232. else
  233. echo shar: Extracting \"'bitmaps/ball4.xpm.uu'\" \(1076 characters\)
  234. sed "s/^X//" >'bitmaps/ball4.xpm.uu' <<'END_OF_FILE'
  235. Xbegin 644 ball4.xpm
  236. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@8F%L;#1?>'!M6UT@/2!["B\J('=I
  237. XM9'1H(&AE:6=H="!N8V]L;W)S(&-H87)S7W!E<E]P:7AE;"`J+PHB,C`@,3D@
  238. XM,3(@,2(L"B\J(&-O;&]R<R`J+PHB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!W
  239. XM:&ET92(L"B)8"6,@(S,P,#!!.2(L"B)O"6,@(T$Y,3<P,"(L"B)/"6,@(S%!
  240. XM,#`X-"(L"B(K"6,@(S)#,#!$0R(L"B)`"6,@(T-#,D,P,"(L"B(C"6,@(S-$
  241. XM,#!&,B(L"B(D"6,@(S0T,#!&12(L"B(E"6,@(T4X,T4P,"(L"B(F"6,@(T8X
  242. XM-48P,"(L"B(J"6,@(S@T,#`P,"(L"B\J('!I>&5L<R`J+PHB("`@("`@+BXN
  243. XM+BXN+BX@("`@("`B+`HB("`@("XN6%AO;V]O6$\N+B`@("`B+`HB("`N+EA8
  244. XM*RLK*RLK0$!83RXN("`B+`HB("`N3UA8*RLK*RLK0$!83T\N("`B+`HB("Y8
  245. XM6"LK(R,C*RLK*RM`6$]/+B`B+`HB("Y86"LC)"0C)24E*R586$]/+B`B+`HB
  246. XM+E@K*R,F)B0F(R,C)4`K6%A83RXB+`HB+E@K*R4D)"8D(R,C(RM`6%A8*BXB
  247. XM+`HB+EA`0",C)"0E(R,C(RLK;V]O3RXB+`HB+EA`0",C)"0E(R,C(RLK;V]O
  248. XM3RXB+`HB+F\K*RLC(R,C)24E*RLK6%A83RXB+`HB+F]86"LK(R,C0$!`*RM8
  249. XM6%A83RXB+`HB+D]86"LK*RLK0$!`*RM86$]/3RXB+`HB("Y86%A8*RM`*RLK
  250. XM6%A86$]/+B`B+`HB("Y/3UA86%A8;V]O6%A83T]/+B`B+`HB("`N3T]/6&]O
  251. XM;V]O6$]/3T\N("`B+`HB("`N+D]/6&]O;V]O6$]/3RXN("`B+`HB("`@("XN
  252. XJ*D]/3T]/*BHN+B`@("`B+`HB("`@("`@+BXN+BXN+BX@("`@("`B?3L*
  253. X`
  254. Xend
  255. END_OF_FILE
  256. if test 1076 -ne `wc -c <'bitmaps/ball4.xpm.uu'`; then
  257.     echo shar: \"'bitmaps/ball4.xpm.uu'\" unpacked with wrong size!
  258. fi
  259. # end of 'bitmaps/ball4.xpm.uu'
  260. fi
  261. if test -f 'bitmaps/exx2bonus1.xpm.uu' -a "${1}" != "-c" ; then 
  262.   echo shar: Will not clobber existing file \"'bitmaps/exx2bonus1.xpm.uu'\"
  263. else
  264. echo shar: Extracting \"'bitmaps/exx2bonus1.xpm.uu'\" \(1309 characters\)
  265. sed "s/^X//" >'bitmaps/exx2bonus1.xpm.uu' <<'END_OF_FILE'
  266. Xbegin 644 exx2bonus1.xpm
  267. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@97AX,F)O;G5S,5]X<&U;72`]('L*
  268. XM(C(W(#(W(#(@,2(L"B(@"7,@3F]N90EC($YO;F4B+`HB+@EC(&=O;&0B+`HB
  269. XM("`@("`@("`@("`@("`@("`@("`@("`@("`@(BP*(B`@("`@("`@("`@("`@
  270. XM("`@("`@("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@("`B
  271. XM+`HB("`@("`@("`@("`N+BXN+B`@("`@("`@("`@(BP*(B`@("`@("`@+BXN
  272. XM+BXN+BXN+BX@("`@("`@("(L"B(@("`@("`@+BXN+BXN+BXN+BXN+B`@("`@
  273. XM("`B+`HB("`@("`@+BXN+BXN+BXN+BXN+BXN("`@("`@(BP*(B`@("`@+BXN
  274. XM+BXN+BXN+BXN+BXN+BX@("`@("(L"B(@("`@+BXN+BXN+BXN+BXN+BXN+BXN
  275. XM+B`@("`B+`HB("`@("XN+BXN+BXN+BXN+BXN+BXN+BX@("`@(BP*(B`@("`N
  276. XM+BXN+BXN+BXN+BXN+BXN+BXN("`@("(L"B(@("`N+BXN+BXN+BXN+BXN+BXN
  277. XM+BXN+BX@("`B+`HB("`@+BXN+BXN+BXN+BXN+BXN+BXN+BXN("`@(BP*(B`@
  278. XM("XN+BXN+BXN+BXN+BXN+BXN+BXN+B`@("(L"B(@("`N+BXN+BXN+BXN+BXN
  279. XM+BXN+BXN+BX@("`B+`HB("`@+BXN+BXN+BXN+BXN+BXN+BXN+BXN("`@(BP*
  280. XM(B`@("`N+BXN+BXN+BXN+BXN+BXN+BXN("`@("(L"B(@("`@+BXN+BXN+BXN
  281. XM+BXN+BXN+BXN+B`@("`B+`HB("`@("XN+BXN+BXN+BXN+BXN+BXN+BX@("`@
  282. XM(BP*(B`@("`@+BXN+BXN+BXN+BXN+BXN+BX@("`@("(L"B(@("`@("`N+BXN
  283. XM+BXN+BXN+BXN+BX@("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  284. XM("`@(BP*(B`@("`@("`@+BXN+BXN+BXN+BX@("`@("`@("(L"B(@("`@("`@
  285. XM("`@("XN+BXN("`@("`@("`@("`B+`HB("`@("`@("`@("`@("`@("`@("`@
  286. XM("`@("`@(BP*(B`@("`@("`@("`@("`@("`@("`@("`@("`@("(L"B(@("`@
  287. X;("`@("`@("`@("`@("`@("`@("`@("`B?3L*
  288. X`
  289. Xend
  290. END_OF_FILE
  291. if test 1309 -ne `wc -c <'bitmaps/exx2bonus1.xpm.uu'`; then
  292.     echo shar: \"'bitmaps/exx2bonus1.xpm.uu'\" unpacked with wrong size!
  293. fi
  294. # end of 'bitmaps/exx2bonus1.xpm.uu'
  295. fi
  296. if test -f 'bitmaps/exx2bonus2.xpm.uu' -a "${1}" != "-c" ; then 
  297.   echo shar: Will not clobber existing file \"'bitmaps/exx2bonus2.xpm.uu'\"
  298. else
  299. echo shar: Extracting \"'bitmaps/exx2bonus2.xpm.uu'\" \(1309 characters\)
  300. sed "s/^X//" >'bitmaps/exx2bonus2.xpm.uu' <<'END_OF_FILE'
  301. Xbegin 644 exx2bonus2.xpm
  302. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@97AX,F)O;G5S,E]X<&U;72`]('L*
  303. XM(C(W(#(W(#(@,2(L"B(@"7,@3F]N90EC($YO;F4B+`HB+@EC(&=O;&0B+`HB
  304. XM("`@("`@("`@("`@("`@("`@("`@("`@("`@(BP*(B`@("`@("`@("`@("`@
  305. XM("`@("`@("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@("`B
  306. XM+`HB("`@("`@("`@("`@("`@("`@("`@("`@("`@(BP*(B`@("`@("`@("`@
  307. XM("`@("`@("`@("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@
  308. XM("`B+`HB("`@("`@("`@("`@("X@("`@("`@("`@("`@(BP*(B`@("`@("`@
  309. XM("`N+BXN+BXN("`@("`@("`@("(L"B(@("`@("`@("XN+BXN+BXN+BXN("`@
  310. XM("`@("`B+`HB("`@("`@("`N+BXN+BXN+BXN+B`@("`@("`@(BP*(B`@("`@
  311. XM("`N+BXN+BXN+BXN+BXN("`@("`@("(L"B(@("`@("`@+BXN+BXN+BXN+BXN
  312. XM+B`@("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@
  313. XM("`@("XN+BXN+BXN+BXN+BXN+B`@("`@("(L"B(@("`@("`@+BXN+BXN+BXN
  314. XM+BXN+B`@("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*
  315. XM(B`@("`@("`N+BXN+BXN+BXN+BXN("`@("`@("(L"B(@("`@("`@("XN+BXN
  316. XM+BXN+BXN("`@("`@("`B+`HB("`@("`@("`N+BXN+BXN+BXN+B`@("`@("`@
  317. XM(BP*(B`@("`@("`@("`N+BXN+BXN("`@("`@("`@("(L"B(@("`@("`@("`@
  318. XM("`@+B`@("`@("`@("`@("`B+`HB("`@("`@("`@("`@("`@("`@("`@("`@
  319. XM("`@(BP*(B`@("`@("`@("`@("`@("`@("`@("`@("`@("(L"B(@("`@("`@
  320. XM("`@("`@("`@("`@("`@("`@("`B+`HB("`@("`@("`@("`@("`@("`@("`@
  321. XM("`@("`@(BP*(B`@("`@("`@("`@("`@("`@("`@("`@("`@("(L"B(@("`@
  322. X;("`@("`@("`@("`@("`@("`@("`@("`B?3L*
  323. X`
  324. Xend
  325. END_OF_FILE
  326. if test 1309 -ne `wc -c <'bitmaps/exx2bonus2.xpm.uu'`; then
  327.     echo shar: \"'bitmaps/exx2bonus2.xpm.uu'\" unpacked with wrong size!
  328. fi
  329. # end of 'bitmaps/exx2bonus2.xpm.uu'
  330. fi
  331. if test -f 'bitmaps/exx2bonus3.xpm.uu' -a "${1}" != "-c" ; then 
  332.   echo shar: Will not clobber existing file \"'bitmaps/exx2bonus3.xpm.uu'\"
  333. else
  334. echo shar: Extracting \"'bitmaps/exx2bonus3.xpm.uu'\" \(1309 characters\)
  335. sed "s/^X//" >'bitmaps/exx2bonus3.xpm.uu' <<'END_OF_FILE'
  336. Xbegin 644 exx2bonus3.xpm
  337. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@97AX,F)O;G5S,U]X<&U;72`]('L*
  338. XM(C(W(#(W(#(@,2(L"B(@"7,@3F]N90EC($YO;F4B+`HB+@EC(&=O;&0B+`HB
  339. XM("`@("`@("`@("`@("`@("`@("`@("`@("`@(BP*(B`@("`@("`@("`@("`@
  340. XM("`@("`@("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@("`B
  341. XM+`HB("`@("`@("`@("`@("`@("`@("`@("`@("`@(BP*(B`@("`@("`@("`@
  342. XM("`@("`@("`@("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@
  343. XM("`B+`HB("`@("`@("`@("`@("`@("`@("`@("`@("`@(BP*(B`@("`@("`@
  344. XM("`@("`@("`@("`@("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@
  345. XM("`@("`B+`HB("`@("`@("`@("`@("`@("`@("`@("`@("`@(BP*(B`@("`@
  346. XM("`@("`@("XN+B`@("`@("`@("`@("(L"B(@("`@("`@("`@("XN+BXN("`@
  347. XM("`@("`@("`B+`HB("`@("`@("`@("XN+BXN+BX@("`@("`@("`@(BP*(B`@
  348. XM("`@("`@("`N+BXN+BXN("`@("`@("`@("(L"B(@("`@("`@("`@+BXN+BXN
  349. XM+B`@("`@("`@("`B+`HB("`@("`@("`@("`N+BXN+B`@("`@("`@("`@(BP*
  350. XM(B`@("`@("`@("`@("XN+B`@("`@("`@("`@("(L"B(@("`@("`@("`@("`@
  351. XM("`@("`@("`@("`@("`B+`HB("`@("`@("`@("`@("`@("`@("`@("`@("`@
  352. XM(BP*(B`@("`@("`@("`@("`@("`@("`@("`@("`@("(L"B(@("`@("`@("`@
  353. XM("`@("`@("`@("`@("`@("`B+`HB("`@("`@("`@("`@("`@("`@("`@("`@
  354. XM("`@(BP*(B`@("`@("`@("`@("`@("`@("`@("`@("`@("(L"B(@("`@("`@
  355. XM("`@("`@("`@("`@("`@("`@("`B+`HB("`@("`@("`@("`@("`@("`@("`@
  356. XM("`@("`@(BP*(B`@("`@("`@("`@("`@("`@("`@("`@("`@("(L"B(@("`@
  357. X;("`@("`@("`@("`@("`@("`@("`@("`B?3L*
  358. X`
  359. Xend
  360. END_OF_FILE
  361. if test 1309 -ne `wc -c <'bitmaps/exx2bonus3.xpm.uu'`; then
  362.     echo shar: \"'bitmaps/exx2bonus3.xpm.uu'\" unpacked with wrong size!
  363. fi
  364. # end of 'bitmaps/exx2bonus3.xpm.uu'
  365. fi
  366. if test -f 'bitmaps/leftarrow.xpm.uu' -a "${1}" != "-c" ; then 
  367.   echo shar: Will not clobber existing file \"'bitmaps/leftarrow.xpm.uu'\"
  368. else
  369. echo shar: Extracting \"'bitmaps/leftarrow.xpm.uu'\" \(1208 characters\)
  370. sed "s/^X//" >'bitmaps/leftarrow.xpm.uu' <<'END_OF_FILE'
  371. Xbegin 644 leftarrow.xpm
  372. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@;&5F=&%R<F]W7WAP;5M=(#T@>PHB
  373. XM,S4@,3D@-"`Q(BP*(B`)<R!.;VYE"6,@3F]N92(L"B(N"6,@<F5D(BP*(E@)
  374. XM8R!R960R(BP*(F\)8R!R960S(BP*(B`@("`@("`@("X@("`@("`@("`@("`@
  375. XM("`@("`@("`@("`@(BP*(B`@("`@("`@+BX@("`@("`@("`@("`@("`@("`@
  376. XM("`@("`@(BP*(B`@("`@("`N+BX@("`@("`@("`@("`@("`@("`@("`@("`@
  377. XM(BP*(B`@("`@("XN+BX@("`@("`@("`@("`@("`@("`@("`@("`@(BP*(B`@
  378. XM("`@+BXN+BY8+EA86"!86%A86"!86%AO(%AO;R!O;R!O(BP*(B`@("`N+BXN
  379. XM+E@N6%A86"!86%A86"!86&]8(&]O;R!O;R!O(BP*(B`@("XN+BXN+BY8+EA8
  380. XM6"!86%A86"!86%AO(%AO;R!O;R!O(BP*(B`@+BXN+BXN+E@N6%A86"!86%A8
  381. XM6"!86&]8(&]O;R!O;R!O(BP*(B`N+BXN+BXN+BY8+EA86"!86%A86"!86%AO
  382. XM(%AO;R!O;R!O(BP*(BXN+BXN+BXN+E@N6%A86"!86%A86"!86&]8(&]O;R!O
  383. XM;R!O(BP*(B`N+BXN+BXN+BY8+EA86"!86%A86"!86%AO(%AO;R!O;R!O(BP*
  384. XM(B`@+BXN+BXN+E@N6%A86"!86%A86"!86&]8(&]O;R!O;R!O(BP*(B`@("XN
  385. XM+BXN+BY8+EA86"!86%A86"!86%AO(%AO;R!O;R!O(BP*(B`@("`N+BXN+E@N
  386. XM6%A86"!86%A86"!86&]8(&]O;R!O;R!O(BP*(B`@("`@+BXN+BY8+EA86"!8
  387. XM6%A86"!86%AO(%AO;R!O;R!O(BP*(B`@("`@("XN+BX@("`@("`@("`@("`@
  388. XM("`@("`@("`@("`@(BP*(B`@("`@("`N+BX@("`@("`@("`@("`@("`@("`@
  389. XM("`@("`@(BP*(B`@("`@("`@+BX@("`@("`@("`@("`@("`@("`@("`@("`@
  390. XK(BP*(B`@("`@("`@("X@("`@("`@("`@("`@("`@("`@("`@("`@(GT["B`@
  391. X`
  392. Xend
  393. END_OF_FILE
  394. if test 1208 -ne `wc -c <'bitmaps/leftarrow.xpm.uu'`; then
  395.     echo shar: \"'bitmaps/leftarrow.xpm.uu'\" unpacked with wrong size!
  396. fi
  397. # end of 'bitmaps/leftarrow.xpm.uu'
  398. fi
  399. if test -f 'bitmaps/paddleshrink.xpm.uu' -a "${1}" != "-c" ; then 
  400.   echo shar: Will not clobber existing file \"'bitmaps/paddleshrink.xpm.uu'\"
  401. else
  402. echo shar: Extracting \"'bitmaps/paddleshrink.xpm.uu'\" \(1221 characters\)
  403. sed "s/^X//" >'bitmaps/paddleshrink.xpm.uu' <<'END_OF_FILE'
  404. Xbegin 644 paddleshrink.xpm
  405. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@<&%D9&QE<VAR:6YK7WAP;5M=(#T@
  406. XM>PHB-#`@,34@.2`Q(BP*(B`)<R!.;VYE"6,@3F]N92(L"B(N"6,@=VAI=&4B
  407. XM+`HB6`EC(')E9"(L"B)O"6,@8FQU92(L"B)/"6,@9W)E>3,P(BP*(BL)8R!G
  408. XM<F%Y-#`B+`HB0`EC("-"-T(W0C="-T(W0C<B+`HB(PEC(&=R87DX,"(L"B(D
  409. XM"6,@(T8T1C1&-$8T1C1&-"(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@
  410. XM("`@("`@("`@("`@("`@(BP*(B`@("`@("`@("`N("`@(%A86%A86%A86%A8
  411. XM6%A86%A86%A86%@@("`B+`HB("`@("`@("`N+BX@("!86%A86%A86%A86%A8
  412. XM6%A86%A86%A86%@@("(L"B(@("`@("`N+F]O+B`@6%A83T]/3T]/3T]/3T]/
  413. XM3T]/3T]/3T]86%@@(BP*(B`@("`@+F]O;V\N("!86$]/*RLK*RLK*RLK*RLK
  414. XM*RLK*RLK3T]86"`B+`HB("`@+BYO;V]O;RX@(%A83T!`0$!`0$!`0$!`0$!`
  415. XM0$!`0$!`3UA8("(L"B(@+BYO;V]O;V]O+B`@6%A/(R,C(R,C(R,C(R,C(R,C
  416. XM(R,C(R-/6%@@(BP*(BYO;V]O;V]O;V\N("!86$\D)"0D)"0D)"0D)"0D)"0D
  417. XM)"0D)$]86"`B+`HB("XN;V]O;V]O;RX@(%A83R,C(R,C(R,C(R,C(R,C(R,C
  418. XM(R,C3UA8("(L"B(@("`N+F]O;V]O+B`@6%A/0$!`0$!`0$!`0$!`0$!`0$!`
  419. XM0$!/6%@@(BP*(B`@("`@+F]O;V\N("!86$]/*RLK*RLK*RLK*RLK*RLK*RLK
  420. XM3T]86"`B+`HB("`@("`@+BYO;RX@(%A86$]/3T]/3T]/3T]/3T]/3T]/3T]/
  421. XM6%A8("(L"B(@("`@("`@("XN+B`@(%A86%A86%A86%A86%A86%A86%A86%A8
  422. XM6"`@(BP*(B`@("`@("`@("`N("`@(%A86%A86%A86%A86%A86%A86%A86%@@
  423. XM("`B+`HB("`@("`@("`@("`@("`@("`@("`@("`@("`@("`@("`@("`@("`@
  424. X%(")].PHB
  425. X`
  426. Xend
  427. END_OF_FILE
  428. if test 1221 -ne `wc -c <'bitmaps/paddleshrink.xpm.uu'`; then
  429.     echo shar: \"'bitmaps/paddleshrink.xpm.uu'\" unpacked with wrong size!
  430. fi
  431. # end of 'bitmaps/paddleshrink.xpm.uu'
  432. fi
  433. if test -f 'bitmaps/paddlesmall.xpm.uu' -a "${1}" != "-c" ; then 
  434.   echo shar: Will not clobber existing file \"'bitmaps/paddlesmall.xpm.uu'\"
  435. else
  436. echo shar: Extracting \"'bitmaps/paddlesmall.xpm.uu'\" \(1182 characters\)
  437. sed "s/^X//" >'bitmaps/paddlesmall.xpm.uu' <<'END_OF_FILE'
  438. Xbegin 644 paddlesmall.xpm
  439. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@<&%D9&QE<VUA;&Q?>'!M6UT@/2![
  440. XM"B(T,"`Q-2`W(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!R960B+`HB
  441. XM6`EC(&=R97DS,"(L"B)O"6,@9W)A>30P(BP*(D\)8R`C0C="-T(W0C="-T(W
  442. XM(BP*(BL)8R!G<F%Y.#`B+`HB0`EC("-&-$8T1C1&-$8T1C0B+`HB("`@("`@
  443. XM("`@("`@("`@("`@("`@("`@("`@("`@("`@("`@("`@("(L"B(@("`N+BXN
  444. XM+BXN+BXN+BXN+BXN+BXN+BXN+BXN+BXN+BXN+BXN("`@(BP*(B`@+BXN+BXN
  445. XM+BXN+BXN+BXN+BXN+BXN+BXN+BXN+BXN+BXN+BXN("`B+`HB("XN+EA86%A8
  446. XM6%A86%A86%A86%A86%A86%A86%A86%A86%A8+BXN("(L"B(@+BY86&]O;V]O
  447. XM;V]O;V]O;V]O;V]O;V]O;V]O;V]O;V]O;UA8+BX@(BP*(B`N+EA/3T]/3T]/
  448. XM3T]/3T]/3T]/3T]/3T]/3T]/3T]/3T]/3U@N+B`B+`HB("XN6"LK*RLK*RLK
  449. XM*RLK*RLK*RLK*RLK*RLK*RLK*RLK*RLK6"XN("(L"B(@+BY80$!`0$!`0$!`
  450. XM0$!`0$!`0$!`0$!`0$!`0$!`0$!`0$!8+BX@(BP*(B`N+E@K*RLK*RLK*RLK
  451. XM*RLK*RLK*RLK*RLK*RLK*RLK*RLK*U@N+B`B+`HB("XN6$]/3T]/3T]/3T]/
  452. XM3T]/3T]/3T]/3T]/3T]/3T]/3T]/6"XN("(L"B(@+BY86&]O;V]O;V]O;V]O
  453. XM;V]O;V]O;V]O;V]O;V]O;V]O;UA8+BX@(BP*(B`N+BY86%A86%A86%A86%A8
  454. XM6%A86%A86%A86%A86%A86%A86"XN+B`B+`HB("`N+BXN+BXN+BXN+BXN+BXN
  455. XM+BXN+BXN+BXN+BXN+BXN+BXN+BX@("(L"B(@("`N+BXN+BXN+BXN+BXN+BXN
  456. XM+BXN+BXN+BXN+BXN+BXN+BXN("`@(BP*(B`@("`@("`@("`@("`@("`@("`@
  457. X8("`@("`@("`@("`@("`@("`@("`B?3L*
  458. X`
  459. Xend
  460. END_OF_FILE
  461. if test 1182 -ne `wc -c <'bitmaps/paddlesmall.xpm.uu'`; then
  462.     echo shar: \"'bitmaps/paddlesmall.xpm.uu'\" unpacked with wrong size!
  463. fi
  464. # end of 'bitmaps/paddlesmall.xpm.uu'
  465. fi
  466. if test -f 'bitmaps/reverse.xpm.uu' -a "${1}" != "-c" ; then 
  467.   echo shar: Will not clobber existing file \"'bitmaps/reverse.xpm.uu'\"
  468. else
  469. echo shar: Extracting \"'bitmaps/reverse.xpm.uu'\" \(1016 characters\)
  470. sed "s/^X//" >'bitmaps/reverse.xpm.uu' <<'END_OF_FILE'
  471. Xbegin 644 reverse.xpm
  472. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@<F5V97)S95]X<&U;72`]('L*(C,S
  473. XM(#$V(#4@,2(L"B(@"7,@3F]N90EC($YO;F4B+`HB+@EC('=H:71E(BP*(E@)
  474. XM8R!R960R(BP*(F\)8R!R960S(BP*(D\)8R!R960Q(BP*(B`@("XN+BXN+BXN
  475. XM+BXN+BXN+BX@("`@("`@("X@("`@("(L"B(@("Y86%A86%AO6&]O;V]O;V]O
  476. XM+B`@("`@("Y/+B`@("`B+`HB("`N6%A86%A86&]8;V]O;V]O;RX@("`@("Y/
  477. XM3T\N("`@(BP*(B`@+EA86%A86&]8;V]O;V]O;V\N("`@("Y/3T]/3RX@("(L
  478. XM"B(@("Y86%A86%A8;UAO;V]O;V]O+B`@("Y/3T]/3T]/+B`B+`HB("`N6$]8
  479. XM3UA8;UAO;V]O;V]O;RX@("Y/3T]/3T]/3T\N(BP*(B`@+D]83UA/+BXN+BXN
  480. XM+BXN+BX@("`@+BY/3T]/3RXN("(L"B(@("Y83UA/6"X@("`@("`@("`@("`@
  481. XM("`N3T]/3T\N("`B+`HB("`N3T]/3T\N("`@("`@("`@("`@("`@+EA/6$]8
  482. XM+B`@(BP*(B`N+D]/3T]/+BX@("`@+BXN+BXN+BXN+BY/6$]83RX@("(L"B(N
  483. XM3T]/3T]/3T]/+B`@+F]O;V]O;V]O6&]86$]83U@N("`B+`HB("Y/3T]/3T]/
  484. XM+B`@("YO;V]O;V]O6&]86%A86%A8+B`@(BP*(B`@+D]/3T]/+B`@("`N;V]O
  485. XM;V]O;V]8;UA86%A86"X@("(L"B(@("`N3T]/+B`@("`@+F]O;V]O;V]8;UA8
  486. XM6%A86%@N("`B+`HB("`@("Y/+B`@("`@("YO;V]O;V]O;UAO6%A86%A8+B`@
  487. XI(BP*(B`@("`@+B`@("`@("`@+BXN+BXN+BXN+BXN+BXN+B`@(")].PI8
  488. X`
  489. Xend
  490. END_OF_FILE
  491. if test 1016 -ne `wc -c <'bitmaps/reverse.xpm.uu'`; then
  492.     echo shar: \"'bitmaps/reverse.xpm.uu'\" unpacked with wrong size!
  493. fi
  494. # end of 'bitmaps/reverse.xpm.uu'
  495. fi
  496. if test -f 'bitmaps/rightarrow.xpm.uu' -a "${1}" != "-c" ; then 
  497.   echo shar: Will not clobber existing file \"'bitmaps/rightarrow.xpm.uu'\"
  498. else
  499. echo shar: Extracting \"'bitmaps/rightarrow.xpm.uu'\" \(1209 characters\)
  500. sed "s/^X//" >'bitmaps/rightarrow.xpm.uu' <<'END_OF_FILE'
  501. Xbegin 644 rightarrow.xpm
  502. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@<FEG:'1A<G)O=U]X<&U;72`]('L*
  503. XM(C,U(#$Y(#0@,2(L"B(@"7,@3F]N90EC($YO;F4B+`HB+@EC(')E9"(L"B)8
  504. XM"6,@<F5D,R(L"B)O"6,@<F5D,B(L"B(@("`@("`@("`@("`@("`@("`@("`@
  505. XM("`@+B`@("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@+BX@
  506. XM("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@+BXN("`@("`@
  507. XM("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@+BXN+B`@("`@("(L"B)8
  508. XM(%A8(%A8;R!8;V]O(&]O;V]O(&]O;RYO+BXN+BX@("`@("(L"B)8(%A8(%A8
  509. XM6"!O6&]O(&]O;V]O(&]O;V\N;RXN+BXN("`@("(L"B)8(%A8(%A8;R!8;V]O
  510. XM(&]O;V]O(&]O;RYO+BXN+BXN+B`@("(L"B)8(%A8(%A86"!O6&]O(&]O;V]O
  511. XM(&]O;V\N;RXN+BXN+BX@("(L"B)8(%A8(%A8;R!8;V]O(&]O;V]O(&]O;RYO
  512. XM+BXN+BXN+BXN("(L"B)8(%A8(%A86"!O6&]O(&]O;V]O(&]O;V\N;RXN+BXN
  513. XM+BXN+B(L"B)8(%A8(%A8;R!8;V]O(&]O;V]O(&]O;RYO+BXN+BXN+BXN("(L
  514. XM"B)8(%A8(%A86"!O6&]O(&]O;V]O(&]O;V\N;RXN+BXN+BX@("(L"B)8(%A8
  515. XM(%A8;R!8;V]O(&]O;V]O(&]O;RYO+BXN+BXN+B`@("(L"B)8(%A8(%A86"!O
  516. XM6&]O(&]O;V]O(&]O;V\N;RXN+BXN("`@("(L"B)8(%A8(%A8;R!8;V]O(&]O
  517. XM;V]O(&]O;RYO+BXN+BX@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@
  518. XM("`@+BXN+B`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@+BXN
  519. XM("`@("`@("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@+BX@("`@("`@
  520. XL("(L"B(@("`@("`@("`@("`@("`@("`@("`@("`@+B`@("`@("`@(")].PH@
  521. X`
  522. Xend
  523. END_OF_FILE
  524. if test 1209 -ne `wc -c <'bitmaps/rightarrow.xpm.uu'`; then
  525.     echo shar: \"'bitmaps/rightarrow.xpm.uu'\" unpacked with wrong size!
  526. fi
  527. # end of 'bitmaps/rightarrow.xpm.uu'
  528. fi
  529. if test -f 'bitmaps/tink.xpm.uu' -a "${1}" != "-c" ; then 
  530.   echo shar: Will not clobber existing file \"'bitmaps/tink.xpm.uu'\"
  531. else
  532. echo shar: Extracting \"'bitmaps/tink.xpm.uu'\" \(241 characters\)
  533. sed "s/^X//" >'bitmaps/tink.xpm.uu' <<'END_OF_FILE'
  534. Xbegin 644 tink.xpm
  535. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@=&EN:U]X<&U;72`]('L*(C$P(#4@
  536. XM,B`Q(BP*(B`)<R!.;VYE"6,@3F]N92(L"B(N"6,@>65L;&]W(BP*(B`N+BXN
  537. XM+BXN+B`B+`HB("XN("X@("X@("(L"B(@("X@+BX@+B`@(BP*(B`N("XN("X@
  538. X4+B`B+`HB+B`@("X@+B`@+B)].PHL
  539. X`
  540. Xend
  541. END_OF_FILE
  542. if test 241 -ne `wc -c <'bitmaps/tink.xpm.uu'`; then
  543.     echo shar: \"'bitmaps/tink.xpm.uu'\" unpacked with wrong size!
  544. fi
  545. # end of 'bitmaps/tink.xpm.uu'
  546. fi
  547. if test -f 'bitmaps/walloff.xpm.uu' -a "${1}" != "-c" ; then 
  548.   echo shar: Will not clobber existing file \"'bitmaps/walloff.xpm.uu'\"
  549. else
  550. echo shar: Extracting \"'bitmaps/walloff.xpm.uu'\" \(1150 characters\)
  551. sed "s/^X//" >'bitmaps/walloff.xpm.uu' <<'END_OF_FILE'
  552. Xbegin 644 walloff.xpm
  553. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@=V%L;&]F9E]X<&U;72`]('L*(C(W
  554. XM(#(S(#,@,2(L"B(@"7,@3F]N90EC($YO;F4B+`HB+@EC(')E9"(L"B)8"6,@
  555. XM8FQU92(L"B(@("`@("`@+BXN+BX@("`@("`@("`@("`@("`B+`HB("`@("`@
  556. XM("XN+BXN("`@("`@("`@("`@("`@(BP*(B`@("`@("`N+BXN+B`@("`@("`@
  557. XM("`@("`@("(L"B(@("`@("`@+BXN+BX@("`@("!8("`@("`@("`B+`HB("`@
  558. XM("`@("XN+BXN("`@("`@6%@@("`@("`@(BP*(B`@("`@("`N+BXN+B`@("`@
  559. XM(%A86"`@("`@("(L"B)86%A86%A86"Y86%@@6%A8(%A86%A8("`@("`B+`HB
  560. XM6%A86%A86%@N6%A8(%A86"!86%A86%@@("`@(BP*(EA86%A86%A8+EA86"!8
  561. XM6%@@6%A86%A86"`@("(L"B)86%A86%A86"Y86%@@6%A8(%A86%A86%A8("`B
  562. XM+`HB6%A86%A86%@N6%A8(%A86"!86%A86%A86%@@(BP*(EA86%A86%A8+EA8
  563. XM6"!86%@@6%A86%A86%A86"(L"B)86%A86%A86"Y86%@@6%A8(%A86%A86%A8
  564. XM6"`B+`HB6%A86%A86%@N6%A8(%A86"!86%A86%A86"`@(BP*(EA86%A86%A8
  565. XM+EA86"!86%@@6%A86%A86"`@("(L"B)86%A86%A86"Y86%@@6%A8(%A86%A8
  566. XM6"`@("`B+`HB6%A86%A86%@N6%A8(%A86"!86%A86"`@("`@(BP*(B`@("`@
  567. XM("`N+BXN+B`@("`@(%A86"`@("`@("(L"B(@("`@("`@+BXN+BX@("`@("!8
  568. XM6"`@("`@("`B+`HB("`@("`@("XN+BXN("`@("`@6"`@("`@("`@(BP*(B`@
  569. XM("`@("`N+BXN+B`@("`@("`@("`@("`@("(L"B(@("`@("`@+BXN+BX@("`@
  570. XM("`@("`@("`@("`B+`HB("`@("`@("XN+BXN("`@("`@("`@("`@("`@(GT[
  571. X!"B`@
  572. X`
  573. Xend
  574. END_OF_FILE
  575. if test 1150 -ne `wc -c <'bitmaps/walloff.xpm.uu'`; then
  576.     echo shar: \"'bitmaps/walloff.xpm.uu'\" unpacked with wrong size!
  577. fi
  578. # end of 'bitmaps/walloff.xpm.uu'
  579. fi
  580. if test -f 'bitmaps/x2bonus1.xpm.uu' -a "${1}" != "-c" ; then 
  581.   echo shar: Will not clobber existing file \"'bitmaps/x2bonus1.xpm.uu'\"
  582. else
  583. echo shar: Extracting \"'bitmaps/x2bonus1.xpm.uu'\" \(1323 characters\)
  584. sed "s/^X//" >'bitmaps/x2bonus1.xpm.uu' <<'END_OF_FILE'
  585. Xbegin 644 x2bonus1.xpm
  586. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@>#)B;VYU<S%?>'!M6UT@/2!["B(R
  587. XM-R`R-R`S(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!G;VQD(BP*(E@)
  588. XM8R!B;&%C:R(L"B(@("`@("`@("`N+BXN+BXN+BX@("`@("`@("`B+`HB("`@
  589. XM("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@("`@+BXN+BXN6%A86%@N
  590. XM+BXN+BX@("`@("(L"B(@("`@+BXN+EA86%A86%A86%A8+BXN+B`@("`B+`HB
  591. XM("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@(BP*(B`@+BXN6%A86%A86%A8
  592. XM6%A86%A86%@N+BX@("(L"B(@("XN+EA86%A86%A86%A86%A86%A8+BXN("`B
  593. XM+`HB("XN+EA86%A86%A86%A86%A86%A86%@N+BX@(BP*(B`N+EA86%A86%A8
  594. XM6%A86"XN+BXN6%A86"XN("(L"B(N+BY86%A86%A86%A86"XN+EA8+BY86%@N
  595. XM+BXB+`HB+BXN6%A8+BY86%@N+E@N+EA86"XN6%A8+BXN(BP*(BXN6%A86"XN
  596. XM6%A8+BY86%A86"XN+EA86%@N+B(L"B(N+EA86%A8+BY8+BY86%A86%@N+EA8
  597. XM6%A8+BXB+`HB+BY86%A86%@N+BY86%A86"XN+EA86%A86"XN(BP*(BXN6%A8
  598. XM6%A8+BXN6%A86"XN+EA86%A86%@N+B(L"B(N+EA86%A8+BY8+BY86"XN+EA8
  599. XM6%A86%A8+BXB+`HB+BXN6%A8+BY86%@N+E@N+EA86%A86%A8+BXN(BP*(BXN
  600. XM+EA86"XN6%A8+BY8+BXN+BXN+EA86"XN+B(L"B(@+BY86%A86%A86%A86%A8
  601. XM6%A86%A86%@N+B`B+`HB("XN+EA86%A86%A86%A86%A86%A86%@N+BX@(BP*
  602. XM(B`@+BXN6%A86%A86%A86%A86%A86%@N+BX@("(L"B(@("XN+EA86%A86%A8
  603. XM6%A86%A86%A8+BXN("`B+`HB("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@
  604. XM(BP*(B`@("`N+BXN6%A86%A86%A86%@N+BXN("`@("(L"B(@("`@("XN+BXN
  605. XM+EA86%A8+BXN+BXN("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  606. XF("`@(BP*(B`@("`@("`@("XN+BXN+BXN+B`@("`@("`@(")].PHN
  607. X`
  608. Xend
  609. END_OF_FILE
  610. if test 1323 -ne `wc -c <'bitmaps/x2bonus1.xpm.uu'`; then
  611.     echo shar: \"'bitmaps/x2bonus1.xpm.uu'\" unpacked with wrong size!
  612. fi
  613. # end of 'bitmaps/x2bonus1.xpm.uu'
  614. fi
  615. if test -f 'bitmaps/x2bonus2.xpm.uu' -a "${1}" != "-c" ; then 
  616.   echo shar: Will not clobber existing file \"'bitmaps/x2bonus2.xpm.uu'\"
  617. else
  618. echo shar: Extracting \"'bitmaps/x2bonus2.xpm.uu'\" \(1323 characters\)
  619. sed "s/^X//" >'bitmaps/x2bonus2.xpm.uu' <<'END_OF_FILE'
  620. Xbegin 644 x2bonus2.xpm
  621. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@>#)B;VYU<S)?>'!M6UT@/2!["B(R
  622. XM-R`R-R`S(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!G;VQD(BP*(E@)
  623. XM8R!B;&%C:R(L"B(@("`@("`@("`N+BXN+BXN+BX@("`@("`@("`B+`HB("`@
  624. XM("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@("`@+BXN+BXN6%A86%@N
  625. XM+BXN+BX@("`@("(L"B(@("`@+BXN+EA86%A86%A86%A8+BXN+B`@("`B+`HB
  626. XM("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@(BP*(B`@+BXN6%A86%A86%A8
  627. XM6%A86%A86%@N+BX@("(L"B(@("XN+EA86%@N+EA86%@N+EA86%A8+BXN("`B
  628. XM+`HB("XN+EA86%A8+BXN6%@N+BY86%A86%@N+BX@(BP*(B`N+EA86%A86%A8
  629. XM+BXN+EA86%A86%A86"XN("(L"B(N+BY86%A86%A86%@N+EA86%A86%A86%@N
  630. XM+BXB+`HB+BXN6%A86%A86%@N+BXN6%A86%A86%A8+BXN(BP*(BXN6%A86%A8
  631. XM6"XN+EA8+BXN6%A86%A86%@N+B(L"B(N+EA86%A86%@N+EA86%@N+EA86%A8
  632. XM6%A8+BXB+`HB+BY86%A86%A86%A86%A86%A86%A86%A86"XN(BP*(BXN6%A8
  633. XM6%A86"XN+EA86%@N+EA86%A86%@N+B(L"B(N+EA86%A86%@N+BXN6%A8+BXN
  634. XM6%A86%A8+BXB+`HB+BXN6%A86%A8+E@N+BY86%@N+EA86%A8+BXN(BP*(BXN
  635. XM+EA86%A86"Y86"XN6%A86"Y86%A86"XN+B(L"B(@+BY86%A86%@N6%A8+BXN
  636. XM6%@N6%A86%@N+B`B+`HB("XN+EA86%A8+EA86%@N+BXN+EA86%@N+BX@(BP*
  637. XM(B`@+BXN6%A86"Y86%A86"XN+EA86%@N+BX@("(L"B(@("XN+EA86%A86%A8
  638. XM6%A86%A86%A8+BXN("`B+`HB("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@
  639. XM(BP*(B`@("`N+BXN6%A86%A86%A86%@N+BXN("`@("(L"B(@("`@("XN+BXN
  640. XM+EA86%A8+BXN+BXN("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  641. XF("`@(BP*(B`@("`@("`@("XN+BXN+BXN+B`@("`@("`@(")].PHN
  642. X`
  643. Xend
  644. END_OF_FILE
  645. if test 1323 -ne `wc -c <'bitmaps/x2bonus2.xpm.uu'`; then
  646.     echo shar: \"'bitmaps/x2bonus2.xpm.uu'\" unpacked with wrong size!
  647. fi
  648. # end of 'bitmaps/x2bonus2.xpm.uu'
  649. fi
  650. if test -f 'bitmaps/x2bonus3.xpm.uu' -a "${1}" != "-c" ; then 
  651.   echo shar: Will not clobber existing file \"'bitmaps/x2bonus3.xpm.uu'\"
  652. else
  653. echo shar: Extracting \"'bitmaps/x2bonus3.xpm.uu'\" \(1323 characters\)
  654. sed "s/^X//" >'bitmaps/x2bonus3.xpm.uu' <<'END_OF_FILE'
  655. Xbegin 644 x2bonus3.xpm
  656. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@>#)B;VYU<S-?>'!M6UT@/2!["B(R
  657. XM-R`R-R`S(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!G;VQD(BP*(E@)
  658. XM8R!B;&%C:R(L"B(@("`@("`@("`N+BXN+BXN+BX@("`@("`@("`B+`HB("`@
  659. XM("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@("`@+BXN+BXN6%A86%@N
  660. XM+BXN+BX@("`@("(L"B(@("`@+BXN+EA86%A86%A86%A8+BXN+B`@("`B+`HB
  661. XM("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@(BP*(B`@+BXN6%A86%A86%A8
  662. XM6%A86%A86%@N+BX@("(L"B(@("XN+EA86%A86%A86%A86%A86%A8+BXN("`B
  663. XM+`HB("XN+EA86%A86%A86%A86%A86%A86%@N+BX@(BP*(B`N+EA86%A86%A8
  664. XM6%A86%A86%A86%A86"XN("(L"B(N+BY86%@N+BXN+BXN6"XN6%A8+BY86%@N
  665. XM+BXB+`HB+BXN6%A86%A86%@N+E@N+EA86"XN6%A8+BXN(BP*(BXN6%A86%A8
  666. XM6%@N+BY86"XN6"XN6%A86%@N+B(L"B(N+EA86%A86%@N+BY86%A8+BXN6%A8
  667. XM6%A8+BXB+`HB+BY86%A86%@N+BY86%A86"XN+EA86%A86"XN(BP*(BXN6%A8
  668. XM6%@N+EA86%A86"XN6"XN6%A86%@N+B(L"B(N+EA86%@N+BY86%A86"XN6%A8
  669. XM+BY86%A8+BXB+`HB+BXN6%A8+BY86%@N+E@N+EA86"XN6%A8+BXN(BP*(BXN
  670. XM+EA86"XN6%@N+BY86%A86%A86%A86"XN+B(L"B(@+BY86%A8+BXN+BY86%A8
  671. XM6%A86%A86%@N+B`B+`HB("XN+EA86%A86%A86%A86%A86%A86%@N+BX@(BP*
  672. XM(B`@+BXN6%A86%A86%A86%A86%A86%@N+BX@("(L"B(@("XN+EA86%A86%A8
  673. XM6%A86%A86%A8+BXN("`B+`HB("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@
  674. XM(BP*(B`@("`N+BXN6%A86%A86%A86%@N+BXN("`@("(L"B(@("`@("XN+BXN
  675. XM+EA86%A8+BXN+BXN("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  676. XF("`@(BP*(B`@("`@("`@("XN+BXN+BXN+B`@("`@("`@(")].PHN
  677. X`
  678. Xend
  679. END_OF_FILE
  680. if test 1323 -ne `wc -c <'bitmaps/x2bonus3.xpm.uu'`; then
  681.     echo shar: \"'bitmaps/x2bonus3.xpm.uu'\" unpacked with wrong size!
  682. fi
  683. # end of 'bitmaps/x2bonus3.xpm.uu'
  684. fi
  685. if test -f 'bitmaps/x2bonus4.xpm.uu' -a "${1}" != "-c" ; then 
  686.   echo shar: Will not clobber existing file \"'bitmaps/x2bonus4.xpm.uu'\"
  687. else
  688. echo shar: Extracting \"'bitmaps/x2bonus4.xpm.uu'\" \(1323 characters\)
  689. sed "s/^X//" >'bitmaps/x2bonus4.xpm.uu' <<'END_OF_FILE'
  690. Xbegin 644 x2bonus4.xpm
  691. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@>#)B;VYU<S1?>'!M6UT@/2!["B(R
  692. XM-R`R-R`S(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!G;VQD(BP*(E@)
  693. XM8R!B;&%C:R(L"B(@("`@("`@("`N+BXN+BXN+BX@("`@("`@("`B+`HB("`@
  694. XM("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@("`@+BXN+BXN6%A86%@N
  695. XM+BXN+BX@("`@("(L"B(@("`@+BXN+EA86%A86%A86%A8+BXN+B`@("`B+`HB
  696. XM("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@(BP*(B`@+BXN6%A86%A86%A8
  697. XM6%A86%A86%@N+BX@("(L"B(@("XN+EA86%@N+BY86%A86"Y86%A8+BXN("`B
  698. XM+`HB("XN+EA86%@N+BXN+EA86%@N6%A86%@N+BX@(BP*(B`N+EA86%A8+EA8
  699. XM+BXN6%A8+EA86%A86"XN("(L"B(N+BY86%A86"Y86%A8+BY86"Y86%A86%@N
  700. XM+BXB+`HB+BXN6%A86%@N+EA86"XN+E@N6%A86%A8+BXN(BP*(BXN6%A86%A8
  701. XM+BXN6%A8+BXN+EA86%A86%@N+B(L"B(N+EA86%A86%@N+EA86%@N+BY86%A8
  702. XM6%A8+BXB+`HB+BY86%A86%A86%A86%A86%A86%A86%A86"XN(BP*(BXN6%A8
  703. XM6%A86%@N+EA86%@N+EA86%A86%@N+B(L"B(N+EA86%A86%A8+BXN6%@N+BY8
  704. XM6%A86%A8+BXB+`HB+BXN6%A86%A86%A8+BXN+EA86%A86%A8+BXN(BP*(BXN
  705. XM+EA86%A86%A86%@N+EA86%A86%A86"XN+B(L"B(@+BY86%A86%A86%@N+BXN
  706. XM6%A86%A86%@N+B`B+`HB("XN+EA86%A86"XN+EA8+BXN6%A86%@N+BX@(BP*
  707. XM(B`@+BXN6%A86%@N+EA86%@N+EA86%@N+BX@("(L"B(@("XN+EA86%A86%A8
  708. XM6%A86%A86%A8+BXN("`B+`HB("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@
  709. XM(BP*(B`@("`N+BXN6%A86%A86%A86%@N+BXN("`@("(L"B(@("`@("XN+BXN
  710. XM+EA86%A8+BXN+BXN("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  711. XF("`@(BP*(B`@("`@("`@("XN+BXN+BXN+B`@("`@("`@(")].PHN
  712. X`
  713. Xend
  714. END_OF_FILE
  715. if test 1323 -ne `wc -c <'bitmaps/x2bonus4.xpm.uu'`; then
  716.     echo shar: \"'bitmaps/x2bonus4.xpm.uu'\" unpacked with wrong size!
  717. fi
  718. # end of 'bitmaps/x2bonus4.xpm.uu'
  719. fi
  720. if test -f 'bitmaps/x4bonus1.xpm.uu' -a "${1}" != "-c" ; then 
  721.   echo shar: Will not clobber existing file \"'bitmaps/x4bonus1.xpm.uu'\"
  722. else
  723. echo shar: Extracting \"'bitmaps/x4bonus1.xpm.uu'\" \(1323 characters\)
  724. sed "s/^X//" >'bitmaps/x4bonus1.xpm.uu' <<'END_OF_FILE'
  725. Xbegin 644 x4bonus1.xpm
  726. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@>#1B;VYU<S%?>'!M6UT@/2!["B(R
  727. XM-R`R-R`S(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!G;VQD(BP*(E@)
  728. XM8R!B;&%C:R(L"B(@("`@("`@("`N+BXN+BXN+BX@("`@("`@("`B+`HB("`@
  729. XM("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@("`@+BXN+BXN6%A86%@N
  730. XM+BXN+BX@("`@("(L"B(@("`@+BXN+EA86%A86%A86%A8+BXN+B`@("`B+`HB
  731. XM("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@(BP*(B`@+BXN6%A86%A86%A8
  732. XM6%A86%A86%@N+BX@("(L"B(@("XN+EA86%A86%A86%A86%A86%A8+BXN("`B
  733. XM+`HB("XN+EA86%A86%A86%A86%A86%A86%@N+BX@(BP*(B`N+EA86%A86%A8
  734. XM6%A86%A86"XN+EA86"XN("(L"B(N+BY86%A86%A86%A86%A86"XN+BY86%@N
  735. XM+BXB+`HB+BXN6%A8+BY86%@N+EA86"XN6"XN6%A8+BXN(BP*(BXN6%A86"XN
  736. XM6%A8+BY86"XN6%@N+EA86%@N+B(L"B(N+EA86%A8+BY8+BY86"XN6%A8+BY8
  737. XM6%A8+BXB+`HB+BY86%A86%@N+BY86%@N+EA86"XN6%A86"XN(BP*(BXN6%A8
  738. XM6%A8+BXN6%A8+BXN+BXN+BY86%@N+B(L"B(N+EA86%A8+BY8+BY86%A86%A8
  739. XM+BY86%A8+BXB+`HB+BXN6%A8+BY86%@N+EA86%A86"XN6%A8+BXN(BP*(BXN
  740. XM+EA86"XN6%A8+BY86%A86%@N+EA86"XN+B(L"B(@+BY86%A86%A86%A86%A8
  741. XM6%A86%A86%@N+B`B+`HB("XN+EA86%A86%A86%A86%A86%A86%@N+BX@(BP*
  742. XM(B`@+BXN6%A86%A86%A86%A86%A86%@N+BX@("(L"B(@("XN+EA86%A86%A8
  743. XM6%A86%A86%A8+BXN("`B+`HB("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@
  744. XM(BP*(B`@("`N+BXN6%A86%A86%A86%@N+BXN("`@("(L"B(@("`@("XN+BXN
  745. XM+EA86%A8+BXN+BXN("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  746. XF("`@(BP*(B`@("`@("`@("XN+BXN+BXN+B`@("`@("`@(")].PHN
  747. X`
  748. Xend
  749. END_OF_FILE
  750. if test 1323 -ne `wc -c <'bitmaps/x4bonus1.xpm.uu'`; then
  751.     echo shar: \"'bitmaps/x4bonus1.xpm.uu'\" unpacked with wrong size!
  752. fi
  753. # end of 'bitmaps/x4bonus1.xpm.uu'
  754. fi
  755. if test -f 'bitmaps/x4bonus2.xpm.uu' -a "${1}" != "-c" ; then 
  756.   echo shar: Will not clobber existing file \"'bitmaps/x4bonus2.xpm.uu'\"
  757. else
  758. echo shar: Extracting \"'bitmaps/x4bonus2.xpm.uu'\" \(1323 characters\)
  759. sed "s/^X//" >'bitmaps/x4bonus2.xpm.uu' <<'END_OF_FILE'
  760. Xbegin 644 x4bonus2.xpm
  761. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@>#1B;VYU<S)?>'!M6UT@/2!["B(R
  762. XM-R`R-R`S(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!G;VQD(BP*(E@)
  763. XM8R!B;&%C:R(L"B(@("`@("`@("`N+BXN+BXN+BX@("`@("`@("`B+`HB("`@
  764. XM("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@("`@+BXN+BXN6%A86%@N
  765. XM+BXN+BX@("`@("(L"B(@("`@+BXN+EA86%A86%A86%A8+BXN+B`@("`B+`HB
  766. XM("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@(BP*(B`@+BXN6%A86%A86%A8
  767. XM6%A86%A86%@N+BX@("(L"B(@("XN+EA86%@N+EA86%@N+EA86%A8+BXN("`B
  768. XM+`HB("XN+EA86%A8+BXN6%@N+BY86%A86%@N+BX@(BP*(B`N+EA86%A86%A8
  769. XM+BXN+EA86%A86%A86"XN("(L"B(N+BY86%A86%A86%@N+EA86%A86%A86%@N
  770. XM+BXB+`HB+BXN6%A86%A86%@N+BXN6%A86%A86%A8+BXN(BP*(BXN6%A86%A8
  771. XM6"XN+EA8+BXN6%A86%A86%@N+B(L"B(N+EA86%A86%@N+EA86%@N+EA86%A8
  772. XM6%A8+BXB+`HB+BY86%A86%A86%A86%A86%A86%A86%A86"XN(BP*(BXN6%A8
  773. XM6%A86%A86"XN+EA86%A86%A86%@N+B(L"B(N+EA86%A86%A86%@N+BXN6%A8
  774. XM6%A86%A8+BXB+`HB+BXN6%A86%A86%A8+EA8+BY86%A86%A8+BXN(BP*(BXN
  775. XM+EA86%A86%A86"Y86%@N+EA86%A86"XN+B(L"B(@+BY86%A86%A86%@N6%A8
  776. XM6"XN6%A86%@N+B`B+`HB("XN+EA86%A8+BXN+BXN+BXN+EA86%@N+BX@(BP*
  777. XM(B`@+BXN6%A86"XN+BXN+BXN+BY86%@N+BX@("(L"B(@("XN+EA86%A86%@N
  778. XM6%A86%A86%A8+BXN("`B+`HB("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@
  779. XM(BP*(B`@("`N+BXN6%A86%A86%A86%@N+BXN("`@("(L"B(@("`@("XN+BXN
  780. XM+EA86%A8+BXN+BXN("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  781. XF("`@(BP*(B`@("`@("`@("XN+BXN+BXN+B`@("`@("`@(")].PHN
  782. X`
  783. Xend
  784. END_OF_FILE
  785. if test 1323 -ne `wc -c <'bitmaps/x4bonus2.xpm.uu'`; then
  786.     echo shar: \"'bitmaps/x4bonus2.xpm.uu'\" unpacked with wrong size!
  787. fi
  788. # end of 'bitmaps/x4bonus2.xpm.uu'
  789. fi
  790. if test -f 'bitmaps/x4bonus3.xpm.uu' -a "${1}" != "-c" ; then 
  791.   echo shar: Will not clobber existing file \"'bitmaps/x4bonus3.xpm.uu'\"
  792. else
  793. echo shar: Extracting \"'bitmaps/x4bonus3.xpm.uu'\" \(1323 characters\)
  794. sed "s/^X//" >'bitmaps/x4bonus3.xpm.uu' <<'END_OF_FILE'
  795. Xbegin 644 x4bonus3.xpm
  796. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@>#1B;VYU<S-?>'!M6UT@/2!["B(R
  797. XM-R`R-R`S(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!G;VQD(BP*(E@)
  798. XM8R!B;&%C:R(L"B(@("`@("`@("`N+BXN+BXN+BX@("`@("`@("`B+`HB("`@
  799. XM("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@("`@+BXN+BXN6%A86%@N
  800. XM+BXN+BX@("`@("(L"B(@("`@+BXN+EA86%A86%A86%A8+BXN+B`@("`B+`HB
  801. XM("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@(BP*(B`@+BXN6%A86%A86%A8
  802. XM6%A86%A86%@N+BX@("(L"B(@("XN+EA86%A86%A86%A86%A86%A8+BXN("`B
  803. XM+`HB("XN+EA86%A86%A86%A86%A86%A86%@N+BX@(BP*(B`N+EA86%A86%A8
  804. XM6%A86%A86%A86%A86"XN("(L"B(N+BY86%@N+EA86%A86"XN6%A8+BY86%@N
  805. XM+BXB+`HB+BXN6%A8+BY86%A86%@N+EA86"XN6%A8+BXN(BP*(BXN6%A86"XN
  806. XM6%A86%A86"XN6"XN6%A86%@N+B(L"B(N+EA86"XN+BXN+BXN6%A8+BXN6%A8
  807. XM6%A8+BXB+`HB+BY86%A8+BY86%@N+EA86"XN+EA86%A86"XN(BP*(BXN6%A8
  808. XM6"XN6%A8+BY86"XN6"XN6%A86%@N+B(L"B(N+EA86%@N+EA8+BY86"XN6%A8
  809. XM+BY86%A8+BXB+`HB+BXN6%A8+BY8+BY86%@N+EA86"XN6%A8+BXN(BP*(BXN
  810. XM+EA86"XN+BY86%A86%A86%A86%A86"XN+B(L"B(@+BY86%@N+BY86%A86%A8
  811. XM6%A86%A86%@N+B`B+`HB("XN+EA86%A86%A86%A86%A86%A86%@N+BX@(BP*
  812. XM(B`@+BXN6%A86%A86%A86%A86%A86%@N+BX@("(L"B(@("XN+EA86%A86%A8
  813. XM6%A86%A86%A8+BXN("`B+`HB("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@
  814. XM(BP*(B`@("`N+BXN6%A86%A86%A86%@N+BXN("`@("(L"B(@("`@("XN+BXN
  815. XM+EA86%A8+BXN+BXN("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  816. XF("`@(BP*(B`@("`@("`@("XN+BXN+BXN+B`@("`@("`@(")].PHN
  817. X`
  818. Xend
  819. END_OF_FILE
  820. if test 1323 -ne `wc -c <'bitmaps/x4bonus3.xpm.uu'`; then
  821.     echo shar: \"'bitmaps/x4bonus3.xpm.uu'\" unpacked with wrong size!
  822. fi
  823. # end of 'bitmaps/x4bonus3.xpm.uu'
  824. fi
  825. if test -f 'bitmaps/x4bonus4.xpm.uu' -a "${1}" != "-c" ; then 
  826.   echo shar: Will not clobber existing file \"'bitmaps/x4bonus4.xpm.uu'\"
  827. else
  828. echo shar: Extracting \"'bitmaps/x4bonus4.xpm.uu'\" \(1323 characters\)
  829. sed "s/^X//" >'bitmaps/x4bonus4.xpm.uu' <<'END_OF_FILE'
  830. Xbegin 644 x4bonus4.xpm
  831. XM+RH@6%!-("HO"G-T871I8R!C:&%R("H@>#1B;VYU<S1?>'!M6UT@/2!["B(R
  832. XM-R`R-R`S(#$B+`HB(`ES($YO;F4)8R!.;VYE(BP*(BX)8R!G;VQD(BP*(E@)
  833. XM8R!B;&%C:R(L"B(@("`@("`@("`N+BXN+BXN+BX@("`@("`@("`B+`HB("`@
  834. XM("`@("XN+BXN+BXN+BXN+BX@("`@("`@(BP*(B`@("`@+BXN+BXN6%A86%@N
  835. XM+BXN+BX@("`@("(L"B(@("`@+BXN+EA86%A86%A86%A8+BXN+B`@("`B+`HB
  836. XM("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@(BP*(B`@+BXN6%A86%A86%A8
  837. XM+EA86%A86%@N+BX@("(L"B(@("XN+EA86"XN+BXN+BXN+BY86%A8+BXN("`B
  838. XM+`HB("XN+EA86%@N+BXN+BXN+BXN6%A86%@N+BX@(BP*(B`N+EA86%A8+BY8
  839. XM6%A8+EA86%A86%A86"XN("(L"B(N+BY86%A86%@N+EA86"Y86%A86%A86%@N
  840. XM+BXB+`HB+BXN6%A86%A86"XN6%@N6%A86%A86%A8+BXN(BP*(BXN6%A86%A8
  841. XM6%A8+BXN+EA86%A86%A86%@N+B(L"B(N+EA86%A86%A86%@N+BY86%A86%A8
  842. XM6%A8+BXB+`HB+BY86%A86%A86%A86%A86%A86%A86%A86"XN(BP*(BXN6%A8
  843. XM6%A86%@N+EA86%@N+EA86%A86%@N+B(L"B(N+EA86%A86%A8+BXN6%@N+BY8
  844. XM6%A86%A8+BXB+`HB+BXN6%A86%A86%A8+BXN+EA86%A86%A8+BXN(BP*(BXN
  845. XM+EA86%A86%A86%@N+EA86%A86%A86"XN+B(L"B(@+BY86%A86%A86%@N+BXN
  846. XM6%A86%A86%@N+B`B+`HB("XN+EA86%A86"XN+EA8+BXN6%A86%@N+BX@(BP*
  847. XM(B`@+BXN6%A86%@N+EA86%@N+EA86%@N+BX@("(L"B(@("XN+EA86%A86%A8
  848. XM6%A86%A86%A8+BXN("`B+`HB("`@+BXN+EA86%A86%A86%A86%@N+BXN("`@
  849. XM(BP*(B`@("`N+BXN6%A86%A86%A86%@N+BXN("`@("(L"B(@("`@("XN+BXN
  850. XM+EA86%A8+BXN+BXN("`@("`B+`HB("`@("`@("XN+BXN+BXN+BXN+BX@("`@
  851. XF("`@(BP*(B`@("`@("`@("XN+BXN+BXN+B`@("`@("`@(")].PHN
  852. X`
  853. Xend
  854. END_OF_FILE
  855. if test 1323 -ne `wc -c <'bitmaps/x4bonus4.xpm.uu'`; then
  856.     echo shar: \"'bitmaps/x4bonus4.xpm.uu'\" unpacked with wrong size!
  857. fi
  858. # end of 'bitmaps/x4bonus4.xpm.uu'
  859. fi
  860. if test -f 'include/intro.h' -a "${1}" != "-c" ; then 
  861.   echo shar: Will not clobber existing file \"'include/intro.h'\"
  862. else
  863. echo shar: Extracting \"'include/intro.h'\" \(1065 characters\)
  864. sed "s/^X//" >'include/intro.h' <<'END_OF_FILE'
  865. X#ifndef _INTRO_H_
  866. X#define _INTRO_H_
  867. X
  868. X#include "copyright.h"
  869. X
  870. X/*
  871. X *  Dependencies on other include files:
  872. X */
  873. X
  874. X#include <X11/Xlib.h>
  875. X
  876. X/*
  877. X *  Constants and macros:
  878. X */
  879. X
  880. X/*
  881. X *  Type declarations:
  882. X */
  883. X
  884. Xenum IntroStates 
  885. X{ 
  886. X    INTRO_TITLE, 
  887. X    INTRO_BLOCKS, 
  888. X    INTRO_TEXT, 
  889. X    INTRO_EXPLODE, 
  890. X    INTRO_WAIT, 
  891. X    INTRO_FINISH 
  892. X};
  893. X
  894. X/*
  895. X *  Function prototypes:
  896. X */
  897. X
  898. X#if NeedFunctionPrototypes
  899. Xvoid SetUpIntroduction(Display *display, Window window, Colormap colormap);
  900. Xvoid Introduction(Display *display, Window window);
  901. Xvoid RedrawIntroduction(Display *display, Window window);
  902. Xvoid FreeIntroduction(Display *display);
  903. Xvoid ResetIntroduction(void);
  904. Xvoid DoIntroTitle(Display *display, Window window);
  905. Xvoid DrawIntroTitle(Display *display, Window window, int x, int y);
  906. X#else
  907. Xvoid DrawIntroTitle();
  908. Xvoid SetUpIntroduction();
  909. Xvoid Introduction();
  910. Xvoid RedrawIntroduction();
  911. Xvoid FreeIntroduction();
  912. Xvoid ResetIntroduction();
  913. Xvoid DoIntroTitle();
  914. X#endif
  915. X
  916. Xextern     enum IntroStates IntroState;
  917. Xextern     Pixmap bigtitlePixmap, bigtitlePixmapM;
  918. Xextern    Pixmap stars[12], starsM[12];
  919. X
  920. X
  921. X#endif
  922. END_OF_FILE
  923. if test 1065 -ne `wc -c <'include/intro.h'`; then
  924.     echo shar: \"'include/intro.h'\" unpacked with wrong size!
  925. fi
  926. # end of 'include/intro.h'
  927. fi
  928. if test -f 'include/main.h' -a "${1}" != "-c" ; then 
  929.   echo shar: Will not clobber existing file \"'include/main.h'\"
  930. else
  931. echo shar: Extracting \"'include/main.h'\" \(1351 characters\)
  932. sed "s/^X//" >'include/main.h' <<'END_OF_FILE'
  933. X#ifndef _MAIN_H_
  934. X#define _MAIN_H_
  935. X
  936. X#include "copyright.h"
  937. X
  938. X/*
  939. X *  Dependencies on other include files:
  940. X */
  941. X
  942. X/*
  943. X *  Constants and macros:
  944. X */
  945. X
  946. X#define ms_sleep(ms)                 \
  947. X{                                     \
  948. X    struct timeval tv;                 \
  949. X    tv.tv_sec=((ms)/1000);             \
  950. X    tv.tv_usec=(((ms)%1000)*1000);     \
  951. X    select(1,NULL,NULL,NULL,&tv);   \
  952. X}
  953. X
  954. X#define CONTROL_KEYS        0    
  955. X#define CONTROL_MOUSE        1    
  956. X
  957. X#define MODE_NONE            0    
  958. X#define MODE_HIGHSCORE        1
  959. X#define MODE_INTRO            2
  960. X#define MODE_GAME            3
  961. X#define MODE_PAUSE            4
  962. X#define MODE_BALL_WAIT        5
  963. X#define MODE_WAIT            6
  964. X#define MODE_BONUS            7
  965. X#define MODE_INSTRUCT        8
  966. X#define MODE_KEYS            9
  967. X#define MODE_PRESENTS        10
  968. X#define MODE_QUIT            11
  969. X
  970. X#define FAST_SPEED              1L
  971. X#define MEDIUM_SPEED            5L
  972. X#define SLOW_SPEED              9L
  973. X
  974. X/*
  975. X *  Type declarations:
  976. X */
  977. X
  978. X/*
  979. X *  Function prototypes:
  980. X */
  981. X
  982. X#if NeedFunctionPrototypes
  983. Xvoid SetGameSpeed(int delay);
  984. Xint paddleIsMoving(void);
  985. Xvoid SetUserSpeed(int delay);
  986. Xvoid SetPaddleControlMode(int type);
  987. Xint GetPaddleControlMode(void);
  988. Xvoid SelectiveRedraw(Display *display);
  989. Xvoid handlePaddleMoving(Display *display);
  990. X#else
  991. Xvoid handlePaddleMoving();
  992. Xvoid SelectiveRedraw();
  993. Xint GetPaddleControlMode();
  994. Xvoid SetControlMode();
  995. Xvoid SetGameSpeed();
  996. Xint paddleIsMoving();
  997. Xvoid SetUserSpeed();
  998. X#endif
  999. X
  1000. Xextern int frame, mode, holdMode, modeSfx, gameActive;
  1001. Xextern time_t pausedTime;
  1002. X
  1003. X#endif
  1004. END_OF_FILE
  1005. if test 1351 -ne `wc -c <'include/main.h'`; then
  1006.     echo shar: \"'include/main.h'\" unpacked with wrong size!
  1007. fi
  1008. # end of 'include/main.h'
  1009. fi
  1010. if test -f 'include/misc.h' -a "${1}" != "-c" ; then 
  1011.   echo shar: Will not clobber existing file \"'include/misc.h'\"
  1012. else
  1013. echo shar: Extracting \"'include/misc.h'\" \(1116 characters\)
  1014. sed "s/^X//" >'include/misc.h' <<'END_OF_FILE'
  1015. X#ifndef _MISC_H_
  1016. X#define _MISC_H_
  1017. X
  1018. X#include "copyright.h"
  1019. X
  1020. X/*
  1021. X *  Dependencies on other include files:
  1022. X */
  1023. X
  1024. X#include <X11/Xlib.h>
  1025. X
  1026. X/*
  1027. X *  Constants and macros:
  1028. X */
  1029. X
  1030. X/*
  1031. X *  Type declarations:
  1032. X */
  1033. X
  1034. X/*
  1035. X *  Function prototypes:
  1036. X */
  1037. X
  1038. X#if NeedFunctionPrototypes
  1039. Xvoid DrawText(Display *display, Window window, int x, int y, XFontStruct *font,
  1040. X    int colour, char *text, int numChar);
  1041. Xvoid DrawLine(Display *display, Window window, int x, int y, int x2, int y2,
  1042. X    int colour, int width);
  1043. Xvoid RenderShape(Display *display, Window window, Pixmap pixmap,
  1044. X    Pixmap mask, int x, int y, int w, int h, int clear);
  1045. Xvoid DrawShadowCentredText(Display *display, Window window, XFontStruct *font,
  1046. X    char *string, int y, int colour, int width);
  1047. Xvoid DrawShadowText(Display *display, Window window, XFontStruct *font,
  1048. X    char *string, int x, int y, int colour);
  1049. Xint ColourNameToPixel(Display *display, Colormap colormap, char *colourName);
  1050. Xvoid FreeMisc(Display *display);
  1051. X#else
  1052. Xvoid FreeMisc();
  1053. Xint ColourNameToPixel();
  1054. Xvoid DrawText();
  1055. Xvoid DrawLine();
  1056. Xvoid RenderShape();
  1057. Xvoid DrawShadowCentredText();
  1058. Xvoid DrawShadowText();
  1059. X#endif
  1060. X
  1061. X#endif
  1062. END_OF_FILE
  1063. if test 1116 -ne `wc -c <'include/misc.h'`; then
  1064.     echo shar: \"'include/misc.h'\" unpacked with wrong size!
  1065. fi
  1066. # end of 'include/misc.h'
  1067. fi
  1068. if test -f 'include/sfx.h' -a "${1}" != "-c" ; then 
  1069.   echo shar: Will not clobber existing file \"'include/sfx.h'\"
  1070. else
  1071. echo shar: Extracting \"'include/sfx.h'\" \(1200 characters\)
  1072. sed "s/^X//" >'include/sfx.h' <<'END_OF_FILE'
  1073. X#ifndef _SFX_H_
  1074. X#define _SFX_H_
  1075. X
  1076. X#include "copyright.h"
  1077. X
  1078. X/*
  1079. X *  Dependencies on other include files:
  1080. X */
  1081. X
  1082. X#include <X11/Xlib.h>
  1083. X
  1084. X/*
  1085. X *  Constants and macros:
  1086. X */
  1087. X
  1088. X#define SFX_NONE        0
  1089. X#define SFX_SHAKE          1
  1090. X#define SFX_FADE          2
  1091. X#define SFX_BLIND          3
  1092. X#define SFX_SHATTER      4
  1093. X
  1094. X/*
  1095. X *  Type declarations:
  1096. X */
  1097. X
  1098. X/*
  1099. X *  Function prototypes:
  1100. X */
  1101. X
  1102. X#if NeedFunctionPrototypes
  1103. Xvoid SetSfxEndFrame(int endFrame);
  1104. Xvoid changeSfxMode(int newMode);
  1105. Xint oldSfxMode(void);
  1106. Xint currentSfxMode(void);
  1107. Xint WindowShakeEffect(Display *display, Window window);
  1108. Xint WindowShatterEffect(Display *display, Window window);
  1109. Xint WindowBlindEffect(Display *display, Window window);
  1110. Xint WindowFadeEffect(Display *display, Window window);
  1111. Xint getSpecialEffects(Display *display);
  1112. Xvoid useSpecialEffects(int state);
  1113. Xvoid ResetBorderGlow(Display *display, Window window);
  1114. Xvoid BorderGlow(Display *display, Window window);
  1115. X#else
  1116. Xvoid ResetBorderGlow();
  1117. Xint WindowShatterEffect();
  1118. Xint WindowBlindEffect();
  1119. Xint WindowFadeEffect();
  1120. Xint WindowShakeEffect();
  1121. Xvoid BorderGlow();
  1122. Xvoid useSpecialEffects();
  1123. Xint getSpecialEffects();
  1124. Xvoid SetSfxEndFrame();
  1125. Xvoid changeSfxMode();
  1126. Xint oldSfxMode();
  1127. Xint currentSfxMode();
  1128. X#endif
  1129. X
  1130. X
  1131. X#endif
  1132. END_OF_FILE
  1133. if test 1200 -ne `wc -c <'include/sfx.h'`; then
  1134.     echo shar: \"'include/sfx.h'\" unpacked with wrong size!
  1135. fi
  1136. # end of 'include/sfx.h'
  1137. fi
  1138. if test -f 'include/special.h' -a "${1}" != "-c" ; then 
  1139.   echo shar: Will not clobber existing file \"'include/special.h'\"
  1140. else
  1141. echo shar: Extracting \"'include/special.h'\" \(1187 characters\)
  1142. sed "s/^X//" >'include/special.h' <<'END_OF_FILE'
  1143. X#ifndef _SPECIAL_H_
  1144. X#define _SPECIAL_H_
  1145. X
  1146. X#include "copyright.h"
  1147. X
  1148. X/*
  1149. X *  Dependencies on other include files:
  1150. X */
  1151. X
  1152. X#include <X11/Xlib.h>
  1153. X
  1154. X/*
  1155. X *  Constants and macros:
  1156. X */
  1157. X
  1158. X#define REVERSE     1
  1159. X#define STICKY      2
  1160. X
  1161. X#define FLASH        500
  1162. X
  1163. X/*
  1164. X *  Type declarations:
  1165. X */
  1166. X
  1167. X/*
  1168. X *  Function prototypes:
  1169. X */
  1170. X
  1171. X#if NeedFunctionPrototypes
  1172. Xvoid DrawSpecials(Display *display);
  1173. Xvoid ToggleFastGun(Display *display, int state);
  1174. Xvoid ToggleWallsOn(Display *display, int state);
  1175. Xvoid TurnSpecialsOff(Display *display);
  1176. Xvoid ToggleStickyBat(Display *display, int state);
  1177. Xvoid ToggleMultiBall(Display *display, int state);
  1178. Xvoid Togglex2Bonus(Display *display, int state);
  1179. Xvoid Togglex4Bonus(Display *display, int state);
  1180. Xvoid ToggleKiller(Display *display, int state);
  1181. Xvoid RandomDrawSpecials(Display *display);
  1182. X#else
  1183. Xvoid RandomDrawSpecials();
  1184. Xvoid ToggleKiller();
  1185. Xvoid TurnSpecialsOff();
  1186. Xvoid DrawSpecials();
  1187. Xvoid ToggleFastGun();
  1188. Xvoid ToggleWallsOn();
  1189. Xvoid ToggleStickyBat();
  1190. Xvoid ToggleMultiBall();
  1191. Xvoid Togglex2Bonus();
  1192. Xvoid Togglex4Bonus();
  1193. X#endif
  1194. X
  1195. Xextern int multiBall;
  1196. Xextern int stickyBat;
  1197. Xextern int fastGun;
  1198. Xextern int noWalls;
  1199. Xextern int Killer;
  1200. Xextern int x2Bonus;
  1201. Xextern int x4Bonus;
  1202. X
  1203. X#endif
  1204. END_OF_FILE
  1205. if test 1187 -ne `wc -c <'include/special.h'`; then
  1206.     echo shar: \"'include/special.h'\" unpacked with wrong size!
  1207. fi
  1208. # end of 'include/special.h'
  1209. fi
  1210. if test -f 'sounds/bonus.au.uu' -a "${1}" != "-c" ; then 
  1211.   echo shar: Will not clobber existing file \"'sounds/bonus.au.uu'\"
  1212. else
  1213. echo shar: Extracting \"'sounds/bonus.au.uu'\" \(1071 characters\)
  1214. sed "s/^X//" >'sounds/bonus.au.uu' <<'END_OF_FILE'
  1215. Xbegin 644 bonus.au
  1216. XM+G-N9````"@```+/`````0``'T`````!;VYE(&1R:7```````````/[^__[]
  1217. XM__[^?GY\?7Y^?O]^?OY_?O[^_O[]_?]_^N3A6$9%5L"MJK#<,"$<'"(WNZ"6
  1218. XMCXZ1F*HM%PT)"0T1&]"=D(J)BY*G,AD.#`T3(.Z?D8R+C9>Y)!,,#`X7+:^8
  1219. XMCHN-E:\I%0T,#ADTJI6-C(^<Z1T0#0X4)[F9CHR.F\X?$0T.%RRNEHZ-DJ0X
  1220. XM&`\.$A_6G(^-D)Y-&Q`.$R#.G(^.DZ8T&`\/%RZLEHZ/F]8>$@\5);F9CY";
  1221. XMRA\3$!<JL9B0DI]&'!(3'$>AE)&9NR46$QDQJI:2F+$I&!0:,JJ7DYN])1<5
  1222. XM'DVAE9:B11T6&2NRFI6<Q"08&"7#G9:<NB@9&2;#G9B=Q"8:&RVTG)FD3!\:
  1223. XM'TJFFIVY*QP=+[*=G*PX'ATKOI^<JCX@'2N_H)VM.B`?,+>?G[@O'R-#K)^G
  1224. XM^2@@+<6DHK<S(B=0JZ*N1"8F/K&DK%<I)SNVIJQ;*B@^M:>O2RHK3+"IN3PJ
  1225. XM+]FMK-`R+#Z[K+=&+3+?KZ_A,R]-MZ_&.R]`OZ^^0C$^QK*]2#,^RK2_2#5!
  1226. XMQ[;%1#=*PKC1/CI=O;QZ/#_:N\5,/$[&O>5`0>._R4X_6<;";T%+TL'=1T?G
  1227. XMQ-%.1WG'SE5'9\O.64EES,];2VK-TEI-=<[95T_OS^-35N#1_U)?V==D5'O6
  1228. XMY%I<XMAU6'':XUY>Y]MT6W;=[%YFY.)H7_+A>%][X?-C<.7L9VOK[&II[^MO
  1229. XM:O+J=&ORZG=M]NYP;O/N=7#Q[W5T\?-R=_/[;WGS?'+]\WIV]OAX>_A^=7_Z
  1230. XM>WKY^GE_^'Y[_OQ[??M]>/[]>_WW?GO]_GQ^_GM__7Y]_/U]_?U]?OU\?/Y]
  1231. XM??_^?O[]?O[^?7]^?GY^??[]?O__?7[^?7Y_?G]^??]___[\?__^_WU\>GM]
  1232. XG?7]^?_W]_?W]__[^?GU]??_^_W___W]]?G]_?GY^_W___O[___]^
  1233. X`
  1234. Xend
  1235. END_OF_FILE
  1236. if test 1071 -ne `wc -c <'sounds/bonus.au.uu'`; then
  1237.     echo shar: \"'sounds/bonus.au.uu'\" unpacked with wrong size!
  1238. fi
  1239. # end of 'sounds/bonus.au.uu'
  1240. fi
  1241. if test -f 'sounds/click.au.uu' -a "${1}" != "-c" ; then 
  1242.   echo shar: Will not clobber existing file \"'sounds/click.au.uu'\"
  1243. else
  1244. echo shar: Extracting \"'sounds/click.au.uu'\" \(1287 characters\)
  1245. sed "s/^X//" >'sounds/click.au.uu' <<'END_OF_FILE'
  1246. Xbegin 644 click.au
  1247. XM+G-N9````"````-R`````0``'T`````!``````````#_;5AF1K!0-2G8OCE%
  1248. XM_S[O7E;+\\2_X:S#O*RQLJBOJ:JLK:JKK:NNKZVTM+J[P]'.RE(O2T0[+R4I
  1249. XM*R<G)2,B(2`@(!\?("$D)"0F)RDK+2XQ-3<[/DI-7&31S<>^N;.VK*^MJJBH
  1250. XMIJ.BHZ*BHJ&AH*&@H*&AH:*CHZ6HJ*FJK*VOL;6WN\#'R]/E:UI.24$].3<P
  1251. XM+R\L*2HH)"8F(2$A'Q\@'Q\?'Q\?'Q\?'R`A(B0E)B<H*2LL+S`R-CH\/D9.
  1252. XM4F+KW-7*Q+^\N[>VM+&OKZVMK*JIJJFFJ*BFI::FI::FIJ6FI::GIZBGIZBI
  1253. XMJ:JLJZNLKK"PL;2TM[BZO;Z_P\?.S]3;X^MD;5!/74]%14<]/C\\/#LY-S@Y
  1254. XM-S4V-3,T-34T,S,T-38S,S,S-#0S,S,S,C$Q,2\P,"XO+RXN+RXM+BXN+BTM
  1255. XM+BXN+B\O+R\P,C(T-38X.3L]/D%%2$Q26%__Z]W7S\G&PL"]N[FXMK2RL:^N
  1256. XMKJVLJZJIJ:FHIZ>FIJ6DI:2DI:.DI*2EI:6EIJ:FIZBIJJFKK*VNK[&RM+:Y
  1257. XMO;_!R,W1W/]H74],1T,_/3HY-S4S,C`O+BTM+2TL*RLK*RLK*RLK*RLL+"PL
  1258. XM+2TM+BXO,#$R,S4U-S<Z/#P]0$)%2$I.4EA<9&_WZ]_:U='.R\G'QL3#PL"_
  1259. XMOKZ]O;V\O+R\O+R\N[R\O+R]O;V^OK^_P,'"P\3%QL?(R<K,S<[/T=/3U]G;
  1260. XMW-[CY>OK[_?_=W=M:VMK:&AD9&1D8F!D9&1D9F1F:&AI;VMO=W=W__O__^_O
  1261. XM[^WKZ^OGY^?EY^?CX^/AW^/?W]_?W]_?X>/?X=_CX^/GY^?IZ^OK[^_O]___
  1262. XM>W=W<V]K:VMK:&AH9&1D9&)@8&!@8&!@8&!@8&!@8&!@8&1D9&1H:&AH:VMK
  1263. XM:VMK;V]O;V]O;W=O;V]O=W=W=W=W=W=W=W=W_______[]_?S[^_O[^_O[^WK
  1264. XMZ^OKZ^OIZ>?GY^?GY^?GX^/CX^/CX^/CX]_?X=_?W]_?W]_?W]_?W]_?W]_?
  1265. XMW]_?X>/CX^/CX^/CX^/EY^?GY^OKZ^OK[^_O\_?W]_?_______]W=W=W=W=W
  1266. XM=W=O<V]O;V]O;V]O;V]O;VMK:VUK:VMO:VMM;VMO;V]O;V]O=W=W=W=W=W=W
  1267. X.=W=W=W=W=W=W=_][_R]O
  1268. X`
  1269. Xend
  1270. END_OF_FILE
  1271. if test 1287 -ne `wc -c <'sounds/click.au.uu'`; then
  1272.     echo shar: \"'sounds/click.au.uu'\" unpacked with wrong size!
  1273. fi
  1274. # end of 'sounds/click.au.uu'
  1275. fi
  1276. if test -f 'sounds/tone.au.uu' -a "${1}" != "-c" ; then 
  1277.   echo shar: Will not clobber existing file \"'sounds/tone.au.uu'\"
  1278. else
  1279. echo shar: Extracting \"'sounds/tone.au.uu'\" \(1332 characters\)
  1280. sed "s/^X//" >'sounds/tone.au.uu' <<'END_OF_FILE'
  1281. Xbegin 644 tone.au
  1282. XM+G-N9````"@```.*`````0``'T`````!5&]U8V@@5&]N93H@(#$``$UA+QT9
  1283. XM)J^4DI\V&QPLQ[;91=*CEYF]'0\1(KN>I+SHO*>GXQX5&DZ;DIJ^*2(N2#\G
  1284. XM'BFQE(^:61H6'T^UOTY5KIN9JR<3$A^[G)VO5$F_L^$C%QH]G(^3J"\?)3E'
  1285. XM+2$EW9R2F,<=%AU+J:B[[KNDGJPJ$@\:?9R8HLQ(X[:_+QL9+*:2DJ8N&QPN
  1286. XM7E,Q+MB>DY>U'A(6++"DKM#/K)^F01D1&4>=E9[*+C%?S3P@'"NID8^<0AH8
  1287. XM(D5B.BY$J)>6JBD5%BFNG*&Z;,BNKD(:$18TGI*7K#DL/]96*AXEP)B1FEX:
  1288. XM%1U#N,)68ZZ;F*<K$Q$>R)V<J]UNN*W-(Q46*J:2E:LQ("E+V#XI+,.:D)>^
  1289. XM'!$7+,&WX%*^H9F@2AD3'-&;F*+9-D/-:2@8%B>JD8^>2R$A->94+BI,HY26
  1290. XML1\2%2BUI*[)SJR>I4T:$1@_GI2;MSDX>-$W'1@@O):0G%4=&RKJO6\\7*B7
  1291. XMEJHB$!`=V:2FY^>PHZPW&!(<S9B2G+XR,TUA+QT9)J^4DI\V&QPLQ[;91=*C
  1292. XMEYF]'0\1(KN>I+SHO*>GXQX5&DZ;DIJ^*2(N2#\G'BFQE(^:61H6'T^UOTY5
  1293. XMKIN9JR<3$A^[G)VO5$F_L^$C%QH]G(^3J"\?)3E'+2$EW9R2F,<=%AU+J:B[
  1294. XMY^>PHZPW&!(<S9B2G+XR,TUA+QT9)J^4DI\V&QPLQ[;91=*CEYF]'0\1(KN>
  1295. XMI+SHO*>GXQX5&DZ;DIJ^*2(N2#\G'BFQE(^:61H6'T^UOTY5KIN9JR<3$A^[
  1296. XMG)VO5$F_L^$C%QH]G(^3J"\?)3E'+2$EW9R2F,<=%AU+J:B[[KNDGJPJ$@\:
  1297. XM?9R8HLQ(X[:_+QL9+*:2DJ8N&QPN7E,Q+MB>DY>U'A(6++"DKM#/K)^F01D1
  1298. XM&4>=E9[*+C%?S3P@'"NID8^<0AH8(D5B.BY$J)>6JBD5%BFNG*&Z;,BNKD(:
  1299. XM$18TGI*7K#DL/]96*AXEP)B1FEX:%1U#N,)68ZZ;F*<K$Q$>R)V<J]UNN*W-
  1300. XM(Q46*J:2E:LQ("E+V#XI+,.:D)>^'!$7+,&WX%*^H9F@2AD3'-&;F*+9-D/-
  1301. XM:2@8%B>JD8^>2R$A->94+BI,HY26L1\2%2BUI*[)SJR>I4T:$1@_GI2;MSDX
  1302. XM>-$W'1@@O):0G%4=&RKJO6\\7*B7EJHB$!`=V:2FY^>PHZPW&!(<S9B2G+XR
  1303. X!,]$W
  1304. X`
  1305. Xend
  1306. END_OF_FILE
  1307. if test 1332 -ne `wc -c <'sounds/tone.au.uu'`; then
  1308.     echo shar: \"'sounds/tone.au.uu'\" unpacked with wrong size!
  1309. fi
  1310. # end of 'sounds/tone.au.uu'
  1311. fi
  1312. echo shar: End of archive 28 \(of 30\).
  1313. cp /dev/null ark28isdone
  1314. MISSING=""
  1315. for I in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 ; do
  1316.     if test ! -f ark${I}isdone ; then
  1317.     MISSING="${MISSING} ${I}"
  1318.     fi
  1319. done
  1320. if test "${MISSING}" = "" ; then
  1321.     echo You have unpacked all 30 archives.
  1322.     echo "Now execute sdecode.sh to build files."
  1323.     rm -f ark[1-9]isdone ark[1-9][0-9]isdone
  1324. else
  1325.     echo You still need to unpack the following archives:
  1326.     echo "        " ${MISSING}
  1327. fi
  1328. ##  End of shell archive.
  1329. exit 0
  1330.