home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / compsrcs / misc / volume29 / jpeg / part08 < prev    next >
Encoding:
Text File  |  1992-03-23  |  54.0 KB  |  1,015 lines

  1. Newsgroups: comp.sources.misc
  2. From: jpeg-info@uunet.uu.net (Independent JPEG Group)
  3. Subject:  v29i008:  jpeg - JPEG image compression, Part08/18
  4. Message-ID: <1992Mar24.144721.18439@sparky.imd.sterling.com>
  5. X-Md4-Signature: 8c88ecdcc41fd846de3d5849ecf38f0a
  6. Date: Tue, 24 Mar 1992 14:47:21 GMT
  7. Approved: kent@sparky.imd.sterling.com
  8.  
  9. Submitted-by: jpeg-info@uunet.uu.net (Independent JPEG Group)
  10. Posting-number: Volume 29, Issue 8
  11. Archive-name: jpeg/part08
  12. Environment: UNIX, VMS, MS-DOS, Mac, Amiga, Cray
  13.  
  14. #! /bin/sh
  15. # into a shell via "sh file" or similar.  To overwrite existing files,
  16. # type "sh file -c".
  17. # The tool that generated this appeared in the comp.sources.unix newsgroup;
  18. # send mail to comp-sources-unix@uunet.uu.net if you want that tool.
  19. # Contents:  SETUP jdarith.c timg.ppm.u.b
  20. # Wrapped by kent@sparky on Mon Mar 23 16:02:44 1992
  21. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  22. echo If this archive is complete, you will see the following message:
  23. echo '          "shar: End of archive 8 (of 18)."'
  24. if test -f 'SETUP' -a "${1}" != "-c" ; then 
  25.   echo shar: Will not clobber existing file \"'SETUP'\"
  26. else
  27.   echo shar: Extracting \"'SETUP'\" \(18117 characters\)
  28.   sed "s/^X//" >'SETUP' <<'END_OF_FILE'
  29. XSETUP instructions for the Independent JPEG Group's JPEG software
  30. X=================================================================
  31. X
  32. XThis file explains how to configure and compile the JPEG software.  We have
  33. Xtried to make this software extremely portable and flexible, so that it can be
  34. Xadapted to almost any environment.  The downside of this decision is that the
  35. Xinstallation process is not very automatic; you will need at least a little
  36. Xfamiliarity with C programming and program build procedures for your system.
  37. X
  38. XThis file contains general instructions, then sections of specific hints for
  39. Xcertain systems.  You may save yourself considerable time if you scan the
  40. Xwhole file before starting to do anything.
  41. X
  42. XBefore installing the software you must unpack the distributed source code.
  43. XSince you are reading this file, you have probably already succeeded in this
  44. Xtask.  However, there is one potential trap if you are on a non-Unix system:
  45. Xyou may need to convert these files to the local standard text file format
  46. X(for example, if you are on MS-DOS you probably have to convert LF end-of-line
  47. Xto CR/LF).  If so, apply the conversion to all the files EXCEPT those whose
  48. Xnames begin with "test".  The test files contain binary data; if you change
  49. Xthem in any way then the self-test will give bad results.
  50. X
  51. X
  52. XSTEP 1: PREPARE A MAKEFILE
  53. X==========================
  54. X
  55. XFirst, select a makefile and copy it to "Makefile" (or whatever your version
  56. Xof make uses as the default makefile name; for example, "makefile.mak" for
  57. Xold versions of Borland C).  We include several standard makefiles in the
  58. Xdistribution:
  59. X
  60. X    makefile.ansi: for Unix systems with ANSI-compatible C compilers.
  61. X    makefile.unix: for Unix systems with non-ANSI C compilers.
  62. X    makefile.mc5:  for Microsoft C 5.x under MS-DOS.
  63. X    makefile.mc6:  for Microsoft C 6.x under MS-DOS.
  64. X    makefile.bcc:  for Borland C (Turbo C) under MS-DOS.
  65. X    makefile.pwc:  for Mix Software's Power C under MS-DOS.
  66. X    makefile.manx: for Manx Aztec C on Amigas.
  67. X    makefile.sas:  for SAS C on Amigas.
  68. X    makefile.mms:  for VAX/VMS systems with MMS.
  69. X    makefile.vms:  for VAX/VMS systems without MMS.
  70. X
  71. XIf you don't see a makefile for your system, we recommend starting from either
  72. Xmakefile.ansi or makefile.unix, depending on whether your compiler accepts
  73. XANSI C or not.  Actually you should start with makefile.ansi whenever your
  74. Xcompiler supports ANSI-style function definitions; you don't need full ANSI
  75. Xcompatibility.  The difference between the two makefiles is that makefile.unix
  76. Xpreprocesses the source code to convert function definitions to old-style C.
  77. X(Our thanks to Peter Deutsch of Aladdin Enterprises for the ansi2knr program.)
  78. X
  79. XIf you don't know whether your compiler supports ANSI-style function
  80. Xdefinitions, then take a look at ckconfig.c.  It is a test program that will
  81. Xhelp you figure out this fact, as well as some other facts you'll need in
  82. Xlater steps.  You must compile and execute ckconfig.c by hand; the makefiles
  83. Xdon't provide any support for this.  ckconfig.c may not compile the first try
  84. X(in fact, the whole idea is for it to fail if anything is going to).  If you
  85. Xget compile errors, fix them by editing ckconfig.c according to the directions
  86. Xgiven in ckconfig.c.  Once you get it to run, select a makefile according to
  87. Xthe advice it prints out, and make any other changes it recommends.
  88. X
  89. XLook over the selected Makefile and adjust options as needed.  In particular
  90. Xyou may want to change the CC and CFLAGS definitions.  For instance, if you
  91. Xare using GCC, set CC=gcc.  If you had to use any compiler switches to get
  92. Xckconfig.c to work, make sure the same switches are in CFLAGS.
  93. X
  94. XIf you are on a system that doesn't use makefiles, you'll need to set up
  95. Xproject files (or whatever you do use) to compile all the source files and
  96. Xlink them into executable files cjpeg and djpeg.  See the file lists in any of
  97. Xthe makefiles to find out which files go into each program.  As a last resort,
  98. Xyou can make a batch script that just compiles everything and links it all
  99. Xtogether; makefile.vms is an example of this (it's for VMS systems that have
  100. Xno make-like utility).
  101. X
  102. X
  103. XSTEP 2: EDIT JCONFIG.H
  104. X======================
  105. X
  106. XLook over jconfig.h and adjust #defines to reflect the properties of your
  107. Xsystem and C compiler.  (If you prefer, you can usually leave jconfig.h
  108. Xunmodified and add -Dsymbol switches to the Makefile's CFLAGS definition.)
  109. X
  110. XIf you have an ANSI-compliant C compiler, no changes should be necessary
  111. Xexcept perhaps for RIGHT_SHIFT_IS_UNSIGNED and TWO_FILE_COMMANDLINE.  For
  112. Xolder compilers other changes may be needed, depending on what ANSI features
  113. Xare supported.
  114. X
  115. XIf you don't know enough about C programming to understand the questions in
  116. Xjconfig.h, then use ckconfig.c to figure out what to change.  (See description
  117. Xof ckconfig.c in step 1.)
  118. X
  119. XA note about TWO_FILE_COMMANDLINE: defining this selects the command line
  120. Xsyntax in which the input and output files are both named on the command line.
  121. XIf it's not defined, the output image goes to standard output, and the input
  122. Xcan optionally come from standard input.  You MUST use two-file style on any
  123. Xsystem that doesn't cope well with binary data fed through stdin/stdout; this
  124. Xis true for most MS-DOS compilers, for example.  If you're not on a Unix
  125. Xsystem, it's probably safest to assume you need two-file style.
  126. X
  127. X
  128. XSTEP 3: SELECT SYSTEM-DEPENDENT FILES
  129. X=====================================
  130. X
  131. XThe only system-dependent file in the current version is jmemsys.c.  This file
  132. Xcontrols use of temporary files for big images that won't fit in main memory.
  133. XYou'll notice there is no file by that name in the distribution; you must
  134. Xselect one of the provided versions and copy, rename, or link it to jmemsys.c.
  135. XHere are the provided versions:
  136. X
  137. X    jmemansi.c    This is a reasonably portable version that should
  138. X            work on most ANSI and near-ANSI C compilers.  It uses
  139. X            the ANSI-standard library routine tmpfile(), which not
  140. X            all pre-ANSI systems have.  On some systems tmpfile()
  141. X            may put the temporary file in a non-optimal location;
  142. X            if you don't like what it does, use jmemname.c.
  143. X
  144. X    jmemname.c    This version constructs the temp file name by itself.
  145. X            For anything except a Unix machine, you'll need to
  146. X            configure the select_file_name() routine appropriately;
  147. X            see the comments near the head of jmemname.c.
  148. X            If you use this version, define NEED_SIGNAL_CATCHER
  149. X            in jconfig.h or in the Makefile to make sure the temp
  150. X            files are removed if the program is aborted.
  151. X
  152. X    jmemnobs.c    (That stands for No Backing Store :-).  This will
  153. X            compile on almost any system, but it assumes you
  154. X            have enough main memory or virtual memory to hold
  155. X            the biggest images you need to work with.
  156. X
  157. X    jmemdos.c    This should be used in most MS-DOS installations; see
  158. X            the system-specific notes about MS-DOS for more info.
  159. X            IMPORTANT: if you use this, also copy jmemdos.h to
  160. X            jmemsys.h, replacing the standard version.  ALSO,
  161. X            include the assembly file jmemdosa.asm in the programs.
  162. X            (This last is already done if you used one of the
  163. X            supplied MS-DOS-specific makefiles.)
  164. X
  165. XIf you have plenty of (real or virtual) main memory, just use jmemnobs.c.
  166. X"Plenty" means at least ten bytes for every pixel in the largest images
  167. Xyou plan to process, so a lot of systems don't meet this criterion.
  168. XIf yours doesn't, try jmemansi.c first.  If that doesn't compile, you'll have
  169. Xto use jmemname.c; be sure to adjust select_file_name() for local conditions.
  170. XYou may also need to change unlink() to remove() in close_backing_store().
  171. X
  172. XExcept with jmemnobs.c, you need to adjust the #define DEFAULT_MAX_MEM to a
  173. Xreasonable value for your system (either by editing jmemsys.c, or by adding
  174. Xa -D switch to the Makefile).  This value limits the amount of data space the
  175. Xprogram will attempt to allocate.  Code and static data space isn't counted,
  176. Xso the actual memory needs for cjpeg or djpeg are typically 100 to 150Kb more
  177. Xthan the max-memory setting.  Larger max-memory settings reduce the amount of
  178. XI/O needed to process a large image, but too large a value can result in
  179. X"insufficient memory" failures.  On most Unix machines (and other systems with
  180. Xvirtual memory), just set DEFAULT_MAX_MEM to several million and forget it.
  181. XAt the other end of the spectrum, for MS-DOS machines you probably can't go
  182. Xmuch above 300K to 400K.
  183. X
  184. X
  185. XSTEP 4: MAKE
  186. X============
  187. X
  188. XNow you should be able to "make" the software.
  189. X
  190. XIf you have trouble with missing system include files or inclusion of the
  191. Xwrong ones, look at jinclude.h (or use ckconfig.c, if you are not a C expert).
  192. X
  193. XIf your compiler complains about big_sarray_control and big_barray_control
  194. Xbeing undefined structures, you should be able to shut it up by adding
  195. X-DINCOMPLETE_TYPES_BROKEN to CFLAGS (or add #define INCOMPLETE_TYPES_BROKEN
  196. Xto jconfig.h).
  197. X
  198. XThere are a fair number of routines that do not use all of their parameters;
  199. Xsome compilers will issue warnings about this, which you can ignore.  Any
  200. Xother warning deserves investigation.
  201. X
  202. X
  203. XSTEP 5: TEST
  204. X============
  205. X
  206. XAs a quick test of functionality we've included a small sample image in
  207. Xseveral forms:
  208. X    testorig.jpg    A reduced section of the well-known Lenna picture.
  209. X    testimg.ppm    The output of djpeg testorig.jpg
  210. X    testimg.gif    The output of djpeg -G testorig.jpg
  211. X    testimg.jpg    The output of cjpeg testimg.ppm
  212. X(The two .jpg files aren't identical since JPEG is lossy.)  If you can
  213. Xgenerate duplicates of the testimg.* files then you probably have working
  214. Xprograms.
  215. X
  216. XWith most of the makefiles, "make test" will perform the necessary
  217. Xcomparisons.  If you're using a makefile that doesn't provide this option, run
  218. Xdjpeg and cjpeg to generate testout.ppm, testout.gif, and testout.jpg, then
  219. Xcompare these to testimg.* with whatever binary file comparison tool you have.
  220. XThe files should be bit-for-bit identical.
  221. X
  222. XIf your choice of jmemsys.c was anything other than jmemnobs.c, you should
  223. Xalso test that temporary-file usage works.  Try "djpeg -G -m 0 testorig.jpg"
  224. Xand make sure its output matches testimg.gif.  If you have any really large
  225. Ximages handy, try compressing them with -o and/or decompressing with -G
  226. Xto make sure your DEFAULT_MAX_MEM setting is not too large.
  227. X
  228. XNOTE: this is far from an exhaustive test of the JPEG software; some modules,
  229. Xsuch as fast color quantization, are not exercised at all.  It's just a quick
  230. Xtest to give you some confidence that you haven't missed something major.
  231. X
  232. XIf the test passes, you can copy the executable files cjpeg and djpeg to
  233. Xwherever you normally install programs.  Read the file USAGE to learn more
  234. Xabout using the programs.
  235. X
  236. X
  237. XOPTIONAL STUFF
  238. X==============
  239. X
  240. XWe distribute the software with support for RLE image files (Utah Raster
  241. XToolkit format) disabled, because the RLE support won't compile without the
  242. XUtah library.  If you have URT version 3.0, you can enable RLE support as
  243. Xfollows:
  244. X    1.  #define RLE_SUPPORTED in jconfig.h or in the Makefile.
  245. X    2.  Add a -I option to CFLAGS in the Makefile for the directory
  246. X        containing the URT .h files (typically the "include"
  247. X        subdirectory of the URT distribution).
  248. X    3.  Add -L... -lrle to LDLIBS in the Makefile, where ... specifies
  249. X        the directory containing the URT "librle.a" file (typically the
  250. X        "lib" subdirectory of the URT distribution).
  251. X
  252. XIf you want to incorporate the JPEG code as subroutines in a larger program,
  253. Xwe recommend that you make libjpeg.a.  (See file README for more info.)
  254. X
  255. XCAUTION: When you use the JPEG code as subroutines, we recommend that you make
  256. Xany required configuration changes by modifying jconfig.h, not by adding -D
  257. Xswitches to the Makefile.  Otherwise you must be sure to provide the same -D
  258. Xswitches when compiling any program that includes the JPEG .h files.
  259. X
  260. XIf you need to make a smaller version of the JPEG software, some optional
  261. Xfunctions can be removed at compile time.  See the xxx_SUPPORTED #defines in
  262. Xjconfig.h.  If at all possible, we recommend that you leave in decoder support
  263. Xfor all valid JPEG files, to ensure that you can read anyone's output.
  264. XRestricting your encoder, or removing optional functions like block smoothing,
  265. Xwon't hurt compatibility.  Taking out support for image file formats that you
  266. Xdon't use is the most painless way to make the programs smaller.
  267. X
  268. X
  269. XNOTES FOR SPECIFIC SYSTEMS
  270. X==========================
  271. X
  272. XWe welcome reports on changes needed for systems not mentioned here.
  273. XSubmit 'em to jpeg-info@uunet.uu.net.  Also, ckconfig.c is fairly new and not
  274. Xyet thoroughly tested; if it's wrong about how to configure the JPEG software
  275. Xfor your system, please let us know.
  276. X
  277. X
  278. XAmiga:
  279. X
  280. XMakefiles are provided for Manx Aztec C and SAS C.  I have also heard from
  281. Xpeople who have compiled with the free DICE compiler, using makefile.ansi as a
  282. Xstarting point (set "CC= dcc" and "CFLAGS= -c -DAMIGA -DTWO_FILE_COMMANDLINE
  283. X-DNEED_SIGNAL_CATCHER" in the makefile).  For all compilers, we recommend you
  284. Xuse jmemname.c as the system-dependent memory manager.  Assuming you have
  285. X-DAMIGA in the makefile, jmemname.c will put temporary files in JPEGTMP:.
  286. XChange jmemname.c if you don't like this.
  287. X
  288. X
  289. XCray:
  290. X
  291. XShould you be so fortunate as to be running JPEG on a Cray YMP, there is a
  292. Xcompiler bug in Cray's Standard C versions prior to 3.1.  You'll need to
  293. Xinsert a line reading "#pragma novector" just before the loop    
  294. X    for (i = 1; i <= (int) htbl->bits[l]; i++)
  295. X      huffsize[p++] = (char) l;
  296. Xin fix_huff_tbl (in V2, line 42 of jchuff.c and line 38 of jdhuff.c).  The
  297. Xusual symptom of not adding this line is a core-dump.  See Cray's SPR 48222.
  298. X
  299. X
  300. XHP/Apollo DOMAIN:
  301. X
  302. XAt least in version 10.3.5, the C compiler is ANSI but the system include
  303. Xfiles are not.  Use makefile.ansi and add -DNONANSI_INCLUDES to CFLAGS.
  304. X
  305. X
  306. XHP-UX:
  307. X
  308. XIf you have HP-UX 7.05 or later with the "software development" C compiler,
  309. Xthen you can use makefile.ansi.  Add "-Aa" to the CFLAGS line in the makefile
  310. Xto make the compiler work in ANSI mode.  If you have a pre-7.05 system, or if
  311. Xyou are using the non-ANSI C compiler delivered with a minimum HP-UX 8.0
  312. Xsystem, then you must use makefile.unix (and do NOT add -Aa).  Also, adding
  313. X"-lmalloc" to LDLIBS is recommended if you have libmalloc.a (it seems not to
  314. Xbe present in minimum 8.0).
  315. X
  316. XOn HP 9000 series 800 machines, the HP C compiler is buggy in revisions prior
  317. Xto A.08.07.  If you get complaints about "not a typedef name", you'll have to
  318. Xconvert the code to K&R style (i.e., use makefile.unix).
  319. X
  320. X
  321. XMacintosh Think C:
  322. X
  323. XYou'll have to prepare project files for cjpeg and djpeg; we don't include
  324. Xthose in the distribution since they are not text files.  The COBJECTS and
  325. XDOBJECTS lists in makefile.unix show which files should be included in each
  326. Xproject.  Also add the ANSI and Unix C libraries in a separate segment.  You
  327. Xmay need to divide the JPEG files into more than one segment; you can do this
  328. Xpretty much as you please.
  329. X
  330. XIf you have Think C version 5.0 you need not modify jconfig.h; instead you
  331. Xshould turn on both the ANSI Settings and Language Extensions option buttons
  332. X(so that both __STDC__ and THINK_C are predefined).  With version 4.0 you must
  333. Xedit jconfig.h.  (You can #define HAVE_STDC to do the right thing for all
  334. Xoptions except const; you must also #define const.)
  335. X
  336. Xjcmain and jdmain are set up to provide the usual command-line interface
  337. Xby means of Think's ccommand() library routine.  Anybody want to write a
  338. Xmore Mac-like interface for us?
  339. X
  340. X
  341. XMS-DOS, generic comments:
  342. X
  343. XThe JPEG code is designed to be compiled with 80x86 "small" or "medium" memory
  344. Xmodels (i.e., data pointers are 16 bits unless explicitly declared "far"; code
  345. Xpointers can be either size).  You should be able to use small model to
  346. Xcompile cjpeg or djpeg by itself, but you will probably have to go to medium
  347. Xmodel if you include the JPEG code in a larger application.  This shouldn't
  348. Xhurt performance much.  You *will* take a noticeable performance hit if you
  349. Xcompile in a large-data memory model, and you should avoid "huge" model if at
  350. Xall possible.  Be sure that NEED_FAR_POINTERS is defined by jconfig.h or by
  351. Xthe Makefile if you use a small-data model; be sure it is NOT defined if you
  352. Xuse a large-data memory model.  (As distributed, jconfig.h defines
  353. XNEED_FAR_POINTERS if MSDOS is defined.)
  354. X
  355. XThe DOS-specific memory manager, jmemdos.c, should be used if possible.
  356. X(Be sure to install jmemdos.h and jmemdosa.asm along with it.)  If you
  357. Xcan't use jmemdos.c for some reason --- for example, because you don't have
  358. Xa Microsoft-compatible assembler to assemble jmemdosa.asm --- you'll have
  359. Xto fall back to jmemansi.c or jmemname.c.  IMPORTANT: if you use either of
  360. Xthose files, you will have to compile in a large-data memory model in order
  361. Xto get the right stdio library.  Too bad.
  362. X
  363. XNone of the above advice applies if you are using a 386 flat-memory-space
  364. Xenvironment, such as DJGPP or Watcom C.  For these compilers, do NOT define
  365. XNEED_FAR_POINTERS, and do NOT use jmemdos.c.  Use jmemnobs.c if the
  366. Xenvironment supplies adequate virtual memory, otherwise use jmemansi.c or
  367. Xjmemname.c.
  368. X
  369. X
  370. XMS-DOS, DJGPP:
  371. X
  372. XThe file egetopt.c conflicts with some library routines in DJGPP 1.05.
  373. XRemove #include "egetopt.c" from jcmain.c and jdmain.c, and in each of
  374. Xthose files change the egetopt(...) call to getopt(...).  This will be
  375. Xfixed more cleanly in some future version.  Use makefile.ansi, and put
  376. X"-DTWO_FILE_COMMANDLINE" (but *not* -DMSDOS) in CFLAGS.
  377. X
  378. X
  379. XMS-DOS, Microsoft C:
  380. X
  381. XSome versions of MS C fail with an "out of macro expansion space" error
  382. Xbecause they can't cope with the macro TRACEMS8 (defined in jpegdata.h).
  383. XIf this happens to you, the easiest solution is to change TRACEMS8 to
  384. Xexpand to nothing.  You'll lose the ability to dump out JPEG coefficient
  385. Xtables with djpeg -d -d, but at least you can compile.
  386. X
  387. Xmakefile.mc6 (MS C 6.x makefile) has not been tested since jmemdosa.asm
  388. Xwas added; we'd appreciate hearing whether it works or not.
  389. X
  390. X
  391. XSun:
  392. X
  393. XDon't forget to add -DBSD to CFLAGS.  If you are using GCC on SunOS 4.0.1 or
  394. Xearlier, you will need to add -DNONANSI_INCLUDES to CFLAGS (your compiler may
  395. Xbe ANSI, but your system include files aren't).  I've gotten conflicting
  396. Xreports on whether this is still necessary on SunOS 4.1 or later.
  397. END_OF_FILE
  398.   if test 18117 -ne `wc -c <'SETUP'`; then
  399.     echo shar: \"'SETUP'\" unpacked with wrong size!
  400.   fi
  401.   # end of 'SETUP'
  402. fi
  403. if test -f 'jdarith.c' -a "${1}" != "-c" ; then 
  404.   echo shar: Will not clobber existing file \"'jdarith.c'\"
  405. else
  406.   echo shar: Extracting \"'jdarith.c'\" \(1144 characters\)
  407.   sed "s/^X//" >'jdarith.c' <<'END_OF_FILE'
  408. X/*
  409. X * jdarith.c
  410. X *
  411. X * Copyright (C) 1991, 1992, Thomas G. Lane.
  412. X * This file is part of the Independent JPEG Group's software.
  413. X * For conditions of distribution and use, see the accompanying README file.
  414. X *
  415. X * This file contains arithmetic entropy decoding routines.
  416. X * These routines are invoked via the methods entropy_decode
  417. X * and entropy_decoder_init/term.
  418. X */
  419. X
  420. X#include "jinclude.h"
  421. X
  422. X#ifdef ARITH_CODING_SUPPORTED
  423. X
  424. X
  425. X/*
  426. X * The arithmetic coding option of the JPEG standard specifies Q-coding,
  427. X * which is covered by patents held by IBM (and possibly AT&T and Mitsubishi).
  428. X * At this time it does not appear to be legal for the Independent JPEG
  429. X * Group to distribute software that implements arithmetic coding.
  430. X * We have therefore removed arithmetic coding support from the
  431. X * distributed source code.
  432. X *
  433. X * We're not happy about it either.
  434. X */
  435. X
  436. X
  437. X/*
  438. X * The method selection routine for arithmetic entropy decoding.
  439. X */
  440. X
  441. XGLOBAL void
  442. Xjseldarithmetic (decompress_info_ptr cinfo)
  443. X{
  444. X  if (cinfo->arith_code) {
  445. X    ERREXIT(cinfo->emethods, "Sorry, there are legal restrictions on arithmetic coding");
  446. X  }
  447. X}
  448. X
  449. X#endif /* ARITH_CODING_SUPPORTED */
  450. END_OF_FILE
  451.   if test 1144 -ne `wc -c <'jdarith.c'`; then
  452.     echo shar: \"'jdarith.c'\" unpacked with wrong size!
  453.   fi
  454.   # end of 'jdarith.c'
  455. fi
  456. if test -f 'timg.ppm.u.b' -a "${1}" != "-c" ; then 
  457.   echo shar: Will not clobber existing file \"'timg.ppm.u.b'\"
  458. else
  459.   echo shar: Extracting \"'timg.ppm.u.b'\" \(32122 characters\)
  460.   sed "s/^X//" >'timg.ppm.u.b' <<'END_OF_FILE'
  461. XMXYNONW.'AS]3=2M+<BA(7A(_:!Q)6A4]6A4]7A8]91U$8AH[5P\P<25 HE9Q
  462. XMOG!_OG!_N6UPO7%TS()\C%Z69CAP=T5[=$)XLWNK?$1T1@@R5QE#6A4]8!M#
  463. XM8AM 6Q0Y61 T7A4Y8AL^81H]9B%@4 M*7A-#50HZFDEAS'N3HE!3K5M>YYR0
  464. XM[:*6VYR,_+VM\,&TZKNNIH)Y8#PSK"Y"LC1(R5!>TEEGQ5!9T5QEX&]RV6AK
  465. XMZW=YZW=YZ'M[ZWY^Z(:$ZHB&XXN(XHJ'YI&&WHE^ZXJ(\9".[H>+[8:*\8V6
  466. XM\X^8ZY.:Y(R3X8^5Y)*8XHZ4XHZ4WX.)RFYTXF)JYF9NVFUQU6ALTF)GT6%F
  467. XMV5QIV5QIUG1ZZXF/WZ^I]\?!_MG0[LG YJBJWJ"B[H^$Y(5ZZ(."Z82#X75\
  468. XMUVMRU65JRUM@SUY?QU97Q%19O4U2NTUAK3]3AQL\@Q<X91H_8!4Z:R!(:1Y&
  469. XM=2I2:R!(6A$NE4QITXN?YY^SO'2(BT-7;R5%=BQ,71$^;2%.610\6Q8^7A8]
  470. XM81E 714V6! Q>2U(K&![O&Y]O&Y]N6UPP'1WT(: C%^/?$]_G&B/KWNBH62$
  471. XM<#-36!$T;29):1]+71,_7Q5'9AQ.5Q8_3PXW5!H[72-$51Y12Q1'8!$U;1Y"
  472. XMT7-\OF!IFTM!W8V#T)Z,X[&?U[*HW[JP]KS!SI29<R(PA#-!L#8\OT5+RE-8
  473. XMSE=<SE=<TUQAVF1IWVENX7%TY'1WXWQ\Z8*"Z8J'ZXR)YXV(YHR'YY62Z9>4
  474. XMYI62XI&.WI*-XI:1XI:1X)2/X)*.XY61[)23ZY.2[(N-XH&#W79ZUF]SS71U
  475. XMRG%RV61MUF%JXUEGX5=EVUEDVEACT&YRX'Z"XZ6A_L"\_='*]LK#X;BUU*NH
  476. XMYYF3X9.-X(2(V'R W6Y[V6IWX6%OWEYLW5UCVEI@RU19R%%6OE)@J3U+AR0\
  477. XM?QPT8Q0Z8!$W;R!(<"%)=B=/:QQ$7A(OC$!=U(J<YYVOSH>8?SA)>S)/81@U
  478. XM6Q$];2-/7!9#5Q$^:AA!;AQ%:0\L<!8SED%/NF5SPWAVO'%OMW1HQ(%UTHU]
  479. XM@52$FVZ>M("GB55\=#=7BTYNEU!SC49I?3-?8QE%60]!8AA*6QI#5Q8_4QDZ
  480. XM4!8W51Y14QQ/7 TQGD]SR6MTNUUFK%Q2[)R2VJB6X:^=WKFOX;RRXZFN;3,X
  481. XM=",Q?RX\M#I P4=-RU19SE=<SE=<TUQAVF1IWVENX7%TY'1WXGM[Z(&!YXB%
  482. XMZXR)Z8^*Z(Z)ZIB5[)J7ZIF6YI62XI:1YIJ5YIJ5XY>2XY61Y9>3[964[)23
  483. XM[(N-Y(.%WWA\VG-WSW9WS'-TVV9OUV)KXUEGXEAFVUEDVEACSFQPWGR XJ2@
  484. XM_+ZZ_='*]\O$X;BUTZJGY9>1X)*,X(2(V7V!WW!]VFMXX6%OWEYLW%QBVUMA
  485. XMS59;RE-8P%1BJCY,B"4]?QPT918\8Q0Z<"%)<R1,>"E1:AM#7! MASM8THB:
  486. XMY)JLSH>8CTA9=RY+81@U6A \:1]+6Q5"61- :AA!:AA!9PTJ=QTZH$M9P&MY
  487. XMPG=UO'%ONG=KQH-WTHU]E5Z/:S1E61Y#3Q0Y>3A1N'>0M&V&A3Y7?C-88A<\
  488. XM50PZ7A5#6QE%61=#51H_4A<\515 5Q=";AXZPW./O65JJ5%6PWQQ[::;VZZ@
  489. XMZ[ZPXKRXX;NWF5IF20H6<18NE#E1ND!&Q4M1SU5;T%9<T%9<U5MAVF1IWVEN
  490. XMX7%TXW-VXWIZZ']_YH6#ZXJ(ZX^+[9&-[9B4\)N7[9N6ZIB3YYF3ZIR6Z)R5
  491. XMY9F2ZIJ4ZIJ4[I:3ZY.0[(F*Y8*#Y'I]X'9YU'=XTG5VWFERVF5NY%IHXEAF
  492. XMW%IEW%IES6IMWGM^XJ&<_;RW_M++^<W&X[JWTJFFY96/X9&+X86)VW^#X7)_
  493. XMVVQYWV)OVUYKW%QBW%QBSUE@S%9=P%9GJ#Y/A"1 ?!PX9A<[9Q@\<"%)=B=/
  494. XM>RQ4:1I"6@XK?S-0T(:8X):HRX25I5YO;R9#8!<T60\Y8QE#6A1!71=$:QE 
  495. XM9!(Y9 HE@2="KEEEQW)^P'5QOG-OOGMOR(5YTHU]A4Y_0PP].P E6!U"AT9?
  496. XML7")L6J#G%5N>2Y39!D^711"8AE'5Q5!4A \51H_6A]$30TX4A(]GDYJP7&-
  497. XMN&!EJU-8YI^4Z:*7VJV?\<2VYL"\HGQX4A,?8"$M<Q@PH49>P$9,R4]5T5==
  498. XMT%9<T%9<UEQBVF1IWFAMX7%TXG)UXGEYYGU]XX* Z8B&[)",[Y./ZY:2[IF5
  499. XM[9N6ZYF4YYF3ZIR6Z)R5Y)B1[)R6ZIJ4[962Z9&.ZH>(Y(&"Y'I]XGA[UGEZ
  500. XMU7AYX6QUW&=PY5MIXEAFW%IEW5MFS&ELW7I]X)^:^[JU_M++_='*YKVZTJFF
  501. XMXY.-WX^)XH:*W8&%Y'6"W6Y[X&-PVUYKVUMAW5UCT5MBSEA?P%9GISU.@R,_
  502. XM>QLW9!4Y:!D];1Y&>2I2?S!8:!E!6P\L>"Q)SH26W)*DQ7Z/N'&"9QX[7!,P
  503. XM60\Y7Q4_6Q5"81M(:QE 7@PS9 HEC#)-N61PR72 OG-OP79RPX!TRXA\TXY^
  504. XM=C-E619(8!DZ9A] @CM*K69UMFMYK&%OB3Y6;B,[7A8]81E 51- 4 X[4A,_
  505. XM4Q1 4PHF;B5!R'F&N&EVIEE6RWY[\+>LWZ:;VK2NXKRVS*"H2Q\G4P@@:A\W
  506. XMD"A*GS=9PTE/S%)8T5==T5==T5==UUUCVV1IW69KX&]RXG%TXG=XY7I[Y']^
  507. XMZ82#[(V*\9*/ZY2,\)F1\)R3[IJ1ZYN1[9V3ZYN1YY>-[)N1Z9B.[9&+Z(R&
  508. XMZ(. XWY[XWAWXG=VV79YV79YXVUTWFAOX5QFWEECVUMCW5UESVALWWA\X9J7
  509. XM^[2Q_]#*_]/-Z,*\TJRFX9&+WX^)XX:(WX*$Y7>!WW%[X61PW%]KVEQAW5]D
  510. XMSUUERUEANU5IH3M/?2$_=1DW8A,W:!D]:!E!>2I2@C-99Q@^7! M<B9#S8.5
  511. XMVI"BOWB'PWR+9QX[6 \L6 XX71,]8!I%8QU(:AD]7 LO:A$JF#]8P&QSQG)Y
  512. XMO7-MQ7MURHAYSXU^TXY^>C=I619(308G4PPMAC].M6Y]MFMYLVAVFD]G;B,[
  513. XM3@8M40DP4A ]51- 41(^20HV6A$MD4ADQWB%LF-PHE52]*>DZ[*GY*N@Y+ZX
  514. XMU:^I>4U50!0<8!4M9ALSEBY0F3%3Q$I0S%)8T5==T5==TEA>V%YDVF-HVV1I
  515. XMW6QOX7!SX79WY'EZX7Q[Y8!_Z8J'[H^,ZY2,\)F1\9V4\)R3[IZ4[Y^5[)R2
  516. XMZ)B.Z9B.YY:,ZHZ(Y8F#Y8!]X'MXX79UWW1SUG-VUW1WXFQSW6=NX%MEW%=A
  517. XMVUMCW5UESVALWG=[W9:3]J^L_L[(_]7/Z\6_TZVGX9&+WHZ(XH6'WH&#Y7>!
  518. XMWW%[XV9RWF%MVUUBWF!ESUUER5=?MU%EFS5)>!PZ<A8T81(V:1H^8Q0\>"E1
  519. XM@S1:9!4[6P\L;" ]RH"2V8^AOG>&RH.2="M(5PXK6 XX7!(\9B!+9!Y):!<[
  520. XM8 \S=QXWI4QEQ7%XPV]VO')LRH!ZT8^ TY&"THU]=RA69!5#7 PJ:QLYETI3
  521. XMIUICJ5M@T8.(O'"!A3E*6! Q40DJ4 PX5! \41(^2@LW>"4RN&5RM&=HJEU>
  522. XMO'IR]K2LW[&JYKBQV[>\GGI_0@\E72I :!0W<1U DR!*IS1>PDA.RE!6T5==
  523. XMTEA>U5E@VEYEVV%GVV%GWFAMXVURY'1WYG9YXWIZY7Q\YX6#[(J(ZI&&\)>,
  524. XM\IN0\IN0\)V0\9Z1[)N.YY:)Z92(Z).'ZHR#YHA_YW]YXGITXG-PWW!MUVUP
  525. XMV6]RX&IQVV5LW%ICV%9?VEIBW5UETF5IWW)VW8^,]:>D_<G$_]3/ZLC T*ZF
  526. XMXY&,X(Z)X82&W8""Y7=_WW%YXVAQWV1MV5]CVV%EREQDPU5=KDYCDC)';Q@\
  527. XM:A,W8A0U;!X_8!$W=RA.@C-98!$W60TH91DTQ7N+VI"@P'F(T(F8B4!<6A$M
  528. XM6 XV6A X:B5-8AU%910V9Q8XABY LUMMRG=ZPF]RO7-ISH1ZUY6$UI2#THU]
  529. XM8Q1"9QA&8! N9!0RE4A1H51=CD!%J5M@YIJKL&1U?#158QL\3@HV2@8R30XZ
  530. XM4!$]DC],R7:#K6!AHE56[*JB[*JBZ+JS\L2]S*BM32DN1Q0J4!TS<!P_:Q<Z
  531. XMD!U'J39@P4=-R4]5T%9<TUE?UEIAVEYEVV%GV5]EW&9KXFQQY'1WYG9YXGEY
  532. XMXWIZY(* ZHB&YHV"[).([I>,[YB-[9J-[IN.Z)>*XY*%Z).'YY*&ZHR#Y8=^
  533. XMYW]YX7ESX7)OWF]LU6MNUVUPWVEPVF1KVUEBUU5>V5EAW5UET&-GW7!TVHR)
  534. XM\**?^<7 _]+-ZLC T*ZFXY&,X(Z)X82&W8""Y'9^WW%YY&ERX&5NVF!DVV%E
  535. XMR5MCP%):JDI?CBY#;!4Y9Q T91<X;B!!7@\U=RA.@3)87 TS5@HE8!0OPGB(
  536. XMVI"@Q'V,U8Z=FE%M7A4Q60\W60\W;"=/8!M#9!,U;1P^D#A*O&1VSGM^PW!S
  537. XMO7-IT(9\VIB'V):%THU];AE!:10\>28_=R0]HE):NVMSN6MP?S$VHE9ISX.6
  538. XMQ7V<7!0S6!4Z6!4Z/0 A8R)'QG!RL%I<IUU7NW%K\;FQ[;6MXKFY],O+9#I-
  539. XM1APO3A P71\_@"-);1 VG2A.I3!6N3]%P4=-S%!7TU=>UUMBV5UDW6%HWV-J
  540. XMWF=LX6IOXG%TYG5XY7AZZ'M]ZH&![(.#YXF [(Z%\)6+\I>-[)6*Z9*'YY*&
  541. XMZ).'Z9"%Z9"%ZXJ"Y81\Z7UYY7EUWVQJU&%?VFANU6-IUV!EV&%FV5M@TE19
  542. XMU%9;VEQAV&1JW&ANW(.$]9R=];^X_]'*[L_$T;*GWXN$WXN$XH*$VWM]X')Y
  543. XMW6]VX&ENW69KV61FTUY@R5YGQ5ICH$5??2(\8Q$[8Q$[:!H[;R%":!D_?S!6
  544. XMAC=;7Q T50DD9AHULFEVV(^<NG. P7J'M&N%91PV4PDQ7Q4]92!%92!%7@XL
  545. XM:QLYJ%!?R'!_Q7-PQ')OQGUMSH5UTI!^U9.!U(^!C#=?:A4]>RA!AC-,JEIB
  546. XMTX.+V8N0CT%&;2$TM6E\SH:E:B)!3@LP3 DN3@TR@#]DM%Y@P&ILIEQ6V(Z(
  547. XM\[NS_,2\Z\+"JH&!5"H]/1,F2PTM7B! @R9,;1 VF21*H2Q2NT%'PTE/S5%8
  548. XMU%A?UEIAV%QCVU]FW6%HW69KX&ENX7!SY71WY7AZYWI\Z8" ZX*"YXF ZHR#
  549. XM[)&'[I.)ZI.(Z9*'YY*&YY*&Z(^$Z9"%ZXJ"Y81\Z'QXY'ATX&UKUF-AV6=M
  550. XMU6-IUV!EV&%FV5M@TE19TU5:V%I?V&1JW&ANW82%])N<\[VV_]#)\M/(VKNP
  551. XMWXN$W8F"X(""VWM]X')YW&YUWVAMW&5JV&-ETUY@R5YGP59?FC]9>1XX8A Z
  552. XM8Q$[:!H[<2-$:AM!?S!6AC=;7Q T5 @C9!@SJ6!MV(^<PWR)QG^,M&N%9ATW
  553. XM40<O8!8^8AU"8!M 81$O=R=%L5EHRW."Q')OPW%NR8!PSX9VT8]]TY%_TXZ 
  554. XM?"E&80XKAS5*HE!EMF=TZ)FF]*BYH55F7! KBS]:K66&:"!!2@<B1@,>7QTR
  555. XMF5=LP&YINFACK6IB[*FA\[^[_\W)N(N721PH2A0T/0<G40<O:1]'C2Q0<Q(V
  556. XMDR4_G"Y(O4-)Q$I0SE)9U%A?UUA@V5IBV5UDVU]FWF1JXFANY&YSYW%VYG5X
  557. XMZ7A[Z7Q^['^!Z(=_Z(=_Z(B ZHJ"ZH^%[)&'ZI&&Z9"%Z8N"ZXV$[HB"YH!Z
  558. XMYWAUXW1QX6MJVF1CVV%GV5]EUV!CUV!CU5M?SU59TE19U%9;UV!EW69KWW^!
  559. XM])26[K2O_\O&]MG-Y,>[X(R%W(B!WWZ VWI\X'-WW&]SWF=JVV1GU6%CTU]A
  560. XMPU]HM5%:C#94<!HX6Q! 7A-#9A@W<R5$;1Y"@#%5A39:8!$U4P@@8!4MG51A
  561. XMUHV:S8:3RH.0M&N%:B$[40@N8!<]7AH\614W914QAS=3O69PS'5_PW%JQ')K
  562. XMS85PT8ETT(]XT9!YT(M]<1X[@2Y+IU5JJUENK%UJW8Z;[J*SM&AY:!PW:1TX
  563. XM?C976Q,T2 4@10(==#)'MG2)N&9AFTE$T(V%^[BP\[^[Y[.O;D%-1!<C1 XN
  564. XM/PDI50LS;B1,ES9:>1@\DR4_GS%+NT%'PTE/S5%8TU=>UUA@V5IBV5UDW&!G
  565. XMW6-IX6=MXFQQYG!UY71WYW9YYWI\ZGU_YH5]XX)ZX8%YY(1\YXR"ZH^%Z9"%
  566. XMYXZ#YXF ZHR#[(: Y'YXY'5RX'%NWVEHV6-BUEQBUUUCUV!CUE]BU5M?T%9:
  567. XMT5-8T%)7U%UBVF-HVWM][HZ0YJRG_\;!^-O/[=#$X8V&VX> W7Q^W'M]XG5Y
  568. XMW&]SWF=JW&5HU6%CU6%CP5UFK$A1@BQ*:Q4S7!%!819&9!8U=2=&<2)&@#%5
  569. XMA#598!$U4P@@7!$IE$M8THF6T8J7R8*/MFV'=2Q&5@TS7A4[6Q<Y5! R:AHV
  570. XMED9BQ&UWRW1^Q')KQG1MTHIUTXMVSXYWSHUVSHE[AC9*LV-WLF-WB#E-?#!%
  571. XMI5ENK&. DTIG7!(Z6A X:R)&40@L2P8:6!,GDU%4QH2'K&!;L65@^+JT^KRV
  572. XMWJJNDU]C.P<=5B(X4 PV3@HT7PLV=B)-GCY:?1TYC"HRFCA NCY%P45,RT]6
  573. XMTE9=UUA@V5IBW5YFX&%IW6%HX&1KXFMPY6YSY7%UYW-WZ'=ZZWI]Y8%[XGYX
  574. XMWWUWXH!ZY8=_Z8N#Z8N#Z(J"YX> Z(B![()^Y7MWY7)QX&ULW61EUEU>U%5=
  575. XMV%EAV5]CV5]CTUY>SUI:T%57S5)4UUMBW&!GWG=[[XB,YJBB_\2^^=_1\MC*
  576. XMY(Z&VX5]W'M[W7Q\XW9ZW&]SW&=IVV9HTF-ATF-AO%EDH3Y)=2-#91,S6Q1'
  577. XM8!E,8A0S>"I)="5)?S!4@3-481,T5 DA6Q HC$-.RX*-T8N5Q7^)N7&(AS]6
  578. XM710Z7!,Y5Q,U4@XP="4\HE-JQ6]UR')XQW9JRGEMU(QUU(QUSHUVS(MTS(=Y
  579. XMFDI>RWN/N6I^BSQ0>R]$CT-8>C%.:B$^5@PT6Q$Y710X20 D9R(VB418I6-F
  580. XMG5M>JU]:UHJ%Y:>AWZ&;PX^36B8J.04;/0D?4P\Y4P\Y7PLV=2%,HT-?@2$]
  581. XMB2<OF#8^N3U$P$1+RT]6TE9=UUA@VEMCWE]GX&%IW&!GWV-JX6IOY&URXV]S
  582. XMYG)VYG5XZ7A[X7UWX7UWWWUWX7]YXX5]Y8=_YXF!YXF!YH9_Y85^Z'YZXGAT
  583. XMY'%PWVQKV%]@S515TE-;V5IBW&)FW&)FUF%AU%]?U%E;SU16V5UDW6%HWG=[
  584. XM[XB,YJBB_\; ^^'3\]G+Y8^'V8-[V7AXW'M[Y'=[W&]SVV9HVF5GT&%?T&%?
  585. XMM5)=E#$\:QDY8Q$Q719)8!E,81,R>BQ+=B=+?2Y2?C!181,T5PPD6Q H?S9!
  586. XMPWJ%THR6PWV'OW>.F%!G9!M!61 V4P\Q51$S@C-*KV!WQG!VQW%WRWINSGUQ
  587. XMU8UVU(QUS8QURXISS(=YCD-1L69TM6M]KV5WCD5?C$-=;B1,7Q4]6A% 5@T\
  588. XM4PDQ8!8^I%]MO'>%MW5ME%)*H%I4PWUWO']]S(^-I')Z62<O6!L[20PL6@X]
  589. XM6P\^9 <T?!],JDM@AR@]A2HHDS@VNCY%P45,RT]6TE9=UUA@V%EAW5UEWU]G
  590. XMW5YFX&%IXFANY&IPXVURY6]TY71WYW9YWWEVX7MXXWY[Y']\XH)]XX-^Y(6 
  591. XMY8:!YH2 Y()^Y'EXX'5TY7!RX&MMU%A=Q$A-TU%:W5MDWV5IX&9JW&=GVV9F
  592. XMVV!BU%E;VUMCW5UEW7-X[H2)Y:>A_\2^]MW/[-/%Y(Z&UH!XUG5UVGEYXW9X
  593. XMV6QNV&-CV&-CSE]=RUQ:K$M6B"<R8!(S7A Q7!9,7AA.7Q$P>RU,=RE*>BQ-
  594. XM>RU.8A0U60XF71(J;R8QNG%\UI":QX&+QGZ5I5UT:!]%5PXT30DI6A8VDD-:
  595. XMO6Z%R7-WR7-WT']RSWYQU(UTTXQSS(MRRXIQS8AZ:1XL=BLYCT57I5MM;20^
  596. XM8!<Q4PDQ3@0L4@DX3 ,R6Q$YC$)JUY*@T8R:S8N#R8=_O'9PP7MUV)N9XZ:D
  597. XM@E!831LC0@4E5!<W6@X]71% 90@U?R)/L5)GC2Y#ARPJE#DWO$!'PT=.S%!7
  598. XMTE9=UE=?UUA@VUMCW5UEW5YFX&%IX6=MY&IPXFQQY&YSY'-VYG5XW7=TXGQY
  599. XMY8!]Y8!]X8%\X8%\XH-^Y8:!YH2 XX%]XG=VWW1SYG%SX&MMT55:OD)'U%);
  600. XMWUUFXFALY&INX&MKX&MKWV1FV%U?V%A@V5EAV&YSZH"%XJ2>_\&[\=C*Y<R^
  601. XMXXV%U'YVTW)RV7AXX71VUVILUF%AUF%AS%U;R%E7ID50@2 K6PTN70\P7!9,
  602. XM7!9,7Q$P?"Y-=RE*>2M,>2M,8A0U6Q H7A,K8ADDM&MVVI2>RX6/RH*9JV-Z
  603. XM:2!&5PXT204E71DYGD]FQG>.S'9ZRW5YTX)USWYQU(UTTXQSS(MRRXIQS8AZ
  604. XM60TX60TXA5!W@TYU>#EG519$6  O8@0Y9A4Y5P8J*P$&NY&6P)F)R:*2X):$
  605. XMZ9^-VYNLZ:FZV)2FFU=I9!\S4PXB4! O3P\N6!D_30XT7!$V<29+J$EBCB](
  606. XME20QI#- O3M$QD1-TT]6VU=>W5E=W5E=VUI;W%M<WE]?XF-CXFEIY6QLX6UO
  607. XMXV]QXW)UYG5XZG5WZG5WYWAXZ'EYXWUZY7]\XX%]Y8-_YX)_YH%^YGMZXG=V
  608. XMY'!RW6EKU%A=QDI/R5A;V6AKXV=NU5E@UTQ8X59B[%QLZUMKT$E6VE-@U65L
  609. XMX7%XZ9>4_[6R_[^X\[&JUWUXUGQWX7MUW7=QW6IHWVQJW&EUSEMGP%Y\L4]M
  610. XM?"E68 TZ6Q5#6Q5#5Q,_9"!,;!E(<!U,AS)*=B$Y@RQ%:Q0M7PPY8@\\6!,Y
  611. XMJ&.)RX^6RX^6NW=]KFIP>29)70HM7@TD8Q(IIE=CR7J&QWAZRWQ^R'QNU8E[
  612. XMU8IVU(EUTXATT89RSX9V:1U(IEJ%KWJA5R)).P J3Q ^>!I/:@Q!4  C3P B
  613. XM7S4ZS:.HOYB(V;*B\JB6\*:4[*R]R8F:EU-E:"0V3PH>3 <;4! O6!@W6QQ"
  614. XM4!$W71(W<29+JDMDD3)+FBDVJ3A%O3M$Q4-,T4U4UU-:V559VE9:V5A9VUI;
  615. XMWE]?X6)BX6AHY&MKX6UOXV]QY'-VYG5XZ71VZ71VYG=WZ'EYXWUZY7]\XX%]
  616. XMY()^YH%^YH%^YWQ[XWAWY7%SWVMMUUM@RT]4U&-FT6!CPD9-H"0KG1(>K"$M
  617. XMP3%!QS='UD]<VE-@SEYEUV=NWHR)^JBE\:^HXJ"9VX%\U'IUW7=QW'9PWVQJ
  618. XMWFMIV69RRUADOEQZHD!>;QQ)70HW6!) 6Q5#6A9"81U);AM*<R!/A"]'=2 X
  619. XM@"E";!4N8Q ]9A- 51 VG5A^RX^6SI*9N75[M'!V@S!37@LN:!<N=20[LV1P
  620. XMRWR(Q79XRGM]RGYPU8E[U8IVU(EUTXATT89RSX9V;2Q3KVZ5L6R4:"-+5Q(X
  621. XM51 V7QP^1P0F2P8<5A$GE$M6UXZ9V)J6[[&MV*J9X;.B[JW&IF5^81PT2@4=
  622. XM4 LC51 H5!$S6!4W7AU$4A$X7A,X="E.KD]HEC=0G2X[K3Y+P#Y'QD1-STU4
  623. XMU%)9V%18V559VEE:W%M<W%U=X&%AX69GY&EJXFUOY&]QY'-VYG5XZ'-UZ'-U
  624. XMYG=WYWAXY7QZYWY\XX%]Y()^XX%]Y8-_Y7]\X7MXY'5UX'%QV61FSEE;VV%G
  625. XMVF!FSD]7MC<_L2PVNC4_P3]*P#Y)OT1-PD=0MU%5PUUAU()_\9^<Z*2>V96/
  626. XMX82#U'=VVG%MW71PWFUNVFEJTF-RQUAGM5=XBRU.81,^70\Z5Q) 6Q9$71Q%
  627. XM7AU&<!U*>293@BU#=B$W?28_;!4N9Q1!:19#3@DOB41JQHJ1T)2;LV]UMW-Y
  628. XMBSE97 HJ<R(RCCU-Q'1\SW^'PG1QR'IWS8%SU8E[U8EXTX=VT8=UT(9TSH5V
  629. XMFEF FEF :B5-4 LS<"M18!M!;"E+9R1&;"<]A4!6G%->MFUXS8^+SY&-Q9>&
  630. XMYKBGMW:/?#M43@DA4 LC9R(Z;"<_7!D[4@\Q7!M"41 W8!4Z=RQ1M%5NG#U6
  631. XMH#$^K3Y+Q4-,RTE2T4]6U5-:V%18VE9:W%M<WUY?VUQ<WV!@X&5FXVAIX6QN
  632. XMXVYPXW)UYG5XYG%SYW)TY79VYWAXY7QZYGU[XH!\XX%]XX%]Y8-_YH!]XWUZ
  633. XMYG=WY'5UX&MMUV)DR$Y4TEA>VEMCUUA@VU9@WUIDUU5@RTE4N3Y'PD=0P5M?
  634. XMT6MOW8N(\9^<Y:&;V)2.Y(>&U'=VV7!LW71PVVIKUF5FT6)QREMJI4=H>1L\
  635. XM70\Z9AA#6A5#6Q9$8B%*82!)<1Y+@2Y;@BU#?"<]?28_;A<P:19#9Q1!3@DO
  636. XM>#-9PX>.U)B?L6USO'A^DT%A7PTM=20TH$]?S7V%SW^'PW5RR'IWT85WU(AZ
  637. XMU(AWTX=VT8=UT(9TSH5VDU1ZBDMQ7@PS30 B=S1.?3I4AU]FB&!GGF-HK'%V
  638. XMN%-BME%@L5UFP&QUS+2KOZ>>:"5)5A,W3@8G6! Q;R5%>"Y.:2)'6A,X6Q=!
  639. XM40TW8!4Z>S!5MUISGD%:GS(^J3Q(QD9.RTM3TE!7U5-:UE58UU99W%M<WUY?
  640. XMVUQ<WE]?WV1EXF=HX&MMXFUOY'!TYG)VY6YQYF]RY71UZ'=XY7QZYGU[XH!\
  641. XMXH!\X8%\Y(1_Y()^X7][X7MXX7MXWW1SV&ULV%EAW%UEUUUCTUE?T5UAUV-G
  642. XMT65IREYBP%]?TG%QWHF'[)>5[:.=\*:@X9V7U)"*YH.&V79YW'%RW'%RUF9M
  643. XMTF)IRV-UQ5UOB#%5:!$U6A0_9B!+6AA$5Q5!8B%(9"-*<Q]*C#AC@RU!A2]#
  644. XM?B@^;QDO:19%8Q _5 \W;BE1PH.+VINCM'!TP7V!ET-C:14U>"8KK5M@SWY^
  645. XMSGU]QGEPR7QSTXAZTXAZTXEYTHAXT(=ZSH5XSH1\71Y$<3)8@S%8@2]6DU!J
  646. XMCTQFF7%XJX.*T9:;KW1YK$=6LTY=HT]8W8F2ZM+)>&!73PPP5!$U6Q,T6A(S
  647. XM8QDY;2-#:B-(8AM 6Q=!40TW818[?#%6N5QUH$-<H#,_J3Q(Q45-RDI2T4]6
  648. XMU%)9U%-6U517V5A9W%M<W%U=WV!@WV1EXF=HWVILX6QNXFYRY'!TXVQOY6YQ
  649. XMY'-TYW9WY7QZYGU[X7][X7][X8%\Y(1_Y8-_X7][XGQYXGQYXWAWWG-R[W!X
  650. XM[&UUX&9LV5]EUV-GXFYRY'A\YGI^TW)RZ8B(^:2B_Z^M_+*L\ZFCWYN5THZ(
  651. XMXG^"VG=ZWG-TVF]PU&1KTV-JQEYPMDY@<AL_90XR6Q5 9!Y)6AA$51,_7AU$
  652. XM9R9-<AY)DS]J@BQ BC1(?B@^<APR;!E(8@\^51 X8!M#M'5]TY2<LV]SO7E]
  653. XMCSM;<AX^@S$VN&9KRGEYRWIZRWYURWYUU8I\TXAZTHAXT8=WSX9YSH5XS8-[
  654. XM8!4\<B=.G5=RGEASFFANF6=MLHB!U:NDSH6%H%=7FS1!OE=DQW:&]*.SNIRC
  655. XM0B0K6Q5"8AQ):!U%9!E!91@]:AU":1]':!Y&8AU%51 X8A4Z?"]4MUISH$-<
  656. XMH35#JS]-Q$5-R4I2T5%7U%1:UE58UE58V%=8VEE:WEU>X%]@XF1FY&9HWVAK
  657. XMX&ELX6MPXVURY&INYFQPY7%SZ75WYWIZZ'M[Y'Y[XWUZXH!\Y8-_Y8-_X7][
  658. XMWWUYX'YZX7QYWGEVXFMPXFMPVVMNVFIMU'5RXH. X9.-YYF3RH=]W)F/[JZE
  659. XM^+BO]K:MZZNBW)R4T9&)XGJ WG9\WG)XUVMQTV9RU&=SME=PDS1-81,[91<_
  660. XM61E%6!A$6QM$6!A!8!T_;BM-<A]&ED-J?B@ZBC1&?B4\=ATT=!]/:!-#6! Y
  661. XM5P\XIVAPS(V5MG%SNW9XAS1/?BM&FT9"R71PR'9ORGAQSH)TS(!RU8Q]TXI[
  662. XMSXEYSHAXS89]S(5\S8)^8A<^?C-:O':1KVF$LH"&S)J@TJBASZ6>E$M+D$='
  663. XMGSA%T&EV\:"PXI&A7D!'02,J6A1!71=$9QQ$;2)*<B5*<21);2-+;2-+:"-+
  664. XM6!,[8A4Z>BU2M5AQH$-<I#A&L$12QD=/RTQ4U%1:V%A>V5A;V%=:V5A9VUI;
  665. XMWEU>X6!AXF1FY&9HWVAKWVAKX&IOXFQQXVEMY6MOY7%SZ75WYWIZZ'M[Y'Y[
  666. XMXWUZXH!\Y8-_Y8-_X7][WGQXX'YZX7QYWWIWY6YSY6YSWV]RWV]RW7Y[[8Z+
  667. XM\J2>_:^IVYB.Y:*8\+"G]K:M\[.JZ:F@VIJ2S8V%X'A^W75[W'!VU6EOUFEU
  668. XMV&MWKU!I?!TV81,[;!Y&6AI&4Q,_7AY'7AY'8A]!<S!2<A]&ET1K>B0VB3-%
  669. XM>R(Y=QXU>214;AE)7A8_6! YIF=OS8Z6OWI\P'M]BC=2CCM6K5A4U'][QW5N
  670. XMR7=PT(1VS(!RU8Q]U8Q]SXEYSHAXS89]RX1[S8)^BS-5RW.5P)&<NXR7N9>/
  671. XMRJB@Z:>BP7]ZGT-'FCY"DT1.NVQV[JW"=S9+3 PK6!@W71=%71=%:!I#9QE"
  672. XM9Q4\<1]&=2=/;!Y&7Q4]8QE!60PQ;B%&KU1LHD=?IC],J4)/Q$A/S%!7TU5:
  673. XMTE19TU16UUA:VUI;VEE:WEU>X%]@X6-EY&9HXFALXFALWVAMWVAMWV5IXFAL
  674. XMX6QNXFUOY'-TZ'=XY7IYY7IYWGAUX7MXXWUZXWUZX7QYWWIWWGEVWGEVWG%S
  675. XMY'=YWWU[VGAVU8A_[)^6\K6I];BLW:B9UZ*3Z;2G^,.V[K6JYZZCX:&9R(B 
  676. XMXG>"S6)MY7J%W'%\Q6!QQV)SD3M99A N615!8!Q(3Q1!4A=$6AM!7!U#<"A'
  677. XM:B)!>25(CSM>?24UABX^>2 W>R(Y:A5'9A%#5@XY4 @SCDY5PX.*R(&"P7I[
  678. XMB#-+HTYFO&-8SW9KSGMNRG=JS(!QTX=XS8=WS8=WS(=YRX9XRH1]R8-\RH)]
  679. XMES]AUGZ@N(F4LH..SZVEXL"XV):1EU50GD)&K%!4CT!*[I^ICDUB6QHO6!@W
  680. XM4Q,R8AQ*7QE'9QE"91= 9!(Y;QU$=BA0<")*7Q4]8QE!6PXS:QY#K5)JHD=?
  681. XMJ4)/IC],PD9-RDY5TE19TU5:U%57UUA:VUI;VUI;WEU>X%]@X6-EY&9HXFAL
  682. XMXVEMX&ENWVAMY6MOY6MOX6QNXVYPY'-TZ'=XY'EXXWAWWWEVX7MXXGQYX7MX
  683. XMW7AUW'=TVW9SW'=TWW)TYGE[WWU[W'IXV(N"[Z*9][JN_<"TWJF:U:"1Y;"C
  684. XM]\*U\+>LY*N@W)R4R8F!W7)]V6YYVF]ZU&ETS&=XN%-D?BA&9Q$O615!81U)
  685. XM419#4QA%61I 7!U#<2E(;25$@2U0D3U@@"@XAR\_?",Z?B4\;QI,:11&61$\
  686. XM40DTBDI1PX.*R8*#O'5VC#=/JU9NO619SW9KSGMNRG=JS8%RTX=XS8=WSHAX
  687. XMS8AZS(=YRX5^RH1]RX-^DT=8Q'B)JX*!MHV,Y+BQW[.LP6MQB3,YGD-/GD-/
  688. XMP8J6L'F%3!,K21 H:PX\<!-!:2%,8QM&9Q@^9!4[9! Q<!P]>RI,>2A*818[
  689. XM8Q@]7@\S9Q@\J$]HH$=@K$=6H#M*OD1*QTU3SU-8T55:U598V5I<W%M<W%M<
  690. XMWEU>X%]@XF-EY&5GXV=LY&AMXFANXFANXFMNWVAKW69IWVAKX6UOY'!RXG%R
  691. XMX7!QXW1TY'5UY'=WXW9VX'-SX'-SX'5TX79UWW1UY7I[WWY\WGU[X(Z']Z6>
  692. XM_[RS_\2[ZJJ?X:&6[:NC_KRT^[6N[*:?X921T82!U6QYX7B%RV9US&=VQVN!
  693. XMESM1818[71(W4QA'72)141E)4QM+7!D^7AM >2E%=R=#A3%2C#A9?B8UA"P[
  694. XM?"$Y>R X<1I-9Q!#71,_4@@TA$1+PH*)S(6$M&ULE#]5M6!VQ&=9TW9HT'IL
  695. XMS7=IT(%SU89XS(=WS8AXRXA\RXA\RH=]R89\S(1^H%1EM6EZN9"/U:RKUZND
  696. XMK8%ZHTU3ED!&G4).MUQHTYRH62(N310L4!<O=1A&A"=59Q]*8!A#918\918\
  697. XM9A(S<AX_?2Q.?2Q.91H_818[8!$U8Q0XI4QEG$-<KTI9FS9%N3]%PTE/S5%6
  698. XMT%19UE=9VEM=W5Q=W%M<WEU>X%]@X6)DY&5GXV=LY&AMXVEOXVEOX&ELVV1G
  699. XMVF-FWF=JX&QNX6UOWVYOWVYOW&UMW6YNW7!PW7!PW7!PW7!PWG-RX79UX'5V
  700. XMY7I[X']]XH%_X8^(\J"9^K2K_[JQ\+"E\;&F]K2L][6M][&J\*JCXI62S8!]
  701. XMSF5RW72!R61STVY]N5US?" V7!$V6Q U5!E(7B-24QM+5!Q,7!D^7QQ!>RM'
  702. XM>2E%AC)3AC)3?R<VABX]?B,[>!TU<QQ/8PP_6A \40<S>SM"P("'T8J)K69E
  703. XMG$==N61ZR&M=U7AJT'ILSGAJTH-UU89XS(=WSHEYRXA\RH=[R89\R(5[RX-]
  704. XMM(^%LXZ$ZK"M];NXSGJ#GTM4G$13HTM:IF5TV)>F=D181Q4I50XQ6A,VD"M>
  705. XME3!C8AM 6A,X8Q4S:!HX;1<S=B \?RU*@"Y+;B%"8!,T81,T8!(SH4ICE#U6
  706. XMKTM>E3%$L3H_O$5*RE!4SE18U5=9V5M=W5Q=W%M<W5Q=WUY?X&%CXF-EXV5J
  707. XMY6=LXVEOY&IPX&MMW&=IWF=JXVQOY&UPX6IMX6IMY&UPWF=JX&ELX6IMXFMN
  708. XMX&MMX&MMXFUOXVYPY71WZ'=ZYWI\YGE[YWY^[X:&\H^0]9*3^YR;_ZBG_Z&C
  709. XM\)"2\I&3^)>9YH.'RVALR&-PSFEVRVM]U'2&FD5>8PXG71E!51$Y41M.6R58
  710. XM4QQ-5!U.81E 8QM"@"E#?B=!BS55AC!0ARX[CC5"A2I">1XV>R189@]#50HY
  711. XM3P0S<S XO7J"UHZ+J6%>IU%CNV5WSF]BUWAKTGEJT7AIU(5WUH=YRX9XSXI\
  712. XMR(=ZQX9YQX9[QH5ZR8)YY+^UV[:L^L"]UYV:IE);ET-,H$A7I$Q;VIFHK6Q[
  713. XM1Q4I3QTQ3P@K6Q0WAB%4G3AK7Q@]5Q U8A0R:APZ;QDU=B \?BQ)?BQ)>"M,
  714. XM7 \P8!(S8!(SH4ICC#5.K4E<DBY!JS0YN$%&QTU1S5-7U%98V5M=W5Q=W%M<
  715. XMW%M<W5Q=WE]AX&%CX6-HY&9KXFANXVEOWVILW&=IX&ELXVQOW69ITEM>T%E<
  716. XMUE]BW69IX&ELXFMNXVQOX&MMWFEKWFEKWFEKW&MNW6QOV6QNUFEKTFEITVIJ
  717. XMT&UNTW!QVWQ[Z(F(V7E[PF)DRVILUG5WR&5ILU!4R&-PR61QT'""Q&1V?RI#
  718. XM7PHC8!Q$5Q,[4AQ/6B1741I+51Y/91U$9Q]&@"E#>B,]BC14?RE)B3 ]CC5"
  719. XMA2I"=!DQ?RA<:1)&5 DX408U:B<OM'%YUX^,IU]<M5]QNV5WTG-FV'ELT7AI
  720. XMTGEJU89XUH=YRX9XSXI\QX9YQX9YQH5ZQ81YR(%XW-J\T]&S[IV=L6!@KS9.
  721. XMMSY6GT]CO6V!OI>E328T62$_3!0R90TX:1$\: <YF#=I8QLZ61$P8Q,M:QLU
  722. XM;ADO<QXT>RA!?2I#@C1360LJ7A Q81,THDMEA"U'J49:D"U!IB\TLSQ!Q$I.
  723. XMRU%5U%98V5M=W%M<VUI;VUI;W%M<W%U?WE]AX&)GXF1IXV=NY&AOWFEKWFEK
  724. XMXVQOX6IMTUE=OD1(N3U"P45*R4U2SE)7TU=<UEI?UEI?U5E>U%A=U%A=S%!7
  725. XMRT]6R$Q3QDI1Q4E0R$Q3S%%:TE=@U5ICUUQEP$A2LSM%PTM5RE)<P$A3OT=2
  726. XMRFAVSVU[RV^!GD)4:AHV81$M4Q4_6!I$4!U15B-73A=*51Y1:2!&:R)(A"=#
  727. XM>ATYB3-1>B1"B3 ]BS(_@",\;1 IA"I?<1=,60T\6 P[9"$IJ&5MU8V(IU]:
  728. XMQ&Z OFAZUG5IVGEMT7AKTWIMUXA[UH=ZR8=XSHQ]QXAZQH=YQH5XQ81WR(-W
  729. XMUM2VR\FKRGEYCSX^MSY6OT9>I55I\*"T>%%?11XL3A8T6" ^<QM&9P\Z8@$S
  730. XMC"M=9AX]6Q,R8Q,M:AHT;!<M<!LQ>"4^?"E"B#I95PDH70\P8Q4VHTQF?RA"
  731. XMID-7CRQ HRPQL3H_PDA,RU%5TU57V5M=W%M<VEE:VEE:VUI;VUQ>W5Y@WV%F
  732. XMX6-HXF9MXV=NY&]QY&]QZ7)UXVQOSE18LC@\JR\TLS<\IRLPK3$VM3D^NS]$
  733. XMOT-(P$1)P45*P45*MCI!LS<^L34\LC8]M3E O$!'QTQ5T%5>U%EBRD]8L#A"
  734. XML3E#QDY8QDY8P4E4T5EDS6MYVWF'QFI\@"0V8Q,O:1DU20LU7!Y(4!U152)6
  735. XM319)5!U0:R)(;21*@R9"=ADUCCA6?"9$C31!BS(_?R([; \HBS%F>B!57A)!
  736. XM71% 8!TEH5YFTXN&J6%<SGB*PFQ^V'=KVWINT7AKU'MNUXA[UXA[R8=XSHQ]
  737. XMR(E[QXAZQX9YQH5XR81X_ZZT^J:LG5!7GE%8?3A$I%]KY*>WL'.#5ADR5ADR
  738. XM6Q@Z7!D[7!(Z6Q$Y9A9"<"!,;B%&8A4Z7Q(W:!M ;R)%;!]";1\^<R5$AC94
  739. XM:AHX81$M8Q,OF4AB?BU'D4!:B3A2GS%!J3M+ND=3PD];S%!5SU-8UU=5V5E7
  740. XMV%-3V514UUA:VEM=VF!FW6-IVV9OW&=PXW)QX7!OX&ULW6IIW&5FV&%BUUE<
  741. XMTE17RD9+QD)'QSU$RD!'U49/VTQ5WT]8WT]8QU!?RE-BR%1FQU-EPU-HQ55J
  742. XMREUTT61[SV=YX'B*S6ETOEIESVYPTW)TRFIEU75PSGF1R'.+E45A9!0P6A(S
  743. XM81DZ7!A"8AY(81M&7!9!60XV8QA >RA->29+=1T_>"!"DSA2A"E#ABM%DC=1
  744. XM?" ^;1$O>BQ-@#)35Q0X7!D]51,NC$IEV(N4OG%ZU'UURG-KTWYPT'MMSW]O
  745. XMU85UU8EXTX=VSX9VT(=WRX=URX=URX9VRX9VS(9V_[.YMF)HH%-:F$M2KVIV
  746. XMVI6AT92D;S)"6ATV6ATV7QP^7QP^7A0\6Q$Y9!1 ;1U);2!%8A4Z7A$V9AD^
  747. XM;!]":AU ;1\^<B1#@#!.;!PZ914Q914QDT)<>2A"C3Q6BCE3FBP\I3='MD-/
  748. XMP$U9RT]4S5%6U%12UU=5V514V514V%E;VUQ>VF!FW6-IVV9OW&=PXW)QX7!O
  749. XMX6YMX&ULX&EJVV1EVEQ?U5=:V%19UU-8VE!7V4]6W4Y7X%%:Y55>Z%AAWVAW
  750. XMY6Y]ZW>)\7V/\H*7^(B=_I&H_YFP_YFK_YBJXGZ)RV=RTG%SUG5WSV]JT'!K
  751. XMRG6-K%=O>RM'81$M6Q,T7A8W6Q=!8AY(7!9!7!9!7A,[9AM#=R1)<A]$<AH\
  752. XM?"1&ECM5@B=!BB])D#5/?" ^<Q<U=BA)A#976!4Y7!D]5A0OBTEDUXJ3P71]
  753. XMU7YVS'5MU8!RT7QNSW]OU(1TU(AWTX=VSX9VT8AXRX=URX=URX9VRX9VS(9V
  754. XMRGEWHE%/H5A;JV)EYZ.QUY.AB$EB6QPU6QT]7!X^81Y#81Y#8!<]6A$W7Q$Y
  755. XM9AA :A]$8!4Z7Q(W91@]:AU :AU ;1] <B1%>RI*;QX^:!@V9Q<UBCI4="0^
  756. XMB3A2B3A2DR8ZG3!$L#],NDE6QTQ5R4Y7T5!1TU)3UE-2UU13UU97VEE:V%U?
  757. XMVV!BVF-HVV1IX7!QX7!QXV]QY'!RY&UPX&ELW6%FV%QAVEA?W%IAX%IBWEA@
  758. XMW%%;W%%;XU=AZ%QF[&Q\\W.#^W^2_X:9_XJ=_XV@_Y&H_Y2K_Z"S_Y&DY7B$
  759. XMT61PU&IOX'9[X'=WV&]OO6J%AS1/7Q$P7Q$P7A4[710Z71E#8AY(5A [7!9!
  760. XM8Q@_:1Y%<R!#:A<Z;Q<V@2E(F#]8?B4^D390C#%+>Q\[>Q\[<B%#C3Q>6A4Z
  761. XM7!<\6!4PB49AUHF0Q7A_U7]WSGAPUH-TTG]PSGYNTX-ST8=WT8=WSHAWT(IY
  762. XMS(=WS(=WS(=YS(=YS(=YED5#LF%?K&-FYYZAWIJHF%1B5A<P8B,\6AP\6QT]
  763. XM8A]$8A]$81@^6A$W7A X9!8^:1Y#8A<\810Y9AD^:AU :AU ;B!!<R5&>RI*
  764. XM="-#:1DW:!@VA35/=B9 B#=1AC5/CB$UF"L_JCE&MD52Q$E2QTQ5SDU.STY/
  765. XMTU!/U%%0U%-4UE56U5I<UUQ>UE]DUV!EW6QMWFUNXFYPY7%SYW!SY&UPX&1I
  766. XMW&!EV%9=V5=>W5=?W%9>W%%;W5)<XE9@YEIDX6%QZ&AX[G*%\W>*\'B+[G:)
  767. XMZW2+ZG.*\'Z1XW&$U6ATSV)NTFAMXGA]Y7Q\UFUMIU1O<1XY5PDH8A0S7Q8\
  768. XM81@^8Q])7QM%5Q$\7!9!8Q@_:1Y%<1Y!9A,V;A8U@RM*FD%:?20]ECM5B2Y(
  769. XM?2$]@25!;1P^DD%C71@]6Q8[6A<RAD->U8B/RGV$UH!XT7MSV(5VTX!QSW]O
  770. XMTH)RT8=WT(9VSHAWT8MZS(=WS(=WS(=YS(=YS(=YK6)8M6I@UX^2_K:YG%=K
  771. XM:B4Y921)4Q(W6QE&71M(8Q]+9B).8QQ!718[8A4V:!L\:!U$9!E 8Q@]9AM 
  772. XM:QY!;2!#;R)#<B5&>BQ+=BA':!@V:!@V@C).?"Q(AS=3@3%-B1XWD28_HS-&
  773. XMKS]2O491P4I5R4M.RDQ/ST]-T%!.TE-1U%53UEE8V5Q;UUY<V6!>V6AIVVIK
  774. XMX&QNXV]QY7!RXVYPX&9JW&)FW5]DVEQAV%A>V%A>VUE@W%IAW5E@W%A?VUIG
  775. XMX6!MZ&AV[FY\[G& [&]^Z&Q]YFI[W&5TVV1SW6IXWVQZW6]YXW5_W6]WR%IB
  776. XMAS9::!<[70\W8A0\6Q,\8AI#9B!+6Q5 7AE!7AE!81<Y:!Y <" ^9A8T;ADR
  777. XMA3!)F#]8@"= ECM3B"U%@25!@R=#;!D\ED-F8QP_718Y71HT@T!:T(:,S8.)
  778. XMUH)WTW]TV89YU(%TSG]QTH-UT(=XSX9WS8AXT(M[RHAYRHAYRHAYRHAYS(=[
  779. XMSH-YUXR"_[R_OW=Z<2Q 7ADM921)61@]7AQ)8!Y+9B).:2519A]$81H_9QH[
  780. XM;2!!91I!91I!9AM :1Y#;2!#;B%$<"-$<21%>"I)>2M*9Q<U:1DW?BY*?R]+
  781. XMAS=3@#!,AQPUCB,\G2U J3E,N$%,O491Q4=*QDA+ST]-T%!.T5)0U594UUI9
  782. XMVEU<V6!>VV)@UF5FV&=HW&AJX&QNXVYPXFUOX6=KW6-GXV5JWF!EVEI@V5E?
  783. XMW%IAVUE@V55<U5%8U%-@V%=DVEIHWEYLWF%PW%]NV5UNUUMLTUQKWVAWY'%_
  784. XMYW2"YGB"WW%[REQDLT5-;1Q 9Q8Z8Q4]7Q$Y61$Z81E"8QU(6A0_9B%)81Q$
  785. XM8!8X9QT_<2$_:!@V<1PUBC5.DSI3ABU&DC=/B2Y&ABI&@"1 ;AL^E$%D:"%$
  786. XM7A<Z81XX@#U7SH2*THB.U8%VU(!UV89YU(%TT(%STX1VT8AYT(=XS8AXSXIZ
  787. XMRXEZRXEZRXEZRXEZS8A\U(Z%][&HUY.7=# T92(]6A<R71A&9R)07QQ181Y3
  788. XM9R!1:2)391Y#8!D^9!LW:R(^8!4\9!E :!U$:R!';"%&;2)';B%$;B%$<")#
  789. XM>BQ-:!HX:!HX=2A#>BU(A351@3%-@APZAR$_E"E"GC-,KCQ-M4-4O$1.O45/
  790. XMQTQ-R$U.S5!-T511U5A3V5Q7VUY9W6!;V&1HV65IVF9JW6EMX6MPX6MPWFAM
  791. XMVV5JW&5JVF-HUV!EU5YCUEQBU%I@TEA>T%9<S%1<S%1<RE):RU-;RU5<RU5<
  792. XMRE5>RE5>U6-LY')[W7!\V6QXX'F&T6IWJD52EC$^7Q,^8Q="7A1 60\[7A5#
  793. XM8!=%71="8QU(;B9-9Q]&8QDY:!X^<" \9A8R<A\XD#U6BC1*BS5+BS!(C#%)
  794. XMC#%+>R Z<AX_DCY?;21(8!<[9"$[?SQ6S(.&U(N.TH%UTX)VUH5YTH%USX-U
  795. XMTX=YT8I]SXA[RHAYRXEZRHE\RHE\RHE\RHE\RHE^Z**9[ZF@=C(V9R,G618Q
  796. XM6Q@S="]=5 \]7QQ18!U291Y/91Y/8AM 6Q0Y81@T9QXZ71(Y8Q@_:1Y%:R!'
  797. XM;"%&;2)';2!#:QY!:AP]>RU.:APZ:1LY;R(]=BE$@S-/A#10@1LYA1\]D"4^
  798. XMFB](JCA)L3]0N4%+ND),PD=(PTA)R4Q)S5!-T51/U5A3V%M6VEU8V65IV65I
  799. XMV65IW&ALX&IOX&IOWFAMW&9KV6)GVV1IWF=LVV1IV5]EUEQBV%YDVV%GU%QD
  800. XMTEIBT%A@T5EAU%YEV6-JW&=PWVISYG1]\X&*VVYZSV)NVG. QE]LE3 ]@1PI
  801. XM8!0_91E$6A \6 XZ91Q*8!=%6Q5 ;2=2<"A/:B))9QT]:B! ;Q\[9!0P="$Z
  802. XMED-<AC!&CSE/ARQ$C3)*D#5/=QPV=2%"CSM<;R9*8!<[9B,]?CM5RX*%UHV0
  803. XMTH%UTX)VU81XTH%UT(1VU(AZTHM^SXA[RHAYRHAYRHE\RHE\RHE\RHE\RHE^
  804. XM^[FZF5=86!<D7ATJ92)$618X5Q)$8AU/7AA.8AQ2:2)3:R159A]"8!D\9!TX
  805. XM;"5 8AA 9QU%9QY$8QI 91I!;"%(;R5';")$;!] <B5&<B9$;" ^9QDW;!X\
  806. XM=2=%>RU+A"9'=QDZAB5!DS).E"M!GC5+M$54LT13N$))NT5,Q$M,RU)3TE=6
  807. XMU5I9UEE6U5A5VF1IVV5JVF9JW&ALWFINWFINVVIMV6AKVFELV&=JU&1GTV-F
  808. XMU65HV6ELVVYPWG%SV71UWGEZXGM[X7IZX'IWXGQYXGM[X'EYX'V WGM^S6]X
  809. XMT7-\S76%FT-3<!LQ@"M!7QE'6Q5#5Q$_5Q$_7!9#81M(9!]'92!(<"=-81@^
  810. XM9ADZ9ADZ:!@T81$M:A<PF$5>BSE,@"Y!DSI/C31)@",^@",^?2='B3-3=2M-
  811. XM91L]:",[;RI"Q7Q_WI68T(%SV(E[QWIORWYSSX1XT89ZSHE]S8A\RHE\RHE\
  812. XMR(A]R(A]R(A_R(A_R(A_KVUN>#8W5Q8C8!\L9"%#7QP^7AE+7QI,6Q5+8!I0
  813. XM9R!1:"%28QP_718Y81HU:B,^81<_9AQ$9QY$8AD_8A<^:!U$;")$;")$;!] 
  814. XM<21%<B9$:Q\]9QDW:QT[<R5#>"I(A"9'=1<X@2 \CRY*D"<]E2Q"K#U,L4)1
  815. XMO4=.OTE0QDU.RE%2SE-2T595UEE6UUI7V&)GV&)GV&1HV65IVV=KW&ALVFEL
  816. XMV6AKVFELW6QOWFYQW6UPW&QOWFYQX71VYGE[YX*#ZX:'[8:&ZH.#Z()_Z8. 
  817. XMYX" Y'U]X'V V'5XSW%ZU7> O&1T@RL[9Q(H@"M!71=%6A1"5Q$_61-!71=$
  818. XM8AQ)92!(92!(<"=-8QI :AT^:!L\:1DU8Q,O;1HSG$EBBSE,@2]"E#M0CC5*
  819. XM@B5 A"="@"I*C#96<2=)9!H\92 X;2A QWZ!X)>:U89XW(U_QWIOS8!UTH=[
  820. XMU8I^T(M_SHE]RXI]S(M^R(A]R(A]R(A_R(A_R(A_:2M!6QTS6!DU71XZ7AM 
  821. XM81Y#8QY,71A&71=%81M)9R%,:")-8AL^6Q0W8!HX:B1"714\8QM"9AQ$81<_
  822. XM7A4[81@^:!U";"%&:QY!<"-&<"-$:AT^91DW:1T[<") ="9$?2E*;!@Y=1T\
  823. XM@RM*@B5 @",^E2]$HCQ1K#Y.L4-3O$=1P4Q6QT]7S55=V%QAWV-HV6-JV6-J
  824. XMVF1KVV5LVFANVVEOVFUQVVYRUVMOWG)VXGM]XGM]WGEZW7AYX'U^Y8*#YY"/
  825. XMZI.2ZY..YHZ)YXR#YHN"XX>!WH)\W8*"SW1TSWJ&T7R(FTYE8A4L61$N=2U*
  826. XM5Q9%511#5A1!6!9#7AI&8AY*9Q](:"!);R1+9AM";B%":QX_:AHX914S<!X]
  827. XMH$YMC#Q.@C)$ECU2D#=,@R8_ARI#A"Q-CC97<21':QY!8QXV;"<_R(&"WYB9
  828. XMU8EZVX^ Q'EOS(%WTXE_UHR"SHN!RXA^R8E^RXN Q8A^Q8A^Q8=_Q8=_Q8=_
  829. XM9B@^7B V7A\[71XZ6!4Z71H_8QY,7AE'7QE'9!Y,:R50:B1/8QP_7!4X8APZ
  830. XM;2=%7!0[81E 91M#81<_6Q(X7!,Y9!D^:R!%:AU ;R)%;R)#:1P]9AHX:!PZ
  831. XM;B ^;R$_>R=(;1DZ<QLZ@2E(@B5 =ADTA!XSDRU"GS%!ICA(M4!*ND5/P4E1
  832. XMQT]7U%A=W6%FUV%HV&)IV6-JVF1KV6=MVVEOW&]SWW)VV6UQWW-WXWQ^YX""
  833. XMYH&"Y8"!Y(&"YH.$YH^.Z9*1Z9&,Y8V(YXR#YXR#Y(B"WH)\W8*"TG=WUX*.
  834. XMRG6!@C5,6PXE8QLX<2E&5A5$5A5$6!9#6QE&8!Q(8Q]+:"!):2%*:R!'9QQ#
  835. XM<"-$;!] :1DW9A8T<R% I%)QCCY0A35'ESY3CS9+@R8_B"M$A"Q-BS-4<R9)
  836. XM=2A+8QXV:R8^RH.$W)66TX=XV(Q]PG=MRX!VTXE_U8N!S8J R89\QX=\RHI_
  837. XMQ(=]Q(=]Q(9^Q(9^Q(9^>3IH8R127!Q(7AY*6QI#6QI#8AU#7QI 8!P^9B)$
  838. XM;B=*;29)8QP_6Q0W8AL^;RA+7!0]8!A!8QM"8AI!71,[6A X7Q8Z9QY"9QT_
  839. XM:R%#;")"9QT]9QLY:1T[;" ^:Q\]<B5&;!] ;1\^>2M*?2I';1HW;Q(M>QXY
  840. XMD"I!F#))J3E,L$!3N4-4ODA9R$]=SU9DTUMCU5UEUV%HV&)IUF1JV6=MVFYR
  841. XMWW-WVG-UW'5WW'M[Y(.#YXJ)Z(N*Y(F'X8:$XHV,Y(^.YHZ+Y(R)Z8Z%ZY"'
  842. XMZHN&Y(6 UWM]U7E[UX*1MF%P;1\^8!(Q;R=0:"!)51E&5AI'6AI&7!Q(7QY'
  843. XM8B%*:B)):R-*:!U$9AM";R)':AU":!<Y:!<Y=21(I%-WCT%2ACA)F$!2CC9(
  844. XM@R8_B2Q%A2I,B2Y0<R5&?S%28ATS:20ZS(6&VY25TXEWUXU[PGAPRH!XSXA_
  845. XMTHN"RXF!R8=_QHE_R(N!PX=^PX=^PX> PX> PX> =SAF71Y,5Q=#8B).9"-,
  846. XM7QY'81Q"7AD_8!P^9B)$;B=*;"5(81H]61(U81H];RA+714^7Q= 8QM"91U$
  847. XM81<_7!(Z7A4Y9!L_91L]:B!":R%!:!X^:!PZ:Q\];" ^:AX\;R)#<"-$;B _
  848. XM=2=&@"U*<R ]; \J<10O?A@OAB WF2D\I35(LSU.O4=8R$]=SU9DT%A@TUMC
  849. XMUV%HV6-JV&9LVFANW'!TX75YWG=YW'5WVGEYXH&!Z8R+[9"/Z(V+XXB&Y(^.
  850. XMY9"/YHZ+YHZ+[)&(\)6,[H^*YXB#SW-UU'AZSWJ)H4Q;8!(Q91<V="Q581E"
  851. XM61U*6AY+7AY*7Q]+8!](8B%*:R-*;B9-9AM"9!E ;2!%9QH_:1@Z:QH\=R9*
  852. XMHU)VD$)3ASE*F4%3C35'@R8_BRY'ARQ.B"U/;R%"A#978!LQ9R(XSXB)VY25
  853. XMUHQZVI!^QGQTRH!XS(5\SXA_RXF!RXF!QXJ QXJ PH9]PH9]PH9_PH9_PH9_
  854. XM9"5B51936!A.82%78B%*7QY'8AX^71DY8QTY:B1 <"I(;BA&81H]61(U8AI!
  855. XM<2E08!A!7Q= 8QM":"!'91U$7A8]710X81@\9!H\:!Y :R%!:!X^:AX\;2$_
  856. XM;2$_:AX\:2)#<"E*:B! :R%!?C!/>2M*;14T:Q,R;0PH<A$MA1@ODB4\I3%'
  857. XMLS]5P$A;QT]BR%!8S55=U%YEUV%HU&1IUF9KV&YQW7-VUW1UUW1UU7AWVWY]
  858. XMXH>%YXR*Y(Z*XXV)Z)&3Z)&3Z(V+YHN)[8V([X^*ZXF%XX%]T'!SUG9YR&V#
  859. XMF3Y480\V9A0[<2159!=(72--7B1.82--7R%+8!]&8B%(;25,<2E09AM"8Q@_
  860. XM;!U#9Q@^:A@_<!Y%>BA/HU%XCT%0ASE(ET%3BS5'A2A!D#-,C#%1C#%1;R%"
  861. XMBSU>8!LQ9B$WT(F*V9*3UHQZV(Y\QWUUQGQTQ'YUQX%XR(9^R8=_Q8=_PX5]
  862. XMOX9\OX9\OX9^OX9^P85^61I75QA57Q]57Q]56!= 61A!8AX^71DY9R$];2=#
  863. XM="Y,<2M)9!U 7!4X91U$="Q381E"7Q= 8QM":B)):2%(81E 710X7Q8Z8QD[
  864. XM:!Y :B! :1\_:Q\];B) ;B) :Q\]:"%"<2I+:!X^91L[?S%0@#)1=!P[;14T
  865. XM<Q(N<A$M?Q(IAADPEB(XHBY$K35(LCI-O$1,PDI2R5-:S5=>REI?S%QAS6-F
  866. XMTVELT6YOTW!QTW9UUWIYVG]]WX2"X8N'XXV)Z)&3YY"2Y8J(XH>%Z(B#Z(B#
  867. XMXH!\V7=STG)UUG9YPVA^ESQ291,Z8Q$X;!]0:1Q-8"9082=18R5/8"),8!]&
  868. XM8B%(;25,<RM29QQ#8Q@_:QQ"9A<];!I!<R%(?2M2HU%XC3].ASE(ET%3C#9(
  869. XMARI#E#=0D396D#55<R5&DD1E8ATS9B$WT(F*UH^0THAVU(IXQ7MSP7=OO7=N
  870. XMP'IQPX%YQ8-[P8-[OH!XOX9\OX9\OX9^OX9^P85^1!A 1QM#4!Q$4AY&7Q]*
  871. XM8"!+91M'8QE%:1E%>RM7>"I3>2M45PXT7Q8\7QL]<R]181E"7A8_8!A!9AY'
  872. XM9AY'81E"81<_9!I"5PXT7Q8\:A]&;"%(:1Y#:1Y#<"-(=BE.="0^=24_=2)%
  873. XM<R!#>R))@RI1ARM+@B9&?AXS=Q<L=A8H>AHL@1PS@1PSA!X_BB1%D"DUF#$]
  874. XMH3U(J450KDI3M5%:O5MCQ6-KR6=MS6MQT7%VU75ZV'A[W'Q_W8""X(.%Y(V-
  875. XMWH>'V8& VH*!VX. VH)_TGMZRG-RPW%TR'9YK69SAC],9"$Y7ALS6QX^6!L[
  876. XM4B!84R%98"):7!Y67Q5+:B!6<BE7:!]-9R1(81Y"7A\Y7R Z9!PS9Q\VA#-+
  877. XMGTYFE$A;B#Q/CT%.CT%.@S(_B#=$E$!3B#1'?RI#BC5.=R4ZAC1)S("$V8V1
  878. XMUH^$R(%VR7)TO&5GM5]AO6=IP'%SP7)TOW1TQ'EYPGU^PWY_P(& P(& P82#
  879. XM3R-+32%)52%)7BI22@HU6!A#9!I&81=#<"!,@C)>?C!9>RU661 V7Q8\7QL]
  880. XM<2U/8!A!7A8_7Q= 9!Q%9!Q%8!A!8!8^8QE!710Z7Q8\91I!:1Y%:R!%;2)'
  881. XM<"-(<"-(<" Z<2$[<1Y!;QP_>!]&@BE0BBY.B2U-A"0Y@2$VA24WCR]!F31+
  882. XMG#=.H3M<IT%BJ$%-KD=3LT]:ME)=MU-<N55>O5MCPV%IRVEOT&YTU'1YV'A]
  883. XMW'Q_WGZ!WX*$X82&WXB(W(6%VH*!VH*!VH)_UW]\T'EXRG-RO&IMP6]RI5YK
  884. XM>#$^51(J5Q0L92A(<3146REA52-;7R%98B1<:1]5<"9<;R948AE'9B-'81Y"
  885. XM7A\Y8"$[9AXU:2$XA31,G4QDE$A;B#Q/D$)/D$)/@S(_AS9#DS]2B35(?BE"
  886. XMA3!)>"8[@S%&TH:*UHJ.U8Z#PWQQO69HM5Y@L5M=M5]AM69HN6ILN6YNNW!P
  887. XMMW)SN71UMWAWN'EXN7Q[EFF/9SI@2!0[214\71U&5!0]60\Y9!I$;B!)?S%:
  888. XM?C!8=2=/6 \S7!,W7QL[;RM+71A 7!<_71A 8!M#8AI#8!A!7Q<^81E 8QI 
  889. XM8!<]8!4\91I!;2)'<"5*;2)':1Y#;B$\;B$\;1P^:AD[<!M!>R9,BBY.CC)2
  890. XMCR]"DC)%GCM'K$E5N%!BO%1FP59QQ5IUT&ARTVMUUV]WUV]WTVUTTFQSU&YS
  891. XMUW%VSVQPU'%UVG=ZWWQ_X'^!X8""XH&#XX*$YXZ/YXZ/Z9&0ZI*1Z)*,YI"*
  892. XMX8^*X(Z)XY:3Z)N8TY&4K&IM@493;C- 7B@[4QTP5RM-3R-%7"-)6R)(6A1!
  893. XM6Q5":")/;2=48!]&7!M"7!P[7Q\^9QXZ:R(^A3)+FD=@E$A=B3U2D4-2D4-2
  894. XM@C$_A31"DSY4C#=-@"M$@"M$?"H_@C!%VX^3T86)TXQ_NW1GK5=9KEA:K%E:
  895. XMJ597J%E;KV!BL61EL&-DK69GKVAIKVQLLF]OLW%RRY[$I'>=:35<,  C:RM4
  896. XM514^6A Z9QU';!Y'?"Y7?S%9<")*61 T7!,W9B)"<R]/71A 71A 7AE!7QI"
  897. XM81E"81E"81E 81E 91Q"8AD_8!4\8Q@_:R!%;R1);"%&:!U"<B5 <",^;1P^
  898. XM9Q8X:A4[=!]%ABI*CS-3F3E,H$!3L$U9O%EEQEYPQU]QR5YYR5YYS65OT&AR
  899. XMTVMSU&QTTFQST6MRTFQQU&YST&UQU7)VW'E\X'V X8""X'^!X'^!X'^!UGU^
  900. XMV8"!W(2#WH:%WHB"XHR&Y)*-Z9>2\:2A^*NH\K"SZZFLV9ZKQ(F6F6-V=D!3
  901. XM3B)$1AH\62!&9"M191],7QE&8QU*9!Y+71Q#6AE 6AHY71T\9QXZ;B5!A3)+
  902. XMED-<E4E>B#Q1D$)1DD13@C$_A#-!DCU3CCE/A3!)?RI#@2]$A#)'Y)B<S("$
  903. XMSH=ZLVQ?J%)4L%I<KUQ=IE-4H5)4J%E;JEU>IUI;I5Y?IV!AIV1DJF=GJFAI
  904. XMNHZPR9V_L'VA9C-74!(X4A0Z9!]%9!]%;B-(?3)7@SE;;B1&7Q<V8!@W<2M)
  905. XM>C127AE!7QI"7QI"7QI"81E"8QM$8QM"8AI!8QI 8QI 8AD_8QI 9QQ!:A]$
  906. XM:R!%;"%&;R9 ;",]:1P]9!<X9Q0Y;QQ!A"I'D3=4G3Y-ITA7NU5:Q%YCS%]I
  907. XMS%]IS%IKRUEJQUEAREQDS&!GSF)ISV-IT&1JT6=JTFAKU6MNV6]RW79VX7IZ
  908. XMX7IZX'EYWGEXWGEXSW)TTG5WTWAVU'EWTGYUV85\X).(Z9R1YZ28[*F=Z*^E
  909. XM[[:L\<&\\L*]V["PQ9J:F'-T=$]082X\628T6ALW71XZ921+9B5,7!Q%61E"
  910. XM6AH]71U :B$^<RI'BC12ET%?EDE@ASI1CD!1D4-4@C%!@S)"D#M1C3A.B3-/
  911. XM@2M'AC1)C#I/Z9VARGZ"R(%TKVA;JEE9M&-CM61DK%M;I%57J%E;J5Q=I5A9
  912. XMIEI=IEI=IUM>J%Q?I5Q?M8FKHG:8K'F=PY"T7!Y$5A@^71@^8QY$<"5*?C-8
  913. XMACQ>:1]!7A8U7!0S<"I(=S%/7QI"81Q$8!M#7AE!8!A!9!Q%91U$8QM"81@^
  914. XM8QI 9!M!8QI 9!D^9AM :R!%<"5*:B$[:2 Z:1P]9ADZ:!4Z;AM A2M(E3M8
  915. XMG3Y-JDM:OEA=Q%YCREUGRUYHS5MLREAISF!HT&)JT65LTV=NUFIPUVMQV&YQ
  916. XMV&YQU&IMUVUPVG-SW'5UW'5UVW1TV71SV71SV'M]V7Q^V'U[V7Y\V(1[X(R#
  917. XMYYJ/\*.8[:J>]+&E\+>M[K6KYK:QZKJUZ;Z^Z;Z^Y<#!QJ&BJ7:$?TQ:7!TY
  918. XM4!$M6QI!9"-*7!Q%6AI#6!@[6AH]:B$^=BU*C3=5ET%?F$MBA#=.B3M,CD!1
  919. XM@C%!@C%!CSI0BS9,AS%-@RU)A3-(E4-8Z)R@R7V!PWQOL&E<MF5ENVIJO&MK
  920. XMMV9FKV!BKE]AK6!AJUY?IUM>IEI=I5E<HU=:GU99R)FZ?D]P>D=IP(VOEUQ_
  921. XM9"E,3PPP8R!$:"%"=S!1@CI98!@W6A(O6! M<"I&=C!,71E!8!Q$7QM#6Q<_
  922. XM7!<_81Q$8QY$8!M!8!D^81H_8AD_8AD_8AD]91Q ;"%&<"5*:2([:"$Z:1\_
  923. XM:!X^9Q@\:AL_@2I&DCM7GT!+K4Y9PEA;Q5M>S%M<SEU>TUMCT%A@S%I@S5MA
  924. XMS5UBT&!ETV-HUF9KU&=IU&=IU6AHV&MKVF]NVW!OVG!LV6]KV6]KVG!LTW-U
  925. XMTW-UTW9UUGEXUX-XWXN X9B(YYZ.XJ2.[:^9[;RE[;REY;NFZ+ZIZ,6P[,FT
  926. XMX+VDY\2K\L6[VZZDKW: A$M59BI%31$L5!L]41@Z4!,V410W8QLZ<RM*BC14
  927. XMDCQ<FTYG@C5.A#5)BSQ0@S%$@S%$CCE1B31,@"I&@BQ(@2]$G4M@XY>:RW^"
  928. XMOWAKMF]BNW!NNF]MNVYMO7!ONFUNM&=HLF5FM&=HKV!DK5YBJ5I>IE=;I%1:
  929. XMP)&RCV"!<3Y@;SQ>OH.F=CM>5!$U92)&91X_="U.@CI97Q<V714R7!0Q=S%-
  930. XM?#926Q<_7QM#7AI"614]6A4]8!M#8AU#7QI 8AM 8!D^8!<]8!<]8AD]9QY"
  931. XM;2)'<"5*;"4^:R0];2-#;")":!D]9Q@\?"5!CC=3H4)-KU!;PUE<Q%I=R5A9
  932. XMS%M<T5EASE9>RUE?S%I@S5UBT6%FUF9KV6ENUVILUVILUFEIV&MKV6YMV6YM
  933. XMUVUIUVUIUVUIV&YJSV]QT7%SU7AWVWY]WXN YY.(YIV-Z:"0[[&;\+*<Z+>@
  934. XMZ;BAZ+ZIZ\&LY,&LXK^JZ\BOX\"G[+^U\,.Y\KG#W:2NJFZ)<#1/3A4W2A$S
  935. XM2 LN2 LN7!0S;25$A2]/BS55G$]H@#-,@#%%B3I.@S%$@S%$C3A0AS)*>B1 
  936. XM@"I&?"H_H4]DWI*5S("#O79INW1GOW1RN6YLNVYMPG5TPG5VN6QMMFEJNFUN
  937. XMM69JLV1HKE]CJEM?J%A>LH.D>4IK=4)D:#57BE%SK7266AL^929)8Q\_<2U-
  938. XM>3-18QT[5Q$M4 HF>#!-=BY+6Q<_7AI"7AI"6Q<_614]7!A 8QY$9B%'9!U"
  939. XM8AM 8!D^7Q@]81@\91Q :2!$;"-'<"@_;R<^>"Y.9QT]8!$U:1H^=1\]B3-1
  940. XMH$%.K4Y;NU)2O%-3RU95S%=6T5-6UUE<SUMAT%QBT5UATU]CU61GUV9IUF=G
  941. XMU69FV&EIVFMKVFYKVV]LV6UJV6UJV6UIVFYJTG!NUW5SVGYXX(1^W8Q_Y).&
  942. XMY9^,[*:3Z["7Z["7YK:9Y[>:Y+R<Y;V=Y+Z>Y;^?[,FBZL>@Z[^EZKZD]<&Z
  943. XM^,2][+? W*>PAU9J62@\0@TF210M6A8T8AX\?RY0D#]AFTUK?2]-A#5,@C-*
  944. XM>RD^AC1)A3!)@"M$A2]+@"I&=B0YMF1YTX>*SX.&O7=GP7MKP7EVP7EVP7EV
  945. XMP'AUP'5UOG-SO'%QNF]ON&INMVEMMF=KM&5ILF)HJ7J;I7:7<C]A52)$@4AJ
  946. XMJ7"2HV2'518Y8Q\_;2E)="Y,81LY61,O4PTI>S-0>#!-71E!7QM#8!Q$7!A 
  947. XM6A8^7!A 8AU#9B%':2)'9A]$8QQ!8!D^81@\9!L_:!]#:B%%<"@_<2E >S%1
  948. XM:R%!8Q0X:AL_=1\]B3-1GT!-K4Y;NU)2O%-3S%=6S%=6T5-6UUE<T5UCT5UC
  949. XMT5UATEYBU&-FUV9IV6IJVFMKV6IJVVQLVFYKV6UJV&QIV&QIVFYJW'!LU')P
  950. XMV7=UW(!ZX85_WHV Y).&Y)Z+ZZ62ZJ^6ZJ^6Y+27YK:9X[N;Y+R<X[V=Y+Z>
  951. XMY,&:Z,6>[L*H[L*H]<&Z^<6^]L'*[KG"W*N_H&^#93!)3!<P6!0R:"1"?BU/
  952. XM?2Q.F4MI>RU+@S1+@3))>RD^AC1)AC%*@2Q%@RU)?"9"=B0YNVE^U(B+RW^"
  953. XMO'9FQ'YNPWMXPWMXPWMXPGIWPG=WP'5UOG-SO'%QO&YRNVUQN6INMVALMF9L
  954. XM?$MOHG&5C5I^82Y28"I-@4MNO(&D;S1782%"9B9';"A(7!@X7!8T6!(P?C95
  955. XM>3%07AU$7QY%7QY%71Q#7!A 7!A 8!U"92)';"=,:21)9A]$8AM 81H]8QP_
  956. XM9A]":"%$="<^=2@_@C13="9%:1<^;!I!=!X^B3-3G3]0K4]@O%)5O%)5S597
  957. XMSUA9TU-7V%A<T5UCT5UCT5UCTU]EU&-FV&=JW&QOWV]RVVQLW&UMV6QLUVIJ
  958. XMUFIGUVMHVV]LWG)OV'9PW7MUWX1[XH=^WXZ!Y).&Y)Z+Z:.0Z*V4Z*V4YK*4
  959. XMY[.5YK:7Y[>8Y[F8Z+J9X[B6Z\">]L.E]<*D],"J]\.M]\B[^,F\^]71X;NW
  960. XML8>.=DQ361XU5!DP:B!"<RE+E$9G=RE*@#!*?R])>2<^AC1+AS)+@BU&?RE'
  961. XM=!X\=B0YQ'*'UHJ-QGI]NG1DR8-SQ7Y[Q7Y[Q'UZPWQYPGMZP'EXOW9VOG5U
  962. XMOG5WO71VO'!SNFYQN6UQ83!47RY2H6Z2D%V!5!Y!9S%4E%E\J6Z19"1%9"1%
  963. XM9B)"6A8V7A@V6A0R?C95=R].82!'8!]&82!'8!]&7AI"7!A 7QQ!92)';RI/
  964. XM:R9+9R!%8QQ!8AL^9!U 9R!#:B-&=2@_>"M"ASE8>RU,;1M";!I!<QT]BC14
  965. XMFSU.K4]@O5-6O%)5S597T5I;U559UU=;SEI@T%QBU&!FUF)HUV9IVFELW6UP
  966. XMX'!SW6YNW&UMV&MKUFEIU&AEUFIGVV]LWW-PW'ITX'YXX89]Y(F WXZ!XY*%
  967. XMXYV*Z**/YJN2YJN2Y+"2Y;&3Y+25Y;66Y;>6YKB7Y+F7ZK^=\\"B\K^A[[NE
  968. XM\;VG\<*U]L>ZZ<._^M30\\G0P9>>B$UD61XU7A0V<RE+CD!A<2-$>RM%>RM%
  969. XM=R4\A#))AC%*@BU&?"9$;!8T=B0YS'J/UXN.P75XNG1DS8=WQG]\QG]\Q7Y[
  970. XMQ'UZPGMZP7IYP7AXP'=WP7AZP'=YP'1WOG)UO'!T=T9M-00KAU-ZOHJQ:319
  971. XM;CE>=CUAQHVQ9RA,8R1(8R!$618Z7A<Z61(U?3-5=BQ.8B%(8!]&82!'8B%(
  972. XM8!Q$6Q<_7AM 92)';BE.:B5*92!%81Q!8AL^91Y!:B-&;29)>B@]?BQ!CCQ<
  973. XM@S%1<!Q&:Q=!<1H^BS18ESM/K%!DO%1<NE):S%9=TEQCUE9>UU=?QU5=S5MC
  974. XMU&)JV6=OVFIQVVMRW&QQW6URVVYPVFUOV&MMU6AJTVAGU6IIVW!OWW1SWGUU
  975. XMXH%YXH=]Y8J WXZ!XY*%XIR)YZ&.YZ>2Z*B3Y:R2YJV3Z*^3ZK&5Z[.5Z[.5
  976. XM[;>B[KBC\+J?\;N@\;V<\KZ=[<2A\<BEZ,FL\M.V]M3*ZLB^Q)*B>$96618X
  977. XM92)$B#E=:QQ =B9"=R=#<R Y@2Y'A"Y*@"I&>B1"9Q$O=R4ZT7^4U8F,OW-V
  978. XMNW5ES8=WQ(!\Q(!\PGYZP7UYP'QZOWMYOWMYOGIXOWI[OGEZNWAXN79VMW1U
  979. Xend
  980. END_OF_FILE
  981.   if test 32122 -ne `wc -c <'timg.ppm.u.b'`; then
  982.     echo shar: \"'timg.ppm.u.b'\" unpacked with wrong size!
  983.   elif [ -f timg.ppm.u.a ]; then
  984.     echo shar: Combining  \"'timg.ppm.u.a'\" and \"'timg.ppm.u.b'\"
  985.     cat timg.ppm.u.a timg.ppm.u.b > testimg.ppm.u
  986.     echo shar: Removing   \"'timg.ppm.u.a'\" and \"'timg.ppm.u.b'\"
  987.     rm timg.ppm.u.a timg.ppm.u.b
  988.     echo shar: Uudecoding \"'testimg.ppm.u'\"
  989.     cat testimg.ppm.u | uudecode 
  990.     if [ -f testimg.ppm ]; then 
  991.        echo shar: Removing   \"'testimg.ppm.u'\"
  992.        rm testimg.ppm.u
  993.     fi 
  994.   fi
  995.   # end of 'timg.ppm.u.b'
  996. fi
  997. echo shar: End of archive 8 \(of 18\).
  998. cp /dev/null ark8isdone
  999. MISSING=""
  1000. for I in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ; do
  1001.     if test ! -f ark${I}isdone ; then
  1002.     MISSING="${MISSING} ${I}"
  1003.     fi
  1004. done
  1005. if test "${MISSING}" = "" ; then
  1006.     echo You have unpacked all 18 archives.
  1007.     rm -f ark[1-9]isdone ark[1-9][0-9]isdone
  1008. else
  1009.     echo You still must unpack the following archives:
  1010.     echo "        " ${MISSING}
  1011. fi
  1012. exit 0
  1013. exit 0 # Just in case...
  1014.