ࡱ> ` bjbj Mnnnn T    d eJ$h"z9 @nn6n L l  -[e z4THe2""4" voTD{e .<$Bf <Bf nnnnnn  Tricks (prog1.cpp or prog1.java) Problem Description There is a simple trick to see if any number n is divisible by 2 just look at the last digit. If the last digit is divisible by 2, then n is divisible by 2. This same trick will work for 5 and 10 as well. There is a simple trick to see if any number n is divisible by 3 just add up the digits. If this sum is divisible by 3, then n is divisible by 3. This same trick also works for 9. There are many such tricks but they can become complicated. For example, the trick for 6 is to take the 1s digit of n as it is, and then multiply all the other digits (10s, 100s etc.) of n by 4, and add them all up. The result is divisible by 6 if and only if n is divisible by 6. For 7, there is a sequence of six integers which repeats. Multiply the first (1s) digit of n by 1, the second (10s) digit of n by 3, the next (100s) by 2, then 6, then 4, then 5, then 1, then 3, etc. The resulting sum is divisible by 7 if and only if n is divisible by 7. Define a Trick for an integer k>1 as an infinite sequence a of integers such that: Every term ai in the sequence is between 0 and k-1, inclusive If you take any number n, and multiply its lowest digit (1s place) by a1, its next lowest (10s place) by a2, and so on, then add up all of those, the resulting sum is divisible by k if and only if n is divisible by k. At some finite point in the sequence a, a finite subsequence of terms repeats infinitely. If we use parentheses to wrap the repeating part, then: The trick for k=2 looks like this: 1 (0) The trick for k=3 looks like this: (1) The trick for k=6 looks like this: 1 (4) The trick for k=7 looks like this: (1 3 2 6 4 5) Given a selection of integers k, compute the trick for each. Input (standard input) Each line of input will have a single integer k, 2 <= k <= 105, with no spaces. The input will terminate with a 0 on its own line, which should not be processed. Output (standard output) For each integer k in the input, compute its trick. Display each trick on its own line, in the format described above (i.e. with parentheses around the repeating part). There should be no spaces at the beginning or end of a line. Put a single space between integer terms, and between an integer and an opening parenthesis. An opening parenthesis should have no spaces after it. A closing parenthesis should have no space before it, and should terminate the line. There should be no blank lines. There are cases where the same trick may be represented in many ways. For example, the trick for k=3, which is (1), might also be represented as 1 (1), or (1 1 1), or even 1 1 1 (1 1 1 1 1). In such a case, only the shortest representation will be considered to be correct. Thus, for k=3, (1) is the only correct answer. There are also cases where there appears to be more than one trick, but its really the same trick multiplied by a constant. For example, (2) will also work for k=3. Clearly, this is the same as (1). In such a case, only the trick with the smallest first term will be considered to be correct. Thus, (2) will not be accepted for k=3. Sample Input 2 3 4 5 6 7 8 9 10 0 Sample Output 1 (0) (1) 1 2 (0) 1 (0) 1 (4) (1 3 2 6 4 5) 1 2 4 (0) (1) 1 (0) Train Crash! (prog2.cpp or prog2.java) Problem Description Your program will help the train conductor determine how far ahead he must put on the brakes to stop his train before it crashes through a barrier! Train stopping distances may be determined by the number of cars they pull. Each car creates additional inertia to retard the efforts of the brakes. This inertia causes an addition to the total stopping distance for each new car on the train. The additional distance for each car is a percentage of the distance before that car was added. This problem is highly hypothetical do not try to drive your train with these rules in mind! Examples For example, if the stopping distance for a single car is 10 feet and the added distance for each additional car is 50% of the previous distance, then for two cars this train requires 15 feet to stop, for three cars 22.5 feet, for four cars 33.75 feet, and so forth. Input (standard input) Your program will, of course, handle multiple trains. Each train will be defined on a separate line and consist of three positive integers: total number of train cars, stopping distance for a single car, and the percentage increment for each additional car. After the last trains data will be a line with a single zero to indicate end of input. Output (standard output) For each train from the input you will print one line consisting of Train #number: followed by the calculated distance required to stop the train (rounded to two decimal places) followed by feet required. After the last trains distance, you should output on a separate line Done. Sample Input 3 10 50 10 10 50 25 5 25 15 30 15 30 10 25 0 Sample Output Train #1: 22.50 feet required Train #2: 384.43 feet required Train #3: 1058.79 feet required Train #4: 212.27 feet required Train #5: 6462.35 feet required Done. Runny Babbit (prog3.cpp or prog3.java) Problem Description Runny Babbit is the title of a billy sook by Shel Silverstein. Some of the crinteresting itters in the book are Rirty Dat, Kiddle Litten and her Mom Calley At and Poppy Slig. Your job is to take a dictionary of correctly spelled English words and use it to convert a bory from the stook into a more understandable version in correct English. [Runny Babbit is the title of a silly book by Shel Silverstein. Some of the interesting critters in the book are Dirty Rat, Liddle Kitten and her Mom Alley Cat, and Sloppy Pig. Your job is to take a dictionary of correctly spelled English words and use it to convert a story from the book into a more understandable version in correct English.] Rules and Examples For this program, a word is a consecutive sequence of letters and the apostrophes. Words must begin with a letter. All dictionary words will be entirely in lower case, but they must match their capitalized form if that occurs in the story. For example, Runny in the story matches runny in the dictionary. All words that appear in the final version of the text should appear in the dictionary. If there is a word that is in the original text that does not appear in the dictionary, there will be another word, later in the original text, possibly separated by other words, white space, and punctuation, that is not in the dictionary but can be paired with the first word. This pair of words can have their first 0, 1, or 2 consonants reversed; giving a pair of words that is in the dictionary. You do not need to remove the same number of consonants from each word (so you may exchange the first consonant from the first word with the first 2 consonants from the second). If a word starts with 2 consonants, you must exchange both of them. Similarly, you cannot select to exchange 0 consonants from a word that begins with one consonant. If a word is capitalized, its replacement should be as well. If not, then its replacement must not be (No words will contain upper case letters anywhere other than the first position.). For example, assuming a standard English dictionary: A ced rat becomes a red cat trimbing up a clee becomes climbing up a tree. bory stook becomes story book Calley At becomes Alley Cat today Miles won at rath becomes today Riles won at math. All words to be changed will be in pairs and one pair will be completed before another begins, though there may be other words separating the pair. It is not necessary to make changes to words other than those required for the spelling check. For example, changing at to cat does not require a preceding an to be changed to a. Input (standard input) Your program will contain one or more input sets. Each set will begin with a dictionary of acceptable words. These will be listed one per line. After the dictionary, there will be a line consisting of just two asterisks ("**"). There will then be a story of one or more lines to fix. You may assume that this story can be fixed. After the story, there will be a line consisting of just two asterisks. The end of input will be indicated by a dictionary with no words. This set should not be processed. Output (standard output) The output for each set will be the translated story as defined by the rules above. You should use the same line structure as in the input in the output, changing just the leading consonants of words not in the dictionary. There should be a blank line after each story. Sample Input good fun ** food good fun gun ** mamma a and coat full hat holes it made match new no of one patch rabbit runny's to try use was ** Runny's Cat and Hoat Runny's hoat was full of coles No use to try and patch it. Ramma Mabbit made a new one And a mat to hatch it. ** ** ** Sample Output good good fun fun Runny's Hat and Coat Runny's coat was full of holes No use to try and patch it. Mamma Rabbit made a new one And a hat to match it. Oil Spill (prog4.cpp or prog4.java) Problem Description Oil spills are catastrophic. One thing that scientists can do is to anticipate the magnitude of a spill. When oil is spilled in one spot in the water, the oil rapidly contaminates a large connected area. The size of the contaminated area depends upon land barriers, and the length of time of the spill. For our purposes, when oil spills on land, we will not calculate the effects. For this problem, we have a rectangular map divided into grid cells of 10 miles on each side, each representing 100 square miles. Each unit is completely composed of either water (W) or land (L). We will assume that once a spill has occurred on water, the spill continues to spread outward until it reaches land. In our simple model, in one day oil can move from one unit of water to the next unit of water if the units are connected on the left, right, above, below, or diagonal. For example, consider the following map where land is represented with an L and water is represented with a W (inverted color used to help visualize, not part of the input), and the rows are indexed top-to-bottom from 1..10 and the columns left-to-right 1..15. LLLLLLLLLLLLLLLLLWWWLWWWWWWWWLLLWLLWWWWWLLWWLLLLLWWLWWWLLWWLLWLWWWLWWWLLWWLLWLWWLLWWWLWWWLLLLWWWWWWLLLLLLLLWWLWWWLLLWWWLLLLLLLLLLWWWWWLLLLLLLLLLLLLLLL If an oil spill took place in row 5, column 6 (marked with a 1 below) after 9 days, 4400 square miles would be contaminated, as illustrated in this map. The characters L and W have been omitted to assist you in visualizing the oil spill. Notice that the numbers indicate the day number on which the oil first reaches each square. 65444567896334569224563215563256633345644445 Input (standard input) For this program you are given T test cases. The first line of the input will be the value of T. Following that line will be a set of input lines for each of the T test cases. The first line of each test case will have 5 integers: rows, cols, r, c, and d. Rows is the number of rows in the map, cols the number of columns in the map, r, c, the row and column of an oil spill, and d, a number of days (0 < d). After that line will be rows lines representing the map. Each line will contain cols letters, either 'L' representing land or 'W' representing water. The outermost units of each map are always all Ls. Output (standard output) Your program should output the case number (as shown below), starting with 1, followed by the appropriate one of these three options: If (r,c) hits water, output the number of square miles of water contaminated after d days labeled as shown below. If (r,c) hits land, output Hits land. If (r,c) is off the map, output Invalid coordinates. Use the format given in the Sample Output below. Sample Input 4 10 15 5 6 9 LLLLLLLLLLLLLLL LLWWWLWWWWWWWWL LLWLLWWWWWLLWWL LLLLWWLWWWLLWWL LWLWWWLWWWLLWWL LWLWWLLWWWLWWWL LLLWWWWWWLLLLLL LLWWLWWWLLLWWWL LLLLLLLLLWWWWWL LLLLLLLLLLLLLLL 3 3 2 2 1 LLL LWL LLL 3 3 1 2 1 LLL LWL LLL 3 3 3 4 5 LLL LWL LLL Sample Output Case 1: 4400 square miles. Case 2: 100 square miles. Case 3: Hits land. Case 4: Invalid coordinates. Flat Robot World (prog5.cpp or prog5.java) Problem Description Given the dimensions of a flat, rectangular world and a set of robots that can operate in that world, write a program to simulate robot movements for a specified duration of time to determine their final positions and orientations. A world is a rectangular grid laid out as a Cartesian plane with x and y coordinates. The bottom left location is the location at coordinates (0, 0). Each robot in the world has a unique identification number and is at a specific grid location (x, y). More than one robot can occupy the same location. Each robot has an orientation that describes the direction it is moving: north, south, east, or west. Each robot also has a program that it executes that controls its movement and possibly the movement of other robots. A program is a sequence of instructions. The instructions are shown in the table. InstructionDescriptionRRotate right to change orientation, but remain at the current grid location.FMove forward one grid location in the direction of its current orientation.NNo operationthat is, do not move forward or rotate.TResetthat is, start execution at the first instruction with no change of orientation or location.HHalt. Stop executing instructions (until reset).@Reset all of the other robots in the same grid location.A program has at least one instruction and a valid program must contain at least one H or T instruction. A program can contain at most 32 instructions. For example, a robot with the program FRT will move forward, turn right, and then reset to turn right again, thus moving clockwise inside a two-by-two square in the world. Another with FFFRT will move clockwise around inside a four-by-four square. Another with program RFNNNT will move slowly around inside a two-by-two square. Since the world is flat, it is possible for a robot to move off the edge. A robot that moves off the edge is lost and cannot continue program execution. Simulated time is discrete. At each tick of the simulation clock, each robot executes one instruction. (Each robot keeps track of which of its instruction is executed next.) The effect is that all robots execute instructions in parallel and at the same time. In particular, if a robot executes an @ instruction, locations of other robots are determined at the start of the clock tick. If a robot is reset by another robot at tick number t, then the reset takes effect at tick t+1; the robot being reset still executes its current instruction at time t as though it has not been reset. Input (standard input) The program reads sets of simulation data, each set being a group of lines as defined below. The first line of a set specifies the dimensions of the world, width followed by height. The maximum width is 50 and the maximum height is 50. If the width is specified as zero or the length is specified as zero, then the program stops processing input. The second line of a data set specifies the number N of robots in the world. There will be at least 1 robot and no more than 100 robots in any simulation. The third line specifies T, the number of time steps in a simulation. Assume T > 0. Each of the next N lines specifies a robot in the simulationan ID number (a non-negative integer), a location (x-coordinate followed by y-coordinate), an orientation (N, E, S, or W for north, east, south, or west), and then a program that is a string of instructions that extends to the end of the line. All values on a line are separated by a single space character. You may assume that all robot locations are initially within the world and that orientation is a valid value. IDs are listed in ascending order, but need not be sequential. Output (standard output) For each set of simulation data, the program displays the results of the simulation: a data set number and then the state of each robot in that simulation on each of the next N lines in the format ID# status where status is either (x, y) orientation if the robot is still in the world or LOST if the robot fell off the edge. The robots should be listed in increasing ID number orderthat is, the same order they were read in. After the last set of simulation results, the program displays DONE on a line by itself. Sample Input 10 10 4 7 1 0 0 S FT 2 9 8 W FFRT 3 5 6 W RH 4 3 6 E FF@FT 5 5 3 5 0 0 0 E F@@T 1 0 0 E FNRT 2 0 0 E FRNT 10 20 4 10 1 0 0 N FT 2 9 19 W FRRRT 4 5 10 S FFRFFRRRT 6 5 10 S HRRRT 0 10 Sample Output Data Set #1: 1 LOST 2 LOST 3 (5, 6) E 4 (8, 6) E Data Set #2: 0 (2, 0) E 1 LOST 2 LOST Data Set #3: 1 (0, 6) N 2 (9, 18) E 4 (3, 6) S 6 (5, 10) S DONE Crazy Computer Science Professor (prog6.cpp or prog6.java) Problem Description A deranged and highly overworked computer science professor gets rid of some of his freshmen students assignments by a strange "Russian Roulette" grading process. He starts out by having his students submit their program solution files into a prepared submission folder. He then runs an unusual grading script which deletes various programs apparently at random. However upon very close inspection one can determine that there is really a method to this apparent randomness. The script starts on some random file in the folder. It then selects a magic number, x, which is used to determine which program file gets the dangerously determined deletion. The magic number is counted (count from one, not zero) and the file on which the counting ends is the unlucky collection of bits! Once that file is selected its bits are forever transferred into the great bit bucket in the sky never more to be seen in the submission folder again. The process repeats itself by counting the magic number starting from the next file to select the subsequent dangerously determined deletion. The process continues until the number of files to be disposed of has been reached. The students whose files avoid the bit bucket receive a grade of A on the assignment. NOTE: The script treats the list of files as though they were in a circular list. Consider the situation where the starting position is 6 and the magic number is 14. All counting is done starting with 1, so the first file to be deleted is determined by counting 14 from file 6: index123456789101112131415161718192021222324252627282930value111111111111111111111111111111count1234567891011121314The value in position 19 is then selected for deletion. If another program is to be deleted, the count starts with the next item (in this case, item 20): index123456789101112131415161718192021222324252627282930value111111111111111111011111111111count1213141234567891011So the value in position 3 will be deleted. If another program is to be deleted, the count starts with the next item (in this case, item 4): index123456789101112131415161718192021222324252627282930value110111111111111111011111111111count1234567891011121314So the value in position 17 will be deleted. If another program is to be deleted, the count starts with the next item (in this case, position 18): index123456789101112131415161718192021222324252627282930value110111111111111101011111111111count1314123456789101112 Here, there is no longer an item in position 19, so it is skipped in the count and the item in position 2 is deleted. If one more item is to be deleted, the count starts in position 4 (since the item in position 3 is deleted): index123456789101112131415161718192021222324252627282930value100111111111111101011111111111count1234567891011121314 Here, element 18 is deleted and the count restarts at position 20, if more elements are to be deleted. In order to stagger his unbearable work load, the professor has 30 students at a time turn in an assignment. Each assignment consists of submitting 1 source code file into the crazy professors submission folder. The professor chooses the number of files to be removed each assignment (based upon his teaching and publishing loads) and the position where the counting begins (counting does not always begin at the same position each assignment). The magic number (from 1 to 30) is chosen at random. Given the file number where the counting started, and the end results, your job is to determine the magic number. Input (standard input) The input contains several assignments worth of data. Each assignment is stored on its own line and will contain the position number where the counting started followed by a series of 30 numbers (0's and 1's) which describes the fate of the files based on their original submission order: 0 means the students file was deleted; 1 means the student received an A. Each integer is separated by one space. Continue processing until you encounter a line that has a single zero in the first column. Do not process this final line. Output (standard output) Output the line number (start at 1), followed by a : followed by a space and then the calculated magic number. If there is more than one possible magic number, print the smallest one. Sample Input 5 1 0 1 1 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 6 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 Sample Output 1: 4 2: 14 The Luhn Formula (prog7.cpp or prog7.java) Problem Description The Luhn formula, also known as Mod 10, is a simple checksum algorithm used on credit card numbers. It is applied in three steps: Take every other digit, starting with the rightmost, and add them up into a grand total. Take each remaining digit, and double it. If the result is less than 10, add it to the grand total. If the result is greater than or equal to 10, add the digits of the result, and then add that to the grand total. If the grand total is divisible by 10, the number passes, otherwise it fails. Heres an example. Consider the number 1393046745572483:  SHAPE \* MERGEFORMAT  Because the grand total (70) is divisible by 10, the number 1393046745572483 passes. Note that simply because a sequence of digits passes the Mod 10 test does NOT mean that its a valid credit card number the Luhn formula is just a simple test to screen out random numbers, or mistyped numbers, before accessing a credit card service. Input (standard input) Each line of input will have a sequence of between 1 and 100 digits, with no spaces. End of the input will be signified by EOF. Output (standard output) For each sequence of digits, print the digits, a single space and either PASS or FAIL on its own line. The output should have no other spaces or blank lines. Sample Input 1393046745572483 123 Sample Output 1393046745572483 PASS 123 FAIL Lexicon (prog8.cpp or prog8.java) Problem Description Lexicon is a popular board game similar to Scrabble and Word Slinger where you often find yourself unscrambling potential words to form anagrams. Anagrams are words spelled with the exact same letters as another word. For example, rides is an anagram of sired" and vice versa. Your task is to write a program that can unscramble words and help you win your next game of Lexicon. Input (standard input) The input contains four parts: 1) a dictionary, which consists of at least one and at most 100 words, one per line; 2) a line containing XXXXXX, which signals the end of the dictionary; 3) one or more scrambled words that you must unscramble, each on a line by itself; and 4) another line containing XXXXXX, which signals the end of all input. All words, including both dictionary words and scrambled words, consist only of lowercase English letters and will be at least one and at most 80 characters long. (Note that the sentinel XXXXXX contains uppercase X's.) The dictionary is not necessarily in sorted order, but each word in the dictionary is unique. Output (standard output) For each scrambled word in the input, output Input word: the-scrambled-word followed by an alphabetical list of all dictionary words that can be formed by rearranging the letters in the scrambled word. Each word in this list must appear on a line by itself. If the list is empty (because no dictionary words can be formed), output the line "NOT A VALID WORD" instead. In either case, output a line containing six asterisks to signal the end of each list. Sample Input tarp given score refund only trap work earn course pepper part XXXXXX resco nfudre aptr sett oresuc XXXXXX Sample Output Input word: resco score ****** Input word: nfudre refund ****** Input word: aptr part tarp trap ****** Input word: sett NOT A VALID WORD ****** Input word: oresuc course ****** Image Processing (prog9.cpp or prog9.java) Problem Description One important application of CS is processing digital images. In this program, you will take a grayscale PGM image file as input, enhance the contrast range of the image, and output the resulting PGM image file to the screen. When the PGM files are viewed they could look like: Input PGM file  (  Output PGM file Your program should be able to accept an image of up to 1024x1024 pixels in size. Process the input as follows: An input image may be given with pixel values that differ only slightly (low contrast), such as in the range from 100 to 175 or even from 30 to 45. By stretching the range of values to cover the range from 0 to 255, a much higher contrast version of the image is created. Your job is to find the minimum and maximum grayscale values in an image and remap the values between them to cover the range from 0 (min) to 255 (max). The minimum pixel value in the original image will be changed to 0 and the maximum pixel value will be changed to 255. All other pixel values will be changed so they maintain the same relative distance from the minimum and maximum value, rounding as necessary. For example, if the original image had a pixel range from 100 to 120, all 100s in the original image would appear as 0s in the enhanced image and all 120s in the enhanced image would appear as 255s in the enhanced image. A pixel value of 110, halfway between 100 and 120 would map to 128 (since 127.5 is halfway between 0 and 255 and 127.5 rounds to 128). Output the information in the same format as the original, with the new higher contrast range pixel values. Input (standard input) The input file consists of one or more images in PGM format. The PGM format is a simple text-based image file format and has the following standards: The first lines hold the header of the image. A sample header may be: P2 # Created by Paint Shop Pro 7 64 64 255 The first line is the PGM type, which is a string with no embedded characters (P2 in this case). There is then a comment line (or lines) beginning with the # symbol. Next is a line with the number of columns and number of rows of the image in pixels separated by a space (which will always be positive integers, except in the last case where we use zeros to signal end of input). The last line of the header is a single integer with the maximum grayscale value (a positive integer less than or equal to 255). Every value that follows these lines is a pixel graymap intensity value between 0 and the maximum grayscale value of the image (0 is black, the maximum value is white, halfway between is medium gray), separated by one or more spaces. Pixel values are given for each pixel in row major format, so all pixels on the first row of the image are listed first, followed by the next row of pixels, etc. In the above example, we have 64 rows of 64 pixels (a 64x64 pixel image) but note that the end of a line in the text document is not the same as the end of a row; i.e. the text wraps around after each 20 or so values, so there may be many more (or fewer) lines of input. Here are the first 8 pixels of the above image: 162 136 153 158 143 128 122 123 There will be at least two different pixel intensities in each image. The end of input will be marked by an image of 0 by 0 pixels. This image should not be processed. Output (standard output) The output should be PGM format image following the same standards as given under the input section above. You should echo the header and have line breaks after each 20 pixels image. There should be exactly one space after each pixel's value. You should have one blank line following each image. Sample Input P2 # Created by Paint Shop Pro 7 4 6 255 110 115 115 115 115 115 116 117 118 119 120 120 120 120 115 115 115 120 120 120 120 118 118 120 P2 # Created by Paint Shop Pro 7 # Actuallly not # Created in a text editor 6 4 255 110 15 115 215 183 115 116 117 118 119 120 120 20 120 215 175 115 120 120 120 120 118 118 120 P2 # Nothing here! 0 0 255 Sample Output P2 # Created by Paint Shop Pro 7 4 6 255 0 128 128 128 128 128 153 178 204 229 255 255 255 255 128 128 128 255 255 255 255 204 204 255 P2 # Created by Paint Shop Pro 7 # Actually not # Created in a text editor 6 4 255 121 0 128 255 214 128 128 130 131 132 133 133 6 133 255 204 128 133 133 133 133 131 131 133 Find this interesting? You can view PGM files for free (but you don't need to do this during the contest!). Jasc Paint Shop Pro is a free demo download that allows viewing of PGM files; Adobe Photoshop will display PGMs; there are other free utilities on the web for viewing PGM files. Bowling (prog10.cpp or prog10.java) Problem Description Bowling is a game where you have ten pins set up at the end of an alley and your goal is to knock them over with a ball. This game has ten frames which are turns for you to knock over as many of the ten pins as possible. Each frame starts with ten pins. A normal frame may have two rolls. If you dont knock over all ten pins with your first roll, you get a second roll in the frame to try to knock down the remaining pins. During the tenth frame, however, if you knock over all of the pins with the first roll, you get two more rolls. Additionally, in the tenth frame, if your second roll knocks over all standing pins, you get a third roll. Bowling scores are based on how many pins you knock over. For each pin you knock over you get one point. If within any frame you knock over all ten pins, you receive bonus points. The bonus points, which are in addition to the points for knocking over the pins, are calculated like this: If your first ball in a frame knocks over all ten pins (called a Strike and symbolized by X) you get a bonus of the number of pins knocked over during your next two rolls. If your second ball in a frame knocks over all standing pins (called a Spare and symbolized by /) you get a bonus of the number of pins knocked over during your next one roll. If while you are delivering a roll, you cross the foul line (or any one of many other infractions) your roll is considered Foul, which is symbolized by F. Fouls count as one of your rolls, but a score of zero pins is awarded for that roll. A Bowling score card (from www.bowl.com) is shown below. This card is used to record the rolls of each frame and to calculate the games score.  As you can see there are ten frames (numbered across the top of the card). Each of the score cards frames has a box in the upper right corner. Here is how you use this score card: When you bowl a Strike in a frame, you put an X inside the box in the upper right corner of the associated frame. When your first roll knocks over fewer than 10 pins, you put the number of pins knocked over in the upper left corner for the associated frame. When you have a second roll in a frame, you put your results in the box in the upper right corner for the associated frame. The choices here are: knocked over all remaining pins (i.e. a Spare): put a / knocked no more pins over: put a - knocked over some but not all of the remaining pins: put the number of pins knocked over on this roll. When you bowl a Foul, put an F where the score for that roll would normally go. The bottom of each frame on the scorecard is used to keep a running total of your score (including bonus points). In the score card above, the bowler had strikes on the first three rolls. The score for the first roll is computed by adding the number of pins knocked down on the first roll (10) to the bonus, the number knocked down on the next two rolls (20). In the fourth frame, the bowler knocked down 7 pins in the first frame and 2 in the second. Therefore, the points earned for the second frame is computed by adding the number of pins knocked down in the second frame (10) to the bonus, the number knocked down on the next two rolls (17, 10 in the third frame and 7 for the first roll of the fourth frame) giving 27. Running totals are listed at the bottom of each frame so 27 + 30 puts 57 at the bottom of the second frame. The points earned for the fourth frame is just 9, since the bowler earned no bonus (no Strike or Spare). The bottom of frame four holds the running total: 76 + 9 = 85. Input (standard input) The first line of input will be an integer N indicating how many scorecards are given below (0. (W/P) No winner can be claimed, since no candidate has won more than 50% of all possible votes. For such cases, the following line is expected: No winner can be claimed yet. A winner map as described on page 1 should then be displayed. A blank line should be used to separate contents for two adjacent cases. Sample Input 2 2 2 1 X 2 Y a A 10 b B 10 7 12 aaaaaaaaaaaa aaaaaaaaaaaa aaaaaabbbbbb aaaaaabbbbbb aaaaaabb..bb bbbbbbbbbbbb bbbbbbbbbb.. 112222211112 111222111122 111111212222 111222222221 11222222..21 222222111222 2211122222.. 2 4 1 Bill 2 Bob a Georgia 12 b Florida 21 c Alabama 10 d N Calorina 13 14 12 ......dddd.. .....ddd.dd. ..cccdddddd. .cccaaaaaaaa ccccaaaaaaaa cccccaaaaaa. cbbbbbbbbbb. ..bbbbbbbbb. .......bbbb. ........bbbb ........bbbb .........bbb ..........bb .......b.b.. ......1111.. .....111.11. ..111111222. .11111222222 121111111222 22222221111. 22222222221. ..222222222. .......2222. ........2111 ........1111 .........112 ..........12 .......2.1.. Sample Output Case-1 (2 candidates, 2 States) No winner can be claimed yet. aaaaaaaaaaaa a11111aaaaaa a1111abbbbbb a1111ab2222b aaaaaab2..2b bbbbbbb222bb bbbbbbbbbb.. Case-2 (2 candidates, 4 States) The winner is Bill. (35/56) ......dddd.. .....d11.dd. ..cccdddddd. .c1caaaaaaaa c11ca111111a cccccaaaaaa. Cbbbbbbbbbb. ..bbbbb222b. .......b22b. ........b22b ........b22b .........b2b  "#67de3 4 4 5 } ~ 7 8 Z [ ķη{wpwpwpwpwlwpwpwpwpwpwpwhwh-hjG hU|6]hU|&hX@hyc5CJOJQJ\^JaJ hG!{5CJOJQJ\^JaJhyc5OJQJ\^JhGOJQJ^JhB1hB1OJQJ^JhhOJQJ^Jhw9OJQJ^Jh3OJQJ^JhycCJ aJ hU|CJ aJ hycCJ OJQJ^JaJ '"#7 B \ @j$ & Fxxa$gdU|gdU| $7$8$H$a$$a$gdB17$8$H$  ) * M N O q r 6 7 G H Y Z '(<?OPdiyzȴ hG5\ hX@5\hX@hX@5\hX@5OJQJ\^JaJ&hX@hyc5CJOJQJ\^JaJ hU|5CJOJQJ\^JaJ hO1aJhU|OJQJ^J hU|H* hU|6]hU| hU|5\4"#*,1249@GSdvy:;?@AN͹ߐߐߐߐߐߐߐߐߊv&h?hyc5CJOJQJ\^JaJ hGaJhU|OJQJ^J hG5\ hX@5\ hX@5CJOJQJ\^JaJ&hX@hyc5CJOJQJ\^JaJ hycaJ hU|H* hU|6]hU|hyc5OJQJ\^JaJhX@CJOJQJ^JaJ.?@ANPRTVXZ\^aceftz~ 7$8$H$gdGgdU|7$8$H$Ncdeft=>FGQRSϻraMGaG@G h7~h`;m h`;maJ&hX@h`;m5CJOJQJ\^JaJ h`;m5CJOJQJ\^JaJh`;m5OJQJ\^JhB1h`;mOJQJ^Jh`;mOJQJ^Jhzh`;mCJ aJ h`;mCJ aJ h`;mCJ OJQJ^JaJ h`;m&h?hyc5CJOJQJ\^JaJhycOJQJ^JaJhB1hycOJQJ^JaJhGOJQJ^JaJhU|OJQJ^J=>GRSk (1 7$8$H$gdGgd`;m $7$8$H$a$$a$gdB17$8$H$gdU|SXYZijk-3<=K+7"";%̾ݺ̾촙݅ymc\\\ThB<h`;m6 h`;m6]h`;mOJQJ^Jh`;mCJ OJQJ^Jh`;mOJQJ^JaJ&h?h`;m5CJOJQJ\^JaJhE-h`;m6aJ h`;m5CJOJQJ\^JaJ h`;maJh`;mh`;mCJOJQJ^JaJ h`;m5\hX@h`;m5\h`;m5OJQJ\^JaJ&hX@h`;m5CJOJQJ\^JaJ 1:<=K+/ 0 u#v#h$$ & Fgd`;m$a$gd`;m$a$7$8$H$gd`;m$$$$;%<%&&&&=(>(((()))))))))))*gd`;m$a$gd`;mgd`;m & Fgd`;m;%<%&&&(()***++++++++++-i-˿|o^JA; h`;maJh;mh`;maJ&hX@h`;m5CJOJQJ\^JaJ h`;m5CJOJQJ\^JaJh`;m5OJQJ\^JhB1h`;mOJQJ^Jh`;mOJQJ^Jhzh`;mCJ aJ h`;mCJ aJ h`;mCJ OJQJ^JaJ h\&h`;mPJaJh`;mCJOJQJ^Jh\&h`;mCJOJQJ^Jh`;mCJOJQJ^Jh`;m5CJOJQJ\^Jh`;m hdDh`;m** *****!*&*,*0*3*6*:*@*G*O*R*V*Z*^*a*v********gd`;m***+ +++%+D+`+|+++++++++++++++++++gdU|gd`;m++++++++++++++++++j-k-U0V0X0Z0 $7$8$H$Ifgd`;m 7$8$H$gd`;m $7$8$H$a$$a$gdB17$8$H$gdU|i---------\.e..../Y/a/b/o/s///000 0000U0V0W0X0Y0Z0[0\0]0^0_0`0a0b0c0d0e0f0g0h0i0j0k0l0m0n0o0p0q0r0s0u0v0w0x0y0z0{0|0}0~0000000000000000000000000000 h`;maJh;mh`;maJ_Z0\0^0`0b0d0f0h0j0l0n0p0r0t0u0w0y0{0}0000000000Ff $7$8$H$Ifgd`;m000000000000000000000000000FfFf: $7$8$H$Ifgd`;m000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000h;mh`;maJ h`;maJ_000000000000000000000000000Ff$Ff| $7$8$H$Ifgd`;m00000001111 1 1 1111111111 1"1$1&1(1Ff# $7$8$H$Ifgd`;m0000111111111 1 1 1 1 111111111111111111 1!1"1#1$1%1&1'1(1)1*1+1,1-1/101112131415161718191:1;1<1=1>1?1@1A1B1C1D1E1F1G1H1I1J1K1L1N1O1P1Q1R1S1T1U1V1W1X1Y1Z1[1\1]1^1 h`;maJh;mh`;maJ_(1*1,1.1/11131517191;1=1?1A1C1E1G1I1K1M1N1P1R1T1V1X1Z1Ff1Fft* $7$8$H$Ifgd`;mZ1\1^1`1b1d1f1h1j1l1m1o1q1s1u1w1y1{1}111111111Ff4>Ff7 $7$8$H$Ifgd`;m^1_1`1a1b1c1d1e1f1g1h1i1j1k1m1n1o1p1q1r1s1t1u1v1w1x1y1z1{1|1}1~11111111111111111111111$2222222222222222233333 3 3333333333333#3$3%3&3(3)3h;mh`;maJ h`;maJ_1122222222222222222222222$$7$8$H$Ifa$gd`;mFfD $7$8$H$Ifgd`;m 7$8$H$gd`;m222222333333 3 3 3 33333333333FfK $7$8$H$Ifgd`;m$$7$8$H$Ifa$gd`;m333 3!3"3#3%3'3(3*3,3.3/3031323334353637393;3=3FfX$$7$8$H$Ifa$gd`;mFf:R $7$8$H$Ifgd`;m)3*3+3,3-3738393:3;3<3>3?3@3A3B3C3M3N3O3P3S3T3U3V3W3X3b3c3d3e3f3g3h3i3j3k3l3m3w3x3y3z3|3}3~33333333333333̽h`;mCJOJQJ^JaJ h`;m5\hX@h`;m5\h`;m5OJQJ\^JaJ&hX@h`;m5CJOJQJ\^JaJ h`;m5CJOJQJ\^JaJ h`;maJh;mh`;maJ:=3>3@3B3D3E3F3G3H3I3J3K3L3M3O3Q3R3S3U3W3Y3Z3[3\3]3^3Ff|_ $7$8$H$Ifgd`;m$$7$8$H$Ifa$gd`;m^3_3`3a3b3d3f3h3j3l3n3o3p3q3r3s3t3u3v3w3y3{3|3~33Ffl$$7$8$H$Ifa$gd`;m $7$8$H$Ifgd`;mFf$f3333333333333333333333333Fffs $7$8$H$Ifgd`;m$$7$8$H$Ifa$gd`;m33333333333333333333-6.6H66 7$8$H$gdG7$8$H$ 7$8$H$gd`;mFf $7$8$H$Ifgd`;mFfz33#4$4g4h4444444444455555-5>5B5C5F5U5[5\5x5y5|5555555*6.64666F6G6H6!7"7777h`;m5OJQJ\^JaJh`;mCJOJQJ^JaJ h`;m5\ h`;m5CJOJQJ\^JaJ&hX@h`;m5CJOJQJ\^JaJh%h`;m6aJh;mh`;maJ h`;m6aJ h`;maJh&9 h`;m6aJ16@7h77777777 88-8=8M8]8m8}888888888gd`;m7$8$H$ 7$8$H$gd`;m & F7$8$H$gd`;m77888889 9!9%9.9B9C9E9F9V9W9a9d9j9q9r999<<==f>k>ŷ◊ye^VNhL-h`;m6h h`;m6 h1h`;m&hX@h`;m5CJOJQJ\^JaJ h`;m5CJOJQJ\^JaJh`;m5OJQJ\^JhB1h`;mOJQJ^Jhzh`;mCJ aJ h`;mCJ aJ h`;mCJ OJQJ^JaJ h`;mh`;mOJQJ^JaJhWh`;mOJQJ^Jh`;mOJQJ^J&h?h`;m5CJOJQJ\^JaJ8888888889&9C9D9F9W9q9r99n:<<"$$& #$. / Ifa$b$gd`;mlgd`;m $7$8$H$a$$a$gdB17$8$H$ 7$8$H$gd`;mgd`;m<<<<M+"$$& #$. / Ifa$b$gd`;mlkd$$Ifl  0   t 6   0  6 44 lae4p$& #$. / Ifb$gd`;ml<1=2=4==M+"$$& #$. / Ifa$b$gd`;mlkd)$$Ifl  0 t 6   0  6 44 lae4p$& #$. / Ifb$gd`;ml====lJ+$& #$. / Ifb$gd`;ml"$$& #$. / Ifa$b$gd`;mlkd$$Ifl  0 t 6   0  6 44 lae4p===>lJ+$& #$. / Ifb$gd`;ml"$$& #$. / Ifa$b$gd`;mlkd'$$Ifl  0 t 6   0  6 44 lae4p>>!>R>lJ+$& #$. / Ifb$gd`;ml"$$& #$. / Ifa$b$gd`;mlkd$$Ifl  0 t 6   0  6 44 lae4pR>S>U>>lJ+$& #$. / Ifb$gd`;ml"$$& #$. / Ifa$b$gd`;mlkd%$$Ifl  0 t 6   0  6 44 lae4p>>'?o@p@ A ASClCCCDlgggggggggggd`;mkd$$Ifl  0 t 6   0  6 44 lae4p k>??rBwBBBBB0C1CTCYCZC[CjCkClC DDD!DDD~EEEEEEGGGGGGGHHHɺ}ldhwh`;m6 h`;m5CJOJQJ\^JaJ h`;maJh9Lh`;m6hh`;m6hyh`;m6h`;mCJOJQJ^JaJ h`;m5\hX@h`;m5\h`;m5OJQJ\^JaJ&hX@h`;m5CJOJQJ\^JaJh1h`;m6hQh`;m6hL-h`;m6 h`h`;mh`;m'DDdEeEEE+G,GGGGHHHHIIII JJJJJ+J6JDJHJgd`;m7$8$H$gd`;mHHHHHHHHHIII JJJJJfKgKKKKKKKKƲ{pfYfYLhzRx5OJQJ\^JhB1hzRxOJQJ^JhzRxOJQJ^JhzhzRxCJ aJ hzRxCJ aJ hzRxCJ OJQJ^JaJ h`;mOJQJ^JaJh)|uh`;mmHnHuh`;mmHnHu&h?h`;m5CJOJQJ\^JaJ h`;m5CJOJQJ\^JaJh`;m5OJQJ\^JaJh`h`;m6h`;m h`;m6htuh`;m6HJJJLJYJfJsJyJ{J~JJJJJJJJJJJJJ KKK%K2K=KIKTK7$8$H$gd`;mTK`KeKgKKKKKPQQQQQQQQQQQQQQQQ $IfgdqSgdqS $7$8$H$a$$a$gdB17$8$H$gd`;mgd`;mKKKQQR RHRRS"StSzSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS}TTTTTTTTTTTUUòòòòÖÖÖÖÖÖÖÖÖÖÖÖÖÖòòhzRxCJOJQJ^JaJhzRxCJOJQJ^JaJ h)hzRxCJOJQJ^JaJ h)hzRxCJOJQJ^JaJ hzRxhzRx&hX@hzRx5CJOJQJ\^JaJ hzRx5CJOJQJ\^JaJ;QQQQQQQQQQQQQQQRRR RRRRRRRRR $$Ifa$gdqSFfF $IfgdqSRR R"R$R&R(R*R,R.R0R2R4R6R8R:RR@RBRDRFRHRIRORPRQR $IfgdqSFf $$Ifa$gdqSQRRRSRTRVRXRZR\R^R`RbRdRfRiRlRoRrRuRvRwRxRyRzR{R|R}R~RRR $IfgdqSRRS"S$S&S(S*S,S.S0S2S4S7S:S=S@SCSFSISLSOSRSUSXS[S^SaS $IfgdqSgdqSFfGaSdSgSjSmSpSsStSzS|S~SSSSSSSSSSSSSSSSS $$Ifa$gdqSFf $IfgdqSSSSSSSSSSSSSSSSSSSSSSSSSSSS $IfgdqSFf $$Ifa$gdqSSSSSSSSSSSSSSSSSSSSS}TTTTTTTTgdqSFf $IfgdqSTTTTTTTTTTTTTTTTTTTTTTTTTTTFf $IfgdqSTTTTTTTTTTTTTTTTTTTUUUU U U UUUU $$Ifa$gdqSUUUUUU U!U#U%U'U)U+U-U/U1U3U6U9UU?UAUPUUU[?[D[ͿͿͿͿͿޱޱޱޱޱޱޱޱޱޱޱޱޱޱ諸&hX@hzRx5CJOJQJ\^JaJ hzRxaJhzRxhzRxaJhzRxCJOJQJ^JaJhzRxCJOJQJ^JaJ h)hzRxCJOJQJ^JaJ h)hzRxCJOJQJ^JaJ hzRxhzRxhzRxOJQJ^J3WWWWWWWWWWWWXXXX X X XXXXXXXXX $$Ifa$gdqSFf $IfgdqSXX!X#X%X'X)X+X-X/X1X3X5X7X8X>X?X@XAXCXEXGXIXKXMXOXQX $IfgdqSFf4 $$Ifa$gdqSQXSXVXYX\X_X`XcXdXeXfXgXhXiXjXkXlXmXnXoXpXqXXX>[?[W[7$8$H$ 7$8$H$gdqSFf $IfgdqSD[E[F[U[V[W[g]h]i]o]q]]]]=^>^?^@^M^^^^^^^^^^_¼Ҩyuiyu[SHyhzhzRxCJ aJ hzRxCJ aJ hzRxCJ OJQJ^JaJ hzRxOJQJ^JaJhzRxhzRxOJQJ^J&h?hzRx5CJOJQJ\^JaJ hzRx5CJOJQJ\^JaJ&hX@hzRx5CJOJQJ\^JaJ hzRxaJhzRxhzRxaJ hzRxhzRxhzRxCJOJQJ^JaJ hzRx5\hX@hzRx5\hzRx5OJQJ\^JaJW[h]i]]>^?^M^^^^^^^__,__``+adaaa$ & Fxxa$gdqS $7$8$H$a$$a$gdB1gdqSgdqS7$8$H$ 7$8$H$gdG___+_,___Rabadaeafa}a~aaaaaabbbbbbbmcnctcvccccc|rk]|Wk] hzRxaJhzRxCJOJQJ^JaJ hzRx5\hX@hzRx5\hzRx5OJQJ\^JaJjhzRxUjhzRxUjhzRxUmHnHuhW,hzRxOJQJ^J hzRx6]hzRx&hX@hzRx5CJOJQJ\^JaJ hzRx5CJOJQJ\^JaJhzRx5OJQJ\^JhB1hzRxOJQJ^J!aabbbmcncc&d'd4dEdIdJdXdndwdyddddd2f3fKf 7$8$H$gdqS $7$8$H$a$$a$gdB1$gdqS7$8$H$gdqScccc&d'd4dIdJdXdvdwdxdyddddddddddddddd򨠕{jVNFFhPhzRx6h2JhzRx6&hX@hzRx5CJOJQJ\^JaJ hzRx5CJOJQJ\^JaJhzRx5OJQJ\^JhB1hzRxOJQJ^JhzhzRxCJ aJ hzRxCJ aJ hzRxCJ OJQJ^JaJ hjZhzRxOJQJ^JhzRxOJQJ^JaJ&h?hzRx5CJOJQJ\^JaJhzRx5OJQJ\^JaJhzRxhzRxOJQJ^Jdd e*ePeeeeeeeeeef(f/f1f2f3f8f9f:fIfJfKfUfffg%gygggg*hJhbhhh|h}hhhhhh~~~~hRhzRxOJQJ^J hbhzRxhzRxCJOJQJ^JaJ hzRx5\hX@hzRx5\hzRx5OJQJ\^JaJ&hX@hzRx5CJOJQJ\^JaJ hzRxaJhPhzRx6hzRxB*phh2JhzRxB*ph h2JhzRxhzRx-Kfhhhhjjjjjjjjjjk kkkk$k+k0k5k}N}O}p~q~s~{~~$a$gdB1gdqS7$8$H$ 7$8$H$gdqS||||||N}O}g}}}}o~p~q~r~s~z~{~~~~~~ϰxmcVcVIhzRx5OJQJ\^JhB1hzRxOJQJ^JhzRxOJQJ^JhzhzRxCJ aJ hzRxCJ aJ hzRxCJ OJQJ^JaJ hS:hzRxB*ph hhzRxhzRx hIJhzRx hzRx5hzRxB*OJQJ^JaJphhhzRxOJQJ^JaJ hhzRxCJOJQJ^JaJ&h?hzRx5CJOJQJ\^JaJhzRxOJQJ^JaJ~~~56Z h7$8$H$^hgdqSW & F 887$8$EƀPfH$^8gdzRx7$8$H$ $7$8$H$a$~~~FG*+DJL\]^ (,48ۺՑՑՑ者պ}ll`}llhzRxOJQJ^JaJ hz hzRxCJOJQJ^JaJ&h?hzRx5CJOJQJ\^JaJh%2whzRx6aJhzRxCJOJQJ^JaJ hzRx5\hX@hzRx5\hzRx5OJQJ\^JaJjQhzRxCJUaJ hzRxaJ&hX@hzRx5CJOJQJ\^JaJ hzRx5CJOJQJ\^JaJ$ EFHI 7$8$H$gdqS7$8$H$W & F 887$8$EƀPfH$^8gdzRx scN & F7$8$EƀPfH$gdqSN & F7$8$EƀPfH$gdqSчcN & F7$8$EƀPfH$gdqSN & F7$8$EƀPfH$gdqSч^cN & F7$8$EƀPfH$gdqSN & F7$8$EƀPfH$gdqS^#$CcVMGG> 7$8$H$gdG7$8$H$ 7$8$H$gdqS h7$8$H$^hgdqSN & F7$8$EƀPfH$gdqSN & F7$8$EƀPfH$gdqSCD^ ,89;Mij~ёݑgdqSgdqS $7$8$H$a$$a$gdB1gdqS 7$8$H$gdG7$8$H$8:;LMX[bij}~0268>@FHhjʒ̒ВҒؒڒķvle hzRx5\hX@hzRx5\hzRx5OJQJ\^JaJ h?hzRx hzRx0J&hX@hzRx5CJOJQJ\^JaJ hzRx5CJOJQJ\^JaJhzRx5OJQJ\^JhB1hzRxOJQJ^JhzRxOJQJ^JhzhzRxCJ aJ hzRxCJ aJ hzRxCJ OJQJ^JaJ hzRx#ݑڒ 5BZhǗz{efНѝ$a$gdqS $7$8$H$a$$a$gdB1gdqS7$8$H$gdqS ƓȓΓГ̕Ε5BZh߽ߝ߉߉{sh^Q^hB1hzRxOJQJ^JhzRxOJQJ^JhzhzRxCJ aJ hzRxCJ aJ hzRxCJ OJQJ^JaJ &h?hzRx5CJOJQJ\^JaJhJHhzRx6 hzRx5\ hzRx5CJOJQJ\^JaJ&hX@hzRx5CJOJQJ\^JaJh hzRx6 hzRx0JhzRxhzRx5OJQJ\^JaJhzRxCJOJQJ^JaJƗǗYZ%&'(,2rmememememhXhzRx5 hzRx5 jhXhzRxOJQJ^JhD0hzRxOJQJ^JhzRxOJQJ^Jh5\phzRx6hfelhzRxOJQJ^Jh!hzRx6 h9AhzRxhzRx&hX@hzRx5CJOJQJ\^JaJ hzRx5CJOJQJ\^JaJhzRx5OJQJ\^JhB1hzRxOJQJ^J'ƠǠ &3@MZgt $IfgdqS ^$If^^gdqS h$If^hgdqS & F gdqSgdqSǥԥcykd$$Ifl\* ," o  t644 la $If^gdqS $$Ifa$gdqS $IfgdqS !+,=>?ȦɦݧlggagY & F gdqS7$8$H$gdqSykd$$Ifl\* 4," o  t644 la x$IfgdqS$x$Ifa$gdqS 29:>?@EFGVWXȦɦ³uo֢‰bRHhzRxOJQJ^JhZwhzRx56OJQJ^JhGhzRxOJQJ^J hzRxaJh8hzRxOJQJ^J h'hzRxhzRx h_KhzRxhzRxCJOJQJ^JaJ hzRx5\hX@hzRx5\hzRx5OJQJ\^JaJ&hX@hzRx5CJOJQJ\^JaJ hzRx5CJOJQJ\^JaJhzRx5OJQJ^J hzRx5hXhzRx5NX9!Jӯԯ֯ & F gdqSgdqS7$8$H$ 7$8$H$gdG^gdqS & F gdqS+Iԯկ֯ưȰ!"./UVWXbcop|}ɱ˱Աձױر %&23rtuvİ棗hzRxOJQJ^JaJh8hzRxOJQJ^J&h?hzRx5CJOJQJ\^JaJhR5OJQJ\^JaJhzRx5OJQJ\^JaJhzRxhzRxOJQJ^JhZwhzRx56OJQJ^J;+8ER_lyưٰ̰ #0=JWgdqSWdq~̱ٱ '4AN[huvòв gdqS7$8$H$gdqSv²ò$%*23=?QZegqsuvdzȳճֳ+,24679:<=?@BCEF¾¯¯¯¯¯h\%hzRx5CJ aJ hzRxCJ aJ h\%hzRxCJ aJ hychRhzRxUhGhzRxOJQJ^JhzRxOJQJ^Jh2hzRxOJQJ^J&h?hzRx5CJOJQJ\^JaJ=вݲ?[jxʳس 5gdU|gdqS gdqS..........bb .......b.b.. Grand Total: 36+34=70 3 3 4 7 5 7 4 3 2 5 4 8 6 0 9 1 Step 1: 3+3+4+7+5+7+4+3=36 Step 2: 2+(1+8)+0+(1+2)+8+(1+0)+4+(1+6)=34 2 5 4 8 6 0 9 1 3 3 4 7 5 7 4 3 5679:<=?@BCEFHIKLNOQRTUWXZ[]^$a$gdqSgdqSFHIKLNOQRTUWXZ[]^`acdefgnoŒÌŌƌȌɌˌ̌ΌόьҌԌՌ׌،ڌی݌ތhychqSh\%hzRx5CJ aJ hzRxCJ aJ hYhzRxCJ(aJ(hzRxCJ(aJ(hzRxh\%hzRxCJ aJ E^`acdfgŒÌŌƌȌɌgdqSɌˌ̌ΌόьҌԌՌ׌،ڌی݌ތgdU|$a$gdqS6&P1:p`;m/ =!"0#$% L&P1:p`;m/ =!"0#$% P0 9 0&P1:p`;m/ =!"0#$% O 0&P1:pR/ =!"0#$% P0 9 0&P1:p`;m/ =!"0#$% $$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / / 4p֖T"kd$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / 4p֖T"kd$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / 4p֖T"kd^ $$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tt$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ 4p֖T"kd$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / 4p֖T"kd$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / 4p֖T"kdH!$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ /  4p֖T"kd'$$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tt$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/  4p֖T"kd.$$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tt$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ 4p֖T"kd25$$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tf$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,5554p֖T"kd;$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / / 4p֖T"kdXB$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / 4p֖T"kdI$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / 4p֖T"kdO$$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tt$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ 4p֖T"kd^V$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / 4p֖T"kd\$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ / 4p֖T"kdc$$IfTlNa3{ M g9   ֖06<<<<4 lap֖T$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ /  4p֖T"kdHj$$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tt$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/  4p֖T"kdp$$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tt$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,555/ 4p֖T"kdw$$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tf$$If!vh555555555 5 5 5 5 5 5#v#v#v:V l  ֖06,5554p֖T"kd$~$$IfTlNa3{ M g9   ֖06<<<<4 lap֖Tw$$If!vh5S5#vS#v:Vl t 6   6 55e4}$$If!vh5S5#vS#v:Vl t 6   6 ,55e4}$$If!vh5S5#vS#v:Vl t 6   6 ,55e4}$$If!vh5S5#vS#v:Vl t 6   6 ,55e4}$$If!vh5S5#vS#v:Vl t 6   6 ,55e4}$$If!vh5S5#vS#v:Vl t 6   6 ,55e4}$$If!vh5S5#vS#v:Vl t 6   6 ,55e4!$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl > t$Z55 5 /5 0gpqZkd#$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 > t0$Z||||44 lagpqZ^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kdH$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la!$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl > t$Z55 5 /5 0gpqZkd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 > t0$Z||||44 lagpqZ^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kdJ$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la!$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl > t$Z55 5 /5 0gpqZkd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 > t0$Z||||44 lagpqZ^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la!$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl > t$Z55 5 /5 0gpqZkdL$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 > t0$Z||||44 lagpqZ^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kdq$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la!$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl > t$Z55 5 /5 0gpqZkd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 > t0$Z||||44 lagpqZ^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kd$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 la^$$If!vh555555555 5 5 /5 05 05 05050505050505050505050505050505050#v#v #v /#v 0:Vl t$55 5 /5 0=kds$$Ifl֮}ume]UME = 5 d $TDt4d !"$$/00000000000000000000 t0$||||44 laDd! D  3 @@"?8!Dd g0  # A" K84TN-ߴ @= K84TN-ߴ^T] g V x|wt/mҽ{tu-˶H,˒I8$1A7A8N8v>}C0G>>яk}cc6mb͛'> eǶnٶmَ;d;wd^{-bldd]wulttڵݻwqg611&''޽{f333lvvͱy lqq---P(ĖY8f+++,h4b8$Ib,3EQP(0MӘ0 f&+̲,V*mq.+ˬRjjhfZ|p ȑ#odGe7t-Ž;nVvqvm'N'Oo:u>}9s={;w?q;dwu'?>Oロ}ӟfs{}~|}e?y/|}_d_җؗe|}_e_׿uo|}dַطm|}e}?d?я؏c?e?s_dկدke{?dӟ؟gewd׿ؿoK {W?u/\@]>`=هأr(=DDw}ws]ϝ=uSϜ;w3wywu?y3Nԩg"Pw @wED蓈Ч=qv}cD,;:4طh=_\ /?0o۶CC#LNwzvvzfn~a~5\DeTp8l/w ߴpxhpщѡ#T"<;>}`h־[܉=6>>119=0@KHd=ۇپP$ >4;>2`pp`hdxdlhmdZLF'vm704<22:315[߱#?|2GB[QF&n{'g3ӳ33%-WbluWAc[6m>0sbaiq~bdێu!r[ yFw힜 d\`a1b(V MǯwͦM[ {w]{s|<^8oCã&&'`h --"ԍIAI3ALVg  Fxdy)0;9640H 9s؞q<&Rgr)f^^pd"45o 0z3Q> ?:X$X{w1l/.h<%lmq%ێoM6olѡ"1.CՆ mv رs躱] y%EI3og±( %&(epd턷Gv Dq.@,L RQ*C##סv "B]$)1.FL&ax5lY䒙l">m؎ sS㣰mu05b(?[hKH1ټ ׿},bbif:FCQ$3Xދm4'ۍB(He;0#l[RY)/rKTq> $ٙɱkPCÈ8"xOp,)yT)ny~l0rٷcOeET$Z"33Sc0*|FJ\"-JU͒iv$֭}۶o?4S(r }R<y]cSr,%0maاACs)t>ḐP#sslB\p >FRy0MelSLDty%dM%ѕRp!C:pN"?PSP"ohj7]:nG879d,cG,σV}.ESJh#áe? %y J,Z{nz{$ 1grjzffa)t]UѴ 8LG2Π h%12"37= zHԖ#^K&"Pqa&ҁqzp|2Jp`0K\H/f@HЌRVa<+l=G0D`L^B./#Xv@I8ge(I]VPuM%aZ^NqB\.t" Q±9I5 -zeh쇛 :cTEiy&N%r 9U$IFm^oyIN)px)!dE5}d [Yƕ++p 6;[flyݵ`W' ziq|p"u"\6p\&aFBxQ(Hr˵VY?eV!UT9ALAHSq"ۨ[h'4rJge)+AJrVEE9'|7᥊}DUlSȣŜ hzݲ-ZzQ͂4O@Q@@㧜fdMWryZ +4N#fE7*5+\Lr~)(J9[,*勝nwm}k4ˆ`9D?dBa JN.ٖB~B6GP2D6 #dS Ŭ7:uRhF,tUh$6rA!O8O B6 bVi9vY؍L)9RTbxRAqt:Cu XSRх2ETJ5av͵˓\.Vs$'KBul?CARP<--ì8Aq|AyeM%'a!HqhN.R*/L&.(-*mjjpJUnv]s,EZqQ.iU+9Xx1Hd*IخV@6Qo}eռ\ B6(7079eKf V,Cԋᚭc4;fJ˦Tzöi> /NM/F˩SP yD YV25\/̊j,ˆ8,Ye#T<y H"hrH,F)pD8TˆnUJ5ob/cY4$'>+d傄3!J$-$g1yb ovƚ|˺Ųdx/bm"ƗDĤ/WI.B$2p;'jT)kYZ)t,ly˨[xQf-ۇL.JY^jB!0.@ ,l`kƧ`|nYkb(/ٖgI>3 #`fR$3)܋5T`nvMʹN 8qˎģ\tҒJk:C7LI`cF,"nkjA|.fԌehwbфlm>r%k4X"FtL[5d 瑨T!`ZV(Rz,}}I*6E.%ٲ*U/Fl`0}eUʉdؠt.`Nt]5 EŜ`P uu)"UL(;oU>b.Aƅ(jRs[%vSPZV-D@B8C'٨e[Fa|1)&TE"dtA ŒmU(cXB]CxĐ`yǗ9C1T GG>G 'aĀ/W[B2KN+QiU)Z" $ͱiZ Sr>iG[:^͢Y Ӻut! ԗt; %MF\ ?On ,D )h+zK!-]m(2|4Jk]ٷ a.K1G,M t`J DHo6%<#&2OaLAHA@P۾ &DE˃e= ;J@bZ͢އx,zhOk99bum $Iަ%wDFJ ,ջݪ]*tA.j4PNK$U-5/.YSb ۥF|RAijm|,) jt[u^AWy$$0.(ͪMmq(sm j O@V4j-5ضjzJ Yh(tSUuju~7m;- c,[VA bSG0xJRYby5e,  j@+n-S5x$WW(l A ֲ|2_:{C]vj8|fqa1ԲҀ*e ~2*eѸ`(+mdx>XJBnrF9&E =aB6o\rLpA.XNZt=,{Zqv0M ~G91 {i6n PL2R3T SeT خu:6K 0q$ aVtԥ@{چfvJa.Jpi5Rmm_,V!x4@MAEQiYo RmG@e4г4Re~sЛКy4s ]VJ:@Mf1۸x(!x( -׶]vpI}:I(n'ap6-k 1Ŀa0|h$Hކ+mAAnkWP 4[J$_!px%djb/"$XxRopyE˛V-0uԜV+JFPs.Bzp݋WQOJmBA6XȀWb1$ iDM. KEPj :6Ypr*Z ԠbIfR0a4%yIH&13"9HEܒ^w_c=q7> رn9~w?s-GoncO=}s<'N#7=r䦣7~3OuϧΜ8yN/ \gznn"aB-j,(Dd g0  # A"'cR1#m_;:')@=|'cR1#m_;:^T] g J'x|kT[gzg1&ĉƱ]ok5 jE TD H!Q$ m]G7"! .`ו셯oo 4M8fvuo5<^v >ՋSna |x26;vwl}`ӦM``˖- -- lݺm۶۷;v;w]v {n rrr; 9xwAnn.8s 8{,Ν8  p8 "F`jj LOO,`~~,,,D"H&`yyU>|GOS'Ǐ'OO?<}<{ |g?_|/W_}k |7?9/~~_կ뿂_o~;~?' HAٜ1.=wp,?}l5o߻~}x~%!l DTdc3JBB4:V|("Z f'?1~bw8`]nQ( ꈵTj}Y{36ٽ=7[UYwܒmΌ{Б׳'=!B~aa{5u2Lu N JwKvoڜoOYoڳgGz&wd{woMۺuێ/Cc9y_Tp}v)]PXl3Fy-3c[ZΌ{3ezȁ^E1: o:g{:p˯}[g/,}/E4=4 EzA);kk*CsrO˂qN Fwdھ-=m=Y׎8sܜ31wo _!زis;wyέ oۑy>Jm)z[Ҷܟ_9։S>wBd^q]Qp UO2N sFƕ?4H[g@ˮx2O5IDRS=/vڹ Þ^>7~\sgUT)FaL'*DUV7Rd*ŝ[ mVU}wطwjP{NA^=2`Av޳{~ȡ׏exsg/ZJK+*D` p ˪jVܝm?c箽Y/:vرs])k` z]*;I$6bpֶfTo9`N93Dd\j ]^\Xx5yΞ=w&T{eq<;G's/^e 6v:,e3@mcݹqڥ˅W/wo@2i;EW/{L{P9b};g.cAb;6X4ژ [∀'x!NN&`J\xŋ板p ˹Gxk'9bl; [&Dav{Ш{& 6"Jg2mtfO0Tpkn\8wƍrs̓\t07W_}Sͽ|]n ""ZbwV` HnFnPD'`wnܸU(+sN:sڵo߸p؛^]w%9VzcH,Gc`B:lCccSScCLgZԝrt] [_[0/t˅7)=y豓p"dP+2Baɍw+cq8lhh_C0UUF*%8,/_(,)--++q!7箕גE*lPy-FբW!0vq a*01B)OrTJ i4*v J;+/9!n2Vh[q~Zn=OVWצ"ckX,ea4 )o.(WQU^{M"C Qi&VShx][XGMS߀)mj ^~Z UewP%4 ]SVW#Htvn11O,-SCuB%*BH0DJ [W'aHD| M 6dPm,]'>M#0MtH$9<>MU UWcap"-TX v#SI{E=A_H y쎮N>Ԅo": 3/k+*յ5= $P#63>,=O>]O.cSޠǀXFIE#~ 6O2;Tkk`*J  ' k9Af؝#ijo~X4D#e!pa/Nlmpjm!qp͸:HqXrG>M.$fCÔ # Q-Q^ IsERDgQID7p~kk%КI mծ\rie-6T. *F"2X\كN[lщ.H+ xl&ʠ-pa *Kwmw4u{sVV,i`w+&6%p:t:p;;alLR+ܞd*J#5A"m!A6&6ou9<؄X4ERT&9V˥6=t*@Za!JZt:vYQ+..CtqhΘIDgp4:B2]\$b WL^PAj1Z\cC8a ԁۢD ѕGP4XVbA/\bШ4eR0(4żbRbxtE1GGWy=~ZDIg L JJ*%EE7.Ά$_#DV8lo6pv\q7ȴMdx.((Jn-C]xҕ+]._p;gH04dlgjW $᳨*+yg;\l BowJJѨ!wEڄ @G^g+t)="O@%AâѵxLٍ܋0g^yj~AFf- $dnt= -~0# $ t$,IMĝt2K6THcD}LR}=wu+?N(wO)d21/N^ӵȘ?8Z:|“c3i!A u@ЦP[ u4__U\Tt U$l@# T!½u {FkH$6J=^f#ug+-^QɅ=TS(j@!ҙ -IN2٢~+ .-Bӱ/cP#2.T6{Dg2Y"Ucwِޮ>!Dc }=}T(ʥV4 B.?Lƀ \@( "nH T3 ~.2=^W TrdPȔRO=hx1$΀P KqNc? 4uLR.ɢ0,N"bњJx|m-,DDdPn”ZDF8uW,F3^?f?\҉dM; er%;ND≥rڢt2M) `w T&vSq(gReL. 52 6bg{&/؝p3#`pX@p[ APס8v9ЧFL*'AxHq, 1#2=>?d0mfР6L:$Q'T_y.>G>,NQ7 >[=vw"n'H$<؇6J!tӛQ5tvX> E u3w:ji GE b22 'fAVdv{(DC4 >}NFƃ'}ށN.m2K88 E"Q(6|SԐdC> FOhO:)jPwV ~w;ĂQ #N8fn0A=vbJQ5X.]G+c>kĿy({gRAr600zkFxlѬC.j.a lNgʴl굖2z⑲$"hԫF2/cɅD?r9Fȥfh=U|/'pډ bzhH5M!hϦQ8ĝ\)\701M$WWWגQf7[a;F7d5V-P$ȈN'm 0 d&`Q),`P.'"ӱEXGˉD|:63,53{%eXf/Eraya(TgzG)ZcVin:GggOWғo a(u=TyEX) =P$: kπf ,l Cʌ>$rl/|٣D >x<<2:uajղXl36]riblbz~:c3,UDҘFNjs+=DJw&:H?WVcX;[Px[#ODp߮<2;n:z0šIm66Cd]M&ɕ",b<E"Sc~PvJڣA~{rWc) 6 Rn V%Y!,ŗWbK++Kdbjv20 u%E5Zm<BէQ/ +@Ĵ/&t*h{[gזS*9_d99Dz[%lèUwP|Q8 8| BpxyN-lŒaH5ڜfLj5D++K7_Gw0Z~: M&&]m5c*NoD S#yT ~#j0~juQc FB~d0l- gY,X4q`LW5ct~mX-:\OR̶.v+X\1!urrkbXf1h8RzZܚJ_s yn@$F!Dahhb᩸1sRk, /-MzG|@C4dhA'bjŠͦUt驤 ]<>+:±(T?QxxbO\rᑰv:`=D$>;uw)P3T[S'"*âVZ>`s:.,p4<1qRͫ(v \4෶àWhaB 14-2-4)F}TwRuc08zhG"0v@ڐ餴^hV*FDWX#.cxPk2-V.9nCfݢjiKG~s>W'+`dq'@TL,/ [0hΠDᠣ2uv>$ \AoP,Uf G-Q͢Ri4T$6sU ЕUDN 9m]B]b>Nf+&nNjh v6A#zóP3U\Dlj% jZw|eBhh6>7M*C\: PG?d(8S0xvP1 ~4чϞ} ҪM'P>Lc>V}457X]_Z[I~ }+~ x<)xށg9O(Ŧ_Mi*As-[T*@E`kDtǨ6]T*3@Ղ3<@E"PAb"nȽTYL,ɳQ2%Ӗ8zuZsE"P@ՂP"PTCjᰭ5W*@T-XU*@E`8ZsE"P@ՂP"PTC`ƴu]G>+o> ׽ׯ_EˤG/罿oRz:γZ>aEyFh+ 7Ȉ>8hy\bp B'qΉ'y'!ΦH/z7h)Ϙ\pwn >|;N=gy;UYf BE:(Z{Ƨō7.^ O8DX4zDI͛IyI%_~"Of1/$^rEg)teq9i?{ݺu"EXSv'G}4+Ў̘,|e0ņ&p P҅è!ęeRu˖yIPG7c-ȟy^|]N6g]8>mX~^Fɹs2U #(aw35B]Ȝ4,=qP cAo?#B@E"Pö\T*#.Xz*}@E"0'/8Z"PTvZiv"PT&"t3'B[A6s0{en\%#9qMɦ1ٶbk9 rβuk`tZ _M㔍bQL9e\DU'KD%ʄhV &5q6tp @eh=#1X7}bU=3uzξ ׮YýkZ1D1&R H.z!80%=h&?Wb8")VupF q6ws!wYu_V&+G.ZTiׄw8Vl2 WdD^v9 `t ?+AgnѾ `}}:fVs #|բ6m#8CovfŇp틃XIlObe>?*;8ˊx򓟬É'>xу$/#pk9rao_.s=m&2@q`h55M E.&,BT G ]M5 {졬S "V"?w#B\S:u"T a3)_&3[_T=U [︝.btvmY8$&{:=!ˉ ĶvZ Df ~Q,}k~0sւr19z/ʋw/|_TIwƧGܢ0w8;gb`#t)8C |3JpLQrͅcPk:.|d9M, |s*}GauU`|kR=ݏVԹu$aY7v-[O>9Yz B3VւGr M<];rpH/^r2Ƕ(N " T:JڏjVt d^TD6B^#*Jx? \ M⨣n'A+3'֓$>{x2n9Z;~`2gUC^0s f#F.=sDG(6D &+:gbpu) Iܗ {(N?9奕Iw-ӟm\[?kf'H+vuf<ʓEV3WGt-6rY1FDuT ncIG7g1](Kdۮya<9fFˢmƍ%VFj~~cN*P5&5`Φ@mFS!KaЙkA+] BZB7!f$a>s* L\@zQ}[ -Ȥ J VR 4.<%\g%2# )CN/o{챠:_C 5 I (ggjıb*P$"C 9#:CRà3hA]zuf@OM}:EA4$:wݥmvdke.UdFrEM2y!O |>pBa 7@sqt+:kX=;d0$[ 7}Rjn6-py=?H4#i|V{Gkm &:"5OlŘb b Q8՜-əYf\j;ݗ(0MYazqIg:+fk%~` a? ^,KK2NYJ ֞NnO`φ:sا r0m2@S~nW^;"0m3Ѕƌb #Kl~|P{iK(kpC)OtV8!x:d׿ I >Ӈ,!fnW@ 3vYf*1}/er<6O1&X$oHp^8qGU6E{E;0ec##0^DV;]Bm <;&8^YdE睹=LD9Mv?}k "td[pa47TjuF-|~7GM\xB,vqá~j?2t0e[?͒C3^DVb'xշ2% >d)5䝹ȗ5X#̥,|6D @T ]ƳJZ?譸]n$Jȟ<>rLEdpbQv9)p /1Mpc;v2i%֐qNt-X|K?x֙j"4H3\s6o< dE:e+Z Y!Z *>iMQi=XdAM Z6T;5;͊#u+*1zm%&}k5s}8h-R Ŧ.݃" "A`:Aif-P"JB-V5k|bP_ZIPCE{9^9PLHO8{A.?5ifšǺ F>;SФi}0}kPRf',EkAifwo:kZ'ŦHz7NR=v@M#w >%sЦV%G;"YrdQj_YE{|HGDW#0^8Va[Qi(}kRf?zjA8# lԘٸT yuws\FԒV^塇&?`AHC=}AYI3lXUC&2M|4MN[ /MRӋxM:#XqnRkkԧÞRCנG Ղ7o@O88⢡ _x* #ЉUoC.tOHqv5&rk:PkB1Tyi.b{̛[F88RSPMĹl=nHg1锷2 O q37r ۙI0Ů]TꡫO/?DqD_Eռ]Gɝw?98 QRFٰܺaLH_S gjvkqt +QذW"\Yz %zF=SKIOWICyKjx0{/7LBo/82V8w"xȂ]#Ӧ<(3gns~ٳG0;yyf& . EnLFmylҖD=#R/ٙs|32:ɓNg$d7/%wpS)p# XPMXޱ~-objG>tț)z}X,CQd: Sfܹ "F0- Sp=^K^Y؜-7f|fڦg{'03bLG}xĢEqxÎ;#4Dփ~3h.ҾDC3p'^ gul&wJ$ϓO8AN{yi TO &t8"+TOvuW9ζH+|z&B8JB=>œ# C{=/31o=dDeL{[Ϫ@~U+6 o=}0ȩ?0W/[u eX<$~EFGr2=*h#Ad?nrb/UAB/D›?r"9y4jOi흄F>/އ0;ЅIdĉM ! Cnrioމ,=wuSNayp8J&1#,OP cuV1%pN=4q`r$nr07r¡߶ϊ=x ys]FK:%|G걞nJXgot٪UV 6Ÿwj-7?jVg x^珈?`Mgi&Z1/)ˣCq)^~{C+G#jJ%z$Pi>`*rc(/'4ް2A 1qs"NV C9ޛ# NzdG+[0 boq^ٳ2NӋ(\|Pj@T@@ciX<ȒRYDʝ5b'!!ñ׮]EwuM,_ b@)n!IrzJҭ[HNfbs|W^JI/nmƵ4җ>i|@,TdհpV[1)QG|$Pذ F ܬg-0~r"^3DFgfs7 IM %XNf"U)%Y>HRAZ*&+DV^t 53X4/BXl'BYO^AMHd # ׂ&U]@i+.\gDN%hMt$nm,/GHjmЪ'^D.ð{\(]5,$=5cDy[[gYo"S-'zhWc#$X,r3s 9 %e9|fHh5W_r1`@-{ǩj%v3PJX&[݆yf9:rjn%2E,&d+vZMdu b:V CDQ7S^X lRe}1ꁍIE>ɽ֭kvk:,F5ꃠ.savr:DflGdE 4ZU~\c]§k.?oL@UL^v}YN91 qjyW)7o`)~+^z_ؚiĶ:Hf{Z[ؾmBc¼X!~2[P,cLWT1wԉ%b:Rx0ġ-I{A4vwc.zءΗ휶,Ӂa0ˌq׸+;K=)I;Usg{ŲS\dVI1V}0mbaJ"#?>yx3~Ht"7ɹ'쳏L"ytc1d=,\=i1{(Ԝ)٩r!2P5Iy(|VS[k|#268MP =.Jl 8ZP0#ς#(HͰ\FsLtjh91 &cVRY?Th]j>ڮvC))oMZwrdP3x\m $#b*L NGoZmtM'?5T948DF7!|~|~CzCJSީ_u q4vDJpOX:3kAe$4볣i$_]IcÎfbhxsB!YPewE(&$NiNQe_,RKԚ.u0]UV=8 Gc=t=/zh#n{2ۥP3i#oYCٝ'ux5tї~^GSCV,'\ AUE,|$_]jX 9YT3߻t"5J*qWf-9&6,U$ȩ)Fwh?e3b,8h>-yMB5ؿJj^!ߢ=NW& ;lC! K};r0)߉=hv4FRۓV#d:|Yv_j_sz26}6 m/IN~B<ڵ-!Hds"F-$c.<bJp]C Q|3%S3,r/Xbߧ|f-H_INv@A2=t[\Pu2krth 姸8ΒV p{Dz|IOlX^`i wh\@;"׃cl@srj8}Xٳ s4ΉSchI/0&ޯ}=PcHI`cIjRr(ns(q:.R<{+8L^2j3Nxܹ\i*d$2["YpyrpAڲ7YaK^ŋ٫٨ 8*ぱ͗=N>8 jJт)g+@E"0*@WcF[m"PT*YZ0 @E"PJ"SٿJtE"PT`厊@E"PT-8{Ǿ"PT`6 `;mTitle$a$ 5CJ\B' B `;mComment ReferenceCJaJ< "< `;m Comment TextCJaJH2H `;m Balloon TextCJOJQJ^JaJ`C `;m Table List 3:V0  j# j# j 05B* \`J ph6B* ]`J ph0oR0 `;mSampleOJQJB^`bB zRx Normal (Web)dd[$\$j`sj zRx Table Grid7:V08h`8 zRx HTML Variable6]!$'*-0369<?BEHe&      !"#$%!$'*-0369<?BEHe      !"!#֥  8    #####j%k%U(V(X(Z(\(^(`(b(d(f(h(j(l(n(p(r(t(u(w(y({(}(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()))) ) ) )))))))))) )")$)&)()*),).)/)1)3)5)7)9);)=)?)A)C)E)G)I)K)M)N)P)R)T)V)X)Z)\)^)`)b)d)f)h)j)l)m)o)q)s)u)w)y){)}))))))))))***************************++++++ + + + +++++++++++++ +!+"+#+%+'+(+*+,+.+/+0+1+2+3+4+5+6+7+9+;+=+>+@+B+D+E+F+G+H+I+J+K+L+M+O+Q+R+S+U+W+Y+Z+[+\+]+^+_+`+a+b+d+f+h+j+l+n+o+p+q+r+s+t+u+v+w+y+{+|+~+++++++++++++++++++++++++++++++++++++++++++++-...H..@/h//////// 00-0=0M0]0m0}000000000000000001&1C1D1@0 @0@0@0@0@0@0@0@0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0@0@0@0@0@ 0@ 0@ 0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@000@0\MR 00 t(u((((((((()).)/)M)N)l)m)))**++++3+4+I+J+^+_+t+u+++++++D1JJHJIJJJV{00O@0 {00@0 {00@0 {00@0 {00 R@0 {0 0 R@0 {0 0 ,S@0 {00 @0 {00X @0 {00 @0 {00T@00{00g$@0 {00,h$@0 {00dh$@0 {00g$@0 {00g$@0{0 0 N@0 {0 0 P@0 {00t@00{0&0'U@00@0\MR{00@00{00@0{00@0{00  00 "#7B\@j ? @ A N P R T V X Z \ ^ a c e f t z ~ =>GRSk (1:<=K+/0uvh;<= > !!!!!!!!!!!"" """""!"&","0"3"6":"@"G"O"R"V"Z"^"a"v""""""""""# ###%#D#`#|####################################j%k%U(V(X(Z(\(^(`(b(d(f(h(j(l(n(p(r(t(u(w(y({(}(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()))) ) ) )))))))))) )")$)&)()*),).)/)1)3)5)7)9);)=)?)A)C)E)G)I)K)M)N)P)R)T)V)X)Z)\)^)`)b)d)f)h)j)l)m)o)q)s)u)w)y){)}))))))))))****************************++++++ + + + +++++++++++++ +!+"+#+%+'+(+*+,+.+/+0+1+2+3+4+5+6+7+9+;+=+>+@+B+D+E+F+G+H+I+J+K+L+M+O+Q+R+S+U+W+Y+Z+[+\+]+^+_+`+a+b+d+f+h+j+l+n+o+p+q+r+s+t+u+v+w+y+{+|+~+++++++++++++++++++++++++++++++++++++++++++++-...H..@/h//////// 00-0=0M0]0m0}000000000000000001&1C1D1F1W1q1r11n24444415254555555566!6R6S6U666'7o8p8 9 9S;l;;;<<d=e===+?,????@@@@AAAA BBBBB+B6BDBHBJBLBYBfBsByB{B~BBBBBBBBBBBBB CCC%C2C=CICTC`CeCgCCCCCHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJ JJJJJJJJJJ J"J$J&J(J*J,J.J0J2J4J6J8J:JJ@JBJDJFJHJIJOJPJQJRJSJTJVJXJZJ\J^J`JbJdJfJiJlJoJrJuJvJwJxJyJzJ{J|J}J~JJJJK"K$K&K(K*K,K.K0K2K4K7K:K=K@KCKFKIKLKOKRKUKXK[K^KaKdKgKjKmKpKsKtKzK|K~KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK}LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMM M M MMMMMMMMM M!M#M%M'M)M+M-M/M1M3M6M9MP?P@PAPCPEPGPIPKPMPOPQPSPVPYP\P_P`PcPdPePfPgPhPiPjPkPlPmPnPoPpPqPPP>S?SWShUiUU>V?VMVVVVVVVWW,WWXX+YdYYYYZZZm[n[[&\'\4\E\I\J\X\n\w\y\\\\\2^3^K^````bbbbbbbbbbc cccc$c+c0c5cuNuOupvqvsv{vvvv5y6yZz{ {{{||E}F}H}I}}~s~^#$CD^ ,89;Mij~щ݉mF`5BZhǍz{efГѓƖǖ &3@MZgtǛԛ!+,=>?ȜɜݝNX9!Jӥԥ֥+8ER_lyƦ̦٦ #0=JWdq~̧٧ '4AN[huvèШݨ?[jxʩة 45689;<>?ABDEGHJKMNPQSTVWYZ\]_`bcefªĪŪǪȪʪ˪ͪΪЪѪӪԪ֪ת٪ڪܪݪߪ00000000000 0 0 00000000000000000000000000000000000000000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00000000000 0 0 0 0 0000000000000000!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!0!00#0#0#0#0#0#0#0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0#0#0#0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0# 0#0#0#0#0#0# 0# 0# 0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#00F10F10F10F10F10F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F1 0F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F10F100gC0gC0gC0gC0gC0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC0gC0gC0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC 0gC0gC0gC0gC0gC0gC0gC0gC0gC0gC0gC0gC0gC0gC0gC0gC0gC00V0V0V0V 0V 0V 0V0V0V0V0V0V0V0V0V0V0V0V0V0V0V0V0V0V0V0V0V00y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\0y\00d0d0d0d0d0d0d0d0d0d0d0d0d 0d0d 0d 0d 0d 0d 0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d00sv0sv0sv0sv0sv0sv 0sv0sv 0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv 0sv 0sv 0sv 0sv 0sv 0sv 0sv 0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv0sv00;0;0;0;0;0;0;0щ0щ0щ0щ0щ0щ0щ0щ0щ0щ00000000000000000 0 0 0@0@0@0@0@0@0@0@0@0@0 @0@0@0@0@0@0@0 @0@0@0@0 @0@0@0@0@0@0@0 @0 @0 @0 @0 @0 @0 @0000 0 0 0 0 000000 0 0 0 0 0 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0007B\@j ? P R T V X Z \ ^ a c =>GRSk (1:<=K#####j%k%U(V(X(Z(\(^(`(b(d(f(h(j(l(n(p(r(t(u(w(y({(}(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()))) ) ) )))))))))) )")$)&)()*),).)/)1)3)5)7)9);)=)?)A)C)E)G)I)K)M)N)P)R)T)V)X)Z)\)^)`)b)d)f)h)j)l)m)o)q)s)u)w)y){)}))))))))))***************************++++++ + + + +++++++++++++ +!+"+#+%+'+(+*+,+.+/+0+1+2+3+4+5+6+7+9+;+=+>+@+B+D+E+F+G+H+I+J+K+L+M+O+Q+R+S+U+W+Y+Z+[+\+]+^+_+`+a+b+d+f+h+j+l+n+o+p+q+r+s+t+u+v+w+y+{+|+~+++++++++++++++++++++++++++++++++++++++++++++-...H..@/h//////=0M0]0m0}000000000000000001&1C1D1U666'7o8p8 9 9S;`CeCgCCCCCHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJ JJJJJJJJJJ J"J$J&J(J*J,J.J0J2J4J6J8J:JJ@JBJDJFJHJIJOJPJQJRJSJTJVJXJZJ\J^J`JbJdJfJiJlJoJrJuJvJwJxJyJzJ{J|J}J~JJJJK"K$K&K(K*K,K.K0K2K4K7K:K=K@KCKFKIKLKOKRKUKXK[K^KaKdKgKjKmKpKsKtKzK|K~KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK}LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMM M M MMMMMMMMM M!M#M%M'M)M+M-M/M1M3M6M9MV?VVVVW,WWXX+YdYYYZZZm[n[[&\'\4\E\I\J\X\n\w\y\\\\\2^3^K^````bbbbbbbbc cccc$c+c0c5cuNuOupvqv{vvvv5y6yZz{ {{{||F}H}I}}~s~^#$,89ij~щ݉mF`5ZǍz{efГѓƖǖ &3@MZgtǛԛ!+,=>?ȜɜݝNX9!Jӥԥ+8ER_lyƦ̦٦ #0=JWdq~̧٧ '4AN[huvèШݨ?[jxʩة 4PSVY\_`beĪǪ00n@0@0@0@0@ 0@ 0@ 0@0@0@0@0@0@0@0dۊ00ۊ00@0ۊ00t@0@0@0@0@0@0@0@0@0@0@0@0@0ۊ00ۊ00ۊ0000000000000000000000000{0 0 {0 0 0 00 0{0 0 0 00 00 00 00 0@0 @0{000000000000@0@0\MR@0 @0@0@0@0@0@0@0@0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0@0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0 @0@0@0@0@0@0@0@ 0@ 0@ 0@ 00U1{01 {01{010{01 {01 0G10G10G1H`*[0G10G1@00L10G10G1@0 @00G10G1@0 @00L10L10L1{00{00{00@0\MR{00l{00{00@K4l {00{00{00{00{00{01HBg @0{01{00{00{00f{00{00{00@ 0{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00@ 0 {0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0{0#0@0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0{0C0@0${00{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0{0d0#@0{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{000$${00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00F6{00@y0C{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00@y0C{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00@0{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01@0{00{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1{0(1@0{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1{0H1@0{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1{0h1@0{00{01"{00{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01{01@0{017@0{01H7{01{01@0{01{01{01@0{00{00{01`8{01{01@0{00 @0000{000000n{00Bl{00{000000000000H0000@00000@00 00 0@0 @0000000@0Rw003{00+000000000000@0000000@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@000@08@08@08@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0 @00{00~{00{00@0{008{007{001{000{00.{00.{00.{00.{00.{00.{00{00{00{00{00{00/{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00@0{00{00{00{00{00{00{00{00{00{00{00{00{00{00{00@0 @0000000000000000000000000000000000=0000 0000 00 00 00000000000000@0K00@0{00'{000000000000000000000000@0\MR@0 @0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@ 0@ 0@ 0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0 @0@0@0@0@0@0@0@0@0@0@0@0 @0@0@0@0@0@ 0@ 0@ 0@ 0@ 0@0@0@0@0@0@ 0@ 0A 0A@0@ 0@ 0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0@0 00 @000000000000000(M0000!00000000000000000 00 NS;%i-00^1)337k>HKUVD[_cdhl|r|~82vFZ]^`beilorv{}1$**+Z0000(1Z1123=3^33368<<==>R>>DHJTKQRQRRaSSSTTUGUVVVVVWXQXW[aKfDk1lx|~ ч^CݑWв5^Ɍ[_acdfghjkmnpqstuwxyz|~\eY}YY_8&'@&&j(   K)c 3  s"*?`  c $X99?K)ct  S g "`   t  S g "`  t  S g "` t  S g "`0L t  S g "`h t   S  g "`  t   S  g "`"$ t   S  g "`&(  t   S  "` "  t   S  "`  t  S  "`Lh  t  S  "`$'  t  S "`0 t  S "` t  S "`   z  c $"`l  h  3 "`k! n  C "`(# z  c $"` o" z  c $"`\7 z  c $"`$ z  c $"`$& z  c $"` z  c $"` z  c $"`| W  z  c $"`D  z  c $g "`` ;  z  c $g "` s z   c $ g "` z ! c $!g "` z " c $ "g "`@  z # c $!#g "`xS  !z $ c $"$g "`"$ "z % c $#%g "`&( #b & C &"` B S  ?dY~Y&H t! t#s(vs\nsdps\&vs^sjs P s_ VΦΦۦۦVզզ8*urn:schemas-microsoft-com:office:smarttagstimeV*urn:schemas-microsoft-com:office:smarttagsplacehttp://www.5iantlavalamp.com/9*urn:schemas-microsoft-com:office:smarttagsStateB*urn:schemas-microsoft-com:office:smarttagscountry-region i14HourMinuteMOC D E F U V W X \ ] ^ _ ` a b c 17JOPTX\w8<FK knG"N"a"h"q"u"v"}"~""""""""##%#,#..D/G/l/o/0000000000UVVVWVXVYVZV[V\VaVbVcVdViVjVkVlVqVrVsVtVyVzV{V|VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV0W4WVZZZc#c$c*c+c/c0c4c5c;c^ccc}cccccccckkmmrrrrrrrrrrrrsss sssssssRs[sssssssssFtItJtMtNtQtRtUtjtmtntqtrtutzt}t~ttttttttu uuu6u9u:u=uFuIuuu'v+v47XYmnHPQTktux %&23?@LMWƛ*+78DEQR\!%.1<=IJUWbfox|èϨaez )- S[KShq!!!!!!!!!!!"""" " """"""""" "!"%"&"+","/"0"2"3"5"6"9":"?"@"F"G"N"O"Q"R"U"V"Y"Z"]""""## # ##|####+(/(++`--..7...E/G/m/o/0001X1a1550:2:T;\;??@@CC?SGSiUrUVWZZn[w[\\]]3^;^``bbbbbbbbbbbbbbbcc c ccccc#c$c*c+c/c0c4c5c;cdcicccccccccccd!dJqSqbsistttt+v3v|vvDMNXmuFOHQȚ͚3;MW@H)**+78@BDEQR\̦ͦ٦ڦ"%.=IJUWbfoq}ɧ˧rtèϨegjvzʩ֩33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333z Sj3h !!!!3"@"""V()*+1&144254555556!6S6U6 9&9TCdCIJJSJTJJKK}L M!MPMMNO_P`PpP@VVWW>YdYZZ\\cd}jjKp{pYrrtt@tttttNuOugu}~8щ݉5M?pףԥե֥_̦4hvèШ4679:<=?@BCEFHIKLNOQRTUWXZ[]^`acdfªêŪƪȪɪ˪̪ΪϪѪҪԪժתتڪ۪ݪު  il  uu0122 ######*(/(`-e-f-j-k-o-p-t-l.r.s.v.w.|.}..//D1E1X1]1e1j1p1p1M7M7N7N7O7O777777777778888S8Z8\8g8o8p89 91;1;T;T;eCfCCCCCCCFFKKNNOOpPqP?V@VVVVW WWWWw\x\\\\\]]ddd!d%d*d0d0d4k9kkkmmppppqqQrVrttBtEtFtItJtMtNtQtRtUtvtytzt}t~ttttttuu.u1uqvrv|vvvvÃăƃǃȃɃ˃̃ЃуӃԃփ׃ڃۃDIJMNTUWX^`cdjkmnstxy~9:NX\bhh5;Z`ϕҕĖĖ?@ԥ֥ r%8p lm:VJqFB7'C0Lz2g~pkLRK W-~4ULw~Nh^`OJQJo(hHh^`OJQJo(hHhpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh ^`o(hH.h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(h ^`OJQJo(h ^`OJQJo(oh pp^p`OJQJo(h @ @ ^@ `OJQJo(h ^`OJQJo(oh ^`OJQJo(h ^`OJQJo(h ^`OJQJo(oh PP^P`OJQJo(h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hHh^`OJQJo(hHhpp^p`OJQJ^Jo(hHoh@ @ ^@ `OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHhPP^P`OJQJ^Jo(hHoh  ^ `OJQJo(hHh ^`hH.h ^`hH.h pLp^p`LhH.h @ @ ^@ `hH.h ^`hH.h L^`LhH.h ^`hH.h ^`hH.h PLP^P`LhH.h ^`hH.h ^`hH.h pLp^p`LhH.h @ @ ^@ `hH.h ^`hH.h L^`LhH.h ^`hH.h ^`hH.h PLP^P`LhH.h^`OJQJo(hHh^`OJQJ^Jo(hHohpp^p`OJQJo(hHh@ @ ^@ `OJQJo(hHh^`OJQJ^Jo(hHoh^`OJQJo(hHh^`OJQJo(hHh^`OJQJ^Jo(hHohPP^P`OJQJo(hH^`OJPJQJ^Jo(-^`OJQJ^Jo(hHopp^p`OJQJo(hH@ @ ^@ `OJQJo(hH^`OJQJ^Jo(hHo^`OJQJo(hH^`OJQJo(hH^`OJQJ^Jo(hHoPP^P`OJQJo(hH B7'4UW-lJqzr%~kLR                                                                                          Ao0B1O13X@BM;P+>Pyc`;mzRxG!{U|KqS.EH! hw9jGGR-(L?V(X(Z(\(^(`(b(d(f(h(j(l(n(p(r(t(u(w(y({(}(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((()))) ) ) )))))))))) )")$)&)()*),).)/)1)3)5)7)9);)=)?)A)C)E)G)I)K)M)N)P)R)T)V)X)Z)\)^)`)b)d)f)h)j)l)m)o)q)s)u)w)y){)})))))))))***************************++++++ + + + +++++++++++++ +!+"+#+%+'+(+*+,+.+/+0+1+2+3+4+5+6+7+9+;+=+>+@+B+D+E+F+G+H+I+J+K+L+M+O+Q+R+S+U+W+Y+Z+[+\+]+^+_+`+a+b+d+f+h+j+l+n+o+p+q+r+s+t+u+v+w+y+{+|+~+++++++++++++++++++++++++++++++++++++++++++4444415254555555566!6R6S6U666IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJ JJJJJJJJJJ J"J$J&J(J*J,J.J0J2J4J6J8J:JJ@JBJDJFJHJIJOJPJQJRJSJTJVJXJZJ\J^J`JbJdJfJiJlJoJrJuJvJwJxJyJzJ{J|J}J~JJJJK"K$K&K(K*K,K.K0K2K4K7K:K=K@KCKFKIKLKOKRKUKXK[K^KaKdKgKjKmKpKsKtKzK|K~KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK}LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLMMMM M M MMMMMMMMM M!M#M%M'M)M+M-M/M1M3M6M9MP?P@PAPCPEPGPIPKPMPOPQPSPVPYP\P_P`PcPdPePfPgPhPiPjPkPlPmPnPoPpPy\Z!+,=>#+0@Ett4@,@@Unknownwhite_lalab306 G: Times New Roman5Symbol3& : ArialO1 CourierCourier New?5 : Courier NewI& ??Arial Unicode MS;Wingdings5& zaTahomaG5  hMS Mincho-3 fg"qhmtdV4dV4!d24dȩȩ 2QHP?EH22000Computer Science Department Bob Allen4         Oh+'0 $ D P \hpx2000Computer Science Department Normal.dot Bob Allen5Microsoft Office Word@zT@֌e@ 2Xed՜.+,0 hp  Mercer University4Vȩ 2000 Title  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Root Entry F`4[eData 1Table"WordDocumentMSummaryInformation(DocumentSummaryInformation8CompObjq  FMicrosoft Office Word Document MSWordDocWord.Document.89q