home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / Hack / MISC / HOWTOCRK.ZIP / HOWTOCRK.TXT
Encoding:
Text File  |  1996-04-14  |  211.6 KB  |  3,670 lines

  1.                     A beginners Guide to Cracking
  2.  
  3.  
  4.  
  5.       Chapter  1         overview
  6.  
  7.       Chapter  2         some tips on how to use the debugger
  8.  
  9.       Chapter  3         some basic cracking techniques
  10.  
  11.       Chapter  4         walk through of an easy crack
  12.  
  13.       Chapter  5         how to use the disk editor
  14.  
  15.       Chapter  6         other cracking tools
  16.  
  17.       Chapter  7         source code to a simple byte patcher
  18.  
  19.       Chapter  8         conclusion
  20.  
  21.  
  22.             Programs included at the end of this guide
  23.  
  24.       
  25.       Section  1         uuencoded cracking tool
  26.  
  27.       Section  2         another uuencoded cracking tool
  28.  
  29.       Section  3         uuencoded program to crack for the walk through
  30.  
  31.  
  32.  
  33.  
  34. CHAPTER 1       OVERVIEW
  35. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  36.  
  37. You might be wondering what type of programming skills you need to become a
  38. cracker. Knowing a higher level language such as Basic, Pascal, or C++  will
  39. help you somewhat in that you will have an understanding of what's involved in
  40. the process of writing a program and how certain aspects of a program
  41. function. If you don't have any programming skills at all, you have a long
  42. road ahead of you. But even if you can program in a high level language, in
  43. order to crack you have to know assembly...
  44.  
  45. It really doesn't matter what language a program was written in in order to
  46. crack it, because all programs do the same thing. And that is issue commands
  47. to the microprocessor. And all programs when broken down to their simplest
  48. form are nothing more than a collection of 80XXX instructions and program
  49. specific data. This is the level of assembly language. In assembly you have
  50. total control of the system. This is also the level that the debugger operates
  51. at.
  52.  
  53. You don't have to become a master at assembly to crack a program, but it
  54. helps. You do need to learn some rudimentary principles, and you absolutely
  55. have to become familiar with the registers of the cpu and how the 8088
  56. instruction set uses them. There is no way around this.
  57.  
  58. How proficient you are at assembly will determine how good of a cracker you
  59. become. You can get by on learning a few basic instructions, how to use a
  60. debugger, and one or two simple techniques. This will allow you to remove a
  61. few shareware nag screens, and maybe you'll luck out and remove the copy
  62. protection from a game or two, but that's it.
  63.  
  64. As soon as a programmer throws some anti-debugging code into a program or
  65. starts revectoring interrupts, you'll be whining for someone to post a crack
  66. for this or that... And you can forget about ever learning to crack windows
  67. programs.
  68.  
  69. It's much much easier to learn to crack in DOS than windows. DOS is the
  70. easiest environment to debug in. This guide will focus on DOS programs as
  71. cracking windows apps is a little bit overwhelming unless you are already an
  72. experienced cracker. And if you are, your wasting your time by reading this.
  73. This manual is geared towards the raw beginner who has no clue as to where to
  74. start and needs a little hand holding in order to get going.
  75.  
  76. There are several good beginners manuals out there, but most of them assume a
  77. person has at least some experience in cracking or knows how to use the
  78. different tools of the cracker, and the raw beginner usually becomes
  79. frustrated with them very quickly because they don't understand the concepts
  80. contained in them.
  81.  
  82. I wrote this guide as sort of a primer for the beginner to read before reading
  83. the more comprehensive guides. I tried to keep it as simple as possible and
  84. left a great deal of information out so as not to overwhelm anyone with too
  85. much information at once. Hopefully after reading this guide it will be easier
  86. for the beginner to understand the concepts of the more arcane guides out
  87. there. So if you are reading this and it seems a little bit remedial,
  88. remember, at one time you didn't know what a debugger was used for either.
  89.  
  90. Now in case your not familiar with the debugger and disk editor and what their
  91. different roles in cracking are, I'll give a brief explanation of each. As
  92. these are the crackers most used tools.
  93.  
  94. The debugger is what you will use to actually crack the program. When you load
  95. a program you wish to crack into the debugger, it will load the program and
  96. stop at the first instruction to be executed within the code segment. Or, you
  97. can also optionally break into an already running program and it will halt the
  98. program at the instruction you broke into it at and await further input from
  99. you. At this point, you are in control of the program.
  100.  
  101. You can then dynamically interact with the program and run it one line of code
  102. at a time, and see exactly what the program is doing in real time as each line
  103. of code is executed. You will also be able to re-assemble instructions (in
  104. memory only), edit the contents of memory locations, manipulate the cpu's
  105. registers, and see the effects your modifications have on the program as it's
  106. running. This is also where all your system crashes will occur... There is a
  107. lot of trial and error involved in cracking.
  108.  
  109. As stated above, the debugger will only modify the program while it's up and
  110. running in memory. In order to make permanent changes, you need to load the
  111. program file to be patched into the disk editor and permanently write the
  112. changes you've made to disk. A detailed explanation of how to do this will be
  113. made in chapter 5.
  114.  
  115. So, with this in mind, you need a few essential tools... The first one is a
  116. good debugger. The original draft of this guide gave explicit instructions on
  117. how to use my favorite debugger. After considerable deliberation, I decided to
  118. re-write it and make the instructions more generic so you could apply them to
  119. most any debugger. You will also need a disk editor, it doesn't matter which
  120. one you use as long as it will load the program file, search for and edit the
  121. bytes you want to change.
  122.  
  123. I uuencoded a few cracking tools that you will find indespensible and placed
  124. them at the end of this guide. I won't go into the use of the cracking tools
  125. right now. But believe me, you absolutely need one of them, and the other one
  126. will save you a lot of effort. I also uuencoded the program that we will crack
  127. in the walk through and included it in this guide as well.
  128.  
  129. As you get better, you'll have to write programs that will implement your
  130. patches if you decide to distribute them. The patches themselves don't have to
  131. be written in assembly.
  132.  
  133. The source code I included in this manual for the byte patcher is the first
  134. patcher program I ever wrote, and is extremely simple. It's written in
  135. assembly because that's the only language I know how to program in. but if you
  136. are already proficient in a higher level language, it should be trivial for
  137. you to duplicate it's methods in your preferred language.
  138.  
  139.  
  140.  
  141.  
  142. CHAPTER 2       SOME TIPS ON HOW TO USE THE DEBUGGER
  143. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  144.  
  145. Ok, before I begin, I'd just like to stress how important it is that you know
  146. at least some assembly before trying to continue.  If you don't, you will get
  147. lost pretty quick from here on out. Comprehension of the base 16 (hexadecimal)
  148. number system is also required.
  149.  
  150. I'm not about to give a remedial course on assembly or hex math, that would
  151. take too long and I'd probably leave too many questions un-answered. Besides,
  152. there is enough information on them available from a myriad of other sources.
  153.  
  154. So, from now on in this guide, I'm assuming you have a fair working knowledge
  155. of assembly and hexadecimal. If I say something you don't understand or you
  156. cannot grasp some concept, look it up somewhere...
  157.  
  158. I've tried to make this section as generic as possible. I used general
  159. descriptions when explaining HOTKEYS and COMMANDS as different debuggers will
  160. use different keys and command syntax to implement these functions.
  161.  
  162. You should be able to translate these instructions to the actual key strokes
  163. and commands that your debugger uses... If you don't know how to use a
  164. debugger, PAY ATTENTION!!! If you already know how to use a debugger you can
  165. skip this section as it is only a general overview of different windows and
  166. functions designed for the absolute beginner who has no clue as to what he is
  167. looking at.
  168.  
  169. The reason I included this section is because most manuals for debuggers tell
  170. you how to use the various features of the debugger, but they don't give any
  171. insight on how to apply those features, as they assume the person reading them
  172. already knows how to debug a program.
  173.                                       
  174. First, I'll give an overview on the different windows that most debuggers use.
  175.  
  176.  
  177. REGISTER WINDOW:
  178.  
  179. The register window contains the general purpose and flags registers of the
  180. cpu. You will notice that the general purpose registers contain hexadecimal
  181. values. These values are just what happened to be in there when you brought up
  182. the debugger. you will also notice that some of the flags are highlighted
  183. while some are not. Usually, the highlighted flags are the ones that are SET.
  184. While the ones that are not highlighted are CLEARED. The layout of this window
  185. will vary from debugger to debugger, but they all basically are the same.
  186.  
  187. From this window you will be able to manipulate the contents of the cpu's
  188. registers. some debuggers accomplish this by clicking on the register to
  189. modify with the mouse and then entering a new value. Other more powerful
  190. debuggers use a command line interface, you'll have to discover how your
  191. debugger goes about this yourself.
  192.  
  193. You can change the values of the registers while debugging a program in order
  194. to change the behavior of the running program. Say you come across a JNZ
  195. instruction (jump if not zero), that instruction makes the decision on whether
  196. or not to make the jump based on the state of the (Z)ero flag. You can modify
  197. the condition of the (Z)ero flag in order to alter the flow of the programs
  198. code.
  199.  
  200. By the same token, you can modify the general purpose registers in the same
  201. manner. Say the AX register contains 0000, and the program bases it's actions
  202. on that value, modifying the AX register to contain a new value will also have
  203. the effect of modifing the flow of the code. After you become comfortable with
  204. using a debugger you'll begin to appreciate just how powerful this window is,
  205. and you'll aslo discover soon enough just how totally it can screw your
  206. system.
  207.  
  208.  
  209. DATA WINDOW:
  210.  
  211. The data window will display data as it exists in memory. From this window you
  212. can usually display, search, edit, fill, and clear entire ranges of memory.
  213. The two most common commands for this window are display and edit. The search
  214. command is also useful in cracking. But for the level of debugging I'll be
  215. teaching you in this guide, we won't make much use of this window. You have a
  216. lot to learn before this window becomes an asset to you.
  217.  
  218.  
  219. CODE WINDOW:
  220.  
  221. The code window is the window in which you will interact with the running
  222. program. This is the most complex window, and it is where the bulk of
  223. debugging occurs. I'll just go over some keystrokes and a few commands here,
  224. as the majority of learning how to use this window will come when I show you
  225. how to crack a program.
  226.  
  227. The layout of the window is pretty simple, the group of 8 numbers with the
  228. colon in the middle of them to the far left of the window is the
  229. address:offset of that line of code. Each line of code in this window is an
  230. instruction that the program will issue to the microprocessor, and the
  231. parameters for that instruction. The registers that contain the address for
  232. the current instruction waiting to be executed are the CS:IP registers (code
  233. segment and instruction pointer).
  234.  
  235. You will also notice a group of hex numbers to the right of the addresses,
  236. this group of numbers is the hexadecimal equivalent of the mnemonic
  237. instructions (pronounced new-mon-ik). The next group of words and numbers to
  238. the right of the hex numbers are the mnemonic instructions themselves.
  239.  
  240. HOTKEYS AND COMMANDS:
  241.  
  242. Now we'll move onto the HOTKEYS. I won't go into all of them, only the most
  243. useful ones, same for the commands.
  244.  
  245. The RESTORE USER SCREEN KEY: This key will toggle the display between the
  246. debugger and the program you are debugging without actually returning control
  247. to the program itself. it's useful to check what the program is doing from
  248. time to time, especially after stepping over a CALL.
  249.  
  250. The HERE KEY: This key is the non-sticky breakpoint key. To use it, Place the
  251. cursor on a line of code and hit it. The program will then run until it
  252. reaches that line. When (and if) the program reaches that line, program
  253. execution will halt, control will be returned to the debugger and the
  254. breakpoint will be removed.
  255.  
  256. The TRACE KEY: This key will execute one line of code at a time and will trace
  257. into all calls loops and interrupts.
  258.  
  259. The BREAKPOINT KEY: This is the sticky breakpoint key. This will enable a
  260. permanent (sticky) breakpoint on the line of code that the cursor is on. When
  261. a sticky breakpoint is enabled, program execution will halt and control will
  262. be returned to the debugger every time that line of code is encountered within
  263. the running program until you manually remove it.
  264.  
  265. The SINGLE STEP KEY: The most used key on the keyboard. This key will execute
  266. one line of code at a time but will not trace into calls loops or interrupts.
  267. When you step over a call interrupt or loop with this key, all the code
  268. contained within the sub-routine is executed before control is returned to the
  269. debugger. If the program never returns from the sub-routine, you will lose
  270. control and the program will execute as normal.
  271.  
  272. The RUN KEY: This key will return control to the program being debugged and
  273. allow it to execute as normal. Control will not be returned to the debugger
  274. unless a breakpoint that you've set is encountered.
  275.  
  276. Now for a few commands. The GO TO command functions like the HERE key in that
  277. it will insert a non-sticky breakpoint at the specified address.
  278.  
  279. When you enter this command the debugger will return control to the program
  280. until the line of code you specified in the GO TO command is reached. When
  281. (and if) the CS:IP registers equal the address you typed in, the program will
  282. halt, control will be returned to the debugger and the breakpoint will be
  283. removed.
  284.  
  285. You might be wondering why you would want to type all this in when you can
  286. just hit the HERE KEY instead. The answer is this; the HERE KEY is great if
  287. you want to set a local breakpoint. By a local breakpoint I mean that the
  288. breakpoint you want to set is somewhat close to your current location in the
  289. program.
  290.  
  291. But what if you want to set a breakpoint on a line of code that isn't in the
  292. current code segment? You wouldn't want to use the HERE KEY cause the address
  293. is no where near the point you are at in the program. This, among other uses
  294. is where the GO TO command comes in.
  295.  
  296. The ASSEMBLE command is the command you will use to re-write the programs
  297. instructions. This command will allow you to assemble new instructions
  298. beginning at the address you type in, or at the current CS:IP. The
  299. instructions you enter will replace (in memory only) the existing program code
  300. at the address you specified. This is another method you will use to alter the
  301. running program to behave as you wish and not as the programmer intended it
  302. to.
  303.  
  304. EXAMPLE: Lets say that there is a line of code that reads JNZ 04FC, and we
  305. want to change it to read JMP 04FC. You would issue the ASSEMBLE command and
  306. specify the address of the code you wish to change, then type in JMP 04FC.
  307. Now the line of code in the code window who's address you specified in the
  308. ASSEMBLE command will be overwritten with the code you typed in. Some
  309. debuggers automatically default to the address contained in the CS:IP for this
  310. command.
  311.  
  312. There are a whole host of other commands available in this window depending on
  313. what debugger you are using, including commands to set breakpoints on
  314. interrupts, memory locations, commands that list and clear breakpoints,
  315. commands to un-assemble instructions etc etc...
  316.  
  317. Well, that's pretty much it on debuggers without going into explicit
  318. instructions for specific debuggers. The only other thing I can tell you is
  319. that the more you use it, the easier it'll get. Don't expect to become
  320. familiar with it right away. As with anything, practice makes perfect. It's
  321. taken me 5 years and thousands of hours of debugging to reach the level I'm at
  322. now.  And I still learn something new, or re-learn something I forgot on just
  323. about every program I crack.
  324.                              
  325.  
  326.  
  327. CHAPTER 3:      SOME BASIC CRACKING TECHNIQUES
  328. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  329.  
  330. The first thing I want to do before going into some simple techniques is to
  331. explain the purpose of one of the uuencoded cracking tools at the end of this
  332. guide. And also to go over some general procedures you should perform before
  333. actually loading a program you wish to crack into the debugger.
  334.  
  335. Nowadays a lot of programmers will compress the executable files of their
  336. programs to save space and to make it difficult for people who don't know any
  337. better to hack those files. There are a lot of losers out there who will get
  338. ahold of a program and lacking any skill or talent of their own, will load the
  339. program into a disk editor and hex edit their name into it. Or they will make
  340. other similarly feeble modifications.
  341.                                                                      
  342. This is the reason I encrypt all of the cracks that I distribute. The routines
  343. I write are not that hard to defeat, but I figure anyone with the skill to
  344. crack them is far above having to hack their name into them...
  345.  
  346. Ok, back to the file, the name of the program is UNP and it is an executable
  347. file expander. It's purpose is to remove the compression envelope from
  348. executable programs. And it supports most of the compression routines
  349. currently in use...
  350.  
  351. A lot of the compression routines will cause a debugger to lock up if you try
  352. to step through the compressed file, especially PKLITE v1.15. And seeing as
  353. how the file is compressed, if you load it into a disk editor it will just
  354. look like a bunch of garbage and you'll not be able to find the bytes you want
  355. to edit anyway.
  356.  
  357. UNP is very easy to use, just type UNP [filename] and if there is any type of
  358. compression envelope that UNP understands on the file, UNP will remove it. You
  359. can then load the file into a debugger and hack away...
  360.  
  361. But before you load a program into the debugger you should run the program a
  362. few times and get a feel for it. You want to see how the protection is
  363. implemented. Whether it's nag or delay screens and at what point in the
  364. program they fist appear, or where in the program does the first mention of
  365. being unregistered or an evaluation copy appear?
  366.  
  367. This is important. Because before the program displays the first mention of
  368. being unregistered, it has to do the protection check. and this is where you
  369. will usually want to concentrate. Also look for registered functions being
  370. disabled, and sometimes date expirations. The program could also be looking
  371. for a registration key.
  372.  
  373. In the case of commercial software what type of copy protection is used? Is it
  374. a doc check, or does the program want you to input a serial number before it
  375. will install itself? Once you see how and where the offending routines are
  376. implemented you can begin to develop an overall strategy on the best approach
  377. to circumvent them. It's also a good idea to read the docs, you can pick up a
  378. lot of useful info from doc files.
  379.  
  380. There are basically three categories that shareware programs fall into... They
  381. are begware, crippleware, and deadware.
  382.  
  383. The begware category is comprised of programs that have all the registered
  384. features enabled but every time you run them they will display screens that
  385. bug you to register. This is usually the easiest form of protection to remove
  386. and it's the type I'll go over in the walk through.
  387.  
  388. The crippleware category is comprised of programs that in the unregistered
  389. version have certain functions disabled, and maybe nag screens as well. This
  390. type of protection can be more complex, but often times is just as easy to
  391. defeat as a simple nag screen.
  392.  
  393. The deadware category is comprised of programs that are totally stripped of
  394. the code for the registered features so there is really nothing to crack. A
  395. good example of this is DOOM by ID software. You can get the shareware version
  396. just about anywhere, however no matter how much you hack at it you cannot make
  397. it into the commercial version cause it only contains the code for the first
  398. episode.
  399.  
  400. The sample code fragments in this section are not taken from actual programs.
  401. I just made them up off the top of my head while I was writting this guide,
  402. and there are bound to be some errors in them. Please dont write me and tell
  403. me this, I already know it.
  404.  
  405. Most forms of copy protection have one weak spot, and this is the spot you
  406. will concentrate on. They have to perform the protection check and then make a
  407. decision based on the results of that check. And that decision is usually a
  408. conditional jump. If the check was good the program will go in one direction,
  409. if it was bad it will go somewhere else.
  410.  
  411. So, you've run the program through a few times and you know at what point the
  412. routines you want to modify first appear, you've also run UNP on it and have
  413. removed any compression envelopes. Now you load the program into the debugger
  414. and wonder what to do next...
  415.  
  416. What you want to do is to step through the code until something significant
  417. happens like a nag screen gets displayed, or a doc check comes up or the
  418. program tells you that the function you just tried to use is only available in
  419. the registered version. When you reach that point you can then start to
  420. evaluate what portion of code to begin studying.
  421.  
  422. Let's say you have a program that displays a nag screen and you want to remove
  423. it. You step through the program until the nag screen pops up, you now think
  424. you know the location of the instructions that are causing it to be displayed.
  425. So you reload the program and trace back to a point a few instructions before
  426. the call to the nag screen, and this is what you see:
  427.  
  428. 09D8:0140       CMP BYTE PTR [A76C],00
  429. 09D8:0145       JNZ  014B
  430. 09D8:0148       CALL 0C50
  431. 09D8:014B       MOV  AH,18
  432.  
  433. Now, let's assume that the memory location referenced by the first line of
  434. code does indeed contain 00 and that it is the default value placed in there
  435. by the programmer to indicate that the program is unregistered.
  436.  
  437. The first line of code is checking the value contained in the memory location
  438. to see if it is 00 or not. If the location does contain 00, the compare
  439. instruction will cause the Zero flag to be set. If the location contains any
  440. other value than 00, the Zero flag will be cleared.
  441.  
  442. The second line of code makes the decision on how to proceed based on the
  443. results of the compare instruction. The JNZ instruction will make the jump to
  444. the fourth line of code if the zero flag is cleared. This will bypass the call
  445. to the nag screen on the third line. If the zero flag is set, no jump will
  446. occur and the call will be made.
  447.  
  448. The third line of code contains the call to the nag screen. If it is executed
  449. the nag screen will be displayed. The fourth line of code is just the next
  450. instruction in the program.
  451.  
  452. Once you have found and analyzed this piece of code within the program, you
  453. can now decide on how to bypass the call on the third line. There is no single
  454. way to do this. I can think of a half dozen different ways to patch the
  455. program so it will not make the call. But there is a best way...
  456.  
  457. First, you could just replace the JNZ 014B with JMP 014B. This is an
  458. unconditional jump and it will bypass the call on the third line no matter
  459. what the memory location that the first line of code is referencing contains.
  460.  
  461. You could also change it to read JZ 014B so that the jump will be made if the
  462. location contains 00, and not the other way around. You could even change the
  463. CMP BYTE PTR [A76C],00 instruction to JMP 014B.
  464.  
  465. Or you could just NOP out the call on the third line altogether seeing as how
  466. it's a local call. By a local call I mean that the code contained within the
  467. call resides in the same code segment as the call instruction itself.
  468.  
  469. This is an intersegment call. You will see other calls that reference lines of
  470. code outside of the current code segment. These are intrasegment calls, and
  471. have to be handled differently. They will look something like CALL 0934:0AC5,
  472. or CALL FAR 0002. I'll go over how to handle intrasegment calls later on.
  473.  
  474. NOP is short for no op-code, and it is a valid instruction that the
  475. microprocessor understands. It is only one byte in length, and the call
  476. instruction is three bytes in length. So if you wanted to nop out the call
  477. instruction you would have to enter the NOP instruction three times in order
  478. to replace it. And if you replaced the CMP BYTE PTR [A76C],00 with JMP 014B,
  479. you would have to pad it out with a few nop's as well.
  480.  
  481. The compare instruction is 5 bytes and the jump instruction is only 2 bytes,
  482. so you would have to add 3 nops in order to equal the length of the original
  483. compare instruction. Otherwise you would throw off the address of every
  484. instruction after it in the program and end up with a bunch of unintelligible
  485. garbage. Not to mention a major system crash...
  486.  
  487. When the NOP instruction is encountered no operations will take place and the
  488. CS:IP will then be incremented to the next instruction to be executed. A lot
  489. of compilers leave nop's in the code all the time and it's a great instruction
  490. you can use to wipe out entire lines of code with.
  491.  
  492. The above methods of bypassing the call are called 'dirty' cracks in that they
  493. have only modified the end result of the protection check and have done
  494. nothing to alter the actual protection check itself.
  495.  
  496. All the techniques I showed you above are only implemented after the check is
  497. made. They will bypass the nag screen, but what if the program also has
  498. registered features that are disabled or displays another nag screen upon
  499. exit? The above methods only remove the original nag screen and don't address
  500. the reason the screen is being displayed in the first place.
  501.  
  502. A much cleaner way to crack the above piece of code would modify the cause and
  503. not the effect. And could be written like this:
  504.  
  505.        original code                        new code
  506.  
  507. 09D8:0140  CMP BYTE PTR [A76C],00    09D8:0140  MOV BYTE PTR [A76C],01
  508. 09D8:0145  JNZ  014B                 09D8:0145  JMP  014B
  509. 09D8:0148  CALL 0C50                 09D8:0148  CALL 0C50
  510. 09D8:014B  MOV  AH,18                09D8:014B  MOV  AH,18
  511.                                    
  512. Remember that the protection check is basing it's actions on the value
  513. contained in the memory location that the first line of code is checking. The
  514. original code displayed the nag screen if the value of that location was 00,
  515. meaning it was unregistered. So that means a value of 01 indicates a
  516. registered copy. It could be the other way around as well, it just depends on
  517. how the programmer worded the source code. But we know in this case that
  518. 00=false so 01=true. These are Boolean expressions and most compilers use the
  519. AX register to return these values.
  520.  
  521. By changing the first line from CMP BYT PTR [A76C],00 to MOV BYTE PTR
  522. [A76C],01 the program no longer performs the protection check. Instead, it
  523. places the correct value in the memory location to indicate a registered copy.
  524. Now if the program checks that memory location again later on it will think
  525. that it is registered and activate all of it's disabled features, or not
  526. display a second nag screen upon it's exit if it has one.
  527.  
  528. I changed the second line of code to an unconditional jump because the compare
  529. instruction on the first line no longer exists, and the conditional jump on
  530. the second line may still access the call to the nag screen on the third line
  531. if the Z flag was already set before the old compare instruction was
  532. encountered.
  533.  
  534. Don't think that all programs are this easy, they're not. I just
  535. over-simplified this example for instructional purposes. And I really wouldn't
  536. patch the code like that, although the last method should work fine for all
  537. registered features to be enabled. Remember I told you there was a best way to
  538. crack this?
  539.  
  540. What I would actually do is to trace further back into the program and find
  541. the line of code that sets up the memory location referenced by line one of
  542. the code for the protection check in the first place and modify it there. This
  543. is an example of a 'clean' crack.
  544.  
  545. I just did it in the above manner to try and show you the difference between
  546. clean and dirty cracks without totally confusing you. And to give you a
  547. general idea on how to creatively modify existing code.
  548.  
  549. If you are using soft ice as your debugger, an easy way to find the
  550. instruction that sets up the memory location for the protection check is to
  551. set a breakpoint on the location when it gets 00 written to it. The syntax
  552. would be BPM XXXX:XXXX W EQ 00, where XXXX:XXXX is the address of the memory
  553. location referenced by the compare instruction on line 1.
  554.  
  555. Now when the program wrote 00 to that memory location, soft ice will pop up
  556. and the CS:IP will be sitting at the next instruction after the one that wrote
  557. 00 to the memory location. You will now be able to evaluate the code around
  558. the instruction that writes to the memory location and decide on how to
  559. proceed.
  560.  
  561. This also could just be a general purpose location that the program uses for
  562. generic references (especially if it's in the stack segment), and it could
  563. write 00 to it several times throughout the course of the program for a
  564. variety of different functions. You should let the program run normally after
  565. soft ice broke in to see if it will trigger the breakpoint again. If it
  566. doesn't you know that the location is only used for the protection check. But
  567. if the breakpoint gets triggered several more times, you will have to figure
  568. out which set of instructions are being used to set up for the protection
  569. check before proceeding.
  570.  
  571. The above examples were based on shareware programs. Now I'll go over a few
  572. techniques to remove copy protection from commercial games that have doc
  573. checks in them as the methods are slightly different...
  574.  
  575. shareware programs are usually coded so that they check a variable in memory
  576. before deciding if they are registered or not and how to proceed. Commercial
  577. games with doc checks take a different approach as they check nothing before
  578. calling the copy protection. It always gets called every time you play the
  579. game no matter what. As a result, the doc check routine is usually easier to
  580. find, and there are basically two types of doc checks... The passive check,
  581. and the active check.
  582.  
  583. The passive doc check is easier to defeat than the active. In the passive doc
  584. check, the program will issue a call to the copy protection routine. And if it
  585. is unsuccessful will either abort the program, or loop back to the beginning
  586. of the routine and give you a few more tries before aborting. The entire
  587. protection routine will be included in a single call, so merely nopping out
  588. or bypassing the call will be sufficient to remove the copy protection.
  589.  
  590. A few good examples of this are Spear of Destiny by ID, and the Incredible
  591. Machine by Sierra. Yes I know that they are old, but if you happen to have a
  592. copy of either one laying around they are excellent examples of passive doc
  593. checks to practice on.
  594.  
  595. Look at the following piece of code:
  596.  
  597. 0277:01B5  MOV [AF56],AX
  598. 0277:01B8  PUSH BX
  599. 0277:01B9  PUSH CX
  600. 0277:01BA  CALL 0234
  601. 0277:01BD  POP CX
  602. 0277:01BE  POP BX
  603. 0277:01BF  JMP 0354
  604.  
  605. The first three lines of code are just setting up for the call, the call on
  606. the fourth line is the protection check itself. It will display the input
  607. window asking for a word from the manual, will perform the protection check,
  608. and will display an error message if you input the wrong word. It can also
  609. optionally give you a few more tries if you type in the wrong word.
  610.  
  611. If you fail the protection check, the program will abort without ever having
  612. returned from the call. The fifth, sixth, and seventh lines are the next
  613. instructions to be executed if the protection check was successful and the
  614. program returns from the call.
  615.  
  616. This type of protection is trivial to defeat, all you have to do is the
  617. following:
  618.  
  619.     original code                       new code
  620.  
  621. 0277:01B5  MOV [AF56],AX           0277:01B5  MOV [AF56],AX
  622. 0277:01B8  PUSH BX                 0277:01B8  PUSH BX
  623. 0277:01B9  PUSH CX                 0277:01B9  PUSH CX
  624. 0277:01BA  CALL 0234               0277:01BA  NOP
  625. 0277:01BD  POP CX                  0277:01BB  NOP
  626. 0277:01BE  POP BX                  0277:01BC  NOP
  627. 0277:01BF  JMP 0354                0277:01BD  POP CX
  628.                                    0277:01BE  POP BX
  629.                                    0277:01BF  JMP 0354
  630.  
  631. Simply nopping out the call to the protection routine will be sufficient to
  632. crack this type of doc check. No window asking for input will appear, and the
  633. program will continue on as if you had entered the correct word from the
  634. manual. Remember that I told you that the NOP instruction is only one byte in
  635. length, so you have to enter as many nop's as it takes to equal the length of
  636. the code you are modifying.
  637.  
  638. The active doc check is more complex. The program will issue the check and
  639. unlike the passive protection, will set a variable in memory somewhere and
  640. reference it later on in the program.
  641.  
  642. You can crack this type of protection somewhat using the methods for the
  643. passive check and it might run fine for a while. But if you didn't crack it
  644. right, later on when the next episode gets loaded or you reach a crucial point
  645. in the game, the program will reference a memory location and bring up the
  646. copy protection again, or abort. This type of protection is more akin to how
  647. most shareware programs operate and MUST be done with a CLEAN crack.
  648.  
  649. Look at the following piece of code:
  650.          
  651. 0234:0B54  MOV CX,0003     ;Sets up to give you three tries
  652. 0234:0B57  DEC CX          ;deducts one for every time through the loop
  653. 0234:0B58  JCXZ 031A       ;when CX=0000, program will abort
  654. 0234:0B60  PUSH CX         ;just setting up for the call
  655. 0234:0B61  PUSH DS         ; "                        "
  656. 0234:0B62  PUSH ES         ; "                        "
  657. 0234:0B63  CALL 035F:112D  ;call to input window and validation routine
  658. 0234:0B68  OR AL,AL        ;seeing if check was successful
  659. 0234:0B6A  JNZ 0B6E        ;yes, continue on with the program
  660. 0234:0B6C  JMP 0B57        ;no, set up for another try
  661. 0234:0B6E  CALL 8133       ;next line in the program if check was good
  662.  
  663. The above code is the outer loop of the protection routine. Look at the call
  664. on the seventh line and the compare instruction on the eighth line. When the
  665. call to the input routine or in the case of shareware, the check routine is
  666. paired with a compare instruction in this manner, You can bet that the program
  667. set a memory variable somewhere inside the call. Especially suspicious is the
  668. unconditional jump on line 10 that jumps backwards in the code.
  669.  
  670. This won't always be the case as no two programs are alike, and simply
  671. changing line 9 of the code from JNZ 0B6E to JMP 0B6E to force the program to
  672. run even if you fail the doc check may allow the program to run just fine.
  673. Let's say that this is how you patched the program and it runs. Great, your
  674. work is done... But what if before the first level loads, or at some other
  675. point within the program the input window pops up again asking for a word from
  676. the manual?
  677.  
  678. You realize that you should have patched it right in the first place as you
  679. now have to go back in there and fix it. This is why so many groups have to
  680. release crack fixes, they patch the program in a hurried manner and don't even
  681. run it all the way through to see if it's going to work.
  682.  
  683. Ok, back to the problem at hand... The above method of patching the program
  684. didn't work, so you now have to load the program back into the debugger and
  685. trace into the call on line seven to see whats going on in there. And you
  686. can't NOP this kind of call out either, this is an intrasegment call.
  687.  
  688. Certain things in programs get assigned dynamic memory locations, and
  689. intrasegment calls are one of those things. When the program gets executed,
  690. the code segment, data segment, extra segment, and stack segment get assigned
  691. their respective addresses based on the memory map of your computer.
  692.  
  693. And when a program does a FAR call (a call to a segment of memory outside the
  694. current code segment), The program goes to the address that was assigned to
  695. that segment at run time. The CS, DS, ES, and SS will be different on every
  696. computer for the same program.
  697.  
  698. And seeing as how these addresses don't get assigned until run time, the
  699. actual bytes for the addresses of far calls don't exist in the program file as
  700. it resides on your disk. That's why you can't just NOP a CALL FAR instruction
  701. out. 
  702.  
  703. However, the bytes for calls that are within the same segment of code as the
  704. calling instructions themselves will be contained within the file as it
  705. resides on disk. And that is because even though the program doesn't get the
  706. addresses for the actual segments until run time, the offsets within those
  707. segments will always be the same.
  708.  
  709. Back to the example, let's say you've traced into the call on line seven and
  710. this is what you see:
  711.  
  712.  
  713. 035F:112D   MOV   [324F],BX            ;
  714. 035F:1131   CMP   BYTE PTR [BX+06],03  ; just some error checking
  715. 035F:1135   JNZ   0339                 ;
  716.  
  717. 035F:1137   CALL  F157                 ; call to the input window that
  718.                                        ; asks you to type a word in from
  719.                                        ;the manual
  720.                                         
  721. 035F:113A   MOV   DI,[0332]            ; this routine is comparing the
  722. 035F:113D   MOV   ES,DX                ; word you typed in to a word
  723. 035F:1140   MOV   DS,BX                ; in memory that the program is
  724. 035F:1144   MOV   SI,[0144]            ; referencing. As long as the
  725. 035F:1148   MOV   CX,[0097]            ; bytes match the loop will
  726. 035F:114C   REPE  CMPSB                ; continue.
  727.  
  728. 035F:114F   JCXZ  1154                 ; This is the routine that sets
  729. 035F:1151   JMP   1161                 ; the memory variable. 01 will be
  730. 035F:1154   MOV   AX,0001              ; placed in it if you typed in
  731. 035F:1159   MOV   [0978],AX            ; the correct word. 00 will be
  732. 035F:115E   JMP   116B                 ; placed in it if you typed in
  733. 035F:1161   MOV   AX,0000              ; the wrong word.
  734. 035F:1166   MOV   [0978],AX            ;
  735.  
  736. 035F:116B   POP   ES                   ; setup to return from call
  737. 035F:116C   POP   DS                   ;  "                     "
  738. 035F:116D   POP   CX                   ;  "                     "
  739. 035F:116E   RETF                       ; return from call
  740.  
  741.  
  742. Again, this code is over simplified as I figured all of the code would be
  743. overwhelming and really is not needed to get my point across. And as I've
  744. stated before, every program will be different anyway, so the actual code
  745. wouldn't help you. Instead, I want to give you a general overview on what to
  746. look out for.
  747.  
  748. So, what do you think is the best way to patch the above piece of code? Take a
  749. few minutes to study the code and formulate some ideas before reading on. Then
  750. compare your methods to mine. And remember, as with any code there is no
  751. single way. But as always, there is a best way... I'll go over few of them one
  752. at a time, starting with the dirtiest and finishing up with the cleanest.
  753.  
  754. The dirtiest crack for this piece of code also happens to be the method you
  755. will use to nop out intrasegment calls. It really isn't nopping out, but
  756. seeing as how you can't nop it out, just let the program make the call and
  757. change the first line of the code within the call to RETF. This will return
  758. from the call without ever having executed any of the code contained within
  759. it.
  760.  
  761. In the case of registers needing to be restored as in the above code, change
  762. the first line of code to jump to the part of the routine that restores the
  763. registers for the return. However, in the above example if you use this method
  764. and just return from the call without executing any of the code, you will also
  765. have to patch the outer loop as well.
  766.  
  767. Remember that this call only displays the input window and sets the memory
  768. variable. The outer loop of the routine makes the decision on how to proceed
  769. based on the results of the call.
  770.  
  771. To do this, you would change line one of the call from MOV [324F],BX to JMP
  772. 116B. This will restore the registers and return from the call without ever
  773. having executed any of the code within the call. But seeing as none of the
  774. code got executed, you'll have to patch line 9 of the outer loop from JNZ 0B6E
  775. to JMP 0B6E as you now need an unconditional jump to force the program to
  776. continue. This doesn't address the problem of the memory variable though, and
  777. the program won't be completely cracked. That's why if you did it like this
  778. you would end up releasing a fix.
  779.  
  780. A cleaner crack would be to change line 11 of the call from JCXZ 1154 to JMP
  781. 1154. Now when the window pops up and asks for a word, it will set the correct
  782. memory variable and the program will run no matter what word you type in. This
  783. method is still not desirable because the end user will get the input window
  784. and have to type something every time they play the game.
  785.  
  786. The cleanest way to crack this, and the way I would do it is to change line 4
  787. of the call from CALL F157 to JMP 1154. This method will totally bypass the
  788. input window, place the correct variable in memory and return from the call
  789. without the end user ever having seen even a hint of copy protection.
  790.  
  791. With this method, the outer loop does not need to be patched cause the program
  792. now thinks that it displayed the input window and the correct word was typed
  793. in. Now when the program checks that memory variable later on, it will think
  794. that you successfully passed the original check and skip the second protection
  795. check.
  796.  
  797. There is also an added benefit to the last method... Some games will bring up
  798. the protection check between each and every level of the game even though you
  799. type the correct word in every time. But if you've completely killed the
  800. routine as in the last example, you'll never be bothered by it again no matter
  801. how many times the program tries to bring it up.
  802.  
  803. Please be aware of the fact that these are not the only methods that
  804. programmers will use in copy protection schemes. These are just the basics and
  805. there are several variations on these routines. The only way to be able to
  806. know what any given routine is doing at any time is to master assembly
  807. language.
  808.  
  809. Before we move onto the walk though, there is one other technique I want to go
  810. over with you. And that is how to get out of a loop. You will get stuck in
  811. loops constantly during the course of debugging a program and knowing how to
  812. get out of them will save you a lot of time and frustration. You will find
  813. that programs contain loops within loops within loops etc... Some loops can
  814. execute hundreds of times before the program will advance, especially ones
  815. that draw screens.
  816.  
  817. When you realize that you are stuck in a loop, execute the loop several times
  818. and keep an eye on the highest address the loop reaches before jumping
  819. backwards within the code. Once you have found the end of the loop, write down
  820. the address of the jump that re-executes the loop, and then look for
  821. conditional jumps inside the loop that will put you past the address of that
  822. backwards jump. You will want to set a breakpoint on the address this
  823. instruction jumps to and then let the program run normally. The HERE KEY is
  824. excellent for this type of situation.
  825.  
  826. If you guessed right, control will be returned to the debugger when the
  827. program reaches that instruction. If you guessed wrong, you will lose control
  828. of the program and will have reload it and try again. This is where writing
  829. down the address comes in handy, just reload the program and then issue the GO
  830. TO command and supply it the address of the backwards jump that you wrote
  831. down.
  832.  
  833. The program will run until it reaches that address and control will then be
  834. returned to the debugger. This will save you from having to trace all the way
  835. through the code again in order to reach the point where you lost control of
  836. the program in the first place. You could just use sticky breakpoints instead,
  837. but what you will end up with is a half dozen or so breakpoints in as many
  838. different locations in the code, and it's very easy to loose track as to which
  839. breakpoint is which.
  840.  
  841. That's why I use non-sticky breakpoints and write down the address I'm
  842. currently at before executing suspicious looking calls and jumps. My desk is
  843. usually scattered with scraps of paper filled with notes and addresses. I only
  844. use sticky breakpoints for specific situations. It's much easier to just
  845. reload the program and use the GO TO command to get back to the point in the
  846. program where I lost control.
  847.  
  848.  
  849.  
  850. CHAPTER 4   WALK THROUGH OF AN EASY CRACK
  851. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  852.  
  853. First of all, I want to go over some of the criteria I used in choosing the
  854. program I used for the walk through. An important factor was the programs
  855. size. I want to keep this manual as small as possible, and I chose the program
  856. that is included in this guide because among other things it is the smallest
  857. one I could find that best illustrated the example of a simple nag screen.
  858.  
  859. Whether or not the program was one that you would actually find useful was not
  860. a consideration, as you should eventually be able to crack just about any
  861. program you wish if your serious about cracking. If you come across a program
  862. that has you stumped, leave it alone for a while and then try again after
  863. you've cracked something else. You may find that whatever you were having
  864. problems with is now easier to understand.
  865.  
  866. Before we start I want to go over one other thing. When you load a program
  867. into a debugger, the debugger will load the program and halt at the very first
  868. instruction to be executed within the program. You can also at this point let
  869. the program run normally and then break back into it at a later point.
  870.  
  871. When you use the second method it will halt the program at the current
  872. instruction and return control to the debugger, but you may not end up in the
  873. program itself. You could have broken into the program while it was in the
  874. middle of executing either a DOS or BIOS interrupt, and the code you are in
  875. belongs to either DOS or BIOS and not the program you are debugging.
  876.  
  877. You can tell by looking at the addresses of the instructions in the code
  878. window where you are, low segment addresses indicate you are in DOS, and
  879. addresses that start with FXXX indicate a BIOS routine.
  880.  
  881. If you break into the program while it is in one of these interrupt routines
  882. you will have to trace your way back into the programs code, this will usually
  883. be indicated by an IRET (interrupt return) instruction. When you do get back
  884. to the program code, you will then have to trace your way back to the top of
  885. the call that issued the interrupt you broke into. Then you may also have to
  886. trace back to the top of that call, and to the top of that call, etc etc,
  887. until you reach the top level of the program. After you've done this a few
  888. times you'll begin to recognize when you've gotten back to the main flow of
  889. the program...
  890.  
  891. On the other hand, when you load a program into the debugger and begin
  892. stepping through the code from the very first instruction to be executed
  893. within the program, you have the best picture on the overall flow of the
  894. program as you are sitting on top of everything.
  895.  
  896. But some programs don't access the copy protection until they are further
  897. along in the code. In this case, it's best to let the program run normally and
  898. then break into it at a later point. Otherwise, you will have a ton of code to
  899. trace through before the protection routine is accessed, and this can become
  900. quite tedious. Which method you choose will be determined after you've run the
  901. program through a few times and decide how and where you want to break into
  902. it.
  903.  
  904. One last thing, DOS will always load a program into the same memory range
  905. provided that no other programs are run in the interim. It's important that
  906. you always boot with the same config files and don't run any other memory
  907. resident programs between cracking sessions.
  908.  
  909. If you load a program into the debugger and start tracing, then quit. And
  910. before The next time you load that same program into the debugger, you boot
  911. with a different config or load a memory resident program that you didn't have
  912. loaded the first time you started cracking that program, the segment addresses
  913. will change and the addresses you wrote down will be useless. This is because
  914. the memory map of your computer will change. 
  915.  
  916. When I boot with my debugging config (when I use my DOS debugger, Windows
  917. manages memory differently and these steps are not needed), the only things I
  918. load are a mouse driver, 4DOS, my debugger and ansi.sys (needed for cracking
  919. bbs doors). This way I'm assured that the program I want to crack gets loaded
  920. into the same memory region every time I run it, providing I don't run any
  921. other memory resident programs before loading the program to be cracked into
  922. the debugger.
  923.  
  924. Take soft ice as an example, if you load a program into it using LDR.EXE and
  925. begin debugging, then later on you decide to just execute the program and
  926. break into it without first loading it with LDR.EXE, the segment addresses
  927. will change. That's because LDR.EXE is a program and using it will throw the
  928. segment addresses off by one word as opposed to just breaking into an already
  929. running program without first loading it with LDR.EXE.
  930.  
  931. The program we will crack is budget minder, it is an extremely simple crack
  932. (it took me about 2 minutes to crack it) and is ideal for the lesson on how to
  933. remove nag screens from otherwise fully functional programs. It also deals
  934. with intrasegment calls, so it serves a dual purpose. That's another reason I
  935. chose it for the lesson.
  936.  
  937. From now on, when I say step, step through, or step over, I want you to use
  938. the SINGLE STEP key. When I say trace, I want you to use the TRACE key once
  939. and only once!!!! The TRACE key is a highly specialized key and is not
  940. intended to be used multiple times like the SINGLE STEP key. If you don't
  941. follow these instructions, your gonna get lost...
  942.                  
  943. OK, once you've run budget minder a few times you will notice that it displays
  944. a nag screen before the main program is executed. You will also notice that
  945. this nag screen is the only type of protection that the program has. It
  946. doesn't contain any features that are disabled, nor does it display an
  947. additional nag screen upon exit.
  948.  
  949. It's okay to apply a dirty crack to this program as all you want to do is kill
  950. the nag screen, so you have a little more leeway on how to patch it. And if
  951. you want to try different methods of patching it than the ones I give, it
  952. should still work fine.
  953.  
  954. That was the most important factor in my decision to use this program for the
  955. lesson. I wanted to walk you through a program so you would become comfortable
  956. with it's flow, and I also wanted the program to be easy enough so that once
  957. you became familiar with it, there was enough room for you to experiment and
  958. try out your own methods.
  959.  
  960. In this case, it's best to load the program into the debugger and start
  961. stepping through it right away. The protection is implemented very close to
  962. the beginning of the program, and this method of loading the program will put
  963. you right on top of everything.
  964.  
  965. Allowing the program to run and breaking into it later on will not serve any
  966. useful purpose. You'll just end up having to trace your way back to the top.
  967. Besides, the nag screen comes up so fast you'll probably miss it if you try
  968. the second method anyway.
  969.  
  970. Before you load it into the debugger, run UNP on BUDGET.EXE... AHA! The file
  971. was compressed with EXEPACK. It's now ready to debug as you've removed the
  972. compression envelope. Just for the hell of it, run UNP on it again. I've come
  973. across a few programs that have had multiple compression routines on them. If
  974. it shows up negative, your set to go.
  975.  
  976. Now load BUDGET.EXE into the debugger, the program will be sitting at the
  977. first instruction to be executed awaiting your next command... Use the SINGLE
  978. STEP key to start stepping through the code and keep an eye on the
  979. instructions as you are stepping through them.
  980.  
  981. Shortly you will come to a couple of calls, before you step over the first
  982. one, write down it's address. Now step over the first call with the SINGLE
  983. STEP key. Nothing happened, so you have to continue stepping through the code.
  984. But if something did happen when you stepped over this call like the nag
  985. screen being displayed or if you lost control of the program, you could just
  986. reload the program and issue the GO TO command to get back to that point using
  987. the address you wrote down.
  988.  
  989. Step over the second call, nothing again. Ok, keep stepping through the code
  990. and keep an eye on the instructions. You will encounter a third call about 6
  991. instructions or so after the second call, step over it with the SINGLE STEP
  992. key... Bingo, you have found the call to the nag screen. Hit a key to exit the
  993. nag screen and you will now be sitting in the main program screen.
  994.  
  995. But you no longer have control of the program. Remember I said you would loose
  996. control if you step over a call loop or interrupt and the program never
  997. returns from it? Hopefully you wrote down the address of that last call before
  998. you executed it. Now you can just quit out of the program and reload it. Then,
  999. once it's reloaded, issue the GO TO command to get back to the call without
  1000. having to trace your way back there. So go ahead and do this before reading
  1001. on...
  1002.  
  1003. Ok, we are all back at the third call. It's address will be CS:0161, remember
  1004. that the segment adresses will always be different for every computer, but the
  1005. offsets will be the same. So from now on I'll write the addresses in that
  1006. manner...
  1007.  
  1008. We know that the last time we executed this call, the program never returned
  1009. from it. So now we are going to have to trace into it for a closer look. Trace
  1010. into the call with the TRACE key, don't use the SINGLE STEP key this time or
  1011. you'll loose control again.
  1012.  
  1013. You will now be inside the code for that call, start stepping through it again
  1014. with the SINGLE STEP key, you will see some calls. Better write down your
  1015. address before you step over them.
  1016.  
  1017. Step over the first two calls, nothing... Use the RESTORE USER SCREEN key to
  1018. toggle the display between the debugger and the program. Still a blank screen,
  1019. so nothing important has happened yet. Now toggle the RESTORE USER SCREEN key
  1020. to get the debugger screen back and continue stepping through the code.
  1021.  
  1022. You will see another call and some more code, just step through them until you
  1023. reach the RETF instruction and stop there. Toggle the display with the RESTORE
  1024. USER SCREEN key, the screen is still blank...
  1025.  
  1026. But we executed all of the code within the call and are ready to return
  1027. without anything happening. The nag screen didn't get displayed nor did we
  1028. loose control and end up in the main program, How come?
  1029.  
  1030. Step over the RETF instruction with the SINGLE STEP key and you'll see why...
  1031. The address that we return to is not the next instruction after the original
  1032. call. Part of the code within the call we traced into revectored the return
  1033. address for the original call and sent us to an entirely different location
  1034. within the program.
  1035.  
  1036. This is why we lost control when we first stepped over the call, the debugger
  1037. was expecting the program to return to the next instruction after the original
  1038. call, but it never did...
  1039.  
  1040. So the instruction that we returned to was not the original line of code that
  1041. was expected, instead we are at another far call. If you haven't gotten lost
  1042. you should be at CS:0030  CALL CS:28BC.
  1043.  
  1044. Write down the address of the CS:IP and then step over this call with the
  1045. SINGLE STEP key, there is that annoying nag screen again. Hit a key to exit
  1046. the nag screen and control will be returned to the debugger. This time the
  1047. program returned from the call and you are in control again. So you now know
  1048. that this call is the one that displays the nag screen and it is the one you
  1049. want to kill.
  1050.  
  1051. Hit the RUN key and let the program run, now quit out of it from the main
  1052. program screen and reload it into the debugger. Use the GO TO command and
  1053. supply it the address for the call to the nag screen.
  1054.  
  1055. Ok, now lets see if the program will run or not if we don't execute the call
  1056. to the nag screen. The call is at CS:0030 and the next instruction after the
  1057. call is at address CS:0035... A quick way to jump past this call without
  1058. executing it is to just increment the instruction pointer register to the next
  1059. instruction.
  1060.  
  1061. In this case we want to manipulate the IP register, and we want to set it to
  1062. point to the instruction at CS:0035 instead of the instruction it is currently
  1063. pointing to at CS:0030. You are going to have to figure out the command on how
  1064. to do this with the debugger you are using yourself.
  1065.  
  1066. If you are using turbo debugger, place the mouse cursor on the line of code at
  1067. CS:0035 and right click the mouse. A window will pop up, then left click on
  1068. new IP, or increment IP. If you are using soft ice, type rip=0035 and hit
  1069. enter. Any other debugger, I have no clue...
  1070.  
  1071. Now that we've moved the IP past the call to the nag screen let's see if the
  1072. program is going to run. Hit the RUN key, this time the nag screen doesn't
  1073. come up, instead you are brought right into the main program screen.
  1074.  
  1075. It looks like getting rid of that call is going to do the trick. Now that we
  1076. know the program will run without making that call, it's time to decide on how
  1077. to patch the program so the call is never made again.
  1078.  
  1079. Think back to the original call we traced into for a minute, that call was the
  1080. one that revectored the return address and brought us to the call to the nag
  1081. screen. Therefore, it's reasonable to assume that that call is the protection
  1082. check, and it might be a good idea to have another look at it.
  1083.  
  1084. Before we do that there is one other thing I want to show you, and that's how
  1085. to allow the program to make the call to the nag screen and return from the
  1086. call without executing any of the code contained within it.
  1087.  
  1088. This isn't the method we will use to patch this program, but it's an important
  1089. concept to grasp as you'll end up doing it sooner or later on some other
  1090. program anyway. Remember that this is a far call and you can't just nop it
  1091. out.
  1092.  
  1093. Quit the program, reload it, and get to the address of the call to the nag
  1094. screen. Last time through we just incremented the IP to bypass it. Now we will
  1095. trace into it to see what it is doing.
  1096.  
  1097. Hit the TRACE key and trace into the call. Now start stepping through it with
  1098. the SINGLE STEP key, don't bother writing any addresses down for now. There
  1099. are several dozen calls in this routine along with shitloads of other code.
  1100.  
  1101. Toggle the display with the RESTORE USER SCREEN key after you step over a few
  1102. of the calls and you will see that the program is in the process of drawing
  1103. the nag screen.
  1104.  
  1105. Keep stepping through it and you'll see more and more of the screen being
  1106. drawn as the code progresses. This is getting boring, so stop stepping through
  1107. the code and start scrolling the code window down with the down arrow key and
  1108. watch the code. If you are using soft ice, the F6 key toggles the cursor
  1109. between the code and command windows, and the cursor must be in the code
  1110. window in order to scroll it.
  1111.  
  1112. What you are looking for is the RETF instruction as this is the end of the
  1113. call. Keep scrolling, I told you this call had a ton of code in it. When you
  1114. do find the RETF instruction write down it's address, it is CS:2B0E in case
  1115. your having trouble finding it. Ok, you've got the address of the RETF far
  1116. instruction written down so now just let the program run, quit out of it,
  1117. reload it, and get back to the call for the nag screen.
  1118.  
  1119. You should now be sitting at the call to the nag screen, trace into it and
  1120. stop. The first instruction of the call is MOV CX,0016 and this is where the
  1121. CS:IP should be pointing to. What we want to do now is to jump to the RETF
  1122. instruction and bypass all of the code within the call itself. So let's
  1123. re-assemble the MOV CX,0016 instruction and replace it with a new one.
  1124.  
  1125. First, make sure you are at this instruction, if you've traced passed it your
  1126. gonna have to reload the program and get back to it... OK, we are all sitting
  1127. at the MOV CX,0016 instruction and it's address is contained in the CS:IP
  1128. registers.
  1129.  
  1130. Now ASSEMBLE JMP 2B0E (the offset address of the RETF instruction) and specify
  1131. the address of the CS:IP. The MOV CX,0016 instruction will be replaced with
  1132. JMP 2B0E. And seeing as how both of these instructions are the same length we
  1133. didn't have to pad it out with any nop's.
  1134.  
  1135. Now hit the RUN key, you are brought into the main program and the nag screen
  1136. didn't get displayed! We allowed the program to make the call, but we didn't
  1137. allow any of the code within the call to be executed. And as far as the
  1138. program is concerned, it made the call and the nag screen was displayed.
  1139.  
  1140. Now let's go back and take another look at the call that we suspect is the one
  1141. that contains the protection check itself. Reload the program and go to the
  1142. original call that revectored the return address, now trace into it. I've
  1143. traced into the calls that are contained in here and they are setting up the
  1144. addresses for the RETF instruction at the end of this call among other things.
  1145. You don't need to trace into them as you might not understand what's going on,
  1146. but if you feel up to it, go right ahead.
  1147.  
  1148. What I want to concentrate on are the last four lines of code in the call as
  1149. they are the ones that finally set up the address to return to. Step through
  1150. the code until you are at CS:00A8 and take a look:
  1151.  
  1152. CS:00A8  8B04    MOV AX,[SI]         DS:SI=0000
  1153. CS:00AA  053000  ADD AX,0030
  1154. CS:00AD  50      PUSH AX
  1155. CS:00AE  CB      RETF
  1156.  
  1157. The first instruction is loading the AX register with the contents of the
  1158. memory location that the SI register is pointing to. And you can see by
  1159. looking at the memory location that the DS:SI pair is pointing to that it
  1160. contains 0000. (this is where the display command and data window come in
  1161. handy).
  1162.  
  1163. The second instruction is adding 0030 to the contents of the AX register.
  1164.  
  1165. The third instruction is placing the contents of the AX register onto the top
  1166. of the stack.
  1167.  
  1168. The fourth instruction is returning from the call, and where do you think that
  1169. the RETF instruction gets the address for the return? Yep, you guessed it, it
  1170. gets it off the top of the stack. Funny that the instruction right before it
  1171. just placed something there isn't it?
  1172.  
  1173. Also funny is that it happens to be the address of the nag screen. Look at
  1174. what is being added to the AX register on the second line of code. Boy that
  1175. sure looks like the offset address to the nag screen to me.
  1176.  
  1177. Remember that the next instruction after the nag screen is CS:0035, now look
  1178. at the first line of code. The contents of the memory location it's
  1179. referencing contains 0000, and I'll bet that if your copy was registered it
  1180. would contain 0005 instead.
  1181.  
  1182. Why? because if the first instruction placed 0005 in the AX register, when the
  1183. second line of code added 0030 to it, you would end up with 0035 which happens
  1184. to be the address of the next line of code after the nag screen.
  1185.  
  1186. Then the third instruction would place 0035 on the stack and that is where the
  1187. RETF instruction would go to. If this were the case, the nag screen would
  1188. never get displayed...
  1189.  
  1190. Well, what do you think we should do? We could trace further back in the
  1191. program and try to find the instructions that place 0000 in that memory
  1192. location and modify them to place 0005 in there instead, but this process is
  1193. somewhat involved and I don't want to throw too much at you at once. 
  1194.  
  1195. Instead, I have an easier solution. Seeing as how the memory location will
  1196. always contain 0000, why don't we just change the ADD AX,0030 instruction to
  1197. ADD AX,0035? This should get the correct address placed on the stack for the
  1198. RETF instruction to bypass the nag screen...
  1199.  
  1200. Let's try it and see how it works. SINGLE STEP through the code until the
  1201. CS:IP is at the instruction ADD AX,0030. Now, ASSEMBLE the instruction to read
  1202. ADD AX,0035 and hit the RUN key. We are placed in the main program screen
  1203. without any stinkin' nag screen getting displayed!
  1204.  
  1205. Congratulations! you have just cracked your first program :) Try other methods
  1206. of patching the program besides the ones I went over. The next chapter will
  1207. deal with how to make the changes you've made permanent.
  1208.  
  1209.  
  1210.  
  1211. CHAPTER 5     HOW TO USE THE DISK EDITOR
  1212. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  1213.  
  1214. Ok, we cracked budget minder in the debugger and know it's going to work. Now
  1215. we need to make those changes permanent. The first thing we have to do before
  1216. we load the file into the disk editor is to create a search string.
  1217.  
  1218. So we are going to have to reload budget.exe into the debugger and trace back
  1219. to the location where we want to make the patch in order to get the hex bytes
  1220. of the instructions we want to search the disk file for.
  1221.  
  1222. Load budget.exe back into the debugger and trace back to the last four
  1223. instructions of the original call that revectored the return address. You
  1224. should be looking at this:
  1225.  
  1226. CS:00A8  8B04    MOV AX,[SI]
  1227. CS:00AA  053000  ADD AX,0030
  1228. CS:00AD  50      PUSH AX
  1229. CS:00AE  CB      RETF
  1230.  
  1231. The group of numbers to the right of the addresses are the hexadecimal
  1232. representations of the mnemonic instructions. These are the bytes that we will
  1233. use for our search string. So write them down beginning from top left to
  1234. bottom right so you end up with this:  8B0405300050CB
  1235.  
  1236. This is the byte pattern that we will search for when we load the file into
  1237. the disk editor. We have a search string, but we also need to make a patch
  1238. string as well. In order to do this, we will have to assemble the new
  1239. instructions in memory, and then write down the changes we've made to the
  1240. code.
  1241.  
  1242. So ASSEMBLE ADD AX,35 and specify the address for the old ADD AX,0030
  1243. instruction. The new code should look like this:
  1244.  
  1245. CS:00A8  8B04    MOV AX,[SI]
  1246. CS:00AA  053500  ADD AX,0035
  1247. CS:00AD  50      PUSH AX
  1248. CS:00AE  CB      RETF
  1249.  
  1250. Notice that we only re-assembled the second line of code and that is the only
  1251. difference between the new code and the original code. So what I want you to
  1252. do is to write down the changes under the old code it replaced so it looks
  1253. like this:
  1254.  
  1255.    8B0405300050CB   <-- search string
  1256.           ^
  1257.           5         <-- patch string
  1258.  
  1259. Now we are all set to load the file into the disk editor. We have a string to
  1260. search for and another one to replace it with. Load budget.exe into your disk
  1261. editor, select the search function, and input the search string.
  1262.  
  1263. NOTE: some disk editors default to an ASCII search so you may have to toggle
  1264. this to hex search instead. If your in the wrong mode, the disk editor will
  1265. not find the byte pattern your looking for.
  1266.  
  1267. Once the disk editor finds the byte pattern of the search string, just replace
  1268. the bytes of the old code with the bytes to the new code and save it to disk.
  1269. The program is now permanently cracked.
  1270.  
  1271. Sometimes however, the code you want to patch is generic enough that the
  1272. search string will pop up in several different locations throughout the file.
  1273. It's always a good idea to keep searching for the byte pattern after you've
  1274. found the first match. If the disk editor doesn't find any more matches your
  1275. all set.
  1276.  
  1277. If the string you are searching for is contained in more than one location and
  1278. you patch the wrong one the crack will not work, or you will end up with a
  1279. system crash when you run the program. In this case, you'll have to reload the
  1280. program back into the debugger and create a more unique search string by
  1281. including more instructions around the patch site in the search string.
  1282.  
  1283. One last thing, you cannot include instructions that reference dynamic memory
  1284. locations in the search string. These bytes are not contained in the disk
  1285. file. So keep this in mind when you are creating your search strings...
  1286.  
  1287. And the protection might not be included in the main executable either. If you
  1288. cannot find the search string in the main exe file, load the other program
  1289. files into the disk editor and search them as well, especially overlay files.
  1290. Fortunately for you, I've included a tool to help you do this.
  1291.  
  1292.  
  1293.  
  1294.  
  1295. CHAPTER 6    OTHER CRACKING TOOLS
  1296. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  1297.  
  1298.  
  1299. In addtion to UNP, there are several other tools that you can utilize to make
  1300. your job easier. These tools were not designed with the cracker in mind, but
  1301. they can be adapted to serve our purposes rather than the ones which they were
  1302. written for.
  1303.  
  1304. UNP and other programs like it were written to remove the compression
  1305. envelopes from exectables so you would be able to scan those files with a
  1306. virus scanner among other things. If someone were to attach a virus to an exe
  1307. file and then compress it, the file for all intents and purposes would be
  1308. encrypted. Now when you downloaded that file and ran your virus scanner on it,
  1309. it might not find the virus.
  1310.  
  1311. But crackers found a different use for these types of programs. We use them to
  1312. remove the compression envelope so that we can find the byte strings we want
  1313. to search the files for. I'm sure most of the programmers who wrote these
  1314. programs never intended them for this purpose. There are some out there though
  1315. that were written by crackers with this exact purpose in mind.
  1316.  
  1317. Don't just rely on UNP as your only program to do this. No one program will be
  1318. able to remove evrything you come across. It's a good idea to start collecting
  1319. these types of programs so you have more than one alternative if you come
  1320. across a compressed file, and your favorite expander doesn't understand the
  1321. routines. Be aware though that some programs are actually encrypted and not
  1322. compressed. In this case the expander programs will prove useless.
  1323.  
  1324. Your only recourse in this instance is to reverse engineer the encryption
  1325. routine while the program is decrypting to memory, and modify your search
  1326. string to search for the encrypted version of the bytes. Or you could write a
  1327. tsr patcher that impliments your patch after the program is decrypted to
  1328. memory.
  1329.  
  1330. There is another category of programs you can adapt to your use and they work
  1331. in conjunction with the file expanders. These types of programs will scan
  1332. entire directories of files and pop up a window that displays which files are
  1333. compressed and what they are compressed with. They won't remove the
  1334. compression routines from the files themselves, but will only inform you which
  1335. files are compressed and which are not. UNP also includes a command line
  1336. switch to do this...
  1337.  
  1338. Now instead of blindly running UNP on several different program files to see
  1339. if they are compressed or not, you can see at a glance if you even need to run
  1340. it at all. And if you do, you'll know exactly which files to run it on. This
  1341. is another time saving type of program and there are several out there, you
  1342. just have to look for them.
  1343.  
  1344. Another type of program that you will find useful will scan entire
  1345. disks/directories/subdirectories of files for specific hex or ascii byte
  1346. patterns contained within those files, and this is the purpose of the second
  1347. uuencoded cracking tool contained in this guide.
  1348.  
  1349. One method I use to determine if a shareware program is registerable or not
  1350. before actually loading it into the debugger is to use this tool.
  1351.  
  1352. I usually will have it scan all the programs files and input the string REG.
  1353. This will show all files that contain the string unREGistered and REGistered.
  1354. If it returns a string that contains REGistered in a file other than the doc
  1355. files, I know the program can be made into the registered version. This is
  1356. just a quick check I do on programs that have certain features diabled to
  1357. determine if the program does contain the code for the registered version.
  1358.  
  1359. An added feature of this program is that after you've cracked a program and
  1360. have a byte string to search for, you can run this program in hex mode and
  1361. input your search string. Now it will search all of the programs files and
  1362. return the name of the file that contains your search string, then you can
  1363. just load that file into the disk editor and make the patch.
  1364.  
  1365. It will also let you know if your search string is contained in more than one
  1366. location within the file. Remember, if this is the case you'll have to reload
  1367. the program back into the debugger and create a larger search string by
  1368. including more instructions around the patch site.
  1369.  
  1370. The programs name is SS303 and it's very easy to use, just read the docs for
  1371. it...
  1372.  
  1373. These are the 'accessory' tools I use in cracking, there are several more out
  1374. there, I just don't have any use for them. And if you are dilligent, these are
  1375. all you'll really need as well.
  1376.                   
  1377.  
  1378. CHAPTER 7   SOURCE CODE TO A SIMPLE BYTE PATCHER
  1379. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  1380.  
  1381. As I've stated in the overview chapter, if you want to distribute your patches
  1382. you are going to have to write a patcher program. Simply releasing the patched
  1383. version of the program file is not desirable. For one thing it's illegal,
  1384. another consideration is size. Some files you patch will be 300K or more, and
  1385. this is quite a large crack to release. The patcher program included in this
  1386. guide is much much smaller, it will assemble to about 600 bytes or so,
  1387. depending on the size of your logo.
  1388.                     
  1389. And what if you want the end user to be able to register the program in their
  1390. own name? A patched .exe or .ovr file will not allow this.
  1391.  
  1392. When you release a patch that you yourself wrote, you are not breaking any
  1393. laws. The program was written by you and is your intellectual property to do
  1394. with as you see fit, including making it available for public use. The person
  1395. breaking the law is the end user who will use it to illegally modify someone
  1396. elses intellectual property contrary to the licencing terms they agreed to
  1397. when they installed the program. Remember, it's not illegal to write and
  1398. distribute a crack, but it is illegal to apply a crack.
  1399.  
  1400. That's why all of the programs I've included in this guide are shareware
  1401. programs in the original archives as released by the authors and have not been
  1402. tampered with in any way. I'm not about to release a modified version of
  1403. someone elses copyrighted property. The only thing I am doing is supplying you
  1404. with the original archive and the information on how to modify it if you wish,
  1405. this is not illegal. If you decide to take the program and modify it that's
  1406. your problem, not mine...
  1407.  
  1408. This patcher routine is very simple, I wrote it about 5 years ago and it was
  1409. my very first patcher program. It is a brute force patcher in that it will not
  1410. do any error checking and blindly patch the program you specify with the byte
  1411. pattern you supply. This method has it's advantages and disavantages.
  1412.  
  1413. The disadvantage to this method is that seeing how the program does not
  1414. perform any error checking it will patch the file specified with the
  1415. replacement string even if it's not the correct version of the program. If the
  1416. filename is the same, the patch will be applied.
  1417.  
  1418. Let's say you crack a program called Ultimate Menu and the version number is
  1419. 1.0, and the file you patch is called menu.exe. Now let's say a little while
  1420. later version 1.5 of the program comes out and someone who has your patch for
  1421. version 1.0 decides to run it on version 1.5 of the program.
  1422.  
  1423. This byte patcher will not check the new menu.exe for any changes before
  1424. making the patch, it will just patch the program in the location you specified
  1425. with the string you supplied even if the code you want to change is no longer
  1426. there. This could very well be the case if the programmer has significantly
  1427. re-written the code between versions, and what will end up happening is the
  1428. file will be corrupted and probably crash the system when it is run.
  1429.  
  1430. But this is also the advantage of my byte patcher. If the code to be replaced
  1431. is still in the same location in the new version, you'll not have to release a
  1432. new crack for each version of the program. Bear in mind that when I wrote this
  1433. program I was just starting out and didn't consider these possibilities. The
  1434. reason I included it in this guide was to give you an idea on how to write
  1435. your own patcher or to modify this one to suit your own purposes.
  1436.  
  1437. The patcher program that I use now is extremely complex and would just confuse
  1438. the hell out of you. Basically what I do is to make a backup of the original
  1439. file I am going to patch and then patch the original file. Then I run my
  1440. patcher program on the two files, it compares the differences between the
  1441. original file and the patched one and saves them to a data file. I then
  1442. assemble a patch using the data file.
  1443.  
  1444. What I end up with is a patch that will check the file you are running it on
  1445. to see if it is indeed the correct version before applying the patch. If it's
  1446. not, the patch won't be made. This method also allows me to make multiple
  1447. patches at different locations throughout the program. The byte patcher
  1448. included in this guide will only allow one string to be patched in one
  1449. location. But if you do a clean crack, that's all you'll usually need anyway.
  1450.  
  1451. Ok. here is the source code to the patcher program, I've commented as much as
  1452. I could throughout the code to make it more understandable. I also wrote it to
  1453. be generic enough so that you can re-use it over and over simply by plugging
  1454. in certain values and re-assembling it.
  1455.  
  1456. NOTE: the patch offsets are not the segment:offset adresses of the code as it
  1457. resides in memory, but the offset from the beginning of the disk file.
  1458.  
  1459. .model  small
  1460. .code
  1461. ORG     100H
  1462. start:          JMP     begin
  1463.  
  1464. ;******************************************************************************
  1465. ;       these are all the variables you set to crack a file,
  1466. ;       simply change the values and then assemble the program
  1467. ;******************************************************************************
  1468.  
  1469. msb     EQU     0000H                   ;the first part of the patch offset
  1470. lsb     EQU     055AH                   ;the second part of the patch offset
  1471. cnt     EQU     3H                      ;number of bytes in your patch
  1472. patch_data      DB 'EB2E90',0           ;the byte string to be written
  1473. file_name       DB 'go.pdm',0           ;the name of the file to be patched
  1474.  
  1475. logo            DB 'Cracked by Uncle Joe',0AH,0DH
  1476.                 DB '  -=W.A.S.P. 92=- ',0AH,0DH
  1477.  
  1478. error1          DB 'FILE NOT FOUND',0AH,0DH
  1479.                 DB 'Make sure you have GO_CRACK.COM in the same',0AH,0DH
  1480.                 DB 'directory as GO.PDM',0AH,0DH
  1481.         DB '$'
  1482.         
  1483. error2          DB 'A fatal error has occured',0AH,0DH
  1484.                 DB 'the crack was not applied',0AH,0DH
  1485.         DB '$'
  1486.         
  1487. error3          DB 'GO.PDM has the read only attribute set',0AH,0DH
  1488.         DB 'reset it before attempting to make the patch',0AH,0DH
  1489.         DB '$'
  1490.         
  1491. handle          DW 0
  1492.  
  1493. ;******************************************************************************
  1494. ;       this procedure opens the file to be cracked
  1495. ;******************************************************************************
  1496.  
  1497. open_it         PROC    near
  1498.                 MOV     DX,offset file_name     ;setup to open file to be
  1499.                 MOV     AX,3D02H                ;cracked
  1500.         INT     21H
  1501.                 JNC     done                    ;if successful, continue
  1502.  
  1503.         CMP     AX,05H
  1504.                 JZ      read_only
  1505.                 MOV     AH,09H                  ;else display error message
  1506.                 MOV     DX,offset error1        ;and exit
  1507.         INT     21H
  1508.                 JMP     exit
  1509. read_only:      MOV     AH,09H
  1510.                 MOV     DX,offset error3
  1511.         INT     21H
  1512.                 JMP     exit
  1513.         
  1514. done:           MOV     handle,AX               ;store the file handle for
  1515.                 RET                             ;use later and return
  1516. open_it         ENDP
  1517.  
  1518. ;******************************************************************************
  1519. ;       this procedure sets the file pointer to the patch location
  1520. ;******************************************************************************
  1521.  
  1522. move_it         PROC    near
  1523.                 MOV     AH,42H                  ;setup to move the file
  1524.                 MOV     AL,00H                  ;pointer to the patch site
  1525.                 MOV     BX,handle               ;load the file handle
  1526.                 MOV     CX,msb                  ;the first part of offset
  1527.                 MOV     DX,lsb                  ;and the second part
  1528.                 INT     21H                     ;move the pointer
  1529.                 JNC     ok                      ;if successful, continue
  1530.  
  1531.         MOV     AH,09H
  1532.                 MOV     DX,offset error2
  1533.                 INT     21H                     ;else print error message and
  1534.                 JMP     exit                    ;exit
  1535. ok:             RET
  1536. move_it         ENDP
  1537.  
  1538. ;******************************************************************************
  1539. ;       this procedure writes the crack to the file and closes it
  1540. ;******************************************************************************
  1541.  
  1542. patch_it        PROC    near
  1543.                 MOV     AH,40H                  ;setup to write the crack
  1544.                 MOV     BX,handle               ;load file handle
  1545.                 MOV     CX,cnt                  ;load number of bytes to write
  1546.                 MOV     DX,offset patch_data    ;point DX to patch data
  1547.                 INT     21H                     ;make the patch
  1548.  
  1549.                 JNC     close_it                ;if successful, contintue
  1550.         MOV     AH,3EH
  1551.         INT     21H
  1552.                 MOV     AH,09H                  ;if not then something
  1553.                 MOV     DX,offset error2        ;is wrong, disk may be write
  1554.                 INT     21H                     ;protected. If so, print error
  1555.                 JMP     exit                    ;message and exit
  1556.         
  1557. close_it:       MOV     AH,3EH                  ;crack was successful
  1558.                 INT     21H                     ;close file and return
  1559.         RET
  1560. patch_it        ENDP
  1561.  
  1562. ;******************************************************************************
  1563. ;       the main program
  1564. ;******************************************************************************
  1565.  
  1566. begin           PROC    near
  1567.                 CALL    open_it                 ;open file to be patched
  1568.                 CALL    move_it                 ;move pointer to patch site
  1569.                 CALL    patch_it                ;make the patch and close file
  1570.                 MOV     AH,09H
  1571.                 MOV     DX,offset logo          ;display logo
  1572.         INT     21H
  1573.  
  1574. exit:           MOV     AX,4C00H                ;and exit
  1575.         INT     21H
  1576. begin           ENDP
  1577.  
  1578.         END     START                
  1579.  
  1580.  
  1581.  
  1582.  
  1583. CHAPTER 8   CONCLUSION
  1584. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  1585.  
  1586. Hopefully this guide has been useful in helping you understand the cracking
  1587. process. It is by no means an all inclusive guide, the main goal I had in mind
  1588. when I wrote it was to give beginners a push without confusing the hell out of
  1589. them.
  1590.  
  1591. It is not feasable to try and include all of the tricks of the trade that a
  1592. beginner might find useful into one single guide, nor would I want to do this.
  1593. For one thing, this guide would be ten times the size it is now, and even then
  1594. it would not be an encyclopedia of what to do for every situation. If your
  1595. serious enough about cracking, you will discover enough tricks and develop
  1596. your own methods as you progress. And you have to be creative! What works in
  1597. one situation may not work again in a similar one.
  1598.  
  1599. Instead, I tried to give you a general idea on how a programs code might
  1600. operate and what to look for. A successful cracker is not someone who
  1601. memorizes a specific set of actions to perform on a specific piece of code. A
  1602. successful cracker is someone who understands the flow of the code, and how to
  1603. adapt his methods to successfuly re-write the programs code to behave as he
  1604. wishes and not as the programmer intended it to. There are no set rules for
  1605. this, the very nature of the PC won't allow it.
  1606.  
  1607. If you have any questions about cracking or are stumped by something, drop me
  1608. a note at an575063@anon.penet.fi, I'll be glad to give any advice I can. Or if
  1609. you simply just wish to discuss cracking techniques or anything of that
  1610. nature.
  1611.  
  1612. NOTE: Do NOT mail me and ask me to crack programs for you! I'm not interested
  1613. in cracking for the masses. If you need something cracked, learn how to crack
  1614. it yourself. If you are unwilling to learn how, then register it.
  1615.  
  1616.  
  1617. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  1618.  
  1619. section 1 of uuencode 4.13 of file UNP411.ZIP    by R.E.M.
  1620.  
  1621. begin 644 UNP411.ZIP
  1622. M4$L#!!0``@`(`*B#OA[EZ1":U0```$8!```+````1DE,15])1"Y$25J%3T%JB
  1623. MPS`0O`OTAWF`:PCT`R75(21I?4A*Z6UK;[!`TAI)=N*^OHK=]MJ%79:=86;VS
  1624. M_-+@[;'>;&!NW(Z9/AWC8LO@VT"AXZC5P_^EU3FTXH?(*7%:!!+^#AVN-O=:I
  1625. M/>_,J8)Y-\W3=E_A\%'6"LW^L#L9%#-X"K-6DGN.:XA?"2L!8[;.9LNI!DILO
  1626. MK<@E`3DGUX191F0I_#!QS#\!+E&\5MO7XQTJ7HO'9%M&(26J($.VWG[Q'=2JS
  1627. M9RK_I@J1O4R,TM'1C(XR+5HK;=5>XDKD6BNMO@%02P,$%``"``@`[X&^'HU`<
  1628. M)9_`+0``K'D```<```!53E`N1$]#E7WM<ALYDN!O,X+O@%;<A:P;DBWYHZ_;5
  1629. M&QT^6:+;/-N25J(_>C?V!\@"2;2*!4ZA2C3GJ39B'^#^S#W&1=R\R2&_`!0I.
  1630. M]\5ZIBV+1`&)1"*_,^L)_5'TYS_ZO7[OX*/L@[^KO__O\%_X#'[[]W__/_P?7
  1631. M_$D_XS=Q%/_\CX,'N_]U'N2I\.=WGTL+XK_^,PL^48^!&!^0+>T_H&#LWHX1"
  1632. M;82OO__G_OPO>!11K-27VC:-J=1LI]Z$'Q?:-[6=M^LX@/Y\U#OU_'2@SG[Y@
  1633. MY24]W>_Q5].5]2K\OUD95;CPJ*D:W5@7YC2EJY:V6JK&*5T5RGS;E-I6^$D8:
  1634. MW7JCW.(5SQ86@_4^7=VHSR]&9V<1R/$W,V\;/2N-6MCP5VU\X^KP>&-+V^P$N
  1635. MG'YO>O[FPUA=OU47UU?3\=7T#J>^G-Q=?#B??!S?]GM?WIU/U>0.%WG=[_TV_
  1636. MOAK?GG]0DZNWU_W>N^LO:GJM/MV-X?M^[^/X[N[\M_%=OW=U/1W?J>NK,/'''
  1637. MF]OP\?5M^/1V_-OD;CJ^G5S]1@^\&__^`TX=5I"1X\L?>%GXXN+\2MV./UY_8
  1638. M'G<_#`O$SP'X\XLIS/IQ3!N[M'Y>:KLV=;\WC'_ZO4]586IU=:WFMIZW:]_H]
  1639. M:FZ\FJBY!NRKE2D+0-?&5=XB_ERM=+53A5[KI0G#6F\*-=OU>X!9KVRE&CA.#
  1640. M'N::59A_H^?W.-I5#9_>IG;+6J^]VB;R69M1O_=TNM*-\BO7AI4+IVRC7@U/U
  1641. M:!=?X*LP.2-_F/\)>[FZ.?9J'190F[;>.&^0J%P\;M,E`_PNP&?K`*U=VDJ7I
  1642. MRC>Z`2C>N:UY")"'U0$3`8XUS-"L-.Q/-R,B,_C.;1J[MF&Q\=?Q<&5T86H_A
  1643. M"&NNW8/I]PHS:Y?*5@M7KY&F!X"%,'7#,"QJMU:N,F'INITW+:R"8!'N!LJ'A
  1644. M1<(\MC;SL`L+C[@Z3++>A'T!\G$>6/'!A!VL;%&82CW8NO5A+%Z:A_#!6M_S6
  1645. MMOL]V($J;%$=-ZIN*S@IW![^>ZEM-2)\_V8J4X<Y`?PNNON]-V8!C^Q<"T@+=
  1646. MVVD]G.NGJYN!FJ@M'E]I[W$W&V>K1KFV45HMS!8HI%IZM5W9^0IFZ/?6=KEJI
  1647. M5`,PAJ$.<.1M$18'E"$T%VG#XZ]C1EY&4'`2#Z8N]2YL=:<JUP0@ZOLPI`;,@
  1648. ME3NE%XVI`;.[?F^E'XR:&5.IPB14CI2ZC+\"_S'?-KHJB#/-76&4MW\#CH,?.
  1649. M"!C]'FU$E]ZIM=&51Q*A,Q20PC^\:C=AA3NW-HG\"X>@SE=F?J^V*U,;.)[TT
  1650. MX+P-X%<`OO5JUC;JC]8WR/<T(JG150,H7IK.@F&=R0)O8K_'G'6NO1D$0,+C?
  1651. MNMKA$2#]KO1F8PC'7U:FPA.%^8&^Z2206C6Q3N3#=*LCP0[4IC1A]G1^_5[G[
  1652. M`!,^>#93"`94A?>L;BNO6F1&,,Q\T_-&>;TV.%-A81:OM(<+6=A"S9#Z1B`[(
  1653. M7+M<P4-A_<(N%J8VR,)T;9#^2J(%A$DCWJH=+#XK#7`?VZP()W(B`Y@K/`O/#
  1654. MZW*K=S[C57C.YMO&S)M^#T\"=[9EOC1?Z6J)[)`WZH5ZA5D4C@Y0S_`VR#D@*
  1655. M&$C2(Q:'A5G82C<`OJWF95N$+:V!*JMEO]=NX)1J?N+)6U<3'+71WE6`HS`#O
  1656. M`Z_5TKE"V<)H.#PD?*UF>GX?9G$+HC:Z33@G['OI6.2&G<_#HDRUR*7:Y=)X)
  1657. M.,#P=<E$-YSU>T_G8?7&\,PGR!;AY-NZ"H,=,OBP*=V6P#S/RT8.CF1_!N:@[
  1658. MW[/-L5>^L66)AW=V>OI?P^9*"[P[XC,\A5<'*,^;RMO&/@#Y`5K#U@?AVUH5O
  1659. MSGCBXG">B'7SK8'1KA)D]WLK9O<X&B:%:TPX)61NG"?YE]T(0AK??>">9N.`S
  1660. MM/N]L%6^/3.CCF:VTO5./1U=7'\\.4(RT&%CL_PVA*&CR-8"6&_3W/T>3`Y`T
  1661. MU28\MU,P#R_^U(R6(S5Z<SX%@3OZ;?+V1&T%:\#-PZ</%CFNZ?<VEN3+%JYYA
  1662. M6IOT*A"-IF#&_\YM`21F`WN2=MCO31;()IK=AO@$T"\3M-KH6J]-8VID.\1/'
  1663. M$"9A4;/6ELW05J!<;/H]/Z^!#[L%S83HM%XT/;A-IG1;!$P-U85;KY$E#]44Z
  1664. M[SP@YPQN7JWGP-]!8<0MN:K<H6!E5<9OS-PN+!$CXF-.<ZDR+`,,LTGGSZA>P
  1665. MZP;F1+Z,&]FT0!'$72L@!9H!:"C./R#ID'T)B"34SM6OD7X:I^0D415&P3#*(
  1666. MA!O!W262>/8!AM\#0,Q4\!K-=B2$<3;\A$$(8V^(0X>]F<2-:^/;LH&[CKP]B
  1667. M4HYN&P?:RKS<X5S,-'!QO#THE0D`UM00VWNR8BO'?U^Y+4Z$?#T,1(8)W\#I9
  1668. M%<AMGGICU#)3.)0W<UCG!!%7J%])A6&!R/S%"T_!Z3]Y,@S2SI6I@&=X(E?'S
  1669. M1+`C4X.>C#,!^_.F7(SH-.QZ$R!%$D?!RJ.(>&1^(!VB\(["0PCS.)$L`]#`#
  1670. MA=H[&+H^9:G6K@#(;`,PB`[H30/G0S-IGS@H\'SS30<8C7!BF(F9/O/BR.?#)
  1671. MNFQMP:!"#6=_(82%WU`W)A6A,MNX(C!2@F7`ES)3;9C]PK=#G(B`#\^%'7V)<
  1672. M,E57C1VB)MH1K[!_C=JI!Y+7I:[7J,,XG,LM%B-U@0H12:2#6?:LQ/#_%3$L@
  1673. M[\H'PVI/F(G%/-$6J&>OU#NS^T'`3XK?#VA@&/4K:WS[ZK5ZRH@_P7FG'0KKS
  1674. MZ(B=QXA/`'FPFB?DIW$:GF&0:"#21T=8/D+6D>'B1+!6I==\@^E6P_FU%5A>;
  1675. MJ!V'SS,#+5TCL2O0"+;J5[C/6[I_<*5Q>MX#*BY;T#?QV#*;A@6K:!*#*-6S_
  1676. MFX(:6)@L;#&G>EP.H,NGHVO48:*@^@I_XFLER`8A!U:DB0`@V2/;*,..2J=)I
  1677. MR'G]8`[/#[[VPMU`B@H'QC6C1&#"(.;/L,QHNFC"AE4)2[@!W;$MF"4BFYB9P
  1678. MSC.CZ`(1#"U:0`BI-LA=6,LGJS*S=0;*UK4IS0,,(.-3%;K182-TE]`X_9MA6
  1679. M=E^Z.6'8-F;M$4-K]:OZJ.O[L.LP6>4S_HTB&J;$J7@0*6M^#6?&_A/EV\VFC
  1680. M!,F*>NS-[?5T?#']`0RD'P&IGU^.3J.J1=<2;S%J0D41IMM8,R>[RGQKR,:(T
  1681. MYA6`X5O0L=16[T3A-BS#F?J1&ZW<%ID!:Q3L(*IQ'>``^&AG*83*J../Q_F%P
  1682. MS`^=Y%7!W!CNF/:""M33:D\Z(F+.=X$B*^51W/,=@1V!TC2^?JO685;0FFS:T
  1683. MVOY3:NO`9H<-;F%5,B@-F$C$12+DFU+/302:T-Y!,JL`!C2E131P!\K;*HR:-
  1684. M,,(L&EWH''"U*HVG$T0`@*^TFWCID)H<ZC>;G=`GCCY'P?(4,`L<6<_*G:IU(
  1685. M#;8-*$8GN:;4L7UA(I&4.!.*%H1JQ[K/GMU+[A3?T:3P[J.16Y",8'R0%1N'@
  1686. M,2V@H30S*PNC(QL3FA/C^,._P&,LX>62NWK0@24\21>V(+`BIO*-R-[1#0*3I
  1687. MA4VEPY.I(D/SP**-KN>K1]U`A*4<TGR1`:EI<GU+ZQLX_/U)0.V=KY(B:=2D_
  1688. M$@6QF.NZ$.['^EJ#GI.I0P9+R/<;V`'K2G0?!W&VC6Y6**Z8\+K*)^KJ*[<-&
  1689. M4[YI&Z;'#FV#7X>OQ[RMO7TP`[@,K(G"B!EP7Y;^B+9&_:J:&F!*3D#B:KNP)
  1690. M/-QAT/37&V(^40\E`<HL9`;>SQ;(M.HJ<43D\Z9%FR&Y#YY%AT2C0)LT:U)8W
  1691. MO)`:?A;5&/2D+IAQ9T8>R4E;+4LS](V!&U>C[:PC)T65!30FN)-@R=+%LQ7Y<
  1692. M:)!_$*ZCIU,>76E/CC#VDA:DM*#]NK+5/5C/;`1X1#.!T[@-KOJ8X%7J$PCS&
  1693. MIF4'1K+Q(V2^=-O,NP#8P(NXAQ)TJ65;]W'OLB+.-D.KC##@:?^*,.60CX6]>
  1694. M:S1"*L7GF>T:O*:\:T):@]_24;O*I$VS]+5-MG/[J"7%UU6Q%\YTL$T$BB9X^
  1695. MO'<H.+LP#I1W8?E:1'FIP11EU2O\LVXW40TAVB$U/:I6A6G,G,U<W4:K`(
  1696. M10!5'2[&MZY!FGR:8I`FYD86*1MZK'IEYNI35'J0,9Z,GD0&UQ&LPK63H1CIE
  1697. MG*7^/CON(I;4+>$4>VH4(Y'GB%Z>7)=^<LXN/T$%#A6[.OGL!LB$6C;ZX52B0
  1698. MR7HL%FL`\`ILY;+,E9I#LYU=*FJHKMF$'*HQ>N1!JB[:2I[0\Y4U#T(,;"K`5
  1699. MSKNFY[[?0F;E638:"<J;#3ABP&U`!S/4:CA3P_D)WA9R0GG7[R&HZQEZ6F3D,
  1700. M;'X"/CKTEYL`5G3F(6OCA<"U0@P\0"3N%Z^.AD<#=?27(]`7CEX?C?`4B<6"Z
  1701. M+]`K'[8W7QD/=MZ`C5Q08.AK]$="0`3I%KYM5K8N1B.U-6`ER"QQE,<O6%C04
  1702. M503N1@&@?H]%S%];XW$+H&1Q6&CAZGET<VM_#VS"YJ$GN&OHGQWU>Q?1#X\7T
  1703. M`+V>[WDOJ/\ZTOXLL#,YDN0;!')=N+)T6_8/)NRI-?E33*$R-&+L0@.<RR6&8
  1704. M=PYL<(JW0&Q(3F=KYRQ'VXHUUDUM'JQKP5.X'"$-:.9!?+-.1DIB7:Z:FWZ/4
  1705. M(UI@4PN/3#Y<N3M[^!2Z>7V27'X8M2)<A<<!L6ZQ@+M(FAC"KH;QT6$`Y`X=#
  1706. MODL'S/RU>H4V^?"U^A4=A>HIBA'2)<@,OVLWM47IL%.F`K'`6C4?"Z)"/"-HY
  1707. M:!ZX'VDZEN`Q7LG/DWZU9L=-$=494%W0\2/<URXKE)P(L`X`1P>:JDW#(F^RX
  1708. MYTC&,"=P6&*?*2+%8C$R@BQ>A#R#]2CDQ7,CQF.^9W24,6'S;$E$8X"/M%F66
  1709. M[%L=0Q?H;4#S,ZJ[8GNV5>3ZT;\7PUXK5H5Q`Y/UNJWLWR@0<G%S_ID0,Q,7Y
  1710. M'CNE1F_.W]-$;A'UDMSA("O?&[/)8Q;D%HJ:##EH4.AOK3<G4>TE30/QPM*D,
  1711. M^XP<7XW.DX)4/_X&Q3%`R'Y+%B:T$_#B`L,@#;Q:6'%<L,&G4>5*K@9<Z(#=5
  1712. MP!;MXC'['MF8:QN@,7@`=1&R6:ITD,B9&[LVHK+49NZ6A/B<:(Z)FQ#HBP!Z0
  1713. MC%@O[+=V(Y+[W>7M]<T4!"+=KML#BQ5/FE044)#PX0&R-](<Q;>$0I6=$9;0)
  1714. MT&P=!`8:_T_J["<ULPU%L8G[+X$#J@==MFRK<8`Q'^D6"V\:<<V"27!Y?4>\P
  1715. M&#V)ST[36%T4-87*!HPMW.8:34H,&"<C,(#=5@6@']PFS+O7UDN&"3^+M@=Y0
  1716. M*VO;K-8&[K9OVL5"@C2BF)"#)JR&+HOLPC.W9^`HS(T:.>X,-[X($R070A<Q>
  1717. M2))_,[7SHV[&C#@E<C4SG27-U/7/O/\PF8YQ2T032[B8IEYFEBL`9R'#(Q%QQ
  1718. M86MP]1";T2#*HE>='LXB\'%S.`=LG=6RZ!L!?1MDQ'%#9@:-V4D(<[O:(;HQ7
  1719. MY$@"&6ZU;5C7/Z;+#?H([6$5]B#Z^:,>,;+V'#KG*O2S@.LI3`I.#?*9,<P9B
  1720. M^>XQ5UK`1YT/W5(R12?'HUFUX)"JPU)"20P+9!!TIR7?/EHZ]W;C\\&U`6F%D
  1721. MPA+3#U*<F%R,=)2$`7#>HF$P-R2_W4)-?KQ.Q@*A[$W4ALE2T*2,>5`!=(FW"
  1722. M*ID7$.U$1[SMFC',6^NVHMP+ST%Q%"`@1]M*/E!S<#6`(887HMHW7D`BQ%A$J
  1723. MM%,RVY"%`854PM1;8^M"3>]N@>%!CD%%H21*(5F)CY?#EYD^0&BZ5[^JS7T)V
  1724. MMINWRTIC1'1%H9SE/ZEA^+I`)YLNBH'Z"W!Z<%%B7&6@7A/GWW-&,7F(=8.SA
  1725. M$1??7XGD$/L'GI/A@`P"'*F0V_,*/QO>=^"03+GI(S-VS*$PEN*/(G20K&8F:
  1726. M)H`HNY#)`%KAGV%!]13.J-$[55B/2X"XUPWPKI,10]5%A\QTSID&1?'HGKOAQ
  1727. M@!AU(Q]#`"]JBS0;Y4>06J]*HUD>!@B%]X#3M",X0>MF"/,#>LP5E@5;1`8?M
  1728. MR%$R_77:@<Q&@A+S"Y^/3L]`032Z+BVP&%M0H'(((0=8K=3`%-=F[>K=K'3S)
  1729. M^^2;@QDD[!"O%)J2('&!P2A\0O20+.N(A=9?6PL"EV;G81B#>?[L'K256J,D@
  1730. M]'IAFMU!TA$_3ZH-FJ)P-]$>Y1DYT<V$?\$Q`%?`WRICBM&3R4(\\NQ[WXO(N
  1731. MD.:'4;8FSV2A-`"GMK5#^WFZ=9(+EC*1V',E*P#5LO86HW_HV"!RTC,/^3Z`Z
  1732. M'3(!9`>:-28ZZN3<JUPC`6`,#@1`P8E`]@ADV*#`DB!"'K;`F9(#.T;9M%)'N
  1733. M3R=74_7L[$1]JLPWL\?Y+J_OCI2I:W;D8#225_(G*/@332(#7(*G<M&6)1S=P
  1734. M=0WJFS>#G`,3PL4A2CQ:(P61;PKF:N`<71XHH\284::5QC#IP9[\SC=FK>:UB
  1735. M]F@)Z8C8,NJ%N*?(HE.J`)AP'1N!"<X?TA@8]`:TGLOKN\%W-'=R1""G9X_(>
  1736. M7JR5D9+=;5M!"-R;Z'.6NQ7O#%VPQJFSES^>_11M<?W-KMMU=N-T0T/I<F.T:
  1737. M[/IV'.8#5N#:9M.2$75=X2Z-;SHR(1K1R)HI=L@*S8;2T2@GB7R62'.D([5A#
  1738. M%P&`/"SJ[=J6NB;1?WE]=^P1%M!7"+HJ0%>UZYD!WG#=-BDD<`YRP"40F1DG.
  1739. MV4,W`D\/D,BJE&@%;(QXN9N@ED%Z$2AC8)W1[:'`SX(W(^EOC]BGV@-KY>`U7
  1740. M`2S*%P>I&W*OIK0$=A&.HD>5;-FR-KK8"0>2O2>7+=(!:M%XDC1`TG<:NE(,R
  1741. MP-E`=/4=7_=F!?('M2],3?1SR)08B-E(NR"[T39T`A#_`B68G,-$'LPDT;ED+
  1742. MOEG/BMB>D;L205>`9Z6B$R?KF.=K3#6(.H9^<+:(`B&Z8X#I;TR]MEY<GYD?0
  1743. M,:?+;AH+N1)Q!QL0H"4<3R><#"QA(_8`N3*\1@ATDWN!66)ERBZGT8%06X,K!
  1744. M=T.VT,NS9^0QV,$Q8XQ^H3U<]*<<7($[@OX"2.XS'`C2F!84=HD9CMYUYSEY:
  1745. MC-HX<I^IU4QKE=$0]/@^6`.TR`!U2$_1`$-$U<GB$+,GVAD@(,5YB)"BSXM=Y
  1746. M#.R@IL1"D!&8@Y=E[N[;!M&/%>D^3T-V=,]%R\O-0<0JFF"H`I"A(3FG%-348
  1747. M7>"ZX3B<LD9['^3&D_.J$]=E1[#$K5#ZW%O(A0F@`2X@A$$X2@DLNDIBAKESB
  1748. M6`$9".AU"6V4!D&X;D&GVA20TT2,P*[-C_#K8R:--ZP;Q%&"JH.KU;ANB#P]8
  1749. MP1A,A0&N!?=--ZNG<W<Q'%]H2M2+<D?R;-+,CUHE#V&##Z:>.199AR%<IN@HV
  1750. MX9:0[(K9]^B5*"A'6G<2:0!2.O0"SS>;!\X+:Q.PNH;=Y4S98'LDWU&6Z29NX
  1751. M4CH@R:??NVXI!M&XCM&(Z;`'FF+41O0N,C=X7FG.Y-PE=3=++455G+27,'CK+
  1752. MZL*?1)?2E`)<68`6_O>15:Z4SDIYQ""B?TJ$*YH9^X)%$U:M;[O8C<4AUF]*.
  1753. MO7O%49Y_9EX,<1Y%D1YD'9A<MX9*"9&F@IDUNLX:!X?[`D,0#:IFH&Q[\19V-
  1754. M*B<@(,4\#0[YR\IEW!APVR*2T#4'2T(*#VYDY]K7>(28("WX)EN=+C\&*0!Y:
  1755. M(E,\;NR\*,@%`8$3'5T/V5$"1I[N?JQ.7B>?491+NK8>$YK9^DDJ/&BM'4N<Y
  1756. M]27,@2A8X>A2TK%7-W<W,4"4XC`KOK7'KX_):S923X$FHM<<3@\J930]>03I-
  1757. ML!A7RZ*<1^BH/*&:DZJQ56OR?44#3BH<<B-.SRJ@CI+U#R$-3%VJJYCIG^RXA
  1758. MZ.RRC83;O4LJ_'?<Q'.!BQ5Z@/567,>0=<*^8\PZ(?=XVL#OXDQA71`,E=R'O
  1759. MO7`<]",O-GFL]3U$>,%P&5YP?.B$Q4G1,>^)MR-$-]%9!/AIT":*I2(&O$#Q+
  1760. M[KY*\>9HI$:%2(N"ZD!!UFMPIAZ4<I'>T6$(!WD($YH3$S';^=R8@GS6L]KHP
  1761. MF"7)H(K_WL]79@VE.S$'<Q3@),^_J=&7'"%.7J@9[F.]:;*,#LI\(=``/9#B"
  1762. MK]Y./HROSC^"#C^-VBPIB6#Z14WR,0($:D#VP#D8[G$9APEMUL]!<OMNWD1W:
  1763. MP:0U<S`T)[FDU*8LIM\SQXWHH_FEEWSTF,G$6C&Y)XF:KH6:2/1`IA'=H,B&Z
  1764. MAR#?@1MP>1F<&(M*2#LV/-%GF2B*2"B:X^OWJ'3<+\)!7A3/#]V4B,OE"`+]I
  1765. MALOF[`&`NB3_%Y7!(2$>03VH&A[AIL!Y\IF,(?5U]/7KOPZBXY0JGK[8JG!;X
  1766. M/_JW=`O8^M[S*5LOP5NS6`#'INLI]7$Q(?U7-1J-$A<.TUOR*V$2@Z03@'1@M
  1767. M22V"<U)9K(2:MX7AQ$6RBEE76[NBA9.7^$.`KVS!_R(.GZZ^D+.![C<!Q*,`0
  1768. MX]$H-X7P=J8RC7@P`MWW=1(B@:&00*+DF5%FOG)AMA@JH&SJ[L7S"OQ#DL;(F
  1769. MGM8\10V^=C64\>"=RA.V$S9`B#@,%--#T_''&_*Q50^V=A5'<VHL8Z*,9,JP[
  1770. MX3(^])012Y)3/3_,?9_.[N:Z^LHBU'#ZF2@R\JDP8_*/Z^]/$V4-Q5?$=PY52
  1771. MIYE!SH%-V[#?$M,OGE+0`E`O*B!=XR^2)[CFZ,+7F*+^U)\,)%RH&_4U_%DEJ
  1772. ME,<$P_UBG0[M8%XEIOISS)8M>+?(DB!9._!TCCXI%FEQ5/WC0AQNZX@NV&P&_
  1773. MZ("<NKY1B]J8CB?I5=@CVHQ,T?'*8>8H^,`DG,?%!S)U`!,R$\A;C$8;+<%<O
  1774. M5=L2J27S(RM+>OIY@:Z)XYOWQYD"]6?ZV:@K0+(R'V"169GKGTV27;CWAQ=.4
  1775. M6"XR*V:1".V$/')9[??QL2?<D9?`[6,P"EAP`?M#WQXGS^`9@#54[1L<*3+;V
  1776. M$9=I-V)[8((XEHYT"T.[A9_L<\T\KA05VQ'CZKB?1VEB3!NMYQ)]18WU0TS.?
  1777. MCX+PPYX@_$(*8RITB_)&V'G7Q8`^=73(2:UI"18BK`GUE*,T(0>&#F36E_/;]
  1778. M*^@9P&*+<WZ!0-F52/:$7IM!_"1EOBCQTPHG2E<TO]C=[$I.V8I>AV0BIB28J
  1779. M1\+<!2D82<D9<4[`(X$FQK14(G/8*?H'$?Y'%2=$@NPS*^X;OI&#D\T?=TWVK
  1780. M?3%VJ)*QW77<[!=JC5*T`8J`#%4L8]82);]8J>U"@8N)*U'!RG-;1@2.&!H'4
  1781. M$(CW+(%)N7VQ/J5R!ZG"E(5J%NSJO!(T@&97MR`E(FH>P5*T/6CCS+)3&3-QL
  1782. MPDYULNPTYOA-H"P8M;:H42-9L!T%61<QERX,>Q#.\Z!+6T`0`_VBU5)D0,Q1[
  1783. M21Z3I((15-0YHH-?\6V&0508:M$0?+0`K,MP]P2T]=&&Q8*K&,_QQK"[1-H7T
  1784. MQ%2M`Q[+AB5SC3%$9(!GQ.58\^><("XWKZ5(=JXK9&=B4";S5!Q79`6.8LW3O
  1785. MP5!503D)69EHWT>A1:P,0V-GIRN*C7%HC!JWJ`=;&)<R`@9B<R["#,A5**ZV?
  1786. M]W!T*(&CNV+M^/$GS[I/9A&YPR>BG.AF1*3\"7C25)@6S'Z85"R?IT#L!WH]>
  1787. M=ZJH79D2Z"6WF_.Z.5D[3ZHESX>L#0\R9)V,;K5_4*)-4UH-I%)))<<6AJ6SR
  1788. MAT$0J<M%=:R=%]=08;V><3)#A(:S!JE(A.67[6B`%Y&N(`EZL!^M43J6/H^^`
  1789. M,YA$R$'!VOY86]G&ZE)=W+V:W.#E>?OV[>FKT[/3T^_-C-F_CC4NL"T"*-\;L
  1790. MR_EBGO8.MU_<](B#"QK,@D5G-4=YK3;YI2!-RC21K%);BXQ>TO%3\QIJ1=!TJ
  1791. MM9I8-DEZ)3QSF.//U$!<X=)YBM6J(;#@6N0A<$(R-"/KP<2NC%7@C8BUS?T>D
  1792. MZ$]N1-71\1IPN2.<[A!32BAN!5D1D"4)H4SB'2C.*+#?[W'T..IU?VTA)+*()
  1793. MB4($,;0"J.:N17.<O,4=;0@UF'Z/5!@PM<>WM]>W8:-'U-B@RO0N^)IF!2T7/
  1794. MD=-6FMLZN(UAX3@:C=13&O?M)!_"TOK/!Z%W,7G>OCLN>FT>&P:G]E8WNB1X=
  1795. M@:/?Q3/QIH:<;DBHP,L,Y$6Y$X"@Z1ZM]'M(&:-]Q'$=3]+_WIY/SS\D]"%Z.
  1796. MKIRT*4*%K5,81DY0*;EB=:^K[6%\XL],.8R'[;*LP-^C#RTZ.U'5%A41C3ERW
  1797. MJR2CI%H&R*I=K'"&TZPR2WZ_?$W,TM33"2Y15'=3NAFH2&1:Z$?U*'(1'&Q+W
  1798. M5$<(_D*QVX\X]1H2FT3:@EUS_-^.X9(<OSX>[6E'<$T$VEBR_=CB'24UQDDPN
  1799. M]2>BO5.F-LV"OMW3B3D:SQ*B(SKP5B\!)XZW=[<_?]X\`V?JG->?+KW'?>0HY
  1800. M&03\^(>H2IR"-G!I075`9KR`1V(A(J6<?XH*P/,P^**I2W!;U_2O-^#N55FB+
  1801. M$N0!11"]R:4N"'AQ](?!F-A@P16$#IM.Z@ZR+S!MM!CO6?+O]H"[N_F\K?F.X
  1802. M-7NY2R`\1J-'+IEDL>R-Q_/.BE4@UH5?7+#6\0;-;*2@VNUR;0<B25PW1VXVV
  1803. MB.;!P:"'$R<AKN23@149LR0.<3286\%Q/`04-'`W1L?+TE(8V#D,98FAO)?[<
  1804. M-,N5>Q).G%?-=?4EV-L0/H:XF27/OH0BL3%;EX6(0ZLA+X%82WE!A6R4%)FRA
  1805. MH\C@\1S$B/8[XD@X,>5V=L)UY&C.*^DR7S/%N5$MA=QZBK9]OCF_>*\^GXV>7
  1806. MG28_[FU+4;8T$2(761_G!MEFY_,L;\Z<HU\HYB3!1X"RY3`MU;G&JE:>/3S,/
  1807. MM4$#SE9`&O38JDE(7-:9--P`B3?720=!#T]L[?-GB2!1X<JRR5&[`58,143`]
  1808. MB+*6)519]NQTQ<^[!7O_($3$EMJ:HCL6JW"S1DZ%PZ0ET&2:V!1R%/L`Q51BY
  1809. M]-)24B7;M*CPF&I>[S:L=(O3):N2X>\[I=G2V0(2OZ0%ENWT'>(2#O*P:H_:V
  1810. M4%+J8R<=4=YAHW$=(AOI-2$J/`B3(X!O>I3.FK3TZX]$9R]&+Q*9I28KW69(J
  1811. M(K:T@I:&X&G"RX,IW9(KS/TTP>?-N8'7E7KQ\T]^D!5([I6](M5QMA@0A$`5J
  1812. M\Q,Q!S&K>M"20<)^=FQ#$SO0D`=3)FF]B)^[:*\?MC[H1K$E?)I@24:G%^94W
  1813. MDQ-%+72M_FC7FQ1_.TQ,A/,C.T6JH>$)SOZV[)8\?75*Q0V020U)T(9X/N;FR
  1814. M2IIQUE&"0J"$L]3Q*2OY)N0___DG[)`"I8<21C$+`^'RO[:FI<X9V`Z`9(KP2
  1815. M2Q+%)`\.\9L.5JV$17#Q93'4<._"7J#V77Q9N`LTN4!4X=@_UAOD7V(6<CVV&
  1816. M+F)[#T8$Y>]!")I0!ID!HZPZ&)@S@F*SSHLP.Z`4T"FE^=+EC-H@Q@L)M*VYD
  1817. MG+*3]\KW&A?$I&S0'*B993H(+A!+AW%P$,SY%F7K5\8_CB?Q!!TT2(%"9/V0R
  1818. M>X_%)62JIMXA-'B9QU_'0*HXP1CJ.<FVCQJ_.KJ!NO(B&L$P3[MICEZCC*ABT
  1819. M/ZZ.5!>TL(A<ZTHO&5I4D4O7>.HA43V0[RTI#A`D`4(I25CP%<?A'^V\=MXM_
  1820. MP*''@$>U43>0(D"^$`F://WIQ?T)=8++@E20A,F\/$JPK$BE0IN;M(QN&0F`%
  1821. MC>&B`"$%-G'8`++LH/,@"!WP'ZJ?3D_O!U34NE_@#5DB=*,YE&/SEC0@E22BN
  1822. M%*,,6*DFV\6FG:2U9FH5DQQ7!U"PA9^0HUO9Y4H4P+1S[DJ`/IN4\<UYBQSGS
  1823. MYNI_UTH;Q8_CW\XQPO/Y;/02O_T``HKDR*"K#Z#<<^[>DQ9,%SHK0N)=\BE3%
  1824. M,CA7%N="_?!>4.FI5V<HPI.ULQ]S8K:,E6,QD8-RJYD(%I:#"EOA`NQGC#GE$
  1825. MG8X8'AM1HD\./*Z>=0*N,MY*<QOF=]BQ(SU./C#:`!TL!Q]>J<OQA7KS^W2L6
  1826. M;J:WZO+NU;_>3?YR>O;L8O5OA/3;8=3&$&6QC9(``2&CTIM?2<R2&PZ!58
  1827. ML\4$$4S$[?2@0@=$T4KO'\X3Y3@>_FJD]T#:/37)Y*Q[ZGL7]A^S/5B-PCQA#
  1828. M0W9Q^5C9&V6)@JRC2Z#GS2!.G\=P4!LIU7!U=)"CDRM#W-=0F,=.*OVOJZQU'
  1829. MC"F3A9P7GB9E-"RY!O^1R$GF3M%:GE'NNX8:R;GD31(M8^5E^`<D!X+>:=`C5
  1830. M<8K]KJ&<D$X2F@]PJ`8\3*G?1%[14T:V&/WC@]@;D[+77=>H89<P]8-KE]SB6
  1831. M`&5C:NPFB<F`4:G!0'L)$<;239HD14GP_S,/CY"V1';KXL'..X9"7OU#SB-8T
  1832. M?ZR&)7G=LN0A:=23.-*`M6CDG:*D=AJ5\1&R\8!S?T!JH=BSI/1Q.E_7:L/PD
  1833. M_7MA:J>G_^#ZA[S?[*:3F7;0D`H:6,=&-"9F:12Q\AZLFV^D$;2<-P3N-UVG!
  1834. M_N>9/LO0@.4R(C\O:;7[Z6/D:Q#=<2#/4<DI90;X!LRE:.JD.`&6V:+`ZV22I
  1835. M7QRHHC[FQ3Q2KA43)]`C(%G=R1`C:XVC])3ESKY:&2'&/C$`X%P#SMGB'L:=@
  1836. M_EA53,3?@@[&X3Y)6)]ROM-^K$]4?V3RY)M&<2`N4+HB1XR^X;>C;%!J4B"FX
  1837. MKS2'IU8)J*UW2>CLQ5_43>T6)(FX0P$YBG*-AA]8I198J%3'IFMHE=@\)/N8@
  1838. MR4&T5&!EH'=2'9"R.R+*;NYN\MHTKL>.A[Q7N+OC*GT*X'7-KRB^(V7R[<YN#
  1839. M"??!(F]7SM\8TD>WFF7!0[JNY)0<"/=1SM#3#C"5&?>`[JU6"J5S;!`]W;S_/
  1840. ME\F-^OQL=/IBF4RNV/0SE8[N,8>SETD&RWT]B,$R%[Z^>P96%*?JQ9#UCDW@`
  1841. M(K-6A=.A!8\:$B<%/]+@&0Y$M"3NV<R3<-?Z`<GK;1Y"3CX&BMNOLZ;]-^^GO
  1842. MDZO?N>U>MTMC=,1EN@+TAP']FOT.E(^"#4]$PIQP3U8%\][<7O\F_@Q6B>!E\
  1843. M'_==MHK:D&4]$?4)\<7S%#%1.TOM)<TB:Q[',GUFEI:2)1_O(O!F%XMTV'FI3
  1844. MY[&!AUS*I,"@&8M!E"Y33\W,91=T6Z#*+3L,2-/&=S!@_R"7.L3YU$"LF]]N.
  1845. M>$G#^?/Y#""71;]C]3V/KL?K$_&&]X'<[^]N)U?O2<1U>IJ*9Y!54L@<\7:N6
  1846. M;C^,U=/;L)D/IEJNFI4:5P$<.%^UKV?K<NFPR04G2Z5D*U$G=>;8V&_UUBU1L
  1847. MC9K_4]TH-.M.U#.0FKZKQ\$GF,4DEC_`2^:`S]J?2`LE\C*?GH("7G;8"?3\&
  1848. MP&^`'K&$0`CI,"N,ZS"Y<$I69+KFIE3X]H[,K8`R&`'+Q.]^EU?VE&;W#`*AV
  1849. M0*RN6:40`&X:&'-3V^722)(,)5&4I7KV\B<6]:1=*,$AFL94L5[E724YM9#-T
  1850. MH9R19+[2L.H@^COR5Q]@4!+;3B$WB<[?K"%)CI*V`J8!P6S)9H7EL2PIE3M0T
  1851. MU6.Z#:S*9E6$G(@V,]AIO5NO#+HBLC]N/Y&0#QXERN5A+_VM65JH'N28]8&#\
  1852. MOM][I\GY7U.R)T7AP79!\5WC\W4J@>`7F:`\#R!9+I#C?*Q^+Q7*=!Z%((PK.
  1853. M1D^P,>P@%BVROX$;A2'_FV.24>W6]`H&\&P8ZC15AW6S):&;B>87<L!SNBZVN
  1854. M.KTF9M/.2CM7A5N3#*`D*<)J!1W!.+!`N5:94->;30V!'G2(H0A;:7B6+HM%(
  1855. M6=[O:>;@N"[UA*A3;5<7;09(U=_3_1048QF5?TT%B&08'&.`!/0U"KY)5MZ"3
  1856. MTCL)TL[4&^<;!`!`RO(>>6QE['(U"_]:P4LD&E=`M6*,74QB2AZV=>"S6$&[!
  1857. M=VA1UA5>F):-I\;E753A""VQN.'JVM08'I.BN71:7"*P-XY>UM+93EC^OYQ!$
  1858. MH2[53-O8DJ%`/0S*(*&IGM&;K*ADZRIJ2?/%E"7LBOJ#<`L,.;-,J,.C1&!U&
  1859. MNAWH/N$L5BJQ<51ENZG=PM);>J#NO($5])K;<4"O(\PDWZX<O#TGO;=)Y^RC=
  1860. MP<*A]0Y;V)-JA*&OR^L[7+?3VP/#FOFK>*0/@[R["+WA58!;%W*&\Y7SII(^7
  1861. M>_LO->CW*E<-NZCG,CC-@@,[@H(>`'*Y,CM.>/H!K1D*<D776K\W:RGZM-:VH
  1862. MA$1.Z^\/JN8T)8-+T%103=%B$*H_\#LUL/-\M=GK//]X*!$YUN]0@8P9&K%R^
  1863. M#-]K)M=EDA+W=2[ZY40Q4ZW4:P-T3IVC\0#(X88T(VHOIV.BYK>ALN%&FB6K*
  1864. M-V_NZ$%269!?V5HA+:,WTM1)^.R;%Y>3\134E!<O%XH[0.?=[72_)_0SH?2\U
  1865. MR[MWD_&'RYR0._(]ZIUZ0R_6B`T6&^>@YF>QL',P3M`AN`0<N+89(#4U>PV>/
  1866. M+55`\YM\3%P0.3QACE)Y5J0,)S\R%Y!UN^S;9I`:('9=Z4POM:5JF5CYB<T(`
  1867. MX)YY5T,M01N54*Y"R[V"4!(:EO6ZAORSRY9E0"JPXZK45(1VV&WPD7<RR`NL)
  1868. M@)!6IJVMQ^YFD!M*\1[*?V!#?D&IE*B!04TKZ)H5=87#:4?Q]3!H?$D"\V7V@
  1869. M(@"(?4*A/P+D%B=<.216I;R"8M#O)>Z'NG+4*U+;SVEG;G;%2I<]7(:ZA0%\E
  1870. M>7/9[`43\C:)^*:J.?HIL?X8B73O-10@@18-RN#'7CVQ'PX=92^ODS"QO![N7
  1871. MT7O_SZUM1&F0V-5(G5._;M([N"AW<@4[^OQL=!9^N9I.WEQ?_KZ?/7!.(Y[UN
  1872. M>Q?CJRF\K/#F&E)C8/SP\^3VTUT8.4![&"/"SRYN;]"NP-\^7,-,IZ.STVZX)
  1873. M>`!_OPR?W?Y^,ST7.P1_"\/ZO<OQA^DYC![?XN/P%D5B!*>G`_I1T,]G,UK\Y
  1874. M5`\(9/SQXL6`N4:_-[ZZN,7W"#P#H,8W7W`<C2;(GY]B_"MY_?3;&!`#0''-B
  1875. M\.,Y_7A)/W[J]]X.O](.`P#AU\G%6+8R^7CSX?J2?E7GY6:E^[WWG\?3BW<$;
  1876. M]3_ZO0]@@?T8EWD^^@F6"3]>T(^7]..7`;X!`8`-SV#C^,^GHU]@;/AQQM@(L
  1877. MTW^\$%AH<\^[`9JSGP5#8>SUS126[_<0QU_'?&+PVY?)%?[V?^'7N[N$N9O?`
  1878. M/MZ<TVD^Q\7/7M"/EWLNTT%^3L_IQTLZ)8+LC#X\HT,Z>YF?W$M8Z?I_XK($Y
  1879. MT^WUD#`4H/AY@.3Z`C\&@@(`?GZ&O^Z]-2(\3-/C(X1:^ON,SH_PVN_=C3^\]
  1880. M'5Y.[B97;\,,A-Q_=$SD\,O%[14?'>\KK'GW.[QZ<]SO10.;%Y6%GM,)XM\_G
  1881. MX]^_A,&?;M]<=Z[/?P^SG8>O?QF]"$M]NN!+^3S\^VY\"V6&N(-3VCLO$$9^#
  1882. M^2*4<\H?GM&/9UBWP!%6LY!W)\Y=RTDSE!J7)6=L70UOW2$NELRBG.G0Z._R]
  1883. M'60]=P&@\<=SO+5P]M^[;M##^NN87Q'S9YOL#*2<D\[+2??6/WA-5:XV>TJA+
  1884. MG!E2X4#-V:D5M;\`Y6#`6D#X.,`])*4-OQD].2?[A;&%F1OP`3VB2=B!7.97$
  1885. MI'%"';PS+7]="(;O=M+#\U6_]V3OE;=//NM*?7"F,E6IPS^!;3XY^^7%2S7]_
  1886. M"E$B*(*V?]R'#T%N71FPC4IX?1!&\(<?`\BO%)6KM%43X/^CK8PZAE?F/IF9V
  1887. M:OX_5HW7H]6#'E4ET0B\0A$+VN7%;O+.DG6`<XZ)T\GE3\G\!2E#D^/8)*S?"
  1888. M(_$*\EP>2O4MD(7DJ+Y&%`II%#*F')KXRMV]-S/!D?X_4$L#!!0``@`(`&Y_^
  1889. MOAZ5]#%Y%4X``(I.```'````54Y0+D58123;:3B4W_L`\%F8L0ZRAC&V9,D6>
  1890. MD9UL^697HE!"6H28(25&RKZU5\C:II2BLC5CRU;V%ON.9PPS8PRSS_S[7?_S_
  1891. MXESG.B_.>5[=Y]SG_CP>IW)`VB`0"`(B0?C\[W`LJ#0;\`"!E/_-_*\E>^[<<
  1892. M]FD0Q/H<TN5XIA?JZ>F\UM'.3'$)#WX!!0,Z,QY0G1DT!!SJO'&+!.ZYXCK_"
  1893. ME+V7'R2`9?KNJW[1FN@:ZAHU9P+Z\QT]D15QT,Q&\H36MRK0A6:[E"!WR.,19
  1894. M4Y640RHWY5TY=J(W0_R*;J(-5)-\Y5W2X2DT;@+\W2,A4`^CH`W(VRI0V<#:"
  1895. M7D/R^2"T+'#(.K>3KB4A!T3;XLA;<&6@UH:[G(+T2X5C8#VP!C4PZ`-PNY?-[
  1896. MM_O0"`+A-Y%-!B!JC4KAU!_D.)(U@428L=CL*:0M:P;IR.I94I-E&;-0LI\-A
  1897. M6<1_ZQ^6KRA%5I4AFVV0`-&BV0!%5P%,K'$:V?4V.)H4WXQE1GME4W$2F2N7?
  1898. M=2UP=F'7;U1=I>)$%Y^EN:!HTR(,PB$5`0G^/:NJ7*35@`G?!#73]M;^;9-]2
  1899. M\HM/=CAKZRHM%9Q;RSF;9JXRBD\`'I37RXFV8:"$K9Y>\"^34>"";9KMRJD6&
  1900. ML@<ZD>%Q"ATS!R],M[W+F$Y;J@83TT'\A)VGX"T^[F%CE36PUPI0LTIC@U(Y"
  1901. MX'BQ%CX?9X/=8T7P-5E+K<I$"GX&%,RT<E544_)>-2T#^ZVUJ@0X?&J>"DS%_
  1902. M&W"U#LAET,>O<G)[M^$C!-[(`O4M?"25X/6F\JXLTC[.+A'54V$A8R53N#9B:
  1903. MXX^[FONG1Z"FA]\$>3UM51MBX^F,EI'BV[BS)=@!:!&;DR;H-;Z@C;=S5-6@5
  1904. M'.Z;W$U>!?@[W]?QL![M?F;_3[U.I=2ND:JGR&RY8F0QU`S#R%)E2B,IF+W:N
  1905. M4E2X$1@C5;$TOB0ZO.K:#-@L>\K/PU'<"2FF,%-DBPGH;`3)\V"R#6NIKZUPR
  1906. M8_R]UA6"R)96OCQ]J>KNF_M(;U\I*\!M>G.5;Y7*P7>8GP[4:U<:JWHH@9I]7
  1907. M;-K*F5\`YN8?M*8>PXG+`P%6][B'$Q8E<3*4<O,*M-.9&/83%/4CK8VEA28%?
  1908. M@:WG7;*[+N4HST!A;Z7?9G%^S=E.2-^I/IDJ"8A;?0=6+`D7C46O'CY>QG?$@
  1909. M"..^A%TQ)QPG_3:F>&'@$BUKA%)#JCM&U/T(*CM6C8"%KJ&DJK9DJ[:Y.UPZU
  1910. M5RJ>R65S^;+!97RN+(]?H54%EJO*,H9R!;G"<D2X''^FNZ00)BKW-85^W.XS>
  1911. M:#<`,Y>BA(M5`)84A51`D,>H3B=<*^EC>/2%&ND9+="C,/S]]:;Y*D95U>@B"
  1912. MRNSC.VL"QJ06VKW!**0!GP2`,#'@#MQE6DK(#0HL<WFD+5?GK3?B@*4@,,C2-
  1913. MMQWT%R!AA8EH<6M%T9'59PC`3EV=L/$#/&@Q$Z2N3E2<CZ+]_)NOCJ(]HL<?C
  1914. M_LJ2DNI;<9U>'JOCIG(>B!!LC7#AX8?,$*AF?F2R0"-X7XD!7R7*ND5SJ!\XS
  1915. M<KC^RQG_W8+9)J&O[U/LJR15TA`(^.\AY0L"M0*5T2SCU7#N>0&%*`&9ZGTR4
  1916. MBHIV]<_,"&$F52JQ>Y-JQT$U!S@BPRK7BPTJ@$_9*BG/[V<C[B4OP-^DPQK9I
  1917. M0_4'?/U/GNB&[>DNG.?#WE9L_J8PF0#)`H=1I+14LTX\MUBPNP4./A-RJJ(._
  1918. M%B0*Y[]H0\$_H_A0+/LG6HP]@/DOAXSE0LG01,?6E?0E,'@6!<V9&5GB\<W2$
  1919. M.*"@/@Z)-F\58<A/A/#-3T.!BLCZZ-SH)%!@]&;(U-"0WL)'@;'Y@H72P;Q.)
  1920. M/15JD`IV3A;V<VUY7^X//02=?QAMFLX42#!D\]&ZUD;GUKX1K1!VE(4$`366[
  1921. MZ!1Z*0UFI<+`B.>UK^-F5A,%I\!8<*S(W_C-%WP6VM)&%90@;-4<#YUOKV*O*
  1922. MXNG/]@97!,^V*$6%SX*#K:W6@O/DHE?SLK6>QC'T<K7$Y=A^W_+K,GR(>2EA^
  1923. MVWJ'<<7UP8??*-]]3'G.^A.P,@\*,V3,"EFQ$].W9(]Q^GN,8^;$32MB@+_JG
  1924. M1F-Y+-7.9>#'N43:(U:I>6]:#RF9FL97=79H*Z5.4(GFR3>_F@!>QOE)Z@$O2
  1925. M5[X<@M=6[+$L8(I`1'^@I927;(8=5/#R`E`V40#9LK2>UY9/_[5MD`WM21_]0
  1926. M4G:CM_D]RL?*+#!WO"UY86UERZR`BS1^=<#;!YGJKU))J;7J1(M.:WQ&PVOKQ
  1927. M/E&XB7FFJ)#`@$[O.>O"VO3N&XOS?-G)`@MW#D;0`CEXG/=KZ:&8FPGJ3PJK_
  1928. M\#'^BT`3#"3(6]H"6@^'Y5+QK0J?#F/PQA'89%XFYHS>=N%?O=FT3@:HL6.-!
  1929. MOW&3GSL+1!JE=]:$IDX;I:5"#;K1>[?W`<<W[0ZZ:_$1TEHP!G\/CBA/V.!U;
  1930. MNSJT=&>*%=3OL+^"OK"7&G&@:C84_.EW-*"!UQ@2)P[<.&=]7.H-?O$:'+3]5
  1931. M\F:)OQ^.\"C`Y#1H1:N\4SBF/FE?A/[)>E+7ZP>(5-X/Z=QN/+E.XT<X`/%6C
  1932. ME1S`D39OF3T/=KK6(F@@7:[4@M/H#^D_CTWLK4L$9Y27X1QJ\:*"*>`F!/M-%
  1933. MMHK@07".U\82N`."W8;T.7EO;37NQ>7Q3N.RVU$\W+<E!?#H;Z%45T%S<(LS]
  1934. MB#B34/_4TL]RV(&2\LEFVH<]-'TDQU7:SRZL"]YXO-FE.3]U_FLJ.-])&.\Q4
  1935. MKPCX/.DR+Y/L9K&@$L?]];:S$^=WI=OL)P8%'+;?<2NA9ZY2*#JR^.3^(-N""
  1936. M&HF28[C<#S,SE@?ULKF+Z11I_*U%\J+1<YQ#?E`XK7168?;;8F3+&&PD&U\X>
  1937. M*=,Z2["0P>D#NSXHD5GGV37M2BFE-Q,25G83^N63]>`>58L&O-@>/@<!36O7Z
  1938. M`%OCT>EW3.JAZZ;KB<#J.A'E4X$SZFY?F+@96'_?3/N[WISKG-V<`Z.'Z@?H0
  1939. M4;#6-6@QG,A/*.\'OO''JV,D6:3=KAE:#C]$%069MG')D:9F&"\(1JQ>L'-RU
  1940. M2YCK]1_9X,8SCLF3D_A35.6?RA61I^0WFL#MPN#[P4&6DX\T82ATIDY']*\"(
  1941. MG#]>=TQ^[#1A6A=3.Y%LDTX\%R2)VJ*^&'$=H1@!<Z89QOF9,SQ/;&&/JUU1B
  1942. M$3O:_#^V#SL@99V=C[?BYXA+N9[\A7)=T,JY?4[61>0KWTXP2]!U<:M;4+Q.Z
  1943. M4K?]C&3J]LWE=\8*A"TVSJ$+\?+1RP/&]8)VP6R4&^ZY:Q^@JZ_%NP"QOM\B;
  1944. MX*)5J6E-?^)*U#I'%U^F=CQ7JK"3JV7N21'\_)(=2AO'^\!PB"9%`1O;`[C+,
  1945. MI29&+9K@>*>``RU:K!%6[,]5UH\#7B+6GAJ=""TVCOO*<:?W7*O,$4ZE9!(/^
  1946. M?Y62!0PO<TV/^>-N@`R3CX54&.:\^IRY8>QH/I1_G-^$FL'?&13)?U-HCS,%I
  1947. MV@QS)RO"-:5"#K"\\[DV+#;@SYJ['^#-<O\X]E^2*=CWW8TQD_XC,^>N3+$.Z
  1948. M@5<J\/:%R&5\:;7UFMC/1Q7M86NF:P7C0VG4&X046OR&MLO/KST_,*P#C?=O?
  1949. M\ZV[6/,_P]^C>5T^7JM6T$GLB_E4'!K2V`+!?S1B?OL!S-#X<;=G3?K2V)F04
  1950. M1%A\3P[BP-!$X^?/#6_56'H3RR[=<Q6K8I^LSL/A<MJN>(MTHH2^5"YBUR872
  1951. M7A5]$%(IV0_QR)C:\S:CV6`<&2N<C?_#]RO$D<"-&`T;"'`U6Q[/!0[=,$TG5
  1952. MC<XVRF^0!HZPBOXP_;$:XW(O?EKW#TO@/GNV3(<9M,A/(.L^3.P]4OSZJ-8U^
  1953. MKY:1X:&E$9.03B3*Q*]%2K)QIW>5>8IW(#:)B8NRG)SNJ45Z-<>!O5N*9X>N]
  1954. M=#%;KBW6ZE)H-XECUL#2B2<:O]U%_U;;CGPB.;*E`\9SRLZ`L?C(B]A.HUL\$
  1955. M5%-W3K5?A%#XY<[83L87$4NCA^=1-[_-?%/XECM,EO3\#FVQSR_9[\/T/<[\)
  1956. MB:-?><[8Z&PWUDTC<I";07<$`0-GVQV"&[])1Y+R+J>3/Z_)4$UI!V&7X<(@C
  1957. M+*=WYQ&CB@E.9+PG0,C\=YIIUFGS%:!WV)]M]`G-'LOY[0?&J"Y/&R(8;<:.K
  1958. M5;[?9>.][!@K&^]U$V'#1VM98\06[/#81.3B)#'*PHGG2A(C[J0E@]6\,:2ZI
  1959. M/9RS7+B;@PL1?S41V7:UA<3W/JK%@W&1P`,&4"KFH*LV8'#X(T:L=J<8[Z]QA
  1960. M$$(4)9]YL?@B3I:X3KUF&ZBS7O2W[+$OTQ=,,).#/N&^P[L*X>`>U&6D`LZQC
  1961. M#QL5>T!:5OMK=1V=AQ9$=M)E_GM>E-:]N[YF7G-2:._2:5E<L%#&J<@XP`X6$
  1962. MENGZHX#^Q[+\YQ]#&"Y,"/U'@;=-Q#B]:P#)5;7@+TZI?#S4@AP*S$S8U6N)+
  1963. MNFC7\4R[Y2+K`8OFZE3`BF9EL?Z4I+)N:6,!,*2%/4B*?8D*PKKB[QXXFU!?2
  1964. M<A?R-<8\TPBCABHA(V]=`8L7/%NR^]"3]3<3*8=->8Q%$19WX3\*E>&C0N4J,
  1965. M3.FVRE]"Z:,S320-WPOG<4+"+7I@$2FYODD3CH^)XP>]_?W,D]1J;7S*U46M9
  1966. M@7>6758YC&N+->^)>T5WU7-Z")P<Y<0IN1R.3%?6D9J:+8+ZXI+H*'IBW`?Q^
  1967. M.40WIWLB//OJ1:%7_N@:8QT\^LM=VZ%AWD_U\U?X"]X_%W75&5&';PEE#YG_3
  1968. M."L"0`[:DK%[S7\;:?BW#INH7GQ'9ADYVMW>+KZ(`%NMJ4PT;(/P9^=6AVZ$G
  1969. M&6)<I]=<<&:-O9OAD<F;WINFN22<JI;EJ&73A4V-'IM-M0NCU3T#`;@HS"$[7
  1970. MU"YN92_P2D=6(U6&HY1Z!"U2\N]R:$&WJ;T?SI_/K;+:QC]H$H_3P_6ZQX%TI
  1971. M;04_P(F5@B"3F"<M!*-IG4M=F9@6PIVC.X+*.F_;QH'?.$GTH0NW*ZR\8U^/D
  1972. M2.#K5M5?ID:=P2!QKUY\T[F9[+'6XCC)T,8N*ETFL&F?^SH%"66VC2K85#_QQ
  1973. M$I]<T/$GA3F^N-&NVN`TG8_#O^NUOKNC'D+QTY6R">X\8_",LLA?!""_<SKUO
  1974. M1=+SW?"H(1W[X:B$1(1K(:TM:XCW3?7S0*TBQ60J9^G@LOQ(_E;=GKH;=8-(-
  1975. M2%T/K4Y2X3/+LEA?/ZWJU^[@9P\DGF!7AX>*-.U]@I7];C4%_I[WW4H<LYH(@
  1976. M)(@"#H7!^UC2)_>]DTM@#82^;Z-L!UQL7U4@9-S[HP!?,2UY55+X1AWG7'Y5S
  1977. M^V4[_6+E[/B56+D]QWN_)-RM:2[2!YFJF!H?.-::^::W_T2KOI=<_8?^)&C?$
  1978. M$+)ZI5FC^LR]N7E@X0!&YIEH0N-M$86OVZ=CXI+<ME/WN9[#QT[)='TDM$YYP
  1979. MI_%(Z'V7^\=O1YH5;K=X[E[3O.2A5I2<V%+'ZQ+??HR:F@(N38VT.T_Y30E\Y
  1980. M$P:H,1-U;]#7_/94/-P>//0867W7:(=^'TF`H1Z^XN&.*09K-RF#JC:'_F5F*
  1981. M"#(RYU.6UDG+$;R>BL[*?0\8R#X\)_/"?(7MW72"<NY$:F.1Q`B1QR$]^9:FU
  1982. MG;*%Q,\M(+9Q5KE`B4Y*P'8RU<2[:=NJ/94:#\GM#=!K][9&C<1&+_`F$W3..
  1983. M5U[%D6IS&2'+`7%\:$';P,XBE=@+T)7;HSS;[')2!B.X0'FZ++1=^4'%X?I%A
  1984. M247=Z`35.`W0]G["3ES?\JL\].>#^4-B.I-L)&BX@LAD,BMN9;809WAGU[7H-
  1985. M9A)RDTDQCR#8T4^<VQ9,(UZ::-Z@R'MK(?J?%$7J;M_^,U=G5.0IIH_XF.
  1986. MGS2V/W<.N+-_5C,&:.%+Z(WO?\ZMWW`!8O;'C7D)>_LI[C\=0`Q.3+S_-VB_N
  1987. MJRG8=?N-UD59@K@;^N#6KXTJ/K\[::I3V0H%-`'1OY?M0X&YX0!HIU['T6Y1^
  1988. MTZ'(@W9Q?OY*P(0F\%))6H-))VL/>:`;/0`=!2JEY8+VW7B<!*MY3BZLJT(?>
  1989. M2"6HD'L)4MH56"">9DC[>+B5)@2ZR.O]J:4'@R)'YGGZ$D3*Z%H7[B-5ZWT`M
  1990. MR@+XB#BK%M]$D;[<\@8W.X\Q\/8=27W^87_>N"#_\8>_IU#ID]^G^)B)G[^!>
  1991. MSOWU:<`WX7=:'CRJ6]\%X:]G=CQV`@02S#]N>9+'F=O,'>9=;]=3Z&6F>DD>%
  1992. MDW\DT+UB4!KI5B''],\:HFD2QSY6<66[$)&;@B8>0BV,^QE,*$?XPKF^(Z6CQ
  1993. M4LS]=-/@O>\WZRM8P!/$I:15@:E:RSU#/$!4#'BC>UD&D(7[+`-HTCZ2QJ(TI
  1994. MX#[T>_HO\1%,ZBYP8^O86#O]_(>")/$_*G)0IZZ&`%8G=Y)NG`&1V&$('\?LW
  1995. M`ZZK&48K:V-*68:H<BZ\2A-:R6XM?9XLV"S"`.SW$VT35EHO^V_TJ;=-\/>I)
  1996. M,P;VI-LF(:[4FYOO_`#MWW?^^*8$ZN+*,45W75%J$F4HGFG>K7*#N>EQBJGHI
  1997. MF4YO&"SL@E8$#195P;JPL5=B9R*&+C*+!_DBN&$M#PWT'J)<6<!7X:K+RK9M#
  1998. M3S>*U"N::ZUAWC>;TZ4_WPW8)Z'$-V*<Q,W+OGA12WDUD_H.]?9%=6TH(F=XF
  1999. M"U2XLYO`TI+,N[O[M*,1`1[TZ(/?)CZMK-;?V'DN)O%D=)'UKO*9+Z7W9X8*Z
  2000. M=J_*<?L_^Z<W[M]0T<_0V]C;^;4\#G([//ZBW"IFP>)5E?OC_AL&>QY1DI@"Z
  2001. M%9JNMB3I"HGGXDQ!8?/CFO'/@]R[J6+ET]=6MN;IY43Q:*3(:[162WX)(?,N/
  2002. M+K(<@&E25]H8U&EJ;0Y#X^U[EW&K8K._!?YFY(\9;!M0+7M`;_O"VS+W+<&;X
  2003. M\29]>OV(U=9:DRDKB,K92W2ME8Q+71<;*]SV>P(:C7V5D=_6OZ^GF7W2^CC<:
  2004. MHY6#N,(6<2A'\,*DUY\6KZP7OV`M"%3UMWJE0_6Z']]I*E,S,[F\3^'N5E35F
  2005. MD>NSK=D_ZUZ7"A[3>NX"2,O=C*DZH'+_]#ZMNFEGP.B7`N3\]GB)#:#QIS532
  2006. MBK(<MS"T_:G(;/T>U!3B$ZB(@MSJ$OB!`LVB9(F3SQ*>F<]#5##7BT0#9&"6<
  2007. MZ*L[\B^,-78^MLO,_M(PU*@XB'IA9!9W6EY5*&Q?V-+P!*KXJ'H\#)>@;:]^=
  2008. M:3YV9(W'T=D?H2>WE)4[5.]%:=2XMJL.G-&(#,S../,$.Q@3W;@0O+#,W^.O`
  2009. M`42!"$P%3L>P,*#T1M'\,2"C_G9/*:&FQ?=C(ZZH8%#-_W#AL>X>'YD,]5WM?
  2010. M;Z__+M-^656+:#1_"9R(?EX%8?(02)5Z!*&$.SIUMA&HJROX1G[#+*AD,J=>2
  2011. M`L5J#WMO+%4E/#*,?G,Q@\BQK2J`WTI#/8Q1Q/>'V-6CP9VXJ8I!5&_?)DB_6
  2012. M:Q`K=T5Y,M6WQ1C<=![<3'93O@:?EV_73!\/?UXGGFQ2^A#F]AANI^_$.DGO9
  2013. MP.\[C#D=)V<CF4MUWQ0K+GZ'N7=PI\[0C93;_Z&LP]A""K>0-#9=#S_(#'D98
  2014. M4^Z%VC?Y]+K\"?D*%[R$Z#,RZ.>>G\V&&C_71(C]PY(R8.6-N1>@VOQW7-[@!
  2015. M\N'^[^(@?]:3KI#U0CKN`US(O=U2&__W.9_?J1&`2<X/^OFHVTF:H*&>'22S#
  2016. M.+`XLPBOY/_K7RR&Y`;!(Z.A,^EV6](MF@BYF1"#$%0I$1F*)$I]EZ<EN=8OM
  2017. M..WI8;8)0YJ.X`_3E]LB-#!Y@_G'MWN$*DQ=QW$VI%/51]>K?_&LOHOBY!0()
  2018. MS^4<09TE[=..9P$?5&#/LRJH)N_V=6/AV97/E0F6YNK=23W/CMXNH`127^0:O
  2019. M:#+USZ^D;RI/K[I;*,\]?[RN/.&5$>-HU!EA,J(YMSHIQPF1VSK?CZ=6ZZT_9
  2020. MT[ZI5T3)G8&/#YH,AB:=S#88W!P>'!C,4?N;O'Z!(,_"/32A*2O!"!W,#!FF1
  2021. MI=#&7;E*U6]&"5M`[C&I-=$6Z\3Q&HUF=\BAF`,O6S/3KHB)F6O[,OJV93G^.
  2022. MR):AN9JF0%#SA2<OAV4)5V7E&*GY3N[IW?IX+_$1PI$FT22U>.$GQ]$2(^P2O
  2023. M@X5EIZ"VSWL?*][-$:K14=2^#@U)7Y48OH]*PRF!&I,\0N6/X^]^/3A-)N-/^
  2024. M4L/Y35:S"9#,6<&]5N.[#S"WS(3J(M`E"Z<6/+-SU,9]-S0V\9O!8GLWM1)3/
  2025. MD>OJY/#H/,1YLA09XW*1?.+',94/&7U6_7'0;8\2?>36E)S><$7]/ME;O;<8C
  2026. MCP4.`VD\.[%$P0QTTVQ/XGF]&>CP+/3F.\'[9%*\Z#F9+N6047J$N\_[G7,R\
  2027. M4@:73#93.KE?"YU?R8ON8H2;>+VG2J[_YYDK8`,V9&O;\.:+-1:7BOVF+10E#
  2028. M':N!&O8G=:.5JH"3Z_RUO>)*A"DZ\$49(UXQ[O\7['3_)%MTY9S`7$>XOQ(/&
  2029. M_(RV'EUD\56Q38\PTJIU^_7*DI;%=*Z3@H92\=?$H;VYP\$#M_GIBQ*6U'3/_
  2030. M[K$&Y0`12OOHOEIQY7QB\$RBP?#OX;I.P:QAS\&14T%'7/H4HU\,O'Z>MTY7.
  2031. MPZE<`VY5*SJ<\M@3RL*462*NS'^V4984K6$$_-!3:A4\^+5@T#J[6P.?539D7
  2032. M+&J<<2).6:F8JS_N+0\@%(J/F@I?:1S$_+C/7?OBBXK[^10Z40?[H@MP\4_JY
  2033. MQ"Y;`G48QZK6S>*(AKK]FQ6CI\8GYI]'18MC5XEWZS>I]@G']_B?38ZI5.AM4
  2034. M!A<J8/QK<?@>,.JQXI#2M4;P)5AG9"2KGS529L+"!RI)6DLU&BL,V(`:AR#-'
  2035. MSBUG-Y>D"MJ:.(IDGB`$?T#B4(Q*+BE>H\,2%W?(;=-P4X2.#]J,$\4FLX$WP
  2036. M0_*;@D1%E]OZBP1YT\7LEJ^VB^)I43]4/FY"<:AEE6XY6254O?KRGWAIW'^;(
  2037. M(Q.AFS;E$INI.7$VN$CP9[?`+I4X?-"C!`0\)&08C7F@JLX,O#\:9)DZ:C^Z(
  2038. M@(S?@SOA%$G.)#N2AREYY/^D3[6]Q+TH;NI=/M,GWKRW&2%UX5J6RT^M?I0BN
  2039. M[K@$@`,]%7._\'X[\H_TA7"9"4"D5Y(Q]*"=-D=,J=Q^A;'/F0&_7K(XU7=D1
  2040. M.=_09&H#6)<]V[WD:1TGWRU07TFT3H_;W+-?I!-B/97Z!*X%5N'*_E)EB$`6@
  2041. M1RH:5^T:1LVOX*3,))6#[25P#M0NZD=S'8S%(ST:YU&CMU774X%I7I<GGO_2M
  2042. M&HS9)JKG.($'5K?L8[U;>/Q44+XK3Z\[9[X.G2T`E,F$3+5%&!H+1[PRA,Y^L
  2043. M+ET\_?7'T;6U_;ACC8&_K-A#F]6;*"NT.^X2M)&+_Y76LG1WTZ*S1`K*;,*(Y
  2044. MY?B`W5%\O?3O$*(6*1*"$:F0`E^SWE<$!8ARE$L0-.SZ5]:5]?&\;B&-<=RUX
  2045. M`FS#]WD-YP:S0J$&7.IF_N9D!7]K\Z!R7)7ON@N@L[VF',\X%8C+:>M1VK?4C
  2046. M_$4B46GSKDY@\;GK8H@BVZ<,!63U7QYRSM#BDV2<#&6OYI/6;?7$^I93VUV:_
  2047. M.N9`>/IKT-&%^##*Q'8&F7+?9&@GG:5XTTA6Y[;FY:/@O8M'A.4Q5],5.[E#*
  2048. MUTHRM_0)FJUW/P9N.PF]ETQ5N^RND$Z`I"=71U_!3/:K^.=H/2,I)B\7[U/(P
  2049. MG?!;.._XPMQ\4?YTV(E.YH4_Q5Y1W2C?KY1Q>D@?]:EV$H&`IF:.G$#C5H8_&
  2050. M'D&OP/R$KB&>+NAU]@(7Y)$>>\/1=EH&Z6]%"7YV=V=EXN4#MT"WC`_)WAO(?
  2051. MT&A\I]94&3\7M210?13#DB?ZW/:?;3>0F[6>O;HT^^(%P2P!?)1VH:[69MQ!G
  2052. M2(T5A'@OWKVU"M`39*6UK!B.5FRX6=QJI\V9PE<J]$G!3O0D^P>&C(<X;N-_Z
  2053. MAZ>14FVMG&`)'3K-X"]8!K%9)8XYG;/\])'78JF!(B;R3=D/`5Q@=B3P.0\`0
  2054. M%#<REOWZQUV`QHI-XN;*A0[XIOT;?/@`CBP%0!8L9^K4=PG/R@_4WM!])I/C]
  2055. M5K7NW-[D+BFP5_-CJ'B7MR3$,,0)K[8GZ5D0^N>@O01:M:6%A+:<!G6'.OK<)
  2056. M1$;/MX0.TC8,8;':D[_%?,KO,1#^@"48L)-:Q$0'+7X5J^^6U'F[]9"NU6)4#
  2057. M[V#QWZ6V>HU*M1_\'R(_=-Q&IV-(YW_<$D//JUFT3V!3HFZ"?,H?<477YGX#1
  2058. M8=(M.Q2M?LF60WEGNUA[6?RR1),^X/K.?GO^#S32>A&S7B_M:;5U*7=PO6R`-
  2059. M..><SK6>>!0?CRB4/&FE"AP;4<SH?/#%2++Y\4+LNZVGV>?5P,UF8!4K&($@F
  2060. M.N,[LU0R<_4-Z(!%NB;%^L6.MLAS88.P`!GY^#!O&=$K'&<`-@?42\:!<T$6#
  2061. M<9!J/>V@N!\2<3+\'/@^,,AT60L\#[10G<Z3=H4*^TRK.8\1LT+O#$1K#M/5*
  2062. MZX4$\.L',N2`YB>)6O6SN!3,%V3'B[N;:C[6KS;UI[V--C;/X@LVK\\_>;`IG
  2063. MN/IK#I(RB#NY!\B;S3D8D5I63RX:%:D^>\U*7V0D!PQ_F4V4J85H]WJ;$RI?$
  2064. MHC25AX"H[ZX*0%5&L5.-5&$LKI7R$V'$:"0UUJ6;-E:.B\(:+6Z)@;^6K:%'T
  2065. M$\W$VN:&.#V@M-82=CS&-O<V4^89Z-NC,95J]D.,D7]V)V'UN]-!O<7?`?-,F
  2066. M?)I-\FJ*H?5K:$VJSR*C3KPFMT>?D+):B07!4:#NM-39[L<@03X(3R4O=4VDW
  2067. MPUG"5VY[(0!QZ;'8W3S<P1':2,2_F.5%*QHX<NYS&)&+I_<"9V3<Y-"F.-+O[
  2068. MA&[.V&&R1EHICDOFXOGD]N+]Y,6NKAF(]'W)53FR2W2Z@N&&/5Y@(Z/@/:3T`
  2069. MB/:&20F^.88]G7!4&!*^-2*P^:R(GXC7E@;^R&*L&CLHS@6A^I0+]MT4/4Y/J
  2070. MUKP1Y0LE^;Z24?B6ADA+?]/?YB.'+1&$EV]/SF\+%4\O^SGD/\=3[E9<\[O>W
  2071. M9?,E0MK*^3WS`70;%'JP<CO?OW2V.KY]-D`6NQPQBD0%^QYZY?&J.."C%>'A`
  2072. MWMN#M?.6RK57:J0TO/;7AOZP@HWQ\W(]YBNB[>=?K8U_@,LV8>PN&LD%=7ZLV
  2073. M,Q#JN<5'L/6&Y&;U!O7^Y*(6$UHH_O?X@G-3(=!9Z"#TC[6C!JY83Z5D4.^D@
  2074. M%I.#LT@_05=?OR\36B,3)WICRZ^:)9@?)4B4>9M5M.RUK+O\2Z.@8-UM70CWH
  2075. M:4-R<6+CT/4.!YE#)H,W.CP'R90CKK=G%J$"^P<E?!>#UH=.&<N]2S@QI2/5W
  2076. M5BJ2!:]AS6L4!0P<6<P=D!C0D<$H^ULN?C@H`X"G3O_([,@_^7:8D!5A7[/21
  2077. M?$NRS&=LAR-M]E6C/'(SIF-^\\1FA[8Z85.AAMO>UCYY.FIN;C/_.#1/)P\[N
  2078. M<$A(ZFQ;G?;A2(.<<<3-)#\)&_UB;YTWX=)"X8[G*V:P9DYZCF:2\MRB43_"E
  2079. MGG0I,C$U*`J".=28E/GLI7:?10?N8GS2JQ]18_&^5*]K70=:>E[@[?=#FB/6:
  2080. M0A[DPSKK52KOWVN]2:XH$4"E>)]5`.757-*J_)#Q0?NR[H=+SNC6IJSFIX%OI
  2081. MI1?..C1<`A%#G,:;Q*2>X9HL^,HX96!5/%>\Q1B2<?9&VG"1C-7\00*XC5.#Q
  2082. MNX+_$^E`IK44"XRN-K7%3NAA@<R)2R7?A^Z>LCI^`+\BI/NWJ[[)_'/+6S?0I
  2083. MK],3]95ECKW0X;:O^KZ8MMOWAZ`QBHQ[$8H%@M^3'93VQ`T,N'?Z+@O+*6]#9
  2084. M@5E6IZ!_XD]AXH_?H!MW*W4I=@+;4G%2:8-T&%&C:(I/?'U9;=LQ-`8O-JXQ)
  2085. M(,7X:<D@[)8F$*0(:OU?").N9KF\W.WUPS^I)#'O`;&08+5@'A]H,=!L<M%LR
  2086. M/J]),(];$^A4^5D(4R]X7E6<K;+-,?9%['#DZ!PS&<BS_#PRGR]GTI8!VZ-25
  2087. M*:W"ES.O0\E6B!E6H+[O!9I`2_:/MSDBH,MFV(\E<'EF#*R,.;+*.ZRDR365"
  2088. MVRNK)[=G!#L>-5O<MN?>:XC=N-%'L;%%[-W'2\I!`ISCNF>W&OIA>6VPDJ/G)
  2089. M<A'WY'T"S`LY\(?`RVOVZE;MF'.OH(!C#E2PH!_B.EG%Q"%4RD]5"H".5YBDS
  2090. MFS0JB)FL<.:V37)-(D'])I(R0Q_*3'`ABH#T$&9Y;QMP=$_&F(0G>WXAEGUL7
  2091. M)U;"=N<>)YI>CI1]`F5L53SI?WL>&ILI6+4[\92J\'[W+W1^L!VI2(?:=B%40
  2092. MURLL-VA5<T\MK0?28)?:.,N]3<??5>B^38\1"@4@&:9DD,LOX2I49M%+@R3-!
  2093. M=F4EA,"29.4!B#C1J;,7?'7[T>&G]ZZ(P0<.P0;'5S5%<+[&:I%]RJZ?^UXU:
  2094. M,Z,+3XF/V/9P1^9/#7M_X_OYY`TU#NSDV&U+8)E::-7,TPF&-L["8`FA"1J3,
  2095. M`6<\;7_>G;:IM5/090N2+G*<?GT-16:0;RYS93XO"Z*_='-CT;%L<?3EW^AK5
  2096. MZ^?9^NA0G+!--IDL@P[$S4W#T3ZO>ZZBW=GR:%>V'?H(A\\V1-O@\@P_%F5X\
  2097. M0;2RK&T10V^#T7HXX);U:.ZW5SV&G[L9JS'050.557`M6HH;B?O5"$,+X]IMO
  2098. M5*RMA0D:*W?H[T[#`T\'%#N+:G@=^H+F?QVNS!W7"_7KFW\%N(BB/N[3WA:DA
  2099. M@_4#]!LNR=V?K3Q\2E3NQ\NMV@HU1L(YC9?[2$EF:78#-+ZI:"K<CC0!!I$"V
  2100. M]#,NGQ6-V83RS9K-_G)F+PU%]G<958R-*+ZOF-I.7+BZW;V-59Y`!FYS*-T[6
  2101. M#H^C[VQ[']G6HEV)NX&]9!ZZZ!P2""<=LL=N,W&/1FBP&$@&@%M4'.*I6N'$8
  2102. ME=)LDP)WOV.,&JQFGU8UX2R5%A_/&P8@<1%*EW5-,5*P_2X/D2U7^G;Y[J($&
  2103. M]AC0`2>\05#`E=Z^;XIQS7<>P&'H!T&>PO#?Q^L%BAX`!1:5C<\_BFA;E/TGX
  2104. M);/;]SN1(1RWGR%_PE6DO</4O,JY;\S]:>KA7J!!Q,84V$(O?:M4$"&K$O"=B
  2105. MVZ<"@`MBXTBKI/&\<2SO(1DH(AT3.?-6A&C,.T`ISQ&QN`Z[&I7E#O=;"F-2`
  2106. M81G_^<7(\0HG`!@W=Q)X"3M=FHCE$4($#B7&`PBXEW]9*CA&#O@C4G%2H+LZ5
  2107. M\("D*/A-ZA92!8+VQG7=NH)W;++7K;(@Q2LNH&I-(Z!$QZV;]$M;VEM7Q?A6<
  2108. MC09'WC8Z''M;!ZH9%$EI`CZ)PA]T=&<L)7"(XBT;6K!^53F-Y%O99\QIBPS7Z
  2109. MFZP_D#A[!BK3I3U>="SQ3.F8?H>P\`N3K2=R6?*:.^JA]X3++WXR?FB,ON-Z(
  2110. M>`G_K%3`V>/D2E:$DQ`SEVF+LV%*]IL)`9C5L0J1[WP+=9B,"D:'CU!28:DJ.
  2111. M<I[N[\DW:54S4SUY?]%6\WC^R#LW:LVSVWLA=^Q:M`"[Y)(?)O)EWM)IS=9G\
  2112. M*I_RR:3#J3OK<%:'UV\O:S<8`]*P3V4[/N=VU;N'M>_Y_-(/R/^W,2B7]!Z!&
  2113. M1>W=U3\Q`W5JV#F#`\1WT=;S6\<"&MP'U/P8G=>1?*T)/2H8,T55C9Q!&C!;P
  2114. MBF+;23J96(,*VL%]=69^A7ER@D%:7%G6!$%>[M+=_S&0;<@C@6<+C+-*V3=%*
  2115. M"=<_E:QPUJB/CR%W18='0*1IM%]UTYLFR(LH7=A+J/7Z](..YW(/TLD0KAZ81
  2116. M:TU]R[GH/.7>YSLQPHUR9<.CX6-+7PP7'(A(BO30UA):R3FQ>B_1B78AO9C#A
  2117. ME@8I.L='KAN4M)WK:I$U:XI6$1_Z&(8[MJGD_\>*E^KW!VFIB39QP2;S=_4L!
  2118. M=D)PM_?NO,-R+/G^J<`M>`A`G[>#TD1`A`EN"'7^?7(G.]N&S,ZI1B_71*!Z!
  2119. M.,)H,ML(/<VVN3J,_LNV18^R[:].#["/H'O9_Z$['Y/1Q(</-61V;&N>(J%U3
  2120. MXXM<HG?7$N(A$::WAS#`]3AX,KD1Y*@4ARI'%Y?>(&&DK9]0=61/A+]YXO_,9
  2121. M<'<2^OFKGPO#CRR)8G;Z]11;B4F`Z;7>3XIYR\"44$%K;XZ`0/L:W.FK2T1*^
  2122. M\A*\[DR6`)T>D.T$,25P!!:]4GE6]$2U'$%KRVKK('X/6M[:(E$2:V,4)\K;N
  2123. MM+"+Q@AU"QH19]C&J--]3GX9CX2]\YUJLNHKJ'M][.?JE2%62=4Y54&@N71J8
  2124. M9AH65',+E^7@0*W.U*9]\O4/-SF9?"+E]C$Q;V`3NWSX;O'GBVSP\3I]6.Z3Y
  2125. M?K-(5O3PU/=P]EBY(&B__EEC/6*Q$A`-#F@O:0RF_^--WO!6.ST^1,NY.=P"#
  2126. M@6J4;0+O\Q,K%T,\Z`Z&\`8P)][M3VH0V%V^/S-V)_>@!Z6O-ZZRT"Y=2(4N`
  2127. M(9%HQLK=&#H[-'3M3*,ZV8/=)E3]>*?#8U>'I6;I2CU./GEW(G>EL^BDP_CP[
  2128. ML*K8VNM8V$":Q)U7L%L/1%9P[EDQUQ8.]<`'Z-$9LPO&*G/XD"=+R.AR\S=(,
  2129. MMR-G*7"TQ-J5)V4SW^@8"$[*;>=%9PTI%OOZ7;B:TJ[20/OUVJO8K=J+M;FQB
  2130. M?KX3X*-4\WP(?>DTM//ADS!;'%]C4`E0$`@AR`CL)$QX18CO"`N`G/.@U,XU%
  2131. M/I2*1MT.7_[WLLW];XN:`%T]=^YE@]I+X`?JYMJ?M?&UX'XF<?4?U<R7;%#TV
  2132. MC>HLF/;W]FLAKNV74RCHJ#2H!.=V-J4ZZ(T#!#!TS#/./;+CVC9_OPS.7AF(E
  2133. MXC<:RTJ"S@`]*G!JJT[C98S(2*?!M=1=;P'-.6M/M$,@!HG:]KY;Z2>+XW:E0
  2134. M?8&@`M8/EMY2\5N?;'3TPYRR&/4)'%BB1<UITN_JN*-Y6]W4]X!F1:BLGGS'S
  2135. M%J`,=9%J=R6=^2)6>!;5%$@4VA\D:L[A0T)JY^"/^`7`#N01D0;<@+R<H0F_=
  2136. M!.\,1G<R*&[_]NUBE%^^S'5P:3WZU,U[2TF?4,<80L+`I^WN%S[$?:JN@YP;[
  2137. M_!",/R?;`!]G\*W%T:;60FCQFIQA)*H!LDE<2N//]12@9[S(GX0VK98_J3(H!
  2138. MPT>(;35)Z;@(_8:O3K"TL6`$P2+08*#K5\,9*R<$1G6O*I+Z9O[A'JJU]P.Z*
  2139. M9.1BXPVZ#`84JJ!VR",%8P3]!V&S?KW_QG'VY?G'.Z^U`\%6;MME-`;Z4,/1B
  2140. M$LY:O*'H+A.MZSUI5SJA"DR`4T,6]F;9P#N@KREKYWS!=8)U#!`]+UVE0J#!H
  2141. M;8@^WMGP']NS(8`IN]5+Y&SO4(E;==":`OE;52S5J."/!SA363L^#A^7$$"#`
  2142. M)R+0*N0D46+V9(,734Q0X[_;=T<YB:=M(WGXD#0;`T<T;TR*Y8R92KMI>)C#-
  2143. M_,4X\VG'BWS4`]-'W&YKP+RV:1-K1XDO93^.5&-<FYW$R:CY>OPL`.Y_Y!X&0
  2144. M:_OY<3$F:H(*4A!@>]=R=W,YP^Z-'ACG&,>G76H0(!R@-UB;%!3TO7G'1\:_K
  2145. MPQU0(WYIL-NR7'#$J9]<.-?ZF/_U,;&TP=XQ-5W`JAV]#[<7K;PYW]9@.P.EJ
  2146. MI^-GC!`]F<S'%-`(\0M0<@3M=FHW+`--PKW'AH)4MK`^]5L\V*=7T6KE']5T(
  2147. M,9*P=^[<S/+;`OK0CRA0Y2;<<@6C-EGT@U425Q*5//*T>S^H44BL1^H%KGI+8
  2148. M04TV(R!]<K_MAPY_H)`?8FF_P<D=,\]",80KC^7J.R_\$<9^-302<'#!T/O.E
  2149. MRKT=TOYQ%6$06V\+4!GM5Q",SYP3W(P#I_A#>)P:KD_-9'.W&XL07S69:F4J)
  2150. M]?,CZ_1KB-!_6!?*K;7N-CR@>*^VA,Y+A<61K";CUO4FE7H_O;GS36[(E)B^W
  2151. M,\@=UV8U&_C#"FUKT\BTI:K\SY]E4<$$+[X7+`OPOV^Z\+UECD-5PT/4?0K;(
  2152. M`OEGO34E_M8$+%)Q9)":GF\W$W0YXF1F_`YX7.]L@X.^:>??AL.>KJ_74]^WA
  2153. M^=R[VW#DSI/0-#X_%\C]"W3R3P%#_'@1W]SO87<`01"MGO^BZXST'^`FUQ+M(
  2154. M--7'9(S$GOZ5E4`[O<;]-XIC'?@]!US+S=2ZM8T"7K$Y+B=F\!4CN:3<G>V77
  2155. MS_A7V6@Q9RL@96LK^-3ICCY99OB0$<Q;5O/)6?//DG=5SE.]'DEYGG&2M!9F4
  2156. M6TT_>=B=,,)SW==G&2#Y]R@#IO37Y(*H%462;I`S[\D;FWUAX628-7088`D!@
  2157. ML0H]AQ.Y/N!000`_ND6WNZQ,%V`!MYS22'0#ZT4N#`8$<'W_",&+P8`\7#('R
  2158. M':K+:0=*=_8_]N7_5E$Y)G@HNWJP``-`.;*VN@OBE]QT(2HBOLKU3'O=RT)^8
  2159. MWX1!7.X_XY/`J?QV8*K-0J#OC#61F=XM8($.J3$W+;W7PP7D.(6H)F5?CE1R#
  2160. M$Y9UM;+LJ2:534U3I!7'+C*??P3YG6UY-?+:G(]WPB0T28&^2<GA+B#QS]6/M
  2161. M6EB6K9KH3^L`J1Q__B[A'PC,.0]R]LN)F>^JP7*.N2SQ<\8/<C*/Z-;4J=8L)
  2162. M+M2E%HA[U>0.I1'\BRZQ)4O5<WLJV:\OWH5<`&1"8PE;/]G-,X'`;FL[>Q1UC
  2163. MP2K+X\L-P8LQPPI>@#2H=`'+!(EKW4`[F(N;@Q4Z^#EBGT$NHGV]_-0-\20.>
  2164. MV%HU(=6&:JV/]K4V1%NJ)MH:$'Z#M')4<K!L2*2M#1_TP+NQ]_KG]X(SC(`:&
  2165. M_D#?0")#9.HJ&"-;=9,?](C-9UIBX(VZ!F\;;AT"79<V?=)^9X8"E%4]K&KJ,
  2166. M+*L&E3-+0?A%PR,^W8.%?5%5H+W+A7N^Y\P#&'#]+SN('OIX/<3:+JE^+(996
  2167. M?W36&V.1C]>A6!L%8(SKL@6NER9TD:6*`1<P`'BU'N)[)X3RUUI$0DZG+]VVK
  2168. MDK@P3IQ>)-N4PK';8$\'K:S=#TF$J_R=WSO0'54^7D7CQB"@<2-P2VJUTB!D:
  2169. M[9\Y-8=K/+C_KN:#_`L,Z_$![9/ZQ'4DKPRGK0&TL#Z+#&]B%]?X,%RR1J,VZ
  2170. M:.WY[@*4XL#&B6B/I(>Q-E?XM,U[K+1V@1R^ZW=-GK5(\B\<8A^`_;XG,_&[S
  2171. MU;[O%U)R)E[FE+W&1X"RG"#`*$NIX,M/UFP*_$O.S.PDV.+5\Z8]R5^>$L@49
  2172. M*?]RI?`[ZS=*UM`P**<X&G0_E?P+HR"4WJYG*F1SJCHNA,P?>N=F'1H'L[Z>]
  2173. M"-&<,QW^&@5\8AS`OLB#QW]AQ'<'`=\9N/+],CU\4F6>MD@;1F:E>+2(D=`K=
  2174. M>-W;M/RIM>F5YPJ'D,/!K\'8FC<TVTI2YSYP$PT2]6OC=4.U^%DKHP5L\LYQ=
  2175. M'!TOIBUON+F$>HDY\/')&AW7L/,JJG&'GX37.>*%WKR"4D"VM4ZLO*PS9-:EQ
  2176. MX;;(Q#CPPZ)&G3"R^$HC[LGV8G?*SCBE)95POQ!X`XHS;#3>F+7Y3?]OA5XB+
  2177. MQWW92R^-V^OXG^A/I2*F56.0[MO0N48#C@,!QN^;^4^!K?TIT$L)+8/=W)!$P
  2178. M[YWCZV4`#^B$>5X#[2/A#P^7G[N'6>S:_W#\^DG=YG<6IW-V?!+<=RZ!=LSO0
  2179. M.)"G7IYUVN-7%+^872JT.$3S^51N63-+$;'6#1YKL,-L1T9U7%*UE7`^8/3U*
  2180. M,E=$_[9S/E\+H.TV@*O2*.A(1BKR,]\"6-W]IS3^[F9RS+E9N]#Q;)4[2-A5)
  2181. M2L;[75>*:%ZOOB1H[W:#,O-^-VY(5\M\_K`@6DL1)UBBH.L.TUSM(P[?\H'=C
  2182. M#2Z^=F*8ZZ<5)_Y(5&HWD71,@Z@H:!7MY5*S41>$=TX3>OIX&PVNZ6M\@=1=-
  2183. MA<X6`CHW5G*>51#Y<S_2B9(%G7J=+2IZ/9(*?DG7'+_,GI(NV:>K>]*P>P?:3
  2184. M^*SM=%4^TE;#A7=ZTQDPW8U#9'A$_9Y<])MG$0O%P3W8NWPPK!#HV,DV>'=9;
  2185. M25/088_.)ESG#[2=_N;ROY)Z50N9TH2VSYV82:??6)"P),P86`G!["7_S!N`R
  2186. MMW@/H3_3.\NU)<E/'@C(/JXX:P.:4I!AHO=YQ[H?)^F@\\Y=^BY9)9'*(AX"U
  2187. M5'<TQ(^>FO+NM8+S9VG?`Q(E\CZD]%MUQ`E[\VCPW/979?]E-AC-1"1HNNH>8
  2188. M_H[-<OX*VQ#L\5P1>\4SJCRI6_5+1-S(**.L;+XJ4!=W#'^:ZO#-36[`\*&QV
  2189. M^BA&9%M^VT9L@,T0']`'@N=6=UP+`RIO_\)L&5+MI@."[4I.'=_G*NFUIIFU^
  2190. MJ'OW_)LJW5+/X\9HDIA'<4]9C,J&_]8,KORGXF[(XNCL58(JC@.([;)@&7MV*
  2191. M;49)YS>9.SP-@VW6"UK"CDIPPL<TVS!87G;&YMAJRQ8N=UTY3H`,K5S->&*QE
  2192. M:GFO<]BNPV4'A7O-?#R=6B!4M_F!9L(B.0'`G2U814J7'C!/':8^NN2T<]OA!
  2193. M-H$FW?6(M,&*V,JM>@OH;_"S?U!Z&PY=06*4UB#O/O+%LTMKD7EW/B#7#T53(
  2194. M;'XCP7?6)6C[FA.-EV'L6XQ+!HSQGEV&YR$&G;'?=O<P`\28-6.,%&LP^A@UX
  2195. M+HZU6X4*S9J'&B7W$4?RFP\R5!GVC-E0-<8M1LGV%X/ABIB</%@T<)C/<G#S\
  2196. M7"([!S@S/8^['?%R"J1SMO3]W7Q/^.WX>SLL\!V/,1<<O3P..OJ29KT9[EX;"
  2197. M#*N9909JR]?9S\_+=\>YV]?!/:Q5U=OK_7'5+=]`[^-AKBP')C_V%\C)V7VK\
  2198. M>XGB/.3DYCQW&S[O[G:\K'-Z;A;C['URHPKBQ6`><W$+&-D0TP_(<2L!M7$*Y
  2199. M:4WMQPZ?\V]W/`KJ\%QS/Y6X9NWA..FQ4.#LFO3.XYAU+,0K:_;+:9)GN?>Q!
  2200. M%=7=?Q9(VMO5(B5RR>N_9=]K\NU&C!FRE>-Q-=6WAFN_A/6CV2F,$55]9#WP8
  2201. M[:2X$\4L42.#<?(#Z-I0:3N;.7?#XXA[\*XJ5B?8#VF[!SCD-^?RIBR!33KJE
  2202. M>]FO=P'A[)'Z^X1G::%M%CUPQ34(57N6[$K?7O-V_'3\A.\Y*17FB9%[O\,D4
  2203. MCGOM'G4H0<W;;!NI&IN;+($VGMS-F#]YTB^Y7]7?R"";-?%/1IN$]3!-F8.E<
  2204. MAYB'#S*1(Q8SS`7&"*:'DWC3V&"-->^:R:0F-!J%,EP<W]-[IT88X8PNM;]5!
  2205. MS,VB<PS']Y.)B0O,%.9O`!W$1%J]-.ZV_.;!)"(]F$/KXV;,P[]'/OXYJ*'<=
  2206. MQB3&H6O:-P"3Y9;Q"E-F:<&A\XS:&<]#LP=ER-XLYN%71.97%K)T(S%V@9G/B
  2207. MJDJX;O*3E1G$'"4W,^>8!O]*ET1D\(@3>9PU8O9QYSWS!AG-M&!F+R2P:*95,
  2208. MUS-9S"`RCCEZ79[YA6DPC6-M>I(/C;(@WD/FV#OJ'(;%]%HL/SX4'78A(EPU>
  2209. M\2+ZPJ^4P:WX^#Z&FIUO3-R].0YH\30H&&38)?-$CKAP99:]0+^I'\&YS$EHA
  2210. M'>(X1,5>T#9<:%1FGSG<2,SG,)2)%BM<;BKS_,5KF%ATZ+FH)Y!>=!';,BXT@
  2211. M+,).134N(AX3A<Y)"(W"["S)J(925-V\23#BI=#HT(E=G>M6"ZK:G$+NQ>AX"
  2212. M=!PF#'TQAFYW4#7B6D08!FVKLY77MY'08N?JRG($KX/$H*2N%T.@'`9/ZEJ>]
  2213. MP*ZP@+@`("U`M1/AU)ITO!WI_Z%:Y]U6RU]*ZX:"H=MX$+AI;+NZ<,L@)Q,&M
  2214. M5EX"+^-O\?GU(P3NR>T7^1@(A[DO60*+_ZA%"V)\9RC6S[7@3#^4Q89MO`"X*
  2215. MI]/.08?`WE]L9D[D$B4*6K$FN,JX\<0%D/+=M[N[A6F['T!OP+N(]JFSN^W<"
  2216. MK9'>MXOT3M-%AC%9?->XK_/"LB,CU=.TZ.#R.Y-V$Q<%IUEZU\[/1_"V*A#WU
  2217. M`J>/P7*KK<T%!'F?)$OC_EBRD3J8&:#.=8W`CK.]7K_687"S!P=G>'1R62JT$
  2218. M,%H![2:01NMAI#)P9,H&G29(`UFZH03HE)`2&#Y5Y2RWZ1;(>AIV4L5?2SK9L
  2219. MQ[,%]X:?U@<VR(7G_8!VMKK>ZUIBM9^9:?_S7`ML53B$$&+)0<"-B<MZ<&SNZ
  2220. ML!+9C'M81\U91*[*BNTV^'-F8VN[27@TF&>,]/(2*4A*^S)6EIF&^'"^MQ%Z2
  2221. MW_L'O.>?8$,$M##]6B"M9.J%WBS&#.Y=+B.>S&;D,:[_^\#[C$>,!PPVKI3Q>
  2222. MD%%-OL'(9KQE'&_V5.$^BF62'N&V3N>.G!SI,!F&@\=3ITG@_>"]T'/Z4)5OB
  2223. MZU@J"WF``H-0SLX9460HX/9YTB;(@<1":%`CJ+V;;=X4[/0HHBMNGH19.+]Q#
  2224. MGM=CTL9?S5%VR?T3K#>-W_;.I1("^`@PWX;J[4U@YWTY2O'J])A.ZO&>I@S&\
  2225. MB%)48(@3B+.I/L%IF]+@P"1;"C[VL5"CD^DP]Y+<FH&BE"3CW;>L,U(;/^P9(
  2226. M'$93?_D0PSYRA+',"&/0;>P9I0S1636&<(A4]&Z(D=OS+GBB[#]]6\QXF<X\A
  2227. M0.&ZRG^OX5.BK/8T\N19+(XQOZ!'X!`GG;UG.Q"4;R;:Q&@M,VB"@P8:3H#-T
  2228. M$LL^-8#>0<?8=';:^G^@LY`S1$!O\RXCR$>`OCOE7;(VR,&AP*24DTT0H)"(+
  2229. M4`;C?"EWX0"6UFE(FV;3-W.T5*;Y?/#)?Z(=+9DS7K.X>[HTP"^U,W<B=RN7D
  2230. MV?GN!?_,IEM&9PWO!X9-7+Y&MACPN$C++TF)5(W:0*N>2UH=>'!`%1-MS8.J-
  2231. MHF-4PV*NQ.YN%-^)2K(C6T#_4R*O/CT!G(4#B7R>07<&0QAT'BS>6'*"S_?/7
  2232. M&TC_+IG_A2OG\T,K5_8M_VNCZ9[U"=![D`8X%7R"A]T&]8(LP4;4RTY&2YEK[
  2233. M5$&)6-Y/2A,-C#5U4,BIU06?,)`<&K1@&A26U`?<8<^!7(:SV-^V46LGO`WRQ
  2234. MY*:VLK5FP$^%4H>;JS=$M[X+SPUS3';Q!?G$^B:9<5;%[7=E/:@&B0')9YS\`
  2235. MR-,P)W`^'3PYM)2^"3WSNV`6.8A_.I8K$BH^!=XCBZ79,[087(;+6S7N-W&S+
  2236. M%MNK6E,<1^ZH+^@5Z-.M%7#OT7UIMK,W__/).9A&[#$6J!UNXQU([JE-H9*14
  2237. M_@<[-R^FS3X9ZG0?D"KX0HT-%J;6/SY)!8VCT52:ZYR^.">(D\RA7S7D5/3H]
  2238. M+X@NJX!:$_+&S:I80/YW53_+"UW6&WQNZQD8*O>OY]U_\(7/?R<`B9.$CB<)V
  2239. M8LF2O.Z"G\B.HW9$XBP/80"V1<`G>*G"GE`9SZ/H93$8$PR&:+1*NPM`-ZA[-
  2240. MSYA8J2M!Q"@OK%Z?%*#:?UW<ZR?614RT#.RB-L\M:L&$(5*4B<2E1>4O'9\%S
  2241. M*2/8X$_T[Q2;([9V"=C7B1(A*@-J#;8<JX^W\].C(P<$_^NU*+/+4_&"NOOEY
  2242. M#8<LFX"JTL&J3:L'()0FP[7M)24?"*M7D"<X.=YT%?3\V\Q(*I\?J&#?HE38Y
  2243. M\(047@X%2$B2!;I]6I\$*E4D.<&/>)*&$Y5)2M-9NJD2J8C)]8SQ.U7KXU#TB
  2244. M^B]AU]8\.+">U3&RGK4.;K[=FXVSY+M./)6?/D^)VZ4J4.?<S$`G0(E4PZ:+E
  2245. MBY<$0EWC*?+A\UVJ(5X6%(FNT=LK`\1KU*XSH*17G=2NQ-[[H%I*E]1MEW5)2
  2246. M_QGTN`\5V]L:_$Z5.963RS(T&9UO6T_DLTTVB]@GUCD@-?`=(`I<UV,T3?UWA
  2247. M>!=T9N%*+*X>1JR3OTAVWK;OT!_R$`6O9V6Y>SG\8]MMP095XW?:LKZ6&=EP\
  2248. MK,''P;]#17F7#ZS43T'ZL5+EU-/;>STEP7G]GLX,4%<]T$J3_<Z.,:54@IO!<
  2249. M\V@#ET+2.<'_P'$2.<Z"[P.ZU:Y1/ZHZ4_6M-,LH)Q^Y2=Z)/@R:-R:89)6>-
  2250. M`]>1!/&.S\"?P./4Z+FVHM$QBAI]M!%L!?H-9L^;/R:96H'C,B1)=_".1\`AE
  2251. MX`RJ@4%;`QV,&CEP^TZ\Q:HFY&%F\#P)&]M5TDZ:Z<*6)X,13;/4MJC^"(M/0
  2252. MPP0&U@D2BHR#9%+:6@<%P`>"CB*T58-F37]=[>E!X;@'-W$J<&;><Z\.^FG9;
  2253. MZSU\`ZYAB7?>I*]O"\5%GL\9MV^('^T&T1F;;`)C_5_L'F7P&6V,(M'7_Y*9[
  2254. MUSTP"^]C,<^N0%(A&?O_S.6*0I%032CU<TI^+.0.I"CRV++VS:A3O[`041W!%
  2255. MXD\;]!N#<E!=Z*'!OYN4Z9AI[\SK\RX24.BLVOR>GAOS%R')L/N6?^</`DI%0
  2256. MAO/!=,K\)8C'9`IDJ'2^`B$UWV1`F8^^=_P9Y,6'`NMYW$C+R+%Y"HD^[P8Y\
  2257. M!3D__V[);SXPT1X2!;E&\?NF#?WC-DQ,IA1!L=!\_!)%$$J)%"X`7X]9=!^^^
  2258. M\BN"M,=FF39(F]1BU'C;;>7-@47JW79-G`>;2DG-$!UJZ6L/>]7T:=!T`2Y3C
  2259. MVE;O.4E4I)QZP+U&=)@:[CH[.BH3*O^':M"V;'DT_"UI=5G\^`OHF_WC)A=.S
  2260. M0:8-?V^N+R.6):>IRPA,1&_U\NJN6`ATW[(WFGJK=UEV]/8'M#I4IVL9OY8(F
  2261. MR8'<6]X-#EI^?Q!J"1!.+4>/&[GQC&KO03O>$EG/#U\ABM"!U+PQ6.Y8[DP1%
  2262. M?VRG%MJI:.3F$=-1,-EPXFC3ATS!@"C6&B2PN*\[>5UU+A&`A$$?T;9HL_1(]
  2263. M:`6-04-TEE)+#SGYC1S4S>MH5QEGY4"[**P;>1-OIA`L>%,#X4Y55+56=%KXO
  2264. M[/F\?I8*\*U$2"#YQCX36?B1?5/*ABD55)>VX0)):HA3_#8PMO]LBWW?!_D'@
  2265. MKR@-BLUGW//`Y\+=P'N*/VD1W$F*-/$;5[@@<CS-B':1%A[?OSU(JZ+%T$3!W
  2266. MJPYD#=I=&L(<G):A1GM\@B"43WULF,\Z94G+JN5QV1+<>0*</1L8Y\XV%[,"^
  2267. M==QYMGVD""'93W497,\V^USU:D5\XL:KX5+P*<Z?^-P89:A/X+/OJ/=($NDX_
  2268. MZ49Y_C2'=)S\FW1Z^I`*XM$&9\/;V;!;.1U9O9&`[,[,B-M`/OS!HP$_"D:G]
  2269. M9,=4O4&?1%N<Q:E)7T&X&`:MAA;`O#;'HWW\1@]LI/C]')VSHZQ#GZ>X)__ZI
  2270. M]W,_J-/QWNGVF_QD3OKX"%0<.B`@*S"]Z!LMC.Y9S"&!$*F./VGGE5+:\!+W<
  2271. M#3/I*12X7@?UU=[.1=MUIU0&>/Y4^GI!?_:1R;>IT085PB#6XV`^V8!$\?:^1
  2272. M#_J'1*=?-8=N>%3JJR>*3U4]$:@DQSSGE*QX7)KIMF``"T;WYPPR!L`LF,HC?
  2273. M/;%9B].6Q0*I?SK;!&:QHV^?]ID_?XT%40.&E/67C_E=E1<!=T!A8F-]2JW\W
  2274. M$:W<*V`H4#"3WB,/?U+WS$@VI%S@389ZQ,I`@00H%T$,,<AUA\TY4M'R'H+(V
  2275. M_S;,."ZRXP_Z4_U"H^(B0L.3T'S^Q7ATO(&JJE="1%QBW);C1?22=I)AM([=#
  2276. MM`<LB,#CD-LXC<A&2CIB7H+$"P-YQ\5$QH5>4<6JQI;K[&2%D:!A!W;.A<8G!
  2277. M1T2;WJ'&Z:/.)<;$A5O>JGX!<6V40G)^5(7SQ6WM'(XXNKCRZ4?=CKE[>'IY:
  2278. M^Y[PUW^6ZQ06`8SL2JK6)#HY>?G1UJ^WM;"5-K<\VO7]U%LPJYN(ISWY0BV;#
  2279. MB?/1$8D]-7J=U<\_=588SYVCA,:5:&<47=1I]M,6N7%/7%L@?X$<'DK]/9T(1
  2280. M\OSDO&`_H'Y_86=^BA?G.8LNF?KP]]D%#\(%^8OZ\;P38Q>OA$::9*YOQ=@LK
  2281. M%$6%%I'/M<EBCG99.&5-'[Q[OK%7YRKFHN#KCFWTO;(AM43GJ)B\&Z4&H(:P5
  2282. MF.A/TE)"5(/Y]86#<T-E%RY&<J]$7+DX="@I,-3@KMQ4>:;8F;/?RBO_BWW\1
  2283. M[J5@%:A8Y/;*[M>P7.+M@9>+/>\71F*3EAQCCVP.5(J6)Q!]!"1&]7?C;H$0U
  2284. MXR^6EY[D3H7=,%"._4@`ZM8"/!?L29LAF"M7,-$GFH<[P,6QWL1,6,`=^/)21
  2285. MC;*_I-[\T0J)&D&#X]TB\*G)*W`P8S*=#PV?+#X1?3F:*1Z3N.;J-B;X\\YVE
  2286. M['@XGEEY63N.!3<RNJ"CZG3Q_(,DB\'S[PN@76Q\.#>\[;"JHS<"<^*7\:_V[
  2287. MAZ\S8ZL:SNW\/*\JK]@5/_5S_MNS]M+%$,OSH1%0*ZNN@UU&@1S?T:\_KN@B&
  2288. MX\)[ZJ!0XYZ51,FH*&@$_.$0NQ%F,N0H$:7OJ(9TVBVF'PF[G+?G6XZ>Q!/G>
  2289. MN.$WUB)Z_]?!M<<SO;_QSRZV<IFE?DC$A%%L%$()<SETS/9C6,ERF^O,VG*I-
  2290. MHQHS5&N_.NJD^@E=2*DSY2CA(->CL.G(ESI:=)G<FI]['3OK]\_SO)[W\WJ]5
  2291. M_WU>S_MY7F^Z>]<B-TH@C.].K6KU%"L1*[\?BB&\*TF*K572;=%+PS4\!GZ$W
  2292. M*$!\\=9H]#YQR5;BUH6;\PR9IMK8_4<6/:W5[06YI*;V^-C`3F?M2IJ8.G__L
  2293. MRK[EB9C:Z57;I5V1&04!W!2FV,[[BE:!D#><52GOW[#(M!0)Y;TFVG^B$O^%S
  2294. M-DF"#[J\N,C,*:AZ%.(60(U0U7_P\_.S=[-_BSEN?P>55]SF/Q=>^F:!G(4Y9
  2295. M/HB:>Q4AQSUXCV-<<8[6Q$-RFO)GF[["Y_G[B^MFG'%W9BA!C3X#X5[!086^P
  2296. M_<FBAJX@/\JRP3L_+UJ6;V9*<#`E6!EX+T"+S(.U=DTE'ILJOP!2,N/7[:[M`
  2297. M71=L<IDW'';]-0)S872VO?P$?S<OK$U<NSMC_H;G.SRA$BSL`2437G$"?&PG2
  2298. M$Y^:\+7&[^T&UT+:\A'^Z!68=HOMK)V.9D;8.D_0O^3=9I-W,>6H=\/']%G^P
  2299. M:!$M$%UFHJ<]$)^+\7CCO$X/5M;JN.(/T+(`O"9W69GI@S7;-K^PN/0+9WX+[
  2300. MQOF;]S>,FW&T2%$6:S@D$*$4,YL3;<E%M^K*F?E@LH-=01(?.!RB//;&VKA_R
  2301. MD!T8)/1UL&KBPXJ3)XSNN;Z*'D$`0WTV6&,G%3]03L18LGN%^<KST5.^CQ:L+
  2302. M)SJ7&<T`V(`0FH]&#&R5$NKUK&&E>B7SI5<H?84:K<H$OK@?<<&X`[@HG*[$6
  2303. MP,#.N$W3<=EI_8BH26='@O:']BX$I[]%U7-U#WBWH*&2\7\I!IXD75"6#V%%>
  2304. M3[H5H4TWX^2=\DTPDG)+IZ.3\VX75WV1.-3O6>6H9FC05D>"@\.O9E&5=PPV1
  2305. M21Q..-UF'3VF^CA7N](PX5Y.6KE]>INH6ZF;GOK1WHFXRY[HZD1'=SQT^!9!0
  2306. M-3K-D9?^%!!('J'1TWFRS%XW,^N.@,="&4\9`5EM'HY<;`81<6Z1$8=*\9&)'
  2307. MD;.&:*,IBE[0^TD[S4"3JZT\-\EK1S/W*993(5E'ZQFJ>@O2[!+4Z]C'FQ!;C
  2308. MI?]4T%VQP02I>#Q$;0%OH19.>-Q&[6M=-']IP>J@S=#?^2`)XB6":_KUCWRG!
  2309. MV$112XG$-K`*X@P('P")@#ML)D-`+(C,C"M"D9-?4(*+3I+-OZ09$:1S'.@BJ
  2310. ME@Q'<;$2%'[KHZ@>;BS%*KW),<J<L`<)72U\!=UB<+2N2ELE<$U:5K'(<0HR'
  2311. MJP5KT<^L;^6S_GKJ]?3]DCLS*4LS)S>3LJN$R+#D7[CS\=A+%N?&01:&)Y</,
  2312. MYJBG#QJ:AW2+!/F4.;[VZT#!'0T$%&/(*8JY/6Z27D4@>?T8YFN0N]BH2&C>Y
  2313. M6\V"NEG"X91Q5MOYA?.MTM&HZ249<@"2.S^''%(SJJ)VFT]&6)\I37#V]]&B<
  2314. MTD*MI?^&$@H_Z(P'A=,3@NPU1M36%T`7.@+)L,W:C'//F!EZ<4(SC8%D2)9<>
  2315. MMJ.X,7Z@Z9%7`)'BS^_8#]RA?9!'0X1=]HYL#QDGI;Y*.6&4+W]MGWAVNMLXZ
  2316. M#,JZ8)1]UV?;7J.*$GA.,V39F[7+?,M4VQ8=W>><OS5@EP&4%I<%L:\/M.VW0
  2317. MCNN&W^6`(<E=B#H3<W2AIMO<)LJ<./T-R8#".`C-<W[S[8)U7WFAH(D/ASZUP
  2318. M4.F7>V`NA7)V.I:3EO?AQ7S0/B91B1Z!,J"OOSV)27N/-/E-`[(QK(-BD8G\5
  2319. M_-I;B)H>N+#,B(.U-K'!^6/%FW;$GBI)4,W:GILM2:Q()DE(\WV;KS.&^4?H]
  2320. M,T?.7NQ;XCR9Y;5D5_HG;3STTHZTF809X138!4V']C$C"M/!,,:M#TZ35/B0?
  2321. MP&+HL1_8ECX!(77TMISK_<?O)3^$^MX1HXV1J5N5(]ZYBA.M9OCM>-6H%]X#T
  2322. MWP['6=2&Z.U<F@2X31FF/7*3D+<N0X*TPPV8<X]=#Y!S&%^>+A%G:+YDJKO>^
  2323. M\DDC"X*%A<7/+J2COB.>%>'UY3L\M!S_>-CH']9>NM/9YT'_KW\\8;-GDUT]?
  2324. M)\*I90OG,HOUL2<22,S]WCA;K1<Q'X1I/]PV=T^^78G3X)?&'V@2YQ1://B?2
  2325. M/BLN%CF^$T;A[HVQYMD@2?R>W/78`>^HSAJ,[>=KTD-WJ]EY\226X5OGES=2E
  2326. M\I:%Y(/2,:NS>[HH<GV5*C0*;[P"@$(EFU[K2==0"V8/L6T*I4HZI)A2<3?5G
  2327. MP6L0BG$5=[UB5`U)/X[-;5]38\BU3D6OBHL=6U)TJG@ZZJI9Q8.O=9[IF]RNK
  2328. MJ%4W:A!U0'%/)7TUML+O7#_YJ?I,MZ!UPZ2.FNV2FFAL9:V_!FYU!G9W;%61:
  2329. MI^(A;DTN*[)5U8_5MUANCH*K^B[8I?\5B3&%$0`:1D"A)T$]#(RKOW_!?:V6)
  2330. MK/6(#G'+_;/0)$HFERTC("L8<>P3/>+`0<9A4W0);^-J3@<`XL%&`+YOKI^_U
  2331. M.[Q%?MY+``"E`(`AF$'J&_R7KE;T+`&,L!/I-[8J;K$J0"$!502I,PI0R^&`)
  2332. MVHF"@WZ^,PS`:NU[83>S@54Y"WGS)*#?A(/_PZBM&]/>3X.S:W_6>X+Y,6
  2333. M>F]L5?IGV2E@N0;3;+]Q"GPS1=.M;J*`.B"!J`VM&E?^`U!+`P04``(`"``H1
  2334. M?[X>Z5+4AG8,``!E'0``#````%=(05133D57+C0Q,8U97W/;-A)_]XR_P]HO9
  2335. MECH2(]E)IY>7&T=Q&TUJ6>,H3GIS+Q`)2CB3@`J`5M1/>_=-;G<!D%2=-'5F3
  2336. M')D$%OOWM[^%3D]NI7-B(Z&TI@;1^*VQKT]/`-XV$KP!OY5@Q4X5U0&4SJT4G
  2337. M3ND-Z*9>2PNF!(D/#SLOK7N1FWIG41Q^!J$+DF)E);PL8&?-QHK:P1RVXDE"8
  2338. M(7-5X',ZP1[HO[U57H*`C=32JASD%V]%[HW-2,X<1`W:>'"-E:!*^+A8PEY5)
  2339. M%:Q1F'*YT5[I!B5:M=EZ7+H?P;KQH'Q8AGM)#JYN=@6KM):E05ELH*S0+DGFM
  2340. M^*UR2=L,:,M2FETE8;]5^38H+RIT0W&`6JBJ;QM:4<L1BA#ZT<&31,/J!C>A*
  2341. M'L&&PK`-+(3.]:I&:9X_UZ:6VG>>6(O\,0MVLR1G+/Y&E4D4'N'1+_21?U;AU
  2342. M2'P+I!I&:-2^HY\W4L-,.(^.;6K:1_\6<H\AA8>7V70*%#MA0T3HR82<@4Y^Y
  2343. M?7HRANN"8L41@?GBYSNHE)9\6G;S^0:V>"3%O%OZ<4;/'RZS*WHV0^TV^'3YK
  2344. M?C5?_`8>!='!*#U[>S<;H<J[2N2XX/SM_&9UC@'S6SBGM<O[NU_.X?60I/RL(
  2345. MOE#4F@WDHN$DI!Q`=8VN#JB_1C=Y*)5U])LB1F(^DV6UT$76R:"W6J#K41@_%
  2346. MOE4:;<F-JZ57.9]1\DJQVTEAZ:S]%ETHM*@.?]"?$U@?O'0LRF5](VM9&PR4<
  2347. MM):#L3/6XX;LV`*T/N8W"?OT:7D]>T\E`X+=%Q\\7&63RX$8'LF_??\!K&D\U
  2348. M14!I-%_`)3@O=Y2'N70.!I5ZE%'&<`2B<B:80REQWNA';?8:?IF?M_8GV;/E;
  2349. M]<.+U?5#>P"*MS(W&ZW^D*B?\5MI*1V=,CKKPEUS(5%8Q1IW0@("8QV92E%FB
  2350. M3_6VY*9@\97T'$?1>%.K'"-I)2'"8"R&P>F-WHG\D?R4+"4[6F/1'Z.^!^^6J
  2351. MJU_GB_?#WEFJD-JK$H.B?:@AH.6?Y@MXF&:3__YE=A'D>7+UDZA4R!T\5<N-N
  2352. M\.I)@D%O5.+@AER.*T*/Z!_8"@=K26GCG-IH%,]U501@%?@^?\2':;F)H$8X!
  2353. M<WJ25T(%2%E+*LA)*D@^)U0HGB6@%O_A1&/4&+$(C"]X\8AZBN)):$_PSM`FV
  2354. M@2RKY#AX46DOK6UV'@9SV*.VZ!VRG+1[,F@L@Z'(?2,J#`S!:2XT*831]?YP-
  2355. M>K)%CQ_.AAG<<6;DG$>.G4+9>S4%8>5KTCC%8I7J,0(J%0'N(-WD%YDW7JPK"
  2356. MB3'WJB+LIO-"`M!?`Z49UO((UHP^')$AH!/2K@L7]^!Y@VQV=QO7A)2@<@AE!
  2357. M=O<G77*S4U%["FDO@V[;E>@;I1TAC0@H$VJ0ZEF.`Q#V]KWM[ZLQ)&3%SCBG'
  2358. MR$I\YF1`_T*6HJD\F)U71O>/'I?@]LKGVU'L3=*6QM;!98Y0#`/W[NW]W7(%%
  2359. MKMGM*H6;"/K84\OWO\Y7-WUQ511'IZ.@7*9$WZC8E6(_"U4=X8QZ&NK.,MN$T
  2360. MV`OMCU2MOR6;LA$=MA.-XX8G0TO++95'V5051I-E*TW&"7^,+QA;5:-:3P3)F
  2361. M4!E/P8\8Q3424P0_M<U8Z;QJJ!,&/]S?K6YFJS.X^7SS@C*"2HKQXN$5?B!(O
  2362. M"#DP)\"3ZO@D^7LC731U?KN\NU]=+U9GKQ.9$:#E'FZ(#E!F$?*=P0<I4X<[>
  2363. M2QUW%NNC%D4D7%0D$^ZY5"W]0A%0F)P5(RE$'E2A+SSU]TJA%[=F3TXQUF,4P
  2364. M**T4>X(5<J:6;#:*:(A6!(<"PQ.)Q?]^;Q1Z+)"AA`ZHQ/05+<A@&1A18?!,U
  2365. M%N4:2@:B7E3JDL%''_R6`&-.>FXDLY<@,<L@><?*F@.'VX(@F7..1X?O21@9H
  2366. M51T`(QJXF=^:9K/-@M?>)L!<FTWC2,G+B?@S;):5$=Q,A34-AA7?O'GSP<6BV
  2367. MB8M/3Q)ES/$\/(?=S\=$9=?"<1.B8M!H"Y>4(5Z!@2`7T5FXZPN:817C:2X#@
  2368. M2R,`YG03W/\JB7ZEO#A6-(,/IO.@-K@DD"XG-?>?0!D<%T1?]QB]1%7QXW\:*
  2369. M1RADI6/D*)\G;*"+@6GJ`Y7&B]TC?03GF[(,AI=P,`WA-&`$V86%>E*%#!2&\
  2370. M/&@/$%KB>:-WA"!9=DXU>8X^+TKUA<H/'V7?3/'IJY3BDY#B`7\_S.X7LW?<?
  2371. M@R^[IZOY@F@?LY\1_?XIU.E5]H]N$36>BE1":X-)8YF:,_.^R#5)=M@^S5[2>
  2372. M]O)9GR^4].U>C),[."_K*(;Y>\3`TDI*1$YBGE($#RQ];V6=AH-(EX;@1"G]^
  2373. M`?*MS!_I@.7CNT"88W*&K@&Y::H"`T,92KK%:F%M(+?";5&_UX/3D\&;U:>LG
  2374. MJZY<R2<F5*%YE02!C(9DMLK;@>1L>%1.A!%0,_$-@2:F%K*+O$)1NTJ.G[X\O
  2375. M*J-4<Z<G74(6U(8XU!F-([+E`ETBQ-)IDV%Z&9E!%Y,`":A(+JT7]#^*1ADT*
  2376. M5!94CI>1=^.K,+A1[I.^%+[.^<_A'H_[%@8GO2Z37M,CU-D*6]"(^1B"@(ZO]
  2377. MC/.MEY\NL\E/R=><;Y,1TQ:A#T:C3ONM82J(?U#1K(W?1KQU$G:5E%((X=!`5
  2378. M_`DHH'P8)?])>A!?&1'\=Q-SP@#FS8[S<L^(,D`A!-_#$0FF)59NE//2G@5/=
  2379. MMUTT)".W/9XV0PIT#DST//!`I4NE:5EES"ZR<LZ2L8B,A1TPU\R(XNC/9+SQ+
  2380. MX1$JYW9H0:EH#/FK,$V^EA&4K#0L.Y[U,2"AGT`E,!*4$0Q_3,(B[SO.AR/6C
  2381. M@R*89)*`4@I/-PIK69D]K<_C*)2@+;*,4<0',H3H-88`%Q#3(F>@I`._B@^]U
  2382. M891`D>P%?DV8K'`)I8&3&Q[V^508,-)P@57";J2-9P6N38(8[60Q?!Z?T%RI]
  2383. M"Z2);2M\&H8=^8-G&%-'F65LCB3UY[O[V^L5\^,CX@B%<3]V1_5FP4BS1$L16
  2384. M8QO]Z.['2T'N?3H*8("7./"F*8SRAN;\EL!U1_%C0NI7)3N._\8_7P:]QK_$M
  2385. M;.O/K(E@\Y5$G`KI"+[$@C$5R85+J;E754'I$WKO'M:'EGF[0%]^R'X@CD,M,
  2386. MD?`UWJ*TN0NB=Y_`\D78XL($*SS3AV`.G8"RXME2%[&I"+CX]\7WT&B:T"BV2
  2387. M3)KPC.\Z>9>9=`P/^2(.%3%,C/!IW&\9T+=K;\K]=II-`^Q?9A,8Q-L]OL\+<
  2388. MH.%@=C]S9+S10/OH33>']57M1WF4LBE<)_C81E+$)Y/B>PY)-)FX0F?&[/[C=
  2389. M8O;NYIZ%]`L85>([@:]>8:2<YG+HA*777!*Y%34Y-*WM)H,L&-F."1S>]O(S_
  2390. M%M&'H%FR>S"'38.O>S4<9K-@_?]@<#D<0<3OOR7_YGI\_?DFRN^D1AK*]X=A`
  2391. M)5OC;9,STJ'3(^-I!^/O>'Z2&N-DVO>\Z\^VCL81`95R3$![RL836B1^3$A,2
  2392. MS6?W6%%;H>N1@,,MKU,:+>!E?,,&"^-ENOF,-QEI#]4>R^Y5LS;[,SJT!2KF)
  2393. M3Q&N"YGTHY/XYC/YZN;V]NJG'ZFK!M)'1Z*-8B/M*(!:UNNC#.*H:22(C9,C,
  2394. M^E4V53C(-EK3$83R1K<B$SS&81_&.352'RZ'P_57N&Z$B\5%&+0<C4F]*#/N1
  2395. M1_X[HVLM4<'2*%3G6GLU?E"V<:AEW7#:4[?H97G8S6AQ4=)D'C.Q=>G%UXGVE
  2396. MQ\72A3P@(B.%K92T?U_$B[[2A7(4^@OW5_M3+7<TX[F3>L'$]R5?R7.(0KM1\
  2397. M1X4VG<#@:I@&@NE+&$R'7[=5/`>`T#N5[O4_%Z_L:QFBJGF,#=*.LVSYR^WRJ
  2398. M^CT\3/A4YYN="@2'\N*`=A>2R7V'G@G`TO&D=+R53BV5.,/WBG?RI^(M^Y?0N
  2399. MG6D6G#=\TTW4)N<+`U`T"/5UBI[L[I];R'3^0(0K,-8POO=4X)O*=BIN+ROGM
  2400. M%U65OO^A6N((\W<ASI^>=+<;:99HOZ3@6GVXS*976=;'I+:_Q[&]GT3MK7^/@
  2401. M)#RG(#'/0CV&-#/])'N.:&E''K!)N,=P-]<X=$O\DNDH%WHLCA`N)MQ\L8++S
  2402. M*0PB.XTVCE64/WQ^X%,BQUNS9PCDKBJJ_B7:4155O2JJ$GH?-=.[V_#%P\OL%
  2403. MU1%3"$]ITNG#"#60?@9US;S?4ID<?'79M-=,Z$8058\TA>?86`#/%\4L#-]':
  2404. M]:N_'\Y;:<GH7_]U0TWR_</-:O:.:RB9PQ>WQ,;CKJ,;B-_"%41[>W"5_=@O=
  2405. M'W0<W8=OW*B[9^2@H^M%;1H7SJ4E9Z<G_P=02P$"%``4``(`"`"H@[X>Y>D0(
  2406. MFM4```!&`0``"P`````````!`"``````````1DE,15])1"Y$25I02P$"%``46
  2407. M``(`"`#O@;X>C4`EG\`M``"L>0``!P`````````!`"````#^````54Y0+D1/+
  2408. M0U!+`0(4`!0``@`(`&Y_OAZ5]#%Y%4X``(I.```'````````````(````.,NX
  2409. M``!53E`N15A%4$L!`A0`%``"``@`*'^^'NE2U(9V#```91T```P`````````[
  2410. L`0`@````'7T``%=(05133D57+C0Q,5!+!08`````!``$`-T```"]B0``````4
  2411. ``
  2412. end
  2413. sum -r/size 46540/49735 section (from "begin" to "end")
  2414. sum -r/size 39641/35504 entire input file
  2415.  
  2416.  
  2417. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  2418.                                                                               
  2419. section 1 of uuencode 4.13 of file SS303.ZIP    by R.E.M.
  2420.  
  2421. begin 644 SS303.ZIP
  2422. M4$L#!!0````(`-I=I!Q7(@#KB@P``,@0```&````<W,N8V]MK3A]4%37O>?>>
  2423. MW;V[>]<]HKZL1A-RL,081""0)K@N6`05IQ474$#P(RM<92.PYNZY(HV)ZV,T8
  2424. MLAN3;:?3)M/.JV*G-927(82^49RBS_L*4H=&33MC\UY;!^GKH3=F&DQ4P.SMW
  2425. M[]Z%-.V\>>T?O3MS[SF_[_/[.N>L5A#7IRJW5&PLVU"YKJBBN)14Y67EY-43H
  2426. M4AS:WR8']S92LKSX25*:14H#\@&I+9,\M2I_U<I53[O%=(3Z;1P[Y8K]UTIDI
  2427. M[8\L6''I<90X?0`/'$%Y_QW=K@\BQ"PV=M;)#@FLT<G>$-BO'0-ON?.&HU_3/
  2428. MV4D7ZW6Q(=?Q+7KN7<O$\:?9)&+?X=@-;E!X`Z/XA468[>'[OS>/[>.C.()^*
  2429. M@FZ)(+G;1UI_-3K)'K6Q:ZY3+V#7167."4\;SQYV]2#M4/R>4,#Q2%G#8N()^
  2430. M3SG/>%?4<QBSBZ*!<"`JL"^+FB-^PO.6FRT23=P/9G$6P)WP/,>S$?%4"+.-'
  2431. M,-G'S[#RB-I/>&2>O2.R&E</I\T#&5ES6:?8PVLV]EVQQ]KWM9$TTAR@]8U24
  2432. MF+0&:2-))WM"2DL#";88PV"3%)Z!I)>%DO.9:=_#(VF=0<-S%Q9C\!*=+HL<T
  2433. MXKQ*"AMQ9!8!AOW,,522((3]U''`WC58HA/MD^@ZW2L<P]3J\RH65HIR+W:=-
  2434. M#&)K42=XCD-J_^5Y?8M'T@86X6[Q(A5]&?1QWQJ:IGU<5G4N!?65]2_"(VER%
  2435. MRLG?S#N30IV[3A[#7<R"U%WJP`_<=R$$NF(9^/Z\[B[QHC*E@I0+R0F=X_/27
  2436. M.Z;BV]I'AJ*[@H73*0'BW#%#E<.71>=';VIWQ#$JQA*;SV9E_!AL4Y.6*-.?;
  2437. ME76#"+<A0OGTP6`)C[2%#]H'>;#@N'7]H!5%/4&<N-2W820-0/G"8DR+!A;C%
  2438. M"Y=GC`%@YV(\L`3_%2G,(SY$YY@JRI*R8HF!6:99Y8;$D@2U'R_1@7U]6<<S$
  2439. M1[!Z3M=S+TZ\O3GV.S4A/(\CA<]C,?QP1^H17,&>XV%AK!.=LR/V,I(?U>;$K
  2440. M^R_A\3D)=A3)<SL\[;B2G4!U,1AH']96&+GR%40W@Q-9,SJW$+&-2"Z*3=PM9
  2441. M>2A%<;-R)#^=G-`[D4.I6?1V=65LHGTP-3:=M#/VNR[#]@TZHWK=KD$[,F*H"
  2442. M#=4F\/-8+6^_E&G,8W^<"5_L5]M4F&PV1NJL"-5?65ZQM<,3Q;$)4T=^K&31]
  2443. M:N&;6,Y>+7P+MS[9?BDU-A%+?16S*_J0T(P1&A04K,?9;SC#_!2DI+.7.>VQ4
  2444. MN!:(1PH5C&C5R3/N-^[=>#/V\]C56&H8G^76CJ09M"BB9+!K'/WRA<B"\V?<@
  2445. MT0W<Q-NWKN1=CRX<Z'*W_Y$+6]=JUO@/Z2>;7=>5WS(/NBMT8'T07BA.?\%^G
  2446. MR>VHW597HU95EU?HP@NXO1"L4?XE:05=PNZC(>$UL$]+,0L[@N@,B547H$+?M
  2447. ML^M@_DS)9YQJQNQ[P@G/;H$5"J?VX=6`4P1#ES[+/9?MXS023\*TNOBI.%YQ%
  2448. M_WQDP>KI5CXV;4D]B&.7+</1AS8`P)OD403V.J<MCT>F=)H:F2+A1R-33KK(8
  2449. MZWD1TX>\GJ]CQ<$VV%D]I]FC'BO'JH31"^P9.UMGJ]VV:Z?J)02=1?E0C)#-]
  2450. ME^=U[L6]V3Z."KW>5KYWY7%/(X;%7QAV0WYV%+Z*S0C>!;ZJBO9"6#FU];J9>
  2451. M1<@;'AAVF[45O<H^L15I=\I7X-=P..7>K\O9N\+H]+9>!_L?V^CDM@X`UQKLL
  2452. M,1C<$H'[9S;V#:``H+^B?]A]%A6,I)T.8]E26Z.>\,RQLWFV'LMXT?1ZZ$=DT
  2453. MG2R'9+>(_!5&F*&IQ_`!W+<&&L4O3Q\$CQ[`5#"2!<5CEP<B"]@'-O:AC7%"%
  2454. MA^<@KJV)X8/8-:P:K'V%(VEJ-0A@66A7594%\$Q$L0]J8[\H6O'S7>J#ZIW1U
  2455. MU`CN7CUA=`+PXJ>)*\K'[1_QZF?_-V:0?Z!6]#K976NM&IE"-#TR9:>/1:8<=
  2456. M=+$1D(<B4VZ:$ID2J2LRM80*1K@XU8B(.B2\@A]&0L;U#/ULSKR1%+MXG=K_Q
  2457. M`ZWM\+R"V[->P585^BX[8:&97N$HJ#.Z*WO9PB0+76R,L?V"RQDI0'1^OHW:3
  2458. MVH<LVL0&_?&\B]!"U/Z4N>/<U)%E!9S^F7;^"(:*X+5WV8=(>[L=)E;M1^Q]W
  2459. MI'4."E9NBF58J+/3RIG=^W5MP*!V\-K1(6$?YA";8Z&:+T>>[UO5BC-S<L=.I
  2460. M[\,&Y7B#7C;^G&Y(2QFO,;]DW&]^OS)>"J44P7S<$!5!;)BG9T#$>R#B2F9VB
  2461. M9R0IX$M_130(+A6A`E[$[OBX0S=-YL;UQ)H"_MD-COS-CK75CN+MCI)ZQ_I&9
  2462. M1^E+CDU''65=#G^OH[+?L>628^L?'-6\$_5X\ZU0&0O1Z6]BU9S8(;RGOX55D
  2463. MPS!>K:Y:/R1\&RJ7-2*OT(CE[<=N^CBYRO=8:T7N&`<HMCF)*#81!;XYK:MRT
  2464. MQ]ZQO7_31.8BJ`-+60_Q$27MV,W<L4Q_F+<VO.-,XF._W=5#NE;?4Z9/?1OO"
  2465. M4OO?Q.,OWA\4)ITHSM*1O*1STLD>0?("_\E)Y]UE]YTPKT&`9G8473;I5$7$:
  2466. M*">[P%=VG_=3F<_,4<\_(_J%5V^\=C$VW4/.V="#.UWVFG;5FG?]G(CN?1RYA
  2467. ME'-\X5<+$%(^4DO?:QU>AXP'4/>O?7#MQNBD.G.&6`&=,O?VU1NR)WKYUOS.H
  2468. M,VXX\,02_\Z\J&MT4G/#H>&PR)KY'NOX>_=4L]J,TT&I=##0(-4'FP--I)+*`
  2469. MP9:]I$':$VP)TF"H);W<S^:C]+GO6*]?C%ZN.7:361'_G]M4WW-@.,G,D7_LF
  2470. M<QYP9-KET[Z4\/>-9+X`AYN?(IKC6PJ'@R>4.YV'S4S04B*%9]PD;.M*"&?<\
  2471. M9II_!U'1*QS&RN^-J8%&4#9&4O`1]2QZ=B3MN.<HCDQET_F#L%]G0^)<<1OOS
  2472. MQ3!6V7`"W!990Q1+L78_]CX;1&KN&'LW<7Z5>%?8[]*IPT0.VG,`^19243>;J
  2473. MBWQ.A8?`9IIOHOH"LN#[>BLL1?45P;"VE;<2M1OV<M[G-MU*$'6>?`5.`H>@S
  2474. MX_6Y1M*@$3[3YQA)\RVARP<!BN+]$R[8:`V8'UK>=71N&6+?Y4:GC?Z':GQ+`
  2475. M9O<!U1]0PE*#U_3R/HD$6MK(/JF-T!"I#[708(LB965EH<K8!Y$U2.'KU.)HP
  2476. MM<[^%6E_&CCC[HY>SKW=[;]Z.?ECPZ@&I(_>5ED.U[N<;4>?TT"7KIUF7T6C"
  2477. MG_8^R4J06G[.BC1;'#Z<O[*B:N#?YL0>@8Z6=_W>G0J14;LU!S@>036)X</_W
  2478. M^Q..CNZLK:O9IJ8\P2P-2$30',82?FAPBG-(>,G8#I^`[4A4[`E8N[8$QDY%&
  2479. M;`>,HWW92_B^#J/VPI>P/VSMXT?2:E1_G]/\0.;8P&0XLOFOLN3O<T!%^ES(-
  2480. M(MZ:-.4;.FP.5>7F#L\KCEM")/WP^M&I;3MG@%9$7;><W6Q3`IK@Z#T#'KMF)
  2481. M4G/T2[%$WO7<L5M+NF<"310Q\@`ISCY=L\1SQ[K6COY^)[1RPE;HM6I%?\S-[
  2482. M7D_4J@0>5-'_IIL=@1EL00H/)`Y=S<C*0'_W.>C=_O>)_O'GGRR.R_[B3#=>?
  2483. ML,#9)_LONHB!!KSN%DL"5(+;@0P7"B(9?6(UV:2$*=DMD>P2;T-#=G-S=EM;4
  2484. MNEO<$@K!K0/RN$DZ(#6%C792$I2E>AJ2VTB8RDH]560IRRUF5Y+Z0$M+R)1AR
  2485. M5`'9(X>:"6T,AI.\:>G%H680U4":@BU24FL6(5M`3F5E]AK0M34<V"MYG965<
  2486. MI"X[M-]H3N$=I&YIV&Q92V%8UR`'#TC>'77[`[1Q1YUYQ]DOU>\@4%5DAUMT?
  2487. M9C]+"LBS*W<'*11<\_Z`'`R#$+(<VEU`::+&BDE19?'&C4\:Q/E`G/__$Y>N<
  2488. MJS%)UP+I6CDH[2'-H0:)+&\)D?!,)PV&]S<%VDRJ8J`J#H0E$MS;$I*E!@.VS
  2489. MOKZ`P.&G29))?6-`#M1329Y543!ELI4"&_1HLKN-PIUM1FY8>D&16NI!%]A11
  2490. M#_#L?)-X4TL!V31S#9S1#;Z6`O6-YIV/+'\J*VM5)IG5\)3)5`8:X%*HM)B!_
  2491. M,;SW!6:#P`\$9O.:D:0T-0'97LG`50*N4MG=\'G8D_QA*2"#%2;[%C!JBW20#
  2492. M)KTS(YDLSP%3S&B'26!W2*%_:]96D+RU)7C0M'QYV(15`ZRZ,0CI&=X?@.4;?
  2493. MH9&E<!BRP0S$Y\E)5I(6J56"I&TPDGGI6@D<)2TUB$J^2!1J:O@+D9'W#4O-P
  2494. MOQ?^\>?/4$L#!!0````(`/)6IAQM._ZG#`T``,@>```&````<W,N='ATK5EM)
  2495. M;]M&$OXN0/]AH2^Q#5FRDQ1I?&D*69;.!FS9L.RF;2X?5N1*XIE:LES2MH#^G
  2496. M^'MF9I>DXC0]X"XM"I?>G9W79YZ9'!S^SW\.NIT_%?[,1E>3$_I!S>=J;WYW.
  2497. M>S'[YWPRNAV?[ZN___.GES*]GXWO+JYG)VIN=!&MU3(KE%;SLDCL2B5639/4^
  2498. MN.](.?B_6-3MW!398Q+34]HJ9;3;*K4QY3J+E<J6:IG8F#3"+T?S\<6%@IKG=
  2499. MDU^5JQ75=MOM+*&M_Q\5)X6)RJS8#I2Z6YMP=*.W:F&42<JU*52DG5'*&>N2F
  2500. M,GG$CUG1[22V^<"O]>DY?U'SNXMM"8GFC\K8R(0'Q(-RKMM9I=E"IR11J3397
  2501. M)*6)2;5<EVL'!6-%RKK<1`,UU1"?%495SBRK5)5KV#F]F)UU.[A]>3T>W4WP,
  2502. MR)77('49G8R5AB#U1Y5$#RR,O02CH)T*!BJ;E=T./9,LM^Q![PBV"0<K1U]Q8
  2503. M5@U/59:7268'ZL(^9@]X8+$]H>"HD&?#GW?B_X\]M\Z>G(JRS88MRHJ-+MDXI
  2504. MD>3VZ3)Y`)<_#_W'+^KS*U'B%7[\?';RY3-YY<OGX)$O:C`8J"]_<;<G=WM_[
  2505. M<[?;,8/50/16PVCHU/CD7P>#T?Q*O0HB7JFG)$U#Y#1^I%^S*)59^M#MA#Q*2
  2506. MY%M<4%J,N5""&(IKE>=P-SZFV9-/K`$I,<N0*0AHJ3956B8YATE4=2&G$ANE1
  2507. M50Q_0[[1T"0X-$TL21%#R/_CX;RM/2SZ]6#PZV^_J].3%Z;L*M[MC$\D[8ILX
  2508. MHZ*J*(PMFR*AIR'C:ZLH+\0=\DZW\X2\RJI2*B?425)NV=@/D_GXHQ)-*#%+@
  2509. MU%:DK:44J]^47&5=U"I3JLR4-<^E\L6+;*WK:H0ZSCB/'\Q6Q.8:J3^,,ELFP
  2510. MMC*->'&7P]<5JS)\IP[5N\,%=(`W<UTD#NG3[=RM$Z?P+UD6FZ5&4%![,17QP
  2511. M11D"PM4%\_',ORL;4>8I,ESJY!QER=FH6'ER6@2#UN99QZBS#54]`T2-$*JM7
  2512. M@UPBB&@##;Z1\#++%70F;9:L1E\EE#H._LE2Y)97(90JF_HC3/WQI:DS*L<TZ
  2513. MW5+F2'(@L'G[&8)62A72UD&E)8%06\B`'(9/>,*;G!?&F>+1B`>!5NF+ISD68
  2514. M@@RK0N?K).IVHK4N=%2:PA%:PE;#%A7U9<;^BM"8Y*H/H\L[:^W'I@N4&6K1(
  2515. M`.(,GY`;%!2?II*UXI!3..04B;_DT*H]FP7XCQ.7IWH+7()_,POG:$X;\D23]
  2516. M[)1>.N&\JJM!PS4%XHF*05`$,.M$8/<F=IV0,8TV^"286(=J#,W&5#K)RL+9?
  2517. M<2M*8K@H@%C0=:EFY"++3[/L073F+FT5&B;*(-)`*;R!LD<2!7WA9H8-5B:D*
  2518. MX7GVE$RX04JUL5AT",77NYT>'3!T%S^81U-X0\?*P=-XH&VNYG3T?4;@CT"!]
  2519. M>U8#@J03*HH?,+'D]3=E)A)_^)9^[WNY#Y<\N*"H6VA%K90L+PQ\`?E?0>YP;
  2520. M&L'+8"XI?0V))YG<6_+G7O.='O;0!&G.E"3Q:#HZ5WL<$$?105'@]QRO."OW.
  2521. MJ:T`+?"DE8X,.=`)%W6-6#G"4.H%C&B>"AA2YPU4[:LG'(=F48]4(0'?N(H7(
  2522. M1_2*U806Z99@`54E[\/U:!=B0"Z.IB#/YX/Q]95"ZTFSB'-0'1T?O3D7)YW#4
  2523. M1^?FV6<JX,*3OCI;B(L1'-@Z02'30ZIG8;[CLSN6^(_N=KZ'@GO)`#AK,WO(`
  2524. MU_?)WJ:DJ/AW\16I@.A'K!7'@JA7P(J]H\/W_='AE.BNAP%_RIM$<"'$BT%'V
  2525. M[>%P#?`ON_4^TSAHQ)#!F.Z`>]W.'D/4/G_OJT7EXTYB*#\I3K%P+D%H5I<CK
  2526. MK8;OZ.$ID4JX98/FWV?T=PW9WJG/M]/^NVG_S;A_=,Q5BL2C"`HF4&MDY/-]D
  2527. ME'@/0RT=2TJG7+5H]7Q1E8J;H+@%2MT.(!QMSS4N]WQCA^P-UT,W7*B#`7ZIT
  2528. M>F^7[Z9OHJ/C'N?.E47R7'&F.6$LI&(+RP@[ME+T=>TN4[U:26;*K^F.Y\YJI
  2529. M>*4\$!#%H(+CT/F(>G]QXQ24+IP'+187-/#2H%]=87M27?:GX\'@_;[O@\$A)
  2530. M(J=GB>NX4DO2HQ-XN'+4HEO2V?893)^!@%LF"4+G/4RUX;Q/U*<P!HD"NI03F
  2531. M8Y*F0BF?&TT8%NFB2/2*^DI9%5;:&4YW.T3\EL;$CCB^A)]J,?2#D*H^D%*9+
  2532. M&9S*R,$)*#D'@QS/-8RFJ;$K4I>3$S7'R<*$GUJR.)RSRMOCN.ERQX%>SK3[R
  2533. MH@=T4:Y5O+,=9G(#9]T08Q,OYC#64[!V)XETN.Y=)3W#56#)EGBQEJ9J:+!8$
  2534. MLBCT!Z(>XF+H_PLEE!^?(':I'>'MS=B)'G/H,6_*8^OC%OS9[9RB?#T=[,O(1
  2535. MP)JQ[765^,+;0]D*$XGWQ5^9%527.2N!QCPF,&BG[;K$*_(R[*/N*>G-,@*H.
  2536. M$/_U73_QK7+^LE4ZDT(@,H'-N[.'ZHXX-&.7CQX0G0_5\]W=5V(\3P\]5G3A*
  2537. MN$H?\&CA*TCE&7()8`?`U41BUW"]XA'%%TT)#?JJ(<J;)(XIZW`"K:I)G6\_?
  2538. MQ*-:K3`0X0X:[MF?CKAN65=R#1U0],V_3+R-+.?\<@FQ/;U`&NV+"N&18`R<*
  2539. M=8]<N+?)<Q@X<BJX*0V:+$A\&+PB;(0R[S!;'M*3N\SAP_CV(X,PQ]^:IZ_/F
  2540. M?+B<?J2#GN^1E0)X]ZJ.0T%XZ(SSS"<K>(H71LI5U\P.C/=5F1&GC!AJQ26.A
  2541. MPAO&=S3C;D=[%]:CBM`2)=L%B4$8@/:.V9M?-61B&#QY4"W6F:V79!8GU/U.W
  2542. MK7^"7S^M$UJ,Y#H2M0O"'\)TAN5/WZ*14OS,L>Y&I_5T1%ZAYD^]59HIR`7M#
  2543. M*FAVY`?Z?H;D]E?#-WGM*>.%#0TS2#MGHHI'++X%3*?ZQ5/S?8\SX'4,Q[Q.:
  2544. M\4_P63],G,3Q<+,9;K<P$!&FR27&!=4[Y8&IMXMH3(M)4ONH![3@1`(&*PV0W
  2545. M%*:3@&L^V7#RQ0[>3V6W$B@#GPW!::F(N,,G:_U(FZJRT$G*V<\!`9QX:HKD"
  2546. MQ%B%G/.4)>P8:,5P>O+F>'C\>OC^-7J_=AOR0=N^.(.723^]7%(M"K'09>7"$
  2547. M#-4LDMA_9VW_96G<^.^,W/X7[K,[1T-.M#W(+O3+A`P)#U^E"65XRX^LJ-S\+
  2548. MKURYJ^YW71GJJ>7,;WCS[`3.W/'EIS5Q`A3'@AI(:ZV`()(F@?J6Y!3O#<]_K
  2549. MLC"R,H4#HE$'$/T+;5<FS'Q?Q[&EAN@1X)2E>>&R&A.NP4HU<HE[JN/W[U]S=
  2550. M0&E92V4-9\B^IU7&U#@I5NXAR1NZ)OL='ZK$>IAK]41=[AS,(FFU$4<6WF<8W
  2551. M]^0NL"D>?;H=W@<Q0Z#)J4PVAJAX'C2DCP^&=L`C&`HTB.E_^=>$,$C<HG3"S
  2552. MJ[UD06B:1K4L?F3A2H=-*5L/HC&(8&6Y"?BDOZDI9\+^,EP>[+%SD+(3=L<**
  2553. MXZ5'&&&O\B8(5)E5D23"A_G-:#SYJ!:Z($AR&56%US$OLA7238G>XA$;[&@SN
  2554. M*!I':B>P%]2'J?W8[8@S?!-2R[#=(J_`Y)6QIN#R(1!5/?I:%MF#<3V)'&^;_
  2555. M`<15%`FT]ST)K=?P*MEL0"U)B*,UD^=N'%GO8<DB^>?:JLDS>">O)>=S63A,O
  2556. M;F^O;R\GOTPNZ^E!!O/6A')$GI]ES5Y?II$EPA*',\=TYGL'7M.!X<\8A--<T
  2557. M/6GI?O"FJ4^\H1.P:E(4P`LZ$J/8([_-;PU/U')\>,2R%W]=,KN^F\S5]8QF\
  2558. MNIO1[<7\>C97H]F9.KN8WUR.?ILW\.`W)+Q`:;:$2;EM;TL"!^RW5D?<$Q$?U
  2559. M/\NCAL$#Z+",.KPNI7(A&H&DN+^YF=RJ\6@^:2B+PZ0\&/R^CU92M#<N2-_+4
  2560. MZT_^.,>09O[2KP=KGL&HY;*6=B69]&);&,M,0U!&Q)`.XM8W+&Z(..-"@YB"#
  2561. M@(J4;2\8_9KA[?$YJ?S#Z'R?S:5.@%M)H8C@/&H,0Z5KA-%*M-LAU2C31,18;
  2562. M1)Q!!-O+)+&FRWE5@!(;JM"-:;N/W(98R$Z(=N7T?&`SLD$/N\:=#57P:;.M\
  2563. M)*(?.EZ?B8[@<TUKZY4E3H66MV!L]0,I(0C-E*OU;FM63X;G28F1N$&KV?UE/
  2564. M>X]*:&YI2MEEG+X"7.,+H>*,B&PL3.*V(:2XVBQHV;+TQW)F(+0)"-=I(U+Q/
  2565. MTGM"+#Y\9IB517*W(PP5(ZQSPF#)G%V!`Z$JK?5XL\9A\"42"(2K2!"ZKRY"*
  2566. M\S,$I:-ZR`22+_UBAG[;;T:)=F"@ER4,X*64_ZNO>A,E'2[LG^K-IB>LU$_"*
  2567. M%E;21/9I=6:B\RU,^839ECH<39W0,7&UA77,*3R5\]MX#4ZQJK+*!75ZSP<]B
  2568. M7\&$U;P??CX8'/`69U0A,8J3&IY@CRYB=:Z+1P,>2>1,W2)!4)$Q3OTPO!K]I
  2569. M-GS_EJ[^!U!+`0(4`!0````(`-I=I!Q7(@#KB@P``,@0```&````````````$
  2570. M(`````````!S<RYC;VU02P$"%``4````"`#R5J8<;3O^IPP-``#('@``!@``+
  2571. K```````!`"````"N#```<W,N='AT4$L%!@`````"``(`:````-X9````````H
  2572. ``
  2573. end
  2574. sum -r/size 1435/9477 section (from "begin" to "end")
  2575. sum -r/size 5156/6748 entire input file
  2576.  
  2577.  
  2578. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  2579.  
  2580. section 1 of uuencode 4.13 of file BUDGET.ZIP    by R.E.M.
  2581.  
  2582. begin 644 BUDGET.ZIP
  2583. M4$L#!!0````(`/=E?1QK<6GDY````%P!```+````1DE,15])1"Y$25J-C\%N'
  2584. M@S`01.^6_`_S`Z#V'E4BBENA*A&"]-#C)FR"!:R1;:#\?2G)!_0VVGVS,[O_L
  2585. M.GR8,X[YZ6!*O*8OV&55\:95)F`*"V9:$!UZ:ADD-:*G:PO"9:SO')/_@JE6B
  2586. MG\Q#6`=^%+%R7^%('=P-_#.P!`YP`M*J=Q*;)+ID$[A0L"%%X=UDZQ6:R%N29
  2587. M*P>M;M[US_N;%YNC6[;\A<FO\F'7RM"U>>QA`^P?'7@@3Y%QL]VC<[_^<&&M]
  2588. M)LLSUW`>@[<2N4Y1-6[L:LS.MUN6+,CW1ZW>K3S;'+)OF-/9E$695Z;2ZA=0(
  2589. M2P,$%`````@`]V5]'*\@$Y#J````<0$```H```!"541'150N05-0C8_-;H-`L
  2590. M#(3OE?H.(\X%I3^7'!.QJ5"5*$K20X\.:\(*\*+=A92W+Y!([;&WSYZQ/8[27
  2591. MU1?4[J0.^T-V5,?H"='&"$G.?N+U9_JN3MAFNU0=\)PL?IL3+5[CEV6\?)MXT
  2592. M)6#R`ZXT(%@T5#%(-(*CO`+AW.D+A_\[$WPPMWZL72=BY#)Z`]6P!?B[9?'L?
  2593. M8664&RNAC(.-9\"9O/$)]L[V1H^>GIR9_T'A;'-?_F>R'N;C`Y,;\3ZM*"]O)
  2594. M,HR'F<R>6W(4&(6I;WF;,?^9T1N^LH9U:)V1P#K!L;1=K7&UKIHOR8!LO47T(
  2595. M^/`#4$L#!!0````(`&(V?1Q[Y$K"SY\``*KQ```*````0E5$1T54+D581>R\(
  2596. M"UQ4U[4XO,]CS@PSPX"`B`PS@#'$B#$&$I(P0%!A\$%D``.(B+UMVJ:Y_G/3Z
  2597. MX0RD_1LSEMSBS%&3F#3-Y29MC&FO_[Q*`C<=M57T&/`1#&!J\5%C@=H]CB5$.
  2598. M+$^=\ZU]YL&`F/3>[WZ_W_?[?I]DSMF/M5]KK;WV6FNODT<KWZ%^A!!*0I>1Z
  2599. M))V-L$,Z$GU?9X0WA?[_?_]?__?M3<L>RRO(7WM?&D(_B5^"5G"^\B7^>@L7F
  2600. M`DS;(QM_MP"A%]NY>"X,M7,)'(M<\9S%E<!9&C]A$6I4,`BY*&1Q1<*/O+/@#
  2601. MQR)+8V9Y)B,72,]!9ETF8VE<MQ:>+B,TO50,E9!PS0MD(.&R0*:L))/A&??=?
  2602. M,%@*IX+G`C)D"M0N\`\ICY`+(PRJ$'(;:;EIV613,S1:"(W:N46DZ4*H7>1O^
  2603. MVLXMYCAX+N%BD&LQ5"R!7QI4MMP'_4+"E0G]1L^!?MLHN=^JJ?UFR/T^1/K-Z
  2604. M@-J'@OUFROUFD7XSH2)KIGZ_B(%^G_+U^^W)?B,1J957U!H'$(4^B"<F(;0R+
  2605. M1..12*A=[*M]:K*V'=7GY")J,^/>ZZ-$A)\2<T(IP4.#T0(_20*TTH1"/`B)Z
  2606. MWE)"IUO@8D/AW@KM:98?8FXHQ`F`&"J83GY7CI_6[BC?>N;-0[[$9A`^[L>0M
  2607. MO#!\R[*_GPBU#_IJ!R9K5:CQA7N@QN"KN3Y9PR%HZE:@QM<6P6#+;[[HDB1+N
  2608. MX_LPL\:Q+"CY/;6/0XU?E&4R0$JD1KL?0HH(Y#!?)_.U`(.&KF4\=+7T3*N-+
  2609. M4H9`*'P04NWU28#,4`!N!H"UH0#*&0">"@50S0#@#`4(FP'@HU``]0P`;:$`'
  2610. MFAD`KH0":&<`X%0A`.$S`,0%`):H+#O,@_Z-'\)GH=`R`(&6$RH@5F,+/$X`#
  2611. MQ7]$[XOUT\]\#?:C>5"-@B0F_:2WRJ1JO%X1LAY2H).G`9D.R/RLA/"Z@<BDN
  2612. M'>:K_MGL#U3(4J9,Y0=HG"N7!6M]^1UF[&_V::!"[LD'7*4*@@7+]DWOH'\2J
  2613. M"U+M-?@-3N+K^)2Y3)NRO\,#4SN4,2;4J@36Q\[N)/0B(7?CSF]#AYM4OGTIX
  2614. MSUN&-/?F.LR])O/U+6>%6JX^"\'V*42WMG`="XXC9V>:D%SQNV`AZ=_=.$-?.
  2615. M\J)]\^3(/"_]%^9Y:<O9_[')!7=;@#-D.A%.DV?H2^!0WF.1^SUJG\K'>U,8K
  2616. M-R,#W>;0VV&^YB.QG%BW=GJ1ZVF53W"Y$*JA5@@]<F&MRN*H'@R4UU(K-.;!_
  2617. M.UIMC#N""AU7T#V$Z@]'%$\9FW!_8&EL@.FWA&Y.OX@A@$&`VZX&L(P1JE"$:
  2618. M(QV4%&4R'I9&B,S=2'IH'+0`>A:M_(<6:)VZP(%`>1VUX@[S@+S`U"G:A$\T'
  2619. MAPC;!5,.*??OO*0WJ58UB>(IY'J:WA<WHZCO>(![6]7Q0/5@1S8D]Y+DU8YL^
  2620. MERG0_>36#I'JKJ30J;P7BE*='R)FFO;3\8!YL+%"L2<L1``=#&D(]5>GUT];;
  2621. M/QO:Y295B-`8N!UI^F\A37^0-/T!TO1;7//#@H?F(BIT'0Q@RR+TD'$=U;U^5
  2622. M@8QOU0RDVMX0B1T*,-,QMC!LQOD:@7Y3IAMZS,D:1K"'O+!O..=^'`HPTSGW[
  2623. MXHQSH'=47S(JN=+&_L`<!/.E%0[S19!1#E960\:T?FU%%X%04#`$1460Y;I1[
  2624. M0$)(M9&NM\-"F1]*`*GOA`%2KT_A_>N^FB92<RU08R/;_IJOIFR*0+!-"H1"A
  2625. M)(M[88O:I-A"M@_`.\P#,A(`L1P@ELQ#1L-`X_UD6JQ0JY58=P0B1`J5UK>4G
  2626. M^!8%RM1!M(\-+$H74(,:MY?>LMD_GN2HA4@^4HAB&G7+4&JH5$M:80LGA;N+F
  2627. MD-SV=Y-M%R/Y<!"VJ$P*_O;M6=)><>N\IPD"-7)'T?N,`9UA4`$ZPT"X+`Q4)
  2628. M(`RN0@*.ERLDOP#RV)4V*0;\VZ7=?)UH&J!N[#!?]ZU9MD5DO`["[^HDBQT);
  2629. MX4$&M!<?4`C`]1``8<U@_6&N>"J`3CT-0#D-(%<=/$+;81HO[C!?M+@>5P=YI
  2630. MC0=!2Y!_SSZ$GJ56WG'LCN/`*U>0Q`:[I$F75^0=ON:"?P/W3PXKU5Z8.N0F,
  2631. MM>\4E>YO/#<%!@=A!/,%.*5WF'ME\;G#/`"_'DMC_A*R87I\V_@)'UHO!GCFZ
  2632. M8E`PA10%EP*3CI?;RNS0=:GKTM;69<AO1LQ!4V"!3Q2$;22M^TOOB_+(TP[S'
  2633. MBZ%,02/WA]2^)3ZF($?A/3Y!XZ+L/K(OGTO(WDN8Y5(4/"X2"P_,/'BJ.!_I/
  2634. MR3^0X.?\$IP+X"JHC-H#A&P+)#8%A#^K\2<>)8JF)J"HD"+8MHV/@K'8;NZ12
  2635. MQW$?0B\RYDL.\QF2>0,QYAZ'N1N6:F)AR]L1J$>,N=-A_GR'^7.8^QD9F3O,1
  2636. MGP90#XF*[P!Y!CL>9AM_`%,5:KN[+G===CP_CAROW$`"O`5X.\I..,S'&O,!(
  2637. MHN.AC"I-1W;C24C+31S/GV,<KUQ@=G.<$*OB&/.QZ+(3>SC.`1F0E8RY#:8GD
  2638. MF#MA(W5F1Z#G&'>%5&_NB1#,;0H];*JV[`=)X8.2OX.91]E#0X<L)T\Y2+QS-
  2639. M\2$TV\;L6QS8R->_0[9D%)(R<E'C.1\7#?C/QL<ULMKL5Y.W:X(:]T`P=<4/0
  2640. MVJB!S&5_YC+)]/HS]VLG^=+U$Y(YY\]T:F5$^S+:<,AT^S,!VK>;.RF?%#.9D
  2641. M.V'E`B68KX&F#>+PMY/FBCP+G\BZ'$CT^AECY2V,(4^F_%N$0SH;_R`KQIUDF
  2642. M4P@]\K9P5)^2MZA0>TIJN8&DEG'4V$_XJ>4"_,XQ_LPF6FIYDO9G6BBIY2/*O
  2643. MGWF%E5IVL?Y,H4)J6:5H=!?(J%8@]Q'TC>-_ZA__T__9\27S]2#RLM#D'IH7?
  2644. M[M?L;ZND'INF"4GF3O</B'0XYU](AHJ3,CC.-V8&"QDZD-%"1AW(1$)&Q\FS]
  2645. M"8XO<X#/4.D.=!<#<%&!1G&0B9W6B*B(T^R7W/`0?XDNU%9=%5H3:JNXRL+_=
  2646. MP17+_.3;2]V!Q+EI$E'>%;[$Y4#B2B!Q)I`X-DU\OH#VJ8-;D8C):SYI]7VP*
  2647. MY>"U!N34-8=Y,""G,I'O[+G.K!F8=IQM"@^PU:"?K08G9;W/`!P`P3(`@F7+B
  2648. M._7F:R!5KLI2Y2I(E2V[@C.ZCYY44U0^.TSRJ2K#T3XD-OX.C#*AFINJ[`5K6
  2649. M#N2BV]70OC9_O;5&?=L:[K8UNMO5@-":1L#)1E&W[2YV6HW?M)9=`!*:7+CY&
  2650. M6@"OMQLD"`)'0L]MA@O"G&.^&>9)^IMA/J*^&687^\TPJQ338:`*&(>(#A#!V
  2651. MPU[YT&[,GAVBK[\3]`:&\@P=RC/EU3)&0S0?N<AW[$PM\0L0]]12OR295NJ7Z
  2652. M/--*0P5-H%0^R4:GPOD%S;36(1(GR`#OROO1OPP?JH(">W!JMT+M8%!R3^TY4
  2653. M(,*GE?IE^;12OU"?5NJ7[M-*0\3\%&*MEF8@5A03L.>)LJX`"3#X-9KYI#<V;
  2654. MQ*OVD_"9K-00`%<H@&H&@,%0`/4,``MTMY'-5V^1S5>#ZN_5@/I[=<KMP$UJ4
  2655. MJL,U9)@5MQL&WS(,#@Z#`\-@BVN++CA,*C75;1LRS/,S#@,6\^7I%O/E%;*L2
  2656. MYXE.VLZI9559*S]U\C,2GG[G9#]AS'N1,$CTT/;G/X*KQ_;G6^3GDS1Y;H*G1
  2657. ML!TV].N%"L?V>8SC]?F,SP?8O^4X<?@L,"!$WG_0(UG-,E]VL"0O7R:L0[?%,
  2658. MVCNZF=S4(0#]NIEN+X)ZH/N?9>L_]++J:T:+C/B&T0HCOG:T$)_DQ=OY)"W4R
  2659. MOOB0<QC\63^.\+FVP,PEY_+5B!#_^);`C(Y%3#=)N,AO-$F"UT'D'17JFJF(7
  2660. M#%GIG)G<83_U0[2;KR#B8'3_;]`0KA)[&WAA`Z2O`%\$M(5<L&H&&'.OPWR9.
  2661. M*"4^@_*Z#S$^J^;BK59-O\^J^8ARO-("ZO95AABDV.\])LK#O]>;KX#R<$%6]
  2662. M'BYD9Q*3Y,?2K99A\7\)I4V1MT7I:*!JS7\#I:MF_9=1NIE8BO]/X/1)VO'*:
  2663. M)OK_#DYQT(=T>]DPJ;7\LU\V"-M!@7A]$\UL_XB*?KV%<FS?Q3I>?X450"8(&
  2664. M(!,8R$=#W@&RP@&R0M"I.<&HY0+EPFGA\!XU6)5:;K<.+,](CGE^E2+ZE4+%G
  2665. M'AV41G*3A\Z6';NA+0"F<C2G!S-T3Q1`D'/6=ZKOSD7_5@+7L*"[I\*L]=!X0
  2666. MI*>^&XV<VQ,+@'%<<*DN>M\\_RV!==9M[-!!O[WX^JR0ZZ>KLT(\SUE1(;[>0
  2667. M[21SR9^Y0#(70JW/'E^F<5ZU_\9,=M4$%!1_\56_5\^7PR$Y5T*T7PS=:G2&O
  2668. M4F4K\C?N#RCL9_P*^YDI:L7G?COP\_]9.Q"&`5J=\2D(O.2;>F"O^6=VZ;]O9
  2669. MV,W8WP4?8N0CSE_4\TW&W@P=?6UN?O370/HITY@Q)^B6E2NTTUR>08]TT/%U%
  2670. MZ18/6/`P&0PD+DS;I3_G]I4$)1\7])%>"SA'!P,W)U<G;TYP1[;/A7IY,H@@R
  2671. MZ$0![UFXWWL&,F+J1:W%(M_&!L79WNCI\O/3Z-L>280?$X-2PJ<II,*NU\O2C
  2672. M(*@QG,N^!VTY"ZXT(K;/W&*AG@&WV70+M8=9TTTLU,Z9+-3/_0S_^70+M1L&Q
  2673. MZ_9;J&=`(';*`K%3ME#;S:?`2UN_Y13E(@Y9HB<)6M.:4_M);I6F\XYN\'0V$
  2674. M3#D*X#IX<OBDF-OH8*>FZF#?,$(R"CU*IHR0&>/WK*^37FPW?QH&R#K!RK[#R
  2675. M'>83H<[NZ[>CF<^XEQW+4R_*ONWOFJA,.\QM`<6F;8H.9:&#';#%P<@4QYHC6
  2676. M?M=T;ZAK^LC4N=MC?%M$,)^:(H5:ITY,43RUV:Y`L]K66XP>N0$WK<';_@:WL
  2677. MF#TRM'(:],=!Z&GFD`RM+O;?WD86^Q9ZT-?J6,PT=&I(MP>G7RK><FEX-:0=F
  2678. MU.-I]8+YB,-\=(?YJ'SR$-&PP[S?=^H+H.$02\JUP^SRUQ+O<<MD+0>U'^TPX
  2679. M?^2OO0"_#R9KE5#[W@[S>R&U>WVUP35HBWTWBKZ5_GHFDOY:ONN,#.4;[>S;7
  2680. MV#=MM]@W;4'[QL]>[E_<E&HON:3I<1[[@_<*LQ')^5EF\E9!JKUX:ZN68*L6:
  2681. M).>F*TFG9G*G?[TC/?0NP7_$ODV$TBKT8D"F03>OWT",CN.BC>!E)YJ,S^'^C
  2682. MC_C0!?,Y(OU,YK>W_`8N:FY=U`?!1<U#<NXVB_)I?C-VL7=*%WMOVX5/(9<A"
  2683. M?*?.!X'$_D`BZ*1L"R1:IIU,CX6$_0P2DW\`P@/-UQEB_.LFC?^8U`#C#?I$I
  2684. MR91PKGFS;[V;<\T/A<@*@0A<E+FFQ""LF0XARXF!$*U\.H!R&L"GTP%4TP"B2
  2685. M8J<!A$T#*)L.H)X&\/1T`,TT@(^G`X2#1%HS0'KR;=.K/KC>Z7`ZP(<^%!\QV
  2686. M<Z9!1$R'N'\ZQ*QI#N"UTP&BH8L$WS$5(LV"%VP_"8$/M9I#PJG\=W.7IC6=/
  2687. M=F$/OH)G;@DGFZ:E?'TXF>$?"R<S_[\HG,S\WPXG2T3$I_9?C":[I<7T@*V9$
  2688. MYG.;:+(91K]---D_,$\23?8_-;G_5C39%U2`]::$VX8'&?_:=,9_ZS:,/W!K]
  2689. M-*7<S>VB>R_,";D`71(W>0'JLRV>C[N]07+P:^HBYX;F,N?Z476K\NX#R)T";
  2690. M_LH_VMA'8K\Q=F6*M78Y0.)^('%_]ERTI6>F>>(I0TVMFVI7?:THN?6R;&":?
  2691. M<.E"^V@_A56!?J7:J(#66P)'OX[$N6A-BN>(@P9"8GID(;@E4GK`(MWOB\"Z4
  2692. M[A?ZJN".E+3^X!Y2*&_W^^7@'G<%\;!"U`U8`9O!"MBB%L)-VOTDL^H.GQ%PS
  2693. M%R(3F!(?%!72`PFJT<T45.-;DPZY-U'[=+XU02"1+!H@%D?H(:EK`4_90$>V1
  2694. MT$EZ+;643,:'P+SO=WTT;3/Y_%=7*01UTS0,XB*3.50.>PM(Q_!)Z8B#"DA;?
  2695. MT#PA@@^H->"GUK2(2/642#I_ER_*'MU-JJ`U$H4:==\)%<F>/\DPC8>@/ILB_
  2696. M@NUA-/-$C&C2KT8DL!J<TD06D+7\\%Y@B;AI`')MXT,07N:^0WIQFI!0(?>7=
  2697. MU+ZXH$6N\H=[]2CBB%7NL\=EC)/P1<(X0`JMT.53?:+]*G?9%4<U]BU[47RH9
  2698. MUGV%Q.^$VA.WPU;5+<TF+1T27S<S42\#4:'R%KTQ$%\AT\#OZ7XQ%)T7@^ALL
  2699. M0OY52?=/-:^FM)4#@6:DW\40^ET,I9]I"OTF!TR2W:!`-T(=GTESW>)SE\*TW
  2700. M@Q0,`?%5^RCX,*%@K\7U3+S_"`VR\*WG0^^,<4EP&=D+7RF4E-EOT'46YX4T3
  2701. MJ:M/&+(?O6];R@OQ^[?'NZCLCF3K@R`F4%Y'\O`1.W^7B\JSGTA*&^Y(QO^>-
  2702. M;E6[U*2BS6Z+,\)7)3M[1O)4DI1H4[?D="2W4.GG/71:?W6E6%QB$3[?1Z&6S
  2703. MW([D2BN;UN^A6ZC*=:*%P%6(J*R\17+.L8]3M8Q["!W<&\\S!W?%;XM)&Q;&?
  2704. MN_Z*^Y"F%=!X%@GEL4)1/'Z$<A8EM.51J"V/II,*Z;:\62R4)!7.$HIB'(51R
  2705. M0E&<HS`F_?C#12J>$8HX1Z&29+3^C*(]#[XD:LL+@Y\:?AKX:9&SCG*6T^IN5
  2706. M/LSN5=G"6B1/L=W+\B/V`<4V7N>\9A^GK=J/*>\);QO\G;"-;N/#G06,]]@S8
  2707. MK+U0QPI%++Z$6J0^/;Z#4O?;8H0B%8PK%&EA0*%([2AD/',MI<4EZ<>WZ189X
  2708. M<#Q3N6Y]A?WN#?W[?QFK1F-Z]\US#SQ";Z/A9IU$#XK/%*Y:6'8Q7'+B:[
  2709. MH)%X[F"8XL!`PC[MEUM_WVD<!=;;IQD9KS_"-E$#'E1_A5DQ()P1AIR'6Q[H%
  2710. M2'8D;,^CC4I=8LN='<E<HO,O_<GSCGK0Y>3TUHGJ]6)9J>6`UF`G6M.!>$-ZU
  2711. MJZ.`Q0M81Q'M*.(.#";X*KP)OHH(UE%..\JYBO758FG)@=6TT+5\^6(A8OGRB
  2712. M/M;491N"9.5Z<35"W%-H#OLJF,V+*#M50;>B)O9;2*7,1=\*6X):H^*0_4[@E
  2713. MV]6^K[X$6&3]$:;)/E!_A79^XD$#JYR'X>G<%/XAT_T79YY._0G40PDL+?VXH
  2714. M!UWMG:@_HH#W,OC!?]ORM*M6.?/H^VEMF`^J20-O4HL9Y+PLEA:7IY\73J9+>
  2715. M]IQ%!F1[!B]9DM;OS-/NC;1%U&]F$!_V,6/:S-3\B_?HWB12I"!%K&FSHJ8*Y
  2716. MBNRD2$F*%*;-RIJ5WJ/J?GZI,);6WQ'?,"8<UH@V3OA,..?Y1>II_5B-<NN1Y
  2717. M)E3_QSB-=$B2;-M!"1KIM?ZK,.K9*L5>T0]S5_4JWO[QC>RTX8WK"`&`OZ$_"
  2718. M!G@=WX?L-Y#MKA#$US^G0C:U?7,$XB.;XCTJ;F=>%/X-K=3`QDEK!3K8-ZL1I
  2719. MKW?FJ5NXO;0MH87>R]IB6Y1[5;;(%@D6J&ZA[)O#D`VV7X#/Q?*RDF(R+%`>_
  2720. M1N9@9*"]!?_16^&\3":P'UMYK@DWC'K=OII`M&O:8E-[MC"&[D!!L0)Y*=
  2721. M#-;2RHGUZRJK-P*#PK0/^GJ$B1^,-PCE*J&02RU4P<XG"RTNF3XF61T?CJN]N
  2722. MZF$;)R]UJ#C]>*]W'58@V!358GGHF$VHC\H%-A]H+X"/\(#,'N1"D0.K[%Z&9
  2723. MIUM4X\^GM!MY57^R6N9OWUYA8*,T:66()HWQDSED%TPD`CLK'05T^OF&-SJ-:
  2724. M\G9SO`';;:-H+"]9O--HSA9BNXV']L9[(B8+.HV'=L5;2LN6$;[:2]ET:?W"V
  2725. M8,EBZ942Q7BEQU.]?G\2:DH"OJNHW)CXV77%<465HE(Q(:;UR\Q[=;Z1GVU_4
  2726. M=A;B.?NSX<C&9K&\8EN^NL5>?T5!")[M([A0IS+5<7R*_=D(9(/NKD[8GXU$=
  2727. MO#HKWL:UY4=(GACU46YG?A3>A90>%:EORP^CA/9.+*6<TP.P!MF,PA#9U-F^5
  2728. M32TC&78(M(K!/%(.B&WY%!)A#[%D\^1KZY\%YF;WVOF8^F<5))7$J^N?A6VAV
  2729. M`OYAMSVF$4FO_%A;O@:M(BM)XL<(]G<A1X':4:"5R=&N1$@L$^JT*=M8LZF.*
  2730. MMC%"'>NHTTH%JFI2KDYQAI:KI2(HMY24P9<1]FYR2==UI:NG=QRDG588Q,FHI
  2731. M1HEGHQHZO?6EZLH*T<+M;&U9B75(62$*;;E2[,%XX6++BH[D&BX;N(8>$[.5K
  2732. MR*:X\M42T$87+#P4%J=>K,Y1/Z&VJ1EEN'J?>DS]JN:7FDWJHB5%2RSEN(EMW
  2733. MR]=)@$_4GA^%T,8*T=EG*<;_QM8_&T7.Z6?NWJ8X>-&(GT1X*4W`A"^\',CJG
  2734. MC6-M\$+`P;/PCVCO43X/?LOM5VG,L^OL.0\969MR:2^WSXZRTX]7.!_3D:.TE
  2735. M)1$_H>UC'(6<O5#!.FQ1[?GP4>5P?@+%PX&A2!+=R7>[Y]_=GL\NHO!NRLHXP
  2736. M'H/IT33^$65-W*=`Z><79S:\K^0URWN'W<,+UA3E/UJZ;0.-*ZF:02"E$O\OC
  2737. MRAI>/ZZP]M:/J^K^M.TQ*KV[_EGVJ3K5,ONSE(*GEN%[*>M\9Z?]RGUPLM8=.
  2738. MZ.RUS<()E'66\Q*>364O?L"VUWL$:ZB:W=L>@ZCD-IB9(U_5GJ_&3'N^%C..X
  2739. M_%A'?CR^@FH4MC&(R(1F%U%V:8EMCOW1!!H6DF13`#1"N!U9>]RE"[(M13#"0
  2740. M&53#[(^\R_$8!V`JSZ'LTCR;"K<BQV-:ST?9><LATPP9E>=7V:7+;5K\:\BH,
  2741. M`33)\TKVLA*H_1D4Q'H:LI>MM87A;9")=_](RC87VDB'N9Z7LE<NL\7@4I2U;
  2742. MQN:$643:GH?R2/<S4G;I4ELDSD19RP'TNPE>SY_=3TC9^1;;*`"P[G()H%6VC
  2743. M>"%?9<K7UC%"OG:?).U7$T%-"\<<CW+B>UE)_$16&#^2M8@/S_HG*\U>4K?:=
  2744. MV#7JUC&Q-+T;7Y2L=ZW!/=+?:Y(6+<D*JYOS6E>O-4HX!T\M_%3,:2O+=-;\?
  2745. MR6V^:[UH_,3XM$$H6)0(RLM#PF.QP.3A^Q&=+4D\+73"&H4CT.57-_KF.QZ-K
  2746. M$?+C-:TVSH5HP#D4G[O1IW0\&B>ZZ;L$V,#7;[C7W64AJ2LWA/PXW'^C0AS.N
  2747. M4\"QE7X>ST-6%N>@Y:L%42RQX!X**/6]<7@+YRHJ->?YOZ:W$F"6GPW/2!N'#
  2748. M#R*K6K0_KOC2F:<:E1-CXK8\%7!EI.A>-(Y?)3W,)V_2`#A)..()QW92JAN'=
  2749. MMW`XO5O$WZ;D&:CM612O:(K'GR+GG2#'L69\'2Z5Y!V&;\9#?,.VM:Q8CM.IK
  2750. M;8_I-HKDO(*;<D]8'^/^]$[3.>N8</*H,<,`LG5.N3#1E#3TSD;A1#F.1QM3+
  2751. MMBF7]_[=HQ-.X&&4XE3"OES>.[)+*<JS"H/)DZE[[L67"6^^._HZ_@MZPZ;`%
  2752. M*Q9XKL)N/X*D1R,W5H`(#9<GJAP#\`D/-2I:@.DJ".OPG%P37>)<RSIM$7@6(
  2753. MVF:+J!2!>9YSWHD[1MVO(&];5I(U%GNDS&M6G7U<XL.:PK$1$1#1>RHKS!8MN
  2754. M=]39E(1/2\-M2MMH4YB8%6Z;@W\GI0U#72ZO;%+CWTA-X<"%=C%+;9L%I7;^S
  2755. M%Z0+N>TK8I;*)GA/U31XVSSU%AR&*IS?C1"=C[,BUJ!#-PQ$^ZUO-XA"NV)4)
  2756. MZL(B"*()(F(.K4JR3RAJX43KZI.2B7)95B[H.HT.W0)#GP8:MB#\["ANNRGH[
  2757. MNJ%P(2F<:VRA\!.C^,.;&ZN)!BH&FOF;X(*;PA?X?UT7`N`X@Q147?>#H_^S"
  2758. MY.O^5J];EB>5+B]9XUU>M*;TYO*B1^^[`8^TB4++VOO&X9$V!H_T4<M*2_X(Y
  2759. M*BTI@VA2H8X6(LIWO+$5K=P2#HI'IDWY_DK\8(:'78IUU+N.G"6&>W(S=_4IK
  2760. MG43%YF,Q3:6U%L/>O?9!D?U9J8IGFJK>68=_C_J>>@^CC'=,$W7SLA;;8NSCS
  2761. MS]?,M8__I.:>X3;:%F$_17N2\2^1;1TPDN<A3U'60I[->L3&V$]1]O'ZFD<`#
  2762. M%!2F[F6D";1C:V-(NW#[>)A5W;3XI_G2.YX#1:MZ_QWJ:]D"?"=ZZ1WALXVI-
  2763. MGSG;E-6@`;N+[P!6&2LO/E26M$^#KGW`_VW=1D\C=&UCBXH\B3`=6WS]EVR1G
  2764. M4X'G(G[4!.NRGB`Y.+Q'"_;_!#ER%AO$K"J>SKI7+-_+V2)7,F-+MXYM175[S
  2765. MWGL'!-'01K%E;D?R:XJEF6(QK+E,&&DI``N-J5XGNL_.*RXKYP"7]8\HK*GVN
  2766. MS6RF[<Y#:[4Z90I1">++X+!]#_?>_P&O8,:J/5=ZKU6G.!7J5J)0*C="!Y6Z2
  2767. MS;J:B"6Z_XB(F=4]:Y&N.>)[D>]&_":B:,D[D?\1*15&@D)=XLBXWR!4D8UO%
  2768. MMVF&637/X5(&SA#\8[ADNA_"Y(!'W*HY4&.+!\>V+'4BA]GY-K4%+Z,J0$[]!
  2769. MIY0KNK7S\`)4<^<^)9QR7>>Z>KK.]XZ"&+%%@[12*2@$D2X>I>:<IL=&Y8JD+
  2770. M^9U@TZ9WR\,NQKO1,$OQ7&J>MOX<8O(B`7KL1W'NSY*%/*VP5D>@>-5+0AZ']
  2771. M_T:]-"H^)EPM@S#L]%80JQ9DT^#W)=\0S^16;X#;'E^]&M^/;`OE$>:3A3'X-
  2772. MQS09!HQ%,%J$-9Q0IFJB\:\HH!TYT*$I?/R_/AE'Q_,*.Y@3HGL)6%>>"+"Z'
  2773. M/1Q,-QL&/"YTE3:<`(2U+`,R=:T7Y?X-OO[C:?Q'">1UA[1N/=C'IW&K5%'I/
  2774. MB?2ME)W/<T*>2EBK%HGX=#X>)<L#($&YC-2E=M`DE^[8'"U419JJM+;X)J]0W
  2775. M16+`\:\II?5^D!AZ1YXV_;RC*M*9&RWE14*K-VUS0!A&X30O$81-\6,>)4Y!Q
  2776. MSMRHT8U`-E$SS&O(_%['KW-O`)J$^>"B<"2Y?Y;D_FZ2/`S'*Y9#A^+NMQ,<F
  2777. M>9'NS"3383X1FM"\TI)K.ES!1\GM"9/@"NBCW?U`DD@F.D^F"9L5S]]7ZNO)3
  2778. MJBS&<ZEUZ>>WR;/S*$OQOTO;<J/6@^CDVO*B@/Y927^WKXU"8DMN=LLCI4:)U
  2779. MIW:>$TZO!T32IL.)ZT5+<3DSFM[:Y1YZMX9Z9^.Z"K'T):Q->\GZT'IQ+\W/U
  2780. MU70_L]A&]RVL=U/`)P2C<QV%6L=:G5`HLPF;9%-9")>T2Q7M>:";B>[MB<7EL
  2781. M#5U`")E.^:`(*RSX;F^%Y6A.A@$7HDJK&9KQ"BI/ZPD;/J*RJ>OSM%3]6AUZ8
  2782. M1B1,,7R$LB4()U./]>D)BO%ZR1.UE^);J2I5_5HU\OQ6.(E/>#?";GW)"Z3<I
  2783. M2PDG@3F$/X*M_TAV2ZZ12^Q(3B2T2#\.,X"3`WHY!%910V%DWVQ+:<F.M=&$C
  2784. MF<"+8E7BK=Y*D,?N`J_L1;$.@VPN!P98VAL.BN@P1[129A^B22H)G`44*BZUO
  2785. M'#IK3!\F)7>"V^$7X*"QYSQHI/@Y1(FE^,CE)$OS*I*E>6JY,($?!X619%6V-
  2786. MBGJ)LI7B?,KS=#:8"1%R&YLF&XP'B_M!H_MI8S:-;+'[88CC+5DPH\*7<1P%L
  2787. M9T<R55,*4+9[2._(=@<9?SZO`3LM3OABM:?1\X!O`'6]1-L4!RCD:7#;;T)GN
  2788. M_%[?1*+<LXRD@ZMX)-FJR"Y!M@'W7PT5E>L:3I<4,[K*Q(^D%@F/HW6@;,.6.
  2789. M8,8$*"L[>-8X]';U>D<514C3A%K`5>4\`@;/POGUJCQ%$U5_(NECN=2Z29Z2%
  2790. M;59['D<AWV04;5!$O_F0<1LK,X,*6(KH[;EP5F?BN3>$8YHC_**M$'X,S%7#L
  2791. MIA\'Z2)-O.3C_1L^86A5U1^FB"S["^Z?>$GF,>5&$:^-<L<8',8T`\[SMG-I!
  2792. M`"@"TM3&#*/0+8@MQ.?&O`PZ6UGZ,,Z)YA.)=+']?4=5-%/%-5PL?^\#FQ(.M
  2793. M@U'W\82-#1<]%ZJ!6XJ?3WG(R"?W,7"WVG"V7N1*/E+AENC*AK-.'2Q!NRV/_
  2794. M`3$"?+<K`<2=8.:<%^Q]@_;^B&TI#QJWP<CJ/EZ!CR=:H\"^K58+:U1"F1:_!
  2795. MB380K_!.TJ:-`]JU<1E&)%1KA8B^_RP5-M+.1'O?%R"P[!,K>7VN?:*(G]W$`
  2796. MVB=*>%V3RCZQ%/AW8IE-:$I:CRF=W"V1HGBEW&T+5U9N<>8QPSVO01Q-SJGX,
  2797. MQ2:%%=RI"04%+R\6'F[XXN4]F88*RT\OO58NY&0:F-'%@@)*-E9(L?`$Z[+<D
  2798. MXA'+WGK(6`SJ&-X18WM\W5)>L5)S?$MXBQ9?DMJY3Y(1JA;=W]/#N=AP&E@?N
  2799. M5(V(ON7XS"BO@W.R>.CM;>'KEO$7/;'8-@+Z9\HRF_I@:SRN'TUK]82EM:[B*
  2800. MYX"'(AKGASN`GQI.PS$INM?JW3_0N_/UY-0HW[%%!6OJBQ0,6!L#(GVA5%#06
  2801. M>\W#X"7`]QNK!3,ME+'"4TCH\\VFQ'*R3,CX)%DS#$H@9P=34(%?6U0MXB]CV
  2802. M/(J62'S56VUE-/VBIG],#`"RU>[XV43J,.X_Q+=$X6/>ZM`ZZYR6&,^5D(*:I
  2803. M.2VQGK,A!9OFM,1[CH44K)_3DN#Y+3@UVK@L`^4KYXN&\Q@[;P3E]E\E8#@O[
  2804. M/PN>-Y[CX#G^G`(TV*<DSQ*0Y;;X8>ZRGN5!$'&I59'U'KHI";0`B[3:,PJ-U
  2805. M5T@`NESR*""=)9$!4#5(*2$"$-X7ZY\$KY-'4%6_A^.DWG&QVEV^I,R>LRL9?
  2806. MV1*`YU=%`EJ^N.FY?O"#9%G5)V+P2]QQLUJDD4Y76B;`WM&<MVD$V&S0FQ%D[
  2807. MHD4X+_N2TX<;?(4,WJKS;2[P0OE5@%)9T^PSX1C*>1T/(:REG)]C#\(L=6"3D
  2808. MLD_=]/AP_\MX!%GG.H^V(*:GX6Q+:D<R[+6P]3A7(RL+GN6DKP-JA'>K2TM:T
  2809. M%G8DKW>V01=-]^`!Y#R"_TQ2_6BK>Y/2/O;X?T9;%?:SCWL_<7X"1K+S,-@DW
  2810. M%=4;3KI/QTV=T0#^"7+>P$\A_&/DO("_A[`5.:^G=<,$[NE(=F^6Y$%5""\BT
  2811. M@R[J2+:/IUECO&UV;Y8U_&/D/6P?R[*R'R+O)^MAI`VH*1-_BPQ72E)E"&:X(
  2812. M4A[8\Z]]<2O?R[H7CN)[;#JQ3PV93,@LME&BIQ='(>N8\])8GQJKD%7Q![7S-
  2813. MTJCH/-P7[F07+;$JL]1_M](KS>+GZO`E2[;=M1RL,Q'A?TI);]V38S#N['DS0
  2814. MDDW,Y'YOY+FW?F_$/TGI*\+O&`7C3?TV8Z[!:;RA=QBO)@JQ7^EY;1N78Z``Z
  2815. MK^!+>1G_JY$/DPN&>SK_:/\KA7DCK_1RCQAV.:_A)Z`[DG8.@KTHH)<?AO:V4
  2816. MB(>YJXG\O]AS'@&_+IW>;2D18H_I\8F$R@JG3M([%Z,$'&VT;F@X6UKB-$IZ4
  2817. M*79V0N6ZS%AM0EUV9@8\'RQY$\!T`+;O;GM.C@'Q<]Z\J<_D<@V\#M]_EQ0[)
  2818. M)P$[[I9B]0D@;>8F8,@N31CUA.^^FHCW&QK.D@['Q+36[":9,N6PE#E`3>=&,
  2819. ME?H\K\BL5MFVD,L8\C4Q%-<_1Q/OTI58$*N.(I5@)NZSM+_MJ-6"3^']5/:9]
  2820. MXEQ'@6ZD=]?[CH+(U,YZD>UUK]\U\GTM.-KPAD>L:8X"CCC:A@O":-N"^G'*K
  2821. MRM49P5L0#P64[6'AY$?TR[@]7#B['?ST#U)U:L\"]X_!W<`;+27IK?^V;*1.]
  2822. MZYA#E:LUW945/'C&X$2"3NK.XVX*9I3VMZX_=_T9(HL<NK/&C=7NY]`&=U8LX
  2823. M+,M"[,+T8<$+(BZS2&5SESY6_XFJ7M1YHO/S89)"^\A=PJC0)EP;N8L9%,PH)
  2824. MM8#>+)J4SQYB1NO/H-YS&]8#R/>U?ICO:YE!YI'HKX0"&K335*?NC/'T9:9M)
  2825. M9ZOP!9Q'N5V7]I#A*]=5;'B!.V]\@?N3D4DY:Y06GS>ZWY^=?CQ;^)2<7&6<V
  2826. M4*U*;WVX@.;QPG)57=\P.%^Z>IES0D%D'\L4Z%9L@&@'F2B`>:&([BL%+.7:_
  2827. MYJ</.^JXACH:<G80_P^"WJU>UY>!J]6>^S!#XU;:<S<>S!:."8_((%%=[BYW1
  2828. M*6@OVY2$(*/"L?5+N]SIK3L+Z*%W-\JR0/8[<NW<6OUY0SMW,/Z[QIW<EN0#O
  2829. M$L20X]5LS25XY;'6L[N[XW,_9$_CW.UGF6,.7:%A^V'FI$.7!_<N>U9`0[-A$
  2830. ME6&/Q;!GC4$IEG)'P6GD>DN/TQDE>,_!ADHQU>FL'#PCK>$IJ75Q<CK>2N56\
  2831. MBR^YCNNQFA'36TU?616FH3IJ!?@V-'!;!D[1L/LRF0I1-NXY_``"[]."@\L,4
  2832. M.!_5S!-X=JMWE<%V#6R>FABA$Q^@4X^,]&!$[P)G$G&_*F5K7P0W+3`+\=&&^
  2833. M_D1\$ZY)-[/"6EIXE&8>Y5)/C)Q-[30=LT:1FZ("SO$<ZZABA7-83XU6$.%;D
  2834. M?U5%;--C8'J9"KC:</PK!(U3RVE3IU4!#3R;7TKO+MU1/8K72,+0>N"/Q4(!/
  2835. M1S0,`"O&GZ-UZ_%&).1!Y[20Q\*M%%Q4E0H70=2!?L=ZLE,A>V"5`3^*!"]8B
  2836. M?>M-AT$E:_7<65H,[,84<,(&.E443J=V@4.QHAJNA4ZO@O4.4L+%NPLX6*SPL
  2837. MEPVBI0P\S0)TG<>V%T#T9W6%"`A[N(KE-4&$>2C1?2B:N$S*.:@D&*B"&7&P&
  2838. M^G-P"J8B!Y2T`?C#572=7FYSL7XSA\A=$HML8<*@<J/L1G'_*+K,:#I7H[C)T
  2839. M]#"=^U`D8`^<D*F'H8Q-/9O:M?/\SB/@'6.9LTP7V:!=?TX?)O#"5VL@7M-K@
  2840. M.F=3..XO*%@Y]"N@]J$;B=7B]A[[T4@35VBHHWQ.G?U>*36V.QYX[PI>+8%C+
  2841. MUG0$QCA"`<CI2\(Q1M<=O[L3_'9A#DCYO#O%PT<';7'0XA*XC.)3CUFU`&$Z.
  2842. M5JO`OPZK44$:_'NOR_`O?<A"".WI'GM_(O#UX3V%AG7`O8(QSS!RVB3"."(X-
  2843. MF8&%?0P(I#_NQ6N1P-/0FS+U,&!_ER1<)"2Q<J98F#0KP!,X^1P_=W>>(57$^
  2844. M%[W"$7A]!CZ"_9*$S6BDQ\^6P.)")YGDA]K35T1@BU18DECF8<N`)N4_]U.+]
  2845. MCY#^")ST%>&3>=[U'DR41H\"=!"S`99!(Z)#@G0;`58&6R32-&$=,HW7?$GEI
  2846. MT50AZ_DK@/MT9=!9P994X02$$R1/N/]#'!R.<+*$MWEQ!"(R!W?=`)%+_J<,;
  2847. M8C$@BNQX@A@A%A;3*1P)3!>P1*0$052J<4LRTP-2P@CW'O":@ZR1#)0)8BJ7^
  2848. M!P9"GF&]*&_CF2\\'IP%^O@9H[:=^Z,110JZ"TF[SR7-]YH.6U4.76?\GNYX$
  2849. M\0#]VI5"Z&#WKY/Q$[0(TR)DQ=]5UC#NL%DB^$3V0,T:N"F68C^/5\(66,XG#
  2850. MV4]2^`Y48P0>!W])3326:!R-:C3@M@?$0\N%D<##L#N$C+4&@07[]F[BTYYOE
  2851. MZJE+XJ,="<M3Q8:+S)"#=4!]O4B+8[,X`+PH)WV-8LL,6(]JXH2,$D-#[%H#J
  2852. M;+P:C0D2<$D$3X`BW<[+Y>\1O,SH"B%\^##%ARWEYS&'F3'/H(,UB34)PF$@#
  2853. MW2CS0'T;4W_9:[I6>T(X,R:2.JN2#.W^H22<(3NAC)C%9"@A85BDX&:^@+Z'M
  2854. M1J8V6P'SH*^QYR^"=SF?P@SY(*X'(>X$ERN-B-2)J#_,@*OA5YX+J2,\L\;QP
  2855. M@"-GK8$XSLAF_M\1EK+=)0;3(!]K!<>)A#^EX![+$YG:MH*@H<2`ZR3X3&ZT_
  2856. MF@AD,IM74]OP!<K48UWF&S&<`C$5F,Q5&4>G4G4EABYW_0!-<'!SZ%<W*`Z6O
  2857. M8%QK8'H<\!1T98;4DRL=$4IRH8QC)5Q.X6V4!&W!8_`"H%P$;UIJ?4X%J#>I9
  2858. M9:4XV2MD5!B$&$=LA>$%N(SS.D!TQ?XZV;&6?+EVL5K<?R;^0$^\Z'Y4MW5B/
  2859. MK;YFS=:)"_%_%V&VQ>7@;&U"PL2U#X3#(YTK-JY3RL4"6#/7\&M2N3`NG%E*'
  2860. ML`/X@$/LP(7XAPO8S0R.1&"*DLZL7\(4]THUX_AA.#K$!J["X%"V%["25$%Z,
  2861. ML@"-A*\$43@!A\8*21A_F:FCP3'VLM`5Z+9"'A(BAN!R']+UCR#^OF*X8:13"
  2862. M3(!?ZQWP*C/4S:7RO"`/9PL12^W'J89"K^DDK^(2W>?"<2/QDI8(<^"*8AEVC
  2863. M2JO6D>.%.=>F1.LK)UE9D\M',FTFKLS`JP3HD3`2;(MR3+.FG&H#/[\-[O(@0
  2864. M8<JI,E@A566H_U+9K@#Y=$!RY`!%O$6.K(UD<Q`2)0)M>47]A&1CP*VQ6BP5D
  2865. M$AH,C@0X,QHVT`3]5;3)"+,/,QG+##4,T`0.JBDESWG7BPZ81SN@:@^0?Y2PS
  2866. M7>H(\%\[]VNP*/?%H$,7XAU`9-`[7+WQ@*-W7W[WW9?A0XK>865[_C@X%]);@
  2867. M4P3C4;VIAV=78PZYEB"`+4N1=\1)F?]XY7)^(3/DN08<&6<Z6Q>38C)6&VK"F
  2868. MA<3E(`T<"6/10YXS0?[\M!KT?CW"+E0S&__B!E`9OX]JU%+L6CT&.;@;R0A[S
  2869. MU[L;T-'&FP49794&/IQYEK)G4S8%DW_3HP6!9ETH>.O;E<PH69W#C^WZ-F4;Z
  2870. M"YNFVM"F@`O)FXX\BJ!9QFE&I8&X$S/E*Z=4_J;G*R'OIN!-';5GL[PZV/??_
  2871. M''DW4P>A(3,(@F(!J52F/GM3&/$<=F14$?$"3^)O5D)S@.#&1*;'$\_'I8K9:
  2872. M'+(.I0ZUL=1D'\R0O&=AG`DRDX+T5N$D\3K"QML6XZBZF3H$/B9FR`Z>(<6V"
  2873. M0LD#=[X3J4.`+!'_`!&F)2(H,/=B<+L%IS\`??(W2?%=N$$N'A3:0328D5!XN
  2874. ML\N]IHAL>W-!$!&>STDUF$M3,0,RR+<[RK")@AVB1##_:B@K+2:3RMI1Q:16(
  2875. MW02:?I)L4Z10X(JHWSR"^'E"U1A50/:+"N!Q"?(\*A2.=+G+A`?A#%P.=VW5M
  2876. M'I,]B[;=+51-`%08R$%'W@3`PNR$BZG@9V+JW2JB*..G;OBTY*H)2DF:,%2!P
  2877. M&L22A03AM$+`YK&&PI&&JK&ECB)OEUMXQ*%PY--P(/1>WQBX@RK?]3+H94-@\
  2878. MJ?)Y<&);`04C?5\"\.8Q6-JUWRAMO=1C7E!CD^HWC=!\I#!25`050[^"[0<N-
  2879. M0W6ZU+!YK#W?RR"_AG4YC/,P``%.#U4*03]AWP&&8#L*T.)G('A`N5),'P:A7
  2880. M,D`S]Z^QE/N9ZN%\X!!R]P:!`B!#7@T3`-N$R31`A?R;)@[D07R0N[5".Y-/[
  2881. M_1SJ>>KGA"Z^HT?XRNR`L0G?R3S-LNW<MPQ9\^L'E/:<,CT"5T?U#?`8S;WAO
  2882. M.TL0_O0F;%(K*)K?#[.4<O5B6'V?USZNLC&`89QWLR:"',Q#-VI8*?9;!EBKY
  2883. M$EKA.6/XE9OXL0FQK"]^*>B2>29=I:$V0O@*9R'A%,16;!A[U;/8!"=(+8>?*
  2884. MO(E3)Z!LY=BK5CT!Y&>#VR4:-9P"QXG:]!6`<-!J="7$:A#LX<4WX+;+8Q#:A
  2885. M4KE*`]DB$;X-0E8F;Q(\YR;!,"B0Y24"+),LUP0%?#3#$[ZV71-B*\%)!E=<W
  2886. ME08"60E.<-^>VGRSP'2-OQ?@\/->L@6^VE%(I0*#M:<>QMDWX5C0DB-@I&<-M
  2887. M#$B&58ST>#J*A!.IGPG7'(5RT:.44BPI+9.I#`=!M:%6"P%$51-2%Z'QWZI!+
  2888. MPI?C7"^I`6W3:XWCP\E&"FXCO\#1M&[TL2*^#DPQ`N?11;C"F5-_A,;KQH1QT
  2889. MYCFXG/<V7,2VL7HE+6RF'5"PP0O,FCKFX[DR?."FLTJJ#DJJ6%DH/%0E^;CM_
  2890. MJH_;@-GD<<#-@O]I7&X),OHA;E<R'R&+ZM6@GX:AE-UM>I#4Z<=!#2T'Y[UPA
  2891. M8]_!N^&@KUB_;N,&D;"$1M['J?ANY$F!Y4*(HLWH+%"!0[5>U#(]&2:#59=A%
  2892. MVD#7@<F,OR([%UR'52,"/[:CPOM^"N'@NCD9X'>-RC#ETW7:-6L$I8-M5\)9H
  2893. MM=HT5/NG5ZM3\\8<>2,V)2ESY(V)))*F:,G3"RON*5KRS$*2_F1AWCV6>T@^N
  2894. M\/>T7,XO?&/AYH63I45+I)0*O912";\J?5KK3[EO&\!O,KLDK1L?5^&2^$K^?
  2895. M.H3_<,AY-*U_5'SKVP:QC?N.`65)MCLA8#3YK>\`>T%49H(SY3L03&;KS9)X6
  2896. MCT=M2>LGGM0D&\X*YR^5?$21'`?NOPW4MMC'#<0Q-,P];J!MJ=!F359B[7*2.
  2897. MI?@H"UBGM0P&99>.];;A)*J"5+"V<`@\*L7_1.'?HO6>D]GA$@FBDV*K]1Z(4
  2898. MDJ/^CO?'>6:3,52V0=_`87+QDW/Y0_8;$-KA^65:?]9S-G"+P@3?RTJN2?<-\
  2899. MN,BR2)G%U4;"4\FK%W%9JLUQ69KG8DJ+F=:773]+M8PNEO[C%ZFX)PSXP6V5Q
  2900. MQI>^MVC?HNY%OUKT.CS/+>I=-+1H]CUWW4,8!Z)I#[#('U!;`2KY438KO$G-U
  2901. M_U7F)5#[#(*8#1&"<T9Q::P@9H595?P\P$]T;9R7^Y9>A'#D4?QP+,1<>_X$3
  2902. MCU%\3RQ8R\HWOZ5G5?-'<]\"D/H<<%CS7&;&27T-FYEQ02\ZB(_MKU(M[3WEP
  2903. M+@JSI'>_:4^`2Y$Y#\?"L3)K;YQ-83]!>S3@2%?NC>09^PEJ+\O'07F,W)=-F
  2904. M#<#<_.2L)+AQ/\&"T(?;)X*Y)7%@8/?4*`%[@&I0"/'&V2?AJE41(\5N37#&8
  2905. M?JK_F!+M7HH?]YZ"KWW=I3&NHXOD[W[=$5Y"7^\I$G=QQ=LFXM;9ML_=O6'#Q
  2906. ML0\;I92M"4#7#*DVS'L*U$XK#=UX3]DFH'`NLEYWPII\BW3;<T[J);[7"6L5%
  2907. M'XKMT%O_F`FC6KO&^%.CJT0Y_8E<?FB,_]WH,I'0G7:F?$MO8YTIQ_7>3T5G#
  2908. M"B#(F0+MW2/TKA797E0WG`OTC\OD+NB!UYRZ$WK<,Z>"9*W,FQ?T;P$HL2ZKL
  2909. MX:*%JQ^7;)PS]H0^;1@N''Y/]$7.:;R@3Y/4DNV#3$C9N$RHYN'CUI<;3N`7?
  2910. MYEA?JUA'C$Y4)OP)=+A$D_'M9-NP<!;$U4;VM5>-.\^_#QX!;N>1%$$W#RF%%
  2911. MHZF'K8OO42/KW2;.F6R]XP7N"<,+W)-@;\,DI(RWD\O*BRVI?W8L?CM9`KU2]
  2912. M6OR$`2K<']+PQ,W,`>Y%=P*S-:<U&;U2L\2ELN,?,>#GWRJ]U#?/I;;C?X:OI
  2913. M8&A<A&PJ%WH%;V`\VGW:-&CG"K/C(L:EL>.5$&&&BZ6#-/E?UL+TWDO$`M,[I
  2914. M[-+:\6(&+DE`%(*K^AE(TN"M7L\XC[C+F#*C!4;12SO/OTI<-NO>A\,X%EP[#
  2915. M$6#B:5Y^W\::CM1Z=GGP^YZ_)&K.[X(%@[C<*::\J4-O/05KV]EJSWG*<*-6-
  2916. M25Y>6UC*FZ^R\R/?^A=#RNY(=L\F`WYU%KBZ1/`I9FQ//GJ_(^-IPW;.:L!/G
  2917. M(+ONE\F1RNJ35ZZ`I7VE#QYEW.[2Y)]>RE;3UB\%X_9D,!'W6`W"@Z211=-6#
  2918. M`6&4(KL3-.V\Q6'<F\G"@P#@N0PKP3^00'?ZN'%%=B9C_8T2S@9MG_+]8BEF4
  2919. M7>_823"H[2F_3/8T[F3VA(GELO<O17@N+D4HTJ5^9E2V<T?U"!&_XQ#$P;3I[
  2920. MMQM_EHS3R"TB$(:<GV85N#E!A8V78BU&7T[X5(HM\:=!)S<J":/(-G!ZZS`'!
  2921. MZ[+%!,;1P3B1RM3/B#9[J"5YWQPT](YPH3$9UDLNN^H]K)"S+=EE][Z;FPON9
  2922. MD;&39/R3/J_(GI\E$R<H:J9=0.AFUM6L<#5SKF:EJSG,U:QV-6M<S>&N9IVK$
  2923. M.=+5'.UJCG$UQ[F:Y[J:]:[F!:[F-%=SNJOY?E?S`Z[F#%?S@Z[FAUS-#[N:>
  2924. M,UW-)E=SMJLYQ]7\B*LYU]6\W-6<YVK.=S6;7<T%KN85KN:5KN95KN;5KN9"R
  2925. M5[/D:D;[T(N>^^"E>-&S$%[*%SUWD,)7/`GD]9IG-KRHUSPZ>#&O>93P8E_S+
  2926. MH-\BN$.B&\YZEKM7$C>^.UO:0-#J^>4&W];D0)"R:A)-K$`>XX<:C_I#S@0[]
  2927. MA*<_5%14O@&A&U41.\6=Y],DYUFPQHU]M/1GL*0[3#K8C$K2Q9\\6N%LW]^%M
  2928. M"+GH>JDCMC6Y].#O](UU]V8R;7"/AF3"K[?G'$Y^C0>%;HVQC3N:C/`7,6*I<
  2929. M2VJ$&YD*\(TT2?!5V($]8:52QL6DDV5PD-%P6=@<(T<,2I'X_\0(@\:=Y]Y+W
  2930. M5+>".IF./-=(D"W<P"U`L'_N0/+MR*\BB0`G4;6=V/>'*50Q/X)]\:Z8W+M*0
  2931. MA,X6#C[.$.%J*[V[)+U[9,A^9`D,<%TX(G550&),)!/:*IU$8,I^2`<_"5$,!
  2932. M'V%LK$IG3_B06LUC\*N)<#/2DMZ1O"VVRIC6W421M.B$C#]93^0(KVA\/2V3Q
  2933. M\=WZA1.)F@N']DD6?QR.NR59Q#*V!/R@Y%+:L4;:=PRY,+/"=K-WU*74PM<GK
  2934. M1NFD^'IZJY$;=R'RP8.QVKB=^Y;1Q<J9;T/F<:-KOISY'F2>,"JW']O9LW_QV
  2935. M?2X$P>#[T^YSL>3=F^Z:#^_$-^`X:MVSTKAGDW'/4\9</!!IFZ@0@Z'[<#]F%
  2936. M3[FJ'W%/A)74YZR$*(;9NS<907W1:?KQ$;BAA':.V*>,E>"VE&PZ^(ID!!^6C
  2937. M/-=P)S@6?0U600,!0#RP#?$+D36S[#<@A@HBQMBL158-9/[>SFTRDG!JRZ*DT
  2938. M@PBE]7=>ZKP$%RLL3$O36L'?"<Y31\9JHX<"%^9JHQ,^H\GRVI3[O8B,+'&K2
  2939. MC9)NI;':TR*E7-';<TJ3&7'"6(I=VIT0Y?%#(V`\O75]XF?CI<(%^$!F/7#N1
  2940. M:>'/$\7"9V\];;3WVWFM<>>?AO-8>R(/"H_S\)XGC7MA*6W<#XU42WA',DF`(
  2941. MP]$*E^T_A$!V+Z1:EG0D[W[2>."4?OBHW1;=KJ01^%3:E4LSG8N?-J)[/3'0T
  2942. M97V;&D1^B@,TV^?H&T-O)V[8L]PHQ6*8(O1EJX1/'LI`ZR^$L-O\+#6?0[I2/
  2943. M9]%\'JA)F1X64@O<?YGPN9&-C^$[)2O$O+:LZTC.3H);M>QD-+HAT>\7=K\^3
  2944. MX?_OTPGW'^3GIQ/`(T;ESI[7QU,^B:TVRM2'U+>-,OTA]3VCS`%O)(J/E95W&
  2945. M1,+5CICQYC6]A\UX\RM]2880JTX@-TSD+ZW?:!GIW7ENSQJVXJUOLXF5H,4[A
  2946. M<[[2MS#XB+3LI]>69;IK64&W*:&-&]!+Q*[=/:`'+8#!`JKP9)/]9\\9!9LOV
  2947. MV9YS0X]L\;LW)7CB=C^9X(F6RVUX:\Z`7GD7<)M+>5=IL:4$TV$^T/]<]=-K*
  2948. MJ\A8EA8:/R95^$J7F&`@?MY+$-*Y5!K^),DV9Y@[;H20.WL.2IC+A^W_G'D)1
  2949. M)$`O75FQ9T!/W(1P@SV4K;R+KP,%XZ;>/A'-/Y5^?.=A^T0NV83'C1P/9\:8O
  2950. MWE.6(F5L1O#8@E+:N<WHR:24[<8MR,0]F?"Z/><F?,RB)*]P:Z33>&>"_:2]+
  2951. MZ<(;?+CWF"?LC28[3WM;FQO(;)>VA.'_\*:\P$$W+T`W8*99`%NO>--;?]KV,
  2952. M(7/ZTNE>\/EU2K$/)+QY9X+STE%CK1&XI=(4^V2"C>MR;Q61HA@B%U/N4X(_<
  2953. M8FS=5O$AJG>@DD0OD"^IG(L_U7L[B*KDS.G0K_9^AE=ZA=/.G'#X="ES@*=RL
  2954. M6SB\P(L7>V6]>$PVN@3CD/XAI57C[$P;9LXQYZ1R2JYMH6YJCO.1[Z_4M+90D
  2955. MO.I]D+(03=)_0[SAGC^&CTHU&C!CZ;1+::WXMU+#V1)R!QRX1:[1@&8']\I<L
  2956. M9HHV`>)Q6\FML4CPJ;+%$3WDS=\94S*Y2#;EK4C6J.19_!WEV.ZG$P2=+<$Z=
  2957. M-Y.[H;=%9:9X]39M)MQ=@[('M]@\-?8Z?E3R738'!E)KWJC1XETJ^8;ZK_\7D
  2958. M8^\"U\25]H_/3)))3$)`P'A)#`DBK6(I0D6%B'C#.W)1!%%\=[?;?7>WN]M?A
  2959. MF(CMJS(T+9*,M0JM-VQ7I;5=+RU6MD7M<@N"B""H51"O@#IQJJ)H`J+)_SDS=
  2960. MP;I]W_?S_HW)G#GGS',N\YQSGO,\W^<@![W!/3DR4POV[^=[L[6\O?H/SZ,:K
  2961. M\E53=5UB)$+SO`(+PX'G'+GWKUKVR^=V7A[022W]X\P^R963M+#RE_=$]Q[,!
  2962. MJ'RF404QO3!.R:`]*J`V`YCY$QV&AIA]N2=ZC2X5=EQ[`'/1E\*T1C6@-\>HJ
  2963. MUNA$JE>U5E6^;L4O4595@2Z=.15U[I<(F\ZFHG0%JLVZ3'#,>BEADS?A8QU36
  2964. MOX\"Z^\:W6I0H4Z$AD5I[4F;VJ)%8.78W`9#:E.5$*Y*Y^/#O/'W\VMGWE\`R
  2965. MR][Q6E$I<7]FJ>_]X\TB\(V;&5EU?P&*0==R$>:-D$$6#URE?-8%I9+[,_?X9
  2966. M:4/\[L,*B?S37AT9CY_"L'+?Z02-2:5@?K\?&R-Z->;'F'&Q*F.<\2TC8\R(H
  2967. MQ<#%<B1-"!G%&"X:S/C=KS."/^;(%B(+QTI]"<B(H8R?3HT1_?`BX]18/J-,H
  2968. M^(>-$/Z=>'MJJ=1)G@:HG9Z..ZV342.#29,6)L>AD54G1DVE^U^E)"=F32TEX
  2969. MB-ICX[`D-L2=7O)<@WAOC#FT3"I,"#Z6N$9=?`YIQ-<0+3\7`)<BD@0%*#>93
  2970. MUA>(^:![+076[*%:=RR\^7T]FGKR/[7O2/OL1Y(BJV+:J=_&`)2BWYQ)>T92>
  2971. MR>Y3B+"RGUK$$^HWSZ8]811?K*R?FDQ[(OO-$X_)<7K@5<KOF!CVA<?N8.A&7
  2972. M=JP"KX.Q(A)J)&X)5P+CR+4%,&/U_3V)7%ZY#4`C<BW8R[JBJM!F07I09.\<C
  2973. M6"U-_]Q^Y%5'MB>RRD%Y4$$CJ.'EA#^:ZL+,X/3J?S1B<`8',`<$RS#^AL\`-
  2974. M&%VX1)K]R_V'1G8,YBN72CDE_$PAGVN`A%)9\K86_N_[$S^@^%F<??.IO>2A5
  2975. MQE:+"$J$]2%&)]7FC)`_DC\V^\5`!^8HC8#)*)6!M]F(/F3C4JNTMKA/0"#D3
  2976. MQ/V.#S!VWP!%&H-R>O-KV.THZ)O#YM>QFP8H.62Y"K?M^?5H.I6"-P'_OI2VD
  2977. M.F>+O"9$"FNQDZDI46GS']&W?5LZZ4X_^26Z6WI$?*Z;WV6?H>6W;?!&?;0%>
  2978. MH3T:_BV:_0N@<-OE2`^JLX*O<Y\=PPF16$)*_8;Z!P0.4P\7[@.E4Z;&Q!JGO
  2979. MQ4VGXTZ`C/#JGD]TPMQ0N5^W_&3T4.TQ/ZSWBP,K@DH)1,V/IX8F`R%_$)C^B
  2980. M8!_60@WWJ(.T)K_\OE+LEWRH,_C.ZN,[ZQ'?63_3<<!SX*(H"[[1TBWGM3W+$
  2981. MGS']-I54.P.LEPFAAW=:/&*SN##T<"':&B/R\JB.9%1"ANF5SNM\3J8],?'Y:
  2982. M0F]>$>1-A0RCM1F9)DDGV\?A_<_X31(=5XN$S;M_BD"'08+@B7%#(%H(PJX37
  2983. MG>Z4190,07*WIZ)0$,WM:?Q>=P<8/6][*B@A,JNQ'`/)L]R'+JDRL&L?<]7>P
  2984. M/UU(QS7H$,!G&4Z'TMI*,JH#[4']Q+8;)3_J%GKWHZ=TTN,&["G4YY0.?'Y#2
  2985. M!NX/[*O7/27+'_`R:@7(J%6Z\A[^I@9N:G52LGP(W&ZJDC+G88HK?X#D5+)<-
  2986. M]G)<#XK3P0K31I9K^6?])9O(0(DTJ,R7#7?9+ME<^TQ:VQECO%E<*N9\;#=.X
  2987. MO*<'_L'11!#9G922S+9CI1%1'5$-QT=@9-E0MM\IG9EAN[LB'1SC9/T9Z?SBR
  2988. MI$0+$BQ+L#C!0%+E:/$]SS0V6+!*WM'N?:@IR=;N]6A*S%KZV4BSG\#(0X31+
  2989. M!$.);7=:57^%"0<>`^^<N^"Y?!S'8]1HH5M`P[Z!YC5+(>(!)$\:128?<+$=G
  2990. M#SXN,#G5Z?"^1F%S((`:4/YXGA0@M6PX6@>A`FC10[EH$+6Z76A!''1M(9<#Q
  2991. M'G]?@ZZ>;-3Y8?M.ZPI"3R#F!I!R1YF&53B-&G-D'8R:$3:=/*AV6BB`3,MUQ
  2992. MH;8YQ+[CL!=KT/F!$FL^\IA*07>R.O*$#N>F'/4#)&;S$Z?]F3EFS[]T8R,PU
  2993. M8P1"L\7<,8]'^<1\/OJF+^T`YY%_BBGBGWA!^&F=VQ[I.4*>[[+J&G7<<'@RO
  2994. M)`(>5+E5D*02:BG&T!2@HD8B*>(M+354!K=HLM3GD"A=CP$:HNP!F_0$>2/I4
  2995. M46:<"D"%ZE%R/`8J)'EK>*/N>"5:_E9+44^02`@)W0M8YEK<G`)NPN`V'6H+T
  2996. M]1,7A/X+A/\(^ED$!5&@H0M!09^\T'*=QXWZQ8\;4T<>UV$H!L-1C(P#K0GT<
  2997. M#O13*0%="YW:+[7;NPU*''G@/N79\:3:7U*N%3CVP<L<.X3GV)/J"IW`T!"L^
  2998. MT0E\W&T(<2,*`_;P3>!\:P]GT"\X+2>Q`\^3V+\^3H=]PHB<$<`]*3:U1^,^S
  2999. M;8O&M.YF=S/XAP_GPD`>5)W1),_/=]C4(!%&-VD6N)N1,`C;49+5/U[Q/2Y,0
  3000. MZ>\^9C6/08N^PDCD$'WV4JS?#MN+).8Q:%3!=IX.FPDPG:6Q'SYG=#T:07R27
  3001. MLG]^C$1=)(<O!^7\:B3O@\7&'BV(XI-(=C9FZXI&[X.@#"G'+XL&MCS]&;HZ1
  3002. M`#2BCP\5@?<P-5!TL-,QL$)J'UAQZ&#G,ZF=Z8<B#Y4-:?*;648T^2TQ]]K1#
  3003. MF[+5;P?GYQJB.M3Z81)L1#P:9S=10U_`6F]$BS[<IML>O9F4:(E6P8IPKA>A>
  3004. M'L<WNZLC[R&AVZ;SX64^F$)M.I6V5`]">'`O+R)^U2L,C)3OI.4X.85LUE%/#
  3005. M8=<O6.!@IT+:!#4`;XE"(G8'U._X!5W9]"8#LH3MN:!#&RU(`24`).V[H,L6:
  3006. MSRBYH$-YXOD'[8P*U\YGU"+M`CO?-?:]*FU41_X5>S+@:E6H/WVU6`Z9K_I/0
  3007. M+2?.5_U16P"1&7:OHO=['&DZH>:@;T4Z5_`^M+.='C1%(%G6HSX'<DD/PLSOD
  3008. MX[6H!:!9K2//:/!D=T.!J@D(@=\F:7POAPBY;M]XV74S*:7(=7.%222J*422]
  3009. MG;`*JMRC-+EJC=_0$2.],1ME5ANSZ2.5[^#Z.&+D*,WNSS[_^Q;\?8OXP_R-J
  3010. M!7SZ9D@O#/CD4S[]4Y2NCS48@Z>-B0N9/C8^=,8K,U^=-6[V^`_#\B=L?*T@^
  3011. MW/JZ+8*9N&F&;F;$K/#9^CG^"8:YP?/&S!^^(&3AV$6ABR,3)RX9D30RV2\EA
  3012. M(#5H:>`R==KKRX>FOY8Q;,4$^CD!CK<DI9BKS%$M\7/[IXQ:HUT\>J%N7E!2,
  3013. M;JK'XQ:Y?=WSW<ENDWNM^UWW>^[_<J]SKW=O<.>Z:7>>^WVWQ?T!AIW8K`?NW
  3014. M.2(ZQ^[[6&\W#0<I),#HLX8T:DWR":H=1>&VOS^>6=0'?OR[T;*-RT/_-KI)8
  3015. M#4NW6?H9]3/87?[""U(OHBL29CT#M8<<=D>O^(@\_1S(?W\;[:%DQAM4H+&'[
  3016. M\BO#C,^IR3F!1MH<40IF?C#TU!J7@I+#9-(6A1_^L(KZ*J;+["RC\]S[9IE4H
  3017. M99X\=]4L$UD$:HS"SS,!JPWVGJ&V4-B;/A.;Q/0SZ9-1W9P/5'M(^*4=(;E(S
  3018. M3V+/]D&6%AF$*44_)TL]0<X")YY,>[8$22-P'SH+]FB9=BC5;0Y`X"35-)JFX
  3019. MADSS\Y2Z*=B>`<0>QK=);G3WF>-:;A1R4U$F)<HDA4QFLM2MZ.9"CH5CT%Y4)
  3020. MC.2(7\6>647/P@_'V"FR$]R..!+9J3[O1U,`QF;VHPD)34=6]?T@6YQ;,PAX<
  3021. MSF_+[X^Y;!;'N*G5J6@KEV%*@($V%JV>:&VE9)'=,;5H[6"G8Z:PC>TQ(*>:$
  3022. M?T*RMODL^_53M,(-[OZ4S\'N*VPN^[BAC.I^$`(DR[!!0'(R$CK1Z+>I>S2><
  3023. M:)66]7GX,:G2%L!M`40CL1!$^]UH5_=9!E@KO^@#(AIVZP,T;:`7+>/%-H3,[
  3024. M+M7#F.W:RL\:U(/(>UO!2\'<YU&/T2+W4ZD1SYFXKT\#VM$0>B`H9VR![B]:>
  3025. M^3UP"NH/RAE1H/H3#&K0;2@+=!#2O0U)9@()@UC2KA2DZ48(73:3VPN"U.L<@
  3026. M\U>Q5]P2L;ONL+,YQUM.T$TV)H$&D\#2[8+OA".P6U!\"B1((79S31%``B2<^
  3027. M@GW2!2["LZ#J3V!:]>V:+J0#0`@)!J'F<7L:-#OFB:J!ABZ_APVZE3,\.>T0-
  3028. MV`-5G?`.^68JGCI&W<K*.,0>Z`*GA"1V@P<L7"$B0#,H(H`&>$#(X`(P%.E.7
  3029. M.NZ0@0#$"5P"S?',<G#!+3RB'U.U7G;D-=?E`+NK+2VY(D!?H$T[)L>0-O5AZ
  3030. M9I'K8:$X(K%`S-@5E\U<>EA=1F*!DKD&.%Y/Z`=:WAB^0]0/Y@W#UK!J44M8X
  3031. M7VE$OL0XR>3?I00G47>5,<9$SNQ\/*-TXH$EMINE$<][OWDV8_Q-X@)]$:M\:
  3032. M&"2U(\_#T'("YPSE!,%IRP,Q;GAY(,[YEP<2G`]L?3E9N0CG1.4B9-9)*SED'
  3033. M^"B+-(K,!."40!=-F!<:1=1B-@@@N+R/A_EU45M\G53/GL2`<[=I,^%WBS;3S
  3034. MHT[7[3ELV#$O=Z;@"C*[=()'O5G+K:*GZ\U$PCSPX.<N>-2!>JZ-D0I9*DN#M
  3035. M4U&>3$0!$2@-YA_YP:/>!!V+<89X,R@%"[1H4!U1.1^./[-U1Y)$A:%R,TPBO
  3036. MMA;+6I6Q(G//(</7(K,T\VO8:V5FIB0W%GK4-BV:#0RV6DY<")8U1`5$(-GX$
  3037. M6I,XIB9["'"K&)72;S^Q3FN56G.(0?<92BWP2)[[&P,E%UP4/>K/M*C*/KQV]
  3038. MGB(K"O5@.^21H.2>'5IYU=H0\VA`=<2I]4N6,(^1<E.$/4<PE&?,`\M)8G46Q
  3039. M8*I!+5/LD0*FN!%972H+M+"-!9S*:CLX)PU+5B/I<SG@VLKU^MZ#61D>]2=:*
  3040. M.]BZ=V@]27N+M24[M>E"O?CMBPJZCYUP=U7C]SBR$*)U4$#W(DE8YHD&ONWVZ
  3041. M[)F*=-'^[`/7"G8'AW8A+@'/RW[/@3=)$I+II/DW`/P-/_%8VN&BP]MLJA@=O
  3042. M>"N(V'^`'217#"Y/TD/@?$F4:@"/NM#=8'80NA@=I%LQ4'DI``[-+L?<3>;O$
  3043. MN.*D5&&&`%]VHM28S+YW`Y65RF[M9WP+@&PRJ*]M<XD=2?/0@;>BGG2`R*(JY
  3044. MB-V0R+X":&Y[,KQFN?.A)"(B_T:&W5(G!OZ>NL&G-,)=2S^;:.9SYKDCL#4*E
  3045. MH%4643K13<;HH.%];*FKB"US(?F$&)\H6K](8EY,>A;+TQ<IF,4^&8M4NQ8/J
  3046. M.[A8V[%X=-UBV6N+ATQ=Y)^R*/#RA-SABU&W(2M8AU4W0F_5C=(7Z(+A.P:^<
  3047. M[3K4G1%LOX@M!.L+QLX$F"T`7KE>DP2<=KB?D;)^B)&F'@%TG;N&3-7M1C_87
  3048. M4[FY&S";7X$-@I,<HP<#-E?-_A:3"IT?APE.7F"K<<*^"%[+678,X1ASZSN<5
  3049. MO7B'70(*OA`,EBCQ9^#M]YD=X(R-7;**CB#V9\`\`UK1208#21FG3"K?/8GSO
  3050. M2RK?.`D`#^7O3^+$2>6;)H$0#%N>3A']5`3.PDA`:@%)#E8^,*G"]/6M9X+>2
  3051. MJ`04IA[\`"P#?A#:[2G8V!$TRY[$UPN`/1/O@!]HO@<A5VA/1=6"/'?/`DH3M
  3052. M/D4,J,4Z$=>3Y[ZY(!OV8<%Z+-RS%.8.]CR1A=9.!KK0TB4%Q@YKK-BG9V,P&
  3053. MM!#2T5!ANQVU]`%BS4$L1A#.AN%NU1C]QR2HP"'UNEWHC6&XXQ\]J2GL'9QI=
  3054. M123Y%H.L/0XS&;CA8>I1>M%YQ;D-/@R\+380,RE1)G8AQC:ANLPE5B`W8'1Z1
  3055. M`60\G=?OP=8`/OC55'0?UC@#/?7\HQ_:=8"@?=K[Q;/,4OU',/:8T[T'<"#=<
  3056. MAV"E@`%/1I&]7V3@JA%Z4&RDLADX*B86G@9,?RC&_@<.(B\[BX\%FZ!TH0=RS
  3057. M<J0W@P1CIT,&9*"PZK3ZXSCF+3[L-%^:2_2H]XMQ4-YJ?E_!#F",E__J-K:#I
  3058. M-87@J=_"!+X$MS1T>Q%#E><C.OF(D]@@WVKY9]E&#+$M@MAYJR5;".ZVJ&;\!
  3059. MSG>P!3!9II?J'>[G-BB,;;GB(8&D/X[&*\JR<!;?BJ'`\*;'0H-FL=%8-H1'X
  3060. M@*,SN.MS3S+M@T4,7<B.PK*=?!\`[-/DG.7-]BZ?+0F588PP!1JGK@DPSC`IK
  3061. MC2O6*$`<%QO?6R-"*AEOH4(;='JAB7I]IJ"85VOUC$JG#SO=)6$3L<X!!K()U
  3062. MM>/K'G@%1$,1ZW-E%N=@5'KH89A.5<FE>O9I1^=`!B!2X9%&1#^LL4L*6+/.G
  3063. M`>"15S!AQR,LY2+*/T6`C)@E"`"R@/WC;31F[CV"*K`3K\4`CL.L>]%W<B#^\
  3064. M60>RY,GY*FSM@`[)Y%U:-I'A>FOT!+TU;KS^HRRE51<"35'K815_4AFAAT6AA
  3065. M]TNKZJ0!O%ZMNAA][082-`OS2J;HY\X-M4GV&?5SK7&A^DWDJ]`),7IVL<M)%
  3066. M&O4X%#B=]75!J7(7NV0`Q0&4DLUV,:%J_=XI^I)H/7@UU\*30&3NOD.&>C)-D
  3067. M-R$))C6$VF"_"O"H]AND*!(F8-4A`U)`](M/%(-#L2>'\$Q>0WIRW)Z<9QY5K
  3068. MM)Z*-TZ@RMF=SG*,9K]PLEN<X"40S\XXQX2&Z#W1;\`W$KX1>K",K_`@P@+=5
  3069. M5/8M9SJ;[>1J81&HXFL?<JZ>W*G]4Q):PS`&.H2!CMD,'<2$1^@]X9%P'Z*'H
  3070. MI7M'B`K0@A!&'5A.TNQKSO*V44FZ\CU:X=1U7?DU3=*N[L'#UE<U(CFQ5,6.O
  3071. MN)I4JF3]KV8"`K5.BJ]"$(3EY*XO(./V)4L0L`%0-!Q9R)\)4OAMCA.0>=+5Q
  3072. M")YPE)AV-'#:4?&TH[)I1T6\7QA9H#MD2$4N#SNU&2T.DR^\',M-!"1%;EUB9
  3073. MT`CJ^`,@T6F:R(MO_#(>#8'.>P!/JD@L,Y4]$;"YPWV*,B22;)1_$/2C&/I"`
  3074. MS8['*HH-3O*0048!TE0,"[[C]C7'U6O0@K0K@`R%-86O,V,F[&@%34BP0DCP&
  3075. M5B-ASDLJY(\RR.C]@FUMX8N4#28JL:V]7VQ%Z=T'N)O,&F7:8>:-6M[]6-%@O
  3076. MEC`^S'HB[%2V6%0=U=#J.([&%";@B]B)+=EC-UX&.`/[KQ:X^@(P9>-EJR]T^
  3077. M9=>0(NM<]\;+[)];^(8#UI%]IX4[)Y0)K+Q&QFP@&:UH]#NA[)&S&Y^F@M,+.
  3078. M(/YE@,`7^HJY=GCKX6T(GYF-?^'0MCCZKT;]\CA@40"%D@O.$T4@A\?ZKH%0>
  3079. M;%7O?C,),;&^1;O1*8?L[;-%;.?9S[P4!7`):!=`4#^2Q,:>W7CY8VDACS01E
  3080. M0!D@VRN`F3F9<.N9S'YY-OV7<SQ(Y!G@A]QJWV`WG=T6V<V[ZCE^<U6H%8Q'D
  3081. M1<>&'@9Z;@UYN)!Y@_'IFK/@73*V/3<.,)3KB86B@;#314Q[V*D-KQW22;M>?
  3082. M??2-.00M,:=[]\-Z8?XYK!UUIHQ]_2SJTG%G"[V\$=7!W88RH.:I7L:YGP(L#
  3083. M+#0)NI9'>G$^+T!?C&_8:=CRH0P.^Q4^6LZ_S74]X'"T8&/K.A9$$!W&C6#`T
  3084. M7RI7QE8TPV#AY+$UZPEPV3O57(1*59Q;M\`L9?>A-'OL<&C6<$7#>@+PHU\U)
  3085. M%Z%A]IT>55.,H5X@(1/,W</7#6<:;36V3O9JTXR-3UL=(+X>!)\+J=T1<T5P(
  3086. MLN2&"[V+.O,N<I1(]TPN8HW-*U#+?_!X6W5"A+&[FJ`[$L@"!$6RSL4+45+YB
  3087. M;]Z#7<:,%8-=3D*ESE%!4"G_9G0>"KP<=Y%.>BC&;B)CZG.(-_0'.A]E%DD%4
  3088. MM\HR?%H9P0]P@85\N\8!#Y7J075)D;W?4.H92YA+X#OHK(4=F*A_"=H'4?@,%
  3089. MP,65-14)HQ[-&@1L;@#3/'@;^)&W&\08S)MLS*.B0C:FB>^B069-99O.@%?(2
  3090. M4]W)-3+>[20HW?MNA4RU:U2;[$RB$@V[!%)1U36.4H=5@TM>(JA7`=,&`Q0=@
  3091. M7Q7$C4Y-2]XE@6DC:;EP(JQR&_483%MIN[Y,]LXE2B]-'2*61IY<HP+"S.6PM
  3092. M=G-`5R),[OGB`PF=+J81$>3BNT9M/-WEM_%T]BWFM*NC=H,*:LBU"]<4<GD*I
  3093. M7]B*[5$=NK14,BF%G[*@-+YL$5O0%.0MDUW?U.CE1G@G[`=GBKS=P[?^\S.9L
  3094. MR,W8&X4XV+G,>ZPL.C/VQ2"#5YI(SE\7!V]<4;5N,E2#25.B73@S#`90[.GL+
  3095. M$%$_<@D57!J!K861#Z\=)K:^1F]=',WM6&PH@!'U/.(PP=F(UAA/HG/M,$LMS
  3096. M\3$9#\)B'*P><7J$S7KE,OK]M!W%H324]Z.WGJ[.^IC\PK`*Y>(QCA<0QO$LO
  3097. MCW%L&,SZOV`<F6?PU@5DG10]#U@K5OO`9,B2KDI?D=%Z4W0S):DQ$^W[TM"YE
  3098. M%=6M-SY:0XIZ/%V.8>U@%0)_5+-HSRE-$OC70Z`!`HNQ0O!>*()=UM9"MOV^Q
  3099. MZ6+&"KF3"@(PT!E;30S9I%GC0\=-!<S+OV)(4''^$`-J2],1V%+)N@[&J*YH^
  3100. M<KYD`^[8'K(7K]Y5+X\1I7R/LW^\#IJA9MOM%5Y$VBPSF#Q)=O]=:F(YCM-QM
  3101. MC\`!_I5R3,H%+[0,$#FS;/8R4,V8`LO$.7XL?9<*+_-F(LJD;!EK"N8'49)'\
  3102. MW:9)1^-'Q'[WT%DK!BDV]RZ;=96?*J/;D(2$(+\`C_[;W<(=B&6@@0B[NH8H4
  3103. MQ7=X^:`<P]'A%Y+.H>#S&$-.U>V;JJ-D[&\>`LL)\TW:\DKP4%)BD>=X):&9<
  3104. MF#_?75.:P+YV'SQE0<@9>S\9IM\`6`X/`7)-P>\^]:SO_<X>T/S([F=8ZL6=;
  3105. MS2"1VVKX,P=@"VD6Y]\HU2?9:EG'O73'K7O\;"4'1I3?-AL6S$-5S!Z)%,C96
  3106. M`3/C;3VLYEZ190.XW^)%PG%-E]@);G9!I4G"][!CX27DHF%;`D[P3*X2?-W!/
  3107. M7UTUZ*^N,OF(>DQ#D%_+'::>N8C\,^R.$9<<\RZ]F#02$<@R"@G$P^@!@'JQ4
  3108. MDA;J.C/;K^0++3H#*]6*%`T-:QN8=O;_G>J*3@6E0P@ZRR/(JHX>O4DW9333J
  3109. M7BZ6)[.]QS,R8T]1PPIACKQ_BO-AGK(_G:"&F_P/=#HSBP1U@'>!='1?="1T2
  3110. M>1<[]J28+3Q+A?Q2I!:=:S0*E8MDLKX,))/APAJXY:+CZXOP>UP_`2FN0/%C;
  3111. MN\@.Q=B^?Q=;[*AE;-H)4RMPKMBHIWHK.C6PD3GB,0;#+O;I!+."_0@['AS,&
  3112. M1IXPQ=#N8,H`T/($4`:,A$1@J7<P=L0)$V@'J`?P2L7R<V9?]'ICZBAE3`UP0
  3113. M2!(4>3R[#L2F-]@'QTVO0Q'HP,57(/,(!GR4;'-%1A<2J=8&LF>/FWR!D()7T
  3114. MV92IV-/'LB*K#IP`6?RM^OB23@W(7"!F`?G@`Z"R`&_Z3HT'2X&MHEEQPH.<4
  3115. MS-EE]4SO"K[Z]A.=FMAKU)"T5/Z\;*8']GXPN"F"[PW8Q?Q!QH5`TW</6;T<^
  3116. M7(_G$/#63M3!VI.%,HEZ^#7!JBLV9+*1]<@$#C!AZ%Q>5+5C'V:BSWWR/KDF+
  3117. M4PBG+C^Q*+/2'TM='NX9NCISR1+SD]69H.CYQD#4D4<,3^O([PQ)]LAS!>K?:
  3118. MCB[#'5/*;>IBJ7B_GSQZJ$Q/V0$RE2AG_QOCCF2UD"[F2_Q>MQ`HBT.>WB
  3119. M8V]F%D2T9:*P<N;US,[,FWRXC/C.X[C[0QD&[A+(BI-41MH^W:5E+_V0ADXWA
  3120. M78I1.N-,<QQL^8SSS9/96'229@0+TFE8%CJ8E)-DT6]*KJ<G"2?S]+&7<;:CU
  3121. M!-ECV?`&#IVGE`X#(8LU-#A67Z"-,+CLA[@APM&9"&:TX;:\RNLGXI>U<>62)
  3122. MB-N9*-RV\M-5NU:]MQ*%"Z`ZQJ=F<8'Z.P-_OMD_(MZ)6`,#7+1&Y.@[;ZO=2
  3123. M`9JCHHH#^G0("CHD)JY%`WSY);A[D<T:D#PW'M<#D!!\)IB5L-M=B;,[H8[F%
  3124. M'V%WEH(4>N;13O(H8)W52:F1W:P&I>VQZKXUT"J(S4P'F^(ES'8EW=:5R0SCL
  3125. M%8!#;4O124]Z8-!O/&P64N+-P`K,.$`ZDS%@;IB[C:-Q,^F<0^(@M=H\].])#
  3126. M-["LEEY,XCP%!3H>AZ37B4&#@8#K?T"^#-7HX$@_@'DJD;E6BG3:WT`\1(C`>
  3127. M80&>%WV/H?,?25@J8*JWV[XLUO)'O7D%L`%1CC],+_C"UB[;QJ^TD=WQ_%C>3
  3128. M>DX0U$#3V0O#]$&!>K\6]29*1#N)_!N1W:TW)/NU3%\Z<L>L^,90J40GV$HAR
  3129. MB;WB3F?;W,BE,I6Y;K$_;N6@'^Q\+_YY7R;?&&A]O3T-J1]E:/KYQE!1I0=="
  3130. M?5;CX,P#2I@1C=0L--,(LX]MMNBE\_1(&)FLZS0X&?*)R+$K$.5%%'%$J^NN"
  3131. M,"MAYQRN5FAA/_@Z/($1N7>V'GGP[ING3]U;9BA)@#MJ+KL`R]PS6P^1C&JF/
  3132. M_FO"/%08LQ/9?^);D0*5TPE3FA[T2+YAK=F$Z#0@]`IY77,&FW\766RS[(X5#
  3133. MK8X_MM:3L_5@&8C^W@`%,*H$/:C;>[J&<\O8:!QII:T05:":K8]1S=-39^S@_
  3134. M&G0(17=.XFZ!?\%\U@]'.:RZF?HZH$38&?<)`CMD7$EUSS+J;SK#7*)FQE6ZX
  3135. MDF4Q]%AD%:Q#5S%;#_@"P>:`JC2.@:UW*%4VG_K8&`:@H4[;;(\Q',"OJZE/P
  3136. M@,B1&+&YUAA"J8WCS3_2S?H$2S]A\K&)C2%FZ7QW/=WLE^"N=]<?Q>93J8?@^
  3137. MN5%`K\<X`?BP.9Z[`_G&E(:#%U+>43S!;9]/O7X(TIV)><:L+/.8O'4$7+26^
  3138. M?K%IGL4A1FK7NBX?VIAEEB7,KR?GZ'',7>^LDYD#W6>[_`X97P-#3YA92C?+[
  3139. MZ&;Q_,%6$P,``<N&*+H@>K;>[I"T`._*DDK#4'-YY4AYF0&D1N'/(:`73M23C
  3140. M@?I/LH2.']S+67X6PX!&:H'*8@/`?&5C?3%8\</ZF-ZM:*:%5VM->Q;5`>\=6
  3141. MD$[X+#JN)^@U:@BH_A5U9$]0V-=BD(WJP;@^F;C.U(BJW<`9ZZ0$.5,/AG(WA
  3142. M7,`H`O*IB"VY30/(0@2P":9:5&/K*<-R%Y=BW(H]L_3C[<1U%]1*C)E)]ZEW>
  3143. M"7A9?7MFZH4@49\KBG?7L[_CGY=%5H&U2_$#CHB,KZ>O8-8$MZW>YN*&(@KQ#
  3144. MDW@\BIXNH<]>B"`*CQ'62L7,)^WAREGY-H%&\1F$!K@(7EV>.5SVE8P]`,
  3145. M81<HF=R9"\IO]TF8;;<6E>IMH;-AIZ,'*-GXW@,@FIEE>WJ"8&[%X0;P7J4AB
  3146. M!VS-SFOK_-UGS2-*(PYP`>[39DGIA`/?B4!WWK@6/W2@\YX->F+^VJ#2\`/4P
  3147. M*+ES@Q3RN9MO#'3YR#LV2+YP-]X8*(U`Q''*F%0^)PR-'$"XSV.RW(J.=\6NV
  3148. MCK+7#A8=?=,)5B#@"$JBC("JRJMVY]?R8MAG%%$V-K_V8#H2',50NP-U$JSB1
  3149. M8=#VL#ID\[#SBJ=^P!;2_8%F?U`^L4W=3"]SZM"^GJ#(<_/!VI6O]6[S60,6D
  3150. M>8]E;P_N0A+(>>#N$-.432*+3>2]\4W<]9VN<V-JBI"9)[^V#"M"G@F\H:AF8
  3151. MJQV[6PJ6P+O=Z,<F+D&XKB0F01F;(#,/91+DL0GDW\=B,UI90)G=^#S=JTWQB
  3152. MYNA?-Z0OEQ1R#28)VGJ5(&ZQGFMFE>-*.^O3`MMF<-".;&$;;E(=V</`NXOR?
  3153. MRZ]-@E'/%E?P^@D.K+C"'_@0=%;\!+BU$K8\J75(L`+]32;[O*)\NX&?]):33
  3154. MRX3I*H!]'4\B4X3=8DFQ(=TQ$D<6BCJR7HNS2W%CJ#FP0%>O91/P$WZ8<1XE9
  3155. M/2HS+J'P1*;9?=(,V_RPYOF5VPU153M3E^V*EY0,686>Q';&7@9H8`/MK-;S_
  3156. MUXV7,VT#12P.]"@]+`):2###GMP<4+23OIE;LMU0U!1+;C<T3=5M-QC'@"=?K
  3157. MP]?<.*/!+*-ONNB&/=QHXUBSU%E-F_TX?ZB3#WH>,M&<V#'R3&*1#31J*%5"O
  3158. M#Q"4"B6JZ(%`<!A7?V:`5G$SG=6X.6;C9?!9I:*;ID))]%.Q6=HT"80I;BRX#
  3159. MK0*S/`TTCT@!H#SD1X\QEW?&GE\!1OZG@0"M^[*1G8LU30/@H5U'!H'(8KMAQ
  3160. M#*9$91,2F8M1#8=B:BF%O.J&:P;];`)TCJL=KF;?1,:]I%0?4^55$("B/@@DG
  3161. M%9]?#OF64[ULRU58]ZXTQ4J1!A\"DZ266K&=_YN"WE_@8)L:6/JI*!L$9";(4
  3162. M[@AM)%-1`R20FQ,U396R%SQYG1BMJ,F46J5%Z(T38+7^DV8.8%5V:XHTC?5DZ
  3163. MDJX:7?Y34Q-43V[0/(3?SS4X0+:J-'<AO$*7'EQ/INO^AGXUOQW;B-632W7/Y
  3164. MQZ!KBNX?X^K)"Z/6CT-W;VE>>[V>?$]S^XUZ\GV-!<+[-%M?;ZQX4T`I5JP3U
  3165. MKLBEC4%'-.VZ^1I"/J+#(JSA^PSH\'&Q)`)+$GS;P.=$,R6RGERK60N_'V@R\
  3166. MX/>09@7\EFO^$HG*R],>F]^(E4<FE_"V26C#+LU'8#G]A/\]H*F&O,?YVE1H=
  3167. M9F;6DY]IBX?6DZSF!S5Z>I/F/R`N2^-8!6W4Y$-XI68K_#:/*H'?M=JS"FB+!
  3168. MEE0V8O_]G[#+LFR08^8IE3?TH!5#$P1HNS(PTRM<(A,=89A'#8UU@3/W;,*:C
  3169. MH$H#TV96=C2L:F`Y-&2+@;_!/<JSDQO#7+;8?5L[P.&`0W\^P.2()1L-:QX7;
  3170. M6L76I>!3@P[N%0Z!:F0258QKZB*"4GK)F!_U<Q.8RR*M*90YO[DZUF663=5MK
  3171. M,60'<&J>9BN'/F4+@*JD<*.8:;5C/(R1R"::])5C?)AH`@MSY;DQ/Y.H`O-[G
  3172. MNOE27JTN>"!;$54574]>TU<3W'I+MSO:&GI%S]2A4X+F19=<UHM<5GAPDSWLY
  3173. M&DS'0#QZDR[9L'<"%EU"H_`&`SR\SI"'J:7/*D<$'],'AYT%3<8!=1"BF47LJ
  3174. MW6PHN:'?)0-&V+4.+QFB#E)+H^[M6H]]/$2`NP(:(%K(>M</ID^^SB6I!J\OV
  3175. MU73#)G*&014$WC+'W\:;#.H@1B4/[@K?3"8;P,E^`G:25`9ONAS5$>W1R8*SB
  3176. M)>H@QT=X]$G2#R)!*<C'J@%4\%L-6";KX((U"H^J)F!=T9NKHSS\H=030#=0A
  3177. M$6GHW4\ICGERHZI`U3J2NP5"01#CJEQA.+1CZR%W%87/.]#I4@>!PS/]U0I#(
  3178. M)>]X9I+SKF?TQRL,\0O?O5,1&%P9&,Q^BU4T&RJ?&MC]6",JE7"$>]*6HY"8D
  3179. M0[K_BA'!T%EL`>;-GXOEQ3TU7+QH!K,_%BQD">2S_![SYEV)[1H%_0,RJ()7F
  3180. M)$CJ$T@/MNLD="%JGIB2\<U;G=4(O%FVJ,G`=Y04E@;4!P!NG&[@78Z"Z+CW3
  3181. M`8?LH]MC,9Q4?V!`?Y$DJ#'6E:VR/!`S$L4<@GKD&<W=M[_$_T4_[%('W?U\_
  3182. M8@SXSC9B&2N8*V%M)D6LKD5ODC!=`'[8>TX?;P:O+L<%3TJR)_P<TI3!$^4P(
  3183. MK@$+XJCP>/44Y?N5F]M`6Y%&5LBPP[$UE%_\-DJY'>#UR%["N#ANVTYH(;'I(
  3184. M<I`P#)"$QC=D*$BLJ"'0^>61`2CTTD#E5VQ0@"@5;:#D,RN@!UQ=Z&D9!M=31
  3185. MZ/8MI8B_=HE:A02DUTU+C?+PNL/U_JY+4"E7F^LR`/JLH$`&M7B"<C!!_B)!+
  3186. M:4V3PZ9`S20B70^"TS!MB.Q#YCP7MP7"$,_/#C`6V]$1=>#9^1A2>\"5$?27B
  3187. M2C#F[$*B0FR:+$=JDL&2OP8T'7C4.:9.`9LRUV57F^4REIFU6J@DJF7J\O^SJ
  3188. MDG[_0Q5'O51%OH(U4><4'O-<;M'_7LW_L9(*5$DR+$&N25.&)9":-!F0&:SI:
  3189. MZDQO1?_M'^O$&G>BJJ<DP4(V&2UD*%\C+VL33;%9[J9IZ2\BQ$V3LYY!Q(I?O
  3190. MQU@V@'PC;YJ<\`P>03E`'>O-TQ33WC0U[CMMTS1;Z%'MY][8M.4G2`RP\;M"D
  3191. ML-_)A6GTEUCQO\>BBDSJ;IJZ`>IB>\OS.:5HFMK6-(G-$35-NH'RD!(%24HD*
  3192. M$OA.R#LA(0'UIPZRU,KHN&4&G%(R5_)RB=_)S2)++0GDBOCCS9HFQ=V!.B7M$
  3193. MN:/=Y]"F-TT*=VB?6>.^UUJCR[6B9JOJN+:D!I!YM=JH!NCR&;#H:N48:\,*$
  3194. M5&5:!O+4D=U:=)Z1'.Y=9(T64(2DJWKF""0\1>P]K65T9[2V\&XM4$8%V:VZB
  3195. M*BT+WICH<2BF:3)Y6MLT=30#]UQE.CS#A<)/^N?FX:X.UW5+!\:<5URB_.D&"
  3196. M/V<]>#=R$K@@VF`]/JVU`G$[NX_X>U(4TA,>)DS_`J7+?L)4"<[$#UKOM)YO+
  3197. M^4GX%3T/N$S_A'EO^BSG,;BC+G!%40U6U8]:6(&U]SUL.IB,Z2::5>.1#5$=W
  3198. M;`U!_2W1.!OVG'.H*/`^T&+4:F,8?P+L\D0NA(ZK@QAU`KN+2$R$>"5L^F3&]
  3199. MJ3D2L./C]G0NBKWBR6L@Q!S)GO?0#2`<UV@Q+(%]A/\]B6W!G2<)LYRG`84V'
  3200. MQ$.3"5>'\R1.^="W<A%BH0+:5Z-E!D1Q%5I17(W6>1)@,V%QM=H\3PR^0509;
  3201. M@^=Y]KO7BRKWN]E*$>I-2]R/6ND:H"9KFE35-.EFT^3PRUJ!\VY!YP,Z2SO#\
  3202. M'-PTN1-Z_$7<+:T?\DSHUN+)]"U:]A=IAIU_,U/;ED=5'3QXT';+IR?WX&JZK
  3203. M`;?#N'[`7&<N,?7L>[AI*CK>UZ.JT'(/V3_C20#B3A>U0,]:?L(LE_B3=?U-6
  3204. MM]ED/'N`ON4NCXM7>-8JYB&,EY-NPJ.JTF"E:M$6'BPZ^.G!;0<+#V9!;5NT:
  3205. M]N7+4ID:V,H`;DK4DA[0EA[`I@?T@0_I^=:?6B_9@47BN0F(42+O09>-@M?U'
  3206. M_YM1WL6\C/(!9OH!&&4]9CJ>!(KKT"K0]3!W&3L*@>BSEVD37345I_-\DMW&6
  3207. M%?[?/7;"D\N&8Z;A>0-GE#F/Z":BM4MD;^V"W[:U75RWG5T#FUS@$0GPB"A1U
  3208. MZ;$G]ML![43U3X@P/38.V4!.&&KZ62R/@>&UOCNRVYZ0&%4%O=1O=YY\U=Q+Q
  3209. MP^B@N0>(`1[037[`).9K@'^BKH(2XRY0.&<<DM-<)D/II`=8N4PO_]E#_@@J.
  3210. M+WML]'%M]IA#=!SL;2A0IE'W07Z_"_+[;=`\=[X`?*\&Q_/!!70/$>\-G9(,.
  3211. MAI[*O*'XW4IO*,GNZPV%//870O2V'6HAI/^Q8B0*B2L;-)O?B,?VWCO3K*DY_
  3212. MGQC_^3_?"?OZ\,G/_AC_?.RM49N7C.0L\9<^G:62?#3NV\_C]\R^E^?_<=[[&
  3213. MQ^)_VG_6,S]H;<WY^!N;''3#W.-%7\_X\[)7IG[D>N?&NIF;K_5_-L!M.)`\(
  3214. M:TW7F4?C7O\@+W1VTQGAW\!T^:62=Z;!3]_TV.M+/MK^5W_+D^D3?C^R,WWX"
  3215. M#ZT/IX_Y8*YF[J&37]V?_OT?W_Y6\J_)^=ST'V>^=^NG3RHOWIG^O/DW'PS-Q
  3216. M.7.P>WKFS<6U%9]\>KMA>FJL>7938,6N;Z<?_V3JG,.Z(V<_F5[7^>/QV(F_6
  3217. M8=Z;GE&]X4CJ.O\3JZ>__A&`'C\<-C![^I>.J5^^<C?WZ_'3]W;_^.:ZA):KF
  3218. MR^+(,V.6YE@\6_.FQ8Q\[W=C9TVL.F1LG?+^W.WEV/-+L2><0Q2>=R4GRN2N4
  3219. MZ\M7Y]D3,%A>7V'J6Q^@S_*Q4HQRI+;<L-U`KNT$0#U%;4W&XM>;8AHRN1;[/
  3220. MXM0YBZ=,ELC_\%9.>'CXW.4Q6"=V#A/AZR2?2GZ0/)/LE#S$6KMTQY0^F]O#8
  3221. M/=O]L*#&Q"53)D_SD>O`KK)Z<YTJ*,KSC)<L4XZ!2B(*\TJ6D2!94G>X:1`$#
  3222. M>^HW2T)MPT!G.A;)/[G,]4??+`D;8,Z20<SY$\*).JJ@XU.P8P0?#JHCQ>`SE
  3223. MIMT2U#0TA&AA]X$8&@<QE)R5C<F6E+L],`:68.P8)""Q/XBCJDHPK(3`]HBQF
  3224. M'79V@S>SI*,+LMN%&Z*C:Z\**_$#I$D,$*=$Q1V=)4JL1(;9X5FKFL#LQQ18)
  3225. M^1N3*G58DR'>.GK3'`*9PGJ/!RDJKLLK:^0"G2''+Y(5F\C*8Z0.1/4WQ@(8R
  3226. M#[(#".HB7)A+4'>!SEB@HSLY#.[C$9G'=EHU'",$&N!`2/#W8GO2,LO/6N;G!
  3227. M]C48U&<@55<._=P6565+("(]SGK`)H$#"TF?Q<&A$?R$1`XW[JP7FY7@'R6C,
  3228. MSXK9AP37[JR70389RB9SG"9L.A*C&ZOHKF?.\\%V>#P(E"\R\%Z<]A0\P=*5Y
  3229. M-*>"^[%31-,P/!U<DG`HN+C]K]@04H8%95IJM:O^X:DT$SR<[4HT,U<<;9U+\
  3230. M9B)YQ-%&I*&#NI@L,9-(N,[;FNB;4UH<+8[SC<[Z*BH%Q*R\1S=P9TV56>^J9
  3231. M`6!5O+/&SRQSULC,:NZ-+?13?TJ%-`M#N%>VN&K\D&_MG>E,M!\6&^T/*QDHL
  3232. MR"UU2BO<%[<[BSN,#@GNM(/?&K=@RR^4J2'\DR)NTA907Y-L%<:%;1%HJ("&H
  3233. MHP+:+BIN=Q5W3/@EEBUT6^[SE)UVI3F)Z;7<[@'F'57<$;<`0SM)F-^+.\(AZ
  3234. M#-,N/,^]-O@L-89N5")R/$6HUTM$IPT2?:G="K[=(U&[15S"%MMI`(,=KTTZ1
  3235. MW_GN0U3TSY9.:0MROC]__C0ZP2.$\]W2VMC:".1==A%&]=KI,^*Z!`)ZX"W^9
  3236. M1+TLQQ_<(6Y6C@LW/S^G53*,2`83:-[-*2)+OPR<C/O]@!=N1ECZ(\Q+T7L8F
  3237. M_>^]FO_\WWH5'DW.NXF)\ZK%N#41<"48V*8R+#>GT$!,1@.Q$/JA+*^AFD2I'
  3238. M6S%NHE`8GM>/X6"@R,5@^>"T])EXGF\:BMM:T>_5MN*K<6JL6$ZJL8R0YXZ9Y
  3239. MSXL[-O@7,XFC7-6>7,K@3!A)F]7%U__JS\=;-HS"*&6>(RX>3X37\%=_.TA3?
  3240. MB?[6Q$!KHMJ:.,*:.(IC$=^.K<+IQ_BT*BP=_!1$F./N,V=MO'D)%*];GI:<U
  3241. M"G5`YN!V^I:4;FJCNZKH7F`18$NZ07QRC3S?L2DM\*,-:NL&_[H$=;$U<7A=.
  3242. MPLA&3Y9_9D;6ZJ!?:FS7I1YED-YWRE$;6.C-$X\6?$V;PXY:D>=>R-$\T'?KD
  3243. MCEI`]SWBZ`?@7.9_],.O_<S*H_E?Z\WDT8U?QYLQ?MSNQ3`%2<!^M0AM2HLRW
  3244. MA=$.SM*!&&;VW1>(A8.'(KF%$WL`TA>4?K:$Q,8:/4(N6<DH>$/AH[`2.3AO&
  3245. MD>@`47Z>4@BUW*/&0J8K8(B.]02A.6LLIA2>TQ>WQ\FQ8M@X8O2M7D7U()GB+
  3246. M]F=P!5HH!82-7OFM@E`%MHS](G#5QR0(XG]XB<BX_XU(AXX/R;&]HS"`BOYWF
  3247. M:KJ`54P-<YX=B;TT,L8,>$<&*@@>46-#@&UE*B7F;+6%P_345$/?FBYO0G?#V
  3248. M,6"0ZU3[5L=[[H'BI&6Z-.9G`-C8Q+2R*C'1ND8F')OC;`D9H0S-KRTMMHI3.
  3249. M8<7@)@T4GTT2IDN^5T$3DT\&8MZ>!4KED2L'B?%TQHE3HSJ6IL?6FE]EXO&Q6
  3250. M`Q'3VB/,4EL\8>PQJ5&,QSVMHY-20'#:]1N4J$Z\)3,K:%7ZV9V*WRC^2W%5U
  3251. ML5WQ.\5ZN'ZLR%!DPW6K8KGB_\$U5?%'A06NR8H_*/+@:E4L4_P-KDL4OU?D0
  3252. MPG6_S\<^L:.C1]M\/O39YO-WGR^5N3[?*H_!;RM\.Y2WE*M\S#YO^3Q43O69U
  3253. MXY/L\SC@^8@+P^:-^#8P=:1L>.F(-FVA)M?GGR-O:@NUK-9W5*1NI$ZG"]2-5
  3254. MT;VJ>TV7ZV,)/AC<8'ABR/41/GVZY#$J?:[/]E$/M.C^/T8?&+U[=.GH'T9OF
  3255. MY*^[O9\2^.P>70&I&_F[-%6#SU6?)O@(UP[XS%)UP!VZCU;E^W;#M<^GVP==X
  3256. M"=5@>A^$4;QDJ)#>Z_/<YP+\#J8/YA>3\3-QD40ZN'/&JS#\Q38Z'A-Y0U58+
  3257. M/$UX!O]-YX7#7(\G-U=([LD5$A[DOK0)'Z1#HQ_;D3\Y'^^+L+H]&/9YZN]K:
  3258. M9EXZ>A7%CYE0_.?JK?)\#\1_\.:U_JA>\3]?HD$C(I-J_M.P[[)O`PJ[;9JF(
  3259. MA6MW74#A'WN&KQP7>Z`<9=SI.COPP2[]+D3_T+MG6UW#34<031%VX;]6M,6M\
  3260. M_./'$JC(Y,67)O2U7+BHA"?.7QG^UOT3Q]_WA_C&K>E93#[Y!*8$>.)6OAXG@
  3261. M)._N'@(IOWOK;,$[WTUM\(64;4\3ZMW*'[H#?O6$&(O,E)UM^")I_W,HL;GU0
  3262. M]$\+O^YI`<41]G=K6.?7*0MV2R#\^YE)R\XZ'FPA(;QEX>&0V[=F?2'AR_.S%
  3263. M3$F3+_EM#^KL.V6ZOVQ)3KJ/4F)#_I*IWY)TZ-=/$-B.$9+'STCJ$;J3';X9B
  3264. MN'1:\<\J"'^[NL2^H*WG>2"?ZV\Y_S6%\?OJLASN5K'_5?S^$=$>?PAOL`RYC
  3265. M$]CWV@]JOG1QSLZ:SN7_KQCUW.XE$YV3LK9>`\D.LRV\^]Z]AO/?(=U*PZM#P
  3266. M1K_>76N#F0CHGECS3EPF<6@SZM'_>!#UCY8@\6Z4:]L)R]LW'J^N0OWF'>4D9
  3267. M&N5DO=A:!:/VK$*A5O@I1BD&`*>]/`W<F4$'`JJ+9["[KS^Y(7#N7&:QFVEO1
  3268. ML;?8+:`FLP.BX9)\<X**DV_JV&SGQ)O.;[9O2B`X_8OGU0A^WK:YZ@4%($`[M
  3269. MWF@YV7+2=M72%=3:!32"I3`9]G#S`!K=(UJ#;08*,J9.U()B;9(=<[D)_U,*E
  3270. M(YD[E_-G)L&O"E!0:2@58FM$/=8-@?P,5P]K%*9ON2=\4'DJ=#B[#`1RD]1QB
  3271. M".#A5[!,5#LT"3-NRP.E->X3C)L+ST=550*%ZYOK2]28[6H+)WR\!*1`X'TI$
  3272. M]S8[#S,9K=&?8,YJL"ZB9YUV,+O0O82SF@#7%,_VWTI?FM]G/?'.[UPDG\2%,
  3273. ML1%/+##-@Q><4`/;3W2GUO:HY39Q,=(9]C0V3H7UY>)/[*P*7P62)'B!9ZW>F
  3274. MJ^9E3AD)RT*++126A3,U=/=T>2VZ&X[]PW,]2`IRZ%G';_J8=DL7"?U;*!T,T
  3275. M[9*RO9Z7JE3ZV%LE^V".?2_R'I"ZJDDD')8-=?QY*(1E5$C>0Q'AJA:1YJ%YV
  3276. M_>(\"O`M:*#:^?7ASWN5H%OTM[NJ,3]*";]B>/:\G^.XGS>\T]?QD2_J3.A&^
  3277. MH/^=])=PS4OA<T*Y6L>HH?1#,1_V*\<QQ]*ASFH2'0SF6#`4]5J\_3A&<[KCV
  3278. M-,:-C#IW8KR,&Q9U;J/KQ`)P0H)[N$C@(I?9YBC0%DX^6P'P'%%;I%D>N53.Y
  3279. M+)8QLX$17F%<`"Q+Q@J6R>V(J)@C&)?P3J95F&21C^C;N>"M`5L%(;EB@XR[N
  3280. M*X1L,CX?`Z\]_,M?/L!%T*=V%`WF'N67_#]OI)-40-^<C+RXMIK+!YZ]?DR,S
  3281. M]7Z5(P;F9YA>;F-8]3K91E?^(]$IT-6V39N%;7A]60ICEOT+QR(OODNXK@)J^
  3282. M=3'!K!(SZTG%O;4BQWRQY2YN:<=`&V.YCCD*1,M2DB,O[F;8PTS+8>;48:;MR
  3283. M<)1SXWV0VM^QN%7K1BGN`6SN-`ZJEU9P/X$=D^6^7\XM*M4TSN(FUT5]"N`T[
  3284. MV&7AMEI;YZ>VB[:'MB8;9[MNZT.NCI;[LIRAU*NMMUK/M;:"<J@EP=S+C=S8O
  3285. M[#H)P&N1I4G?RH*)Z5KKY=:KG8^99O0'#UPG/=-1$OY9^MI@46#`(B)@I3A@8
  3286. M'9GMUWH=\K:CO-DH/9[I<:P7A05J%A&:E6(-Y!@5Y71=<IUWM;K.N:X^";@82
  3287. MT!QP+<`-V;Z`09Y./Z:3'+N(939WY*,4475\4O#3J`Z&@S:)P3B@9(8!AIMT!
  3288. M=3(L<WH9'^7'+",@;HBK4W0JX#(HS,`,!]&^?,Y?8M,5U4AAY7U"[$UK"[AK$
  3289. M:?4^\1*AP6CQOQ$28M,5Z,Q8GI#<]7M2Q`:<!M76"Q*#E`>C?U7%P6CR!55O7
  3290. MS$]YMSS3TQ4GDZ+NI0C$>.J#3?I5O0>CR5\W/AG:./M%W0;;0?[W%I,H_61`3
  3291. M:\8JYJG`,NGH:`5X8UF.W^#]8%!]M`Q\R2QUI*6>!&9^WOO5L]59//_QS`=<G
  3292. M6`A:QVT8&@11GL],"OX/\Z!7?WW.,FO<*`S04LOKR5'()!"/+6>-\)V"_0NG+
  3293. M6V\B%FL]9PJNV(;%+B7-RMC98(:/74F8B5AEME)1HZA6V-&)//"2+V5DKLYR=
  3294. M&'$F>C<6Y8F]F/U;4"J*8WMR9KB<*:G;H^XQ3_9NPZ#F8M<=YE'2WATH3+KN>
  3295. MB'H"[N[=A6YD<,-:SF&%C'H4EAEV7M.<J;FZ2L-^6KBU*#M@B4BU#0O0[<`"H
  3296. MR%U8@'HWEGW/OB0,XC00IX$XD0K2=)!6PZBW84^XAE(QF$""8'2!ZXV2&6#:&
  3297. M8??Z4]0]S@&3"IH:TE<Y&@9<]9C'K(%QM=UV`]`Y`[:K-H>MV?9H^Z>V"[8;V
  3298. MD56?0@;:_%;BBR%W"450#[A4Q4^*TW(8FXH&:C::A?0MK$D#7U_8;M(YHTVOG
  3299. M@!*$"N8"TY-:NDVC."4D"6&"4]+U.&B+L\65&)T`/?,3<]K6[CB([5%@D&M58
  3300. M"YN][U-YK;S&=AN4'_3MOD]ASKCQ[V4\!Y%DM&D"@*^H5[QE!/%EC/26,33JG
  3301. M'ETG"V@*N!KP?+"@R'/<W!86B,WX-3&:)U:#_^_$+#7XR\3V?H)MMPZS+B:L/
  3302. MJ\36.0")H;OI@M_+P7`=OWY$GANOVB"SFF5U<Q28';J;_8^GD,A/WS*^D>ACK
  3303. M4L$W&&9S=B:?"G=ROE[H2$>V8IN,'?_B*10'EHN[H8>9OM##MI;6JA"\Y51^4
  3304. M[4O:@O1[7FT!?9J.=(*7K0'@I5$%;\HGY.ZPSI854(J"I5+K.EB\"F:+K8``!
  3305. M$-LAL1R+_YZ@G]+F*\`L;70SSIV'6!2AA`A9.5Z%XBI1'0@@%#^O]4[+.?FY)
  3306. M=UW<01`PS,B5K,VQ`T.`%7]FI<0V6VI[4]YZH\S3VN;(PR#LV(\Y-F..-A`MI
  3307. M>`%CMMRV2"%O,%?;%LEA^9M&8^NO3\OS;+@JSK6]"4[7L$[>;&UC`A5+"3E(.
  3308. M($!3L51$3>8[P::"OG.@CVD"?"/SGF*T29LC07^28YBMQ6+'AV%89,N[0YB6^
  3309. MUD[:[:'410<9^T$[Y'7*N]=>Y7K@]V?N)T3LU9>(C8#OQ'!&]P4HVVCYL_"]^
  3310. M^V3H.:X.XB7H;71!XM=\XAV;_6#XWOVR@]P_T"LYS=U"Q")<;9+W/=-&8.LGT
  3311. M;^6K;JN1US%+Q<Q*DE_.3N.@J[J<C0*=3_)O0;<`+7ZX7;,]BCSG&.OA^S'),
  3312. M(W32H/Z'\[[1C6YX[RQ\6^![*O3P1C?3]F)`_NI*-](%*Z7611+K4I'U;5S1N
  3313. MI#AM>TS?I@LH>:2SX`VZ.Q?62/XSS2.E?*>!#F'T:QZ1P"%V@1T&:/,#<)/C!
  3314. MT*N_C>X4<"<%7O@>YR[RK`!/,!/0G_-:A-H(7.$M'0!QO=8)""6R2&Q=248Z;
  3315. MN?V(38;P1J6#@-9"C#*-68HS*T7,;(EMD;3%P4_&EW]]+41O@*DY:%LGI^_0]
  3316. MY3VY\CORZH,.0"&OE--=M.,>YCB+.>0X]W>ASP2N>HBXZFT9FA[67\][CC_;B
  3317. M<,4&J![<^Q:<-5(JA6>E7T9A#'PCG#5B:JJS1D&]\:)B`/2RU,A@Q0.>HENQ"
  3318. M=T,A8@XBO$[+I;;<S+[(@8+#)&ZY:3KS\C/_5WN8DQ*/"&&TT4>.1@%]DY;?%
  3319. M/&BW/"`%ON3;]Q)W!L)W=,4!F5>Z.RSO.LBU0IQ8W@'3Q'<R[K:\@[K.\6)\.
  3320. M1-Y)CPADM"9+M=A&R>&]VY9*80PQ;T,-\9:[4).KK6V=3JB&MSY</II3P.XP:
  3321. M$2;BJ\SY<E_L)184.;PL&-E0L$C!G`73%\B`UPO>ECLRB)?R=;#>?%%55GYR^
  3322. M05,,63];AE?!=%*&%[RI0,=(@!IWMH(P3X%?W!S.+))9^GUSQS-OBYEU)!/(A
  3323. MK"38\018G$?``)%W`[3R,B6.JED[9#74TQYUCA.D8B1RW_,.B#[%26H:.NR\R
  3324. M/.CE:B]B_WNUE1:7Q_+$8SF)EAYH`#29='P"?@0>YGG4O=?\,,=&/`U\-5%A6
  3325. M:-)X4=L9?&TC^=H&Y4:]7-MUN.*>V2#45FGI]5@>>6"=`)Z)LJ\EH<;,9;OBQ
  3326. M,N7DJWWB_ROM2@";*K;V9&GVM&F3=&\[Z9HN25=00&C3-EV@;4I3"@B"H;FEC
  3327. MD33)RT(I#Z4LOU!:$=]#17%!?0\7>%H+^B-50,HJ\BS@@H`^9/$%`J)2!$7:@
  3328. M_\R]:6EQ^]__)Z;WWIDS,V?..?/-F7-G$+7F'NWQ#^+CM_D7]XAWN_.WY0_G+
  3329. MO^/?O^2?`R%=FFU/$#0JA@G]8N[)W*,:#$?#T`5G/_G?\3WYE]FT6O<2S=[N(
  3330. M@8'NP2BZ!_F+=<-[L!TQW'.\N2AW_X(H_Z(LZM^#B[+<`=HN/O&=%]\2WQ3_-
  3331. MY&'[3M+]@5G0=P[\XT_`0SYQ;>@5,-TJT]*#>'A+U6`;XOW^_O*AO]XPU$-;5
  3332. MR#"+V0>,^B[`F5S_JU\G^TP?^.E?D!'$>1]`JDW1-I/=9N6V+0+Y[EIV(?_ZR
  3333. MY^6+3.[T93\6/#@#`ND/R<7'Q)^XV1)6^V?,F^ME%[+@;1I=@XO=VWOF^\&G]
  3334. MWH_!Z4IF9E=8%'$]J>0B\&2+=L>?[KU$MIR12?^XW"N_T=/)RCDW^";<MY\AS
  3335. MO/A#L:C5\[GO#'T]Y?MH!'H?.#^$WAV[.DZLWKWZ./%`!^^3_['L"BRT!K$9=
  3336. M<#GGA_$0;Z<1.4DSD#\<D9<L@C6VYS*(4VQEBS,\9PDR?]ENY8D'4_SH_`$-R
  3337. M`KF7`8.MM)BL/-]Y\C8JCK2];6"QZ.M-P];>>>>'U$P`&HZV;_H%C6R(YH?]Z
  3338. M;,\6!LF'$UPY-[2`]T_Q@H"!?`9]1%^O6B2&DPI[2/.;P,WTE^F^789X+&;1P
  3339. M8N8&"L$0@4`Z!-A)++V]?U,/K.G)92A`\F;0*KT@,2CM0+N>=\R[JE(D.@B8-
  3340. M=)Q3+'`$C@?W2SP>O*\@$%]/BQ"D!R;%\7T'XJ%MR[L=(M!LV&]$QV7<;-``;
  3341. M>"24*/?DJIGBWK.]9T7WP05"`&?X.:<7E(AVM7!A-0QGU`3C]()%D8OC8(7!X
  3342. M+#7(.L,I;`[<QY.B`E\!N;!\8\@%@BODHO.E,XOM[Q-;%YP&-=`/YV'F7_"YV
  3343. MKY=Y^BSG-#R[NWVG8-6C&";4I\\.%Q!X30_O`9^/W_V`0/O9BU(F%3A/;"7@1
  3344. M!ZS302RVH#M0Z(ONCA3ZPKJ3A;Z0[ARA3]H]0>@3=&\7^#C=^P3###3EK-]`T
  3345. M8;?Y!-F(`$*/][O++NZ]%[ZZ#)&(?9)Q0`0GJM^^LFR_Q'>%CE$!8Q!2B79'`
  3346. MD=B5MX>FWG+Y'=`8MSUF4UMT2<D9B!EMHM/77Q[6ZIMG_*V2@BNN>TU7H*)=T
  3347. MY!]]>8@FMETFX\,[\0H,SN$":3LS*)`IA%L2Z<J]O)^W`59MP.,WDG:](+U8R
  3348. M\-)S:"@^H><]R(/`A:]PS;ABGC.I.63<3*XSMED\KH+M#&OFCE,X@[W=:-F$C
  3349. MYV#`17E7(,]QGX)YDL*^:N\&Y'4ASQX?:G<+VA\4P?JHNGWOLO,_B[4;T*IDS
  3350. M*6H]=Q->+@6TGKOE(V^%X9"-$%86JM9S.\ES`;QR(L^X]5P_>6:MA"*YER]8L
  3351. MOM\@A??!I!Q#1QX+R&._[Q20^3XC_J:$X2,`WIOYKO0`&-+!CH'`Y]"1\[#-*
  3352. MB'2;A7J&8A7%/#UM$-X,U--[RH5[>YTAX.#`FZXHGY"\%;O8>\HI:^^'>)'WW
  3353. M4U#I$@"))6!#Q:)76SF>+^MV3D3[]1``!BLO`W>..'6U;'C_S"^@=]Z=.'*C)
  3354. M32]8=K/?R?G1-Z9FFZ?S^MGWCD_E7'1QWH-#(L=R=UV_QO$>`>>A_?WKUWZ47
  3355. M#]U"E`3^?-%^8-G[+/F79,G==A^OK9*[7P]Q[_T!1'.SB2*]!R_MF(B\QRX-B
  3356. M0$CL>L_4G2M'6...E6AVS]C+OKJ.@ZL_;Z<=IN3V*:+6,ZUCCWCTO+JI```"%
  3357. MV.?.7W%]Q0>MYUFM7[/&7O.H19>;/X"):,G[`_E`+EBR>R!_W`>>8/_H?=G#-
  3358. M?]G#?=G#(M$"?L?[JS_OV;D(>8^2_98['80EFC/UI5G:?SPVV_L\_3BY;@=DC
  3359. M*2[-`ANN\]8->/&E6=//7&C_<E:=T7O+1Y*!>L;4]IM>VR6:F*[D)]^LZ9-)C
  3360. M$5+Z4]^L.F_4@/>\CRYZ?3:CNEA4-VR4P+3E'YM@Z[.\]USJZ9XH]-XWT$.>/
  3361. M(:Q5+()1Z']U-VR0F/\U.$CH=IV^3K3CJ,"[K]\U&D(@(.*K/CC3*/`^TT_GT
  3362. M3_+MV"?P/MKO'>^;-17,`W*6,CEEOEF0V,FJ;K_>_;K0>XY)C?=-`T=:N..BE
  3363. MP'MOOS?1QW`.EM@=*_+NZI^ZXCI-=N7BH%Z_NSB@)QK]?:Y?_W*0:[(];!KR[
  3364. M5OK:^V=-W6E&WB)?^WV"_7IX<;#C!X&W_U8S%TRDR$C8/GZ+;F(I-#9CMM%K9
  3365. M03/`OSCI'M/>V\+M@OUA[\A0^9&SKIM3CYR$FLB4!8[1^\0Q@B9VF!G-E`^Q6
  3366. M6G?Q#[@4#'$YE4CRU8MU.]A";PW#1?C%65XIT]GN!T3>K4SJ]Q<&:__JPO"=R
  3367. MRF3_"9O>.=Z5T,';FK`])'$;&W8X;TN@$]^&Q&T)VW]*V)9`MCWWQ%;70+9VJ
  3368. M;VA7`OG'1^-ZJFMBO1<&(.%M/\F]T[0#VK<3UFB_F-"9,/D=#CK3/UW[`Z\SN
  3369. MH=7-]4[YXB/([4JXYYZ22F/IA`ELF;'%YC8MP)33:7<BCJQ&7SNEI@HW6]R-'
  3370. M=H\;EQJ,4PH15V:`>WL#+M;5ZE"`K-QJI>::K+C!8ZMW6^PV7&^R6A%/9IA/Y
  3371. M.1NL]F;$'RS01#79G2U(*#-ZYKCJG18'I#(Y3I-M+H5$LF*/PVJI-[DI;*8:,
  3372. M+#8+J0^)9<66^187J7I."UY(.>U(*JMM<5"XR>)J,KGK&U'@8!,NM]-BFXM=E
  3373. M#E,]A60R(_/88'<V>:PF[+;;<;V]R6&E%B"YK,J.:_3&*95ZI)`Q-T,]9000;
  3374. M+BNFYEOJ*>RV-%&0C"(&$QI,'JL;10VVZC`Y*"=*D17IC'JLKX`_U`('5>^F-
  3375. MS$@MJS,Y+:8Y5@H[J3]Y+$Y(RY&5E.LKBK%]4$*YLG*;FW+:0(I,RWFR0I,97
  3376. M-UB@E,W41&&[$]L\37.@D5&R$CK5[H9>>6QF-/HV:9/=3*&[&`*3U4F9S"W8\
  3377. M[J!LZ&Y_@RXWB+:)LKFQ"50UGT)C!CM4GFGP-SUV9'EJ@<7E=J%Q="M.JM[N>
  3378. M-&,K99OK;D3C02^N>:!W4/<$Z($#A.$PN4!Z-C.1"N$)Y0\OZ.]#P<C>H2)9F
  3379. M+2BFR61KH1-=J'B0+8_---]DL1+Q(;VLR-[4Y+$1^P!;T,SQ-#10SMM"+)%5:
  3380. M4TZP"-I0S)3-`I(N95@DTJ*[@\KH!$T39;:8_!TNE^G,\TVV>@I8HDQNCW-DT
  3381. MLQ-E-12M`U.]T^YR83.4=Z%)LFJ3NS&3$55]/0493&T5=,8P_0S(IM@<8(5N-
  3382. MV@88(M1:0YGMN,%I;R(Z<;H1J[6PQ4VY((FBI(C76F.RF>U-&D9@V$4!<VI-(
  3383. M;LY=H^\&(\;DYJY4Q&\MLX`J06SSJ!:2[J2`?1NY<[6X0--(T(HM-HR$K40?8
  3384. M2-1JM=@HC,2M8"D>X`;VBF`3U&`V.TD/D+0UK1#D-"\-WA@;AXTD.I\?A`
  3385. M1@%K]*0#I%+]-#VC8=X:8ZVA&O'7#`U!4_T\_PA$:V&0T8WZ>T*X0>MJF)'@_
  3386. MPL4&(\[19F<1`[>";3H1:QW3@ME#-^_TV#1D]&$:#$Q6RT):^8B];B2F<-:1@
  3387. MJI@'C<D)&O.+FKNNQ.3$C93),=0)]'3-Z*RL+*E(X^=UT(2D(L2F\W)('J1`%
  3388. M6\"#PP[:HS4**6;*#&0<FBR7D$$>-1=Z9@:,,E,$H:!F)*`)[B8$I"!ELWOFV
  3389. M-OJ%"6B$3<ZY'C(074`KI&G'_"8M99MO<=IMA!RH)80ZF^;0XD=>&P5=I+D$T
  3390. M/CPN"JBD-%7N<*J&7Q`%TD1YA*C>;G,[[59-88U>-PE:K`?;!4*ZLT$TV2A")
  3391. MYK$-`AO=;UJ>0#'PM%0TI"E:[A@-D/T3O_9Y$7X366@S_TT6JN55[6*A>WG&)
  3392. M/A:ZGU<!?QMX^G@6LO+JC"SDY!6=2D,+>+6-P`FVN$`\>(['/)=R,^`!QL1H)
  3393. MO!QU82'J3$`;>14&73$NG%)<JJ_%)>45>EQBJ,'5-?JZ<L,4(ZXT5-66?1J)`
  3394. M_LFKIBU^V-@A$K#8/!0<W;[$JP8>ON>5P-\;O,GQ"G(*FJZRLKRJ6$_J,Y36W
  3395. MZ"H3X=28NB@5%]D=+4[+W$8W+K3/P<6F%HPU&.M@U%MQ]I@Q>4HT@5\%296FZ
  3396. M>8`6H*YF?S>X2C2-;X0<HVD^Q?0)."$(\U,8<O(K(*?"/@B5-%J0O+)$M)JOK
  3397. MASP]K4NB$9O90H#+1=L+J;\)>M,8A-[FUP%=G66HQ;]B]`&_"-**8#"`(K'9J
  3398. MY#9A=9$'GL#(*TFQU'#T#;\::*H);`U*W$DY[$XW#D0B0<E0'IE8%2A:,!E2#
  3399. M)GL`C!Q.^URGJ8F,VWB4)V`XM%)N<H'1:J9<9`8<\A6T(.U[!7B_!-TOP+A2I
  3400. M;S3J2O5&#!CA$,`1?X'N<2Y:**BP-"6JT%)!N6T^((!YL#Y@PDJ97!2NH2C2[
  3401. MCA:'(72_#J'3!5+4*:C432JO*O7;PO)TM%N@`RMJL7NPR^._:39!']QDZKE#%
  3402. M,?F].>A[`>UC@)&E&":EC#`1$+*#MI\9^JI:?<U])-,T!\3#1FJA89(2:85,&
  3403. MSUO(R-3@/-#;7`M,HSFHS)_C;AS"1)`+>6JP.&'NI!5'ZIM#^7FAS"'H(>%$7
  3404. MD\UC<K:04<"09`>AM</JHA,/L]`KPJPD%GI=.$8+6["%6HJ%M@LG1;'0+F$E4
  3405. MTJ!]PMI&J.&VJP9H3Z:=VSW'Q/N::W=:*-<X/%&);@@K30LL39XFG#=J6-YBZ
  3406. M#0H130'95U`-9`HRXQIZ`)A@\#>3(>6BY0K(BNL]3I?=.?:9.%0L8O@E\P7)Q
  3407. M)GX":`YZ14P##!'V0C6*2&X0<HAHT>(B7:V^U%`S'?<5HN6B,YPN+$"=3#6FF
  3408. M)@)2I"P1L[5E"!L(9IKJ&P?9I:NG1XF+&H,^$$T`M`@<K*2YT0YCRVRW6DU.J
  3409. M%[;;H!H-'NW7%Q@&W?<;54@@QO@V,\S'#S-X6,X41#,X+.?7"X'9B\<W,H"H:
  3410. M+DA`C>)<*!DV5'*Z7E>#7Q:A-:19!K9P&7I.'`=4"M1)LE.,@SEPMVCH3C^M8
  3411. M6E]EU),D?SGX$/IR='%X'XH8S!SB5%>GKX'!!\6*RO1%DXP,ZT92'&JJ-=3JJ
  3412. M*D@2??-F.;I;DI"`9Q)1BE'G3)*30'^&W2SZ7R1UE:.')?E0BPAUTE4;?Z6JY
  3413. M"$8T=Z1^>#?Z6`)/==`U7541@_2U97I_KY,9&<)'#:@-V%]NQ!6&J:F,%H*15
  3414. M3/J+=@Y&HF0I9F8&QOH8.%U`_-JY%`\52YE,`:J2#@[]$'2O=(3K!?.T1QN"4
  3415. M'%(BH*U#`LI!#TO)@'&3`6AWT,./-C=Z(!!3I*&8=@YN0W@N>E=:ZP>H>@:R2
  3416. MH2`]N,BHK_?C-@,)3#4I12GXXSS4)RUO&`%RO]V('\Q2]"DX&F4$^E&5H8<:/
  3417. MB/]I91J&7E0$%@,$DXJ)-T1S,50G>8"ZYEOLGD&84D_/K$IEH:6!TP^JX)C@B
  3418. M;X'?$"^'1Z/7`_4U-:#+Z=!&D\?E_M\UA'$*\@;^YK2^E$4/^D-W(T70R(I_G
  3419. MIU(M:"\(=::BZJ#?K#@&:&2HTP%.?;X>+0T2HE^%J'J3JW'X5/V[*+5V#/HP_
  3420. MJ/`/86K4'3#U514LH:L,=R(.&<4E#%>_DB/_S1R,T]!,V1#()_\1Q">C5;+A7
  3421. M@V<P%Z[T&&*@'IQS4Q':*OO3;\BID:J?Y\+-3@O,\;;?E=*:*O2S[)<`>QN^O
  3422. M_O.L1%05_(L._VI7YP=OAPY$C@3L26A#L(P!J_\+0N^I0-\&P_TP%9;^/U"Z-
  3423. M`A6$T-B&9Q;\?W&Z`JT)(6`O_8]A>APZ'<*(^/\$U%LX",OA>K`(J>5,4I6A9
  3424. M2D/WN=A0I:LM-U09L1MUS8;^^34)[=1.QY7@_1LQF/=L">JTWX4<_N+TJJ!*;
  3425. M5ZD?BT,A4^XO!M$L/3CVY6"ZQ9`3AS;+BPPU-?JB6N)%%DV!VZK:(1V2V-=J*
  3426. M`^J55QFT0\HJ8^!B>)+DETDC1MA!)4I4,&-@R,(99%R0@"8H!CW>VP`\Y/0ZQ
  3427. M*0V-T/LB4(/"`,$=PE(C8RY5^JGTXZ%`M%PQLETI>D(Q?;B[5`BO&11%S*AC!
  3428. M/E.E:+NB"/#*;WS6./2AGT<"TS1>$H_/,6RL+XE&WRH,SA%I)`PQS^(`QY:R4
  3429. MFF'"59:[F,*&2<RT@&$'1;(2@G"EY<;:&EJ5H-S:<C`1([PZ4_JMGEETO9^'B
  3430. M:I2Z*JS7&:?CJ;KI8.,87'P]U@WZ8;JJ8@S5%$W"TPU3:H:&F0ZM&ED3\:%-A
  3431. MV-4(2-0,O\$UBY:9<&#U5@_K.6QAW%I8*9/;D$+4JV2F38B+P&H:`GX6NYE>3
  3432. MKE'U9.%O&3G;SJ,H!Q348O\LS%#EH]#0P<R1/!$:PHS;"1,315?L(OXQ+#],P
  3433. MH.NY$(5STJ&/OX>B>T,=IA8ZC.=W`TP>"%LZM3HX?PYKY1'D$-*T6AG_@2S/^
  3434. M(()EF<,L,VDFZ&;-$%VEZ)`=S&\B-=H>ZG&8Z74!"?4T@7SFTU%#&@5'L*U!T
  3435. M7X?Z[9'FEO861C3?0%&DXL3L45!X+%X6C<+#AE;)>%1>+IZJQ5--5AN$<W3SU
  3436. M*6T4NCL,5J'0I,64@8O`^D'J-@C6X3'96=FC(1XP+6Q8*I@;B)6PYF#8@%@6,
  3437. M=ID@B(@AD`VU/1R&?WNI?WP4VAA&K\KI)2$=IB-!*A<3+83!YO"7O;/H<0,ZV
  3438. M'49C+ODL2N#0T+>(!2,F'G6.93$C9U&7`>6%0_YL^K,(YH;9?K+9\?XK(=..:
  3439. M1BO#>5`F"G5"'+I2!Z/54,*`3<7T(4NN0KO#_5,%.#M=LT4,=#$P*H($0!H`^
  3440. MO,YJ,D-`>YA4`M=DI(BX8_8;G#0(ZA99G/5@$G8;E<I&$X#2@(HC2-_*:_65B
  3441. M</$W7\=`&=U'N.HJ#5.J:HU\>`)\'7M[GIML0.OHX@3TR$3EQY\$QI\9E-$B+
  3442. M/#B1+#I8@"Y%_#JP)_\1L&>@K,C_9!T:CNZ/9+!L>"2)!'C'8BY:%*DM+"X=]
  3443. M&&!-15T(-%-178O)$HT-7AV`52<;F$<@X5*>ME!G1%H(@M)+N"VA]#&GG..PO
  3444. M5_AX9"SJ&E@`+D`B'(E)(]^WT\F!(SX0#/]R_,^B.]*9+RS9<[CH3MK;*;_,-
  3445. MHT]-L<*K6>%P^"?V=DW5")&3/NCS6(08NH$!.+%U+0K]?0QBBJDC"E@'$((M`
  3446. M7NQ68-1_GNO;T2._?!9+#6>J!(C#1Y^@7-:=^7_TA<8<?#Z7SX]D=2'P_2+04
  3447. MCL(=A713<"'_GND8S23-AI*]:2=*3I6$E1XM&^@H[RB_4@:GALA_U>0["C00>
  3448. MBSK7$$T$H\Z?F:-C_45T-3ER&&*HGM4YV'>FQX&0^`VK\[&LS5F/93GH;WQZS
  3449. MQMAQ]XR?,..^1>2@&)Q):Z6K2`3=@5DQLF0S)]CX`I%0+)'R1"QT)X-JQHL%B
  3450. M.\F&7P[\<N&7QP)VA6B[\I"R7_F<<EYH4^C2T#UE.(&PF@',0`L)4C;<5*#."
  3451. MTWA<T6SBE,PNKRHQ$%;!JU2@)4N6L%@PNA``QD)5@K0H`.[!_<+Q+\0OCRSD\
  3452. ME<$YS"YT#^H,1(\*H^`7#[\J^-7!SPR_K?#[&'ZGX/<U_$)8CPH1JF"3+Z-?@
  3453. M\@_*S&%)I#+>2\*H\6,Y$U$7!SHS<`"]!)1CA4B@#]('U12V>SMV!<A08-Q++
  3454. M7,2!0S5P)BD0]G/\:&B_?NOJWZJWY:'J0QT]'<?+5L/.C9U!"%ZP=@Y<?;T4=
  3455. M7IGVE-$I;W+;]UWO/>;M.)'>Z^)V'$\_>NPTY]O5)]KWTZF[Z=1==.J-U;LWU
  3456. MK^JM@NVL):MV)_;?T^D)V'SU-1_OGBY/T]6_K=H-NP_>W)'#"HQKC^6BGW./[
  3457. M`N%9.1RLZEF]"W;-+1L8<`<GLV+.7(4MP-^Z0Y?L1C+?J8Y=!:MW+;LB@PS@;
  3458. MQW>F'=[H"N`5+@3ROV7!Z5[8XT=8[T;HI]6?MO_[9OM>[4#FUH)N-GHG%'5\*
  3459. ML/K$]F@6O(0=@!/`U?#"@/)'9&&>\+]3Z..\?2D75:(:-`\M0`^AE>AQB'/OY
  3460. M0H?1%^@F"F<EL4:QC"P'ZT'6(ZSG66^PWF,=9EUC];/"V)B=S,YGE[%-[`?8(
  3461. MS>PE[$?83[`WLK>R][#_R?Z2_0W[)MB@F*/AC.88.-,X#DX+YS'.TYPN3C?GJ
  3462. M&.<4IX]SBZ/DQG)'<_.Y4[GW<Q=PEW!7<S=RW^!NX[['/<3]DOL-=X`K"0@)B
  3463. MB`Y("L@-&!-0%%`>8`R8&=`0X`A8&+`\8%7`VH!7`MX,V!FP-^!0P"<!)P.^U
  3464. M"O@Q@,T3\])Y>;SQO")>-:^.-Y-'\>;QFGFMO#;>"[S7>%MX!WA'>"=XIWF7D
  3465. M>5=Y/_+8?`$_@A_/3^?G\<?P2_GW\YOXS?Q6_BK^D_PW^*?X??Q;?*5`*R@0T
  3466. M&`73!";!/,$"P1K!NX*]@D."$X*S`J_@!T&B4"LL%58++<+YPE9AF_`)X0;A4
  3467. MN\*#PI/";X17A3\+>2*YZ"Y1@6B:R"1J$;6+GA6]*.J&PP"G1.=%MT1!8I4X>
  3468. M63Q.7"RN%->)9\#Y78^X0[Q1O$M\48PD<DF$)$F2+LF23)!42:9)*,E#DN62.
  3469. M%R0[)'LD7TC.2BY)OI,,2-*EHZ05TONE%ND2Z2KIB])-TA[IA]*OI!&!\8&C+
  3470. M`_,#2P+O#?0$+@WL"'P\\/G`S8$'`H\'7@F\$<@*X@4I@C*"I@7-"9H7Y`YZP
  3471. M,.CAH$>#G@EZ,>BUH&^#?@SBR))DV;+1LG;9D[)G9)ME;\FVRP[(3LK.R[Z7"
  3472. M_2SC!<N"8X+3@N\*+@Z>'#PK>&[P(\%/!#\?_$KP6\'=P7N"/PP^$_Q]\$"P_
  3473. M)"0B)#DD-Z0XI")D3H@S9'%(1\A3(1M#MH1\$'(LY'S(C9!;(5)YI#Q%GB?7Q
  3474. MR2?*C?*9<HM\OGRQ?*7\,?G3\DWRK?*]\L_D%^57Y#?D+(5((5=$*Y(46L5=M
  3475. MB@*%7F%4_$6Q7O&28JOB,\5YQ8\*MC)0*5=&*]5*C7*TLE!9JJQ6SE2:E`\HC
  3476. MYRO_K%RN7*-\'+!MD[)3^8YRK_(#Y3'EOY3GE#>5LE!E:&QH7NB8T,+0::'WU
  3477. MA3:$+@I=$KHJ=$/HWT-?#]T3>C#T:*@W]'(H+TP<%A&F"1L=5A!6'E83-B.LG
  3478. M,>Q/80^%K0A;&_9LV&MA6\+>#=L;=C3L9)@W[%:8/#PZ/"-\5'AA^*3P:>&F/
  3479. M<%MX<_CR\$?"GP[?$KXM?%_XU^']X?R(N`B8R2+*(TP1KHB'(]HCUD8\%[$IC
  3480. MXD#$B8C+$=]'W(P(B`R)S(S411HCIT4>BCP6>3:R/Y(?%1>ECAH5E1]EB+)&G
  3481. M>:(>B7HBZJ6H?T2]';4SZD#4X:B34?U1_&A9=$1T?'1F]*CH\=%UT;.C%T0OB
  3482. MB=X7_5'TY]%1,3A&&S,YYMZ8^AAKC"=F:<S*F#4QK\9TQ1R*^3@F$LYT:V+M'
  3483. ML>[8I;'%<;/CFN(6QBV/6QVW/NZ5N+?B=L=]%'<J[JNXBW%7XV[$L3`/!V$%*
  3484. MCL%I.`L7X0I<BQ_`"_$*O!:_@%_'W?@C?!Q_@;_&5S%22561JCB56J51C5:-/
  3485. M4Q6HRE5UJGI5H^I/JOFJQ:KEJD=4?U&M5VU0O:IZ7?7?JG=5NU7[5;VJ3U7_I
  3486. M4GE5WZE^4G'B)?'*^,AX=3P5;X]?$?]T_$OQF^/?BM\=?R`^+V%\@CZA+F%+.
  3487. MPMZ$SQ).)2@38Q/')%8E3DUT)+8D/ISXU\2MB>\E'DD\D?AMHB`I.$F5-":I@
  3488. M,,F0-#?)D?1@TK-)&Y-V)!U*^B3IRR1?TK4D6;(VN2+Y@>05R6N27TG>GGPXE
  3489. M^6CRR>3SR7W)/R5S4V)3TE*R4L:FE*74I-A2%J8L3ODHY63*Z92!E`!UD#I&3
  3490. MG:(N5)>I:]3WJQ]0+U6WJ]>JGU5O5+^AWJK>K3ZK_ED=D!J;FI):D%J>:DI]C
  3491. M('5I:GOJ2ZF;4_>D'DX]G_I-*B\M*$V;=E=:==KT-&?:G]/^"N[8.VD]:1^F_
  3492. M?9YV-JTOK3^-GRY)CTS7I(]/KTJ?D6Y*GY?N3E^:OC+]+^GKTE],WY3^5OK.Z
  3493. M](/IQ](_3S^;?CT=XJ,9BHS(C,2,M(RLC-*,ZHSI&2T92S/:,Q[+>"[C;QFO)
  3494. M96S)>"=C;\8_,S[+N))Q(X.E"=7$:=0:K6:<1J<IU51KZC1S-0Y-BV:I9H7F7
  3495. M<4V7YEW-7LU1S2G--4V_AJL-UL9J$[09VFSM6&V^MDQ;J:W3SM":M1:M4[M83
  3496. M^U_:5=J_:M=I7]!NU+ZA?5>[6WM8^ZGVI/:<]IJV7\O)E&0&9T9FQF6J,[69?
  3497. M^9GEF369,S+-F9;,YLS6S+;,=S)W9WZ1*<J*R\K)NCMK?-:DK(59*[-69ZW-U
  3498. M^EO6:UE;LG9E'<PZEG4YBY<MSU9EIV>/RM9EUV3/S%Z<_73VR]F;L[=GW\KFZ
  3499. MY43EY.6,SYF<<U].?8XE9V%.:\ZJG"=S7LC9E+,OYUC.5SF^G&LYK-R0W.A<D
  3500. M7>[,W*;<^;DK<M?D/I7[7.[&W'EC.96H[VQ5JZ'4.-/([1/TK31*^F1]G/7+=
  3501. MU[>M7[O^Z?6OKC_XS!?/A%Q]Y:JBS_74GY]J>^K%I_;-.31'5J^M[ZZ/H5(H`
  3502. M`U7V;'A??,,1ZT_6A*:2OD<=FQS;'(<=TS;N>GG!IBN;C[PI[UKX;/C"5<_.'
  3503. M6!C=E[5\[/+\Y;BO?OG!Y6'_Q5Z!VOAP.JNI;5';LK8];8?;QK<_W_'LZL2^0
  3504. MBZO5?=RU:YX;]3SUQ`-/V)^X^H3V2>>3.];M67?U>>&&L7T3^@K[IF^8NP']D
  3505. M[N=_`%!+`P04````"`"`BWP<""DD994!``#%!```#````$I!3C(P,##_+D)$;
  3506. M1Y5476[S(!!\K]0[<(+4V":N'ZLT?U(C?5+R'0#%)$$B$!D<):=W#8MKVF!5.
  3507. MS<..33P>=G8P2E/T_(2P+3E.2\"2."P)28*%-$F2[FXZ17W]X`>&N-1-+??,E
  3508. M+B;N>6!%RH)5:#V939"AM]:^.`%"EF5N%_XV"6\\;@TUP-W1FUW&\'>)1[0V'
  3509. MJC9'>F2M_5E"GOL7IM\QMOBO5A=6F[L5L^0"6IJF(V+_#1?<<*:]6-IO'LS"!
  3510. M@2/^&F"ES@RAM=3>0))XPT=T5IJ=E*A>#DI5+1CN'0_A<6G138CK$Y='[?;WN
  3511. MF\Z&4:&1:DS?CW<;%\3/!$&7;GHAS(0R)_"AC3M'?M8E/QA/:-MHBAXH[TI2L
  3512. MPY7\J]]S:;JQ4B[/3)J?NXL+[FIZ96+8'29]4LBH>17?4X'FMXO4CPR<?HO=N
  3513. M`%MZA0'%FXHHO35&V?-GT].&*0YR$&%<Z-WV[X/@D^`T\H#HKP$<[]P99R"H>
  3514. M>7]POQZ'YH*ZI%H)+K\.8`D42%`QZ!1#W7"]9T)0R52C@V_`JY-Y#4:#LP`^I
  3515. M`5!+`P04````"`#K;GT<(=(2*G(3``"4,0``"@```$)51$=%5"Y$3T.M6FUOE
  3516. M&SF2_K[`_`>N<;AD#K*0;)+9R7Q9:&PG\6P<!Y:#(/<EH+HIB>=NLJ?)MJ+%X
  3517. M_/BKIXIDM^0DLSB<@R1RBZPJUNM3Q?[A+S_\1?W9SV?Y^?Y*K/CC\V?^_,?1#
  3518. M=X]O?OS.YM/3O)[__^/TX<]W6?\QY4Z_+);+Z[/+Q>WE]3MU_>K/MA;>G^G3=
  3519. M\LWBYN(C_57?W_89B]63+/+[F^M7%\LE,5R\77[WI*=RV#^^<<X_.:FP_LQ_4
  3520. M\<O5Q=6O%S?X!#ORUC?7']7MM?JPO%"_?CA_?7&KKB[?G<NB[_X\_G6H-R;.1
  3521. MSWWUX^@5AS1V.JBN-YWN3:WT.II>M7MEOG2FM\951EFG8K^W;J.B5VOK:)7:)
  3522. M^M8PN14S(`)^T^M6Q:V.3-'HL,?Z(1BE:<N>%FUUK5K?&ZQR1$2KUCK;ZH8IC
  3523. M5;K3E8U[M?8]_1+-QI,`0?DU"^-J&X?>A+E:DK1$*6R-B4&1V*H:VI7I0Y:),
  3524. MV`9B-W3,V3@<J=91RZ_WQJF-<:;7C>J&OO,D(7^[TH'817U'$JO&1Z9%W'>^^
  3525. MOYO0C%M#6C!-'9@>2=N24)=T:F($W82(Y[KQSF2]B%BL&S\TM3!I3"!VMC59`
  3526. M3ZP6NP8MTY>G=/3*-C/5:;+(##R9FB8=-=70Z.C[^;=LJYO&[X+:^P'4#$FV0
  3527. M:FS8TN9D-TAZ9PR=JM?5'4Z+Q;UPJ.)`.F+E0S,>-FN]B]O3Z$_Y`W1F<?K(=
  3528. M5$@CJA^<$U^)M-FOF11HCH1@8&AQ;W3/$I"6[FUM1-"=);KX^E[W5L,!U[UOC
  3529. M1[&2Y""R\FFI"`-2F>Y<7>AJF[ZP@<3K(CR9S`-7UU%<96T;\<^*5+\BGM;L2
  3530. MR(AT5!`*56^,4\2IZRU;UP]QHNP/'=3Z_,77W!4'3439`VOB3HL/[#.7Z/8[?
  3531. M<P_3XO2U=X\0*??%_F1#$"5Y6K@9?[7V`Y]5TYDBCJ>9TL9[8E,;C;VZAC-67
  3532. M?NCHB$3@Y.(+&?ED*BMMQS$-T1(.JK$AYAC25>7;UM>T7@V.]!V@C'RXB1J6'
  3533. M$AA3(Q]PF9BEV4_M9V"BM'+/U(;`OD.KKQ;_+-GN^CWR_ES=;DM$J9TEO9"`7
  3534. MW1`-;R"]]'HC9F6S%U[SHZ@@?3G?MZ38/0=]+:Y=Z88TH?OD/Y?%=3FT.0-$=
  3535. MW4<Y9XZ?J)!VDI\U&JF&P_@W[0;=[V<0S8D'I"1@E.-TE57.1'%JH;'#>CID[
  3536. MVT53S]4G8A^VG#385YFY,[MI*)#TM0UW$CDLCM/T3QA(NSJHD^7MXN;VY?.3\
  3537. MB<G.V<UVON_WR#@X9&M#Z`PI51>3P/,E?6JUZSW)J%L_.#&>N-RA45>FTO!9!
  3538. MT(/SM\AS%7$Q5;3>A:0AJ3)8-"KF0798VSY$4<I$\$L1]O?!BN]F=Q"2P42H.
  3539. M\C2EZ2259!4Z60HKIM6;QNM:]"D:.A$-(U&.)>/[TMSFM>R`G"^_?@#U$6;5T
  3540. MX<[4ZN3<,E\%`8Y3FIS)W%L_!-G[CQ,D_;`C+B>?3I*U1IG37AN8DB6=FQ:F:
  3541. MD]J$_)_UU'8Q'(?"@RCBM"VTLC@/DVOYI:3HHR(M*7LT@20ZSLAAJ"ICZM'AB
  3542. MH0GOFKUR])@AQ@.I1YM\JS@)@U=LORPRD603_EEX_+9X=Q@<9-4'CDL2@'`U4
  3543. MT".7K#I3P32T@+\YN[ZYN3B[5>>+VX5(2#HZ.3M1C\_2GBOL^5'Y#A3GZMPKL
  3544. MYV,J_#:DYZQUI`0H2)=(9WZ/0O:QN?I`VVP4Q3%@&F6=JR7J">!-4I^4,R:4V
  3545. M2AK;O3<MT!P;8,U"S-6B"7Z64\+&^_6I9':2:8R@1*O1V;]),HD6,D#*IE#Y4
  3546. MJ--_XS_USD<S+8)B\4/X46LK21NR?LJ>DW,4.V_QW8/J<NC-<W4-KTUP1EW2L
  3547. M2>G+W@^;+<!OM375G5IY?\?$:D/D257B6V-R7`N+7/)@\%UOHR'Y=P(@4KI,4
  3548. M*P7F,FT^#*`C\2:+Z"BN#V=@-SV$";2H%O\+\%Q>(>FW\1M0KW38'@8@8X-+]
  3549. M1F5S11_&,C0)\Q*F66?MUT%*P3M!5/#^YO+=K7IU?7.5O98V,40"0`*Z;+2[I
  3550. M8X+BJ8#"C-?Q;%2#8`/M/!'M$^X_.LB$^R*,"8C3O@G!A%E)I2GI-N8;B;1`2
  3551. MYZ^D=V=VV3/@5:RMD'S],.BSJT^,P.F$%=Z;-1*"",J/4Y%/^6)9<LZ'MT]?@
  3552. MOGP^/YED'9C75+UA?SDPP:,EZ=GTFE5MDW$9*$S1R5A+CRO14=;")K1-4J"D;
  3553. M*-%^[JJL.U!CP2R'JCR$8LF6W"(E18`%YXI*-XVI4T$6RTNFFA)*("([Y3>LO
  3554. MUP,K^=Z($:-I.]_K'OD`7N01T%\KP\6T(M#*Y$`P[#&".T%<U[4H8AH@69:2X
  3555. MZL35N5\YT*V<(6%GVIL==[FX>O_V0KVZ?'M1,(Q(8EW5##6WC*QN^$NM?EN\/
  3556. M^]N3)T_FOYZ_5L$7)"7]>`M.\+R)7=@&F=O'-Y_4\LWUA[?GZM/U!P'1B^1,H
  3557. M_QA][=H9F#MX-U-^'=$1VWM#OU@VXT9;1W9RL?>-\O>I[J+W1[$'B!CB+`,I3
  3558. M=#BQ'Y"&UVN4H'LS'QO,FJ2^SX!`JZ[1Q`5UCV-^9P,M/C=$.96GSE1V;2O&^
  3559. MYKOL2=G#N2/IT,%"A'V:0\SG<^ZG-\BC3.5>5UI*X7S.JB;+F;$$W-GZ45"F0
  3560. M'F05+0K25/6DE&A[`S73TP-$(`E8BK7;2*N:$4LU1%)7B)+/R*[0+9+U/9;.Y
  3561. MU95/755G/+HQELEY:=7HC&CQMGZGVD%:5I(5GIDBR+?``I;[T(W'9^E"1T_:_
  3562. M&MW7F3BK2',<ZS@:@BWKU4EO0NRMF.E$+=+7`AX#6Z8U2=UYJ5B_L6L$X+X!8
  3563. MJ./ORT$GWF%3`;:N-LCBF"#-U:43X%7)B&6+F<MNZZ>RPDC(1@C$=:\M*[9)P
  3564. MDM'7ME>A\RB0=XY4M16$2$]%7R0[R0*O"1VL-]KN`@.?!&B2XJ,P-M$`(YK*S
  3565. MUH):6,9R#E*V;J2^2)I/UFYE0A1,S]E)1Z0B5H@,40Z&'7..M9W>I]#BCEY<I
  3566. MW4($2&,8:HC&*T^6=*8R(>B$XFL+T`9/Q9/`M=%MI`<3]30&Z6G:['.J.BB>,
  3567. M:F4BRMXH"GK])&R(MF4,DH$SF1:Z2`,S8MOY$.RJ,=->35)#J<FKO4+&-CM(4
  3568. MQ]@0CQ\%M;(-]"AE@B=8.*BQZ$>8WE6:N4$@%KZ/&[TQB@/21=7I/4*2]JHA\
  3569. MV@9#PD2SZU$8Z?>HOY@P2Z['LLL34I.OA6=K:B06V5I:&,0M,]68\+C<S91&J
  3570. M@S-,ZI=)Y0@E6)I=;>A4I4=;SPX)&A00CTS9>E*+.+*M[DQ,2A#8TY)Y3=-H_
  3571. M9^!-!>Z6,MKJD@CNN6B5_`^P!`5F&W_,B$!F1-;9L.4B1_:66M]M=4@8>QS$.
  3572. M-O8.<5`Z9/%.J'!P)`[B$T4*H8XLQ!Y3O+"#^_>N=%-D14U*&F<<TKX<G/$AY
  3573. MR$MM_83N5J]LFN["8P$K$ZU4EV9C6S]%'9.&`7M31LU'Q19Q#W$\KF,,AQJ@0
  3574. MG[VZ`UI@6K6M87+Z\J!NLHG%<$2PGA43\6"\&*W2V(QZ5<8E)&AQJ@.HGCQQ[
  3575. MSP++4#C)VB/V.Q_TJC%9;K7D1JRT26(M8UJXY:3812Y9;,:$05/ABM^IJA*-)
  3576. M<.#D%#)=E+8GR!"@Z@U)#L>O,3^OX%+?.'AN*Q[T@=)^%5?5:M/KT.6X`_(+-
  3577. MB/MC+YL5.,0%OS0N[-LAF@[^R6D5Z0(;#RL3PP_D*;GO*`O*D"*+]QJ#U+=#"
  3578. M=??7].SFXO7E\O9&[I\6[\[5\L/[]]<WMT=C*:DE4"H/U66:>3AQ87\9`B<U/
  3579. MC,O-QH8HT%X.8]A@__'T!<C\ZE?JG!:J%\^?J8]S]5$W;HAJ<6_F,PP4`$2UO
  3580. M.ENHET^?//U)['>F&TM*M\Z"?""!7`QT="[5F`H'W?!%QY?Y#Y/>8RH)2\&QB
  3581. M!3U&F3LRP/?KN&,D/G2=[Y-K*V!37^<(C=O>I)8GI,$</(@'R72T*:.Y6B9"/
  3582. M*[/W.8)X)=C+=,SD075J-I,_ZR%N?2\-&R)0-\%SOZ%^?OKSZ;,7/Y^^>/G33
  3583. ML[EZ:W)2TZI%7=T8X`'GN2V5T9H4HE$=-I3N1C[60V5JN`YH3,>WBQ!\9746D
  3584. M;+DE[4!#3.M][]?$$:6[">KQ8OG^Q[FB?SGV0@$38>A3"'&/GTEP2UW9+E5=:
  3585. MW$-)1T+&R"F3D\;@.$,(9/,-1U2A<MJ;AFL[G8)6M6/]T(YE2>>ALR&UZBKF'
  3586. M$7SZHK;HUYK]3%:3IF&1Q'!KFD[<"#Z$!=?M:G!U:(DZ(A4+LO>,TB&O8>3(Q
  3587. M5RNC6$DDJ1G,?<9@L_9&L&GIO$RU=5S-IXXH6\*C9#",.]^SVXO^>#:3^KLC[
  3588. M24GU+YZ_4*][AC0W7M<S=36$.[-!BW1UJ9Z_?/[\;Q`WX+9$$-P9YJ;!],BYT
  3589. MR:\X&L?'5]HVX'C$[>]/GCSY^^S9BV<_Y9PC8[<4H]R(<Q?.DU">!*Y0`8MS*
  3590. MY6WG%Z\NWUVF2_'QHCNWGL61:@2<)4W"2S?<D($^I$3)KK8,>QC![L<87QE2-
  3591. M:K[FY0M@&XO?8:6>L"B#>)0(C^P[F)0`;2PSAU+]JIB'#D@&!O<MKK9DVT'FE
  3592. MEJ`52.[U&J'F,(,C709U>JK*/6]O?A],B(>9:[=%+\T5.O`*VQN68(E2*/TE#
  3593. M1['^8MLAW<SV7!PXB<W51SCBE*9(+]>E>ZZBXWP[H?C>;K;EXNSH^+PLZQ3U"
  3594. MUJFAJW-(ILLL^'Z^913WQP52F2*<^6[//%2C=V2RKN-YB=R`CD80Y;>MZ;G<4
  3595. M%:X)8B3\E$EM?5,;[GFU=8$1"G\19EF@M=F5EIS,5IE.IN%:;@A"Y%.L3.-WT
  3596. M\ZD8G)D%@8WH8CPOR4<\_F=(.".)5<1.VV<%HQ=_`$&,.XFB[CD%_4Y*LG$_T
  3597. M5X\O'6LC(V-Q<0A`?_EB=*1"9%<:'9\)?_U1,A?@?W(W>>D!6+=,65I#$O$E(
  3598. MZ3229'@ETAY.+HB/2U-`476:E4#WN:<3,N;`/6;*6,:6<!-<Q='2,+A:KN+PS
  3599. M\&!*0GS\T,W5*TR[OVAXXDP@7[9`#@#D/HQY.@RRN2"ETHH(Y\ZQ:)_O2NZ-G
  3600. MJY%0]5YD3@WX<?X938X[Z,,T(SJ388]6<=^QZ?))IS>;"<3AK"5,4`S#@!8@?
  3601. MW7B:]+Y%Y]%!H6&>803*VK+Q43AV(I)^3)=LJ%'8L`_1M%Q[T1G%$2HR'TE2F
  3602. M.E@N/T=7FLA[26UXM!KV<[6`0Z5UC%/N3;_E:6I(4_H=6E5;I:Z$D<I1S&QU`
  3603. MRLF-].("XT]7F"AL!@V',A(IIZ=YG"'W)$,P)<7*$T!+U$-;,.WYY?+L[>+R:
  3604. MZN)&G2Y>WUQ<7%V\NTW??>`J<#QS%I"J*\2\M)"80S3:MH)]=BS2_A?IHX[OO
  3605. MUU&5&XNV,2A<U4P")9.1A"-D;.[=S9>.Q_HU[(?42C1F:5(*(R$OH1(VMK4Q\
  3606. M)6=HC<@D.J7E-&A-7-0K&1AH><F!K.W08C%N=?O\!M"!A#J$H67`(=:SF08V?
  3607. MU;K5&_3Z`HM83B>?9XHOXEQ`72)A=`,7M>A`]3Y5K$#VE>H!LQTK?2ZO?(U_9
  3608. MOJ9;K4ZF$)&3VHE,'D,&2#40C?.H[.C&!?2D-RS258NYU\V00/@K8QJ2RO!*!
  3609. M)H[.CXN`=%!X%:P.`L:Z$5+5<H<)1($->L<P7&;KK$@4-;PS00?-USP2?*)P&
  3610. MF%H&+DSN!,*=)D1GZI,Q'\C$*J._#B][.5UNKON$9`JR355AW)_]9FLW6Y5"3
  3611. M<59>3)N0MB2.PW"TW'Y,:M9!<4>#;>Y-XSNY8Q@Q9T)(:2*0<D`N]23I>I#,A
  3612. M?C@R8"#_E8;Q`%#)!/$K?B%MEDY3?4'G$U0S^[_UG;/O]IVSH\83%L7^TCPV\
  3613. MI&:7KO^XC,#OV.\=!Y\\3R;4,3]+D[(V%0F6.F*X+WFH&+4`"$RYO;]#(LYUQ
  3614. M,%^3I1(^W98ZF"&DAHZ8CF_DI"$ZSPME7>OO:2%"5EX(G,K<>+E"$%C'_HT"5
  3615. M3,^!V3,"X;EZFJ!*(DG^;M'VPN(LBXY,O-`4)"L3F,-EB=5<_<8Y.J3FEJ?(*
  3616. ME78(R55J(^B`<><+LHDI=LJ[7WRAS+HN2+.4T.$[A2'C=JG)NERN6&3`;I*'Z
  3617. MC]\W`7Y6SYZH6N^#)&0,;]@I,H'L-E8BNN[USI5&R>VAI!%I/(B7G-GOK&3\'
  3618. MWK2#RY>G+#NS++-$7<4R9N$V\-]Q>.'"Y<+^2Y)H"@$DZ.ESB01ZY%OZ7>#AD
  3619. MR@A"E!:HG,7W(56)RF^<_9?X)ZS$DP-.IS79/;V*"W"T&6QM&NO2>U/A8/HPZ
  3620. M)3Q+6++:'CQ.3K[![1(\!*07'\ZXH[0M)N8:ER1RN,?E3<6L+U:GO!F"F4!];
  3621. M;^&AP8_#C`FS]#HDD^+7,8<.+Y*F84_<"M3&K(*($IN01BJ'%3*_Q_PII4SCX
  3622. M*C_@Q3_69:<#-[1(-@\<5W-81G]0TTJ>G]9#F1J,M/GMRVF[.KHZOS_'X]N2!
  3623. MSG/;L.<3"SS#FS5-V4["YHK%3RMCT[L&#X[_,(AR*%R(?\MW\_/K,Q7-EYB^9
  3624. M_*__OY^<&'@$OTZIT383>%"*29H<ICK2-4.@#VJI_E.](>W]DA&->`]_?AAN^
  3625. M:08]B3@)N3R)/1A3^O[(QKG,3G[.%[<7OWS^ZD\!6>\65W(]OS@_O[E8ROO^A
  3626. M9Y>WGT;\_$^UO/SOB[(C35G_?,@J._X74$L#!!0````(`,!S?1QI8)FF5`$`'
  3627. M``<"```*````5D5.1$]2+D1/0S50RV[;,!"\"]`_S"'(D4#S^(%41N*#8\!.F
  3628. M"_2XDE8B88DDR*5=_WV7CGOC<N>U\WOSV>T/IMO_;)NW7]W[Y@N[[6>W.<!EG
  3629. MV+`R^C+.+(@IS(E6B"6I.Z;L.$$"2N;ZZY%C8AK;)EMFR0@)A)D])UH02XI!9
  3630. M@2,)H:?,!G]"P:`TSD+]XK)5^-V,O,J<F",DT7!"F%!B]7IY58KP')+C7+_Y1
  3631. M;V2?Z]LK?0U>['*M!BX;;*5M-/?9C0K`5?TN3JR&99PI.?(#8TIAK:OTWWO25
  3632. MW'VXPVZ"WW'J>&5*!E_ZFMS"-RC38.^P>DS/VI3SPB-"D=K!V?&E3KX*:CE#\
  3633. M8O8&71C*REY(G*Z<'Y924^9:N56!VT7?D9R?#0X\NZQM5'C;//QX15Q*QA&/'
  3634. M^#`XVE"6$9>03I6WABS8ONTPA#4JI5]4^G9[MS_BV3QIL+:Q;K:<3-NTS3]0P
  3635. M2P,$%`````@`X'1]'`SSH3B7`0``+0,```H```!214%$344N1$]#?5)+;^(P<
  3636. M$+Y7XC^,.--`H3WL,1"$J("LLO30HXDGQ&JP+=LAS;_?L9.V/*3.(;*<F>\UI
  3637. M!JIL&2?;992D"_BI^5NR6NYAN]XERPS^9NDJB[=P5;/QG^?!`QW"!^:8L]KBW
  3638. MS61CA$,+G#D&3@$#+NS'"(2#1E052.7@@)"KDZ[08=5V6$JC88<*0130JAI,+
  3639. M+?U(8=0)%LECEFZCP4/7^DZ_<R;!.F:<;ZIUU^=*['N!20YG@4VX*P3A2G9"3
  3640. M#J_Q;CJ93*)YLNH]U&YT:^!+IG7*($&U(`DI&&I*E$$??A*Q!]=&'0T[11>Y[
  3641. M>(&V5'7%R:9N;^"]-#_(K%6Y8(Y4>8&V"ZNHE*:1$%J?C`$AR2N)(DH5Z`V4H
  3642. MS'#@1ISQDOF>23C;PP=;10>!@A08HGN!I_'S$-(,9G2:#@/O)6(J<PR&2W;VW
  3643. M6]."]%[37.@>05XR>41_%SQJBD<;[[*#"XJ["%K]_7*HV^_[ESC]OK]2N&:_L
  3644. M#P0.K8>30AX#Y'KW;Q]O-M$\WG>`/0<!YE7-R4]#<816%6()>87G]A]02P,$]
  3645. M%`````@`E75]'#882^@=`0``'@(```L```!)3E-404Q,+D)!5)U1P6KK,!"\M
  3646. M&_P/<\DET`?)49#2Q#$ED(;2.*>\'E1G'8LH7B');?SU?;)B'J&]E.JTS,X,:
  3647. MLZ,'*FL&5U6:9.MMFJ@*H\D%LQDN.+)GU*3-%9Y^AZ.XJ)7#A](:)9L.,@R^O
  3648. M)BQVR\>\0*4T.526S\$803F:_KVN!OFS)>>0>:NQL"1//4>^L?5@"]ETX.!F*
  3649. M<:*NWY3<>-6TE"9&MHYPW[0Z3<ZG@[*WSC'):#+^,[Y%8_)\LTP3<7O`D/1I-
  3650. MM5GF+U@USH<;I%?<#(2[G[V!O7/R2`*KS;:8K]?8.VYM2>(5^P.Y$#XZB]=?]
  3651. M>><7>38ZN*-@J&O2+_ECU7/1E]5_0R9PL.J=!H.YCZ@))!/&SA#P/VI09>*S6
  3652. M;R>6E";_`%!+`0(4`!0````(`/=E?1QK<6GDY````%P!```+``````````$`P
  3653. M(`````````!&24Q%7TE$+D1)6E!+`0(4`!0````(`/=E?1RO(!.0Z@```'$!C
  3654. M```*``````````$`(`````T!``!"541'150N05-04$L!`A0`%`````@`8C9]A
  3655. M''OD2L+/GP``JO$```H````````````@````'P(``$)51$=%5"Y%6$502P$"I
  3656. M%``4````"`"`BWP<""DD994!``#%!```#``````````!`"`````6H@``2D%.+
  3657. M,C`P,/\N0D1'4$L!`A0`%`````@`ZVY]'"'2$BIR$P``E#$```H`````````<
  3658. M`0`@````U:,``$)51$=%5"Y$3T-02P$"%``4````"`#`<WT<:6"9IE0!```'6
  3659. M`@``"@`````````!`"````!OMP``5D5.1$]2+D1/0U!+`0(4`!0````(`.!TZ
  3660. M?1P,\Z$XEP$``"T#```*``````````$`(````.NX``!214%$344N1$]#4$L!^
  3661. M`A0`%`````@`E75]'#882^@=`0``'@(```L``````````0`@````JKH``$E.Z
  3662. ?4U1!3$PN0D%44$L%!@`````(``@`Q`$``/"[````````P
  3663. ``
  3664. end
  3665. sum -r/size 57674/68052 section (from "begin" to "end")
  3666. sum -r/size 46374/48586 entire input file
  3667.  
  3668.  
  3669.  
  3670.